blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
271ccdfc3f4e1c057f41ac7f99242ffff6ea09d1 | 577ef3726396e3ccd7fdddda8c5fb985bab7dc22 | /main.cpp | 60e707238443753b3d18d8fe056d543374f5cb55 | [] | no_license | HGGB-19/Proyecto_integrador | 9dac0d5c823437f036a2a258dc09f5190ce39bea | a59ffb765e42a22ae8b1589ced093325c63ecd54 | refs/heads/master | 2022-12-09T03:04:27.536987 | 2020-07-22T04:14:06 | 2020-07-22T04:14:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,919 | cpp | #include <iostream>
#include <string>
#include <fstream>
#include "Pelicula.h"
#include "Capitulo.h"
using namespace std;
void ver_pelicula(Pelicula* contenido_Pelicula[])//Esta funcion me ayuda a crear un arrglo de clase peliculas
{
contenido_Pelicula[0] = new Pelicula ("Pelicula", "Thor", "ficcion", 7, 2020, 120);
contenido_Pelicula[1] = new Pelicula ("Pelicula", "Ironman", "ficcion", 7, 2020, 120);
contenido_Pelicula[2] = new Pelicula ("Pelicula", "CapitanAmerica", "ficcion", 7, 2020, 120);
for (int i = 0; i < 3; i++)
{
cout << i + 1;
contenido_Pelicula[i] -> ver_contenido();
}
}
void ver_serie(Serie* contenido_Serie[])//Esta funcion me ayuda a crear objetos de tipo serie
{
contenido_Serie[0] = new Serie(1234, "Serie", "HIMYM","Comedia", 2020, 8);
contenido_Serie[1] = new Serie(1234, "Serie", "Friends","Comedia", 2020, 4);
contenido_Serie[2] = new Serie(1234, "Serie", "BNX","Anime", 2020, 1);
for (int i = 0; i < 3; i++)
{
contenido_Serie[i] -> ver_contenido();
}
}
void ver_capitulos()
{
Capitulo* contenido[3];
contenido[0] = new Capitulo(1234,"Prologo", 1, 1);
contenido[1] = new Capitulo(1234,"TE AMO", 2, 1);
contenido[2] = new Capitulo(1234,"CONOCI A TU MADRE", 3, 1);
}
void opcion_1(Pelicula* contenido_Pelicula[],Serie* contenido_Serie[])//Esta funcion me ayuda a crear la primera opcion del menu
{
char opcion;
cout << "¿ Que te gustaria ver ?" << endl;
cout << "-----------------------\n" << endl;
cout << "A) Peliculas" << endl;
cout << "B) Series" << endl;
cout << "Ingrese su opcion: ";
cin >> opcion;
if (opcion == 'A')
{
cout << "---Aqui esta la lista de peliculas---" << endl;
cout << "----------------------------------" << endl;
cout << "Pelicula ---- Genero ---- Calificacion\n" << endl;
ver_pelicula(contenido_Pelicula);
}
else
{
cout << "---Aqui esta la lista de Series---" << endl;
cout << "----------------------------------" << endl;
cout << "Serie ---- Temporada ---- Genero\n" << endl;
ver_serie(contenido_Serie);
}
}
void opcion_2()
{
//FALTA PODER CALIFICAR UNA PELICULA
}
void opcion_3(Pelicula* contenido_Pelicula[])
{
ver_pelicula(contenido_Pelicula);
int numero_peli;
cout << "\n Selecciona la pelicula a ver: ";
cin >> numero_peli;
numero_peli = numero_peli -1;
contenido_Pelicula[numero_peli] -> muestraDatos();
}
int main()
{
Pelicula* contenido_Pelicula[100];
Serie* contenido_Serie[100];
Capitulo* contenido_Capitulo[100];
char opcion;
string salida;
string si;
cout << "-------Bienvenido a GrootMovie------" << endl;
cout << "_____________________________________\n" << endl;
do
{
cout << "A) Ver Contenido \n";
cout << "B) Calificar una pelicula \n";
cout << "C) Ver Peliculas \n";
cout << "D) Ver Series \n";
cout << "---------------------\n";
cout << "Escoga una opcion : ";
cin >> opcion;
cout << "---------------------\n";
switch (opcion)
{
case 'A':
{
opcion_1(contenido_Pelicula,contenido_Serie);//FUNCIONA, NO TOCAR
break;
}
case 'B':
{
//opcion_2();
break;
}
case 'C':
{
opcion_3(contenido_Pelicula);//FUNCIONA NO TOCAR
break;
}
case 'D':
{
//opcion_4();
break;
}
}
cout << "Desea realizar otro movimiento?[si/no]: ";
cin >> salida;
cout << "------------------------------------------" << endl;
cout << "Fue un placer atenderlo \n";
} while (salida != "no");
return 0;
} | [
"hectorgustavoqo@gmail.com"
] | hectorgustavoqo@gmail.com |
0e7b9104ff6b7d3afaeb5e8d38bc3a106e626277 | d0fb46aecc3b69983e7f6244331a81dff42d9595 | /aliyuncvc/src/model/GetDeviceInfoRequest.cc | 54df300033a6d59db211a467dbf54510f3aedb27 | [
"Apache-2.0"
] | permissive | aliyun/aliyun-openapi-cpp-sdk | 3d8d051d44ad00753a429817dd03957614c0c66a | e862bd03c844bcb7ccaa90571bceaa2802c7f135 | refs/heads/master | 2023-08-29T11:54:00.525102 | 2023-08-29T03:32:48 | 2023-08-29T03:32:48 | 115,379,460 | 104 | 82 | NOASSERTION | 2023-09-14T06:13:33 | 2017-12-26T02:53:27 | C++ | UTF-8 | C++ | false | false | 1,614 | cc | /*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <alibabacloud/aliyuncvc/model/GetDeviceInfoRequest.h>
using AlibabaCloud::Aliyuncvc::Model::GetDeviceInfoRequest;
GetDeviceInfoRequest::GetDeviceInfoRequest() :
RpcServiceRequest("aliyuncvc", "2019-10-30", "GetDeviceInfo")
{
setMethod(HttpRequest::Method::Post);
}
GetDeviceInfoRequest::~GetDeviceInfoRequest()
{}
std::string GetDeviceInfoRequest::getCastScreenCode()const
{
return castScreenCode_;
}
void GetDeviceInfoRequest::setCastScreenCode(const std::string& castScreenCode)
{
castScreenCode_ = castScreenCode;
setParameter("CastScreenCode", castScreenCode);
}
std::string GetDeviceInfoRequest::getGroupId()const
{
return groupId_;
}
void GetDeviceInfoRequest::setGroupId(const std::string& groupId)
{
groupId_ = groupId;
setParameter("GroupId", groupId);
}
std::string GetDeviceInfoRequest::getSn()const
{
return sn_;
}
void GetDeviceInfoRequest::setSn(const std::string& sn)
{
sn_ = sn;
setParameter("Sn", sn);
}
| [
"sdk-team@alibabacloud.com"
] | sdk-team@alibabacloud.com |
6b935c8756ec4c9ab38e36c3ba3808515477017a | ca6ad207254acd23b8cb56aec2bb30951c52a949 | /src/core/framework/ui/direct3d/portable/Direct3DDeviceHelper.cpp | d15212ab4c93cb161bf58dc58d4708aac8eb3812 | [] | no_license | sgowen/GGJ17 | 30c049f2faa491f232835d3410458f35206d15cc | eee3863538754b3cfdba95827afcce09b58c937a | refs/heads/master | 2022-05-02T08:40:34.973728 | 2022-04-26T21:16:43 | 2022-04-26T21:16:43 | 79,612,785 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 906 | cpp | //
// Direct3DDeviceHelper.cpp
// noctisgames-framework
//
// Created by Stephen Gowen on 1/15/17.
// Copyright (c) 2017 Noctis Games. All rights reserved.
//
#include "Direct3DDeviceHelper.h"
#include "pch.h"
#include "Direct3DManager.h"
Direct3DDeviceHelper::Direct3DDeviceHelper() : IDeviceHelper()
{
Direct3DManager::create();
}
Direct3DDeviceHelper::~Direct3DDeviceHelper()
{
Direct3DManager::destroy();
}
void Direct3DDeviceHelper::createDeviceDependentResources(int maxBatchSize)
{
D3DManager->createDeviceDependentResources(maxBatchSize);
}
void Direct3DDeviceHelper::createWindowSizeDependentResources(int screenWidth, int screenHeight, int numFramebuffers)
{
D3DManager->createWindowSizeDependentResources(screenWidth, screenHeight, numFramebuffers);
}
void Direct3DDeviceHelper::releaseDeviceDependentResources()
{
D3DManager->releaseDeviceDependentResources();
}
| [
"dev.sgowen@gmail.com"
] | dev.sgowen@gmail.com |
6b08dc2618d02b916c1635c63f873b605de5fc8a | 58b91b399a07dada20c4c8f57fd6150b85a9cc28 | /content/browser/renderer_host/frame_connector_delegate.h | 27eb8a6d85c860be53b8460fe54daff4f80fa777 | [
"BSD-3-Clause"
] | permissive | domramirez/chromium | a2167f6e605dabf49640f04b12e28c8a2f62d20c | a8e1de5b19353797ee41b343d1e4cc021d61d735 | refs/heads/master | 2023-01-13T02:48:01.372551 | 2017-10-25T19:35:10 | 2017-10-25T19:35:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,876 | h | // Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_RENDERER_HOST_FRAME_CONNECTOR_DELEGATE_H_
#define CONTENT_BROWSER_RENDERER_HOST_FRAME_CONNECTOR_DELEGATE_H_
#include "components/viz/common/surfaces/local_surface_id.h"
#include "content/browser/renderer_host/event_with_latency_info.h"
#include "content/common/content_export.h"
#include "content/public/common/input_event_ack_state.h"
#include "ui/gfx/geometry/rect.h"
#if defined(USE_AURA)
#include "services/ui/public/interfaces/window_tree.mojom.h"
#endif
namespace blink {
class WebGestureEvent;
}
namespace viz {
class SurfaceId;
class SurfaceInfo;
struct SurfaceSequence;
} // namespace viz
namespace content {
class RenderWidgetHostViewBase;
class RenderWidgetHostViewChildFrame;
class WebCursor;
//
// FrameConnectorDelegate
//
// An interface to be implemented by an object supplying platform semantics
// for a child frame.
//
// A RenderWidgetHostViewChildFrame, specified by a call to |SetView|, uses
// this interface to communicate renderer-originating messages such as mouse
// cursor changes or input event ACKs to its platform.
// CrossProcessFrameConnector implements this interface and coordinates with
// higher-level RenderWidgetHostViews to ensure that the underlying platform
// (e.g. Mac, Aura, Android) correctly reflects state from frames in multiple
// processes.
//
// RenderWidgetHostViewChildFrame also uses this interface to query relevant
// platform information, such as the size of the rect that the frame will draw
// into, and whether the view currently has keyboard focus.
class CONTENT_EXPORT FrameConnectorDelegate {
public:
virtual void SetView(RenderWidgetHostViewChildFrame* view) {}
// Returns the parent RenderWidgetHostView or nullptr if it doesn't have one.
virtual RenderWidgetHostViewBase* GetParentRenderWidgetHostView();
// Returns the view for the top-level frame under the same WebContents.
virtual RenderWidgetHostViewBase* GetRootRenderWidgetHostView();
// Notify the frame connector that the renderer process has terminated.
virtual void RenderProcessGone() {}
// Provide the SurfaceInfo to the embedder, which becomes a reference to the
// current view's Surface that is included in higher-level compositor
// frames.
virtual void SetChildFrameSurface(const viz::SurfaceInfo& surface_info,
const viz::SurfaceSequence& sequence) {}
// Return the rect that the RenderWidgetHostViewChildFrame's content will
// render into.
virtual gfx::Rect ChildFrameRect();
// Request that the platform change the mouse cursor when the mouse is
// positioned over this view's content.
virtual void UpdateCursor(const WebCursor& cursor) {}
// Given a point in the current view's coordinate space, return the same
// point transformed into the coordinate space of the top-level view's
// coordinate space.
virtual gfx::PointF TransformPointToRootCoordSpace(
const gfx::PointF& point,
const viz::SurfaceId& surface_id);
// Given a point in the coordinate space of a different Surface, transform
// it into the coordinate space for this view (corresponding to
// local_surface_id).
// TransformPointToLocalCoordSpace() can only transform points between
// surfaces where one is embedded (not necessarily directly) within the
// other, and will return false if this is not the case. For points that can
// be in sibling surfaces, they must first be converted to the root
// surface's coordinate space.
virtual bool TransformPointToLocalCoordSpace(
const gfx::PointF& point,
const viz::SurfaceId& original_surface,
const viz::SurfaceId& local_surface_id,
gfx::PointF* transformed_point);
// Transform a point into the coordinate space of the root
// RenderWidgetHostView, for the current view's coordinate space.
// Returns false if |target_view| and |view_| do not have the same root
// RenderWidgetHostView.
virtual bool TransformPointToCoordSpaceForView(
const gfx::PointF& point,
RenderWidgetHostViewBase* target_view,
const viz::SurfaceId& local_surface_id,
gfx::PointF* transformed_point);
// Pass acked touch events to the root view for gesture processing.
virtual void ForwardProcessAckedTouchEvent(
const TouchEventWithLatencyInfo& touch,
InputEventAckState ack_result) {}
// Gesture events with unused scroll deltas must be bubbled to ancestors
// who may consume the delta.
virtual void BubbleScrollEvent(const blink::WebGestureEvent& event) {}
// Determines whether the root RenderWidgetHostView (and thus the current
// page) has focus.
virtual bool HasFocus();
// Cause the root RenderWidgetHostView to become focused.
virtual void FocusRootView() {}
// Locks the mouse. Returns true if mouse is locked.
virtual bool LockMouse();
// Unlocks the mouse if the mouse is locked.
virtual void UnlockMouse() {}
// Returns a rect that represents the intersection of the current view's
// content bounds with the top-level browser viewport.
const gfx::Rect& ViewportIntersection() const {
return viewport_intersection_rect_;
}
// Returns the viz::LocalSurfaceId propagated from the parent to be used by
// this child frame.
const viz::LocalSurfaceId& local_surface_id() const {
return local_surface_id_;
}
// Determines whether the current view's content is inert, either because
// an HTMLDialogElement is being modally displayed in a higher-level frame,
// or because the inert attribute has been specified.
virtual bool IsInert() const;
// Determines whether the RenderWidgetHostViewChildFrame is hidden due to
// a higher-level embedder being hidden. This is distinct from the
// RenderWidgetHostImpl being hidden, which is a property set when
// RenderWidgetHostView::Hide() is called on the current view.
virtual bool IsHidden() const;
// Called by RenderWidgetHostViewChildFrame to update the visibility of any
// nested child RWHVCFs inside it.
virtual void SetVisibilityForChildViews(bool visible) const {}
#if defined(USE_AURA)
// Embeds a WindowTreeClient in the parent. This results in the parent
// creating a window in the ui server so that this can render to the screen.
virtual void EmbedRendererWindowTreeClientInParent(
ui::mojom::WindowTreeClientPtr window_tree_client) {}
#endif
protected:
virtual ~FrameConnectorDelegate() {}
// This is here rather than in the implementation class so that
// ViewportIntersection() can return a reference.
gfx::Rect viewport_intersection_rect_;
viz::LocalSurfaceId local_surface_id_;
};
} // namespace content
#endif // CONTENT_BROWSER_RENDERER_HOST_FRAME_CONNECTOR_DELEGATE_H_
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
b3d56581d46956cc9982122eec4c6262921f97b0 | 675d16f95685d572d8cbb1f143c4707e12e23816 | /Lab7Empty/AbstractHardware/Registers/STM32F407/FieldValues/nvicstirfieldvalues.hpp | c2b6d999c5ff024b43f8e82b1975595cd5b50e9a | [] | no_license | lamer0k/stm32Labs | 25f8606bdc74f56b5bfc18a12fac9e827dbae703 | 871b95e85866c7a074bf6eaed1d0a76e9007d92b | refs/heads/master | 2023-04-09T08:27:37.411268 | 2023-03-31T12:14:40 | 2023-03-31T12:14:40 | 131,148,022 | 1 | 11 | null | 2023-03-31T12:14:41 | 2018-04-26T11:49:54 | C++ | UTF-8 | C++ | false | false | 691 | hpp | /*******************************************************************************
* Filename : nvicstirfieldvalues.hpp
*
* Details : Enumerations related with NVIC_STIR peripheral. This header
* file is auto-generated for STM32F407 device.
*
*
*******************************************************************************/
#if !defined(NVICSTIRENUMS_HPP)
#define NVICSTIRENUMS_HPP
#include "fieldvalue.hpp" //for FieldValues
template <typename Reg, size_t offset, size_t size, typename AccessMode, typename BaseType>
struct NVIC_STIR_STIR_INTID_Values: public RegisterField<Reg, offset, size, AccessMode>
{
} ;
#endif //#if !defined(NVICSTIRENUMS_HPP)
| [
"sergey.kolody@gmail.com"
] | sergey.kolody@gmail.com |
3ed3a2cb1a714a83090847efd2b9d195a1276790 | 5f65df26e4e3e4f0e8f131269505f7f083dc8b1d | /YYF的笔记/上课/comp 345_advanced c++/chapter 6/ClockObserver/ClockTimer.cpp | b6c9b55aa2b29c3e29107e8f38fd21e289d3b2ed | [] | no_license | yifanyang123/GoodGoodStudy | e7ee22d323e3371142b59f1e126fdd578e06077d | bacc3e457052e3b6f23e91ff449143883a8be414 | refs/heads/master | 2023-03-10T03:11:45.403763 | 2021-02-22T08:22:19 | 2021-02-22T08:22:19 | 329,353,505 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 463 | cpp | #include "ClockTimer.h"
ClockTimer::ClockTimer(): hour(0), minute(0), second(0) {
};
ClockTimer::~ClockTimer(){
};
void ClockTimer::start(int time){
for (int i = 1; i <= time; i++)
tick();
};
void ClockTimer::tick(){
second++;
if (second >= 60){
minute++;
second = 0;
if (minute >= 60){
hour++;
minute = 0;
if (hour >= 24){
hour = 0;
}
}
};
// The Observable object notifies all its registered observers
Notify();
};
| [
"46521750+pigooo1@users.noreply.github.com"
] | 46521750+pigooo1@users.noreply.github.com |
c8907167dbc8b2f1cc97047f0a2ecd541c0f5ca9 | 09a4962b93c196f2f8a70c2384757142793612fd | /Dripdoctors/build/Android/Preview/Dripdoctors/app/src/main/jni/Fuse.Internal.Drawing.g.cpp | 471fb8fd9678aba60096fe03aea95500ceac96ee | [] | no_license | JimmyRodriguez/apps-fuse | 169779ff2827a6e35be91d9ff17e0c444ba7f8cd | 14114328c3cea08c1fd766bf085bbf5a67f698ae | refs/heads/master | 2020-12-03T09:25:26.566750 | 2016-09-24T14:24:49 | 2016-09-24T14:24:49 | 65,154,944 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,361 | cpp | // This file was generated based on '(multiple files)'.
// WARNING: Changes might be lost if you edit this file directly.
#include <_root.FuseControls_bundle.h>
#include <Fuse.DrawContext.h>
#include <Fuse.Drawing.BlendMode.h>
#include <Fuse.Drawing.BlendModeHelpers.h>
#include <Fuse.Drawing.Brush.h>
#include <Fuse.Drawing.DynamicBrush.h>
#include <Fuse.Drawing.ImageFill.DrawParams.h>
#include <Fuse.Drawing.ImageFill.h>
#include <Fuse.Drawing.LinearGradient.h>
#include <Fuse.Drawing.SolidColor.h>
#include <Fuse.Drawing.StaticSolidColor.h>
#include <Fuse.Elements.Element.h>
#include <Fuse.Internal.Drawing.SolidRectangle.h>
#include <Fuse.IViewport.h>
#include <Fuse.Visual.h>
#include <Uno.Bool.h>
#include <Uno.Buffer.h>
#include <Uno.Float.h>
#include <Uno.Float2.h>
#include <Uno.Float3.h>
#include <Uno.Float4.h>
#include <Uno.Graphics.BlendOperand.h>
#include <Uno.Graphics.BufferUsage.h>
#include <Uno.Graphics.Framebuffer.h>
#include <Uno.Graphics.PolygonFace.h>
#include <Uno.Graphics.Texture2D.h>
#include <Uno.Graphics.VertexAttributeType.h>
#include <Uno.Graphics.VertexBuffer.h>
#include <Uno.Int.h>
#include <Uno.Math.h>
#include <Uno.Matrix.h>
#include <Uno.Runtime.Implementation.Internal.BufferConverters.h>
#include <Uno.Runtime.Implementation.ShaderBackends.OpenGL.GLProgram.h>
#include <Uno.Vector.h>
static uType* TYPES[7];
namespace g{
namespace Fuse{
namespace Internal{
namespace Drawing{
// C:\ProgramData\Uno\Packages\Fuse.Controls\0.32.14\$.uno
// -------------------------------------------------------
// internal sealed class SolidRectangle :89
// {
// static SolidRectangle() :89
static void SolidRectangle__cctor__fn(uType* __type)
{
SolidRectangle::Impl_ = SolidRectangle::New1();
}
static void SolidRectangle_build(uType* type)
{
::TYPES[0] = ::g::Fuse::Drawing::ImageFill_typeof();
::TYPES[1] = ::g::Fuse::IViewport_typeof();
::TYPES[2] = ::g::Fuse::Visual_typeof();
::TYPES[3] = ::g::Fuse::Drawing::SolidColor_typeof();
::TYPES[4] = ::g::Fuse::Drawing::LinearGradient_typeof();
::TYPES[5] = ::g::Fuse::Drawing::StaticSolidColor_typeof();
::TYPES[6] = ::g::Uno::Float2_typeof()->Array();
type->SetFields(0,
::g::Uno::Runtime::Implementation::ShaderBackends::OpenGL::GLDrawCall_typeof(), offsetof(::g::Fuse::Internal::Drawing::SolidRectangle, _draw_c930343d), 0,
::g::Uno::Runtime::Implementation::ShaderBackends::OpenGL::GLDrawCall_typeof(), offsetof(::g::Fuse::Internal::Drawing::SolidRectangle, _draw_c951343d), 0,
::g::Uno::Runtime::Implementation::ShaderBackends::OpenGL::GLDrawCall_typeof(), offsetof(::g::Fuse::Internal::Drawing::SolidRectangle, _draw_c993343d), 0,
::g::Uno::Graphics::BlendOperand_typeof(), offsetof(::g::Fuse::Internal::Drawing::SolidRectangle, DrawElement_BlendDstAlpha_c8ee343d_12_7_13), 0,
::g::Uno::Graphics::BlendOperand_typeof(), offsetof(::g::Fuse::Internal::Drawing::SolidRectangle, DrawElement_BlendDstRgb_c8ee343d_12_5_12), 0,
::g::Uno::Graphics::BlendOperand_typeof(), offsetof(::g::Fuse::Internal::Drawing::SolidRectangle, DrawElement_BlendSrcAlpha_c8ee343d_12_6_11), 0,
::g::Uno::Graphics::BlendOperand_typeof(), offsetof(::g::Fuse::Internal::Drawing::SolidRectangle, DrawElement_BlendSrcRgb_c8ee343d_12_4_10), 0,
::g::Uno::Float4x4_typeof(), offsetof(::g::Fuse::Internal::Drawing::SolidRectangle, DrawElement_LocalTransform_c993343d_4_9_2), 0,
::g::Uno::Float4x4_typeof(), offsetof(::g::Fuse::Internal::Drawing::SolidRectangle, DrawElement_LocalTransform_c993343d_4_9_3), 0,
::g::Uno::Float4x4_typeof(), offsetof(::g::Fuse::Internal::Drawing::SolidRectangle, DrawElement_LocalTransform_c993343d_4_9_4), 0,
::g::Uno::Graphics::VertexBuffer_typeof(), offsetof(::g::Fuse::Internal::Drawing::SolidRectangle, DrawElement_VertexData_c8ee343d_7_2_1), 0,
::g::Uno::Graphics::VertexBuffer_typeof(), offsetof(::g::Fuse::Internal::Drawing::SolidRectangle, DrawElement_VertexData_c930343d_7_2_1), 0,
::g::Uno::Graphics::VertexBuffer_typeof(), offsetof(::g::Fuse::Internal::Drawing::SolidRectangle, DrawElement_VertexData_c951343d_7_2_1), 0,
::g::Uno::Graphics::VertexBuffer_typeof(), offsetof(::g::Fuse::Internal::Drawing::SolidRectangle, DrawElement_VertexData_c993343d_7_2_1), 0,
SolidRectangle_typeof(), (uintptr_t)&::g::Fuse::Internal::Drawing::SolidRectangle::Impl_, uFieldFlagsStatic);
}
uType* SolidRectangle_typeof()
{
static uSStrong<uType*> type;
if (type != NULL) return type;
uTypeOptions options;
options.FieldCount = 15;
options.ObjectSize = sizeof(SolidRectangle);
options.TypeSize = sizeof(uType);
type = uClassType::New("Fuse.Internal.Drawing.SolidRectangle", options);
type->fp_build_ = SolidRectangle_build;
type->fp_ctor_ = (void*)SolidRectangle__New1_fn;
type->fp_cctor_ = SolidRectangle__cctor__fn;
return type;
}
// public generated SolidRectangle() :89
void SolidRectangle__ctor__fn(SolidRectangle* __this)
{
__this->ctor_();
}
// public void DrawElement(Fuse.DrawContext dc, Fuse.Elements.Element element, Fuse.Drawing.Brush brush, float opacity) :93
void SolidRectangle__DrawElement_fn(SolidRectangle* __this, ::g::Fuse::DrawContext* dc, ::g::Fuse::Elements::Element* element, ::g::Fuse::Drawing::Brush* brush, float* opacity)
{
__this->DrawElement(dc, element, brush, *opacity);
}
// private generated void init_DrawCalls() :89
void SolidRectangle__init_DrawCalls_fn(SolidRectangle* __this)
{
__this->init_DrawCalls();
}
// public generated SolidRectangle New() :89
void SolidRectangle__New1_fn(SolidRectangle** __retval)
{
*__retval = SolidRectangle::New1();
}
uSStrong<SolidRectangle*> SolidRectangle::Impl_;
// public generated SolidRectangle() [instance] :89
void SolidRectangle::ctor_()
{
uStackFrame __("Fuse.Internal.Drawing.SolidRectangle", ".ctor()");
init_DrawCalls();
}
// public void DrawElement(Fuse.DrawContext dc, Fuse.Elements.Element element, Fuse.Drawing.Brush brush, float opacity) [instance] :93
void SolidRectangle::DrawElement(::g::Fuse::DrawContext* dc, ::g::Fuse::Elements::Element* element, ::g::Fuse::Drawing::Brush* brush, float opacity)
{
uStackFrame __("Fuse.Internal.Drawing.SolidRectangle", "DrawElement(Fuse.DrawContext,Fuse.Elements.Element,Fuse.Drawing.Brush,float)");
::g::Uno::Float4 ind1;
::g::Uno::Float4 ind2;
::g::Uno::Float4 ind3;
::g::Uno::Float4 ind4;
::g::Uno::Float4 ind5;
if (uIs(brush, ::TYPES[0/*Fuse.Drawing.ImageFill*/]))
{
::g::Uno::Float4x4 LocalTransform_c993343d_4_9_5 = ::g::Uno::Matrix::Mul10(DrawElement_LocalTransform_c993343d_4_9_2, ::g::Uno::Matrix::Scaling1(uPtr(element)->ActualSize().X, uPtr(element)->ActualSize().Y, 1.0f), DrawElement_LocalTransform_c993343d_4_9_3, DrawElement_LocalTransform_c993343d_4_9_4);
::g::Uno::Graphics::Texture2D* Texture_c993343d_14_6_9 = uPtr(uAs< ::g::Fuse::Drawing::ImageFill*>(brush, ::TYPES[0/*Fuse.Drawing.ImageFill*/]))->GetTexture();
::g::Fuse::Drawing::ImageFill__DrawParams DP_c993343d_14_5_12 = uPtr(uAs< ::g::Fuse::Drawing::ImageFill*>(brush, ::TYPES[0/*Fuse.Drawing.ImageFill*/]))->GetDrawParams(dc, element->ActualSize());
_draw_c993343d.BlendEnabled(true);
_draw_c993343d.DepthTestEnabled(false);
_draw_c993343d.CullFace(uPtr(dc)->CullFace());
_draw_c993343d.BlendSrcRgb(::g::Fuse::Drawing::BlendModeHelpers::GetSrcRgb(uPtr(uAs< ::g::Fuse::Drawing::ImageFill*>(brush, ::TYPES[0/*Fuse.Drawing.ImageFill*/]))->BlendMode()));
_draw_c993343d.BlendSrcAlpha(::g::Fuse::Drawing::BlendModeHelpers::GetSrcAlpha(uPtr(uAs< ::g::Fuse::Drawing::ImageFill*>(brush, ::TYPES[0/*Fuse.Drawing.ImageFill*/]))->BlendMode()));
_draw_c993343d.BlendDstRgb(::g::Fuse::Drawing::BlendModeHelpers::GetDstRgb(uPtr(uAs< ::g::Fuse::Drawing::ImageFill*>(brush, ::TYPES[0/*Fuse.Drawing.ImageFill*/]))->BlendMode()));
_draw_c993343d.BlendDstAlpha(::g::Fuse::Drawing::BlendModeHelpers::GetDstAlpha(uPtr(uAs< ::g::Fuse::Drawing::ImageFill*>(brush, ::TYPES[0/*Fuse.Drawing.ImageFill*/]))->BlendMode()));
_draw_c993343d.Const(0, Texture_c993343d_14_6_9 == NULL);
_draw_c993343d.Use();
_draw_c993343d.Attrib1(1, 2, DrawElement_VertexData_c993343d_7_2_1, 8, 0);
_draw_c993343d.Uniform12(2, ::g::Fuse::IViewport::ViewProjectionTransform(uInterface(uPtr(dc->Viewport()), ::TYPES[1/*Fuse.IViewport*/])));
_draw_c993343d.Uniform2(3, uPtr(element)->ActualSize());
_draw_c993343d.Uniform2(4, DP_c993343d_14_5_12.Origin);
_draw_c993343d.Uniform2(5, DP_c993343d_14_5_12.Size);
_draw_c993343d.Uniform2(6, ::g::Uno::Float2__op_Subtraction2((ind1 = DP_c993343d_14_5_12.UVClip, ::g::Uno::Float2__New2(ind1.Z, ind1.W)), (ind2 = DP_c993343d_14_5_12.UVClip, ::g::Uno::Float2__New2(ind2.X, ind2.Y))));
_draw_c993343d.Uniform2(7, (ind3 = DP_c993343d_14_5_12.UVClip, ::g::Uno::Float2__New2(ind3.X, ind3.Y)));
_draw_c993343d.Uniform10(8, uPtr(uAs< ::g::Fuse::Drawing::ImageFill*>(brush, ::TYPES[0/*Fuse.Drawing.ImageFill*/]))->Color());
_draw_c993343d.Uniform(9, uPtr(uAs< ::g::Fuse::Drawing::ImageFill*>(brush, ::TYPES[0/*Fuse.Drawing.ImageFill*/]))->Opacity());
_draw_c993343d.Uniform(10, opacity);
_draw_c993343d.Uniform12(11, (element != NULL) ? ::g::Uno::Matrix::Mul8(LocalTransform_c993343d_4_9_5, element->WorldTransform()) : LocalTransform_c993343d_4_9_5);
_draw_c993343d.Sampler2(12, Texture_c993343d_14_6_9);
_draw_c993343d.DrawArrays(6);
}
else if (uIs(brush, ::TYPES[3/*Fuse.Drawing.SolidColor*/]))
{
::g::Uno::Float4x4 LocalTransform_c930343d_4_9_2 = ::g::Uno::Matrix::Mul10(DrawElement_LocalTransform_c993343d_4_9_2, ::g::Uno::Matrix::Scaling1(uPtr(element)->ActualSize().X, uPtr(element)->ActualSize().Y, 1.0f), DrawElement_LocalTransform_c993343d_4_9_3, DrawElement_LocalTransform_c993343d_4_9_4);
_draw_c930343d.BlendEnabled(true);
_draw_c930343d.DepthTestEnabled(false);
_draw_c930343d.CullFace(uPtr(dc)->CullFace());
_draw_c930343d.BlendSrcRgb(::g::Fuse::Drawing::BlendModeHelpers::GetSrcRgb(uPtr(uAs< ::g::Fuse::Drawing::SolidColor*>(brush, ::TYPES[3/*Fuse.Drawing.SolidColor*/]))->BlendMode()));
_draw_c930343d.BlendSrcAlpha(::g::Fuse::Drawing::BlendModeHelpers::GetSrcAlpha(uPtr(uAs< ::g::Fuse::Drawing::SolidColor*>(brush, ::TYPES[3/*Fuse.Drawing.SolidColor*/]))->BlendMode()));
_draw_c930343d.BlendDstRgb(::g::Fuse::Drawing::BlendModeHelpers::GetDstRgb(uPtr(uAs< ::g::Fuse::Drawing::SolidColor*>(brush, ::TYPES[3/*Fuse.Drawing.SolidColor*/]))->BlendMode()));
_draw_c930343d.BlendDstAlpha(::g::Fuse::Drawing::BlendModeHelpers::GetDstAlpha(uPtr(uAs< ::g::Fuse::Drawing::SolidColor*>(brush, ::TYPES[3/*Fuse.Drawing.SolidColor*/]))->BlendMode()));
_draw_c930343d.Use();
_draw_c930343d.Attrib1(0, 2, DrawElement_VertexData_c930343d_7_2_1, 8, 0);
_draw_c930343d.Uniform12(1, ::g::Fuse::IViewport::ViewProjectionTransform(uInterface(uPtr(dc->Viewport()), ::TYPES[1/*Fuse.IViewport*/])));
_draw_c930343d.Uniform10(2, ::g::Uno::Float4__op_Multiply1(::g::Uno::Float4__New8(::g::Uno::Float3__op_Multiply1(::g::Uno::Float3__op_Multiply1((ind4 = uPtr(uAs< ::g::Fuse::Drawing::SolidColor*>(brush, ::TYPES[3/*Fuse.Drawing.SolidColor*/]))->Color(), ::g::Uno::Float3__New2(ind4.X, ind4.Y, ind4.Z)), uPtr(uAs< ::g::Fuse::Drawing::SolidColor*>(brush, ::TYPES[3/*Fuse.Drawing.SolidColor*/]))->Color().W), uPtr(uAs< ::g::Fuse::Drawing::SolidColor*>(brush, ::TYPES[3/*Fuse.Drawing.SolidColor*/]))->Opacity()), uPtr(uAs< ::g::Fuse::Drawing::SolidColor*>(brush, ::TYPES[3/*Fuse.Drawing.SolidColor*/]))->Color().W * uPtr(uAs< ::g::Fuse::Drawing::SolidColor*>(brush, ::TYPES[3/*Fuse.Drawing.SolidColor*/]))->Opacity()), opacity));
_draw_c930343d.Uniform12(3, (element != NULL) ? ::g::Uno::Matrix::Mul8(LocalTransform_c930343d_4_9_2, uPtr(element)->WorldTransform()) : LocalTransform_c930343d_4_9_2);
_draw_c930343d.DrawArrays(6);
}
else if (uIs(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))
{
::g::Uno::Float4x4 LocalTransform_c951343d_4_9_2 = ::g::Uno::Matrix::Mul10(DrawElement_LocalTransform_c993343d_4_9_2, ::g::Uno::Matrix::Scaling1(uPtr(element)->ActualSize().X, uPtr(element)->ActualSize().Y, 1.0f), DrawElement_LocalTransform_c993343d_4_9_3, DrawElement_LocalTransform_c993343d_4_9_4);
::g::Uno::Float2 angleSlope_c951343d_14_18_8 = ::g::Uno::Float2__New2(::g::Uno::Math::Cos1(uPtr(uAs< ::g::Fuse::Drawing::LinearGradient*>(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))->Angle()), ::g::Uno::Math::Sin1(uPtr(uAs< ::g::Fuse::Drawing::LinearGradient*>(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))->Angle()));
float angleLen_c951343d_14_17_9 = ::g::Uno::Math::Abs1(element->ActualSize().X * ::g::Uno::Math::Cos1(uPtr(uAs< ::g::Fuse::Drawing::LinearGradient*>(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))->Angle())) + ::g::Uno::Math::Abs1(element->ActualSize().Y * ::g::Uno::Math::Sin1(uPtr(uAs< ::g::Fuse::Drawing::LinearGradient*>(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))->Angle()));
_draw_c951343d.BlendEnabled(true);
_draw_c951343d.DepthTestEnabled(false);
_draw_c951343d.CullFace(uPtr(dc)->CullFace());
_draw_c951343d.BlendSrcRgb(::g::Fuse::Drawing::BlendModeHelpers::GetSrcRgb(uPtr(uAs< ::g::Fuse::Drawing::LinearGradient*>(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))->BlendMode()));
_draw_c951343d.BlendSrcAlpha(::g::Fuse::Drawing::BlendModeHelpers::GetSrcAlpha(uPtr(uAs< ::g::Fuse::Drawing::LinearGradient*>(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))->BlendMode()));
_draw_c951343d.BlendDstRgb(::g::Fuse::Drawing::BlendModeHelpers::GetDstRgb(uPtr(uAs< ::g::Fuse::Drawing::LinearGradient*>(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))->BlendMode()));
_draw_c951343d.BlendDstAlpha(::g::Fuse::Drawing::BlendModeHelpers::GetDstAlpha(uPtr(uAs< ::g::Fuse::Drawing::LinearGradient*>(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))->BlendMode()));
_draw_c951343d.Use();
_draw_c951343d.Attrib1(0, 2, DrawElement_VertexData_c951343d_7_2_1, 8, 0);
_draw_c951343d.Uniform12(1, ::g::Fuse::IViewport::ViewProjectionTransform(uInterface(uPtr(dc->Viewport()), ::TYPES[1/*Fuse.IViewport*/])));
_draw_c951343d.Uniform2(2, uPtr(element)->ActualSize());
_draw_c951343d.Uniform2(3, uPtr(uAs< ::g::Fuse::Drawing::LinearGradient*>(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))->HasAngle() ? ::g::Uno::Float2__op_Subtraction2(::g::Uno::Float2__op_Division1(element->ActualSize(), 2.0f), ::g::Uno::Float2__op_Division1(::g::Uno::Float2__op_Multiply1(angleSlope_c951343d_14_18_8, angleLen_c951343d_14_17_9), 2.0f)) : ::g::Uno::Float2__op_Multiply2(uPtr(uAs< ::g::Fuse::Drawing::LinearGradient*>(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))->StartPoint(), element->ActualSize()));
_draw_c951343d.Uniform2(4, uPtr(uAs< ::g::Fuse::Drawing::LinearGradient*>(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))->_gradientStart);
_draw_c951343d.Uniform(5, uPtr(uAs< ::g::Fuse::Drawing::LinearGradient*>(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))->Opacity());
_draw_c951343d.Uniform(6, opacity);
_draw_c951343d.Uniform12(7, (element != NULL) ? ::g::Uno::Matrix::Mul8(LocalTransform_c951343d_4_9_2, element->WorldTransform()) : LocalTransform_c951343d_4_9_2);
_draw_c951343d.Uniform2(8, uPtr(uAs< ::g::Fuse::Drawing::LinearGradient*>(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))->HasAngle() ? angleSlope_c951343d_14_18_8 : ::g::Uno::Vector::Normalize(::g::Uno::Float2__op_Multiply2(::g::Uno::Float2__op_Subtraction2(uPtr(uAs< ::g::Fuse::Drawing::LinearGradient*>(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))->EndPoint(), uPtr(uAs< ::g::Fuse::Drawing::LinearGradient*>(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))->StartPoint()), element->ActualSize())));
_draw_c951343d.Uniform(9, uPtr(uAs< ::g::Fuse::Drawing::LinearGradient*>(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))->HasAngle() ? angleLen_c951343d_14_17_9 : ::g::Uno::Vector::Length(::g::Uno::Float2__op_Multiply2(::g::Uno::Float2__op_Subtraction2(uPtr(uAs< ::g::Fuse::Drawing::LinearGradient*>(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))->EndPoint(), uPtr(uAs< ::g::Fuse::Drawing::LinearGradient*>(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))->StartPoint()), element->ActualSize())));
_draw_c951343d.Sampler2(10, uPtr(uPtr(uAs< ::g::Fuse::Drawing::LinearGradient*>(brush, ::TYPES[4/*Fuse.Drawing.LinearGradient*/]))->_gradientBuffer)->ColorBuffer());
_draw_c951343d.DrawArrays(6);
}
else if (uIs(brush, ::TYPES[5/*Fuse.Drawing.StaticSolidColor*/]))
{
::g::Uno::Float4x4 LocalTransform_c8ee343d_4_9_2 = ::g::Uno::Matrix::Mul10(DrawElement_LocalTransform_c993343d_4_9_2, ::g::Uno::Matrix::Scaling1(uPtr(element)->ActualSize().X, uPtr(element)->ActualSize().Y, 1.0f), DrawElement_LocalTransform_c993343d_4_9_3, DrawElement_LocalTransform_c993343d_4_9_4);
_draw_c930343d.BlendEnabled(true);
_draw_c930343d.DepthTestEnabled(false);
_draw_c930343d.CullFace(uPtr(dc)->CullFace());
_draw_c930343d.BlendSrcRgb(DrawElement_BlendSrcRgb_c8ee343d_12_4_10);
_draw_c930343d.BlendSrcAlpha(DrawElement_BlendSrcAlpha_c8ee343d_12_6_11);
_draw_c930343d.BlendDstRgb(DrawElement_BlendDstRgb_c8ee343d_12_5_12);
_draw_c930343d.BlendDstAlpha(DrawElement_BlendDstAlpha_c8ee343d_12_7_13);
_draw_c930343d.Use();
_draw_c930343d.Attrib1(0, 2, DrawElement_VertexData_c8ee343d_7_2_1, 8, 0);
_draw_c930343d.Uniform12(1, ::g::Fuse::IViewport::ViewProjectionTransform(uInterface(uPtr(dc->Viewport()), ::TYPES[1/*Fuse.IViewport*/])));
_draw_c930343d.Uniform10(2, ::g::Uno::Float4__op_Multiply1(::g::Uno::Float4__New8(::g::Uno::Float3__op_Multiply1((ind5 = uPtr(uAs< ::g::Fuse::Drawing::StaticSolidColor*>(brush, ::TYPES[5/*Fuse.Drawing.StaticSolidColor*/]))->Color(), ::g::Uno::Float3__New2(ind5.X, ind5.Y, ind5.Z)), uPtr(uAs< ::g::Fuse::Drawing::StaticSolidColor*>(brush, ::TYPES[5/*Fuse.Drawing.StaticSolidColor*/]))->Color().W), uPtr(uAs< ::g::Fuse::Drawing::StaticSolidColor*>(brush, ::TYPES[5/*Fuse.Drawing.StaticSolidColor*/]))->Color().W), opacity));
_draw_c930343d.Uniform12(3, (element != NULL) ? ::g::Uno::Matrix::Mul8(LocalTransform_c8ee343d_4_9_2, uPtr(element)->WorldTransform()) : LocalTransform_c8ee343d_4_9_2);
_draw_c930343d.DrawArrays(6);
}
}
// private generated void init_DrawCalls() [instance] :89
void SolidRectangle::init_DrawCalls()
{
uStackFrame __("Fuse.Internal.Drawing.SolidRectangle", "init_DrawCalls()");
uArray* Vertices_c993343d_7_1_0 = uArray::Init< ::g::Uno::Float2>(::TYPES[6/*float2[]*/], 6, ::g::Uno::Float2__New2(0.0f, 0.0f), ::g::Uno::Float2__New2(0.0f, 1.0f), ::g::Uno::Float2__New2(1.0f, 1.0f), ::g::Uno::Float2__New2(0.0f, 0.0f), ::g::Uno::Float2__New2(1.0f, 1.0f), ::g::Uno::Float2__New2(1.0f, 0.0f));
DrawElement_VertexData_c993343d_7_2_1 = ::g::Uno::Graphics::VertexBuffer::New2(::g::Uno::Runtime::Implementation::Internal::BufferConverters::ToBuffer3(Vertices_c993343d_7_1_0), 0);
DrawElement_LocalTransform_c993343d_4_9_2 = ::g::Uno::Matrix::Translation(-::g::Uno::Float2__New1(0.0f).X, -::g::Uno::Float2__New1(0.0f).Y, 0.0f);
DrawElement_LocalTransform_c993343d_4_9_3 = ::g::Uno::Matrix::RotationZ(0.0f);
DrawElement_LocalTransform_c993343d_4_9_4 = ::g::Uno::Matrix::Translation(::g::Uno::Float2__New1(0.0f).X, ::g::Uno::Float2__New1(0.0f).Y, 0.0f);
DrawElement_VertexData_c930343d_7_2_1 = ::g::Uno::Graphics::VertexBuffer::New2(::g::Uno::Runtime::Implementation::Internal::BufferConverters::ToBuffer3(Vertices_c993343d_7_1_0), 0);
DrawElement_VertexData_c951343d_7_2_1 = ::g::Uno::Graphics::VertexBuffer::New2(::g::Uno::Runtime::Implementation::Internal::BufferConverters::ToBuffer3(Vertices_c993343d_7_1_0), 0);
DrawElement_VertexData_c8ee343d_7_2_1 = ::g::Uno::Graphics::VertexBuffer::New2(::g::Uno::Runtime::Implementation::Internal::BufferConverters::ToBuffer3(Vertices_c993343d_7_1_0), 0);
DrawElement_BlendSrcRgb_c8ee343d_12_4_10 = ::g::Fuse::Drawing::BlendModeHelpers::GetSrcRgb(0);
DrawElement_BlendSrcAlpha_c8ee343d_12_6_11 = ::g::Fuse::Drawing::BlendModeHelpers::GetSrcAlpha(0);
DrawElement_BlendDstRgb_c8ee343d_12_5_12 = ::g::Fuse::Drawing::BlendModeHelpers::GetDstRgb(0);
DrawElement_BlendDstAlpha_c8ee343d_12_7_13 = ::g::Fuse::Drawing::BlendModeHelpers::GetDstAlpha(0);
_draw_c993343d = ::g::Uno::Runtime::Implementation::ShaderBackends::OpenGL::GLDrawCall__New1(::g::FuseControls_bundle::SolidRectangle5953675f());
_draw_c930343d = ::g::Uno::Runtime::Implementation::ShaderBackends::OpenGL::GLDrawCall__New1(::g::FuseControls_bundle::SolidRectangle5950675f());
_draw_c951343d = ::g::Uno::Runtime::Implementation::ShaderBackends::OpenGL::GLDrawCall__New1(::g::FuseControls_bundle::SolidRectangle5951675f());
}
// public generated SolidRectangle New() [static] :89
SolidRectangle* SolidRectangle::New1()
{
SolidRectangle* obj6 = (SolidRectangle*)uNew(SolidRectangle_typeof());
obj6->ctor_();
return obj6;
}
// }
}}}} // ::g::Fuse::Internal::Drawing
| [
"jimmy_sidney@hotmail.es"
] | jimmy_sidney@hotmail.es |
93165b842994f231fc3338cbfb127839b3e8a5bb | c4fcddc2c5f0b02bbf3602f6f9b0c89484a2662b | /include/ThirdParty/LightInkLog/Log/FixedLogger.h | 4bc6a7749964c5e3207ab9cadd1b4574de2167d6 | [
"MIT"
] | permissive | ternence-li/LightInk3D | a54971ccd50fb15be8a4c019a038655ed9b1b9ea | 7b35419d164c9c939359f9106264841dc8c283a2 | refs/heads/master | 2021-06-11T20:21:44.810389 | 2017-01-20T09:59:44 | 2017-01-20T09:59:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,230 | h |
/* Copyright ChenDong(Wilbur), email <baisaichen@live.com>. All rights reserved.
*
* 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.
*/
#ifndef LIGHTINK_LOG_FIXEDLOGGER_H_
#define LIGHTINK_LOG_FIXEDLOGGER_H_
#include "Common/SingletonBase.h"
#include "Log/Logger.h"
namespace LightInk
{
template <int32 Idx>
class LIGHTINK_TEMPLATE_DECL FixedLogger : public SingletonBase, public SmallObject
{
private:
FixedLogger() { }
static inline Logger * instance() { return m_logger; }
static inline bool init(const LogOption & op)
{
Guard<LogLockAuto> l(m_lock);
if (m_logger) { return false; }
m_logger = new Logger(op);
m_loggerPtr.reset(m_logger);
return true;
}
void destroy()
{
Guard<LogLockAuto> l(m_lock);
if (m_logger)
{
m_logger = NULL;
m_loggerPtr.reset();
}
}
private:
static Logger * m_logger;
static LogLockAuto m_lock;
static LoggerPtr m_loggerPtr;
friend class LoggerMgr;
LIGHTINK_DISABLE_COPY(FixedLogger)
};
template <int Idx>
Logger * FixedLogger<Idx>::m_logger = NULL;
template <int Idx>
LogLockAuto FixedLogger<Idx>::m_lock;
template <int Idx>
LoggerPtr FixedLogger<Idx>::m_loggerPtr;
}
#endif | [
"baisaichen@live.com"
] | baisaichen@live.com |
92bbaca78c3338ad3e6108b2cb04f498039397e0 | 23dd75bba5e3efb862f63242fc9b62cf91baac7d | /GameSkeleton/GameSkeleton/GameSolution/Game/main.cpp | 31e08e1a141225a5d8c6a224ee572219604fa665 | [] | no_license | dohatch/csc_190_Donald_Hatch | 0f80ab3d8ae84e98a968761ea17536c935680241 | 75e51cdcf2bda0ef51a42038f1f55734cf8c4842 | refs/heads/master | 2021-01-25T10:00:22.591112 | 2014-05-04T00:06:05 | 2014-05-04T00:06:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 628 | cpp | #include "Engine.h"
#include "Core.h"
using Core::Input;
const int SCREEN_WIDTH = 1024;
const int SCREEN_HEIGHT = 768;
bool Update(float dt) {
dt;
if(Input::IsPressed(Input::KEY_ESCAPE))
return true;
return false;
}
void Draw(Core::Graphics& graphics) {
graphics.SetColor(RGB(255,255,0));
graphics.DrawString(SCREEN_WIDTH/2 - 50, SCREEN_HEIGHT/2 - 20, "Hello World!");
graphics.SetColor(RGB(0,255,255));
graphics.DrawLine(10, 10, 400, 300);
}
//void main()
//{
//
// Core::Init("Game Demo", SCREEN_WIDTH, SCREEN_HEIGHT);
// Core::RegisterUpdateFn(Update);
// Core::RegisterDrawFn(Draw);
// Core::GameLoop();
//} | [
"dohatch@student.neumont.edu"
] | dohatch@student.neumont.edu |
6bf1da98123426acf94ab43d81667bb7b7838082 | 49c6cf776addc6fbac50c887edfa168d81aa7729 | /Atcoder/Atcoder Beginner 197/c.cpp | 895f1dc1b98fca3fc8994d2c3df2465febc1cc6a | [] | no_license | Ryednap/Coding-Competition | b43e38b4e8d3bfc7eee21750cd1014fb4ce49c54 | a4fd7b97f3898e60800689fe27b8c00ac8a456fa | refs/heads/main | 2023-08-19T06:55:04.344956 | 2021-10-08T05:59:24 | 2021-10-08T05:59:24 | 398,359,907 | 0 | 0 | null | 2021-08-28T12:33:09 | 2021-08-20T17:55:14 | C++ | UTF-8 | C++ | false | false | 502 | cpp | #include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include "uj.h"
#endif
int main() {
int n;
scanf("%d", &n);
int arr[n];
for(int i = 0; i < n; ++i) {
scanf("%d", &arr[i]);
}
int answer = (int)2e9;
for(int i = 0; i < (1LL << (n - 1)); ++i) {
int res = 0, x = 0;
for(int j = 0; j <= n; ++j) {
if(j < n) x |= arr[j];
if(j == n || (i & (1 << j))) {
res ^= x;
x = 0;
}
}
answer = min(answer, res);
}
printf("%d\n", answer);
return 0;
}
| [
"ujjwalpandey408@gmail.com"
] | ujjwalpandey408@gmail.com |
a103782f9638063262aef959a386c1f885fc2c69 | f194974b8431ba62b232e362c8b1b555d9a07ac3 | /qt/quick/qquick_legacy_auxiliary_ui_factory.h | a7cec12a39bba30f02162afa207f0cdbfd9e7989 | [] | no_license | rubencarneiro/oxide | 9a0e8adc16c8f05d5a7a014ee566a8cc7b0f8fe2 | c05c51d79a4d4ab18740e6542ddff02becd9b49c | refs/heads/master | 2021-08-28T05:22:28.877979 | 2017-04-19T13:43:03 | 2017-04-19T13:43:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,195 | h | // vim:expandtab:shiftwidth=2:tabstop=2:
// Copyright (C) 2016 Canonical Ltd.
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// This library 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
// Lesser General Public License for more details.
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#ifndef _OXIDE_QT_QUICK_LEGACY_AUXILIARY_UI_FACTORY_H_
#define _OXIDE_QT_QUICK_LEGACY_AUXILIARY_UI_FACTORY_H_
#include <QPointer>
#include <QtGlobal>
#include "qt/core/glue/auxiliary_ui_factory.h"
QT_BEGIN_NAMESPACE
class QQmlComponent;
class QQuickItem;
QT_END_NAMESPACE
namespace oxide {
namespace qquick {
class LegacyAuxiliaryUIFactory : public qt::AuxiliaryUIFactory {
Q_DISABLE_COPY(LegacyAuxiliaryUIFactory)
public:
LegacyAuxiliaryUIFactory(QQuickItem* item);
~LegacyAuxiliaryUIFactory() override;
QQmlComponent* context_menu() const { return context_menu_; }
void set_context_menu(QQmlComponent* c) { context_menu_ = c; }
QQmlComponent* alert_dialog() const { return alert_dialog_; }
void set_alert_dialog(QQmlComponent* c) { alert_dialog_ = c; }
QQmlComponent* confirm_dialog() const { return confirm_dialog_; }
void set_confirm_dialog(QQmlComponent* c) { confirm_dialog_ = c; }
QQmlComponent* prompt_dialog() const { return prompt_dialog_; }
void set_prompt_dialog(QQmlComponent* c) { prompt_dialog_ = c; }
QQmlComponent* before_unload_dialog() const { return before_unload_dialog_; }
void set_before_unload_dialog(QQmlComponent* c) { before_unload_dialog_ = c; }
private:
// qt::AuxiliaryUIFactory implementation
std::unique_ptr<qt::WebContextMenu> CreateWebContextMenu(
const qt::WebContextMenuParams& params,
const std::vector<qt::MenuItem>& items,
qt::WebContextMenuClient* client) override;
std::unique_ptr<qt::TouchEditingMenu> CreateTouchEditingMenu(
qt::EditCapabilityFlags edit_flags,
qt::TouchEditingMenuClient* client) override;
std::unique_ptr<qt::JavaScriptDialog> CreateJavaScriptDialog(
const QUrl& origin_url,
qt::JavaScriptDialogType type,
const QString& message_text,
const QString& default_prompt_text,
qt::JavaScriptDialogClient* client) override;
std::unique_ptr<qt::JavaScriptDialog> CreateBeforeUnloadDialog(
const QUrl& origin_url,
qt::JavaScriptDialogClient* client) override;
QQuickItem* item_;
QPointer<QQmlComponent> context_menu_;
QPointer<QQmlComponent> alert_dialog_;
QPointer<QQmlComponent> confirm_dialog_;
QPointer<QQmlComponent> prompt_dialog_;
QPointer<QQmlComponent> before_unload_dialog_;
};
} // namespace qquick
} // namespace oxide
#endif // _OXIDE_QT_QUICK_LEGACY_AUXILIARY_UI_FACTORY_H_
| [
"chris.coulson@canonical.com"
] | chris.coulson@canonical.com |
fc922825296140866be950dbf1c3c735c243a42a | dccd1058e723b6617148824dc0243dbec4c9bd48 | /atcoder/abc010/a.cpp | d797c3cbf60334038eed3f59b5f7b133f99d6218 | [] | no_license | imulan/procon | 488e49de3bcbab36c624290cf9e370abfc8735bf | 2a86f47614fe0c34e403ffb35108705522785092 | refs/heads/master | 2021-05-22T09:24:19.691191 | 2021-01-02T14:27:13 | 2021-01-02T14:27:13 | 46,834,567 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 152 | cpp | #include <cstdio>
#include <iostream>
#include <string>
using namespace std;
int main(){
string s;
cin >> s;
cout << s << "pp" << endl;
return 0;
} | [
"k0223.teru@gamil.com"
] | k0223.teru@gamil.com |
d5f27211d543c2acc531644d84b2547dbd7fcae2 | 3bdda45d2f41effe9f2bf97f06d1f9d132bc597d | /ChromeWorker/v8handler.cpp | 638e0e95fe650c3b0ce19773440aca52ba766a92 | [
"MIT"
] | permissive | Geograph-us/BAS | cd901efde213c8565e2af9b5367491b480ca67af | 79bcd24ffa0d5f7a5d83acc05714a130ce1f54be | refs/heads/master | 2021-01-13T12:34:19.932515 | 2016-10-17T23:11:48 | 2016-10-17T23:11:48 | 72,543,441 | 1 | 0 | null | 2016-11-01T14:22:00 | 2016-11-01T14:21:59 | null | UTF-8 | C++ | false | false | 3,343 | cpp | #include "v8handler.h"
#include "log.h"
#include <thread>
V8Handler::V8Handler()
{
Changed = false;
ChangedInspect = false;
ChangedLocalStorage = false;
}
std::pair<std::string,bool> V8Handler::GetResult()
{
std::lock_guard<std::mutex> lock(mut);
std::pair<std::string,bool> r;
r.first = Result;
r.second = Changed;
//Changed = false;
return r;
}
std::pair<std::string,bool> V8Handler::GetLocalStorage()
{
std::lock_guard<std::mutex> lock(mut_local_storage);
std::pair<std::string,bool> r;
r.first = NewLocalStorage;
r.second = ChangedLocalStorage;
ChangedLocalStorage = false;
return r;
}
void V8Handler::SetResultProcessed()
{
std::lock_guard<std::mutex> lock(mut);
Changed = false;
}
std::pair<InspectResult,bool> V8Handler::GetInspectResult()
{
std::lock_guard<std::mutex> lock(mut_inspect);
std::pair<InspectResult,bool> r;
r.first = _InspectResult;
r.second = ChangedInspect;
_InspectResult.css.clear();
_InspectResult.match.clear();
_InspectResult.label.clear();
ChangedInspect = false;
return r;
}
bool V8Handler::Execute(const CefString& name, CefRefPtr<CefV8Value> object, const CefV8ValueList& arguments, CefRefPtr<CefV8Value>& retval, CefString& exception)
{
if(name == std::string("browser_automation_studio_result"))
{
if (arguments.size() == 1 && arguments[0]->IsString())
{
std::lock_guard<std::mutex> lock(mut);
Result = arguments[0]->GetStringValue().ToString();
Changed = true;
}else if (arguments.size() == 1 && (arguments[0]->IsUndefined() || arguments[0]->IsNull()))
{
std::lock_guard<std::mutex> lock(mut);
Result = "";
Changed = true;
} if (arguments.size() == 1 && (arguments[0]->IsInt()))
{
std::lock_guard<std::mutex> lock(mut);
Result = std::to_string(arguments[0]->GetIntValue());
Changed = true;
}
}else if(name == std::string("browser_automation_studio_inspect_result"))
{
std::lock_guard<std::mutex> lock(mut_inspect);
_InspectResult.x = arguments[0]->GetIntValue();
_InspectResult.y = arguments[1]->GetIntValue();
_InspectResult.width = arguments[2]->GetIntValue();
_InspectResult.height = arguments[3]->GetIntValue();
_InspectResult.label = arguments[4]->GetStringValue().ToString();
_InspectResult.css = arguments[5]->GetStringValue().ToString();
_InspectResult.css2 = arguments[6]->GetStringValue().ToString();
_InspectResult.css3 = arguments[7]->GetStringValue().ToString();
_InspectResult.match = arguments[8]->GetStringValue().ToString();
_InspectResult.mousex = arguments[9]->GetIntValue();
_InspectResult.mousey = arguments[10]->GetIntValue();
_InspectResult.active = arguments[11]->GetBoolValue();
ChangedInspect = true;
}else if(name == std::string("BrowserAutomationStudio_SaveLocalStorage"))
{
if (arguments.size() == 1 && arguments[0]->IsString())
{
std::lock_guard<std::mutex> lock(mut_local_storage);
NewLocalStorage = arguments[0]->GetStringValue().ToString();
ChangedLocalStorage = true;
}
}
return true;
}
| [
"mail.to.twaego@gmail.com"
] | mail.to.twaego@gmail.com |
6d77dd8f40d27a95ab0116d0aa5d05617086c6b4 | a8e0ea09ea34a3e7180125b694737cc7f1c2799c | /header/different_sorting_algorithm.h | c1e57be0df4b395d53c6211fb2dbf46cface5341 | [] | no_license | daiab/Leetcode-Practice | ade3252738f3b357efd530f9bf94e3fa208296d0 | 147d080e4a95cec137afb6bd0a976bcb4b30a267 | refs/heads/master | 2021-01-12T01:06:11.583927 | 2017-02-22T10:22:54 | 2017-02-22T10:22:54 | 78,344,982 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,500 | h | #include<header/base.h>
void BubbleSort(int arr[], int size){
for (int i = 0; i < size; ++i) {
for (int j=0; j < size - 1; ++j) {
if(arr[j] > arr[j+1]){
std::swap(arr[j], arr[j+1]);
}
}
}
}
void MergeSort(int arr[], int l_idx, int r_idx){
if((r_idx - l_idx) < 1) return;
int mid = (l_idx + r_idx) / 2;
MergeSort(arr, l_idx, mid);
MergeSort(arr, mid+1, r_idx);
int tmp, i , j;
for (i = mid+1; i <= r_idx; ++i) {
tmp = arr[i];
for(j = i - 1; j >= l_idx && arr[j] > tmp; --j){
arr[j + 1] = arr[j];
}
arr[j+1] = tmp;
}
}
void MergeSortMain(int arr[], int size){
MergeSort(arr, 0, size - 1);
}
//default use the last as pivot
void QuickSort(int arr[], int l_idx, int r_idx){
if((r_idx - l_idx) <= 1) return;
int pivot_val = arr[r_idx];
int tmp_idx = 0;
for (int i = 0; i < r_idx; ++i) {
if(arr[i] < pivot_val){
std::swap(arr[i], arr[tmp_idx]);
++tmp_idx;
}
}
std::swap(arr[tmp_idx], arr[r_idx]);
QuickSort(arr, l_idx, tmp_idx -1);
QuickSort(arr, tmp_idx, r_idx);
}
void QuickSortMain(int arr[], int size){
QuickSort(arr, 0, size - 1);
}
void test_sort(){
int arr[7] = {1, 23, 2, 7, 19, 10, 9};
//BubbleSort(arr, 7);
//MergeSortMain(arr, 7);
QuickSortMain(arr, 7);
for(int i = 0; i < 7; ++i){
cout << arr[i] << " ";
}
cout << endl;
}
| [
"daianbo@lightinthebox.com"
] | daianbo@lightinthebox.com |
2705334fafacec49252642ca9cbb5c87c443a155 | e335a5df5e055dff52efbe8ce3ff1d3e65d5f566 | /Building_Roads.cpp | 85424c3a6cd27ea506f2b57a2cabf2e8adfa8130 | [] | no_license | isym444/Competitive-Programming-Solved-Problems | fd318efb26267875e59ca989caaf08a3e2991506 | 8320342db6c7bbaa7115f00c5ddc8dcccc137a19 | refs/heads/master | 2023-02-11T19:25:05.705294 | 2021-01-08T15:41:19 | 2021-01-08T15:41:19 | 299,895,400 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,952 | cpp | /* #include <bits/stdc++.h> */
#include <cstdio>
#include <algorithm>
#include <iostream>
#include <vector>
#include <string>
#include <iostream>
#include <set>
using namespace std;
/* using std::vector; */
#define fo(i, n) for (i = 0; i < n; i++)
#define ll long long
#define sz(x) (int)(x).size()
#define mp make_pair
typedef pair<ll, ll> pl;
#define pb push_back
//=======================
void setIO(string name = "")
{ // name is nonempty for USACO file I/O
ios_base::sync_with_stdio(0);
cin.tie(0); // see Fast Input & Output
// alternatively, cin.tie(0)->sync_with_stdio(0);
if (sz(name))
{
freopen((name + ".in").c_str(), "r", stdin); // see Input & Output
freopen((name + ".out").c_str(), "w", stdout);
}
}
const long long maxx=1e5+10; //CHANGE TO 1e5+10
long long cities, roads;
vector<long long> adjlist[maxx];
bool visited[maxx];
void dfs(long long node)
{
visited[node]=true;
for(long long all: adjlist[node])
{
if(!visited[all])
{
dfs(all);
}
}
}
int main()
{
ios_base::sync_with_stdio(0);
setIO("");
/* freopen(("filename"), "r", stdin); */
cin >> cities >> roads;
//create adjacency list
for(int i = 0; i<roads; i++)
{
long long a,b;
cin >> a >> b;
adjlist[a].push_back(b);
adjlist[b].push_back(a);
}
//create dfs function
//find # of connected components + keep track of a node in each one: cout #-1
long long count = 0;
vector<long long> tracker;
for(int i = 1; i<=cities; i++)
{
if(!visited[i])
{
dfs(i);
tracker.push_back(i);
count++;
}
}
cout << count-1 << endl;
//cout edges of single node kept track of in connected components
for(int i = 1; i<tracker.size(); i++)
{
cout << tracker[i-1] << " " << tracker[i] << endl;
}
/* printf("%lli",x); */
} | [
"samir.yep@gmail.com"
] | samir.yep@gmail.com |
2e36672145ad76ebcca5f3cc57f0dff1de391869 | 9123470c3a83d42c3028fd41d7d104ae5ba78666 | /MusicApplicationByQt/QtWindow_playlist.cpp | 4f3397c22cd9c28f6ffce0181f386f1e5ac81c8e | [] | no_license | dnpcs12/musicApplication_DS | d79c349ba2902bcbd9e6198a6c25fa0990fcdc64 | d126565c9752a0068a584dd7fdf4b0589adf00b4 | refs/heads/master | 2020-12-23T13:35:45.038709 | 2020-01-30T08:29:45 | 2020-01-30T08:29:45 | 237,169,018 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 415 | cpp | #include "QtWindow_playlist.h"
#include "MusicApplicationByQt.h"
QtWindow_playlist::QtWindow_playlist(QWidget *parent)
: QWidget(parent)
{
setWindowFlags(Qt::Window);
ui.setupUi(this);
}
QtWindow_playlist::~QtWindow_playlist()
{
}
void QtWindow_playlist::PlayListNameReturn() {
QString playlist_name = ui.lineEdit->text();
((MusicApplicationByQt*)parent())->AddPlayList(playlist_name);
this->close();
}
| [
"dnpcs12"
] | dnpcs12 |
f755d51e818bbb45db851ee4d3d3315b9d7c2d6c | efe2b4dedbc6bab31ffe88c271daa5463f8649f6 | /tags/libtorrent-0_13/src/kademlia/routing_table.cpp | 359577613980cfdf287e2c21e0a481404e8a6d23 | [] | no_license | svn2github/libtorrent | 867c84f0c271cdc255c3e268c17db75d46010dde | 8cfe21e253d8b90086bb0b15c6c881795bf12ea1 | refs/heads/master | 2020-03-30T03:50:32.931129 | 2015-01-07T23:21:54 | 2015-01-07T23:21:54 | 17,344,601 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 13,173 | cpp | /*
Copyright (c) 2006, Arvid Norberg
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* 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.
* Neither the name of the author nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
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.
*/
#include "libtorrent/pch.hpp"
#include <vector>
#include <deque>
#include <algorithm>
#include <functional>
#include <numeric>
#include <boost/cstdint.hpp>
#include <boost/bind.hpp>
#include "libtorrent/kademlia/routing_table.hpp"
#include "libtorrent/kademlia/node_id.hpp"
#include "libtorrent/session_settings.hpp"
using boost::bind;
using boost::uint8_t;
namespace libtorrent { namespace dht
{
using asio::ip::udp;
typedef asio::ip::address_v4 address;
routing_table::routing_table(node_id const& id, int bucket_size
, dht_settings const& settings)
: m_bucket_size(bucket_size)
, m_settings(settings)
, m_id(id)
, m_lowest_active_bucket(160)
{
// distribute the refresh times for the buckets in an
// attempt do even out the network load
for (int i = 0; i < 160; ++i)
m_bucket_activity[i] = time_now() - milliseconds(i*5625);
m_bucket_activity[0] = time_now() - minutes(15);
}
boost::tuple<int, int> routing_table::size() const
{
int nodes = 0;
int replacements = 0;
for (table_t::const_iterator i = m_buckets.begin()
, end(m_buckets.end()); i != end; ++i)
{
nodes += i->first.size();
replacements += i->second.size();
}
return boost::make_tuple(nodes, replacements);
}
size_type routing_table::num_global_nodes() const
{
int first_full = m_lowest_active_bucket;
int num_nodes = 1; // we are one of the nodes
for (; first_full < 160
&& int(m_buckets[first_full].first.size()) < m_bucket_size;
++first_full)
{
num_nodes += m_buckets[first_full].first.size();
}
return (2 << (160 - first_full)) * num_nodes;
}
#ifdef TORRENT_DHT_VERBOSE_LOGGING
void routing_table::print_state(std::ostream& os) const
{
os << "kademlia routing table state\n"
<< "bucket_size: " << m_bucket_size << "\n"
<< "global node count: " << num_global_nodes() << "\n"
<< "node_id: " << m_id << "\n\n";
os << "number of nodes per bucket:\n-- live ";
for (int i = 8; i < 160; ++i)
os << "-";
os << "\n";
for (int k = 0; k < 8; ++k)
{
for (table_t::const_iterator i = m_buckets.begin(), end(m_buckets.end());
i != end; ++i)
{
os << (int(i->first.size()) > (7 - k) ? "|" : " ");
}
os << "\n";
}
for (table_t::const_iterator i = m_buckets.begin(), end(m_buckets.end());
i != end; ++i)
{
os << "+";
}
os << "\n";
for (int k = 0; k < 8; ++k)
{
for (table_t::const_iterator i = m_buckets.begin(), end(m_buckets.end());
i != end; ++i)
{
os << (int(i->second.size()) > k ? "|" : " ");
}
os << "\n";
}
os << "-- cached ";
for (int i = 10; i < 160; ++i)
os << "-";
os << "\n\n";
os << "nodes:\n";
for (table_t::const_iterator i = m_buckets.begin(), end(m_buckets.end());
i != end; ++i)
{
int bucket_index = int(i - m_buckets.begin());
os << "=== BUCKET = " << bucket_index
<< " = " << (bucket_index >= m_lowest_active_bucket?"active":"inactive")
<< " = " << total_seconds(time_now() - m_bucket_activity[bucket_index])
<< " s ago ===== \n";
for (bucket_t::const_iterator j = i->first.begin()
, end(i->first.end()); j != end; ++j)
{
os << "ip: " << j->addr << " fails: " << j->fail_count
<< " id: " << j->id << "\n";
}
}
}
#endif
void routing_table::touch_bucket(int bucket)
{
m_bucket_activity[bucket] = time_now();
}
ptime routing_table::next_refresh(int bucket)
{
TORRENT_ASSERT(bucket < 160);
TORRENT_ASSERT(bucket >= 0);
// lower than or equal to since a refresh of bucket 0 will
// effectively refresh the lowest active bucket as well
if (bucket < m_lowest_active_bucket && bucket > 0)
return time_now() + minutes(15);
return m_bucket_activity[bucket] + minutes(15);
}
void routing_table::replacement_cache(bucket_t& nodes) const
{
for (table_t::const_iterator i = m_buckets.begin()
, end(m_buckets.end()); i != end; ++i)
{
std::copy(i->second.begin(), i->second.end()
, std::back_inserter(nodes));
}
}
bool routing_table::need_node(node_id const& id)
{
int bucket_index = distance_exp(m_id, id);
TORRENT_ASSERT(bucket_index < (int)m_buckets.size());
TORRENT_ASSERT(bucket_index >= 0);
bucket_t& b = m_buckets[bucket_index].first;
bucket_t& rb = m_buckets[bucket_index].second;
// if the replacement cache is full, we don't
// need another node. The table is fine the
// way it is.
if ((int)rb.size() >= m_bucket_size) return false;
// if the node already exists, we don't need it
if (std::find_if(b.begin(), b.end(), bind(&node_entry::id, _1) == id)
!= b.end()) return false;
if (std::find_if(rb.begin(), rb.end(), bind(&node_entry::id, _1) == id)
!= rb.end()) return false;
return true;
}
void routing_table::node_failed(node_id const& id)
{
int bucket_index = distance_exp(m_id, id);
TORRENT_ASSERT(bucket_index < (int)m_buckets.size());
TORRENT_ASSERT(bucket_index >= 0);
bucket_t& b = m_buckets[bucket_index].first;
bucket_t& rb = m_buckets[bucket_index].second;
bucket_t::iterator i = std::find_if(b.begin(), b.end()
, bind(&node_entry::id, _1) == id);
if (i == b.end()) return;
// if messages to ourself fails, ignore it
if (bucket_index == 0) return;
if (rb.empty())
{
++i->fail_count;
if (i->fail_count >= m_settings.max_fail_count)
{
b.erase(i);
TORRENT_ASSERT(m_lowest_active_bucket <= bucket_index);
while (m_buckets[m_lowest_active_bucket].first.empty()
&& m_lowest_active_bucket < 160)
{
++m_lowest_active_bucket;
}
}
return;
}
b.erase(i);
b.push_back(rb.back());
rb.erase(rb.end() - 1);
}
void routing_table::add_router_node(udp::endpoint router)
{
m_router_nodes.insert(router);
}
// this function is called every time the node sees
// a sign of a node being alive. This node will either
// be inserted in the k-buckets or be moved to the top
// of its bucket.
// the return value indicates if the table needs a refresh.
// if true, the node should refresh the table (i.e. do a find_node
// on its own id)
bool routing_table::node_seen(node_id const& id, udp::endpoint addr)
{
if (m_router_nodes.find(addr) != m_router_nodes.end()) return false;
int bucket_index = distance_exp(m_id, id);
TORRENT_ASSERT(bucket_index < (int)m_buckets.size());
TORRENT_ASSERT(bucket_index >= 0);
bucket_t& b = m_buckets[bucket_index].first;
bucket_t::iterator i = std::find_if(b.begin(), b.end()
, bind(&node_entry::id, _1) == id);
bool ret = need_bootstrap();
//m_bucket_activity[bucket_index] = time_now();
if (i != b.end())
{
// TODO: what do we do if we see a node with
// the same id as a node at a different address?
// TORRENT_ASSERT(i->addr == addr);
// we already have the node in our bucket
// just move it to the back since it was
// the last node we had any contact with
// in this bucket
b.erase(i);
b.push_back(node_entry(id, addr));
// TORRENT_LOG(table) << "replacing node: " << id << " " << addr;
return ret;
}
// if the node was not present in our list
// we will only insert it if there is room
// for it, or if some of our nodes have gone
// offline
if ((int)b.size() < m_bucket_size)
{
if (b.empty()) b.reserve(m_bucket_size);
b.push_back(node_entry(id, addr));
// if bucket index is 0, the node is ourselves
// don't updated m_lowest_active_bucket
if (bucket_index < m_lowest_active_bucket
&& bucket_index > 0)
m_lowest_active_bucket = bucket_index;
// TORRENT_LOG(table) << "inserting node: " << id << " " << addr;
return ret;
}
// if there is no room, we look for nodes marked as stale
// in the k-bucket. If we find one, we can replace it.
// A node is considered stale if it has failed at least one
// time. Here we choose the node that has failed most times.
// If we don't find one, place this node in the replacement-
// cache and replace any nodes that will fail in the future
// with nodes from that cache.
i = std::max_element(b.begin(), b.end()
, bind(&node_entry::fail_count, _1)
< bind(&node_entry::fail_count, _2));
if (i != b.end() && i->fail_count > 0)
{
// i points to a node that has been marked
// as stale. Replace it with this new one
b.erase(i);
b.push_back(node_entry(id, addr));
// TORRENT_LOG(table) << "replacing stale node: " << id << " " << addr;
return ret;
}
// if we don't have any identified stale nodes in
// the bucket, and the bucket is full, we have to
// cache this node and wait until some node fails
// and then replace it.
bucket_t& rb = m_buckets[bucket_index].second;
i = std::find_if(rb.begin(), rb.end()
, bind(&node_entry::id, _1) == id);
// if the node is already in the replacement bucket
// just return.
if (i != rb.end()) return ret;
if ((int)rb.size() > m_bucket_size) rb.erase(rb.begin());
if (rb.empty()) rb.reserve(m_bucket_size);
rb.push_back(node_entry(id, addr));
// TORRENT_LOG(table) << "inserting node in replacement cache: " << id << " " << addr;
return ret;
}
bool routing_table::need_bootstrap() const
{
for (const_iterator i = begin(); i != end(); ++i)
{
if (i->fail_count == 0) return false;
}
return true;
}
// fills the vector with the k nodes from our buckets that
// are nearest to the given id.
void routing_table::find_node(node_id const& target
, std::vector<node_entry>& l, bool include_self, int count)
{
l.clear();
if (count == 0) count = m_bucket_size;
l.reserve(count);
int bucket_index = distance_exp(m_id, target);
bucket_t& b = m_buckets[bucket_index].first;
// copy all nodes that hasn't failed into the target
// vector.
std::remove_copy_if(b.begin(), b.end(), std::back_inserter(l)
, bind(&node_entry::fail_count, _1));
TORRENT_ASSERT((int)l.size() <= count);
if ((int)l.size() == count)
{
TORRENT_ASSERT(std::count_if(l.begin(), l.end()
, boost::bind(&node_entry::fail_count, _1) != 0) == 0);
return;
}
// if we didn't have enough nodes in that bucket
// we have to reply with nodes from buckets closer
// to us. i.e. all the buckets in the range
// [0, bucket_index) if we are to include ourself
// or [1, bucket_index) if not.
bucket_t tmpb;
for (int i = include_self?0:1; i < bucket_index; ++i)
{
bucket_t& b = m_buckets[i].first;
std::remove_copy_if(b.begin(), b.end(), std::back_inserter(tmpb)
, bind(&node_entry::fail_count, _1));
}
std::random_shuffle(tmpb.begin(), tmpb.end());
size_t to_copy = (std::min)(m_bucket_size - l.size()
, tmpb.size());
std::copy(tmpb.begin(), tmpb.begin() + to_copy
, std::back_inserter(l));
TORRENT_ASSERT((int)l.size() <= m_bucket_size);
// return if we have enough nodes or if the bucket index
// is the biggest index available (there are no more buckets)
// to look in.
if ((int)l.size() == count
|| bucket_index == (int)m_buckets.size() - 1)
{
TORRENT_ASSERT(std::count_if(l.begin(), l.end()
, boost::bind(&node_entry::fail_count, _1) != 0) == 0);
return;
}
for (size_t i = bucket_index + 1; i < m_buckets.size(); ++i)
{
bucket_t& b = m_buckets[i].first;
std::remove_copy_if(b.begin(), b.end(), std::back_inserter(l)
, bind(&node_entry::fail_count, _1));
if ((int)l.size() >= count)
{
l.erase(l.begin() + count, l.end());
TORRENT_ASSERT(std::count_if(l.begin(), l.end()
, boost::bind(&node_entry::fail_count, _1) != 0) == 0);
return;
}
}
TORRENT_ASSERT((int)l.size() == count
|| std::distance(l.begin(), l.end()) < m_bucket_size);
TORRENT_ASSERT((int)l.size() <= count);
TORRENT_ASSERT(std::count_if(l.begin(), l.end()
, boost::bind(&node_entry::fail_count, _1) != 0) == 0);
}
routing_table::iterator routing_table::begin() const
{
// +1 to avoid ourself
return iterator(m_buckets.begin() + 1, m_buckets.end());
}
routing_table::iterator routing_table::end() const
{
return iterator(m_buckets.end(), m_buckets.end());
}
} } // namespace libtorrent::dht
| [
"arvidn@f43f7eb3-cfe1-5f9d-1b5f-e45aa6702bda"
] | arvidn@f43f7eb3-cfe1-5f9d-1b5f-e45aa6702bda |
ea8e4b7e36ae210cd69f88d5313ce903a19deb19 | cafe4cc5e7b49b7628440bd4abe060b2b375b8d2 | /CS260/Game/Asteroids/Globals.cpp | 7cc731f54aba82365ead940c2217d5566e03a770 | [] | no_license | sshedbalkar/DigiPen_Backup | 47e75d03d06f8753c34c3777f2685a1fa055b7c9 | a4bc4446e28bd997a4ad35bf53d70fa3707189ff | refs/heads/main | 2022-12-25T18:36:22.711116 | 2020-10-11T09:32:22 | 2020-10-11T09:32:22 | 303,085,254 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 129 | cpp | #include "Globals.h"
unsigned PlayerID(PLAYER_1);
NetworkManager * NETWORK(NULL);
unsigned Seed(0);
unsigned NumClients(0); | [
"sanoysyg@gmail.com"
] | sanoysyg@gmail.com |
4842e733e45464fc878922ccb690f78566fde8a8 | ba9322f7db02d797f6984298d892f74768193dcf | /emr/src/model/MetastoreListKafkaConsumerGroupResult.cc | c091a812f0a18a07bba906a624c76c29f3b15467 | [
"Apache-2.0"
] | permissive | sdk-team/aliyun-openapi-cpp-sdk | e27f91996b3bad9226c86f74475b5a1a91806861 | a27fc0000a2b061cd10df09cbe4fff9db4a7c707 | refs/heads/master | 2022-08-21T18:25:53.080066 | 2022-07-25T10:01:05 | 2022-07-25T10:01:05 | 183,356,893 | 3 | 0 | null | 2019-04-25T04:34:29 | 2019-04-25T04:34:28 | null | UTF-8 | C++ | false | false | 3,182 | cc | /*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <alibabacloud/emr/model/MetastoreListKafkaConsumerGroupResult.h>
#include <json/json.h>
using namespace AlibabaCloud::Emr;
using namespace AlibabaCloud::Emr::Model;
MetastoreListKafkaConsumerGroupResult::MetastoreListKafkaConsumerGroupResult() :
ServiceResult()
{}
MetastoreListKafkaConsumerGroupResult::MetastoreListKafkaConsumerGroupResult(const std::string &payload) :
ServiceResult()
{
parse(payload);
}
MetastoreListKafkaConsumerGroupResult::~MetastoreListKafkaConsumerGroupResult()
{}
void MetastoreListKafkaConsumerGroupResult::parse(const std::string &payload)
{
Json::Reader reader;
Json::Value value;
reader.parse(payload, value);
setRequestId(value["RequestId"].asString());
auto allConsumerGroupList = value["ConsumerGroupList"]["consumerGroup"];
for (auto value : allConsumerGroupList)
{
ConsumerGroup consumerGroupListObject;
if(!value["Id"].isNull())
consumerGroupListObject.id = value["Id"].asString();
if(!value["DataSourceId"].isNull())
consumerGroupListObject.dataSourceId = value["DataSourceId"].asString();
if(!value["ConsumerGroup"].isNull())
consumerGroupListObject.consumerGroup = value["ConsumerGroup"].asString();
if(!value["ConsumerType"].isNull())
consumerGroupListObject.consumerType = value["ConsumerType"].asString();
if(!value["TotalLag"].isNull())
consumerGroupListObject.totalLag = std::stol(value["TotalLag"].asString());
if(!value["GmtCreate"].isNull())
consumerGroupListObject.gmtCreate = std::stol(value["GmtCreate"].asString());
if(!value["GmtModified"].isNull())
consumerGroupListObject.gmtModified = std::stol(value["GmtModified"].asString());
if(!value["PartitionProportion"].isNull())
consumerGroupListObject.partitionProportion = value["PartitionProportion"].asString();
consumerGroupList_.push_back(consumerGroupListObject);
}
if(!value["TotalCount"].isNull())
totalCount_ = std::stoi(value["TotalCount"].asString());
if(!value["PageNumber"].isNull())
pageNumber_ = std::stoi(value["PageNumber"].asString());
if(!value["PageSize"].isNull())
pageSize_ = std::stoi(value["PageSize"].asString());
}
int MetastoreListKafkaConsumerGroupResult::getTotalCount()const
{
return totalCount_;
}
int MetastoreListKafkaConsumerGroupResult::getPageSize()const
{
return pageSize_;
}
int MetastoreListKafkaConsumerGroupResult::getPageNumber()const
{
return pageNumber_;
}
std::vector<MetastoreListKafkaConsumerGroupResult::ConsumerGroup> MetastoreListKafkaConsumerGroupResult::getConsumerGroupList()const
{
return consumerGroupList_;
}
| [
"haowei.yao@alibaba-inc.com"
] | haowei.yao@alibaba-inc.com |
8bd7998f9b1f23c26ccb36d4d897a2d049dc042a | 85da3e0e7b79bec198fc1771e4b5937f16668243 | /LocalWar/Classes/Enemy1.cpp | 8dad45a712309af1708de34c9d32329ac17be0f7 | [] | no_license | Jackal0024/CoCosGame | 6bf570f889ad017fc742103cfc13d3d16dc099d7 | 06bbf5f168718ab833fe45ea12227ed0554a4959 | refs/heads/master | 2021-01-20T19:34:41.935047 | 2016-07-05T00:55:38 | 2016-07-05T00:55:38 | 62,594,590 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 824 | cpp | #include "Enemy1.h"
Enemy1 * Enemy1::create()
{
auto enemy = new Enemy1();
enemy->init();
enemy->autorelease();
return enemy;
}
bool Enemy1::init()
{
Node::init();
hitPoint = 100.0f;
setContentSize(Size(100, 100));
setAnchorPoint(Vec2::ANCHOR_MIDDLE);
auto enemy = Sprite::create("Enemy1.png");
enemy->setAnchorPoint(Vec2::ANCHOR_MIDDLE);
enemy->setPosition(100 / 2,100 / 2);
addChild(enemy);
auto move = MoveBy::create(1, Vec2(0,-100));
auto rotate = RotateBy::create(1, -90);
auto spawn = Spawn::create(move,rotate, nullptr);
auto repeat = RepeatForever::create(spawn);
runAction(repeat);
return true;
}
void Enemy1::onHit()
{
hitPoint -= 20.0f;
if (hitPoint <= 0)
{
Dead();
}
}
void Enemy1::Dead()
{
isDead = true;
}
void Enemy1::Remove()
{
if (isDead)
{
removeFromParent();
}
}
| [
"jac kal"
] | jac kal |
3dc401e483263561b8311ec4256faefca8f527fb | fa2db8e673762e1d1cef90b0e806b661a22ce118 | /arch/dev/ELFLoader.h | a80b0ad6c804a76715b86e78ca902468cb86eddc | [] | no_license | fuzzie/mgsim | 9662a14a31ef84040f1a57fe2f8f89c8db7dfa9b | 240ad6c4fcc3c1c3dafbfa19c7a64e5323108494 | refs/heads/master | 2021-01-17T16:17:06.737704 | 2012-08-16T17:56:21 | 2012-08-16T17:56:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 804 | h | #ifndef ELFLOADER_H
#define ELFLOADER_H
#include "Memory.h"
#include "ActiveROM.h"
#include <algorithm>
// Load the program file into the memory.
// Arguments:
// - ranges: the set of loadable virtual ranges in the system memory address space
// - memory: the memory administrative interface to set permissions
// - elf_image_data: raw ELF data
// - elf_image_size: size of raw ELF data
// - quiet: set to true to enable verbose reporting of the ELF loading process
std::pair<Simulator::MemAddr, bool>
LoadProgram(const std::string& msg_prefix,
std::vector<Simulator::ActiveROM::LoadableRange>& ranges,
Simulator::IMemoryAdmin& memory,
char *elf_image_data,
Simulator::MemSize elf_image_size,
bool verbose);
#endif
| [
"r.c.poss@uva.nl"
] | r.c.poss@uva.nl |
50d444e468195ab1f79676dfebdea1c71eb6cdd5 | 687b8cdc4a3dfdbd941489d010a918145030a3cc | /gastpc/g4sim/BaseGeometry.h | ce440c90d9a2962808628ca8881f865519cbf64b | [
"BSD-3-Clause"
] | permissive | DUNE/wp1-neardetector | d103b623b6459c6b2a3d4e66bb585ff56ed45c46 | 729c30532670679b7c87131ec70b4141d04a3ede | refs/heads/master | 2021-04-19T01:22:24.246465 | 2017-03-01T18:11:05 | 2017-03-01T18:11:05 | 30,244,428 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,138 | h | // -------------------------------------------------------------------
/// \file BaseGeometry.h
/// \brief
///
/// \author <justo.martin-albo@physics.ox.ac.uk>
/// \date Creation: 9 June 2016
// -------------------------------------------------------------------
#ifndef GASTPC_BASE_GEOMETRY_H
#define GASTPC_BASE_GEOMETRY_H
class G4LogicalVolume;
/// Base class
class BaseGeometry
{
public:
/// Default constructor
BaseGeometry();
/// Destructor
virtual ~BaseGeometry();
/// Return the pointer to the logical volume representing the geometry
G4LogicalVolume* GetLogicalVolume();
protected:
/// Set pointer to logical volume representing this geometry
void SetLogicalVolume(G4LogicalVolume*);
virtual void DefineVolumes() = 0;
private:
G4LogicalVolume* logvol_; ///< Pointer to the geometry's logical volume
};
inline BaseGeometry::BaseGeometry(): logvol_(0) {}
inline BaseGeometry::~BaseGeometry() {}
inline void BaseGeometry::SetLogicalVolume(G4LogicalVolume* p) { logvol_ = p; }
inline G4LogicalVolume* BaseGeometry::GetLogicalVolume()
{ if (!logvol_) DefineVolumes(); return logvol_; }
#endif | [
"jmalbos@users.noreply.github.com"
] | jmalbos@users.noreply.github.com |
fb7ee84ca249472643852fe7e0368295ead156fe | 25e47659d6f1e3abc8c1e367ce4264431d19a568 | /OldCode/课堂&作业/0120学生管理系统/0120学生管理系统/guest.cpp | d4d54ec9e54843e3bcd8fa72b6d4dcc3bcaded4d | [] | no_license | yeze322/Linux-C | 5a5fa08152b99bbe64a40bd0cac9766f8f6cd5f6 | d78181ad65d6cbd21ce2e79e34e87f0ca40f1181 | refs/heads/master | 2021-01-20T06:11:55.414324 | 2018-07-20T02:53:59 | 2018-07-20T02:54:43 | 30,003,334 | 0 | 3 | null | null | null | null | GB18030 | C++ | false | false | 391 | cpp | #include "_SIMS.h"
//guest账户,仅包括查询权限
extern StuInfo *L;
void GUS_BLOCK()//StuInfo *L)
{
system("cls");
char c;
while(fflush(stdin),system("cls"),GUS_PRINT(),(c=getchar())!=EOF)
{
fflush(stdin);
switch (c)
{
default:break;
case '1':SearchSTU();break;
case '0':return;
}
}
}
void GUS_PRINT()
{
cout<<"________GUS\n1-Search\n";
cout<<"\n0-exit\n";
}
| [
"2295905420@qq.com"
] | 2295905420@qq.com |
231ba4813259c10a3524ef8cbc5436668eaba74b | e5a37a543ca382ed3eaab28c37d267b04ad667c0 | /probrems/SRM387div2/hard.cpp | c8a012b70d68a7c6d5c13949fca9f63ddf2bf388 | [] | no_license | akawashiro/competitiveProgramming | 6dfbe626c2e2433d5e702e9431ee9de2c41337ed | ee8a582c80dbd5716ae900a02e8ea67ff8daae4b | refs/heads/master | 2018-09-02T19:49:22.460865 | 2018-06-30T05:45:51 | 2018-06-30T05:45:51 | 71,694,415 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,082 | cpp | #include <vector>
#include <string>
#include <cstdio>
#include <sstream>
using namespace std;
class MarblesRegroupingHard
{
public:
int minMoves(vector<string> input)
{
vector<vector<int> > boxes;
for(int i=0;i<(int)input.size();i++)
{
vector<int> v;
stringstream ss(input[i]);
int a;
while(ss >> a)
v.push_back(a);
boxes.push_back(v);
}
int numBox=boxes.size();
int numColor=boxes[0].size();
int gatherCost[numBox][numColor];
for(int i=0;i<numBox;i++)
for(int j=0;j<numColor;j++)
{
int a=0;
for(int k=0;k<numBox;k++)
if(k!=i)
a+=boxes[k][j];
gatherCost[i][j]=a;
}
int DP[numBox+1][(1<<numColor)];
for(int b=numBox;0<=b;b--)
for(int c=(1<<numColor)-1;0<=c;c--)
{
DP[b][c]=(1<<25);
if(c==(1<<numColor)-1)
DP[b][c]=0;
else if(b!=numBox)
{
for(int i=0;i<numColor;i++)
if(c ^ (1<<i))
DP[b][c]=min(DP[b][c],DP[b+1][c|(1<<i)]+gatherCost[b][i]);
DP[b][c]=min(DP[b][c],DP[b+1][c]);
}
}
return DP[0][0];
}
};
| [
"akira@akiraMacBookPro.local"
] | akira@akiraMacBookPro.local |
2600a5e154d87aa8e8f68f5c3c79671008c139c4 | 96742c5e67717a4645eeede23b9bf699687e5074 | /proj/SRFSimpleFoam/510/epsilon | df3aa2aa8037fe51a476f1443c309cd25f7d8b80 | [] | no_license | harrisbk/openFoam | 339c3391fe502af351b4eda328457719799badba | 08041d2e2ebbd2dd1f0e5bfd44bd4181504846cd | refs/heads/master | 2021-01-10T11:38:02.272499 | 2015-12-15T17:45:43 | 2015-12-15T17:45:43 | 47,746,599 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,203,546 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.4.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "510";
object epsilon;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -3 0 0 0 0];
internalField nonuniform List<scalar>
283312
(
2.57971e-05
2.29368e-05
2.15789e-05
2.20135e-05
2.40127e-05
2.7012e-05
3.03373e-05
3.34755e-05
3.61823e-05
3.83728e-05
4.00048e-05
4.10389e-05
4.1463e-05
4.13298e-05
4.07245e-05
3.96815e-05
3.81483e-05
3.59745e-05
3.3028e-05
2.94402e-05
2.30451e-05
2.63024e-05
3.04675e-05
3.4492e-05
3.76361e-05
3.96988e-05
4.09048e-05
4.15889e-05
4.197e-05
4.212e-05
4.19366e-05
4.12276e-05
3.98844e-05
3.79261e-05
3.53909e-05
3.22009e-05
2.85158e-05
2.49412e-05
2.23712e-05
2.16059e-05
3.18749e-05
3.48967e-05
3.69734e-05
3.82567e-05
3.89906e-05
3.93554e-05
3.95151e-05
3.95868e-05
3.96319e-05
3.97661e-05
3.97025e-05
3.87255e-05
3.63523e-05
3.27094e-05
2.8412e-05
2.45042e-05
2.21664e-05
2.21402e-05
2.43728e-05
2.79785e-05
3.45716e-05
3.59701e-05
3.67483e-05
3.71159e-05
3.72592e-05
3.73303e-05
3.74247e-05
3.75644e-05
3.78257e-05
3.91947e-05
4.09735e-05
4.08609e-05
3.76358e-05
3.21919e-05
2.68614e-05
2.37592e-05
2.36511e-05
2.59302e-05
2.92205e-05
3.22745e-05
3.54407e-05
3.59655e-05
3.61937e-05
3.6287e-05
3.63539e-05
3.64296e-05
3.65468e-05
3.67119e-05
3.72666e-05
4.0896e-05
4.53797e-05
4.62645e-05
4.2343e-05
3.60295e-05
3.05521e-05
2.80523e-05
2.84856e-05
3.04995e-05
3.27111e-05
3.43963e-05
3.54585e-05
3.56298e-05
3.56873e-05
3.5707e-05
3.57438e-05
3.58108e-05
3.59324e-05
3.61073e-05
3.67829e-05
4.14335e-05
4.68241e-05
4.78383e-05
4.30365e-05
3.60189e-05
3.11977e-05
2.9928e-05
3.09812e-05
3.2709e-05
3.41421e-05
3.50223e-05
3.52894e-05
3.53234e-05
3.53404e-05
3.53674e-05
3.54215e-05
3.54957e-05
3.56115e-05
3.57755e-05
3.64098e-05
3.94289e-05
4.31614e-05
4.52196e-05
4.31621e-05
3.75498e-05
3.34147e-05
3.23958e-05
3.31196e-05
3.41225e-05
3.48122e-05
3.51539e-05
3.51365e-05
3.51396e-05
3.51473e-05
3.51653e-05
3.52042e-05
3.52645e-05
3.53601e-05
3.55046e-05
3.5761e-05
3.49304e-05
3.3692e-05
3.24375e-05
3.17399e-05
3.143e-05
3.17256e-05
3.2781e-05
3.38992e-05
3.46272e-05
3.49745e-05
3.50996e-05
3.50069e-05
3.50114e-05
3.50237e-05
3.50473e-05
3.50843e-05
3.51383e-05
3.52148e-05
3.53426e-05
3.55512e-05
3.40629e-05
3.13751e-05
2.76677e-05
2.60458e-05
2.76869e-05
3.0423e-05
3.26962e-05
3.4052e-05
3.46835e-05
3.49204e-05
3.49898e-05
3.49368e-05
3.49427e-05
3.49527e-05
3.49699e-05
3.49965e-05
3.50387e-05
3.50979e-05
3.52075e-05
3.53795e-05
3.37189e-05
3.11986e-05
2.72604e-05
2.55604e-05
2.75094e-05
3.0606e-05
3.29204e-05
3.41583e-05
3.46858e-05
3.48709e-05
3.49235e-05
3.48916e-05
3.48983e-05
3.49084e-05
3.49243e-05
3.49461e-05
3.49797e-05
3.50243e-05
3.51131e-05
3.5245e-05
3.3449e-05
3.11133e-05
2.70978e-05
2.59204e-05
2.82639e-05
3.12487e-05
3.32715e-05
3.42868e-05
3.47005e-05
3.48409e-05
3.48806e-05
3.48665e-05
3.4872e-05
3.48796e-05
3.48914e-05
3.49074e-05
3.49326e-05
3.49674e-05
3.50374e-05
3.51543e-05
3.32442e-05
3.15149e-05
2.80544e-05
2.72164e-05
2.94259e-05
3.19692e-05
3.36077e-05
3.44048e-05
3.47224e-05
3.48283e-05
3.4858e-05
3.48494e-05
3.48545e-05
3.48611e-05
3.48708e-05
3.48834e-05
3.49021e-05
3.49281e-05
3.49784e-05
3.50725e-05
3.32846e-05
3.10783e-05
2.70405e-05
2.68233e-05
2.95047e-05
3.21073e-05
3.3682e-05
3.44251e-05
3.47168e-05
3.48136e-05
3.48413e-05
3.48379e-05
3.48422e-05
3.48473e-05
3.48547e-05
3.48641e-05
3.48777e-05
3.48972e-05
3.49326e-05
3.5043e-05
3.36523e-05
3.24385e-05
2.8721e-05
2.80863e-05
3.01982e-05
3.24071e-05
3.37858e-05
3.44502e-05
3.47152e-05
3.48044e-05
3.48303e-05
3.483e-05
3.48334e-05
3.48375e-05
3.48433e-05
3.48508e-05
3.48608e-05
3.48753e-05
3.48994e-05
3.49945e-05
3.32437e-05
3.05868e-05
2.70793e-05
2.75891e-05
3.02247e-05
3.25101e-05
3.38496e-05
3.44753e-05
3.47196e-05
3.48005e-05
3.48235e-05
3.48238e-05
3.48261e-05
3.48292e-05
3.48337e-05
3.48394e-05
3.48468e-05
3.48553e-05
3.48673e-05
3.48754e-05
3.1647e-05
2.59175e-05
2.37553e-05
2.60869e-05
2.97545e-05
3.24875e-05
3.39202e-05
3.45233e-05
3.47375e-05
3.48026e-05
3.48195e-05
3.48197e-05
3.48204e-05
3.48225e-05
3.4826e-05
3.48307e-05
3.48367e-05
3.48435e-05
3.4852e-05
3.48569e-05
3.45717e-05
3.43617e-05
3.44241e-05
3.45946e-05
3.47083e-05
3.47526e-05
3.47909e-05
3.4814e-05
3.48218e-05
3.4822e-05
3.48204e-05
3.48146e-05
3.48148e-05
3.48163e-05
3.48191e-05
3.48228e-05
3.48277e-05
3.48329e-05
3.48394e-05
3.48461e-05
3.48425e-05
3.48368e-05
3.48369e-05
3.48424e-05
3.48443e-05
3.48411e-05
3.48349e-05
3.48284e-05
3.48227e-05
3.48184e-05
3.48157e-05
3.481e-05
3.48099e-05
3.4811e-05
3.48131e-05
3.48162e-05
3.48202e-05
3.48244e-05
3.48292e-05
3.48328e-05
3.4836e-05
3.48348e-05
3.48346e-05
3.48371e-05
3.48367e-05
3.48339e-05
3.48288e-05
3.48233e-05
3.48181e-05
3.48141e-05
3.48114e-05
3.48055e-05
3.48053e-05
3.4806e-05
3.48077e-05
3.48101e-05
3.48135e-05
3.48171e-05
3.48214e-05
3.4825e-05
3.48278e-05
3.48276e-05
3.4827e-05
3.48278e-05
3.48273e-05
3.48253e-05
3.48214e-05
3.48169e-05
3.48127e-05
3.48093e-05
3.48069e-05
3.48015e-05
3.4801e-05
3.48014e-05
3.48027e-05
3.48047e-05
3.48075e-05
3.48106e-05
3.4814e-05
3.48168e-05
3.48193e-05
3.48197e-05
3.48202e-05
3.48213e-05
3.4821e-05
3.48192e-05
3.48159e-05
3.48121e-05
3.48084e-05
3.48052e-05
3.48029e-05
3.47976e-05
3.4797e-05
3.47972e-05
3.47982e-05
3.47999e-05
3.48022e-05
3.48049e-05
3.4808e-05
3.48106e-05
3.4813e-05
3.48138e-05
3.48141e-05
3.48146e-05
3.48142e-05
3.48127e-05
3.48101e-05
3.4807e-05
3.48038e-05
3.48011e-05
3.4799e-05
3.4794e-05
3.47934e-05
3.47934e-05
3.47941e-05
3.47954e-05
3.47974e-05
3.47996e-05
3.48023e-05
3.48045e-05
3.48067e-05
3.48077e-05
3.48085e-05
3.48092e-05
3.4809e-05
3.48077e-05
3.48055e-05
3.48028e-05
3.48e-05
3.47974e-05
3.47954e-05
3.47907e-05
3.47899e-05
3.47898e-05
3.47903e-05
3.47914e-05
3.47931e-05
3.47951e-05
3.47974e-05
3.47995e-05
3.48016e-05
3.48026e-05
3.48034e-05
3.48039e-05
3.48036e-05
3.48027e-05
3.48008e-05
3.47985e-05
3.47961e-05
3.47939e-05
3.4792e-05
3.47876e-05
3.47868e-05
3.47866e-05
3.47869e-05
3.47878e-05
3.47892e-05
3.47909e-05
3.47929e-05
3.47948e-05
3.47967e-05
3.47978e-05
3.47987e-05
3.47994e-05
3.47993e-05
3.47984e-05
3.47968e-05
3.47948e-05
3.47927e-05
3.47906e-05
3.47889e-05
3.47847e-05
3.47839e-05
3.47836e-05
3.47838e-05
3.47845e-05
3.47857e-05
3.47872e-05
3.4789e-05
3.47908e-05
3.47925e-05
3.47936e-05
3.47945e-05
3.47951e-05
3.4795e-05
3.47943e-05
3.4793e-05
3.47913e-05
3.47894e-05
3.47876e-05
3.4786e-05
3.47821e-05
3.47813e-05
3.47809e-05
3.4781e-05
3.47815e-05
3.47826e-05
3.47838e-05
3.47855e-05
3.4787e-05
3.47886e-05
3.47898e-05
3.47907e-05
3.47913e-05
3.47914e-05
3.47908e-05
3.47897e-05
3.47882e-05
3.47865e-05
3.47848e-05
3.47833e-05
3.47797e-05
3.47789e-05
3.47785e-05
3.47785e-05
3.47789e-05
3.47798e-05
3.47809e-05
3.47824e-05
3.47838e-05
3.47853e-05
3.47864e-05
3.47873e-05
3.47879e-05
3.4788e-05
3.47875e-05
3.47866e-05
3.47853e-05
3.47838e-05
3.47823e-05
3.47809e-05
3.47776e-05
3.47768e-05
3.47763e-05
3.47762e-05
3.47765e-05
3.47773e-05
3.47782e-05
3.47796e-05
3.47808e-05
3.47822e-05
3.47833e-05
3.47842e-05
3.47848e-05
3.4785e-05
3.47847e-05
3.47839e-05
3.47827e-05
3.47814e-05
3.478e-05
3.47787e-05
3.47757e-05
3.47749e-05
3.47744e-05
3.47742e-05
3.47744e-05
3.47751e-05
3.47759e-05
3.47771e-05
3.47783e-05
3.47796e-05
3.47806e-05
3.47815e-05
3.47821e-05
3.47823e-05
3.47821e-05
3.47814e-05
3.47804e-05
3.47792e-05
3.47779e-05
3.47767e-05
3.47739e-05
3.47731e-05
3.47726e-05
3.47724e-05
3.47726e-05
3.47731e-05
3.47738e-05
3.47749e-05
3.4776e-05
3.47772e-05
3.47782e-05
3.47791e-05
3.47797e-05
3.478e-05
3.47798e-05
3.47792e-05
3.47783e-05
3.47772e-05
3.4776e-05
3.47749e-05
3.47724e-05
3.47716e-05
3.47711e-05
3.47709e-05
3.4771e-05
3.47714e-05
3.4772e-05
3.4773e-05
3.47741e-05
3.47752e-05
3.47762e-05
3.4777e-05
3.47776e-05
3.47779e-05
3.47778e-05
3.47773e-05
3.47765e-05
3.47755e-05
3.47744e-05
3.47734e-05
3.47711e-05
3.47703e-05
3.47698e-05
3.47695e-05
3.47695e-05
3.47699e-05
3.47705e-05
3.47714e-05
3.47723e-05
3.47734e-05
3.47744e-05
3.47752e-05
3.47758e-05
3.47761e-05
3.47761e-05
3.47756e-05
3.47749e-05
3.4774e-05
3.4773e-05
3.4772e-05
3.47699e-05
3.47692e-05
3.47686e-05
3.47683e-05
3.47683e-05
3.47686e-05
3.47691e-05
3.477e-05
3.47709e-05
3.47719e-05
3.47728e-05
3.47737e-05
3.47743e-05
3.47746e-05
3.47746e-05
3.47742e-05
3.47736e-05
3.47728e-05
3.47718e-05
3.47708e-05
3.47689e-05
3.47682e-05
3.47676e-05
3.47673e-05
3.47673e-05
3.47675e-05
3.4768e-05
3.47688e-05
3.47696e-05
3.47706e-05
3.47715e-05
3.47723e-05
3.47729e-05
3.47733e-05
3.47733e-05
3.4773e-05
3.47724e-05
3.47716e-05
3.47707e-05
3.47698e-05
3.47682e-05
3.47675e-05
3.47669e-05
3.47665e-05
3.47665e-05
3.47667e-05
3.47671e-05
3.47678e-05
3.47686e-05
3.47696e-05
3.47705e-05
3.47713e-05
3.47719e-05
3.47722e-05
3.47723e-05
3.4772e-05
3.47715e-05
3.47708e-05
3.47699e-05
3.4769e-05
3.47675e-05
3.47668e-05
3.47662e-05
3.47658e-05
3.47657e-05
3.47659e-05
3.47663e-05
3.4767e-05
3.47678e-05
3.47687e-05
3.47696e-05
3.47704e-05
3.4771e-05
3.47713e-05
3.47715e-05
3.47712e-05
3.47707e-05
3.477e-05
3.47691e-05
3.47683e-05
3.47671e-05
3.47664e-05
3.47658e-05
3.47654e-05
3.47653e-05
3.47655e-05
3.47658e-05
3.47665e-05
3.47672e-05
3.47682e-05
3.4769e-05
3.47698e-05
3.47704e-05
3.47708e-05
3.47709e-05
3.47707e-05
3.47702e-05
3.47696e-05
3.47687e-05
3.47679e-05
3.47668e-05
3.47661e-05
3.47656e-05
3.47651e-05
3.4765e-05
3.47652e-05
3.47655e-05
3.47662e-05
3.47669e-05
3.47678e-05
3.47686e-05
3.47694e-05
3.477e-05
3.47704e-05
3.47706e-05
3.47703e-05
3.47699e-05
3.47692e-05
3.47684e-05
3.47677e-05
3.4799e-05
3.48045e-05
3.47972e-05
3.47956e-05
3.4804e-05
3.47975e-05
3.47963e-05
3.48075e-05
3.47999e-05
3.48109e-05
3.48019e-05
3.48135e-05
3.48036e-05
3.48144e-05
3.4817e-05
3.48038e-05
3.48118e-05
3.48018e-05
3.47992e-05
3.48072e-05
2.5639e-05
2.29481e-05
2.19585e-05
2.28408e-05
2.52432e-05
2.85281e-05
3.19881e-05
3.51631e-05
3.78567e-05
4.00081e-05
4.15811e-05
4.25353e-05
4.28585e-05
4.26071e-05
4.18738e-05
4.06749e-05
3.89341e-05
3.64834e-05
3.32193e-05
2.93708e-05
2.40749e-05
2.7727e-05
3.20931e-05
3.6117e-05
3.91486e-05
4.10826e-05
4.2212e-05
4.2862e-05
4.32323e-05
4.33863e-05
4.32083e-05
4.24813e-05
4.10737e-05
3.89898e-05
3.62491e-05
3.27828e-05
2.88288e-05
2.51232e-05
2.26545e-05
2.22163e-05
3.32474e-05
3.62486e-05
3.82735e-05
3.95109e-05
4.02118e-05
4.05541e-05
4.07067e-05
4.07818e-05
4.08451e-05
4.10641e-05
4.11278e-05
4.01892e-05
3.76715e-05
3.37289e-05
2.91006e-05
2.50024e-05
2.27145e-05
2.29424e-05
2.54876e-05
2.93086e-05
3.58677e-05
3.72273e-05
3.79704e-05
3.83122e-05
3.84433e-05
3.85159e-05
3.8617e-05
3.87665e-05
3.90547e-05
4.07239e-05
4.29525e-05
4.29968e-05
3.94662e-05
3.3502e-05
2.78235e-05
2.46691e-05
2.47126e-05
2.71726e-05
3.0557e-05
3.36157e-05
3.66766e-05
3.71693e-05
3.73788e-05
3.74646e-05
3.75323e-05
3.7611e-05
3.77346e-05
3.79084e-05
3.85268e-05
4.29005e-05
4.83172e-05
4.94913e-05
4.51566e-05
3.81813e-05
3.21724e-05
2.94463e-05
2.98392e-05
3.18496e-05
3.40364e-05
3.56791e-05
3.66523e-05
3.68073e-05
3.68586e-05
3.6878e-05
3.69188e-05
3.69902e-05
3.71181e-05
3.73004e-05
3.80491e-05
4.36297e-05
5.00229e-05
5.11701e-05
4.56877e-05
3.78963e-05
3.26603e-05
3.12731e-05
3.23086e-05
3.40152e-05
3.54092e-05
3.62479e-05
3.64601e-05
3.64925e-05
3.65108e-05
3.65403e-05
3.65973e-05
3.66743e-05
3.67946e-05
3.69646e-05
3.76665e-05
4.13376e-05
4.58135e-05
4.81672e-05
4.56251e-05
3.92116e-05
3.46871e-05
3.35914e-05
3.43239e-05
3.53284e-05
3.60057e-05
3.63338e-05
3.63017e-05
3.63069e-05
3.63165e-05
3.63368e-05
3.63782e-05
3.64412e-05
3.65404e-05
3.66898e-05
3.69578e-05
3.61096e-05
3.48966e-05
3.36504e-05
3.29827e-05
3.26277e-05
3.28648e-05
3.392e-05
3.5054e-05
3.57906e-05
3.61398e-05
3.62649e-05
3.61743e-05
3.61804e-05
3.61942e-05
3.62194e-05
3.62579e-05
3.63139e-05
3.63928e-05
3.6525e-05
3.67414e-05
3.52173e-05
3.25257e-05
2.87158e-05
2.71314e-05
2.88454e-05
3.16083e-05
3.38806e-05
3.52293e-05
3.58547e-05
3.60884e-05
3.61569e-05
3.61052e-05
3.61118e-05
3.61227e-05
3.61411e-05
3.6169e-05
3.6213e-05
3.62741e-05
3.63875e-05
3.65652e-05
3.48789e-05
3.24114e-05
2.83619e-05
2.66725e-05
2.87245e-05
3.18575e-05
3.41519e-05
3.53605e-05
3.58681e-05
3.60435e-05
3.60925e-05
3.60606e-05
3.60677e-05
3.60785e-05
3.60954e-05
3.61181e-05
3.6153e-05
3.61989e-05
3.62908e-05
3.64264e-05
3.46145e-05
3.23655e-05
2.82253e-05
2.70815e-05
2.95272e-05
3.25296e-05
3.45165e-05
3.5494e-05
3.58846e-05
3.60144e-05
3.60504e-05
3.60354e-05
3.60412e-05
3.60494e-05
3.60619e-05
3.60787e-05
3.6105e-05
3.61409e-05
3.62132e-05
3.63336e-05
3.44087e-05
3.28561e-05
2.92904e-05
2.84515e-05
3.07188e-05
3.32521e-05
3.48472e-05
3.56073e-05
3.59042e-05
3.60009e-05
3.60275e-05
3.60184e-05
3.60237e-05
3.60307e-05
3.6041e-05
3.60542e-05
3.60736e-05
3.61005e-05
3.61524e-05
3.62495e-05
3.44671e-05
3.23864e-05
2.82171e-05
2.80446e-05
3.07907e-05
3.33818e-05
3.49153e-05
3.56245e-05
3.58974e-05
3.5986e-05
3.60108e-05
3.60068e-05
3.60112e-05
3.60166e-05
3.60245e-05
3.60345e-05
3.60487e-05
3.60688e-05
3.61053e-05
3.62202e-05
3.48776e-05
3.38799e-05
3.00056e-05
2.93512e-05
3.14912e-05
3.3678e-05
3.50154e-05
3.56476e-05
3.58949e-05
3.59765e-05
3.59998e-05
3.59987e-05
3.60022e-05
3.60066e-05
3.60128e-05
3.60207e-05
3.60312e-05
3.60462e-05
3.60711e-05
3.61703e-05
3.44388e-05
3.1872e-05
2.82652e-05
2.88324e-05
3.1511e-05
3.37754e-05
3.50752e-05
3.56705e-05
3.58984e-05
3.59723e-05
3.59929e-05
3.59923e-05
3.59948e-05
3.59981e-05
3.60029e-05
3.6009e-05
3.60167e-05
3.60256e-05
3.6038e-05
3.60459e-05
3.26585e-05
2.67234e-05
2.46596e-05
2.72226e-05
3.10105e-05
3.37435e-05
3.51399e-05
3.57146e-05
3.59142e-05
3.59735e-05
3.59885e-05
3.5988e-05
3.59888e-05
3.59912e-05
3.5995e-05
3.59999e-05
3.60062e-05
3.60132e-05
3.60221e-05
3.6027e-05
3.57313e-05
3.55242e-05
3.55972e-05
3.57719e-05
3.58828e-05
3.59259e-05
3.59629e-05
3.59842e-05
3.59906e-05
3.59903e-05
3.59886e-05
3.59827e-05
3.59831e-05
3.59848e-05
3.59878e-05
3.59918e-05
3.59968e-05
3.60023e-05
3.6009e-05
3.60159e-05
3.6012e-05
3.60062e-05
3.60064e-05
3.6012e-05
3.60136e-05
3.601e-05
3.60033e-05
3.59966e-05
3.59907e-05
3.59864e-05
3.59837e-05
3.5978e-05
3.5978e-05
3.59793e-05
3.59816e-05
3.59848e-05
3.5989e-05
3.59935e-05
3.59984e-05
3.60021e-05
3.60053e-05
3.60038e-05
3.60037e-05
3.60062e-05
3.60057e-05
3.60025e-05
3.59971e-05
3.59913e-05
3.5986e-05
3.5982e-05
3.59793e-05
3.59734e-05
3.59732e-05
3.59741e-05
3.59759e-05
3.59786e-05
3.59821e-05
3.59859e-05
3.59903e-05
3.5994e-05
3.59968e-05
3.59964e-05
3.59958e-05
3.59966e-05
3.5996e-05
3.59937e-05
3.59895e-05
3.59849e-05
3.59806e-05
3.59771e-05
3.59747e-05
3.59693e-05
3.59689e-05
3.59694e-05
3.59708e-05
3.5973e-05
3.59759e-05
3.59791e-05
3.59826e-05
3.59854e-05
3.5988e-05
3.59883e-05
3.59888e-05
3.59899e-05
3.59894e-05
3.59874e-05
3.59839e-05
3.598e-05
3.59762e-05
3.5973e-05
3.59706e-05
3.59653e-05
3.59647e-05
3.5965e-05
3.59661e-05
3.59679e-05
3.59704e-05
3.59732e-05
3.59764e-05
3.59791e-05
3.59815e-05
3.59822e-05
3.59825e-05
3.5983e-05
3.59824e-05
3.59808e-05
3.5978e-05
3.59748e-05
3.59715e-05
3.59687e-05
3.59666e-05
3.59616e-05
3.5961e-05
3.5961e-05
3.59619e-05
3.59633e-05
3.59654e-05
3.59677e-05
3.59705e-05
3.59727e-05
3.5975e-05
3.59759e-05
3.59767e-05
3.59774e-05
3.59771e-05
3.59757e-05
3.59733e-05
3.59704e-05
3.59676e-05
3.5965e-05
3.5963e-05
3.59581e-05
3.59574e-05
3.59574e-05
3.5958e-05
3.59591e-05
3.59609e-05
3.5963e-05
3.59654e-05
3.59676e-05
3.59697e-05
3.59707e-05
3.59714e-05
3.59719e-05
3.59716e-05
3.59705e-05
3.59685e-05
3.59661e-05
3.59636e-05
3.59613e-05
3.59594e-05
3.59549e-05
3.59542e-05
3.5954e-05
3.59544e-05
3.59554e-05
3.59569e-05
3.59586e-05
3.59608e-05
3.59627e-05
3.59646e-05
3.59657e-05
3.59666e-05
3.59672e-05
3.5967e-05
3.59661e-05
3.59644e-05
3.59623e-05
3.59601e-05
3.5958e-05
3.59562e-05
3.5952e-05
3.59512e-05
3.59509e-05
3.59512e-05
3.5952e-05
3.59532e-05
3.59548e-05
3.59567e-05
3.59585e-05
3.59602e-05
3.59613e-05
3.59622e-05
3.59628e-05
3.59627e-05
3.59619e-05
3.59605e-05
3.59587e-05
3.59567e-05
3.59549e-05
3.59532e-05
3.59493e-05
3.59485e-05
3.59482e-05
3.59483e-05
3.59489e-05
3.595e-05
3.59513e-05
3.5953e-05
3.59546e-05
3.59562e-05
3.59574e-05
3.59583e-05
3.59589e-05
3.59589e-05
3.59583e-05
3.59571e-05
3.59555e-05
3.59537e-05
3.5952e-05
3.59505e-05
3.59469e-05
3.59461e-05
3.59457e-05
3.59457e-05
3.59462e-05
3.59471e-05
3.59482e-05
3.59498e-05
3.59512e-05
3.59528e-05
3.59539e-05
3.59548e-05
3.59553e-05
3.59554e-05
3.59549e-05
3.59539e-05
3.59525e-05
3.5951e-05
3.59494e-05
3.5948e-05
3.59446e-05
3.59438e-05
3.59434e-05
3.59433e-05
3.59437e-05
3.59445e-05
3.59455e-05
3.59469e-05
3.59482e-05
3.59496e-05
3.59507e-05
3.59516e-05
3.59522e-05
3.59523e-05
3.5952e-05
3.59511e-05
3.59499e-05
3.59485e-05
3.5947e-05
3.59457e-05
3.59426e-05
3.59419e-05
3.59414e-05
3.59413e-05
3.59415e-05
3.59422e-05
3.59431e-05
3.59443e-05
3.59456e-05
3.59469e-05
3.59479e-05
3.59488e-05
3.59494e-05
3.59496e-05
3.59493e-05
3.59486e-05
3.59475e-05
3.59462e-05
3.59449e-05
3.59437e-05
3.59409e-05
3.59401e-05
3.59396e-05
3.59394e-05
3.59396e-05
3.59401e-05
3.59409e-05
3.59421e-05
3.59432e-05
3.59445e-05
3.59455e-05
3.59464e-05
3.59469e-05
3.59471e-05
3.59469e-05
3.59463e-05
3.59454e-05
3.59442e-05
3.5943e-05
3.59419e-05
3.59393e-05
3.59385e-05
3.5938e-05
3.59378e-05
3.59379e-05
3.59384e-05
3.59391e-05
3.59401e-05
3.59412e-05
3.59424e-05
3.59433e-05
3.59442e-05
3.59448e-05
3.5945e-05
3.59449e-05
3.59443e-05
3.59435e-05
3.59425e-05
3.59414e-05
3.59403e-05
3.59379e-05
3.59372e-05
3.59366e-05
3.59364e-05
3.59364e-05
3.59368e-05
3.59374e-05
3.59384e-05
3.59394e-05
3.59405e-05
3.59414e-05
3.59423e-05
3.59429e-05
3.59432e-05
3.59431e-05
3.59426e-05
3.59419e-05
3.59409e-05
3.59399e-05
3.59389e-05
3.59368e-05
3.5936e-05
3.59355e-05
3.59352e-05
3.59352e-05
3.59355e-05
3.59361e-05
3.5937e-05
3.59379e-05
3.5939e-05
3.59399e-05
3.59407e-05
3.59413e-05
3.59416e-05
3.59416e-05
3.59412e-05
3.59405e-05
3.59396e-05
3.59386e-05
3.59377e-05
3.59357e-05
3.5935e-05
3.59344e-05
3.59341e-05
3.59341e-05
3.59344e-05
3.59349e-05
3.59357e-05
3.59366e-05
3.59376e-05
3.59385e-05
3.59393e-05
3.59399e-05
3.59402e-05
3.59403e-05
3.59399e-05
3.59393e-05
3.59385e-05
3.59375e-05
3.59366e-05
3.5935e-05
3.59342e-05
3.59337e-05
3.59333e-05
3.59333e-05
3.59335e-05
3.59339e-05
3.59347e-05
3.59356e-05
3.59366e-05
3.59374e-05
3.59383e-05
3.59388e-05
3.59392e-05
3.59393e-05
3.59389e-05
3.59384e-05
3.59376e-05
3.59367e-05
3.59358e-05
3.59342e-05
3.59335e-05
3.5933e-05
3.59326e-05
3.59325e-05
3.59327e-05
3.59331e-05
3.59339e-05
3.59347e-05
3.59357e-05
3.59365e-05
3.59373e-05
3.59379e-05
3.59383e-05
3.59384e-05
3.5938e-05
3.59375e-05
3.59368e-05
3.59359e-05
3.59351e-05
3.59338e-05
3.59331e-05
3.59325e-05
3.59321e-05
3.59321e-05
3.59322e-05
3.59326e-05
3.59333e-05
3.59341e-05
3.59351e-05
3.59359e-05
3.59367e-05
3.59373e-05
3.59377e-05
3.59378e-05
3.59375e-05
3.59371e-05
3.59364e-05
3.59355e-05
3.59347e-05
3.59336e-05
3.59329e-05
3.59323e-05
3.59318e-05
3.59318e-05
3.5932e-05
3.59323e-05
3.5933e-05
3.59338e-05
3.59347e-05
3.59355e-05
3.59364e-05
3.59369e-05
3.59373e-05
3.59375e-05
3.59372e-05
3.59367e-05
3.5936e-05
3.59352e-05
3.59344e-05
3.59655e-05
3.59706e-05
3.59636e-05
3.59623e-05
3.59702e-05
3.5964e-05
3.5963e-05
3.59738e-05
3.59665e-05
3.59771e-05
3.59686e-05
3.59797e-05
3.59702e-05
3.59806e-05
3.59828e-05
3.59703e-05
3.59779e-05
3.59683e-05
3.59659e-05
3.59733e-05
2.55037e-05
2.30499e-05
2.24811e-05
2.38329e-05
2.66315e-05
3.01685e-05
3.37365e-05
3.69321e-05
3.96017e-05
4.1706e-05
4.32136e-05
4.40819e-05
4.42974e-05
4.39203e-05
4.30453e-05
4.16718e-05
3.96982e-05
3.6945e-05
3.33536e-05
2.92683e-05
2.52712e-05
2.92919e-05
3.38128e-05
3.78016e-05
4.07083e-05
4.2524e-05
4.3584e-05
4.42016e-05
4.45617e-05
4.47235e-05
4.45594e-05
4.38221e-05
4.23505e-05
4.01291e-05
3.71617e-05
3.33943e-05
2.91679e-05
2.5361e-05
2.30448e-05
2.29796e-05
3.47019e-05
3.76687e-05
3.96369e-05
4.08263e-05
4.14919e-05
4.18119e-05
4.19577e-05
4.20372e-05
4.21227e-05
4.24483e-05
4.26744e-05
4.17946e-05
3.91209e-05
3.48472e-05
2.98648e-05
2.55831e-05
2.33723e-05
2.38765e-05
2.67314e-05
3.07436e-05
3.72311e-05
3.85464e-05
3.92515e-05
3.95666e-05
3.96864e-05
3.97607e-05
3.98692e-05
4.0029e-05
4.03473e-05
4.23798e-05
4.51531e-05
4.53916e-05
4.15128e-05
3.49651e-05
2.89094e-05
2.5698e-05
2.58901e-05
2.85185e-05
3.19801e-05
3.50311e-05
3.79711e-05
3.843e-05
3.8621e-05
3.87001e-05
3.87691e-05
3.88513e-05
3.89819e-05
3.91648e-05
3.98545e-05
4.51244e-05
5.16642e-05
5.31978e-05
4.83995e-05
4.06544e-05
3.40087e-05
3.09889e-05
3.13024e-05
3.32861e-05
3.54335e-05
3.70248e-05
3.79035e-05
3.80425e-05
3.80883e-05
3.81078e-05
3.81529e-05
3.82288e-05
3.83632e-05
3.85532e-05
3.93833e-05
4.60842e-05
5.36788e-05
5.49916e-05
4.87249e-05
4.00315e-05
3.42957e-05
3.27404e-05
3.3728e-05
3.53949e-05
3.67393e-05
3.75317e-05
3.76896e-05
3.77201e-05
3.77399e-05
3.77718e-05
3.78319e-05
3.79118e-05
3.80367e-05
3.8213e-05
3.89903e-05
4.34535e-05
4.8829e-05
5.15488e-05
4.84409e-05
4.11081e-05
3.61229e-05
3.49073e-05
3.56196e-05
3.66073e-05
3.72628e-05
3.75734e-05
3.75262e-05
3.7533e-05
3.75446e-05
3.75671e-05
3.76111e-05
3.76769e-05
3.77797e-05
3.79343e-05
3.82147e-05
3.73543e-05
3.61812e-05
3.4966e-05
3.43645e-05
3.39616e-05
3.41235e-05
3.51587e-05
3.62907e-05
3.70234e-05
3.73679e-05
3.74904e-05
3.74005e-05
3.74079e-05
3.74232e-05
3.745e-05
3.74902e-05
3.75483e-05
3.76296e-05
3.77663e-05
3.79909e-05
3.64386e-05
3.37587e-05
2.98458e-05
2.83096e-05
3.01019e-05
3.28853e-05
3.51452e-05
3.64765e-05
3.70894e-05
3.73168e-05
3.73832e-05
3.7332e-05
3.73393e-05
3.73512e-05
3.7371e-05
3.74003e-05
3.74461e-05
3.7509e-05
3.76265e-05
3.781e-05
3.61087e-05
3.37168e-05
2.95485e-05
2.78697e-05
3.00245e-05
3.31856e-05
3.5451e-05
3.66246e-05
3.71099e-05
3.72747e-05
3.732e-05
3.7288e-05
3.72956e-05
3.73072e-05
3.73249e-05
3.73486e-05
3.73849e-05
3.74322e-05
3.75273e-05
3.76668e-05
3.58522e-05
3.37155e-05
2.94389e-05
2.83261e-05
3.08689e-05
3.38789e-05
3.58229e-05
3.67598e-05
3.71266e-05
3.72459e-05
3.72783e-05
3.72627e-05
3.72688e-05
3.72777e-05
3.7291e-05
3.73086e-05
3.7336e-05
3.7373e-05
3.74478e-05
3.75718e-05
3.56463e-05
3.43073e-05
3.06203e-05
2.97711e-05
3.20868e-05
3.45999e-05
3.6146e-05
3.68677e-05
3.71436e-05
3.72315e-05
3.72553e-05
3.72457e-05
3.72512e-05
3.72588e-05
3.72697e-05
3.72835e-05
3.73037e-05
3.73315e-05
3.73851e-05
3.74853e-05
3.57252e-05
3.38001e-05
2.94831e-05
2.93485e-05
3.21498e-05
3.47202e-05
3.62077e-05
3.68817e-05
3.71357e-05
3.72164e-05
3.72386e-05
3.7234e-05
3.72386e-05
3.72444e-05
3.72527e-05
3.72633e-05
3.72781e-05
3.7299e-05
3.73367e-05
3.74562e-05
3.61837e-05
3.54405e-05
3.13856e-05
3.06992e-05
3.28569e-05
3.50124e-05
3.63039e-05
3.69028e-05
3.71325e-05
3.72067e-05
3.72275e-05
3.72258e-05
3.72294e-05
3.72341e-05
3.72407e-05
3.7249e-05
3.726e-05
3.72756e-05
3.73012e-05
3.74049e-05
3.57119e-05
3.32607e-05
2.95397e-05
3.01571e-05
3.28689e-05
3.51037e-05
3.63595e-05
3.69234e-05
3.71351e-05
3.72022e-05
3.72205e-05
3.72192e-05
3.72218e-05
3.72253e-05
3.72305e-05
3.72369e-05
3.7245e-05
3.72543e-05
3.72672e-05
3.72748e-05
3.37249e-05
2.75805e-05
2.56298e-05
2.84331e-05
3.23359e-05
3.50612e-05
3.64179e-05
3.69635e-05
3.71488e-05
3.72024e-05
3.72157e-05
3.72146e-05
3.72156e-05
3.72182e-05
3.72223e-05
3.72275e-05
3.72341e-05
3.72414e-05
3.72506e-05
3.72556e-05
3.69497e-05
3.67461e-05
3.68298e-05
3.7008e-05
3.71158e-05
3.71577e-05
3.71931e-05
3.72125e-05
3.72177e-05
3.72169e-05
3.72151e-05
3.72092e-05
3.72097e-05
3.72117e-05
3.72149e-05
3.72191e-05
3.72244e-05
3.72301e-05
3.72371e-05
3.72441e-05
3.72399e-05
3.72341e-05
3.72344e-05
3.724e-05
3.72413e-05
3.72372e-05
3.72301e-05
3.72231e-05
3.72171e-05
3.72127e-05
3.72101e-05
3.72043e-05
3.72045e-05
3.72059e-05
3.72085e-05
3.72119e-05
3.72163e-05
3.72209e-05
3.7226e-05
3.72297e-05
3.7233e-05
3.72313e-05
3.72311e-05
3.72337e-05
3.72329e-05
3.72294e-05
3.72238e-05
3.72177e-05
3.72123e-05
3.72082e-05
3.72055e-05
3.71996e-05
3.71996e-05
3.72005e-05
3.72026e-05
3.72054e-05
3.72091e-05
3.72131e-05
3.72176e-05
3.72213e-05
3.72242e-05
3.72236e-05
3.72229e-05
3.72237e-05
3.72229e-05
3.72204e-05
3.7216e-05
3.72112e-05
3.72067e-05
3.72032e-05
3.72008e-05
3.71953e-05
3.7195e-05
3.71957e-05
3.71972e-05
3.71995e-05
3.72026e-05
3.72059e-05
3.72096e-05
3.72125e-05
3.72151e-05
3.72152e-05
3.72157e-05
3.72168e-05
3.72162e-05
3.7214e-05
3.72103e-05
3.72062e-05
3.72022e-05
3.7199e-05
3.71967e-05
3.71912e-05
3.71908e-05
3.71912e-05
3.71924e-05
3.71943e-05
3.71969e-05
3.71998e-05
3.72031e-05
3.72058e-05
3.72083e-05
3.72089e-05
3.72092e-05
3.72096e-05
3.7209e-05
3.72072e-05
3.72042e-05
3.72008e-05
3.71975e-05
3.71947e-05
3.71925e-05
3.71874e-05
3.71869e-05
3.7187e-05
3.71879e-05
3.71895e-05
3.71917e-05
3.71941e-05
3.7197e-05
3.71993e-05
3.72015e-05
3.72024e-05
3.72032e-05
3.72039e-05
3.72035e-05
3.72019e-05
3.71994e-05
3.71964e-05
3.71934e-05
3.71908e-05
3.71888e-05
3.71839e-05
3.71832e-05
3.71832e-05
3.71839e-05
3.71852e-05
3.7187e-05
3.71892e-05
3.71917e-05
3.71939e-05
3.71961e-05
3.7197e-05
3.71977e-05
3.71982e-05
3.71978e-05
3.71966e-05
3.71945e-05
3.7192e-05
3.71894e-05
3.7187e-05
3.71852e-05
3.71806e-05
3.71799e-05
3.71797e-05
3.71802e-05
3.71812e-05
3.71828e-05
3.71847e-05
3.71869e-05
3.71888e-05
3.71908e-05
3.71919e-05
3.71928e-05
3.71933e-05
3.71931e-05
3.71921e-05
3.71903e-05
3.71881e-05
3.71858e-05
3.71836e-05
3.71819e-05
3.71775e-05
3.71768e-05
3.71766e-05
3.71769e-05
3.71777e-05
3.71791e-05
3.71807e-05
3.71827e-05
3.71845e-05
3.71863e-05
3.71874e-05
3.71883e-05
3.71888e-05
3.71886e-05
3.71878e-05
3.71862e-05
3.71844e-05
3.71823e-05
3.71804e-05
3.71788e-05
3.71748e-05
3.7174e-05
3.71737e-05
3.71739e-05
3.71745e-05
3.71757e-05
3.71771e-05
3.71789e-05
3.71805e-05
3.71822e-05
3.71833e-05
3.71842e-05
3.71848e-05
3.71847e-05
3.7184e-05
3.71827e-05
3.71811e-05
3.71793e-05
3.71775e-05
3.7176e-05
3.71722e-05
3.71715e-05
3.71711e-05
3.71712e-05
3.71717e-05
3.71727e-05
3.71739e-05
3.71755e-05
3.7177e-05
3.71786e-05
3.71796e-05
3.71806e-05
3.71811e-05
3.71811e-05
3.71806e-05
3.71795e-05
3.7178e-05
3.71764e-05
3.71748e-05
3.71734e-05
3.717e-05
3.71692e-05
3.71688e-05
3.71687e-05
3.71691e-05
3.717e-05
3.7171e-05
3.71725e-05
3.71738e-05
3.71753e-05
3.71764e-05
3.71773e-05
3.71779e-05
3.7178e-05
3.71775e-05
3.71766e-05
3.71753e-05
3.71739e-05
3.71724e-05
3.71711e-05
3.71679e-05
3.71671e-05
3.71667e-05
3.71666e-05
3.71669e-05
3.71676e-05
3.71685e-05
3.71698e-05
3.71711e-05
3.71725e-05
3.71735e-05
3.71744e-05
3.7175e-05
3.71751e-05
3.71748e-05
3.7174e-05
3.71729e-05
3.71716e-05
3.71702e-05
3.7169e-05
3.71661e-05
3.71653e-05
3.71648e-05
3.71647e-05
3.71649e-05
3.71655e-05
3.71663e-05
3.71675e-05
3.71686e-05
3.71699e-05
3.71709e-05
3.71719e-05
3.71724e-05
3.71726e-05
3.71724e-05
3.71717e-05
3.71707e-05
3.71695e-05
3.71682e-05
3.71671e-05
3.71645e-05
3.71637e-05
3.71632e-05
3.7163e-05
3.71631e-05
3.71637e-05
3.71644e-05
3.71655e-05
3.71665e-05
3.71678e-05
3.71687e-05
3.71696e-05
3.71702e-05
3.71704e-05
3.71702e-05
3.71697e-05
3.71688e-05
3.71677e-05
3.71665e-05
3.71655e-05
3.7163e-05
3.71623e-05
3.71618e-05
3.71615e-05
3.71616e-05
3.7162e-05
3.71627e-05
3.71637e-05
3.71647e-05
3.71659e-05
3.71668e-05
3.71677e-05
3.71682e-05
3.71685e-05
3.71684e-05
3.71679e-05
3.71671e-05
3.71661e-05
3.7165e-05
3.7164e-05
3.71618e-05
3.71611e-05
3.71606e-05
3.71603e-05
3.71603e-05
3.71607e-05
3.71613e-05
3.71622e-05
3.71631e-05
3.71643e-05
3.71652e-05
3.7166e-05
3.71666e-05
3.71669e-05
3.71668e-05
3.71664e-05
3.71657e-05
3.71648e-05
3.71637e-05
3.71628e-05
3.71608e-05
3.716e-05
3.71595e-05
3.71592e-05
3.71592e-05
3.71595e-05
3.716e-05
3.71609e-05
3.71618e-05
3.71629e-05
3.71637e-05
3.71646e-05
3.71652e-05
3.71655e-05
3.71655e-05
3.71651e-05
3.71644e-05
3.71636e-05
3.71626e-05
3.71617e-05
3.716e-05
3.71593e-05
3.71587e-05
3.71583e-05
3.71583e-05
3.71586e-05
3.7159e-05
3.71599e-05
3.71607e-05
3.71618e-05
3.71626e-05
3.71635e-05
3.7164e-05
3.71644e-05
3.71644e-05
3.71641e-05
3.71635e-05
3.71627e-05
3.71617e-05
3.71609e-05
3.71592e-05
3.71585e-05
3.7158e-05
3.71576e-05
3.71576e-05
3.71578e-05
3.71582e-05
3.7159e-05
3.71598e-05
3.71609e-05
3.71617e-05
3.71625e-05
3.71631e-05
3.71634e-05
3.71635e-05
3.71632e-05
3.71626e-05
3.71619e-05
3.71609e-05
3.71601e-05
3.71588e-05
3.71581e-05
3.71575e-05
3.71571e-05
3.71571e-05
3.71573e-05
3.71576e-05
3.71585e-05
3.71592e-05
3.71603e-05
3.7161e-05
3.71619e-05
3.71625e-05
3.71629e-05
3.7163e-05
3.71626e-05
3.71622e-05
3.71614e-05
3.71605e-05
3.71597e-05
3.71585e-05
3.71578e-05
3.71572e-05
3.71568e-05
3.71568e-05
3.7157e-05
3.71573e-05
3.71581e-05
3.71589e-05
3.71599e-05
3.71606e-05
3.71615e-05
3.7162e-05
3.71625e-05
3.71626e-05
3.71622e-05
3.71618e-05
3.7161e-05
3.71602e-05
3.71594e-05
3.71903e-05
3.71949e-05
3.71884e-05
3.71873e-05
3.71946e-05
3.71888e-05
3.71881e-05
3.71983e-05
3.71914e-05
3.72016e-05
3.71934e-05
3.72042e-05
3.71951e-05
3.7205e-05
3.7207e-05
3.7195e-05
3.72022e-05
3.71931e-05
3.71909e-05
3.71977e-05
2.5407e-05
2.32593e-05
2.31616e-05
2.50001e-05
2.81832e-05
3.19378e-05
3.55881e-05
3.87868e-05
4.14213e-05
4.3471e-05
4.49075e-05
4.56844e-05
4.57862e-05
4.52756e-05
4.4246e-05
4.26789e-05
4.04456e-05
3.73631e-05
3.3437e-05
2.91437e-05
2.6642e-05
3.10014e-05
3.56312e-05
3.95518e-05
4.23218e-05
4.40265e-05
4.50216e-05
4.56091e-05
4.59609e-05
4.61372e-05
4.59994e-05
4.52641e-05
4.3732e-05
4.13626e-05
3.81443e-05
3.40484e-05
2.95454e-05
2.56683e-05
2.35564e-05
2.39082e-05
3.62464e-05
3.91638e-05
4.1069e-05
4.22074e-05
4.28356e-05
4.31338e-05
4.32736e-05
4.33584e-05
4.3471e-05
4.393e-05
4.43616e-05
4.35657e-05
4.07232e-05
3.60813e-05
3.07177e-05
2.62587e-05
2.41529e-05
2.49548e-05
2.81143e-05
3.22924e-05
3.86649e-05
3.99307e-05
4.05952e-05
4.08832e-05
4.09932e-05
4.10693e-05
4.11857e-05
4.13567e-05
4.17084e-05
4.41797e-05
4.76094e-05
4.80856e-05
4.38069e-05
3.66018e-05
3.01329e-05
2.68563e-05
2.71921e-05
2.99743e-05
3.3495e-05
3.65245e-05
3.93279e-05
3.9752e-05
3.9925e-05
3.99981e-05
4.00691e-05
4.01549e-05
4.0293e-05
4.04855e-05
4.12549e-05
4.76019e-05
5.54881e-05
5.74607e-05
5.21347e-05
4.34866e-05
3.60798e-05
3.26898e-05
3.2881e-05
3.48127e-05
3.69055e-05
3.84366e-05
3.92161e-05
3.93396e-05
3.93806e-05
3.94006e-05
3.94504e-05
3.95309e-05
3.9672e-05
3.98701e-05
4.07907e-05
4.88383e-05
5.78675e-05
5.9377e-05
5.21965e-05
4.24495e-05
3.61143e-05
3.43341e-05
3.52416e-05
3.68499e-05
3.8135e-05
3.88774e-05
3.8982e-05
3.90106e-05
3.90319e-05
3.90663e-05
3.91294e-05
3.92124e-05
3.93422e-05
3.95251e-05
4.03866e-05
4.581e-05
5.22706e-05
5.54349e-05
5.16535e-05
4.32614e-05
3.7731e-05
3.63468e-05
3.70084e-05
3.79614e-05
3.85864e-05
3.88764e-05
3.88139e-05
3.8822e-05
3.88355e-05
3.88603e-05
3.89071e-05
3.89757e-05
3.90823e-05
3.92423e-05
3.95358e-05
3.86712e-05
3.75559e-05
3.63989e-05
3.59027e-05
3.54428e-05
3.55072e-05
3.64999e-05
3.76113e-05
3.83283e-05
3.86623e-05
3.87797e-05
3.86895e-05
3.86981e-05
3.87151e-05
3.87435e-05
3.87854e-05
3.88456e-05
3.89295e-05
3.9071e-05
3.93042e-05
3.77337e-05
3.50842e-05
3.10672e-05
2.959e-05
3.14638e-05
3.42584e-05
3.64932e-05
3.77966e-05
3.8391e-05
3.86092e-05
3.86725e-05
3.86215e-05
3.86295e-05
3.86426e-05
3.86637e-05
3.86945e-05
3.87421e-05
3.8807e-05
3.89286e-05
3.91184e-05
3.74154e-05
3.51261e-05
3.08291e-05
2.91598e-05
3.14153e-05
3.45944e-05
3.68211e-05
3.79543e-05
3.84149e-05
3.85685e-05
3.86101e-05
3.85778e-05
3.8586e-05
3.85984e-05
3.86172e-05
3.8642e-05
3.86797e-05
3.87283e-05
3.88268e-05
3.89703e-05
3.71695e-05
3.51748e-05
3.07475e-05
2.96616e-05
3.22944e-05
3.53008e-05
3.71946e-05
3.8088e-05
3.84307e-05
3.85396e-05
3.85687e-05
3.85525e-05
3.85591e-05
3.85686e-05
3.85827e-05
3.86013e-05
3.86298e-05
3.86679e-05
3.87453e-05
3.8873e-05
3.69644e-05
3.58815e-05
3.20536e-05
3.11825e-05
3.35352e-05
3.60169e-05
3.75082e-05
3.81898e-05
3.84449e-05
3.85243e-05
3.85454e-05
3.85355e-05
3.85414e-05
3.85495e-05
3.8561e-05
3.85755e-05
3.85966e-05
3.86253e-05
3.86806e-05
3.87841e-05
3.70666e-05
3.53316e-05
3.08475e-05
3.07416e-05
3.35874e-05
3.61267e-05
3.75632e-05
3.82006e-05
3.84359e-05
3.8509e-05
3.85288e-05
3.85237e-05
3.85285e-05
3.85348e-05
3.85437e-05
3.85548e-05
3.85702e-05
3.85919e-05
3.86308e-05
3.87551e-05
3.7579e-05
3.7134e-05
3.28703e-05
3.21375e-05
3.43004e-05
3.64146e-05
3.76555e-05
3.82199e-05
3.84321e-05
3.84991e-05
3.85176e-05
3.85154e-05
3.85192e-05
3.85242e-05
3.85313e-05
3.854e-05
3.85515e-05
3.85677e-05
3.85941e-05
3.87023e-05
3.70713e-05
3.47647e-05
3.09115e-05
3.157e-05
3.43033e-05
3.6499e-05
3.77067e-05
3.82382e-05
3.84337e-05
3.84943e-05
3.85105e-05
3.85086e-05
3.85113e-05
3.85152e-05
3.85207e-05
3.85275e-05
3.8536e-05
3.85456e-05
3.85591e-05
3.85663e-05
3.48512e-05
2.84943e-05
2.66725e-05
2.97245e-05
3.37355e-05
3.64448e-05
3.77583e-05
3.82742e-05
3.84454e-05
3.84937e-05
3.85054e-05
3.85037e-05
3.8505e-05
3.85078e-05
3.85122e-05
3.85177e-05
3.85246e-05
3.85322e-05
3.85416e-05
3.85467e-05
3.8231e-05
3.80317e-05
3.81262e-05
3.83073e-05
3.84114e-05
3.8452e-05
3.84858e-05
3.85033e-05
3.85073e-05
3.85059e-05
3.85041e-05
3.84981e-05
3.84989e-05
3.8501e-05
3.85045e-05
3.8509e-05
3.85146e-05
3.85205e-05
3.85277e-05
3.85349e-05
3.85304e-05
3.85245e-05
3.85249e-05
3.85306e-05
3.85314e-05
3.85268e-05
3.85193e-05
3.8512e-05
3.85059e-05
3.85015e-05
3.84989e-05
3.84932e-05
3.84935e-05
3.8495e-05
3.84978e-05
3.85015e-05
3.85061e-05
3.85109e-05
3.85161e-05
3.85199e-05
3.85232e-05
3.85212e-05
3.85211e-05
3.85237e-05
3.85226e-05
3.85188e-05
3.85128e-05
3.85065e-05
3.8501e-05
3.84968e-05
3.84942e-05
3.84883e-05
3.84884e-05
3.84895e-05
3.84917e-05
3.84947e-05
3.84986e-05
3.85027e-05
3.85074e-05
3.85112e-05
3.85141e-05
3.85133e-05
3.85126e-05
3.85133e-05
3.85124e-05
3.85096e-05
3.85049e-05
3.84999e-05
3.84954e-05
3.84918e-05
3.84894e-05
3.84839e-05
3.84837e-05
3.84844e-05
3.84862e-05
3.84886e-05
3.84919e-05
3.84953e-05
3.84991e-05
3.8502e-05
3.85046e-05
3.85047e-05
3.85051e-05
3.85062e-05
3.85054e-05
3.8503e-05
3.84991e-05
3.84948e-05
3.84907e-05
3.84875e-05
3.84851e-05
3.84796e-05
3.84793e-05
3.84798e-05
3.84811e-05
3.84831e-05
3.84859e-05
3.84889e-05
3.84924e-05
3.84951e-05
3.84977e-05
3.84981e-05
3.84983e-05
3.84987e-05
3.8498e-05
3.8496e-05
3.84929e-05
3.84894e-05
3.84859e-05
3.8483e-05
3.84809e-05
3.84757e-05
3.84752e-05
3.84755e-05
3.84765e-05
3.84781e-05
3.84805e-05
3.8483e-05
3.8486e-05
3.84883e-05
3.84906e-05
3.84914e-05
3.84922e-05
3.84929e-05
3.84923e-05
3.84906e-05
3.84879e-05
3.84848e-05
3.84817e-05
3.84791e-05
3.8477e-05
3.84721e-05
3.84714e-05
3.84715e-05
3.84723e-05
3.84737e-05
3.84757e-05
3.84779e-05
3.84805e-05
3.84828e-05
3.84849e-05
3.84859e-05
3.84865e-05
3.84869e-05
3.84864e-05
3.84851e-05
3.84829e-05
3.84803e-05
3.84776e-05
3.84752e-05
3.84733e-05
3.84687e-05
3.8468e-05
3.84679e-05
3.84685e-05
3.84696e-05
3.84713e-05
3.84732e-05
3.84755e-05
3.84775e-05
3.84795e-05
3.84805e-05
3.84814e-05
3.84819e-05
3.84816e-05
3.84805e-05
3.84786e-05
3.84763e-05
3.84739e-05
3.84717e-05
3.84699e-05
3.84655e-05
3.84648e-05
3.84646e-05
3.8465e-05
3.84659e-05
3.84674e-05
3.84691e-05
3.84711e-05
3.8473e-05
3.84748e-05
3.84759e-05
3.84767e-05
3.84772e-05
3.8477e-05
3.8476e-05
3.84744e-05
3.84725e-05
3.84704e-05
3.84684e-05
3.84668e-05
3.84627e-05
3.84619e-05
3.84616e-05
3.84619e-05
3.84626e-05
3.84638e-05
3.84653e-05
3.84671e-05
3.84688e-05
3.84705e-05
3.84716e-05
3.84726e-05
3.84731e-05
3.8473e-05
3.84722e-05
3.84708e-05
3.84691e-05
3.84672e-05
3.84654e-05
3.84639e-05
3.84601e-05
3.84593e-05
3.8459e-05
3.84591e-05
3.84597e-05
3.84607e-05
3.8462e-05
3.84637e-05
3.84652e-05
3.84668e-05
3.84679e-05
3.84688e-05
3.84693e-05
3.84692e-05
3.84686e-05
3.84675e-05
3.8466e-05
3.84643e-05
3.84627e-05
3.84612e-05
3.84577e-05
3.84569e-05
3.84565e-05
3.84566e-05
3.8457e-05
3.84579e-05
3.8459e-05
3.84605e-05
3.84619e-05
3.84634e-05
3.84645e-05
3.84654e-05
3.84659e-05
3.8466e-05
3.84655e-05
3.84645e-05
3.84632e-05
3.84617e-05
3.84602e-05
3.84588e-05
3.84556e-05
3.84548e-05
3.84544e-05
3.84543e-05
3.84547e-05
3.84554e-05
3.84564e-05
3.84578e-05
3.84591e-05
3.84605e-05
3.84615e-05
3.84624e-05
3.84629e-05
3.84631e-05
3.84627e-05
3.84618e-05
3.84607e-05
3.84593e-05
3.84579e-05
3.84567e-05
3.84537e-05
3.84529e-05
3.84525e-05
3.84523e-05
3.84526e-05
3.84532e-05
3.84541e-05
3.84553e-05
3.84565e-05
3.84579e-05
3.84589e-05
3.84598e-05
3.84603e-05
3.84605e-05
3.84602e-05
3.84594e-05
3.84584e-05
3.84572e-05
3.84559e-05
3.84547e-05
3.8452e-05
3.84513e-05
3.84508e-05
3.84506e-05
3.84508e-05
3.84513e-05
3.84521e-05
3.84532e-05
3.84543e-05
3.84556e-05
3.84566e-05
3.84575e-05
3.8458e-05
3.84582e-05
3.8458e-05
3.84574e-05
3.84565e-05
3.84553e-05
3.84541e-05
3.8453e-05
3.84505e-05
3.84498e-05
3.84493e-05
3.84491e-05
3.84492e-05
3.84497e-05
3.84503e-05
3.84514e-05
3.84524e-05
3.84536e-05
3.84546e-05
3.84555e-05
3.8456e-05
3.84562e-05
3.84561e-05
3.84555e-05
3.84547e-05
3.84537e-05
3.84526e-05
3.84515e-05
3.84493e-05
3.84486e-05
3.84481e-05
3.84478e-05
3.84479e-05
3.84483e-05
3.84489e-05
3.84499e-05
3.84508e-05
3.8452e-05
3.84529e-05
3.84538e-05
3.84543e-05
3.84546e-05
3.84545e-05
3.8454e-05
3.84533e-05
3.84523e-05
3.84512e-05
3.84503e-05
3.84482e-05
3.84475e-05
3.84469e-05
3.84466e-05
3.84467e-05
3.8447e-05
3.84476e-05
3.84485e-05
3.84494e-05
3.84505e-05
3.84514e-05
3.84523e-05
3.84528e-05
3.84531e-05
3.84531e-05
3.84526e-05
3.8452e-05
3.84511e-05
3.84501e-05
3.84491e-05
3.84474e-05
3.84467e-05
3.84461e-05
3.84458e-05
3.84458e-05
3.84461e-05
3.84466e-05
3.84475e-05
3.84483e-05
3.84494e-05
3.84503e-05
3.84511e-05
3.84517e-05
3.8452e-05
3.8452e-05
3.84516e-05
3.8451e-05
3.84502e-05
3.84492e-05
3.84483e-05
3.84466e-05
3.84459e-05
3.84454e-05
3.8445e-05
3.8445e-05
3.84453e-05
3.84457e-05
3.84466e-05
3.84474e-05
3.84485e-05
3.84493e-05
3.84501e-05
3.84507e-05
3.8451e-05
3.84511e-05
3.84507e-05
3.84501e-05
3.84493e-05
3.84484e-05
3.84475e-05
3.84462e-05
3.84455e-05
3.84449e-05
3.84445e-05
3.84445e-05
3.84447e-05
3.84451e-05
3.8446e-05
3.84467e-05
3.84478e-05
3.84486e-05
3.84495e-05
3.845e-05
3.84505e-05
3.84505e-05
3.84502e-05
3.84497e-05
3.84488e-05
3.84479e-05
3.84471e-05
3.84459e-05
3.84452e-05
3.84446e-05
3.84442e-05
3.84442e-05
3.84444e-05
3.84448e-05
3.84456e-05
3.84464e-05
3.84474e-05
3.84482e-05
3.84491e-05
3.84496e-05
3.845e-05
3.84501e-05
3.84497e-05
3.84493e-05
3.84485e-05
3.84476e-05
3.84468e-05
3.84775e-05
3.84816e-05
3.84755e-05
3.84747e-05
3.84814e-05
3.84761e-05
3.84755e-05
3.84852e-05
3.84787e-05
3.84885e-05
3.84808e-05
3.8491e-05
3.84824e-05
3.84919e-05
3.84936e-05
3.84821e-05
3.84889e-05
3.84803e-05
3.84783e-05
3.84844e-05
2.53694e-05
2.35973e-05
2.40153e-05
2.63487e-05
2.98926e-05
3.38338e-05
3.75415e-05
4.07271e-05
4.33163e-05
4.53044e-05
4.66646e-05
4.73451e-05
4.73268e-05
4.66742e-05
4.54765e-05
4.36946e-05
4.11728e-05
3.7735e-05
3.34731e-05
2.90105e-05
2.81904e-05
3.28509e-05
3.7543e-05
4.13675e-05
4.39965e-05
4.55937e-05
4.6528e-05
4.70874e-05
4.74334e-05
4.76333e-05
4.75386e-05
4.68216e-05
4.52344e-05
4.27047e-05
3.92064e-05
3.47521e-05
2.99715e-05
2.60602e-05
2.42064e-05
2.50147e-05
3.78811e-05
4.0736e-05
4.25726e-05
4.36573e-05
4.42463e-05
4.45234e-05
4.4658e-05
4.47494e-05
4.48951e-05
4.55206e-05
4.62097e-05
4.55271e-05
4.24997e-05
3.74469e-05
3.16737e-05
2.70445e-05
2.50706e-05
2.61865e-05
2.96391e-05
3.39543e-05
4.01717e-05
4.13829e-05
4.20048e-05
4.22657e-05
4.23672e-05
4.24455e-05
4.25705e-05
4.27534e-05
4.31423e-05
4.61415e-05
5.03573e-05
5.11177e-05
4.63769e-05
3.84318e-05
3.15086e-05
2.81536e-05
2.86237e-05
3.15427e-05
3.51036e-05
3.80982e-05
4.07504e-05
4.11389e-05
4.12946e-05
4.13625e-05
4.1436e-05
4.15259e-05
4.16721e-05
4.18748e-05
4.27328e-05
5.03705e-05
5.98618e-05
6.23617e-05
5.64309e-05
4.67192e-05
3.84036e-05
3.45547e-05
3.4577e-05
3.6431e-05
3.84544e-05
3.99172e-05
4.05938e-05
4.07025e-05
4.07393e-05
4.07605e-05
4.08151e-05
4.09003e-05
4.10486e-05
4.12551e-05
4.2276e-05
5.1938e-05
6.26708e-05
6.44056e-05
5.61542e-05
4.51755e-05
3.81255e-05
3.60574e-05
3.6851e-05
3.83824e-05
3.95989e-05
4.02881e-05
4.03411e-05
4.03677e-05
4.03906e-05
4.04277e-05
4.0494e-05
4.05801e-05
4.07151e-05
4.09048e-05
4.186e-05
4.84443e-05
5.62088e-05
5.99047e-05
5.53103e-05
4.56938e-05
3.9519e-05
3.79117e-05
3.84914e-05
3.93926e-05
3.99796e-05
4.02465e-05
4.01686e-05
4.01779e-05
4.01933e-05
4.02205e-05
4.027e-05
4.03415e-05
4.04521e-05
4.06176e-05
4.09255e-05
4.00664e-05
3.90306e-05
3.79645e-05
3.76159e-05
3.70818e-05
3.70206e-05
3.79454e-05
3.90174e-05
3.97078e-05
4.00261e-05
4.01365e-05
4.00451e-05
4.0055e-05
4.00736e-05
4.01037e-05
4.01474e-05
4.02098e-05
4.02964e-05
4.04428e-05
4.06853e-05
3.91095e-05
3.65123e-05
3.23902e-05
3.09824e-05
3.29377e-05
3.57315e-05
3.79269e-05
3.91922e-05
3.97625e-05
3.99692e-05
4.00286e-05
3.99775e-05
3.99863e-05
4.00006e-05
4.00231e-05
4.00554e-05
4.0105e-05
4.01718e-05
4.02978e-05
4.04941e-05
3.88064e-05
3.6651e-05
3.22135e-05
3.05506e-05
3.29025e-05
3.60874e-05
3.82653e-05
3.93529e-05
3.97869e-05
3.99287e-05
3.99665e-05
3.99342e-05
3.9943e-05
3.99564e-05
3.99762e-05
4.0002e-05
4.00412e-05
4.00913e-05
4.01933e-05
4.03409e-05
3.85743e-05
3.67557e-05
3.21608e-05
3.10954e-05
3.38088e-05
3.67989e-05
3.8635e-05
3.94825e-05
3.98006e-05
3.98994e-05
3.99254e-05
3.99087e-05
3.99158e-05
3.99261e-05
3.99412e-05
3.99606e-05
3.99903e-05
4.00296e-05
4.01097e-05
4.02413e-05
3.83711e-05
3.75928e-05
3.35999e-05
3.26929e-05
3.50689e-05
3.75067e-05
3.89375e-05
3.95775e-05
3.9812e-05
3.98832e-05
3.99019e-05
3.98918e-05
3.9898e-05
3.99067e-05
3.99189e-05
3.99341e-05
3.99561e-05
3.99857e-05
4.00429e-05
4.01496e-05
3.84997e-05
3.69944e-05
3.23198e-05
3.22311e-05
3.51081e-05
3.76052e-05
3.89855e-05
3.95853e-05
3.9802e-05
3.98677e-05
3.98853e-05
3.98799e-05
3.98849e-05
3.98917e-05
3.99012e-05
3.99128e-05
3.9929e-05
3.99515e-05
3.99915e-05
4.01209e-05
3.90728e-05
3.89754e-05
3.44696e-05
3.36728e-05
3.58266e-05
3.78883e-05
3.90738e-05
3.96026e-05
3.97974e-05
3.98577e-05
3.98741e-05
3.98715e-05
3.98754e-05
3.98809e-05
3.98884e-05
3.98976e-05
3.99095e-05
3.99264e-05
3.99536e-05
4.00666e-05
3.85256e-05
3.63968e-05
3.23897e-05
3.30777e-05
3.58189e-05
3.79653e-05
3.91205e-05
3.96187e-05
3.97982e-05
3.98525e-05
3.98668e-05
3.98645e-05
3.98674e-05
3.98715e-05
3.98774e-05
3.98846e-05
3.98935e-05
3.99036e-05
3.99175e-05
3.99242e-05
3.60426e-05
2.94704e-05
2.77946e-05
3.11025e-05
3.52135e-05
3.7898e-05
3.91648e-05
3.96506e-05
3.9808e-05
3.98512e-05
3.98614e-05
3.98592e-05
3.98608e-05
3.98639e-05
3.98686e-05
3.98744e-05
3.98817e-05
3.98896e-05
3.98993e-05
3.99044e-05
3.95795e-05
3.93853e-05
3.94902e-05
3.96736e-05
3.97735e-05
3.98129e-05
3.98449e-05
3.98603e-05
3.98631e-05
3.98613e-05
3.98595e-05
3.98535e-05
3.98545e-05
3.98569e-05
3.98606e-05
3.98654e-05
3.98712e-05
3.98774e-05
3.98849e-05
3.98922e-05
3.98875e-05
3.98815e-05
3.98819e-05
3.98877e-05
3.9888e-05
3.98829e-05
3.9875e-05
3.98673e-05
3.9861e-05
3.98566e-05
3.98542e-05
3.98484e-05
3.98489e-05
3.98506e-05
3.98536e-05
3.98575e-05
3.98624e-05
3.98674e-05
3.98728e-05
3.98766e-05
3.98799e-05
3.98776e-05
3.98775e-05
3.98801e-05
3.98788e-05
3.98746e-05
3.98683e-05
3.98617e-05
3.98561e-05
3.98519e-05
3.98494e-05
3.98434e-05
3.98436e-05
3.98449e-05
3.98473e-05
3.98505e-05
3.98546e-05
3.98589e-05
3.98637e-05
3.98675e-05
3.98704e-05
3.98694e-05
3.98687e-05
3.98694e-05
3.98682e-05
3.98651e-05
3.98602e-05
3.9855e-05
3.98504e-05
3.98468e-05
3.98444e-05
3.98388e-05
3.98387e-05
3.98396e-05
3.98415e-05
3.98441e-05
3.98476e-05
3.98511e-05
3.98551e-05
3.9858e-05
3.98606e-05
3.98605e-05
3.9861e-05
3.9862e-05
3.98611e-05
3.98584e-05
3.98543e-05
3.98498e-05
3.98456e-05
3.98423e-05
3.984e-05
3.98344e-05
3.98342e-05
3.98348e-05
3.98362e-05
3.98384e-05
3.98414e-05
3.98445e-05
3.9848e-05
3.98509e-05
3.98534e-05
3.98537e-05
3.9854e-05
3.98543e-05
3.98534e-05
3.98513e-05
3.9848e-05
3.98443e-05
3.98407e-05
3.98378e-05
3.98357e-05
3.98304e-05
3.983e-05
3.98303e-05
3.98314e-05
3.98332e-05
3.98357e-05
3.98384e-05
3.98414e-05
3.98438e-05
3.98461e-05
3.98468e-05
3.98476e-05
3.98482e-05
3.98475e-05
3.98457e-05
3.98428e-05
3.98396e-05
3.98364e-05
3.98337e-05
3.98317e-05
3.98266e-05
3.98261e-05
3.98262e-05
3.98271e-05
3.98286e-05
3.98307e-05
3.9833e-05
3.98357e-05
3.9838e-05
3.98402e-05
3.98411e-05
3.98417e-05
3.98421e-05
3.98415e-05
3.984e-05
3.98377e-05
3.98349e-05
3.98322e-05
3.98298e-05
3.98279e-05
3.98231e-05
3.98225e-05
3.98225e-05
3.98231e-05
3.98243e-05
3.98261e-05
3.98281e-05
3.98305e-05
3.98325e-05
3.98346e-05
3.98356e-05
3.98365e-05
3.98369e-05
3.98365e-05
3.98353e-05
3.98333e-05
3.98308e-05
3.98284e-05
3.98262e-05
3.98244e-05
3.98199e-05
3.98192e-05
3.98191e-05
3.98195e-05
3.98205e-05
3.9822e-05
3.98238e-05
3.9826e-05
3.98278e-05
3.98297e-05
3.98307e-05
3.98316e-05
3.9832e-05
3.98317e-05
3.98307e-05
3.9829e-05
3.98269e-05
3.98248e-05
3.98228e-05
3.98211e-05
3.98169e-05
3.98162e-05
3.9816e-05
3.98163e-05
3.98171e-05
3.98184e-05
3.98199e-05
3.98218e-05
3.98235e-05
3.98253e-05
3.98264e-05
3.98273e-05
3.98278e-05
3.98276e-05
3.98268e-05
3.98253e-05
3.98235e-05
3.98215e-05
3.98197e-05
3.98181e-05
3.98142e-05
3.98135e-05
3.98132e-05
3.98134e-05
3.9814e-05
3.98151e-05
3.98165e-05
3.98182e-05
3.98197e-05
3.98214e-05
3.98225e-05
3.98234e-05
3.98238e-05
3.98238e-05
3.98231e-05
3.98218e-05
3.98203e-05
3.98185e-05
3.98168e-05
3.98154e-05
3.98118e-05
3.9811e-05
3.98107e-05
3.98108e-05
3.98113e-05
3.98122e-05
3.98134e-05
3.98149e-05
3.98164e-05
3.98179e-05
3.9819e-05
3.98199e-05
3.98204e-05
3.98204e-05
3.98198e-05
3.98188e-05
3.98174e-05
3.98158e-05
3.98143e-05
3.98129e-05
3.98096e-05
3.98089e-05
3.98084e-05
3.98084e-05
3.98088e-05
3.98096e-05
3.98107e-05
3.98121e-05
3.98134e-05
3.98148e-05
3.98159e-05
3.98168e-05
3.98173e-05
3.98174e-05
3.98169e-05
3.9816e-05
3.98148e-05
3.98134e-05
3.9812e-05
3.98107e-05
3.98076e-05
3.98069e-05
3.98064e-05
3.98064e-05
3.98067e-05
3.98074e-05
3.98083e-05
3.98096e-05
3.98108e-05
3.98121e-05
3.98131e-05
3.98141e-05
3.98146e-05
3.98147e-05
3.98144e-05
3.98136e-05
3.98125e-05
3.98112e-05
3.98099e-05
3.98087e-05
3.98059e-05
3.98052e-05
3.98047e-05
3.98046e-05
3.98048e-05
3.98054e-05
3.98062e-05
3.98074e-05
3.98085e-05
3.98098e-05
3.98108e-05
3.98117e-05
3.98122e-05
3.98124e-05
3.98121e-05
3.98114e-05
3.98105e-05
3.98093e-05
3.98081e-05
3.98069e-05
3.98044e-05
3.98037e-05
3.98032e-05
3.9803e-05
3.98031e-05
3.98036e-05
3.98044e-05
3.98055e-05
3.98065e-05
3.98077e-05
3.98087e-05
3.98096e-05
3.98101e-05
3.98103e-05
3.98101e-05
3.98095e-05
3.98087e-05
3.98076e-05
3.98064e-05
3.98054e-05
3.98031e-05
3.98024e-05
3.98019e-05
3.98016e-05
3.98018e-05
3.98022e-05
3.98028e-05
3.98039e-05
3.98048e-05
3.9806e-05
3.98069e-05
3.98078e-05
3.98084e-05
3.98086e-05
3.98085e-05
3.9808e-05
3.98072e-05
3.98062e-05
3.98051e-05
3.98041e-05
3.9802e-05
3.98013e-05
3.98007e-05
3.98005e-05
3.98005e-05
3.98009e-05
3.98015e-05
3.98025e-05
3.98034e-05
3.98045e-05
3.98054e-05
3.98063e-05
3.98068e-05
3.98071e-05
3.98071e-05
3.98066e-05
3.98059e-05
3.98049e-05
3.98039e-05
3.9803e-05
3.98012e-05
3.98005e-05
3.97999e-05
3.97996e-05
3.97996e-05
3.97999e-05
3.98004e-05
3.98014e-05
3.98022e-05
3.98034e-05
3.98042e-05
3.98051e-05
3.98056e-05
3.9806e-05
3.9806e-05
3.98055e-05
3.98049e-05
3.9804e-05
3.9803e-05
3.98021e-05
3.98004e-05
3.97997e-05
3.97991e-05
3.97987e-05
3.97988e-05
3.97991e-05
3.97995e-05
3.98004e-05
3.98013e-05
3.98024e-05
3.98032e-05
3.98041e-05
3.98046e-05
3.9805e-05
3.9805e-05
3.98046e-05
3.9804e-05
3.98031e-05
3.98021e-05
3.98013e-05
3.97999e-05
3.97993e-05
3.97986e-05
3.97982e-05
3.97983e-05
3.97985e-05
3.97989e-05
3.97998e-05
3.98006e-05
3.98017e-05
3.98025e-05
3.98035e-05
3.98039e-05
3.98044e-05
3.98044e-05
3.9804e-05
3.98035e-05
3.98026e-05
3.98017e-05
3.98009e-05
3.97996e-05
3.97989e-05
3.97983e-05
3.97979e-05
3.97979e-05
3.97982e-05
3.97985e-05
3.97994e-05
3.98002e-05
3.98013e-05
3.98021e-05
3.9803e-05
3.98035e-05
3.98039e-05
3.9804e-05
3.98036e-05
3.98031e-05
3.98022e-05
3.98013e-05
3.98005e-05
3.9831e-05
3.98346e-05
3.9829e-05
3.98284e-05
3.98346e-05
3.98296e-05
3.98293e-05
3.98385e-05
3.98324e-05
3.98417e-05
3.98344e-05
3.98443e-05
3.98361e-05
3.9845e-05
3.98465e-05
3.98356e-05
3.98419e-05
3.98338e-05
3.9832e-05
3.98375e-05
2.54131e-05
2.40859e-05
2.50581e-05
2.7886e-05
3.1762e-05
3.58572e-05
3.95976e-05
4.27548e-05
4.52891e-05
4.72094e-05
4.84887e-05
4.90682e-05
4.89237e-05
4.81199e-05
4.67389e-05
4.47184e-05
4.18765e-05
3.8059e-05
3.34675e-05
2.88842e-05
2.99202e-05
3.48367e-05
3.9545e-05
4.32496e-05
4.57351e-05
4.72291e-05
4.81066e-05
4.86401e-05
4.89837e-05
4.92196e-05
4.91904e-05
4.85132e-05
4.68784e-05
4.41741e-05
4.03611e-05
3.55164e-05
3.04605e-05
2.6556e-05
2.50146e-05
2.6313e-05
3.96076e-05
4.2388e-05
4.4151e-05
4.51795e-05
4.57285e-05
4.59849e-05
4.61153e-05
4.62147e-05
4.6401e-05
4.72336e-05
4.82431e-05
4.77083e-05
4.44763e-05
3.89633e-05
3.27495e-05
2.79573e-05
2.61405e-05
2.75809e-05
3.13087e-05
3.57298e-05
4.17543e-05
4.29064e-05
4.34839e-05
4.37181e-05
4.38125e-05
4.38938e-05
4.40283e-05
4.4224e-05
4.46539e-05
4.82864e-05
5.34381e-05
5.45323e-05
4.92547e-05
4.04772e-05
3.30514e-05
2.95998e-05
3.01908e-05
3.32268e-05
3.68083e-05
3.97549e-05
4.22423e-05
4.25951e-05
4.27344e-05
4.27979e-05
4.28746e-05
4.2969e-05
4.31237e-05
4.33371e-05
4.42938e-05
5.34732e-05
6.48675e-05
6.79916e-05
6.13626e-05
5.03938e-05
4.09973e-05
3.65897e-05
3.6393e-05
3.81434e-05
4.00828e-05
4.14697e-05
4.20409e-05
4.21357e-05
4.21691e-05
4.21919e-05
4.22516e-05
4.23417e-05
4.24974e-05
4.27127e-05
4.38445e-05
5.54361e-05
6.81811e-05
7.01635e-05
6.06514e-05
4.8234e-05
4.03381e-05
3.79133e-05
3.85582e-05
3.99947e-05
4.11344e-05
4.17679e-05
4.17713e-05
4.17961e-05
4.18208e-05
4.18606e-05
4.19301e-05
4.20195e-05
4.21599e-05
4.23568e-05
4.34161e-05
5.14003e-05
6.07256e-05
6.50482e-05
5.94614e-05
4.84282e-05
4.1494e-05
3.96043e-05
4.00702e-05
4.09035e-05
4.14457e-05
4.16876e-05
4.15947e-05
4.1605e-05
4.16225e-05
4.16521e-05
4.17045e-05
4.1779e-05
4.18937e-05
4.20651e-05
4.23883e-05
4.15472e-05
4.06172e-05
3.9681e-05
3.95254e-05
3.88898e-05
3.86682e-05
3.94972e-05
4.05112e-05
4.11649e-05
4.14631e-05
4.15651e-05
4.1472e-05
4.14831e-05
4.15034e-05
4.15352e-05
4.15808e-05
4.16456e-05
4.17349e-05
4.18865e-05
4.21389e-05
4.05737e-05
3.80552e-05
3.38264e-05
3.24976e-05
3.4531e-05
3.73084e-05
3.94492e-05
4.06664e-05
4.12077e-05
4.14011e-05
4.1456e-05
4.14046e-05
4.14143e-05
4.14298e-05
4.14538e-05
4.14877e-05
4.15393e-05
4.16082e-05
4.17388e-05
4.1942e-05
4.029e-05
3.83054e-05
3.37128e-05
3.20513e-05
3.44923e-05
3.76689e-05
3.97873e-05
4.08241e-05
4.12299e-05
4.13599e-05
4.1394e-05
4.13616e-05
4.13711e-05
4.13855e-05
4.14064e-05
4.14334e-05
4.14741e-05
4.15256e-05
4.16313e-05
4.17833e-05
4.00756e-05
3.84729e-05
3.36898e-05
3.26362e-05
3.54181e-05
3.83777e-05
4.01483e-05
4.09475e-05
4.12408e-05
4.13298e-05
4.13529e-05
4.1336e-05
4.13437e-05
4.13548e-05
4.13708e-05
4.13912e-05
4.14221e-05
4.14627e-05
4.15455e-05
4.16811e-05
3.98757e-05
3.94579e-05
3.52707e-05
3.43105e-05
3.66935e-05
3.9074e-05
4.04382e-05
4.10354e-05
4.12493e-05
4.13127e-05
4.13293e-05
4.13191e-05
4.13258e-05
4.13351e-05
4.1348e-05
4.1364e-05
4.13869e-05
4.14175e-05
4.14765e-05
4.15867e-05
4.00343e-05
3.88041e-05
3.39112e-05
3.38249e-05
3.67177e-05
3.916e-05
4.0479e-05
4.104e-05
4.12384e-05
4.12971e-05
4.13128e-05
4.1307e-05
4.13125e-05
4.13198e-05
4.13298e-05
4.13421e-05
4.1359e-05
4.13823e-05
4.14236e-05
4.15581e-05
4.06756e-05
4.09821e-05
3.61944e-05
3.53131e-05
3.74408e-05
3.94381e-05
4.05633e-05
4.10555e-05
4.12332e-05
4.1287e-05
4.13015e-05
4.12985e-05
4.13027e-05
4.13086e-05
4.13165e-05
4.13263e-05
4.13388e-05
4.13563e-05
4.13844e-05
4.15023e-05
4.00852e-05
3.81719e-05
3.39848e-05
3.46878e-05
3.7421e-05
3.9507e-05
4.06053e-05
4.10695e-05
4.12331e-05
4.12815e-05
4.12941e-05
4.12913e-05
4.12944e-05
4.1299e-05
4.13053e-05
4.13129e-05
4.13222e-05
4.13327e-05
4.13471e-05
4.13532e-05
3.7305e-05
3.05155e-05
2.90039e-05
3.2574e-05
3.67749e-05
3.94251e-05
4.06418e-05
4.10971e-05
4.1241e-05
4.12795e-05
4.12884e-05
4.12858e-05
4.12876e-05
4.1291e-05
4.1296e-05
4.13022e-05
4.13099e-05
4.1318e-05
4.1328e-05
4.13331e-05
4.09999e-05
4.08114e-05
4.09267e-05
4.11116e-05
4.12068e-05
4.12449e-05
4.12748e-05
4.12882e-05
4.12899e-05
4.12877e-05
4.12859e-05
4.12799e-05
4.12811e-05
4.12837e-05
4.12878e-05
4.12928e-05
4.1299e-05
4.13054e-05
4.13131e-05
4.13205e-05
4.13156e-05
4.13095e-05
4.131e-05
4.13157e-05
4.13156e-05
4.13099e-05
4.13015e-05
4.12936e-05
4.12872e-05
4.12828e-05
4.12804e-05
4.12746e-05
4.12753e-05
4.12772e-05
4.12805e-05
4.12846e-05
4.12897e-05
4.12949e-05
4.13005e-05
4.13043e-05
4.13076e-05
4.1305e-05
4.1305e-05
4.13076e-05
4.1306e-05
4.13014e-05
4.12947e-05
4.12879e-05
4.12821e-05
4.12779e-05
4.12754e-05
4.12695e-05
4.12698e-05
4.12713e-05
4.12738e-05
4.12773e-05
4.12816e-05
4.12861e-05
4.12911e-05
4.12949e-05
4.12978e-05
4.12966e-05
4.12957e-05
4.12964e-05
4.1295e-05
4.12917e-05
4.12865e-05
4.12811e-05
4.12763e-05
4.12727e-05
4.12704e-05
4.12647e-05
4.12647e-05
4.12658e-05
4.12678e-05
4.12707e-05
4.12743e-05
4.1278e-05
4.12821e-05
4.1285e-05
4.12877e-05
4.12874e-05
4.12879e-05
4.12888e-05
4.12877e-05
4.12848e-05
4.12804e-05
4.12757e-05
4.12715e-05
4.12681e-05
4.12659e-05
4.12602e-05
4.126e-05
4.12607e-05
4.12624e-05
4.12647e-05
4.12678e-05
4.12711e-05
4.12747e-05
4.12776e-05
4.12802e-05
4.12804e-05
4.12805e-05
4.12808e-05
4.12798e-05
4.12774e-05
4.12739e-05
4.12701e-05
4.12665e-05
4.12635e-05
4.12614e-05
4.1256e-05
4.12557e-05
4.12561e-05
4.12574e-05
4.12593e-05
4.12619e-05
4.12647e-05
4.12678e-05
4.12703e-05
4.12726e-05
4.12732e-05
4.1274e-05
4.12745e-05
4.12737e-05
4.12717e-05
4.12687e-05
4.12653e-05
4.12621e-05
4.12593e-05
4.12573e-05
4.12521e-05
4.12516e-05
4.12519e-05
4.12528e-05
4.12544e-05
4.12567e-05
4.12591e-05
4.12619e-05
4.12642e-05
4.12665e-05
4.12673e-05
4.12679e-05
4.12682e-05
4.12675e-05
4.12659e-05
4.12634e-05
4.12605e-05
4.12577e-05
4.12552e-05
4.12533e-05
4.12485e-05
4.12479e-05
4.1248e-05
4.12487e-05
4.125e-05
4.12519e-05
4.1254e-05
4.12565e-05
4.12585e-05
4.12606e-05
4.12616e-05
4.12625e-05
4.12629e-05
4.12624e-05
4.1261e-05
4.12588e-05
4.12563e-05
4.12538e-05
4.12515e-05
4.12497e-05
4.12452e-05
4.12445e-05
4.12444e-05
4.1245e-05
4.12461e-05
4.12477e-05
4.12495e-05
4.12518e-05
4.12536e-05
4.12556e-05
4.12566e-05
4.12574e-05
4.12578e-05
4.12574e-05
4.12563e-05
4.12545e-05
4.12523e-05
4.12501e-05
4.1248e-05
4.12464e-05
4.12421e-05
4.12414e-05
4.12412e-05
4.12416e-05
4.12425e-05
4.12439e-05
4.12455e-05
4.12474e-05
4.12492e-05
4.1251e-05
4.1252e-05
4.1253e-05
4.12534e-05
4.12532e-05
4.12522e-05
4.12507e-05
4.12488e-05
4.12467e-05
4.12448e-05
4.12433e-05
4.12393e-05
4.12386e-05
4.12383e-05
4.12386e-05
4.12393e-05
4.12405e-05
4.12419e-05
4.12437e-05
4.12452e-05
4.12469e-05
4.1248e-05
4.12489e-05
4.12493e-05
4.12492e-05
4.12484e-05
4.12471e-05
4.12454e-05
4.12437e-05
4.12419e-05
4.12405e-05
4.12368e-05
4.12361e-05
4.12357e-05
4.12359e-05
4.12364e-05
4.12374e-05
4.12387e-05
4.12403e-05
4.12417e-05
4.12433e-05
4.12444e-05
4.12453e-05
4.12458e-05
4.12457e-05
4.12451e-05
4.12439e-05
4.12425e-05
4.12409e-05
4.12393e-05
4.12379e-05
4.12345e-05
4.12338e-05
4.12334e-05
4.12335e-05
4.12339e-05
4.12348e-05
4.12359e-05
4.12373e-05
4.12387e-05
4.12401e-05
4.12412e-05
4.12421e-05
4.12426e-05
4.12426e-05
4.12421e-05
4.12411e-05
4.12398e-05
4.12384e-05
4.12369e-05
4.12356e-05
4.12325e-05
4.12318e-05
4.12314e-05
4.12313e-05
4.12317e-05
4.12324e-05
4.12334e-05
4.12347e-05
4.12359e-05
4.12373e-05
4.12383e-05
4.12393e-05
4.12397e-05
4.12398e-05
4.12394e-05
4.12386e-05
4.12375e-05
4.12361e-05
4.12348e-05
4.12336e-05
4.12307e-05
4.123e-05
4.12296e-05
4.12294e-05
4.12297e-05
4.12303e-05
4.12312e-05
4.12324e-05
4.12336e-05
4.12349e-05
4.12359e-05
4.12368e-05
4.12373e-05
4.12374e-05
4.12371e-05
4.12364e-05
4.12354e-05
4.12342e-05
4.12329e-05
4.12318e-05
4.12292e-05
4.12284e-05
4.1228e-05
4.12278e-05
4.1228e-05
4.12285e-05
4.12293e-05
4.12304e-05
4.12315e-05
4.12328e-05
4.12337e-05
4.12346e-05
4.12351e-05
4.12353e-05
4.12351e-05
4.12344e-05
4.12335e-05
4.12324e-05
4.12312e-05
4.12302e-05
4.12279e-05
4.12272e-05
4.12266e-05
4.12264e-05
4.12266e-05
4.1227e-05
4.12277e-05
4.12288e-05
4.12298e-05
4.1231e-05
4.12319e-05
4.12328e-05
4.12333e-05
4.12336e-05
4.12334e-05
4.12328e-05
4.1232e-05
4.1231e-05
4.12298e-05
4.12288e-05
4.12267e-05
4.1226e-05
4.12254e-05
4.12252e-05
4.12253e-05
4.12257e-05
4.12263e-05
4.12273e-05
4.12283e-05
4.12295e-05
4.12303e-05
4.12312e-05
4.12317e-05
4.1232e-05
4.12319e-05
4.12314e-05
4.12307e-05
4.12297e-05
4.12286e-05
4.12277e-05
4.12258e-05
4.12251e-05
4.12246e-05
4.12242e-05
4.12243e-05
4.12247e-05
4.12252e-05
4.12262e-05
4.12271e-05
4.12283e-05
4.12291e-05
4.123e-05
4.12305e-05
4.12308e-05
4.12308e-05
4.12303e-05
4.12297e-05
4.12287e-05
4.12277e-05
4.12268e-05
4.1225e-05
4.12243e-05
4.12237e-05
4.12234e-05
4.12235e-05
4.12238e-05
4.12243e-05
4.12252e-05
4.12261e-05
4.12272e-05
4.1228e-05
4.1229e-05
4.12294e-05
4.12298e-05
4.12298e-05
4.12293e-05
4.12287e-05
4.12278e-05
4.12268e-05
4.1226e-05
4.12246e-05
4.12239e-05
4.12233e-05
4.12229e-05
4.1223e-05
4.12232e-05
4.12236e-05
4.12246e-05
4.12254e-05
4.12266e-05
4.12273e-05
4.12283e-05
4.12288e-05
4.12292e-05
4.12292e-05
4.12287e-05
4.12282e-05
4.12273e-05
4.12263e-05
4.12255e-05
4.12242e-05
4.12235e-05
4.12229e-05
4.12225e-05
4.12226e-05
4.12228e-05
4.12232e-05
4.12242e-05
4.1225e-05
4.12261e-05
4.12269e-05
4.12278e-05
4.12283e-05
4.12287e-05
4.12287e-05
4.12283e-05
4.12278e-05
4.12269e-05
4.12259e-05
4.12252e-05
4.12554e-05
4.12586e-05
4.12534e-05
4.1253e-05
4.12587e-05
4.12541e-05
4.1254e-05
4.12627e-05
4.12569e-05
4.12658e-05
4.1259e-05
4.12684e-05
4.12606e-05
4.12691e-05
4.12702e-05
4.126e-05
4.12659e-05
4.12582e-05
4.12567e-05
4.12615e-05
2.55625e-05
2.47482e-05
2.63054e-05
2.9618e-05
3.37923e-05
3.80076e-05
4.17573e-05
4.48717e-05
4.7342e-05
4.9189e-05
5.03839e-05
5.08587e-05
5.05816e-05
4.96163e-05
4.80348e-05
4.57484e-05
4.25524e-05
3.83331e-05
3.34275e-05
2.87828e-05
3.1833e-05
3.69544e-05
4.16346e-05
4.52e-05
4.75416e-05
4.8937e-05
4.97615e-05
5.02711e-05
5.06169e-05
5.09054e-05
5.09709e-05
5.03615e-05
4.86891e-05
4.5793e-05
4.16239e-05
3.63548e-05
3.10294e-05
2.71772e-05
2.60023e-05
2.7816e-05
4.14274e-05
4.41224e-05
4.58074e-05
4.67774e-05
4.72859e-05
4.75223e-05
4.765e-05
4.7759e-05
4.79954e-05
4.90849e-05
5.04901e-05
5.0143e-05
4.66821e-05
4.06522e-05
3.39639e-05
2.90153e-05
2.73778e-05
2.91468e-05
3.31253e-05
3.76191e-05
4.34157e-05
4.45044e-05
4.50366e-05
4.52447e-05
4.53336e-05
4.54188e-05
4.55638e-05
4.57731e-05
4.62484e-05
5.0638e-05
5.68972e-05
5.8377e-05
5.24732e-05
4.2761e-05
3.47768e-05
3.12046e-05
3.18985e-05
3.50293e-05
3.86116e-05
4.1497e-05
4.38076e-05
4.41249e-05
4.42491e-05
4.43091e-05
4.43896e-05
4.44887e-05
4.46526e-05
4.48775e-05
4.59434e-05
5.6958e-05
7.05957e-05
7.44486e-05
6.70079e-05
5.45509e-05
4.38764e-05
3.87995e-05
3.83313e-05
3.99518e-05
4.17933e-05
4.30974e-05
4.35619e-05
4.36438e-05
4.36746e-05
4.36996e-05
4.37646e-05
4.38596e-05
4.40231e-05
4.42478e-05
4.55015e-05
5.9392e-05
7.44998e-05
7.67418e-05
6.57408e-05
5.16478e-05
4.27593e-05
3.9904e-05
4.03648e-05
4.16891e-05
4.27446e-05
4.33207e-05
4.3277e-05
4.33002e-05
4.33269e-05
4.33696e-05
4.34424e-05
4.35352e-05
4.36813e-05
4.38859e-05
4.50601e-05
5.47278e-05
6.59138e-05
7.09644e-05
6.41586e-05
5.14868e-05
4.36625e-05
4.14258e-05
4.1746e-05
4.24965e-05
4.29884e-05
4.32041e-05
4.30967e-05
4.31081e-05
4.31276e-05
4.31598e-05
4.32152e-05
4.32928e-05
4.34117e-05
4.35893e-05
4.39291e-05
4.31215e-05
4.23288e-05
4.15686e-05
4.16533e-05
4.08777e-05
4.04542e-05
4.11571e-05
4.20948e-05
4.27026e-05
4.29772e-05
4.30696e-05
4.29747e-05
4.29871e-05
4.30091e-05
4.30427e-05
4.30903e-05
4.31575e-05
4.32496e-05
4.34068e-05
4.36697e-05
4.21351e-05
3.97262e-05
3.53887e-05
3.41471e-05
3.62506e-05
3.89929e-05
4.10628e-05
4.22224e-05
4.27304e-05
4.2909e-05
4.29592e-05
4.29074e-05
4.29181e-05
4.29349e-05
4.29605e-05
4.29961e-05
4.30497e-05
4.31208e-05
4.32561e-05
4.34666e-05
4.18758e-05
4.01049e-05
3.53392e-05
3.36714e-05
3.6191e-05
3.93429e-05
4.13907e-05
4.23721e-05
4.27484e-05
4.28664e-05
4.2897e-05
4.28647e-05
4.2875e-05
4.28904e-05
4.29125e-05
4.29407e-05
4.29831e-05
4.30361e-05
4.31456e-05
4.3302e-05
4.16837e-05
4.03424e-05
3.53466e-05
3.42928e-05
3.71282e-05
4.00415e-05
4.17387e-05
4.24874e-05
4.27559e-05
4.28355e-05
4.2856e-05
4.2839e-05
4.28474e-05
4.28593e-05
4.28763e-05
4.28977e-05
4.293e-05
4.29718e-05
4.30574e-05
4.31971e-05
4.14885e-05
4.14953e-05
3.70783e-05
3.6044e-05
3.84148e-05
4.0723e-05
4.20145e-05
4.25677e-05
4.27615e-05
4.28176e-05
4.28322e-05
4.2822e-05
4.28292e-05
4.28392e-05
4.28529e-05
4.28697e-05
4.28935e-05
4.29252e-05
4.29861e-05
4.30999e-05
4.16812e-05
4.07783e-05
3.56334e-05
3.55313e-05
3.84216e-05
4.07958e-05
4.20482e-05
4.25695e-05
4.27497e-05
4.28019e-05
4.28158e-05
4.28099e-05
4.28157e-05
4.28236e-05
4.28342e-05
4.28472e-05
4.28649e-05
4.2889e-05
4.29315e-05
4.30715e-05
4.23993e-05
4.31737e-05
3.8057e-05
3.70667e-05
3.91487e-05
4.10684e-05
4.21283e-05
4.25831e-05
4.2744e-05
4.27916e-05
4.28045e-05
4.28012e-05
4.28057e-05
4.2812e-05
4.28205e-05
4.28308e-05
4.28438e-05
4.2862e-05
4.28909e-05
4.3014e-05
4.17614e-05
4.01068e-05
3.5708e-05
3.64083e-05
3.91152e-05
4.11286e-05
4.21655e-05
4.25949e-05
4.27431e-05
4.27859e-05
4.27969e-05
4.27938e-05
4.27971e-05
4.28021e-05
4.28088e-05
4.28169e-05
4.28266e-05
4.28375e-05
4.28525e-05
4.28579e-05
3.8645e-05
3.16369e-05
3.03089e-05
3.41459e-05
3.84245e-05
4.10305e-05
4.21938e-05
4.26184e-05
4.27492e-05
4.27832e-05
4.27909e-05
4.2788e-05
4.279e-05
4.27938e-05
4.27992e-05
4.28057e-05
4.28137e-05
4.28222e-05
4.28326e-05
4.28376e-05
4.2497e-05
4.2315e-05
4.24402e-05
4.26257e-05
4.2716e-05
4.27526e-05
4.27802e-05
4.27916e-05
4.27922e-05
4.27896e-05
4.27879e-05
4.27819e-05
4.27833e-05
4.27862e-05
4.27906e-05
4.27959e-05
4.28024e-05
4.28091e-05
4.28171e-05
4.28246e-05
4.28194e-05
4.28132e-05
4.28137e-05
4.28195e-05
4.28188e-05
4.28125e-05
4.28037e-05
4.27954e-05
4.27889e-05
4.27845e-05
4.27822e-05
4.27764e-05
4.27773e-05
4.27795e-05
4.2783e-05
4.27874e-05
4.27927e-05
4.27981e-05
4.28039e-05
4.28077e-05
4.2811e-05
4.2808e-05
4.28081e-05
4.28107e-05
4.28087e-05
4.28037e-05
4.27967e-05
4.27896e-05
4.27837e-05
4.27795e-05
4.27771e-05
4.27711e-05
4.27716e-05
4.27733e-05
4.27761e-05
4.27797e-05
4.27843e-05
4.27889e-05
4.27941e-05
4.2798e-05
4.28008e-05
4.27993e-05
4.27984e-05
4.2799e-05
4.27974e-05
4.27938e-05
4.27883e-05
4.27827e-05
4.27778e-05
4.27742e-05
4.27719e-05
4.27662e-05
4.27664e-05
4.27676e-05
4.27698e-05
4.27728e-05
4.27766e-05
4.27805e-05
4.27847e-05
4.27876e-05
4.27903e-05
4.27899e-05
4.27903e-05
4.27912e-05
4.27899e-05
4.27867e-05
4.27821e-05
4.27772e-05
4.27729e-05
4.27695e-05
4.27673e-05
4.27615e-05
4.27615e-05
4.27623e-05
4.27641e-05
4.27666e-05
4.27699e-05
4.27733e-05
4.2777e-05
4.27799e-05
4.27825e-05
4.27826e-05
4.27827e-05
4.27829e-05
4.27817e-05
4.27792e-05
4.27755e-05
4.27715e-05
4.27677e-05
4.27647e-05
4.27626e-05
4.27572e-05
4.27569e-05
4.27575e-05
4.27589e-05
4.27609e-05
4.27637e-05
4.27666e-05
4.27699e-05
4.27723e-05
4.27747e-05
4.27752e-05
4.2776e-05
4.27764e-05
4.27755e-05
4.27733e-05
4.27701e-05
4.27666e-05
4.27632e-05
4.27604e-05
4.27584e-05
4.27532e-05
4.27527e-05
4.27531e-05
4.27542e-05
4.27559e-05
4.27582e-05
4.27608e-05
4.27637e-05
4.2766e-05
4.27683e-05
4.2769e-05
4.27696e-05
4.27698e-05
4.27691e-05
4.27673e-05
4.27647e-05
4.27617e-05
4.27588e-05
4.27562e-05
4.27544e-05
4.27494e-05
4.27489e-05
4.2749e-05
4.27499e-05
4.27513e-05
4.27533e-05
4.27555e-05
4.2758e-05
4.27601e-05
4.27622e-05
4.27631e-05
4.2764e-05
4.27643e-05
4.27638e-05
4.27623e-05
4.276e-05
4.27574e-05
4.27547e-05
4.27524e-05
4.27506e-05
4.2746e-05
4.27454e-05
4.27454e-05
4.2746e-05
4.27472e-05
4.27489e-05
4.27508e-05
4.27531e-05
4.2755e-05
4.2757e-05
4.27579e-05
4.27588e-05
4.27591e-05
4.27587e-05
4.27574e-05
4.27555e-05
4.27532e-05
4.27509e-05
4.27488e-05
4.27472e-05
4.27428e-05
4.27422e-05
4.2742e-05
4.27425e-05
4.27434e-05
4.27449e-05
4.27466e-05
4.27486e-05
4.27504e-05
4.27522e-05
4.27532e-05
4.27542e-05
4.27545e-05
4.27543e-05
4.27532e-05
4.27516e-05
4.27496e-05
4.27475e-05
4.27456e-05
4.2744e-05
4.27399e-05
4.27393e-05
4.2739e-05
4.27393e-05
4.27401e-05
4.27414e-05
4.27428e-05
4.27447e-05
4.27463e-05
4.2748e-05
4.27491e-05
4.275e-05
4.27503e-05
4.27502e-05
4.27493e-05
4.27479e-05
4.27462e-05
4.27443e-05
4.27426e-05
4.27411e-05
4.27373e-05
4.27366e-05
4.27363e-05
4.27365e-05
4.27371e-05
4.27382e-05
4.27395e-05
4.27412e-05
4.27427e-05
4.27443e-05
4.27453e-05
4.27462e-05
4.27467e-05
4.27466e-05
4.27459e-05
4.27446e-05
4.27431e-05
4.27415e-05
4.27398e-05
4.27384e-05
4.2735e-05
4.27343e-05
4.27339e-05
4.2734e-05
4.27345e-05
4.27354e-05
4.27366e-05
4.27381e-05
4.27395e-05
4.2741e-05
4.2742e-05
4.27429e-05
4.27433e-05
4.27433e-05
4.27428e-05
4.27417e-05
4.27404e-05
4.27389e-05
4.27374e-05
4.27361e-05
4.27329e-05
4.27322e-05
4.27318e-05
4.27318e-05
4.27322e-05
4.2733e-05
4.2734e-05
4.27354e-05
4.27366e-05
4.27381e-05
4.27391e-05
4.274e-05
4.27404e-05
4.27405e-05
4.274e-05
4.27391e-05
4.27379e-05
4.27366e-05
4.27352e-05
4.2734e-05
4.27311e-05
4.27304e-05
4.27299e-05
4.27298e-05
4.27302e-05
4.27308e-05
4.27317e-05
4.2733e-05
4.27342e-05
4.27356e-05
4.27365e-05
4.27374e-05
4.27379e-05
4.2738e-05
4.27377e-05
4.27369e-05
4.27358e-05
4.27346e-05
4.27333e-05
4.27321e-05
4.27294e-05
4.27287e-05
4.27283e-05
4.27281e-05
4.27284e-05
4.27289e-05
4.27297e-05
4.27309e-05
4.2732e-05
4.27333e-05
4.27343e-05
4.27352e-05
4.27357e-05
4.27358e-05
4.27356e-05
4.27349e-05
4.27339e-05
4.27328e-05
4.27315e-05
4.27305e-05
4.27281e-05
4.27274e-05
4.27269e-05
4.27267e-05
4.27269e-05
4.27274e-05
4.27281e-05
4.27292e-05
4.27302e-05
4.27315e-05
4.27324e-05
4.27333e-05
4.27338e-05
4.2734e-05
4.27338e-05
4.27332e-05
4.27323e-05
4.27313e-05
4.27301e-05
4.27291e-05
4.27269e-05
4.27262e-05
4.27256e-05
4.27254e-05
4.27256e-05
4.2726e-05
4.27266e-05
4.27277e-05
4.27287e-05
4.27299e-05
4.27308e-05
4.27317e-05
4.27322e-05
4.27324e-05
4.27323e-05
4.27317e-05
4.27309e-05
4.27299e-05
4.27288e-05
4.27279e-05
4.2726e-05
4.27253e-05
4.27247e-05
4.27244e-05
4.27246e-05
4.27249e-05
4.27255e-05
4.27265e-05
4.27274e-05
4.27287e-05
4.27295e-05
4.27304e-05
4.27309e-05
4.27312e-05
4.27311e-05
4.27306e-05
4.27299e-05
4.27289e-05
4.27279e-05
4.2727e-05
4.27251e-05
4.27245e-05
4.27239e-05
4.27236e-05
4.27237e-05
4.2724e-05
4.27245e-05
4.27255e-05
4.27264e-05
4.27276e-05
4.27284e-05
4.27293e-05
4.27298e-05
4.27301e-05
4.27301e-05
4.27296e-05
4.27289e-05
4.2728e-05
4.2727e-05
4.27261e-05
4.27247e-05
4.2724e-05
4.27234e-05
4.2723e-05
4.27231e-05
4.27234e-05
4.27238e-05
4.27249e-05
4.27257e-05
4.27269e-05
4.27277e-05
4.27286e-05
4.27291e-05
4.27295e-05
4.27295e-05
4.2729e-05
4.27284e-05
4.27275e-05
4.27265e-05
4.27257e-05
4.27243e-05
4.27237e-05
4.2723e-05
4.27226e-05
4.27228e-05
4.2723e-05
4.27234e-05
4.27244e-05
4.27252e-05
4.27264e-05
4.27271e-05
4.27281e-05
4.27286e-05
4.2729e-05
4.2729e-05
4.27285e-05
4.2728e-05
4.2727e-05
4.27261e-05
4.27253e-05
4.27553e-05
4.2758e-05
4.27534e-05
4.27531e-05
4.27583e-05
4.27541e-05
4.27542e-05
4.27623e-05
4.2757e-05
4.27655e-05
4.27591e-05
4.2768e-05
4.27607e-05
4.27687e-05
4.27696e-05
4.276e-05
4.27653e-05
4.27581e-05
4.27568e-05
4.2761e-05
2.58442e-05
2.5608e-05
2.77723e-05
3.15505e-05
3.5985e-05
4.02864e-05
4.40229e-05
4.7081e-05
4.94792e-05
5.12482e-05
5.23562e-05
5.27233e-05
5.23073e-05
5.11689e-05
4.93668e-05
4.67827e-05
4.3196e-05
3.85566e-05
3.33628e-05
2.87275e-05
3.39303e-05
3.92009e-05
4.38118e-05
4.7223e-05
4.94219e-05
5.07234e-05
5.14985e-05
5.19863e-05
5.23403e-05
5.27032e-05
5.29011e-05
5.23951e-05
5.06974e-05
4.7588e-05
4.30135e-05
3.72832e-05
3.16981e-05
2.79483e-05
2.71919e-05
2.95366e-05
4.33436e-05
4.59437e-05
4.75465e-05
4.8456e-05
4.89241e-05
4.91416e-05
4.92682e-05
4.93888e-05
4.96868e-05
5.10943e-05
5.29851e-05
5.28715e-05
4.91516e-05
4.25388e-05
3.53386e-05
3.02387e-05
2.87988e-05
3.08927e-05
3.50916e-05
3.96239e-05
4.51603e-05
4.6182e-05
4.66683e-05
4.68516e-05
4.69365e-05
4.70267e-05
4.71831e-05
4.74071e-05
4.79325e-05
5.32244e-05
6.07865e-05
6.27039e-05
5.60672e-05
4.53076e-05
3.67002e-05
3.29778e-05
3.37528e-05
3.69542e-05
4.0517e-05
4.33287e-05
4.54517e-05
4.57342e-05
4.58446e-05
4.59021e-05
4.5987e-05
4.60913e-05
4.6265e-05
4.6502e-05
4.76885e-05
6.08807e-05
7.71478e-05
8.18393e-05
7.34486e-05
5.92285e-05
4.70547e-05
4.11887e-05
4.03947e-05
4.18596e-05
4.35898e-05
4.4805e-05
4.51627e-05
4.52328e-05
4.52618e-05
4.52897e-05
4.53601e-05
4.54603e-05
4.56321e-05
4.58664e-05
4.72541e-05
6.38741e-05
8.17402e-05
8.42372e-05
7.14743e-05
5.54372e-05
4.53954e-05
4.20322e-05
4.22736e-05
4.34694e-05
4.44344e-05
4.49522e-05
4.48643e-05
4.48862e-05
4.49151e-05
4.49607e-05
4.50371e-05
4.51335e-05
4.52857e-05
4.54982e-05
4.67992e-05
5.84856e-05
7.18816e-05
7.77644e-05
6.94718e-05
5.48919e-05
4.60306e-05
4.33785e-05
4.35213e-05
4.41756e-05
4.46129e-05
4.48017e-05
4.46806e-05
4.46931e-05
4.47148e-05
4.47497e-05
4.48082e-05
4.4889e-05
4.50124e-05
4.51964e-05
4.55542e-05
4.47996e-05
4.41823e-05
4.36522e-05
4.40157e-05
4.30571e-05
4.23831e-05
4.29278e-05
4.37715e-05
4.43256e-05
4.45739e-05
4.46561e-05
4.45592e-05
4.45729e-05
4.45967e-05
4.46323e-05
4.46819e-05
4.47517e-05
4.48468e-05
4.50098e-05
4.52839e-05
4.38048e-05
4.15423e-05
3.70928e-05
3.59443e-05
3.8105e-05
4.07898e-05
4.27716e-05
4.38647e-05
4.4336e-05
4.44989e-05
4.45442e-05
4.4492e-05
4.45037e-05
4.4522e-05
4.45493e-05
4.45865e-05
4.46424e-05
4.47157e-05
4.48559e-05
4.50742e-05
4.35756e-05
4.20688e-05
3.71077e-05
3.54227e-05
3.80063e-05
4.11147e-05
4.30805e-05
4.40023e-05
4.43482e-05
4.44543e-05
4.44815e-05
4.44495e-05
4.44607e-05
4.44772e-05
4.45006e-05
4.453e-05
4.45742e-05
4.46287e-05
4.47422e-05
4.49034e-05
4.3411e-05
4.23843e-05
3.71459e-05
3.60763e-05
3.89466e-05
4.1796e-05
4.34117e-05
4.41079e-05
4.43519e-05
4.44224e-05
4.44407e-05
4.44237e-05
4.44328e-05
4.44457e-05
4.44637e-05
4.44862e-05
4.45198e-05
4.45629e-05
4.46515e-05
4.47955e-05
4.32224e-05
4.37278e-05
3.90378e-05
3.79043e-05
4.02401e-05
4.24597e-05
4.36724e-05
4.41806e-05
4.43546e-05
4.44038e-05
4.44167e-05
4.44067e-05
4.44145e-05
4.44252e-05
4.44397e-05
4.44573e-05
4.44822e-05
4.45149e-05
4.45778e-05
4.46952e-05
4.34539e-05
4.29385e-05
3.75013e-05
3.73605e-05
4.02271e-05
4.25185e-05
4.36988e-05
4.41795e-05
4.43421e-05
4.43881e-05
4.44004e-05
4.43944e-05
4.44007e-05
4.44092e-05
4.44205e-05
4.44342e-05
4.44526e-05
4.44776e-05
4.45215e-05
4.46671e-05
4.42587e-05
4.55741e-05
4.00723e-05
3.89438e-05
4.09574e-05
4.27853e-05
4.37748e-05
4.41914e-05
4.43359e-05
4.43777e-05
4.4389e-05
4.43855e-05
4.43904e-05
4.43972e-05
4.44063e-05
4.44171e-05
4.44308e-05
4.44497e-05
4.44794e-05
4.46079e-05
4.35685e-05
4.22219e-05
3.75732e-05
3.82489e-05
4.09082e-05
4.2836e-05
4.38071e-05
4.42011e-05
4.43343e-05
4.43717e-05
4.43813e-05
4.43779e-05
4.43816e-05
4.43869e-05
4.43941e-05
4.44027e-05
4.44129e-05
4.44242e-05
4.44398e-05
4.44443e-05
4.00709e-05
3.28438e-05
3.17198e-05
3.58268e-05
4.01687e-05
4.27201e-05
4.38268e-05
4.42204e-05
4.43386e-05
4.43684e-05
4.43751e-05
4.43718e-05
4.43742e-05
4.43783e-05
4.43841e-05
4.43911e-05
4.43994e-05
4.44082e-05
4.44189e-05
4.4424e-05
4.40773e-05
4.39025e-05
4.4037e-05
4.42221e-05
4.43071e-05
4.4342e-05
4.43672e-05
4.43765e-05
4.4376e-05
4.43732e-05
4.43715e-05
4.43656e-05
4.43672e-05
4.43705e-05
4.43751e-05
4.43808e-05
4.43876e-05
4.43946e-05
4.44028e-05
4.44105e-05
4.44051e-05
4.43987e-05
4.43993e-05
4.44049e-05
4.44036e-05
4.43968e-05
4.43874e-05
4.43789e-05
4.43722e-05
4.43678e-05
4.43657e-05
4.43599e-05
4.4361e-05
4.43634e-05
4.43672e-05
4.43719e-05
4.43775e-05
4.43831e-05
4.4389e-05
4.43929e-05
4.43962e-05
4.43927e-05
4.4393e-05
4.43954e-05
4.43931e-05
4.43877e-05
4.43803e-05
4.4373e-05
4.4367e-05
4.43627e-05
4.43604e-05
4.43544e-05
4.43551e-05
4.43569e-05
4.436e-05
4.43639e-05
4.43687e-05
4.43735e-05
4.43788e-05
4.43827e-05
4.43856e-05
4.43838e-05
4.43828e-05
4.43834e-05
4.43815e-05
4.43775e-05
4.43717e-05
4.43659e-05
4.4361e-05
4.43573e-05
4.43551e-05
4.43494e-05
4.43496e-05
4.4351e-05
4.43534e-05
4.43567e-05
4.43607e-05
4.43647e-05
4.4369e-05
4.4372e-05
4.43747e-05
4.4374e-05
4.43745e-05
4.43753e-05
4.43738e-05
4.43703e-05
4.43654e-05
4.43604e-05
4.43559e-05
4.43525e-05
4.43503e-05
4.43445e-05
4.43445e-05
4.43455e-05
4.43475e-05
4.43502e-05
4.43536e-05
4.43572e-05
4.43611e-05
4.4364e-05
4.43666e-05
4.43665e-05
4.43666e-05
4.43667e-05
4.43653e-05
4.43626e-05
4.43586e-05
4.43545e-05
4.43506e-05
4.43476e-05
4.43455e-05
4.434e-05
4.43399e-05
4.43405e-05
4.43421e-05
4.43443e-05
4.43471e-05
4.43502e-05
4.43536e-05
4.4356e-05
4.43584e-05
4.43589e-05
4.43596e-05
4.436e-05
4.43589e-05
4.43565e-05
4.43531e-05
4.43494e-05
4.4346e-05
4.43432e-05
4.43412e-05
4.43358e-05
4.43355e-05
4.43359e-05
4.43371e-05
4.4339e-05
4.43415e-05
4.43441e-05
4.43471e-05
4.43495e-05
4.43518e-05
4.43524e-05
4.4353e-05
4.43532e-05
4.43522e-05
4.43503e-05
4.43475e-05
4.43444e-05
4.43414e-05
4.43389e-05
4.4337e-05
4.4332e-05
4.43315e-05
4.43317e-05
4.43327e-05
4.43342e-05
4.43363e-05
4.43386e-05
4.43412e-05
4.43434e-05
4.43455e-05
4.43463e-05
4.43472e-05
4.43475e-05
4.43468e-05
4.43451e-05
4.43427e-05
4.434e-05
4.43373e-05
4.43349e-05
4.43331e-05
4.43284e-05
4.43278e-05
4.43279e-05
4.43286e-05
4.43299e-05
4.43317e-05
4.43337e-05
4.43361e-05
4.43381e-05
4.434e-05
4.4341e-05
4.43418e-05
4.4342e-05
4.43415e-05
4.43401e-05
4.43381e-05
4.43357e-05
4.43334e-05
4.43312e-05
4.43296e-05
4.43251e-05
4.43245e-05
4.43245e-05
4.4325e-05
4.4326e-05
4.43276e-05
4.43293e-05
4.43314e-05
4.43332e-05
4.43351e-05
4.43361e-05
4.4337e-05
4.43373e-05
4.4337e-05
4.43358e-05
4.43341e-05
4.4332e-05
4.43298e-05
4.43279e-05
4.43263e-05
4.43221e-05
4.43215e-05
4.43213e-05
4.43217e-05
4.43225e-05
4.43239e-05
4.43254e-05
4.43273e-05
4.4329e-05
4.43307e-05
4.43318e-05
4.43327e-05
4.4333e-05
4.43327e-05
4.43318e-05
4.43303e-05
4.43285e-05
4.43266e-05
4.43248e-05
4.43233e-05
4.43194e-05
4.43188e-05
4.43185e-05
4.43188e-05
4.43195e-05
4.43206e-05
4.4322e-05
4.43237e-05
4.43252e-05
4.43268e-05
4.43279e-05
4.43288e-05
4.43292e-05
4.4329e-05
4.43282e-05
4.43269e-05
4.43253e-05
4.43236e-05
4.4322e-05
4.43206e-05
4.4317e-05
4.43163e-05
4.4316e-05
4.43161e-05
4.43167e-05
4.43177e-05
4.43189e-05
4.43205e-05
4.43219e-05
4.43234e-05
4.43244e-05
4.43254e-05
4.43257e-05
4.43257e-05
4.43251e-05
4.43239e-05
4.43225e-05
4.4321e-05
4.43194e-05
4.43181e-05
4.43149e-05
4.43142e-05
4.43138e-05
4.43138e-05
4.43143e-05
4.43151e-05
4.43162e-05
4.43176e-05
4.43189e-05
4.43204e-05
4.43214e-05
4.43223e-05
4.43227e-05
4.43228e-05
4.43222e-05
4.43213e-05
4.432e-05
4.43186e-05
4.43172e-05
4.43159e-05
4.4313e-05
4.43123e-05
4.43119e-05
4.43118e-05
4.43122e-05
4.43129e-05
4.43139e-05
4.43152e-05
4.43164e-05
4.43178e-05
4.43187e-05
4.43197e-05
4.43201e-05
4.43202e-05
4.43198e-05
4.43189e-05
4.43178e-05
4.43165e-05
4.43152e-05
4.4314e-05
4.43113e-05
4.43106e-05
4.43101e-05
4.431e-05
4.43103e-05
4.43109e-05
4.43118e-05
4.4313e-05
4.43141e-05
4.43155e-05
4.43164e-05
4.43174e-05
4.43178e-05
4.43179e-05
4.43176e-05
4.43169e-05
4.43159e-05
4.43147e-05
4.43134e-05
4.43123e-05
4.43099e-05
4.43092e-05
4.43087e-05
4.43085e-05
4.43088e-05
4.43093e-05
4.43101e-05
4.43112e-05
4.43123e-05
4.43136e-05
4.43145e-05
4.43154e-05
4.43159e-05
4.43161e-05
4.43158e-05
4.43151e-05
4.43143e-05
4.43131e-05
4.43119e-05
4.43109e-05
4.43086e-05
4.4308e-05
4.43074e-05
4.43072e-05
4.43074e-05
4.43079e-05
4.43086e-05
4.43097e-05
4.43106e-05
4.43119e-05
4.43128e-05
4.43137e-05
4.43142e-05
4.43144e-05
4.43142e-05
4.43136e-05
4.43128e-05
4.43117e-05
4.43106e-05
4.43096e-05
4.43077e-05
4.4307e-05
4.43065e-05
4.43062e-05
4.43064e-05
4.43068e-05
4.43074e-05
4.43085e-05
4.43094e-05
4.43106e-05
4.43115e-05
4.43124e-05
4.43129e-05
4.43132e-05
4.4313e-05
4.43125e-05
4.43117e-05
4.43107e-05
4.43096e-05
4.43087e-05
4.43069e-05
4.43062e-05
4.43056e-05
4.43053e-05
4.43055e-05
4.43058e-05
4.43063e-05
4.43074e-05
4.43083e-05
4.43095e-05
4.43103e-05
4.43113e-05
4.43117e-05
4.4312e-05
4.4312e-05
4.43114e-05
4.43107e-05
4.43098e-05
4.43087e-05
4.43078e-05
4.43064e-05
4.43057e-05
4.43051e-05
4.43047e-05
4.43049e-05
4.43052e-05
4.43057e-05
4.43067e-05
4.43076e-05
4.43088e-05
4.43096e-05
4.43106e-05
4.4311e-05
4.43114e-05
4.43113e-05
4.43108e-05
4.43102e-05
4.43092e-05
4.43082e-05
4.43074e-05
4.4306e-05
4.43053e-05
4.43047e-05
4.43043e-05
4.43045e-05
4.43047e-05
4.43052e-05
4.43063e-05
4.43071e-05
4.43083e-05
4.4309e-05
4.431e-05
4.43104e-05
4.43109e-05
4.43108e-05
4.43103e-05
4.43097e-05
4.43088e-05
4.43078e-05
4.4307e-05
4.43368e-05
4.43391e-05
4.43348e-05
4.43348e-05
4.43394e-05
4.43357e-05
4.4336e-05
4.43436e-05
4.43387e-05
4.43467e-05
4.43407e-05
4.43492e-05
4.43424e-05
4.43499e-05
4.43504e-05
4.43414e-05
4.43464e-05
4.43396e-05
4.43385e-05
4.43421e-05
2.62868e-05
2.66888e-05
2.94715e-05
3.36869e-05
3.83398e-05
4.26936e-05
4.63959e-05
4.93852e-05
5.17038e-05
5.33914e-05
5.44117e-05
5.4669e-05
5.41077e-05
5.27826e-05
5.07362e-05
4.7818e-05
4.38021e-05
3.87303e-05
3.32866e-05
2.87429e-05
3.62105e-05
4.15718e-05
4.60765e-05
4.93228e-05
5.13813e-05
5.25937e-05
5.33228e-05
5.37911e-05
5.41611e-05
5.46268e-05
5.50054e-05
5.46477e-05
5.29399e-05
4.95904e-05
4.45515e-05
3.83215e-05
3.24909e-05
2.88965e-05
2.86059e-05
3.14846e-05
4.5359e-05
4.78554e-05
4.93724e-05
5.02198e-05
5.0648e-05
5.08481e-05
5.09757e-05
5.111e-05
5.14841e-05
5.32836e-05
5.57672e-05
5.5939e-05
5.19229e-05
4.46518e-05
3.68979e-05
3.16493e-05
3.04192e-05
3.28259e-05
3.72089e-05
4.17451e-05
4.69918e-05
4.79437e-05
4.83842e-05
4.85443e-05
4.86271e-05
4.87232e-05
4.88921e-05
4.91319e-05
4.97123e-05
5.60756e-05
6.51611e-05
6.75662e-05
6.00709e-05
4.81418e-05
3.88362e-05
3.49282e-05
3.57585e-05
3.90045e-05
4.25276e-05
4.52532e-05
4.71795e-05
4.74284e-05
4.75265e-05
4.75828e-05
4.76726e-05
4.77825e-05
4.79667e-05
4.82165e-05
4.95356e-05
6.53013e-05
8.46309e-05
9.02736e-05
8.07654e-05
6.44591e-05
5.05424e-05
4.376e-05
4.25853e-05
4.38692e-05
4.54755e-05
4.65968e-05
4.68487e-05
4.69083e-05
4.69364e-05
4.69676e-05
4.70438e-05
4.71494e-05
4.73298e-05
4.75744e-05
4.91084e-05
6.89572e-05
9.00216e-05
9.27457e-05
7.78981e-05
5.96185e-05
4.82501e-05
4.42991e-05
4.42865e-05
4.53387e-05
4.62081e-05
4.66674e-05
4.65385e-05
4.65596e-05
4.65909e-05
4.66396e-05
4.67198e-05
4.682e-05
4.69784e-05
4.71994e-05
4.86395e-05
6.27393e-05
7.87483e-05
8.55661e-05
7.54583e-05
5.86629e-05
4.86026e-05
4.54633e-05
4.53981e-05
4.59443e-05
4.63237e-05
4.64856e-05
4.63519e-05
4.63656e-05
4.63897e-05
4.64273e-05
4.6489e-05
4.65732e-05
4.67014e-05
4.68922e-05
4.72694e-05
4.65917e-05
4.61958e-05
4.59584e-05
4.66365e-05
4.54391e-05
4.44586e-05
4.48111e-05
4.55442e-05
4.6038e-05
4.6258e-05
4.63298e-05
4.62311e-05
4.62462e-05
4.6272e-05
4.63096e-05
4.63614e-05
4.64339e-05
4.65321e-05
4.67011e-05
4.69874e-05
4.5594e-05
4.35216e-05
3.89554e-05
3.79027e-05
4.01017e-05
4.27029e-05
4.45792e-05
4.55976e-05
4.60294e-05
4.61759e-05
4.62163e-05
4.61638e-05
4.61768e-05
4.61966e-05
4.62256e-05
4.62647e-05
4.63229e-05
4.63984e-05
4.65439e-05
4.67704e-05
4.54018e-05
4.4218e-05
3.9034e-05
3.73166e-05
3.99455e-05
4.29891e-05
4.48613e-05
4.57195e-05
4.60346e-05
4.6129e-05
4.61532e-05
4.61216e-05
4.61338e-05
4.61516e-05
4.61762e-05
4.6207e-05
4.62529e-05
4.63091e-05
4.64267e-05
4.65929e-05
4.52709e-05
4.46203e-05
3.91034e-05
3.79976e-05
4.08801e-05
4.36464e-05
4.51724e-05
4.58145e-05
4.60342e-05
4.60962e-05
4.61125e-05
4.60957e-05
4.61056e-05
4.61195e-05
4.61387e-05
4.61623e-05
4.61973e-05
4.62418e-05
4.63333e-05
4.64819e-05
4.50912e-05
4.61802e-05
4.11649e-05
3.99019e-05
4.21759e-05
4.42893e-05
4.54171e-05
4.58795e-05
4.60342e-05
4.60769e-05
4.60884e-05
4.60786e-05
4.60871e-05
4.60986e-05
4.6114e-05
4.61325e-05
4.61585e-05
4.61923e-05
4.62571e-05
4.63784e-05
4.53667e-05
4.53082e-05
3.95298e-05
3.93227e-05
4.21407e-05
4.43334e-05
4.54363e-05
4.58757e-05
4.60211e-05
4.60612e-05
4.60722e-05
4.60662e-05
4.6073e-05
4.60821e-05
4.60942e-05
4.61086e-05
4.61279e-05
4.61538e-05
4.6199e-05
4.63505e-05
4.62695e-05
4.82093e-05
4.22557e-05
4.09547e-05
4.28734e-05
4.4594e-05
4.5508e-05
4.58859e-05
4.60143e-05
4.60507e-05
4.60607e-05
4.60571e-05
4.60625e-05
4.60698e-05
4.60794e-05
4.60909e-05
4.61052e-05
4.61248e-05
4.61554e-05
4.62894e-05
4.55217e-05
4.45394e-05
3.95947e-05
4.02192e-05
4.28064e-05
4.46346e-05
4.55353e-05
4.58936e-05
4.6012e-05
4.60446e-05
4.60529e-05
4.60493e-05
4.60533e-05
4.60591e-05
4.60668e-05
4.60759e-05
4.60866e-05
4.60984e-05
4.61146e-05
4.6118e-05
4.15913e-05
3.41458e-05
3.32473e-05
3.76249e-05
4.20134e-05
4.44991e-05
4.55461e-05
4.59088e-05
4.60147e-05
4.60406e-05
4.60464e-05
4.60429e-05
4.60456e-05
4.60501e-05
4.60563e-05
4.60637e-05
4.60725e-05
4.60817e-05
4.60926e-05
4.60977e-05
4.57466e-05
4.55797e-05
4.57226e-05
4.59064e-05
4.59858e-05
4.60187e-05
4.60413e-05
4.60485e-05
4.60471e-05
4.6044e-05
4.60423e-05
4.60365e-05
4.60384e-05
4.6042e-05
4.6047e-05
4.6053e-05
4.60602e-05
4.60674e-05
4.60759e-05
4.60837e-05
4.60781e-05
4.60716e-05
4.60721e-05
4.60777e-05
4.60757e-05
4.60682e-05
4.60584e-05
4.60495e-05
4.60427e-05
4.60384e-05
4.60364e-05
4.60306e-05
4.60319e-05
4.60346e-05
4.60387e-05
4.60437e-05
4.60496e-05
4.60554e-05
4.60615e-05
4.60654e-05
4.60686e-05
4.60647e-05
4.60651e-05
4.60675e-05
4.60648e-05
4.60589e-05
4.6051e-05
4.60435e-05
4.60374e-05
4.60332e-05
4.6031e-05
4.60249e-05
4.60258e-05
4.60279e-05
4.60312e-05
4.60353e-05
4.60403e-05
4.60454e-05
4.60509e-05
4.60548e-05
4.60576e-05
4.60555e-05
4.60545e-05
4.60549e-05
4.60528e-05
4.60484e-05
4.60424e-05
4.60363e-05
4.60313e-05
4.60276e-05
4.60255e-05
4.60197e-05
4.60201e-05
4.60217e-05
4.60243e-05
4.60278e-05
4.6032e-05
4.60362e-05
4.60406e-05
4.60436e-05
4.60463e-05
4.60454e-05
4.60459e-05
4.60466e-05
4.60448e-05
4.60411e-05
4.60359e-05
4.60307e-05
4.60261e-05
4.60226e-05
4.60205e-05
4.60147e-05
4.60148e-05
4.6016e-05
4.60181e-05
4.6021e-05
4.60246e-05
4.60283e-05
4.60323e-05
4.60352e-05
4.60378e-05
4.60376e-05
4.60376e-05
4.60376e-05
4.60361e-05
4.60331e-05
4.6029e-05
4.60246e-05
4.60207e-05
4.60176e-05
4.60156e-05
4.601e-05
4.601e-05
4.60108e-05
4.60125e-05
4.60148e-05
4.60179e-05
4.6021e-05
4.60245e-05
4.6027e-05
4.60294e-05
4.60297e-05
4.60304e-05
4.60307e-05
4.60295e-05
4.60269e-05
4.60233e-05
4.60195e-05
4.6016e-05
4.60131e-05
4.60111e-05
4.60057e-05
4.60054e-05
4.6006e-05
4.60073e-05
4.60093e-05
4.60119e-05
4.60147e-05
4.60178e-05
4.60202e-05
4.60225e-05
4.6023e-05
4.60236e-05
4.60236e-05
4.60226e-05
4.60205e-05
4.60176e-05
4.60143e-05
4.60113e-05
4.60087e-05
4.60068e-05
4.60017e-05
4.60013e-05
4.60016e-05
4.60026e-05
4.60043e-05
4.60065e-05
4.60089e-05
4.60117e-05
4.60138e-05
4.60159e-05
4.60167e-05
4.60176e-05
4.60178e-05
4.6017e-05
4.60152e-05
4.60126e-05
4.60098e-05
4.6007e-05
4.60046e-05
4.60028e-05
4.5998e-05
4.59975e-05
4.59976e-05
4.59984e-05
4.59998e-05
4.60017e-05
4.60038e-05
4.60063e-05
4.60083e-05
4.60103e-05
4.60112e-05
4.6012e-05
4.60122e-05
4.60115e-05
4.601e-05
4.60079e-05
4.60054e-05
4.6003e-05
4.60008e-05
4.59991e-05
4.59946e-05
4.5994e-05
4.5994e-05
4.59946e-05
4.59958e-05
4.59974e-05
4.59992e-05
4.60014e-05
4.60032e-05
4.60051e-05
4.60061e-05
4.6007e-05
4.60073e-05
4.60068e-05
4.60056e-05
4.60037e-05
4.60015e-05
4.59993e-05
4.59973e-05
4.59957e-05
4.59915e-05
4.59909e-05
4.59908e-05
4.59912e-05
4.59921e-05
4.59936e-05
4.59952e-05
4.59972e-05
4.59988e-05
4.60006e-05
4.60016e-05
4.60025e-05
4.60028e-05
4.60025e-05
4.60014e-05
4.59998e-05
4.59979e-05
4.5996e-05
4.59941e-05
4.59926e-05
4.59887e-05
4.59881e-05
4.59879e-05
4.59882e-05
4.59889e-05
4.59901e-05
4.59916e-05
4.59934e-05
4.59949e-05
4.59966e-05
4.59976e-05
4.59985e-05
4.59988e-05
4.59986e-05
4.59978e-05
4.59964e-05
4.59947e-05
4.59929e-05
4.59912e-05
4.59898e-05
4.59862e-05
4.59856e-05
4.59853e-05
4.59854e-05
4.59861e-05
4.59871e-05
4.59884e-05
4.599e-05
4.59914e-05
4.5993e-05
4.5994e-05
4.59949e-05
4.59953e-05
4.59952e-05
4.59945e-05
4.59933e-05
4.59918e-05
4.59902e-05
4.59886e-05
4.59873e-05
4.5984e-05
4.59833e-05
4.5983e-05
4.5983e-05
4.59835e-05
4.59844e-05
4.59856e-05
4.5987e-05
4.59884e-05
4.59899e-05
4.59908e-05
4.59918e-05
4.59922e-05
4.59921e-05
4.59916e-05
4.59905e-05
4.59892e-05
4.59877e-05
4.59863e-05
4.5985e-05
4.5982e-05
4.59813e-05
4.59809e-05
4.59809e-05
4.59814e-05
4.59821e-05
4.59831e-05
4.59845e-05
4.59857e-05
4.59872e-05
4.59881e-05
4.5989e-05
4.59894e-05
4.59895e-05
4.5989e-05
4.59881e-05
4.59869e-05
4.59856e-05
4.59842e-05
4.59831e-05
4.59803e-05
4.59796e-05
4.59792e-05
4.59791e-05
4.59794e-05
4.59801e-05
4.5981e-05
4.59823e-05
4.59834e-05
4.59848e-05
4.59857e-05
4.59866e-05
4.5987e-05
4.59872e-05
4.59868e-05
4.5986e-05
4.59849e-05
4.59837e-05
4.59824e-05
4.59813e-05
4.59788e-05
4.59782e-05
4.59777e-05
4.59775e-05
4.59778e-05
4.59784e-05
4.59792e-05
4.59804e-05
4.59815e-05
4.59828e-05
4.59837e-05
4.59846e-05
4.5985e-05
4.59852e-05
4.59849e-05
4.59842e-05
4.59833e-05
4.59821e-05
4.59809e-05
4.59798e-05
4.59775e-05
4.59769e-05
4.59763e-05
4.59761e-05
4.59764e-05
4.59769e-05
4.59776e-05
4.59788e-05
4.59798e-05
4.59811e-05
4.59819e-05
4.59829e-05
4.59833e-05
4.59835e-05
4.59833e-05
4.59826e-05
4.59818e-05
4.59807e-05
4.59795e-05
4.59785e-05
4.59766e-05
4.59759e-05
4.59754e-05
4.59751e-05
4.59753e-05
4.59757e-05
4.59764e-05
4.59775e-05
4.59784e-05
4.59797e-05
4.59806e-05
4.59815e-05
4.59819e-05
4.59822e-05
4.59821e-05
4.59815e-05
4.59807e-05
4.59796e-05
4.59785e-05
4.59776e-05
4.59757e-05
4.5975e-05
4.59744e-05
4.59741e-05
4.59743e-05
4.59747e-05
4.59753e-05
4.59764e-05
4.59773e-05
4.59786e-05
4.59794e-05
4.59803e-05
4.59808e-05
4.59811e-05
4.5981e-05
4.59804e-05
4.59797e-05
4.59786e-05
4.59776e-05
4.59767e-05
4.59752e-05
4.59745e-05
4.59739e-05
4.59736e-05
4.59738e-05
4.59741e-05
4.59746e-05
4.59757e-05
4.59765e-05
4.59778e-05
4.59786e-05
4.59796e-05
4.598e-05
4.59804e-05
4.59803e-05
4.59797e-05
4.59791e-05
4.59781e-05
4.5977e-05
4.59762e-05
4.59748e-05
4.59741e-05
4.59735e-05
4.59731e-05
4.59733e-05
4.59736e-05
4.59741e-05
4.59752e-05
4.5976e-05
4.59773e-05
4.5978e-05
4.59791e-05
4.59794e-05
4.59799e-05
4.59798e-05
4.59792e-05
4.59786e-05
4.59776e-05
4.59766e-05
4.59758e-05
4.60055e-05
4.60072e-05
4.60035e-05
4.60037e-05
4.60077e-05
4.60044e-05
4.60049e-05
4.6012e-05
4.60075e-05
4.60151e-05
4.60095e-05
4.60176e-05
4.60111e-05
4.60181e-05
4.60184e-05
4.60101e-05
4.60145e-05
4.60083e-05
4.60074e-05
4.60103e-05
2.69205e-05
2.80136e-05
3.14139e-05
3.60288e-05
4.08558e-05
4.52297e-05
4.88782e-05
5.17871e-05
5.40195e-05
5.56239e-05
5.65572e-05
5.67041e-05
5.59909e-05
5.44633e-05
5.21443e-05
4.88505e-05
4.43662e-05
3.88576e-05
3.32164e-05
2.88571e-05
3.86705e-05
4.40633e-05
4.84299e-05
5.15046e-05
5.3426e-05
5.45539e-05
5.52402e-05
5.56914e-05
5.60877e-05
5.66928e-05
5.73135e-05
5.71603e-05
5.54603e-05
5.18369e-05
4.62655e-05
3.94936e-05
3.34358e-05
3.00516e-05
3.02665e-05
3.36676e-05
4.74765e-05
4.98617e-05
5.12898e-05
5.20738e-05
5.24634e-05
5.26478e-05
5.27785e-05
5.29289e-05
5.33969e-05
5.56785e-05
5.88815e-05
5.93974e-05
5.50395e-05
4.70237e-05
3.86686e-05
3.32703e-05
3.22549e-05
3.49522e-05
3.94782e-05
4.39841e-05
4.89146e-05
4.97946e-05
5.01899e-05
5.03286e-05
5.04113e-05
5.05144e-05
5.06969e-05
5.09536e-05
5.15945e-05
5.92251e-05
7.00801e-05
7.30183e-05
6.45177e-05
5.12892e-05
4.11984e-05
3.7064e-05
3.79202e-05
4.11832e-05
4.46465e-05
4.72743e-05
4.89965e-05
4.92134e-05
4.9301e-05
4.93571e-05
4.94524e-05
4.95682e-05
4.97637e-05
5.00272e-05
5.14915e-05
7.02861e-05
9.31586e-05
9.98641e-05
8.90361e-05
7.02671e-05
5.43461e-05
4.65148e-05
4.49046e-05
4.59832e-05
4.74543e-05
4.84773e-05
4.8626e-05
4.86764e-05
4.87044e-05
4.87394e-05
4.88217e-05
4.89328e-05
4.91225e-05
4.93779e-05
5.1071e-05
7.47235e-05
9.94704e-05
0.000102361
8.50513e-05
6.42026e-05
5.13247e-05
4.67054e-05
4.64055e-05
4.73006e-05
4.80706e-05
4.84721e-05
4.83057e-05
4.83264e-05
4.83604e-05
4.84123e-05
4.84965e-05
4.86006e-05
4.87658e-05
4.89956e-05
5.05878e-05
6.7563e-05
8.66471e-05
9.44945e-05
8.21737e-05
6.28161e-05
5.13812e-05
4.7681e-05
4.73785e-05
4.78067e-05
4.81261e-05
4.82615e-05
4.81166e-05
4.81316e-05
4.81582e-05
4.81987e-05
4.82638e-05
4.83515e-05
4.84847e-05
4.86826e-05
4.9081e-05
4.85099e-05
4.83905e-05
4.85178e-05
4.95411e-05
4.8034e-05
4.66835e-05
4.68091e-05
4.74162e-05
4.78445e-05
4.80351e-05
4.80964e-05
4.79963e-05
4.8013e-05
4.80408e-05
4.80805e-05
4.81346e-05
4.82099e-05
4.83114e-05
4.84868e-05
4.87861e-05
4.75159e-05
4.56851e-05
4.09955e-05
4.00369e-05
4.22486e-05
4.47363e-05
4.64892e-05
4.74255e-05
4.78158e-05
4.79459e-05
4.79816e-05
4.7929e-05
4.79433e-05
4.79648e-05
4.79957e-05
4.80366e-05
4.80972e-05
4.81751e-05
4.83261e-05
4.85613e-05
4.73686e-05
4.65768e-05
4.11359e-05
3.93659e-05
4.2016e-05
4.49711e-05
4.67379e-05
4.75294e-05
4.78134e-05
4.78965e-05
4.79181e-05
4.7887e-05
4.79004e-05
4.79194e-05
4.79455e-05
4.79777e-05
4.80255e-05
4.80834e-05
4.82053e-05
4.83767e-05
4.72788e-05
4.70755e-05
4.12364e-05
4.00687e-05
4.29361e-05
4.55981e-05
4.70262e-05
4.7613e-05
4.78089e-05
4.78629e-05
4.78775e-05
4.7861e-05
4.78719e-05
4.78868e-05
4.79071e-05
4.7932e-05
4.79685e-05
4.80143e-05
4.81091e-05
4.82624e-05
4.71105e-05
4.88812e-05
4.34775e-05
4.20482e-05
4.42293e-05
4.62175e-05
4.72541e-05
4.76702e-05
4.78063e-05
4.78429e-05
4.78533e-05
4.78439e-05
4.78531e-05
4.78655e-05
4.78818e-05
4.79012e-05
4.79283e-05
4.79632e-05
4.80301e-05
4.81554e-05
4.74361e-05
4.79143e-05
4.17353e-05
4.1429e-05
4.41694e-05
4.62463e-05
4.72662e-05
4.7664e-05
4.77925e-05
4.78273e-05
4.78371e-05
4.78313e-05
4.78387e-05
4.78485e-05
4.78614e-05
4.78766e-05
4.78967e-05
4.79236e-05
4.79701e-05
4.81277e-05
4.845e-05
5.11091e-05
4.46252e-05
4.31101e-05
4.49036e-05
4.65002e-05
4.73337e-05
4.76725e-05
4.77854e-05
4.78168e-05
4.78257e-05
4.7822e-05
4.78278e-05
4.78357e-05
4.7846e-05
4.78581e-05
4.7873e-05
4.78934e-05
4.79248e-05
4.80647e-05
4.76385e-05
4.70849e-05
4.17886e-05
4.23296e-05
4.48166e-05
4.65299e-05
4.7356e-05
4.76782e-05
4.77825e-05
4.78104e-05
4.78177e-05
4.7814e-05
4.78184e-05
4.78247e-05
4.78329e-05
4.78425e-05
4.78538e-05
4.7866e-05
4.78828e-05
4.78849e-05
4.32157e-05
3.55539e-05
3.49031e-05
3.9549e-05
4.39647e-05
4.63732e-05
4.73575e-05
4.76894e-05
4.77836e-05
4.78059e-05
4.7811e-05
4.78073e-05
4.78104e-05
4.78153e-05
4.78219e-05
4.78298e-05
4.7839e-05
4.78485e-05
4.78597e-05
4.78648e-05
4.75114e-05
4.73528e-05
4.75031e-05
4.76845e-05
4.77581e-05
4.77886e-05
4.78084e-05
4.78135e-05
4.78112e-05
4.78079e-05
4.78064e-05
4.78006e-05
4.78029e-05
4.78068e-05
4.78122e-05
4.78186e-05
4.78261e-05
4.78336e-05
4.78424e-05
4.78502e-05
4.78445e-05
4.78378e-05
4.78382e-05
4.78437e-05
4.7841e-05
4.78328e-05
4.78225e-05
4.78133e-05
4.78064e-05
4.78021e-05
4.78003e-05
4.77945e-05
4.77961e-05
4.77991e-05
4.78035e-05
4.78088e-05
4.7815e-05
4.78211e-05
4.78273e-05
4.78312e-05
4.78343e-05
4.783e-05
4.78305e-05
4.78328e-05
4.78297e-05
4.78233e-05
4.7815e-05
4.78072e-05
4.7801e-05
4.77968e-05
4.77947e-05
4.77887e-05
4.77897e-05
4.77921e-05
4.77956e-05
4.78e-05
4.78053e-05
4.78106e-05
4.78162e-05
4.78201e-05
4.78229e-05
4.78205e-05
4.78194e-05
4.78197e-05
4.78173e-05
4.78126e-05
4.78062e-05
4.77999e-05
4.77948e-05
4.77911e-05
4.77891e-05
4.77832e-05
4.77838e-05
4.77856e-05
4.77885e-05
4.77921e-05
4.77966e-05
4.78009e-05
4.78055e-05
4.78085e-05
4.78111e-05
4.78101e-05
4.78105e-05
4.78111e-05
4.78091e-05
4.7805e-05
4.77996e-05
4.77941e-05
4.77894e-05
4.7786e-05
4.77839e-05
4.7778e-05
4.77783e-05
4.77797e-05
4.7782e-05
4.77851e-05
4.77889e-05
4.77927e-05
4.77968e-05
4.77998e-05
4.78024e-05
4.78019e-05
4.78019e-05
4.78018e-05
4.78001e-05
4.77968e-05
4.77925e-05
4.7788e-05
4.77839e-05
4.77808e-05
4.77789e-05
4.77732e-05
4.77732e-05
4.77742e-05
4.77761e-05
4.77786e-05
4.77818e-05
4.77851e-05
4.77887e-05
4.77912e-05
4.77936e-05
4.77938e-05
4.77945e-05
4.77946e-05
4.77932e-05
4.77904e-05
4.77866e-05
4.77827e-05
4.77791e-05
4.77762e-05
4.77742e-05
4.77687e-05
4.77685e-05
4.77692e-05
4.77707e-05
4.77728e-05
4.77756e-05
4.77785e-05
4.77817e-05
4.77841e-05
4.77864e-05
4.77869e-05
4.77874e-05
4.77873e-05
4.77862e-05
4.77839e-05
4.77808e-05
4.77774e-05
4.77742e-05
4.77716e-05
4.77697e-05
4.77645e-05
4.77642e-05
4.77647e-05
4.77658e-05
4.77676e-05
4.77699e-05
4.77725e-05
4.77753e-05
4.77774e-05
4.77796e-05
4.77803e-05
4.77812e-05
4.77812e-05
4.77803e-05
4.77784e-05
4.77757e-05
4.77727e-05
4.77698e-05
4.77674e-05
4.77656e-05
4.77607e-05
4.77603e-05
4.77605e-05
4.77614e-05
4.77629e-05
4.77649e-05
4.77671e-05
4.77697e-05
4.77717e-05
4.77737e-05
4.77745e-05
4.77753e-05
4.77754e-05
4.77747e-05
4.77731e-05
4.77708e-05
4.77682e-05
4.77657e-05
4.77635e-05
4.77618e-05
4.77572e-05
4.77567e-05
4.77568e-05
4.77574e-05
4.77587e-05
4.77604e-05
4.77623e-05
4.77646e-05
4.77664e-05
4.77684e-05
4.77693e-05
4.77702e-05
4.77704e-05
4.77698e-05
4.77685e-05
4.77665e-05
4.77642e-05
4.77619e-05
4.77599e-05
4.77583e-05
4.7754e-05
4.77534e-05
4.77534e-05
4.77539e-05
4.77549e-05
4.77564e-05
4.77581e-05
4.77601e-05
4.77619e-05
4.77637e-05
4.77646e-05
4.77655e-05
4.77657e-05
4.77653e-05
4.77642e-05
4.77625e-05
4.77605e-05
4.77585e-05
4.77566e-05
4.77551e-05
4.77511e-05
4.77505e-05
4.77503e-05
4.77507e-05
4.77515e-05
4.77528e-05
4.77543e-05
4.77562e-05
4.77578e-05
4.77595e-05
4.77604e-05
4.77614e-05
4.77616e-05
4.77614e-05
4.77604e-05
4.77589e-05
4.77572e-05
4.77553e-05
4.77536e-05
4.77522e-05
4.77485e-05
4.77479e-05
4.77477e-05
4.77479e-05
4.77486e-05
4.77497e-05
4.7751e-05
4.77527e-05
4.77542e-05
4.77558e-05
4.77567e-05
4.77577e-05
4.7758e-05
4.77578e-05
4.7757e-05
4.77557e-05
4.77542e-05
4.77525e-05
4.77509e-05
4.77496e-05
4.77462e-05
4.77455e-05
4.77452e-05
4.77454e-05
4.77459e-05
4.77469e-05
4.77481e-05
4.77496e-05
4.7751e-05
4.77525e-05
4.77535e-05
4.77544e-05
4.77547e-05
4.77547e-05
4.7754e-05
4.77529e-05
4.77515e-05
4.775e-05
4.77485e-05
4.77473e-05
4.77442e-05
4.77435e-05
4.77432e-05
4.77432e-05
4.77437e-05
4.77445e-05
4.77455e-05
4.7747e-05
4.77482e-05
4.77497e-05
4.77506e-05
4.77516e-05
4.77519e-05
4.77519e-05
4.77514e-05
4.77504e-05
4.77492e-05
4.77478e-05
4.77464e-05
4.77452e-05
4.77424e-05
4.77417e-05
4.77413e-05
4.77412e-05
4.77416e-05
4.77423e-05
4.77433e-05
4.77446e-05
4.77458e-05
4.77472e-05
4.77481e-05
4.77491e-05
4.77494e-05
4.77495e-05
4.77491e-05
4.77482e-05
4.77471e-05
4.77458e-05
4.77445e-05
4.77434e-05
4.77409e-05
4.77402e-05
4.77397e-05
4.77396e-05
4.774e-05
4.77406e-05
4.77414e-05
4.77427e-05
4.77438e-05
4.77452e-05
4.7746e-05
4.7747e-05
4.77474e-05
4.77475e-05
4.77472e-05
4.77464e-05
4.77454e-05
4.77442e-05
4.7743e-05
4.77419e-05
4.77395e-05
4.77389e-05
4.77384e-05
4.77382e-05
4.77385e-05
4.7739e-05
4.77398e-05
4.7741e-05
4.7742e-05
4.77434e-05
4.77442e-05
4.77452e-05
4.77455e-05
4.77458e-05
4.77455e-05
4.77448e-05
4.77439e-05
4.77427e-05
4.77415e-05
4.77405e-05
4.77385e-05
4.77379e-05
4.77373e-05
4.77371e-05
4.77374e-05
4.77378e-05
4.77385e-05
4.77397e-05
4.77406e-05
4.7742e-05
4.77428e-05
4.77438e-05
4.77442e-05
4.77444e-05
4.77442e-05
4.77436e-05
4.77428e-05
4.77416e-05
4.77405e-05
4.77396e-05
4.77376e-05
4.7737e-05
4.77364e-05
4.77361e-05
4.77364e-05
4.77368e-05
4.77374e-05
4.77386e-05
4.77394e-05
4.77408e-05
4.77415e-05
4.77425e-05
4.77429e-05
4.77432e-05
4.77431e-05
4.77424e-05
4.77417e-05
4.77406e-05
4.77395e-05
4.77386e-05
4.77371e-05
4.77365e-05
4.77358e-05
4.77355e-05
4.77358e-05
4.77361e-05
4.77366e-05
4.77378e-05
4.77387e-05
4.774e-05
4.77407e-05
4.77418e-05
4.77422e-05
4.77425e-05
4.77424e-05
4.77418e-05
4.77411e-05
4.77401e-05
4.7739e-05
4.77381e-05
4.77367e-05
4.7736e-05
4.77354e-05
4.77351e-05
4.77353e-05
4.77356e-05
4.77361e-05
4.77373e-05
4.77381e-05
4.77394e-05
4.77401e-05
4.77412e-05
4.77416e-05
4.7742e-05
4.77419e-05
4.77412e-05
4.77406e-05
4.77396e-05
4.77385e-05
4.77377e-05
4.77672e-05
4.77685e-05
4.77652e-05
4.77656e-05
4.77691e-05
4.77663e-05
4.7767e-05
4.77735e-05
4.77694e-05
4.77765e-05
4.77714e-05
4.7779e-05
4.77731e-05
4.77795e-05
4.77796e-05
4.77718e-05
4.77758e-05
4.777e-05
4.77693e-05
4.77716e-05
2.77777e-05
2.9605e-05
3.36095e-05
3.85786e-05
4.35343e-05
4.78971e-05
5.14736e-05
5.42915e-05
5.64324e-05
5.79535e-05
5.88029e-05
5.884e-05
5.79676e-05
5.62185e-05
5.35931e-05
4.98762e-05
4.48844e-05
3.89449e-05
3.31738e-05
2.91023e-05
4.13077e-05
4.66744e-05
5.08767e-05
5.37759e-05
5.55639e-05
5.66115e-05
5.72583e-05
5.76954e-05
5.81313e-05
5.89227e-05
5.98629e-05
5.99833e-05
5.83119e-05
5.43714e-05
4.81876e-05
4.08285e-05
3.45658e-05
3.14459e-05
3.21952e-05
3.60918e-05
4.97016e-05
5.19686e-05
5.3305e-05
5.40249e-05
5.43777e-05
5.45486e-05
5.4685e-05
5.48539e-05
5.5438e-05
5.83108e-05
6.23823e-05
6.33072e-05
5.85513e-05
4.96921e-05
4.06813e-05
3.51273e-05
3.43217e-05
3.72782e-05
4.19018e-05
4.63445e-05
5.0935e-05
5.17416e-05
5.20931e-05
5.22127e-05
5.22973e-05
5.24083e-05
5.26057e-05
5.28805e-05
5.35877e-05
6.27119e-05
7.56088e-05
7.91166e-05
6.944e-05
5.47647e-05
4.37993e-05
3.93934e-05
4.02433e-05
4.3495e-05
4.68787e-05
4.93974e-05
5.09103e-05
5.10972e-05
5.11759e-05
5.12331e-05
5.13342e-05
5.14564e-05
5.16642e-05
5.19422e-05
5.35649e-05
7.59099e-05
0.000102853
0.000110727
9.83334e-05
7.66841e-05
5.84686e-05
4.94538e-05
4.73556e-05
4.8206e-05
4.95316e-05
5.04535e-05
5.05024e-05
5.0545e-05
5.05737e-05
5.0613e-05
5.07017e-05
5.08186e-05
5.10181e-05
5.12848e-05
5.31504e-05
8.12661e-05
0.000110222
0.000113176
9.29644e-05
6.91947e-05
5.46187e-05
4.92522e-05
4.8634e-05
4.93605e-05
5.00288e-05
5.03737e-05
5.01736e-05
5.01943e-05
5.02313e-05
5.02866e-05
5.0375e-05
5.04833e-05
5.06557e-05
5.08948e-05
5.26524e-05
7.3043e-05
9.5729e-05
0.000104683
8.96705e-05
6.73657e-05
5.43689e-05
5.00332e-05
4.94664e-05
4.97685e-05
5.00272e-05
5.01371e-05
4.99823e-05
4.9999e-05
5.00282e-05
5.00718e-05
5.01405e-05
5.02318e-05
5.03701e-05
5.05756e-05
5.0997e-05
5.05692e-05
5.07931e-05
5.13672e-05
5.27578e-05
5.08528e-05
4.90619e-05
4.89254e-05
4.93927e-05
4.97516e-05
4.99125e-05
4.99638e-05
4.98626e-05
4.98811e-05
4.9911e-05
4.9953e-05
5.00095e-05
5.00878e-05
5.01927e-05
5.03748e-05
5.06883e-05
4.95869e-05
4.80591e-05
4.32363e-05
4.23641e-05
4.45548e-05
4.68957e-05
4.85071e-05
4.93551e-05
4.97027e-05
4.98164e-05
4.98477e-05
4.97954e-05
4.98111e-05
4.98344e-05
4.98672e-05
4.99101e-05
4.99733e-05
5.00536e-05
5.02103e-05
5.04549e-05
4.94938e-05
4.91753e-05
4.34351e-05
4.15861e-05
4.42272e-05
4.70674e-05
4.87172e-05
4.94391e-05
4.96921e-05
4.97646e-05
4.97838e-05
4.97536e-05
4.97681e-05
4.97885e-05
4.98161e-05
4.98498e-05
4.98996e-05
4.99593e-05
5.00857e-05
5.02627e-05
4.94538e-05
4.97809e-05
4.35665e-05
4.23041e-05
4.51237e-05
4.76584e-05
4.89806e-05
4.95108e-05
4.96836e-05
4.97301e-05
4.97434e-05
4.97275e-05
4.97393e-05
4.97554e-05
4.9777e-05
4.98031e-05
4.98412e-05
4.98885e-05
4.99865e-05
5.01447e-05
4.93e-05
5.18661e-05
4.59978e-05
4.43576e-05
4.64094e-05
4.82516e-05
4.91911e-05
4.95605e-05
4.96785e-05
4.97097e-05
4.97192e-05
4.97103e-05
4.97202e-05
4.97336e-05
4.97508e-05
4.97713e-05
4.97995e-05
4.98357e-05
4.99047e-05
5.00341e-05
4.96826e-05
5.07901e-05
4.41381e-05
4.36928e-05
4.63222e-05
4.82646e-05
4.91963e-05
4.9552e-05
4.96644e-05
4.96941e-05
4.97031e-05
4.96975e-05
4.97055e-05
4.97161e-05
4.97298e-05
4.97459e-05
4.97669e-05
4.97947e-05
4.98426e-05
5.00066e-05
5.08226e-05
5.43105e-05
4.72022e-05
4.54238e-05
4.70569e-05
4.85115e-05
4.92595e-05
4.95589e-05
4.96569e-05
4.96836e-05
4.96916e-05
4.9688e-05
4.96943e-05
4.97029e-05
4.97138e-05
4.97266e-05
4.97422e-05
4.97633e-05
4.97956e-05
4.99415e-05
4.99406e-05
4.98896e-05
4.41746e-05
4.45929e-05
4.69473e-05
4.85296e-05
4.92767e-05
4.95628e-05
4.96534e-05
4.9677e-05
4.96835e-05
4.96797e-05
4.96845e-05
4.96914e-05
4.97001e-05
4.97103e-05
4.97221e-05
4.97349e-05
4.97522e-05
4.97529e-05
4.49561e-05
3.70819e-05
3.67017e-05
4.161e-05
4.60308e-05
4.83499e-05
4.92687e-05
4.957e-05
4.96531e-05
4.96721e-05
4.96765e-05
4.96727e-05
4.96762e-05
4.96816e-05
4.96887e-05
4.9697e-05
4.97067e-05
4.97165e-05
4.97281e-05
4.9733e-05
4.93803e-05
4.923e-05
4.93865e-05
4.95641e-05
4.96317e-05
4.96595e-05
4.96764e-05
4.96795e-05
4.96763e-05
4.96728e-05
4.96715e-05
4.96658e-05
4.96684e-05
4.96727e-05
4.96785e-05
4.96853e-05
4.96932e-05
4.9701e-05
4.97101e-05
4.9718e-05
4.9712e-05
4.97051e-05
4.97055e-05
4.97107e-05
4.97074e-05
4.96984e-05
4.96875e-05
4.96781e-05
4.96711e-05
4.96669e-05
4.96652e-05
4.96595e-05
4.96613e-05
4.96647e-05
4.96694e-05
4.9675e-05
4.96815e-05
4.96878e-05
4.96943e-05
4.96981e-05
4.97012e-05
4.96963e-05
4.9697e-05
4.96991e-05
4.96955e-05
4.96886e-05
4.96799e-05
4.96718e-05
4.96655e-05
4.96614e-05
4.96595e-05
4.96534e-05
4.96547e-05
4.96573e-05
4.96611e-05
4.96658e-05
4.96714e-05
4.96769e-05
4.96827e-05
4.96866e-05
4.96893e-05
4.96865e-05
4.96854e-05
4.96855e-05
4.96828e-05
4.96777e-05
4.9671e-05
4.96645e-05
4.96592e-05
4.96556e-05
4.96537e-05
4.96478e-05
4.96485e-05
4.96505e-05
4.96536e-05
4.96576e-05
4.96622e-05
4.96668e-05
4.96715e-05
4.96745e-05
4.96771e-05
4.96757e-05
4.96762e-05
4.96767e-05
4.96743e-05
4.96699e-05
4.96642e-05
4.96585e-05
4.96538e-05
4.96503e-05
4.96483e-05
4.96424e-05
4.96428e-05
4.96443e-05
4.96469e-05
4.96502e-05
4.96541e-05
4.96582e-05
4.96624e-05
4.96653e-05
4.96679e-05
4.96673e-05
4.96673e-05
4.9667e-05
4.9665e-05
4.96615e-05
4.9657e-05
4.96522e-05
4.96481e-05
4.9645e-05
4.96431e-05
4.96374e-05
4.96375e-05
4.96386e-05
4.96407e-05
4.96434e-05
4.96467e-05
4.96502e-05
4.96539e-05
4.96564e-05
4.96588e-05
4.96589e-05
4.96596e-05
4.96596e-05
4.9658e-05
4.96549e-05
4.96509e-05
4.96468e-05
4.96431e-05
4.96402e-05
4.96383e-05
4.96327e-05
4.96326e-05
4.96334e-05
4.96351e-05
4.96374e-05
4.96403e-05
4.96433e-05
4.96466e-05
4.9649e-05
4.96513e-05
4.96517e-05
4.96522e-05
4.9652e-05
4.96507e-05
4.96482e-05
4.96449e-05
4.96414e-05
4.96382e-05
4.96355e-05
4.96337e-05
4.96284e-05
4.96281e-05
4.96287e-05
4.963e-05
4.96319e-05
4.96344e-05
4.9637e-05
4.96399e-05
4.96421e-05
4.96443e-05
4.96449e-05
4.96457e-05
4.96457e-05
4.96446e-05
4.96425e-05
4.96397e-05
4.96366e-05
4.96336e-05
4.96312e-05
4.96294e-05
4.96244e-05
4.9624e-05
4.96244e-05
4.96254e-05
4.9627e-05
4.96291e-05
4.96314e-05
4.96341e-05
4.96361e-05
4.96381e-05
4.96389e-05
4.96397e-05
4.96397e-05
4.96388e-05
4.96371e-05
4.96346e-05
4.9632e-05
4.96294e-05
4.96271e-05
4.96254e-05
4.96207e-05
4.96203e-05
4.96205e-05
4.96212e-05
4.96226e-05
4.96244e-05
4.96264e-05
4.96288e-05
4.96306e-05
4.96326e-05
4.96335e-05
4.96343e-05
4.96344e-05
4.96338e-05
4.96323e-05
4.96302e-05
4.96278e-05
4.96255e-05
4.96234e-05
4.96218e-05
4.96174e-05
4.96169e-05
4.96169e-05
4.96175e-05
4.96186e-05
4.96202e-05
4.9622e-05
4.96241e-05
4.96259e-05
4.96277e-05
4.96286e-05
4.96295e-05
4.96296e-05
4.96291e-05
4.96279e-05
4.96261e-05
4.9624e-05
4.96219e-05
4.962e-05
4.96185e-05
4.96144e-05
4.96139e-05
4.96138e-05
4.96142e-05
4.96151e-05
4.96165e-05
4.96181e-05
4.962e-05
4.96216e-05
4.96233e-05
4.96243e-05
4.96252e-05
4.96254e-05
4.9625e-05
4.9624e-05
4.96224e-05
4.96206e-05
4.96187e-05
4.96169e-05
4.96155e-05
4.96118e-05
4.96112e-05
4.9611e-05
4.96113e-05
4.9612e-05
4.96132e-05
4.96146e-05
4.96163e-05
4.96178e-05
4.96195e-05
4.96204e-05
4.96213e-05
4.96216e-05
4.96214e-05
4.96205e-05
4.96191e-05
4.96175e-05
4.96158e-05
4.96142e-05
4.96128e-05
4.96094e-05
4.96087e-05
4.96085e-05
4.96086e-05
4.96093e-05
4.96103e-05
4.96115e-05
4.96131e-05
4.96145e-05
4.96161e-05
4.9617e-05
4.96179e-05
4.96182e-05
4.96181e-05
4.96174e-05
4.96162e-05
4.96148e-05
4.96132e-05
4.96117e-05
4.96104e-05
4.96073e-05
4.96066e-05
4.96063e-05
4.96064e-05
4.96069e-05
4.96078e-05
4.96089e-05
4.96104e-05
4.96116e-05
4.96131e-05
4.96141e-05
4.9615e-05
4.96153e-05
4.96153e-05
4.96147e-05
4.96136e-05
4.96124e-05
4.96109e-05
4.96095e-05
4.96083e-05
4.96054e-05
4.96047e-05
4.96043e-05
4.96043e-05
4.96048e-05
4.96055e-05
4.96065e-05
4.96079e-05
4.96091e-05
4.96106e-05
4.96115e-05
4.96124e-05
4.96127e-05
4.96128e-05
4.96123e-05
4.96114e-05
4.96102e-05
4.96089e-05
4.96076e-05
4.96064e-05
4.96038e-05
4.96032e-05
4.96027e-05
4.96027e-05
4.9603e-05
4.96037e-05
4.96046e-05
4.96059e-05
4.9607e-05
4.96084e-05
4.96093e-05
4.96103e-05
4.96106e-05
4.96107e-05
4.96103e-05
4.96095e-05
4.96085e-05
4.96072e-05
4.96059e-05
4.96049e-05
4.96024e-05
4.96018e-05
4.96013e-05
4.96012e-05
4.96015e-05
4.96021e-05
4.96029e-05
4.96041e-05
4.96052e-05
4.96066e-05
4.96074e-05
4.96084e-05
4.96087e-05
4.96089e-05
4.96086e-05
4.96078e-05
4.96069e-05
4.96057e-05
4.96045e-05
4.96035e-05
4.96014e-05
4.96008e-05
4.96002e-05
4.96e-05
4.96003e-05
4.96008e-05
4.96015e-05
4.96028e-05
4.96037e-05
4.96051e-05
4.96059e-05
4.96069e-05
4.96073e-05
4.96075e-05
4.96073e-05
4.96066e-05
4.96057e-05
4.96046e-05
4.96034e-05
4.96024e-05
4.96005e-05
4.95998e-05
4.95992e-05
4.9599e-05
4.95993e-05
4.95997e-05
4.96004e-05
4.96016e-05
4.96025e-05
4.96039e-05
4.96046e-05
4.96057e-05
4.9606e-05
4.96063e-05
4.96061e-05
4.96054e-05
4.96046e-05
4.96035e-05
4.96024e-05
4.96015e-05
4.95999e-05
4.95993e-05
4.95987e-05
4.95984e-05
4.95987e-05
4.9599e-05
4.95996e-05
4.96008e-05
4.96017e-05
4.96031e-05
4.96038e-05
4.96049e-05
4.96052e-05
4.96056e-05
4.96054e-05
4.96047e-05
4.9604e-05
4.96029e-05
4.96018e-05
4.9601e-05
4.95995e-05
4.95989e-05
4.95982e-05
4.95979e-05
4.95982e-05
4.95985e-05
4.95991e-05
4.96003e-05
4.96011e-05
4.96025e-05
4.96032e-05
4.96043e-05
4.96046e-05
4.9605e-05
4.96048e-05
4.96042e-05
4.96035e-05
4.96024e-05
4.96013e-05
4.96005e-05
4.96299e-05
4.96307e-05
4.96279e-05
4.96285e-05
4.96315e-05
4.9629e-05
4.96299e-05
4.96359e-05
4.96322e-05
4.96389e-05
4.96343e-05
4.96414e-05
4.96359e-05
4.96419e-05
4.96416e-05
4.96345e-05
4.9638e-05
4.96327e-05
4.96322e-05
4.96338e-05
2.88915e-05
3.14834e-05
3.60648e-05
4.1336e-05
4.63748e-05
5.06975e-05
5.41851e-05
5.69024e-05
5.89479e-05
6.03879e-05
6.11592e-05
6.10887e-05
6.0049e-05
5.80554e-05
5.50835e-05
5.08904e-05
4.53541e-05
3.90028e-05
3.31856e-05
2.95142e-05
4.41173e-05
4.94038e-05
5.3421e-05
5.61437e-05
5.78023e-05
5.87735e-05
5.93845e-05
5.98106e-05
6.03033e-05
6.1341e-05
6.26973e-05
6.31762e-05
6.15563e-05
5.72443e-05
5.03547e-05
4.23604e-05
3.59183e-05
3.31131e-05
3.44113e-05
3.87591e-05
5.20386e-05
5.41814e-05
5.5424e-05
5.60797e-05
5.6398e-05
5.65578e-05
5.67026e-05
5.68929e-05
5.76204e-05
6.1216e-05
6.63305e-05
6.77361e-05
6.25139e-05
5.26989e-05
4.29703e-05
3.72464e-05
3.66341e-05
3.98081e-05
4.44811e-05
4.8829e-05
5.30586e-05
5.37913e-05
5.4101e-05
5.42042e-05
5.42923e-05
5.44123e-05
5.46258e-05
5.49203e-05
5.56998e-05
6.65774e-05
8.18138e-05
8.59143e-05
7.48662e-05
5.85849e-05
4.66497e-05
4.19234e-05
4.27324e-05
4.59438e-05
4.92286e-05
5.16276e-05
5.29278e-05
5.30869e-05
5.31586e-05
5.32178e-05
5.33256e-05
5.34546e-05
5.36755e-05
5.39689e-05
5.57637e-05
8.22516e-05
0.000113839
0.000122971
0.000108717
8.37219e-05
6.29065e-05
5.25758e-05
4.99397e-05
5.05411e-05
5.17125e-05
5.25314e-05
5.24851e-05
5.25213e-05
5.25516e-05
5.25956e-05
5.26912e-05
5.28141e-05
5.3024e-05
5.33027e-05
5.53545e-05
8.86833e-05
0.00012241
0.000125267
0.000101653
7.4592e-05
5.81279e-05
5.19392e-05
5.09747e-05
5.15234e-05
5.20889e-05
5.23794e-05
5.21494e-05
5.21708e-05
5.2211e-05
5.22699e-05
5.23628e-05
5.24755e-05
5.26554e-05
5.29045e-05
5.48413e-05
7.92737e-05
0.000106157
0.000116265
9.79935e-05
7.232e-05
5.75652e-05
5.25207e-05
5.16652e-05
5.18354e-05
5.20337e-05
5.21196e-05
5.19564e-05
5.19749e-05
5.2007e-05
5.20538e-05
5.21262e-05
5.22214e-05
5.23653e-05
5.25787e-05
5.30251e-05
5.27856e-05
5.3433e-05
5.45466e-05
5.63139e-05
5.39048e-05
5.15964e-05
5.11628e-05
5.14786e-05
5.17657e-05
5.18971e-05
5.19391e-05
5.18374e-05
5.18578e-05
5.189e-05
5.19343e-05
5.19934e-05
5.20749e-05
5.21833e-05
5.23725e-05
5.27013e-05
5.18247e-05
5.06725e-05
4.57026e-05
4.49013e-05
4.7029e-05
4.91857e-05
5.06379e-05
5.13923e-05
5.16967e-05
5.17945e-05
5.1822e-05
5.17701e-05
5.17874e-05
5.18127e-05
5.18475e-05
5.18926e-05
5.19584e-05
5.20413e-05
5.2204e-05
5.24586e-05
5.17966e-05
5.20469e-05
4.59549e-05
4.39926e-05
4.65879e-05
4.92842e-05
5.08052e-05
5.14554e-05
5.1678e-05
5.17405e-05
5.17577e-05
5.17286e-05
5.17444e-05
5.17663e-05
5.17954e-05
5.18308e-05
5.18827e-05
5.19442e-05
5.20753e-05
5.22582e-05
5.18167e-05
5.2771e-05
4.61151e-05
4.47186e-05
4.74515e-05
4.98338e-05
5.10421e-05
5.15152e-05
5.16655e-05
5.17053e-05
5.17175e-05
5.17023e-05
5.17153e-05
5.17327e-05
5.17555e-05
5.1783e-05
5.18227e-05
5.18715e-05
5.19729e-05
5.21362e-05
5.16812e-05
5.51741e-05
4.87501e-05
4.68441e-05
4.87244e-05
5.03985e-05
5.1235e-05
5.15575e-05
5.16583e-05
5.16845e-05
5.16933e-05
5.1685e-05
5.16959e-05
5.17102e-05
5.17285e-05
5.17501e-05
5.17795e-05
5.18169e-05
5.18881e-05
5.20218e-05
5.21287e-05
5.39727e-05
4.67602e-05
4.61278e-05
4.86073e-05
5.03952e-05
5.12334e-05
5.15469e-05
5.16438e-05
5.1669e-05
5.16773e-05
5.16721e-05
5.16808e-05
5.16923e-05
5.17068e-05
5.17238e-05
5.17458e-05
5.17746e-05
5.18239e-05
5.19944e-05
5.34122e-05
5.78539e-05
5.00092e-05
4.79089e-05
4.93414e-05
5.06346e-05
5.12924e-05
5.15524e-05
5.16361e-05
5.16585e-05
5.16658e-05
5.16624e-05
5.16692e-05
5.16785e-05
5.16901e-05
5.17036e-05
5.172e-05
5.17419e-05
5.17751e-05
5.19271e-05
5.24519e-05
5.29882e-05
4.67735e-05
4.70218e-05
4.92065e-05
5.06405e-05
5.13046e-05
5.15545e-05
5.1632e-05
5.16518e-05
5.16576e-05
5.16538e-05
5.16591e-05
5.16665e-05
5.16759e-05
5.16867e-05
5.16991e-05
5.17123e-05
5.17303e-05
5.17291e-05
4.68255e-05
3.87443e-05
3.8658e-05
4.38186e-05
4.8219e-05
5.0436e-05
5.12868e-05
5.15579e-05
5.16304e-05
5.16464e-05
5.16503e-05
5.16465e-05
5.16504e-05
5.16563e-05
5.16639e-05
5.16727e-05
5.16828e-05
5.1693e-05
5.17049e-05
5.17098e-05
5.13611e-05
5.12189e-05
5.13799e-05
5.15527e-05
5.16138e-05
5.16387e-05
5.16525e-05
5.16536e-05
5.16496e-05
5.1646e-05
5.1645e-05
5.16394e-05
5.16423e-05
5.1647e-05
5.16532e-05
5.16604e-05
5.16687e-05
5.16769e-05
5.16862e-05
5.16941e-05
5.16881e-05
5.16809e-05
5.16812e-05
5.16862e-05
5.1682e-05
5.16723e-05
5.16608e-05
5.16511e-05
5.16441e-05
5.16399e-05
5.16384e-05
5.16328e-05
5.16349e-05
5.16386e-05
5.16436e-05
5.16496e-05
5.16565e-05
5.1663e-05
5.16697e-05
5.16734e-05
5.16764e-05
5.1671e-05
5.16718e-05
5.16738e-05
5.16697e-05
5.16622e-05
5.16531e-05
5.16448e-05
5.16384e-05
5.16343e-05
5.16325e-05
5.16265e-05
5.1628e-05
5.16309e-05
5.1635e-05
5.164e-05
5.16459e-05
5.16516e-05
5.16575e-05
5.16614e-05
5.1664e-05
5.16608e-05
5.16596e-05
5.16597e-05
5.16566e-05
5.1651e-05
5.1644e-05
5.16373e-05
5.16319e-05
5.16283e-05
5.16265e-05
5.16206e-05
5.16216e-05
5.16238e-05
5.16272e-05
5.16313e-05
5.16362e-05
5.1641e-05
5.16458e-05
5.16488e-05
5.16513e-05
5.16497e-05
5.16502e-05
5.16505e-05
5.16479e-05
5.16431e-05
5.16371e-05
5.16312e-05
5.16264e-05
5.16229e-05
5.1621e-05
5.1615e-05
5.16156e-05
5.16173e-05
5.162e-05
5.16236e-05
5.16278e-05
5.1632e-05
5.16363e-05
5.16393e-05
5.16418e-05
5.16409e-05
5.16409e-05
5.16405e-05
5.16383e-05
5.16345e-05
5.16297e-05
5.16248e-05
5.16206e-05
5.16175e-05
5.16156e-05
5.16098e-05
5.16101e-05
5.16114e-05
5.16136e-05
5.16165e-05
5.162e-05
5.16237e-05
5.16275e-05
5.163e-05
5.16323e-05
5.16322e-05
5.16329e-05
5.16328e-05
5.1631e-05
5.16276e-05
5.16234e-05
5.16192e-05
5.16154e-05
5.16125e-05
5.16106e-05
5.16049e-05
5.1605e-05
5.16059e-05
5.16077e-05
5.16102e-05
5.16132e-05
5.16164e-05
5.16198e-05
5.16222e-05
5.16246e-05
5.16248e-05
5.16252e-05
5.16249e-05
5.16234e-05
5.16208e-05
5.16173e-05
5.16136e-05
5.16103e-05
5.16076e-05
5.16058e-05
5.16004e-05
5.16003e-05
5.1601e-05
5.16024e-05
5.16045e-05
5.16071e-05
5.16098e-05
5.16128e-05
5.1615e-05
5.16172e-05
5.16178e-05
5.16185e-05
5.16184e-05
5.16172e-05
5.16149e-05
5.16119e-05
5.16086e-05
5.16056e-05
5.16032e-05
5.16014e-05
5.15963e-05
5.1596e-05
5.15965e-05
5.15976e-05
5.15993e-05
5.16016e-05
5.1604e-05
5.16067e-05
5.16088e-05
5.16108e-05
5.16115e-05
5.16122e-05
5.16122e-05
5.16112e-05
5.16093e-05
5.16067e-05
5.16039e-05
5.16013e-05
5.1599e-05
5.15973e-05
5.15925e-05
5.15921e-05
5.15924e-05
5.15933e-05
5.15947e-05
5.15966e-05
5.15988e-05
5.16012e-05
5.16031e-05
5.1605e-05
5.16059e-05
5.16067e-05
5.16067e-05
5.1606e-05
5.16044e-05
5.16022e-05
5.15997e-05
5.15973e-05
5.15952e-05
5.15936e-05
5.15891e-05
5.15886e-05
5.15887e-05
5.15894e-05
5.15906e-05
5.15923e-05
5.15941e-05
5.15963e-05
5.15981e-05
5.15999e-05
5.16008e-05
5.16017e-05
5.16017e-05
5.16012e-05
5.15998e-05
5.15979e-05
5.15958e-05
5.15936e-05
5.15917e-05
5.15901e-05
5.1586e-05
5.15855e-05
5.15854e-05
5.15859e-05
5.15869e-05
5.15884e-05
5.159e-05
5.1592e-05
5.15936e-05
5.15954e-05
5.15963e-05
5.15972e-05
5.15973e-05
5.15969e-05
5.15958e-05
5.15941e-05
5.15922e-05
5.15903e-05
5.15885e-05
5.1587e-05
5.15832e-05
5.15826e-05
5.15825e-05
5.15828e-05
5.15837e-05
5.15849e-05
5.15864e-05
5.15882e-05
5.15897e-05
5.15914e-05
5.15923e-05
5.15932e-05
5.15934e-05
5.15931e-05
5.15922e-05
5.15907e-05
5.1589e-05
5.15873e-05
5.15856e-05
5.15842e-05
5.15807e-05
5.15801e-05
5.15799e-05
5.15801e-05
5.15808e-05
5.15819e-05
5.15832e-05
5.15849e-05
5.15863e-05
5.15878e-05
5.15888e-05
5.15897e-05
5.15899e-05
5.15898e-05
5.1589e-05
5.15877e-05
5.15862e-05
5.15846e-05
5.1583e-05
5.15817e-05
5.15785e-05
5.15779e-05
5.15776e-05
5.15777e-05
5.15783e-05
5.15793e-05
5.15804e-05
5.1582e-05
5.15833e-05
5.15848e-05
5.15857e-05
5.15866e-05
5.15869e-05
5.15868e-05
5.15862e-05
5.15851e-05
5.15837e-05
5.15822e-05
5.15808e-05
5.15796e-05
5.15766e-05
5.1576e-05
5.15756e-05
5.15756e-05
5.15761e-05
5.1577e-05
5.1578e-05
5.15794e-05
5.15807e-05
5.15821e-05
5.1583e-05
5.1584e-05
5.15843e-05
5.15843e-05
5.15837e-05
5.15827e-05
5.15815e-05
5.15801e-05
5.15788e-05
5.15776e-05
5.1575e-05
5.15744e-05
5.15739e-05
5.15739e-05
5.15743e-05
5.1575e-05
5.1576e-05
5.15773e-05
5.15785e-05
5.15799e-05
5.15808e-05
5.15817e-05
5.1582e-05
5.15821e-05
5.15817e-05
5.15808e-05
5.15797e-05
5.15784e-05
5.15771e-05
5.1576e-05
5.15735e-05
5.15729e-05
5.15724e-05
5.15723e-05
5.15727e-05
5.15733e-05
5.15742e-05
5.15755e-05
5.15766e-05
5.1578e-05
5.15788e-05
5.15798e-05
5.15801e-05
5.15802e-05
5.15799e-05
5.1579e-05
5.15781e-05
5.15768e-05
5.15756e-05
5.15746e-05
5.15725e-05
5.15719e-05
5.15713e-05
5.15712e-05
5.15715e-05
5.1572e-05
5.15728e-05
5.15741e-05
5.15751e-05
5.15765e-05
5.15773e-05
5.15783e-05
5.15786e-05
5.15788e-05
5.15785e-05
5.15778e-05
5.15769e-05
5.15757e-05
5.15745e-05
5.15735e-05
5.15715e-05
5.15709e-05
5.15703e-05
5.15701e-05
5.15704e-05
5.15709e-05
5.15716e-05
5.15728e-05
5.15738e-05
5.15752e-05
5.15759e-05
5.1577e-05
5.15773e-05
5.15775e-05
5.15773e-05
5.15766e-05
5.15757e-05
5.15746e-05
5.15734e-05
5.15725e-05
5.15709e-05
5.15703e-05
5.15697e-05
5.15694e-05
5.15698e-05
5.15701e-05
5.15708e-05
5.15721e-05
5.15729e-05
5.15743e-05
5.15751e-05
5.15761e-05
5.15765e-05
5.15768e-05
5.15766e-05
5.15759e-05
5.15751e-05
5.1574e-05
5.15729e-05
5.1572e-05
5.15705e-05
5.15698e-05
5.15692e-05
5.15689e-05
5.15692e-05
5.15696e-05
5.15702e-05
5.15715e-05
5.15723e-05
5.15737e-05
5.15744e-05
5.15755e-05
5.15758e-05
5.15762e-05
5.1576e-05
5.15753e-05
5.15746e-05
5.15735e-05
5.15724e-05
5.15715e-05
5.16007e-05
5.1601e-05
5.15987e-05
5.15996e-05
5.1602e-05
5.16e-05
5.16011e-05
5.16065e-05
5.16033e-05
5.16095e-05
5.16053e-05
5.16119e-05
5.16069e-05
5.16124e-05
5.16118e-05
5.16053e-05
5.16083e-05
5.16035e-05
5.16032e-05
5.16042e-05
3.02952e-05
3.36672e-05
3.87846e-05
4.43008e-05
4.93782e-05
5.36336e-05
5.70168e-05
5.9625e-05
6.1573e-05
6.29371e-05
6.36392e-05
6.34651e-05
6.22488e-05
5.99825e-05
5.6616e-05
5.18879e-05
4.5775e-05
3.90467e-05
3.32843e-05
3.01321e-05
4.70952e-05
5.22523e-05
5.60695e-05
5.86161e-05
6.01492e-05
6.10481e-05
6.1627e-05
6.2046e-05
6.26175e-05
6.39775e-05
6.58703e-05
6.68105e-05
6.52668e-05
6.05141e-05
5.28096e-05
4.41301e-05
3.75358e-05
3.50878e-05
3.69314e-05
4.16693e-05
5.44934e-05
5.65066e-05
5.76539e-05
5.82458e-05
5.85326e-05
5.86842e-05
5.88402e-05
5.90551e-05
5.99596e-05
6.4436e-05
7.07971e-05
7.27612e-05
6.69896e-05
5.60918e-05
4.55734e-05
3.96547e-05
3.92058e-05
4.25459e-05
4.7218e-05
5.14418e-05
5.52923e-05
5.59516e-05
5.62219e-05
5.63117e-05
5.64052e-05
5.65351e-05
5.67662e-05
5.70818e-05
5.794e-05
7.08672e-05
8.8765e-05
9.34623e-05
8.0821e-05
6.27636e-05
4.97587e-05
4.46605e-05
4.53924e-05
4.85342e-05
5.17013e-05
5.39709e-05
5.50571e-05
5.51911e-05
5.52577e-05
5.53199e-05
5.5435e-05
5.55713e-05
5.58063e-05
5.61162e-05
5.80971e-05
8.93967e-05
0.00012624
0.000136701
0.000120232
9.1378e-05
6.76503e-05
5.58781e-05
5.26592e-05
5.29929e-05
5.4003e-05
5.47185e-05
5.45827e-05
5.46139e-05
5.46467e-05
5.46959e-05
5.47987e-05
5.49279e-05
5.51489e-05
5.54402e-05
5.76919e-05
9.70822e-05
0.000136172
0.000138702
0.000111125
8.03833e-05
6.18455e-05
5.47659e-05
5.34313e-05
5.37953e-05
5.42586e-05
5.44974e-05
5.42415e-05
5.42641e-05
5.4308e-05
5.43707e-05
5.44683e-05
5.45856e-05
5.47737e-05
5.50331e-05
5.71632e-05
8.63613e-05
0.000118108
0.000129373
0.000107185
7.76821e-05
6.09685e-05
5.51445e-05
5.39794e-05
5.40143e-05
5.41534e-05
5.42171e-05
5.40472e-05
5.40678e-05
5.4103e-05
5.41533e-05
5.42296e-05
5.43289e-05
5.44785e-05
5.47003e-05
5.51741e-05
5.51782e-05
5.6346e-05
5.8102e-05
6.02379e-05
5.71981e-05
5.42896e-05
5.35251e-05
5.36798e-05
5.38942e-05
5.39971e-05
5.40305e-05
5.3929e-05
5.39514e-05
5.39861e-05
5.40329e-05
5.40947e-05
5.41796e-05
5.42918e-05
5.44885e-05
5.48339e-05
5.42503e-05
5.35601e-05
4.84237e-05
4.76676e-05
4.96801e-05
5.1612e-05
5.28877e-05
5.35446e-05
5.38059e-05
5.38887e-05
5.39128e-05
5.38617e-05
5.38808e-05
5.39081e-05
5.3945e-05
5.39924e-05
5.4061e-05
5.41466e-05
5.43157e-05
5.4581e-05
5.42999e-05
5.52315e-05
4.87225e-05
4.66031e-05
4.91079e-05
5.16284e-05
5.30094e-05
5.35863e-05
5.37793e-05
5.38325e-05
5.38483e-05
5.38204e-05
5.38376e-05
5.38612e-05
5.3892e-05
5.39291e-05
5.39831e-05
5.40465e-05
5.41826e-05
5.43717e-05
5.43922e-05
5.60867e-05
4.89085e-05
4.73287e-05
4.99292e-05
5.21321e-05
5.32187e-05
5.36342e-05
5.37632e-05
5.37968e-05
5.38083e-05
5.3794e-05
5.38082e-05
5.38269e-05
5.38512e-05
5.388e-05
5.39215e-05
5.39719e-05
5.40767e-05
5.42455e-05
5.42795e-05
5.8852e-05
5.17616e-05
4.95237e-05
5.11836e-05
5.26659e-05
5.33937e-05
5.36695e-05
5.37539e-05
5.37757e-05
5.37842e-05
5.37766e-05
5.37884e-05
5.38038e-05
5.38233e-05
5.3846e-05
5.38767e-05
5.39154e-05
5.39887e-05
5.41269e-05
5.48011e-05
5.7506e-05
4.9627e-05
4.87493e-05
5.10341e-05
5.26461e-05
5.33857e-05
5.36572e-05
5.37393e-05
5.37604e-05
5.37682e-05
5.37635e-05
5.37729e-05
5.37853e-05
5.38008e-05
5.38187e-05
5.38417e-05
5.38716e-05
5.39223e-05
5.40996e-05
5.6248e-05
6.17879e-05
5.30726e-05
5.05808e-05
5.17664e-05
5.28776e-05
5.34405e-05
5.36612e-05
5.37313e-05
5.37499e-05
5.37567e-05
5.37535e-05
5.3761e-05
5.3771e-05
5.37834e-05
5.37977e-05
5.38148e-05
5.38375e-05
5.38716e-05
5.403e-05
5.52007e-05
5.64218e-05
4.96092e-05
4.96305e-05
5.16031e-05
5.28705e-05
5.34476e-05
5.36617e-05
5.37268e-05
5.37431e-05
5.37483e-05
5.37446e-05
5.37505e-05
5.37585e-05
5.37685e-05
5.37799e-05
5.3793e-05
5.38068e-05
5.38254e-05
5.38221e-05
4.88389e-05
4.05587e-05
4.07893e-05
4.61864e-05
5.05376e-05
5.26395e-05
5.342e-05
5.36614e-05
5.37239e-05
5.37372e-05
5.37408e-05
5.3737e-05
5.37414e-05
5.37478e-05
5.37559e-05
5.37653e-05
5.37759e-05
5.37865e-05
5.37987e-05
5.38035e-05
5.3463e-05
5.33283e-05
5.34919e-05
5.36585e-05
5.3713e-05
5.37346e-05
5.37451e-05
5.37442e-05
5.37395e-05
5.37359e-05
5.37351e-05
5.37296e-05
5.37329e-05
5.37381e-05
5.37447e-05
5.37524e-05
5.37611e-05
5.37696e-05
5.37792e-05
5.37872e-05
5.37811e-05
5.37735e-05
5.37737e-05
5.37784e-05
5.37733e-05
5.37628e-05
5.37508e-05
5.37407e-05
5.37337e-05
5.37296e-05
5.37284e-05
5.37228e-05
5.37252e-05
5.37293e-05
5.37347e-05
5.37411e-05
5.37483e-05
5.37551e-05
5.37619e-05
5.37655e-05
5.37684e-05
5.37624e-05
5.37635e-05
5.37652e-05
5.37606e-05
5.37525e-05
5.37429e-05
5.37343e-05
5.37278e-05
5.37238e-05
5.37222e-05
5.37162e-05
5.3718e-05
5.37212e-05
5.37256e-05
5.3731e-05
5.37371e-05
5.37431e-05
5.37492e-05
5.3753e-05
5.37555e-05
5.37518e-05
5.37507e-05
5.37505e-05
5.37471e-05
5.3741e-05
5.37336e-05
5.37267e-05
5.37213e-05
5.37177e-05
5.37161e-05
5.37101e-05
5.37113e-05
5.37138e-05
5.37174e-05
5.37219e-05
5.3727e-05
5.3732e-05
5.37369e-05
5.37399e-05
5.37423e-05
5.37404e-05
5.3741e-05
5.3741e-05
5.37381e-05
5.37329e-05
5.37266e-05
5.37205e-05
5.37156e-05
5.37121e-05
5.37103e-05
5.37043e-05
5.3705e-05
5.3707e-05
5.371e-05
5.37137e-05
5.37182e-05
5.37225e-05
5.3727e-05
5.37299e-05
5.37324e-05
5.37313e-05
5.37312e-05
5.37306e-05
5.37282e-05
5.37241e-05
5.3719e-05
5.37139e-05
5.37096e-05
5.37065e-05
5.37047e-05
5.36989e-05
5.36993e-05
5.37008e-05
5.37032e-05
5.37063e-05
5.371e-05
5.37138e-05
5.37177e-05
5.37202e-05
5.37226e-05
5.37223e-05
5.37229e-05
5.37227e-05
5.37207e-05
5.3717e-05
5.37126e-05
5.37082e-05
5.37043e-05
5.37014e-05
5.36995e-05
5.36938e-05
5.3694e-05
5.36951e-05
5.3697e-05
5.36997e-05
5.37029e-05
5.37062e-05
5.37097e-05
5.37121e-05
5.37145e-05
5.37145e-05
5.3715e-05
5.37145e-05
5.37129e-05
5.37099e-05
5.37063e-05
5.37025e-05
5.36991e-05
5.36964e-05
5.36946e-05
5.36891e-05
5.36891e-05
5.36899e-05
5.36915e-05
5.36937e-05
5.36964e-05
5.36993e-05
5.37024e-05
5.37046e-05
5.37068e-05
5.37073e-05
5.3708e-05
5.37077e-05
5.37064e-05
5.37039e-05
5.37007e-05
5.36973e-05
5.36943e-05
5.36918e-05
5.369e-05
5.36848e-05
5.36847e-05
5.36852e-05
5.36864e-05
5.36883e-05
5.36907e-05
5.36932e-05
5.3696e-05
5.36981e-05
5.37001e-05
5.37007e-05
5.37015e-05
5.37013e-05
5.37002e-05
5.36981e-05
5.36954e-05
5.36925e-05
5.36898e-05
5.36874e-05
5.36858e-05
5.36809e-05
5.36806e-05
5.36809e-05
5.36819e-05
5.36835e-05
5.36855e-05
5.36878e-05
5.36902e-05
5.36922e-05
5.36941e-05
5.36949e-05
5.36957e-05
5.36956e-05
5.36948e-05
5.3693e-05
5.36907e-05
5.36881e-05
5.36856e-05
5.36835e-05
5.36819e-05
5.36773e-05
5.36769e-05
5.36771e-05
5.36779e-05
5.36792e-05
5.36809e-05
5.36829e-05
5.36852e-05
5.3687e-05
5.36888e-05
5.36897e-05
5.36905e-05
5.36905e-05
5.36898e-05
5.36883e-05
5.36863e-05
5.36841e-05
5.36818e-05
5.36799e-05
5.36784e-05
5.36741e-05
5.36736e-05
5.36737e-05
5.36743e-05
5.36754e-05
5.36769e-05
5.36786e-05
5.36806e-05
5.36823e-05
5.36841e-05
5.3685e-05
5.36858e-05
5.36859e-05
5.36854e-05
5.36842e-05
5.36824e-05
5.36804e-05
5.36784e-05
5.36766e-05
5.36751e-05
5.36712e-05
5.36707e-05
5.36706e-05
5.3671e-05
5.3672e-05
5.36733e-05
5.36748e-05
5.36767e-05
5.36782e-05
5.36799e-05
5.36808e-05
5.36817e-05
5.36818e-05
5.36815e-05
5.36804e-05
5.36789e-05
5.36771e-05
5.36753e-05
5.36736e-05
5.36723e-05
5.36686e-05
5.36681e-05
5.36679e-05
5.36682e-05
5.3669e-05
5.36701e-05
5.36715e-05
5.36732e-05
5.36746e-05
5.36762e-05
5.36772e-05
5.36781e-05
5.36782e-05
5.3678e-05
5.36771e-05
5.36758e-05
5.36742e-05
5.36725e-05
5.3671e-05
5.36697e-05
5.36664e-05
5.36658e-05
5.36655e-05
5.36657e-05
5.36664e-05
5.36674e-05
5.36686e-05
5.36702e-05
5.36715e-05
5.36731e-05
5.3674e-05
5.36749e-05
5.36751e-05
5.3675e-05
5.36742e-05
5.36731e-05
5.36717e-05
5.36701e-05
5.36686e-05
5.36674e-05
5.36644e-05
5.36638e-05
5.36634e-05
5.36635e-05
5.36641e-05
5.3665e-05
5.3666e-05
5.36675e-05
5.36688e-05
5.36703e-05
5.36712e-05
5.36721e-05
5.36724e-05
5.36723e-05
5.36717e-05
5.36707e-05
5.36694e-05
5.3668e-05
5.36666e-05
5.36654e-05
5.36627e-05
5.36621e-05
5.36617e-05
5.36617e-05
5.36622e-05
5.36629e-05
5.36639e-05
5.36653e-05
5.36665e-05
5.3668e-05
5.36688e-05
5.36698e-05
5.36701e-05
5.36701e-05
5.36696e-05
5.36686e-05
5.36675e-05
5.36662e-05
5.36648e-05
5.36637e-05
5.36612e-05
5.36606e-05
5.36602e-05
5.36601e-05
5.36605e-05
5.36612e-05
5.36621e-05
5.36634e-05
5.36645e-05
5.36659e-05
5.36668e-05
5.36678e-05
5.3668e-05
5.36682e-05
5.36677e-05
5.36669e-05
5.36658e-05
5.36645e-05
5.36633e-05
5.36622e-05
5.36601e-05
5.36595e-05
5.3659e-05
5.36589e-05
5.36593e-05
5.36598e-05
5.36606e-05
5.36619e-05
5.3663e-05
5.36644e-05
5.36652e-05
5.36662e-05
5.36665e-05
5.36667e-05
5.36663e-05
5.36655e-05
5.36646e-05
5.36634e-05
5.36621e-05
5.36612e-05
5.36591e-05
5.36585e-05
5.36579e-05
5.36577e-05
5.36581e-05
5.36586e-05
5.36593e-05
5.36607e-05
5.36616e-05
5.3663e-05
5.36638e-05
5.36648e-05
5.36651e-05
5.36654e-05
5.36651e-05
5.36643e-05
5.36634e-05
5.36622e-05
5.3661e-05
5.36601e-05
5.36585e-05
5.36579e-05
5.36573e-05
5.36571e-05
5.36574e-05
5.36578e-05
5.36585e-05
5.36598e-05
5.36607e-05
5.36622e-05
5.36629e-05
5.3664e-05
5.36643e-05
5.36646e-05
5.36644e-05
5.36636e-05
5.36628e-05
5.36616e-05
5.36605e-05
5.36596e-05
5.3658e-05
5.36574e-05
5.36568e-05
5.36565e-05
5.36569e-05
5.36573e-05
5.36579e-05
5.36592e-05
5.36601e-05
5.36615e-05
5.36622e-05
5.36633e-05
5.36636e-05
5.36639e-05
5.36637e-05
5.36629e-05
5.36622e-05
5.36611e-05
5.36599e-05
5.36591e-05
5.36881e-05
5.3688e-05
5.36861e-05
5.36872e-05
5.3689e-05
5.36875e-05
5.36888e-05
5.36937e-05
5.36909e-05
5.36967e-05
5.3693e-05
5.36991e-05
5.36945e-05
5.36994e-05
5.36986e-05
5.36928e-05
5.36952e-05
5.3691e-05
5.36908e-05
5.36912e-05
3.20217e-05
3.61717e-05
4.17713e-05
4.7472e-05
5.25452e-05
5.6708e-05
5.99728e-05
6.2465e-05
6.43155e-05
6.56123e-05
6.62579e-05
6.59861e-05
6.45819e-05
6.20085e-05
5.81904e-05
5.28637e-05
4.61497e-05
3.90982e-05
3.3508e-05
3.09988e-05
5.02371e-05
5.52225e-05
5.8829e-05
6.12013e-05
6.26129e-05
6.34436e-05
6.39948e-05
6.44111e-05
6.50895e-05
6.68674e-05
6.94449e-05
7.09701e-05
6.9528e-05
6.42472e-05
5.56022e-05
4.6185e-05
3.94649e-05
3.74041e-05
3.97681e-05
4.48191e-05
5.70718e-05
5.89508e-05
6.00021e-05
6.05315e-05
6.07904e-05
6.09368e-05
6.11072e-05
6.13501e-05
6.24726e-05
6.80191e-05
7.5863e-05
7.84688e-05
7.20479e-05
5.99238e-05
4.85315e-05
4.23792e-05
4.20488e-05
4.54947e-05
5.01151e-05
5.41877e-05
5.76436e-05
5.82308e-05
5.84647e-05
5.85442e-05
5.86447e-05
5.87855e-05
5.90358e-05
5.93742e-05
6.03181e-05
7.56304e-05
9.65327e-05
0.000101806
8.73232e-05
6.731e-05
5.31333e-05
4.76103e-05
4.82279e-05
5.1271e-05
5.43023e-05
5.64336e-05
5.73069e-05
5.74187e-05
5.74819e-05
5.7548e-05
5.76712e-05
5.78153e-05
5.80655e-05
5.8393e-05
6.05743e-05
9.74349e-05
0.000140182
0.000152008
0.000132901
9.96337e-05
7.26841e-05
5.93566e-05
5.55159e-05
5.55662e-05
5.64099e-05
5.70228e-05
5.68039e-05
5.68317e-05
5.68677e-05
5.69225e-05
5.70329e-05
5.71687e-05
5.74015e-05
5.77063e-05
6.01717e-05
0.000106575
0.000151637
0.000153525
0.000121367
8.65472e-05
6.57611e-05
5.77312e-05
5.60077e-05
5.61828e-05
5.65459e-05
5.67365e-05
5.64587e-05
5.64831e-05
5.65309e-05
5.65976e-05
5.67002e-05
5.68226e-05
5.70192e-05
5.72897e-05
5.9627e-05
9.44226e-05
0.000131773
0.000144133
0.000117273
8.34477e-05
6.45747e-05
5.79054e-05
5.64138e-05
5.63122e-05
5.63948e-05
5.64385e-05
5.62635e-05
5.62865e-05
5.63251e-05
5.6379e-05
5.64594e-05
5.65629e-05
5.67187e-05
5.69495e-05
5.7453e-05
5.77684e-05
5.95737e-05
6.20849e-05
6.45572e-05
6.07395e-05
5.71437e-05
5.60163e-05
5.60027e-05
5.61449e-05
5.62208e-05
5.62468e-05
5.61461e-05
5.61708e-05
5.62081e-05
5.62575e-05
5.63223e-05
5.64107e-05
5.65269e-05
5.67315e-05
5.70949e-05
5.68875e-05
5.67625e-05
5.14324e-05
5.06828e-05
5.25173e-05
5.41801e-05
5.52629e-05
5.58195e-05
5.60386e-05
5.61074e-05
5.61287e-05
5.60788e-05
5.60998e-05
5.61293e-05
5.61686e-05
5.62184e-05
5.62899e-05
5.63783e-05
5.65541e-05
5.6831e-05
5.70298e-05
5.87756e-05
5.17684e-05
4.94364e-05
5.17972e-05
5.41073e-05
5.53374e-05
5.58402e-05
5.60046e-05
5.60494e-05
5.60641e-05
5.60377e-05
5.60566e-05
5.60818e-05
5.61144e-05
5.61533e-05
5.62097e-05
5.62751e-05
5.64163e-05
5.66122e-05
5.72087e-05
5.97756e-05
5.19762e-05
5.01522e-05
5.25665e-05
5.45609e-05
5.55185e-05
5.58766e-05
5.59852e-05
5.60133e-05
5.60245e-05
5.60112e-05
5.60267e-05
5.60469e-05
5.60726e-05
5.6103e-05
5.61463e-05
5.61983e-05
5.63068e-05
5.64812e-05
5.71241e-05
6.29537e-05
5.50627e-05
5.24133e-05
5.37966e-05
5.50619e-05
5.56756e-05
5.59052e-05
5.59742e-05
5.5992e-05
5.60004e-05
5.59937e-05
5.60066e-05
5.60231e-05
5.60438e-05
5.60677e-05
5.60998e-05
5.61398e-05
5.62154e-05
5.63582e-05
5.77303e-05
6.14409e-05
5.27671e-05
5.15736e-05
5.3612e-05
5.50253e-05
5.56616e-05
5.58913e-05
5.59595e-05
5.5977e-05
5.59846e-05
5.59803e-05
5.59907e-05
5.6004e-05
5.60205e-05
5.60394e-05
5.60635e-05
5.60945e-05
5.61466e-05
5.63309e-05
5.9364e-05
6.61679e-05
5.64215e-05
5.34556e-05
5.43412e-05
5.52485e-05
5.57122e-05
5.58941e-05
5.59513e-05
5.59665e-05
5.59729e-05
5.59701e-05
5.59783e-05
5.59891e-05
5.60023e-05
5.60174e-05
5.60353e-05
5.60589e-05
5.60939e-05
5.62589e-05
5.82198e-05
6.02377e-05
5.27085e-05
5.24341e-05
5.41463e-05
5.52278e-05
5.57142e-05
5.5893e-05
5.59464e-05
5.59596e-05
5.59644e-05
5.59609e-05
5.59674e-05
5.59761e-05
5.59868e-05
5.59989e-05
5.60126e-05
5.60269e-05
5.60461e-05
5.60404e-05
5.10137e-05
4.25448e-05
4.31145e-05
4.8726e-05
5.29951e-05
5.49687e-05
5.56768e-05
5.58893e-05
5.59424e-05
5.59534e-05
5.59567e-05
5.5953e-05
5.59578e-05
5.59648e-05
5.59735e-05
5.59835e-05
5.59946e-05
5.60056e-05
5.60181e-05
5.60227e-05
5.56956e-05
5.55671e-05
5.57312e-05
5.58902e-05
5.59378e-05
5.59557e-05
5.59629e-05
5.59601e-05
5.59548e-05
5.59512e-05
5.59506e-05
5.59453e-05
5.5949e-05
5.59546e-05
5.59618e-05
5.597e-05
5.59791e-05
5.5988e-05
5.59978e-05
5.60058e-05
5.59997e-05
5.59917e-05
5.59917e-05
5.5996e-05
5.599e-05
5.59786e-05
5.59661e-05
5.59557e-05
5.59486e-05
5.59447e-05
5.59437e-05
5.59382e-05
5.5941e-05
5.59454e-05
5.59512e-05
5.59581e-05
5.59656e-05
5.59727e-05
5.59796e-05
5.59832e-05
5.59859e-05
5.59793e-05
5.59806e-05
5.59821e-05
5.59769e-05
5.59681e-05
5.59581e-05
5.59492e-05
5.59427e-05
5.59387e-05
5.59373e-05
5.59313e-05
5.59334e-05
5.59369e-05
5.59417e-05
5.59475e-05
5.59539e-05
5.59601e-05
5.59663e-05
5.59701e-05
5.59725e-05
5.59683e-05
5.59672e-05
5.59668e-05
5.59629e-05
5.59564e-05
5.59487e-05
5.59415e-05
5.5936e-05
5.59325e-05
5.5931e-05
5.5925e-05
5.59264e-05
5.59292e-05
5.59331e-05
5.59379e-05
5.59433e-05
5.59485e-05
5.59535e-05
5.59564e-05
5.59588e-05
5.59565e-05
5.59571e-05
5.5957e-05
5.59537e-05
5.5948e-05
5.59414e-05
5.59351e-05
5.59301e-05
5.59267e-05
5.5925e-05
5.59189e-05
5.59199e-05
5.59221e-05
5.59253e-05
5.59293e-05
5.5934e-05
5.59385e-05
5.59431e-05
5.5946e-05
5.59485e-05
5.59471e-05
5.59469e-05
5.59461e-05
5.59434e-05
5.5939e-05
5.59337e-05
5.59284e-05
5.5924e-05
5.59209e-05
5.59192e-05
5.59133e-05
5.59139e-05
5.59156e-05
5.59182e-05
5.59215e-05
5.59254e-05
5.59294e-05
5.59334e-05
5.59359e-05
5.59382e-05
5.59377e-05
5.59384e-05
5.59379e-05
5.59357e-05
5.59317e-05
5.59271e-05
5.59225e-05
5.59186e-05
5.59156e-05
5.59138e-05
5.5908e-05
5.59083e-05
5.59096e-05
5.59117e-05
5.59146e-05
5.5918e-05
5.59214e-05
5.5925e-05
5.59274e-05
5.59298e-05
5.59297e-05
5.59301e-05
5.59294e-05
5.59276e-05
5.59245e-05
5.59206e-05
5.59166e-05
5.59132e-05
5.59104e-05
5.59087e-05
5.59032e-05
5.59032e-05
5.59042e-05
5.59059e-05
5.59083e-05
5.59112e-05
5.59142e-05
5.59173e-05
5.59196e-05
5.59218e-05
5.59221e-05
5.59228e-05
5.59224e-05
5.59209e-05
5.59182e-05
5.59149e-05
5.59114e-05
5.59082e-05
5.59057e-05
5.5904e-05
5.58987e-05
5.58986e-05
5.58993e-05
5.59007e-05
5.59027e-05
5.59052e-05
5.59078e-05
5.59107e-05
5.59128e-05
5.59148e-05
5.59154e-05
5.59161e-05
5.59157e-05
5.59145e-05
5.59122e-05
5.59094e-05
5.59063e-05
5.59035e-05
5.59012e-05
5.58996e-05
5.58946e-05
5.58944e-05
5.58948e-05
5.58959e-05
5.58976e-05
5.58998e-05
5.59021e-05
5.59046e-05
5.59066e-05
5.59086e-05
5.59093e-05
5.59101e-05
5.59099e-05
5.59089e-05
5.5907e-05
5.59045e-05
5.59018e-05
5.58993e-05
5.58971e-05
5.58956e-05
5.58909e-05
5.58906e-05
5.58908e-05
5.58917e-05
5.58931e-05
5.5895e-05
5.5897e-05
5.58993e-05
5.59012e-05
5.5903e-05
5.59038e-05
5.59046e-05
5.59045e-05
5.59038e-05
5.59021e-05
5.59e-05
5.58977e-05
5.58954e-05
5.58934e-05
5.58919e-05
5.58875e-05
5.58871e-05
5.58872e-05
5.58879e-05
5.58891e-05
5.58907e-05
5.58925e-05
5.58946e-05
5.58963e-05
5.58981e-05
5.5899e-05
5.58998e-05
5.58998e-05
5.58992e-05
5.58978e-05
5.5896e-05
5.58939e-05
5.58918e-05
5.589e-05
5.58885e-05
5.58846e-05
5.58841e-05
5.58841e-05
5.58845e-05
5.58856e-05
5.5887e-05
5.58886e-05
5.58905e-05
5.58921e-05
5.58938e-05
5.58946e-05
5.58955e-05
5.58956e-05
5.58952e-05
5.5894e-05
5.58924e-05
5.58905e-05
5.58886e-05
5.58869e-05
5.58856e-05
5.58819e-05
5.58813e-05
5.58812e-05
5.58816e-05
5.58824e-05
5.58836e-05
5.58851e-05
5.58868e-05
5.58883e-05
5.58899e-05
5.58908e-05
5.58917e-05
5.58918e-05
5.58915e-05
5.58906e-05
5.58892e-05
5.58875e-05
5.58858e-05
5.58842e-05
5.58829e-05
5.58795e-05
5.5879e-05
5.58788e-05
5.5879e-05
5.58797e-05
5.58808e-05
5.58821e-05
5.58837e-05
5.58851e-05
5.58866e-05
5.58875e-05
5.58884e-05
5.58886e-05
5.58884e-05
5.58876e-05
5.58863e-05
5.58849e-05
5.58833e-05
5.58818e-05
5.58805e-05
5.58774e-05
5.58769e-05
5.58766e-05
5.58767e-05
5.58773e-05
5.58782e-05
5.58794e-05
5.58809e-05
5.58822e-05
5.58837e-05
5.58846e-05
5.58855e-05
5.58857e-05
5.58857e-05
5.5885e-05
5.58839e-05
5.58825e-05
5.5881e-05
5.58796e-05
5.58785e-05
5.58757e-05
5.58751e-05
5.58748e-05
5.58748e-05
5.58754e-05
5.58761e-05
5.58772e-05
5.58787e-05
5.58798e-05
5.58813e-05
5.58822e-05
5.58831e-05
5.58834e-05
5.58834e-05
5.58828e-05
5.58818e-05
5.58806e-05
5.58792e-05
5.58778e-05
5.58767e-05
5.58742e-05
5.58736e-05
5.58732e-05
5.58731e-05
5.58736e-05
5.58743e-05
5.58752e-05
5.58767e-05
5.58778e-05
5.58792e-05
5.588e-05
5.5881e-05
5.58813e-05
5.58814e-05
5.58809e-05
5.58799e-05
5.58789e-05
5.58775e-05
5.58762e-05
5.58752e-05
5.5873e-05
5.58724e-05
5.58719e-05
5.58718e-05
5.58723e-05
5.58729e-05
5.58737e-05
5.58751e-05
5.58761e-05
5.58776e-05
5.58784e-05
5.58794e-05
5.58797e-05
5.58798e-05
5.58794e-05
5.58785e-05
5.58776e-05
5.58763e-05
5.5875e-05
5.58741e-05
5.58719e-05
5.58714e-05
5.58708e-05
5.58707e-05
5.58711e-05
5.58716e-05
5.58724e-05
5.58738e-05
5.58747e-05
5.58762e-05
5.58769e-05
5.5878e-05
5.58782e-05
5.58785e-05
5.58781e-05
5.58773e-05
5.58764e-05
5.58751e-05
5.58739e-05
5.5873e-05
5.58714e-05
5.58708e-05
5.58702e-05
5.58699e-05
5.58704e-05
5.58708e-05
5.58715e-05
5.58729e-05
5.58738e-05
5.58753e-05
5.5876e-05
5.58771e-05
5.58774e-05
5.58777e-05
5.58774e-05
5.58765e-05
5.58757e-05
5.58745e-05
5.58733e-05
5.58724e-05
5.58708e-05
5.58702e-05
5.58696e-05
5.58694e-05
5.58698e-05
5.58702e-05
5.58709e-05
5.58723e-05
5.58731e-05
5.58746e-05
5.58753e-05
5.58764e-05
5.58766e-05
5.5877e-05
5.58767e-05
5.58759e-05
5.58751e-05
5.58739e-05
5.58728e-05
5.58719e-05
5.59008e-05
5.59002e-05
5.58988e-05
5.59001e-05
5.59014e-05
5.59003e-05
5.59019e-05
5.59062e-05
5.59038e-05
5.59091e-05
5.59059e-05
5.59115e-05
5.59074e-05
5.59118e-05
5.59107e-05
5.59055e-05
5.59074e-05
5.59037e-05
5.59037e-05
5.59034e-05
3.41038e-05
3.90108e-05
4.50276e-05
5.08513e-05
5.58797e-05
5.99267e-05
6.30602e-05
6.54311e-05
6.71867e-05
6.84289e-05
6.90352e-05
6.86735e-05
6.70673e-05
6.41439e-05
5.98069e-05
5.38137e-05
4.64851e-05
3.91853e-05
3.39011e-05
3.216e-05
5.35423e-05
5.83205e-05
6.171e-05
6.39098e-05
6.52039e-05
6.59708e-05
6.64993e-05
6.69182e-05
6.77391e-05
7.00548e-05
7.34992e-05
7.57563e-05
7.44392e-05
6.85202e-05
5.87901e-05
4.85801e-05
4.17563e-05
4.00949e-05
4.29309e-05
4.82051e-05
5.97824e-05
6.15235e-05
6.24787e-05
6.29478e-05
6.31827e-05
6.33272e-05
6.35152e-05
6.379e-05
6.51809e-05
7.20238e-05
8.16235e-05
8.49586e-05
7.77677e-05
6.42542e-05
5.18883e-05
4.5447e-05
4.51747e-05
4.86587e-05
5.31771e-05
5.70739e-05
6.01224e-05
6.06396e-05
6.08406e-05
6.09131e-05
6.10223e-05
6.11751e-05
6.14462e-05
6.18092e-05
6.28462e-05
8.09235e-05
0.000105192
0.000110986
9.43869e-05
7.22287e-05
5.67786e-05
5.07789e-05
5.12453e-05
5.41612e-05
5.70395e-05
5.90246e-05
5.96884e-05
5.97809e-05
5.98426e-05
5.99136e-05
6.00455e-05
6.0198e-05
6.04647e-05
6.08111e-05
6.32071e-05
0.000106466
0.000155792
0.000168975
0.000146721
0.000108454
7.79863e-05
6.30068e-05
5.85133e-05
5.82679e-05
5.89422e-05
5.94547e-05
5.91601e-05
5.91858e-05
5.92258e-05
5.92868e-05
5.94051e-05
5.95479e-05
5.97933e-05
6.01124e-05
6.28053e-05
0.000117288
0.000168938
0.000169762
0.000132347
9.30529e-05
6.98626e-05
6.08354e-05
5.87097e-05
5.86951e-05
5.89615e-05
5.91077e-05
5.88122e-05
5.8839e-05
5.8891e-05
5.8962e-05
5.907e-05
5.91976e-05
5.94034e-05
5.96856e-05
6.22441e-05
0.000103591
0.000147362
0.000160662
0.00012827
8.9606e-05
6.8379e-05
6.08059e-05
5.89758e-05
5.87392e-05
5.87687e-05
5.87947e-05
5.86164e-05
5.86421e-05
5.86843e-05
5.8742e-05
5.88268e-05
5.89348e-05
5.90971e-05
5.93375e-05
5.98736e-05
6.05835e-05
6.31682e-05
6.6556e-05
6.93008e-05
6.45357e-05
6.01624e-05
5.86428e-05
5.84566e-05
5.85283e-05
5.85794e-05
5.85991e-05
5.84999e-05
5.85271e-05
5.85672e-05
5.86194e-05
5.86874e-05
5.87795e-05
5.88999e-05
5.91129e-05
5.9496e-05
5.97665e-05
6.03298e-05
5.47686e-05
5.39703e-05
5.55516e-05
5.68981e-05
5.77726e-05
5.82273e-05
5.84058e-05
5.84618e-05
5.8481e-05
5.84327e-05
5.84558e-05
5.84876e-05
5.85294e-05
5.85816e-05
5.86563e-05
5.87477e-05
5.89304e-05
5.92199e-05
6.00189e-05
6.27369e-05
5.51297e-05
5.25153e-05
5.46681e-05
5.67306e-05
5.77993e-05
5.82278e-05
5.8365e-05
5.84023e-05
5.84164e-05
5.83917e-05
5.84123e-05
5.84394e-05
5.84739e-05
5.85148e-05
5.85736e-05
5.86412e-05
5.87878e-05
5.89908e-05
6.03015e-05
6.38967e-05
5.53545e-05
5.32108e-05
5.53758e-05
5.71305e-05
5.79521e-05
5.82533e-05
5.83426e-05
5.8366e-05
5.83772e-05
5.83652e-05
5.8382e-05
5.84038e-05
5.84311e-05
5.84632e-05
5.85083e-05
5.8562e-05
5.86743e-05
5.88547e-05
6.02517e-05
6.75462e-05
5.86906e-05
5.55337e-05
5.65754e-05
5.75967e-05
5.80915e-05
5.82756e-05
5.83302e-05
5.83447e-05
5.83532e-05
5.83475e-05
5.83615e-05
5.83793e-05
5.84012e-05
5.84265e-05
5.846e-05
5.85014e-05
5.85793e-05
5.8727e-05
6.09546e-05
6.58404e-05
5.62154e-05
5.46206e-05
5.6353e-05
5.75434e-05
5.80719e-05
5.82605e-05
5.83156e-05
5.83299e-05
5.83374e-05
5.83338e-05
5.83451e-05
5.83595e-05
5.83771e-05
5.83971e-05
5.84223e-05
5.84544e-05
5.8508e-05
5.86995e-05
6.28023e-05
7.1063e-05
6.00916e-05
5.65528e-05
5.70777e-05
5.77578e-05
5.81183e-05
5.82621e-05
5.83073e-05
5.83195e-05
5.83258e-05
5.83233e-05
5.83323e-05
5.83439e-05
5.8358e-05
5.83741e-05
5.83928e-05
5.84173e-05
5.84531e-05
5.86249e-05
6.15502e-05
6.44942e-05
5.6104e-05
5.54511e-05
5.68478e-05
5.77228e-05
5.81155e-05
5.82595e-05
5.8302e-05
5.83124e-05
5.83171e-05
5.83138e-05
5.83209e-05
5.83303e-05
5.83418e-05
5.83547e-05
5.8369e-05
5.83839e-05
5.84038e-05
5.83952e-05
5.33708e-05
4.47272e-05
4.56564e-05
5.14523e-05
5.56026e-05
5.74341e-05
5.80683e-05
5.82526e-05
5.82971e-05
5.83059e-05
5.83092e-05
5.83056e-05
5.8311e-05
5.83185e-05
5.83279e-05
5.83384e-05
5.83501e-05
5.83615e-05
5.83743e-05
5.83788e-05
5.8071e-05
5.79471e-05
5.8109e-05
5.8259e-05
5.82994e-05
5.83132e-05
5.8317e-05
5.83124e-05
5.83065e-05
5.83029e-05
5.83027e-05
5.82975e-05
5.83017e-05
5.83079e-05
5.83155e-05
5.83243e-05
5.83339e-05
5.83431e-05
5.83531e-05
5.83611e-05
5.83551e-05
5.83466e-05
5.83464e-05
5.83503e-05
5.83433e-05
5.83309e-05
5.83178e-05
5.83071e-05
5.83e-05
5.82962e-05
5.82956e-05
5.82901e-05
5.82933e-05
5.82982e-05
5.83045e-05
5.83117e-05
5.83196e-05
5.8327e-05
5.83341e-05
5.83376e-05
5.83401e-05
5.83328e-05
5.83344e-05
5.83355e-05
5.83297e-05
5.83202e-05
5.83097e-05
5.83005e-05
5.8294e-05
5.82901e-05
5.8289e-05
5.8283e-05
5.82854e-05
5.82893e-05
5.82945e-05
5.83006e-05
5.83073e-05
5.83137e-05
5.83201e-05
5.83239e-05
5.83261e-05
5.83214e-05
5.83202e-05
5.83196e-05
5.83153e-05
5.83083e-05
5.83001e-05
5.82927e-05
5.82872e-05
5.82837e-05
5.82824e-05
5.82763e-05
5.82781e-05
5.82812e-05
5.82854e-05
5.82905e-05
5.82962e-05
5.83016e-05
5.83067e-05
5.83095e-05
5.83118e-05
5.83092e-05
5.83099e-05
5.83094e-05
5.83058e-05
5.82997e-05
5.82927e-05
5.82862e-05
5.82811e-05
5.82777e-05
5.82762e-05
5.827e-05
5.82712e-05
5.82737e-05
5.82772e-05
5.82815e-05
5.82864e-05
5.82911e-05
5.82958e-05
5.82987e-05
5.83011e-05
5.82994e-05
5.82992e-05
5.82982e-05
5.82952e-05
5.82904e-05
5.82848e-05
5.82793e-05
5.82749e-05
5.82718e-05
5.82702e-05
5.82642e-05
5.8265e-05
5.82669e-05
5.82697e-05
5.82733e-05
5.82774e-05
5.82815e-05
5.82856e-05
5.82881e-05
5.82904e-05
5.82897e-05
5.82903e-05
5.82896e-05
5.82872e-05
5.82829e-05
5.8278e-05
5.82732e-05
5.82692e-05
5.82663e-05
5.82646e-05
5.82587e-05
5.82592e-05
5.82606e-05
5.8263e-05
5.8266e-05
5.82696e-05
5.82732e-05
5.82768e-05
5.82793e-05
5.82816e-05
5.82813e-05
5.82817e-05
5.82809e-05
5.82788e-05
5.82754e-05
5.82714e-05
5.82673e-05
5.82637e-05
5.8261e-05
5.82593e-05
5.82537e-05
5.82539e-05
5.8255e-05
5.82569e-05
5.82594e-05
5.82625e-05
5.82656e-05
5.82688e-05
5.82711e-05
5.82733e-05
5.82735e-05
5.82742e-05
5.82736e-05
5.82719e-05
5.8269e-05
5.82654e-05
5.82618e-05
5.82586e-05
5.8256e-05
5.82544e-05
5.8249e-05
5.8249e-05
5.82498e-05
5.82514e-05
5.82535e-05
5.82562e-05
5.82589e-05
5.82619e-05
5.8264e-05
5.8266e-05
5.82664e-05
5.82671e-05
5.82667e-05
5.82653e-05
5.82628e-05
5.82598e-05
5.82566e-05
5.82538e-05
5.82514e-05
5.82498e-05
5.82448e-05
5.82446e-05
5.82452e-05
5.82464e-05
5.82482e-05
5.82505e-05
5.82529e-05
5.82555e-05
5.82575e-05
5.82595e-05
5.82602e-05
5.82609e-05
5.82606e-05
5.82595e-05
5.82574e-05
5.82548e-05
5.8252e-05
5.82494e-05
5.82472e-05
5.82457e-05
5.82409e-05
5.82406e-05
5.8241e-05
5.8242e-05
5.82435e-05
5.82455e-05
5.82476e-05
5.825e-05
5.82519e-05
5.82537e-05
5.82545e-05
5.82552e-05
5.8255e-05
5.82542e-05
5.82524e-05
5.82502e-05
5.82477e-05
5.82454e-05
5.82433e-05
5.82418e-05
5.82374e-05
5.82371e-05
5.82373e-05
5.8238e-05
5.82393e-05
5.8241e-05
5.82429e-05
5.82451e-05
5.82468e-05
5.82486e-05
5.82494e-05
5.82502e-05
5.82501e-05
5.82495e-05
5.8248e-05
5.8246e-05
5.82438e-05
5.82417e-05
5.82398e-05
5.82384e-05
5.82343e-05
5.82339e-05
5.82339e-05
5.82345e-05
5.82356e-05
5.82371e-05
5.82388e-05
5.82407e-05
5.82424e-05
5.82441e-05
5.82449e-05
5.82458e-05
5.82457e-05
5.82452e-05
5.8244e-05
5.82423e-05
5.82403e-05
5.82384e-05
5.82366e-05
5.82353e-05
5.82315e-05
5.8231e-05
5.8231e-05
5.82314e-05
5.82323e-05
5.82336e-05
5.82351e-05
5.82369e-05
5.82384e-05
5.82401e-05
5.82409e-05
5.82418e-05
5.82419e-05
5.82415e-05
5.82404e-05
5.82389e-05
5.82372e-05
5.82354e-05
5.82338e-05
5.82325e-05
5.82291e-05
5.82286e-05
5.82284e-05
5.82287e-05
5.82295e-05
5.82306e-05
5.8232e-05
5.82337e-05
5.82351e-05
5.82366e-05
5.82375e-05
5.82384e-05
5.82385e-05
5.82383e-05
5.82374e-05
5.8236e-05
5.82345e-05
5.82328e-05
5.82313e-05
5.82301e-05
5.82269e-05
5.82264e-05
5.82261e-05
5.82263e-05
5.8227e-05
5.8228e-05
5.82292e-05
5.82308e-05
5.82321e-05
5.82336e-05
5.82345e-05
5.82354e-05
5.82355e-05
5.82354e-05
5.82347e-05
5.82335e-05
5.82321e-05
5.82305e-05
5.82291e-05
5.82279e-05
5.82251e-05
5.82246e-05
5.82242e-05
5.82243e-05
5.82249e-05
5.82258e-05
5.82269e-05
5.82284e-05
5.82296e-05
5.82311e-05
5.82319e-05
5.82329e-05
5.82331e-05
5.8233e-05
5.82324e-05
5.82313e-05
5.82301e-05
5.82286e-05
5.82272e-05
5.82261e-05
5.82235e-05
5.82229e-05
5.82225e-05
5.82226e-05
5.82231e-05
5.82238e-05
5.82248e-05
5.82263e-05
5.82274e-05
5.82289e-05
5.82297e-05
5.82307e-05
5.82309e-05
5.8231e-05
5.82304e-05
5.82294e-05
5.82283e-05
5.82269e-05
5.82256e-05
5.82245e-05
5.82223e-05
5.82217e-05
5.82213e-05
5.82212e-05
5.82217e-05
5.82223e-05
5.82232e-05
5.82247e-05
5.82257e-05
5.82272e-05
5.8228e-05
5.8229e-05
5.82292e-05
5.82294e-05
5.82289e-05
5.8228e-05
5.8227e-05
5.82256e-05
5.82244e-05
5.82234e-05
5.82212e-05
5.82206e-05
5.82201e-05
5.822e-05
5.82205e-05
5.8221e-05
5.82219e-05
5.82233e-05
5.82243e-05
5.82258e-05
5.82265e-05
5.82276e-05
5.82278e-05
5.8228e-05
5.82276e-05
5.82267e-05
5.82257e-05
5.82244e-05
5.82232e-05
5.82223e-05
5.82206e-05
5.822e-05
5.82194e-05
5.82192e-05
5.82197e-05
5.82202e-05
5.82209e-05
5.82224e-05
5.82233e-05
5.82249e-05
5.82255e-05
5.82267e-05
5.82269e-05
5.82271e-05
5.82268e-05
5.82259e-05
5.82251e-05
5.82238e-05
5.82226e-05
5.82217e-05
5.822e-05
5.82195e-05
5.82189e-05
5.82187e-05
5.82191e-05
5.82196e-05
5.82203e-05
5.82217e-05
5.82226e-05
5.82241e-05
5.82248e-05
5.82259e-05
5.82261e-05
5.82264e-05
5.82261e-05
5.82252e-05
5.82244e-05
5.82232e-05
5.8222e-05
5.82211e-05
5.82499e-05
5.82488e-05
5.8248e-05
5.82494e-05
5.82502e-05
5.82496e-05
5.82513e-05
5.8255e-05
5.82531e-05
5.8258e-05
5.82552e-05
5.82603e-05
5.82567e-05
5.82605e-05
5.82591e-05
5.82546e-05
5.8256e-05
5.82528e-05
5.8253e-05
5.82521e-05
3.65708e-05
4.21935e-05
4.85532e-05
5.44388e-05
5.93843e-05
6.32939e-05
6.62852e-05
6.85315e-05
7.01981e-05
7.14032e-05
7.19927e-05
7.15512e-05
6.97247e-05
6.63986e-05
6.1464e-05
5.47346e-05
4.67937e-05
3.93441e-05
3.45139e-05
3.36634e-05
5.70099e-05
6.1553e-05
6.47219e-05
6.67514e-05
6.79322e-05
6.86404e-05
6.9152e-05
6.95795e-05
7.05879e-05
7.35905e-05
7.81233e-05
8.12853e-05
8.01122e-05
7.34172e-05
6.24381e-05
5.13769e-05
4.4462e-05
4.31889e-05
4.64237e-05
5.1821e-05
6.26331e-05
6.42332e-05
6.50934e-05
6.55055e-05
6.57206e-05
6.58664e-05
6.60756e-05
6.63866e-05
6.81072e-05
7.65159e-05
8.81858e-05
9.23405e-05
8.42351e-05
6.91476e-05
5.56888e-05
4.88831e-05
4.85921e-05
5.20405e-05
5.64084e-05
6.01073e-05
6.27384e-05
6.31888e-05
6.33605e-05
6.34291e-05
6.35488e-05
6.37148e-05
6.40085e-05
6.43983e-05
6.55361e-05
8.68047e-05
0.000114815
0.000121035
0.000102018
7.75179e-05
6.06976e-05
5.41713e-05
5.44502e-05
5.72112e-05
5.99202e-05
6.17525e-05
6.22122e-05
6.22886e-05
6.23506e-05
6.24274e-05
6.25689e-05
6.27303e-05
6.30149e-05
6.33815e-05
6.60067e-05
0.000116592
0.000173186
0.000187661
0.000161657
0.000117783
8.35285e-05
6.68225e-05
6.16541e-05
6.11045e-05
6.16088e-05
6.20246e-05
6.16619e-05
6.16871e-05
6.1732e-05
6.17995e-05
6.19262e-05
6.20763e-05
6.23353e-05
6.26695e-05
6.56037e-05
0.000129347
0.000188191
0.000187406
0.000144009
9.98588e-05
7.41344e-05
6.40776e-05
6.15433e-05
6.1341e-05
6.15156e-05
6.16219e-05
6.13126e-05
6.13424e-05
6.1399e-05
6.14746e-05
6.15883e-05
6.17215e-05
6.19371e-05
6.22317e-05
6.5025e-05
0.000114012
0.000165092
0.000179058
0.000140165
9.61368e-05
7.23736e-05
6.38478e-05
6.16727e-05
6.13049e-05
6.12856e-05
6.12966e-05
6.11166e-05
6.11453e-05
6.11915e-05
6.12532e-05
6.13426e-05
6.14554e-05
6.16246e-05
6.18751e-05
6.24471e-05
6.36535e-05
6.71895e-05
7.15816e-05
7.44936e-05
6.85901e-05
6.33479e-05
6.14108e-05
6.10503e-05
6.10547e-05
6.10833e-05
6.10981e-05
6.10011e-05
6.1031e-05
6.10741e-05
6.11294e-05
6.12007e-05
6.12967e-05
6.14216e-05
6.16435e-05
6.20481e-05
6.29204e-05
6.43199e-05
5.84762e-05
5.75532e-05
5.87931e-05
5.97731e-05
6.04253e-05
6.0778e-05
6.09179e-05
6.09625e-05
6.09804e-05
6.0934e-05
6.09594e-05
6.09937e-05
6.1038e-05
6.1093e-05
6.1171e-05
6.12655e-05
6.14556e-05
6.17586e-05
6.33038e-05
6.71818e-05
5.88474e-05
5.58631e-05
5.77325e-05
5.95071e-05
6.04049e-05
6.07595e-05
6.08711e-05
6.09018e-05
6.09159e-05
6.08932e-05
6.09156e-05
6.09447e-05
6.09813e-05
6.10243e-05
6.10856e-05
6.11555e-05
6.13077e-05
6.15184e-05
6.37103e-05
6.85177e-05
5.90828e-05
5.65262e-05
5.83684e-05
5.98504e-05
6.05296e-05
6.07748e-05
6.08462e-05
6.08656e-05
6.08771e-05
6.08665e-05
6.08849e-05
6.09083e-05
6.09374e-05
6.09711e-05
6.10183e-05
6.10738e-05
6.11899e-05
6.13767e-05
6.37032e-05
7.2706e-05
6.26856e-05
5.89055e-05
5.95312e-05
6.02802e-05
6.06517e-05
6.07913e-05
6.08326e-05
6.08443e-05
6.08532e-05
6.08486e-05
6.08638e-05
6.0883e-05
6.09064e-05
6.0933e-05
6.0968e-05
6.10109e-05
6.10912e-05
6.12438e-05
6.4517e-05
7.07767e-05
6.00096e-05
5.79103e-05
5.92684e-05
6.02102e-05
6.06269e-05
6.07752e-05
6.08181e-05
6.08298e-05
6.08375e-05
6.08347e-05
6.0847e-05
6.08625e-05
6.08812e-05
6.09025e-05
6.09288e-05
6.09621e-05
6.10172e-05
6.12162e-05
6.66106e-05
7.65514e-05
6.41215e-05
5.98921e-05
5.99869e-05
6.04155e-05
6.06693e-05
6.07758e-05
6.08098e-05
6.08195e-05
6.08258e-05
6.08238e-05
6.08336e-05
6.08462e-05
6.08613e-05
6.08783e-05
6.08979e-05
6.09233e-05
6.096e-05
6.11387e-05
6.52384e-05
6.92578e-05
5.98309e-05
5.86996e-05
5.97183e-05
6.03657e-05
6.06616e-05
6.07719e-05
6.08043e-05
6.08123e-05
6.0817e-05
6.0814e-05
6.08218e-05
6.0832e-05
6.08443e-05
6.0858e-05
6.0873e-05
6.08885e-05
6.0909e-05
6.08971e-05
5.59336e-05
4.7133e-05
4.84393e-05
5.43799e-05
5.83702e-05
6.00458e-05
6.06049e-05
6.07621e-05
6.07985e-05
6.08055e-05
6.08088e-05
6.08054e-05
6.08114e-05
6.08196e-05
6.08296e-05
6.08409e-05
6.08531e-05
6.08649e-05
6.0878e-05
6.08823e-05
6.06012e-05
6.04791e-05
6.06359e-05
6.07754e-05
6.08084e-05
6.08177e-05
6.08181e-05
6.08117e-05
6.08053e-05
6.08018e-05
6.0802e-05
6.07971e-05
6.08017e-05
6.08084e-05
6.08166e-05
6.08259e-05
6.0836e-05
6.08456e-05
6.08559e-05
6.08638e-05
6.0858e-05
6.08488e-05
6.08484e-05
6.08518e-05
6.08437e-05
6.08304e-05
6.08167e-05
6.08057e-05
6.07986e-05
6.0795e-05
6.07946e-05
6.07893e-05
6.07929e-05
6.07983e-05
6.0805e-05
6.08127e-05
6.08211e-05
6.08287e-05
6.08359e-05
6.08393e-05
6.08415e-05
6.08336e-05
6.08354e-05
6.08362e-05
6.08297e-05
6.08194e-05
6.08085e-05
6.0799e-05
6.07924e-05
6.07887e-05
6.07878e-05
6.07819e-05
6.07846e-05
6.07889e-05
6.07945e-05
6.0801e-05
6.08081e-05
6.08148e-05
6.08213e-05
6.08249e-05
6.0827e-05
6.08217e-05
6.08206e-05
6.08197e-05
6.08149e-05
6.08073e-05
6.07987e-05
6.07911e-05
6.07855e-05
6.07821e-05
6.0781e-05
6.07749e-05
6.07769e-05
6.07804e-05
6.07849e-05
6.07904e-05
6.07964e-05
6.0802e-05
6.08073e-05
6.081e-05
6.08122e-05
6.08091e-05
6.08098e-05
6.08091e-05
6.0805e-05
6.07985e-05
6.07911e-05
6.07844e-05
6.07793e-05
6.07759e-05
6.07745e-05
6.07684e-05
6.07698e-05
6.07725e-05
6.07763e-05
6.07809e-05
6.07861e-05
6.0791e-05
6.07957e-05
6.07986e-05
6.08009e-05
6.07989e-05
6.07987e-05
6.07974e-05
6.07941e-05
6.0789e-05
6.07831e-05
6.07774e-05
6.07729e-05
6.07698e-05
6.07683e-05
6.07622e-05
6.07632e-05
6.07654e-05
6.07685e-05
6.07723e-05
6.07766e-05
6.07809e-05
6.07851e-05
6.07876e-05
6.07898e-05
6.07889e-05
6.07895e-05
6.07886e-05
6.07858e-05
6.07812e-05
6.07761e-05
6.07711e-05
6.07671e-05
6.07641e-05
6.07625e-05
6.07565e-05
6.07572e-05
6.07589e-05
6.07614e-05
6.07647e-05
6.07684e-05
6.07721e-05
6.07759e-05
6.07784e-05
6.07806e-05
6.07801e-05
6.07805e-05
6.07794e-05
6.07772e-05
6.07735e-05
6.07693e-05
6.0765e-05
6.07613e-05
6.07586e-05
6.0757e-05
6.07513e-05
6.07516e-05
6.07529e-05
6.0755e-05
6.07577e-05
6.07609e-05
6.07642e-05
6.07675e-05
6.07698e-05
6.07719e-05
6.0772e-05
6.07726e-05
6.07719e-05
6.077e-05
6.07668e-05
6.07631e-05
6.07594e-05
6.07561e-05
6.07535e-05
6.07519e-05
6.07464e-05
6.07466e-05
6.07475e-05
6.07492e-05
6.07515e-05
6.07543e-05
6.07572e-05
6.07602e-05
6.07624e-05
6.07644e-05
6.07647e-05
6.07653e-05
6.07647e-05
6.07632e-05
6.07605e-05
6.07574e-05
6.0754e-05
6.07511e-05
6.07487e-05
6.07472e-05
6.0742e-05
6.0742e-05
6.07427e-05
6.0744e-05
6.0746e-05
6.07484e-05
6.07509e-05
6.07536e-05
6.07556e-05
6.07576e-05
6.07582e-05
6.07588e-05
6.07584e-05
6.07572e-05
6.07549e-05
6.07522e-05
6.07492e-05
6.07466e-05
6.07444e-05
6.07428e-05
6.0738e-05
6.07378e-05
6.07383e-05
6.07394e-05
6.07411e-05
6.07431e-05
6.07454e-05
6.07478e-05
6.07497e-05
6.07516e-05
6.07522e-05
6.0753e-05
6.07526e-05
6.07517e-05
6.07498e-05
6.07474e-05
6.07448e-05
6.07424e-05
6.07404e-05
6.07389e-05
6.07344e-05
6.07341e-05
6.07344e-05
6.07352e-05
6.07366e-05
6.07384e-05
6.07404e-05
6.07426e-05
6.07444e-05
6.07462e-05
6.0747e-05
6.07478e-05
6.07475e-05
6.07468e-05
6.07452e-05
6.07431e-05
6.07408e-05
6.07386e-05
6.07367e-05
6.07353e-05
6.07311e-05
6.07308e-05
6.07309e-05
6.07316e-05
6.07328e-05
6.07343e-05
6.07361e-05
6.07381e-05
6.07398e-05
6.07415e-05
6.07423e-05
6.07431e-05
6.0743e-05
6.07424e-05
6.0741e-05
6.07392e-05
6.07372e-05
6.07352e-05
6.07334e-05
6.07321e-05
6.07282e-05
6.07278e-05
6.07278e-05
6.07283e-05
6.07293e-05
6.07307e-05
6.07323e-05
6.07341e-05
6.07357e-05
6.07373e-05
6.07382e-05
6.0739e-05
6.0739e-05
6.07386e-05
6.07374e-05
6.07358e-05
6.0734e-05
6.07322e-05
6.07305e-05
6.07292e-05
6.07257e-05
6.07252e-05
6.07251e-05
6.07255e-05
6.07264e-05
6.07275e-05
6.0729e-05
6.07307e-05
6.07321e-05
6.07337e-05
6.07346e-05
6.07355e-05
6.07355e-05
6.07352e-05
6.07342e-05
6.07328e-05
6.07312e-05
6.07295e-05
6.07279e-05
6.07267e-05
6.07235e-05
6.0723e-05
6.07228e-05
6.0723e-05
6.07238e-05
6.07248e-05
6.07261e-05
6.07277e-05
6.0729e-05
6.07306e-05
6.07314e-05
6.07323e-05
6.07324e-05
6.07322e-05
6.07314e-05
6.07301e-05
6.07287e-05
6.07271e-05
6.07256e-05
6.07245e-05
6.07216e-05
6.07211e-05
6.07208e-05
6.07209e-05
6.07216e-05
6.07225e-05
6.07236e-05
6.07252e-05
6.07264e-05
6.0728e-05
6.07288e-05
6.07297e-05
6.07299e-05
6.07298e-05
6.07291e-05
6.07279e-05
6.07266e-05
6.07251e-05
6.07237e-05
6.07226e-05
6.07199e-05
6.07194e-05
6.0719e-05
6.07191e-05
6.07197e-05
6.07205e-05
6.07215e-05
6.0723e-05
6.07242e-05
6.07257e-05
6.07265e-05
6.07275e-05
6.07276e-05
6.07276e-05
6.0727e-05
6.07259e-05
6.07248e-05
6.07234e-05
6.0722e-05
6.0721e-05
6.07187e-05
6.07181e-05
6.07177e-05
6.07177e-05
6.07182e-05
6.07189e-05
6.07198e-05
6.07213e-05
6.07224e-05
6.07239e-05
6.07247e-05
6.07257e-05
6.07259e-05
6.0726e-05
6.07255e-05
6.07245e-05
6.07234e-05
6.0722e-05
6.07207e-05
6.07197e-05
6.07175e-05
6.0717e-05
6.07165e-05
6.07164e-05
6.0717e-05
6.07175e-05
6.07184e-05
6.07199e-05
6.07209e-05
6.07224e-05
6.07231e-05
6.07242e-05
6.07244e-05
6.07245e-05
6.07241e-05
6.07231e-05
6.07221e-05
6.07208e-05
6.07195e-05
6.07186e-05
6.07169e-05
6.07164e-05
6.07158e-05
6.07156e-05
6.07162e-05
6.07167e-05
6.07174e-05
6.0719e-05
6.07199e-05
6.07215e-05
6.07222e-05
6.07233e-05
6.07234e-05
6.07237e-05
6.07233e-05
6.07223e-05
6.07215e-05
6.07201e-05
6.07189e-05
6.0718e-05
6.07163e-05
6.07158e-05
6.07152e-05
6.0715e-05
6.07155e-05
6.0716e-05
6.07167e-05
6.07183e-05
6.07191e-05
6.07207e-05
6.07213e-05
6.07225e-05
6.07226e-05
6.07229e-05
6.07226e-05
6.07216e-05
6.07208e-05
6.07195e-05
6.07183e-05
6.07174e-05
6.07461e-05
6.07445e-05
6.07441e-05
6.07458e-05
6.0746e-05
6.07459e-05
6.07479e-05
6.0751e-05
6.07496e-05
6.07539e-05
6.07517e-05
6.07562e-05
6.07531e-05
6.07563e-05
6.07547e-05
6.07508e-05
6.07517e-05
6.07489e-05
6.07494e-05
6.07478e-05
3.9449e-05
4.57258e-05
5.23472e-05
5.82354e-05
6.30625e-05
6.68152e-05
6.96551e-05
7.17762e-05
7.33631e-05
7.45548e-05
7.51561e-05
7.46467e-05
7.25761e-05
6.87826e-05
6.31593e-05
5.56258e-05
4.7095e-05
3.96189e-05
3.54032e-05
3.55576e-05
6.06415e-05
6.49282e-05
6.78752e-05
6.97364e-05
7.08087e-05
7.1464e-05
7.19653e-05
7.24083e-05
7.36607e-05
7.75348e-05
8.34235e-05
8.76914e-05
8.66726e-05
7.90304e-05
6.66191e-05
5.46428e-05
4.7634e-05
4.67092e-05
5.02453e-05
5.56603e-05
6.56326e-05
6.70899e-05
6.78571e-05
6.82165e-05
6.84161e-05
6.85668e-05
6.8801e-05
6.9153e-05
7.12775e-05
8.15716e-05
9.5672e-05
0.000100738
9.15453e-05
7.46703e-05
5.99786e-05
5.27099e-05
5.2308e-05
5.56431e-05
5.98142e-05
6.32954e-05
6.55024e-05
6.58899e-05
6.60366e-05
6.61042e-05
6.62363e-05
6.64166e-05
6.6735e-05
6.71538e-05
6.84011e-05
9.33368e-05
0.000125474
0.000131975
0.000110217
8.318e-05
6.48909e-05
5.77923e-05
5.78487e-05
6.04277e-05
6.29524e-05
6.46268e-05
6.48902e-05
6.49537e-05
6.50179e-05
6.51013e-05
6.52531e-05
6.54241e-05
6.57281e-05
6.61164e-05
6.89852e-05
0.000127917
0.000192477
0.000208101
0.000177637
0.000127548
8.92771e-05
7.07969e-05
6.49415e-05
6.40836e-05
6.44197e-05
6.47438e-05
6.43214e-05
6.43473e-05
6.43978e-05
6.44724e-05
6.4608e-05
6.47658e-05
6.50394e-05
6.53897e-05
6.85785e-05
0.000142887
0.000209498
0.000206419
0.000156276
0.000106913
7.85589e-05
6.74575e-05
6.45152e-05
6.41307e-05
6.42198e-05
6.42909e-05
6.39717e-05
6.40051e-05
6.40668e-05
6.41472e-05
6.4267e-05
6.44061e-05
6.46322e-05
6.49401e-05
6.79812e-05
0.000125842
0.000185193
0.000199396
0.00015293
0.000103012
7.65494e-05
6.70336e-05
6.45128e-05
6.40202e-05
6.39571e-05
6.39559e-05
6.37758e-05
6.3808e-05
6.38584e-05
6.39244e-05
6.40187e-05
6.41365e-05
6.43131e-05
6.45744e-05
6.51857e-05
6.70136e-05
7.17098e-05
7.72357e-05
8.01583e-05
7.29044e-05
6.67027e-05
6.43271e-05
6.37939e-05
6.37353e-05
6.37442e-05
6.37554e-05
6.36614e-05
6.36942e-05
6.37406e-05
6.37991e-05
6.3874e-05
6.39742e-05
6.41039e-05
6.43352e-05
6.47633e-05
6.63889e-05
6.88022e-05
6.26056e-05
6.14563e-05
6.2252e-05
6.28131e-05
6.32308e-05
6.34827e-05
6.35864e-05
6.36211e-05
6.36384e-05
6.35944e-05
6.36223e-05
6.36593e-05
6.37064e-05
6.37643e-05
6.38457e-05
6.39436e-05
6.41414e-05
6.44592e-05
6.69275e-05
7.21896e-05
6.2969e-05
5.95054e-05
6.10025e-05
6.24468e-05
6.31649e-05
6.34467e-05
6.35345e-05
6.35598e-05
6.35742e-05
6.35538e-05
6.35782e-05
6.36094e-05
6.36482e-05
6.36935e-05
6.37575e-05
6.38298e-05
6.39878e-05
6.42068e-05
6.74823e-05
7.37192e-05
6.32066e-05
6.01225e-05
6.15567e-05
6.27311e-05
6.32622e-05
6.34527e-05
6.35077e-05
6.35237e-05
6.35359e-05
6.35269e-05
6.3547e-05
6.35722e-05
6.36031e-05
6.36387e-05
6.3688e-05
6.37454e-05
6.38655e-05
6.4059e-05
6.75275e-05
7.85242e-05
6.70942e-05
6.25514e-05
6.26757e-05
6.31229e-05
6.33673e-05
6.34639e-05
6.34931e-05
6.35026e-05
6.35121e-05
6.35088e-05
6.35254e-05
6.35461e-05
6.35709e-05
6.35991e-05
6.36357e-05
6.368e-05
6.37628e-05
6.39206e-05
6.84686e-05
7.63356e-05
6.41933e-05
6.14646e-05
6.23701e-05
6.30365e-05
6.3338e-05
6.34472e-05
6.3479e-05
6.34884e-05
6.34966e-05
6.34946e-05
6.35081e-05
6.35248e-05
6.35447e-05
6.35672e-05
6.35948e-05
6.36293e-05
6.36859e-05
6.38926e-05
7.08453e-05
8.27264e-05
6.85562e-05
6.3495e-05
6.30807e-05
6.32322e-05
6.33763e-05
6.34468e-05
6.34707e-05
6.34782e-05
6.34848e-05
6.34834e-05
6.34941e-05
6.35078e-05
6.35238e-05
6.35418e-05
6.35624e-05
6.35887e-05
6.36263e-05
6.3812e-05
6.93395e-05
7.46071e-05
6.39288e-05
6.21997e-05
6.27694e-05
6.31671e-05
6.33642e-05
6.34419e-05
6.3465e-05
6.3471e-05
6.34758e-05
6.34732e-05
6.34818e-05
6.34929e-05
6.35059e-05
6.35205e-05
6.35363e-05
6.35524e-05
6.35736e-05
6.35578e-05
5.87295e-05
4.97944e-05
5.14905e-05
5.75247e-05
6.1309e-05
6.28149e-05
6.32982e-05
6.34293e-05
6.34584e-05
6.34639e-05
6.34674e-05
6.34642e-05
6.34709e-05
6.34798e-05
6.34905e-05
6.35025e-05
6.35153e-05
6.35276e-05
6.35409e-05
6.3545e-05
6.32992e-05
6.31753e-05
6.33237e-05
6.34512e-05
6.34765e-05
6.34809e-05
6.34778e-05
6.34697e-05
6.34629e-05
6.34596e-05
6.34602e-05
6.34555e-05
6.34607e-05
6.3468e-05
6.34768e-05
6.34868e-05
6.34973e-05
6.35073e-05
6.35178e-05
6.35256e-05
6.35201e-05
6.35102e-05
6.35096e-05
6.35122e-05
6.3503e-05
6.34887e-05
6.34744e-05
6.34631e-05
6.3456e-05
6.34526e-05
6.34526e-05
6.34474e-05
6.34514e-05
6.34573e-05
6.34646e-05
6.34728e-05
6.34816e-05
6.34895e-05
6.34968e-05
6.35e-05
6.3502e-05
6.34933e-05
6.34955e-05
6.34958e-05
6.34885e-05
6.34775e-05
6.3466e-05
6.34563e-05
6.34497e-05
6.34461e-05
6.34455e-05
6.34397e-05
6.34428e-05
6.34475e-05
6.34535e-05
6.34605e-05
6.34679e-05
6.34749e-05
6.34815e-05
6.3485e-05
6.34868e-05
6.3481e-05
6.34799e-05
6.34786e-05
6.34733e-05
6.34651e-05
6.34562e-05
6.34483e-05
6.34426e-05
6.34393e-05
6.34384e-05
6.34324e-05
6.34347e-05
6.34385e-05
6.34435e-05
6.34493e-05
6.34555e-05
6.34614e-05
6.34668e-05
6.34694e-05
6.34714e-05
6.3468e-05
6.34688e-05
6.34677e-05
6.34632e-05
6.34561e-05
6.34484e-05
6.34414e-05
6.34362e-05
6.3433e-05
6.34318e-05
6.34256e-05
6.34273e-05
6.34303e-05
6.34344e-05
6.34393e-05
6.34447e-05
6.34498e-05
6.34547e-05
6.34575e-05
6.34597e-05
6.34573e-05
6.34571e-05
6.34555e-05
6.34519e-05
6.34463e-05
6.34402e-05
6.34343e-05
6.34297e-05
6.34266e-05
6.34253e-05
6.34192e-05
6.34204e-05
6.34228e-05
6.34261e-05
6.34303e-05
6.34348e-05
6.34393e-05
6.34436e-05
6.3446e-05
6.34481e-05
6.3447e-05
6.34475e-05
6.34464e-05
6.34433e-05
6.34383e-05
6.3433e-05
6.34278e-05
6.34237e-05
6.34208e-05
6.34193e-05
6.34132e-05
6.3414e-05
6.34159e-05
6.34187e-05
6.34222e-05
6.34261e-05
6.343e-05
6.34338e-05
6.34363e-05
6.34385e-05
6.34379e-05
6.34381e-05
6.34369e-05
6.34344e-05
6.34305e-05
6.3426e-05
6.34215e-05
6.34178e-05
6.34151e-05
6.34136e-05
6.34077e-05
6.34082e-05
6.34097e-05
6.3412e-05
6.34149e-05
6.34183e-05
6.34217e-05
6.34251e-05
6.34274e-05
6.34295e-05
6.34294e-05
6.343e-05
6.3429e-05
6.3427e-05
6.34235e-05
6.34196e-05
6.34157e-05
6.34123e-05
6.34098e-05
6.34083e-05
6.34027e-05
6.3403e-05
6.34041e-05
6.34059e-05
6.34084e-05
6.34113e-05
6.34144e-05
6.34174e-05
6.34196e-05
6.34216e-05
6.34218e-05
6.34224e-05
6.34216e-05
6.34199e-05
6.3417e-05
6.34137e-05
6.34102e-05
6.34072e-05
6.34049e-05
6.34033e-05
6.33981e-05
6.33982e-05
6.3399e-05
6.34005e-05
6.34026e-05
6.34051e-05
6.34078e-05
6.34105e-05
6.34125e-05
6.34145e-05
6.3415e-05
6.34156e-05
6.3415e-05
6.34137e-05
6.34112e-05
6.34083e-05
6.34053e-05
6.34025e-05
6.34003e-05
6.33988e-05
6.33939e-05
6.33938e-05
6.33944e-05
6.33956e-05
6.33974e-05
6.33996e-05
6.3402e-05
6.34044e-05
6.34064e-05
6.34082e-05
6.34088e-05
6.34095e-05
6.34091e-05
6.3408e-05
6.34059e-05
6.34034e-05
6.34007e-05
6.33982e-05
6.33962e-05
6.33947e-05
6.33901e-05
6.33899e-05
6.33903e-05
6.33913e-05
6.33928e-05
6.33947e-05
6.33968e-05
6.3399e-05
6.34008e-05
6.34026e-05
6.34033e-05
6.34041e-05
6.34038e-05
6.34029e-05
6.34011e-05
6.3399e-05
6.33966e-05
6.33943e-05
6.33924e-05
6.3391e-05
6.33868e-05
6.33865e-05
6.33867e-05
6.33874e-05
6.33887e-05
6.33904e-05
6.33922e-05
6.33943e-05
6.3396e-05
6.33977e-05
6.33985e-05
6.33993e-05
6.33991e-05
6.33984e-05
6.33969e-05
6.3395e-05
6.33929e-05
6.33908e-05
6.3389e-05
6.33877e-05
6.33837e-05
6.33834e-05
6.33834e-05
6.3384e-05
6.33851e-05
6.33866e-05
6.33882e-05
6.33901e-05
6.33917e-05
6.33934e-05
6.33942e-05
6.3395e-05
6.33949e-05
6.33944e-05
6.33931e-05
6.33914e-05
6.33896e-05
6.33877e-05
6.3386e-05
6.33847e-05
6.33811e-05
6.33807e-05
6.33806e-05
6.33811e-05
6.3382e-05
6.33833e-05
6.33848e-05
6.33866e-05
6.3388e-05
6.33896e-05
6.33905e-05
6.33913e-05
6.33913e-05
6.33909e-05
6.33898e-05
6.33883e-05
6.33866e-05
6.33849e-05
6.33833e-05
6.33821e-05
6.33788e-05
6.33783e-05
6.33782e-05
6.33784e-05
6.33793e-05
6.33804e-05
6.33817e-05
6.33834e-05
6.33848e-05
6.33864e-05
6.33872e-05
6.33881e-05
6.33881e-05
6.33878e-05
6.33869e-05
6.33856e-05
6.33841e-05
6.33824e-05
6.33809e-05
6.33798e-05
6.33768e-05
6.33763e-05
6.33761e-05
6.33763e-05
6.3377e-05
6.3378e-05
6.33792e-05
6.33808e-05
6.33821e-05
6.33836e-05
6.33844e-05
6.33854e-05
6.33854e-05
6.33853e-05
6.33845e-05
6.33833e-05
6.33819e-05
6.33804e-05
6.33789e-05
6.33778e-05
6.33751e-05
6.33746e-05
6.33743e-05
6.33744e-05
6.3375e-05
6.33759e-05
6.3377e-05
6.33785e-05
6.33797e-05
6.33813e-05
6.3382e-05
6.3383e-05
6.33831e-05
6.33831e-05
6.33824e-05
6.33812e-05
6.338e-05
6.33786e-05
6.33772e-05
6.33761e-05
6.33738e-05
6.33733e-05
6.33729e-05
6.33729e-05
6.33735e-05
6.33742e-05
6.33752e-05
6.33768e-05
6.33779e-05
6.33794e-05
6.33802e-05
6.33812e-05
6.33813e-05
6.33814e-05
6.33808e-05
6.33797e-05
6.33786e-05
6.33772e-05
6.33759e-05
6.33749e-05
6.33726e-05
6.33721e-05
6.33716e-05
6.33716e-05
6.33722e-05
6.33728e-05
6.33737e-05
6.33753e-05
6.33763e-05
6.33778e-05
6.33786e-05
6.33796e-05
6.33797e-05
6.33798e-05
6.33793e-05
6.33783e-05
6.33773e-05
6.33759e-05
6.33746e-05
6.33737e-05
6.33719e-05
6.33715e-05
6.33709e-05
6.33708e-05
6.33714e-05
6.33719e-05
6.33727e-05
6.33743e-05
6.33753e-05
6.33769e-05
6.33775e-05
6.33786e-05
6.33788e-05
6.3379e-05
6.33785e-05
6.33775e-05
6.33766e-05
6.33752e-05
6.3374e-05
6.33731e-05
6.33713e-05
6.33708e-05
6.33702e-05
6.33701e-05
6.33707e-05
6.33712e-05
6.3372e-05
6.33735e-05
6.33744e-05
6.3376e-05
6.33767e-05
6.33778e-05
6.33779e-05
6.33782e-05
6.33778e-05
6.33768e-05
6.33759e-05
6.33745e-05
6.33733e-05
6.33725e-05
6.34011e-05
6.33989e-05
6.33991e-05
6.3401e-05
6.34006e-05
6.3401e-05
6.34032e-05
6.34057e-05
6.34047e-05
6.34086e-05
6.34069e-05
6.34109e-05
6.34083e-05
6.34109e-05
6.3409e-05
6.34058e-05
6.34061e-05
6.34039e-05
6.34045e-05
6.34022e-05
4.27623e-05
4.9613e-05
5.64114e-05
6.22457e-05
6.69214e-05
7.04994e-05
7.31814e-05
7.51793e-05
7.67003e-05
7.79091e-05
7.8558e-05
7.7994e-05
7.56477e-05
7.13072e-05
6.48913e-05
5.64902e-05
4.74167e-05
4.00638e-05
3.66317e-05
3.78922e-05
6.44434e-05
6.84586e-05
7.11833e-05
7.28781e-05
7.38478e-05
7.44568e-05
7.49552e-05
7.54217e-05
7.6989e-05
8.1962e-05
8.95282e-05
9.51327e-05
9.42627e-05
8.54615e-05
7.14135e-05
5.845e-05
5.13219e-05
5.06733e-05
5.43924e-05
5.97196e-05
6.87929e-05
7.01067e-05
7.0784e-05
7.10959e-05
7.12846e-05
7.14438e-05
7.17071e-05
7.21057e-05
7.47235e-05
8.72828e-05
0.000104227
0.000110292
9.98054e-05
8.08951e-05
6.48028e-05
5.69476e-05
5.63293e-05
5.94721e-05
6.34035e-05
6.66493e-05
6.84287e-05
6.87579e-05
6.88839e-05
6.89537e-05
6.90999e-05
6.92956e-05
6.96409e-05
7.00914e-05
7.14578e-05
0.000100592
0.000137245
0.000143823
0.00011898
8.92093e-05
6.93587e-05
6.16484e-05
6.14495e-05
6.3821e-05
6.61475e-05
6.76604e-05
6.77374e-05
6.77914e-05
6.78593e-05
6.79502e-05
6.81133e-05
6.82946e-05
6.86195e-05
6.90313e-05
7.21584e-05
0.000140563
0.000213782
0.000230318
0.000194571
0.00013766
9.51953e-05
7.49243e-05
6.83814e-05
6.7216e-05
6.73884e-05
6.76269e-05
6.71534e-05
6.71815e-05
6.72384e-05
6.73205e-05
6.74655e-05
6.76315e-05
6.79208e-05
6.82884e-05
7.17451e-05
0.000158057
0.000232961
0.000226739
0.000169054
0.000114158
8.31188e-05
7.09772e-05
6.76355e-05
6.70777e-05
6.70888e-05
6.71297e-05
6.68044e-05
6.68421e-05
6.69092e-05
6.69947e-05
6.71211e-05
6.72665e-05
6.75039e-05
6.78258e-05
7.11272e-05
0.000139265
0.000207919
0.000221728
0.000166513
0.000110195
8.08971e-05
7.03687e-05
6.75079e-05
6.68993e-05
6.6798e-05
6.67875e-05
6.6609e-05
6.6645e-05
6.66999e-05
6.67704e-05
6.68699e-05
6.69931e-05
6.71776e-05
6.74505e-05
6.8105e-05
7.07084e-05
7.68199e-05
8.36062e-05
8.63173e-05
7.74804e-05
7.02317e-05
6.74024e-05
6.67009e-05
6.65848e-05
6.6577e-05
6.6586e-05
6.64956e-05
6.65317e-05
6.65815e-05
6.66435e-05
6.67222e-05
6.68269e-05
6.69616e-05
6.7203e-05
6.7657e-05
7.02214e-05
7.38636e-05
6.72187e-05
6.5709e-05
6.59417e-05
6.6029e-05
6.62021e-05
6.63556e-05
6.64262e-05
6.64527e-05
6.64701e-05
6.64288e-05
6.64594e-05
6.64993e-05
6.65494e-05
6.66104e-05
6.66954e-05
6.67969e-05
6.70028e-05
6.73366e-05
7.09443e-05
7.78598e-05
6.75528e-05
6.3473e-05
6.44939e-05
6.55624e-05
6.60932e-05
6.63041e-05
6.63702e-05
6.6391e-05
6.64063e-05
6.63883e-05
6.64149e-05
6.64485e-05
6.64896e-05
6.65374e-05
6.66042e-05
6.6679e-05
6.68431e-05
6.70711e-05
7.16764e-05
7.96022e-05
6.77818e-05
6.40287e-05
6.4956e-05
6.57859e-05
6.61642e-05
6.63017e-05
6.63418e-05
6.63553e-05
6.63685e-05
6.63613e-05
6.63832e-05
6.64103e-05
6.64432e-05
6.64808e-05
6.65323e-05
6.65917e-05
6.6716e-05
6.69165e-05
7.17859e-05
8.51145e-05
7.19734e-05
6.64989e-05
6.60241e-05
6.61386e-05
6.6253e-05
6.63083e-05
6.63265e-05
6.63343e-05
6.63449e-05
6.63429e-05
6.6361e-05
6.63832e-05
6.64097e-05
6.64395e-05
6.64777e-05
6.65237e-05
6.66089e-05
6.67721e-05
7.28735e-05
8.26243e-05
6.88199e-05
6.53099e-05
6.56732e-05
6.60363e-05
6.62197e-05
6.62912e-05
6.63129e-05
6.63205e-05
6.63294e-05
6.63284e-05
6.63431e-05
6.63612e-05
6.63824e-05
6.64063e-05
6.64351e-05
6.64709e-05
6.6529e-05
6.67435e-05
7.55775e-05
8.97037e-05
7.34499e-05
6.73876e-05
6.6374e-05
6.62219e-05
6.62541e-05
6.629e-05
6.63047e-05
6.63105e-05
6.63175e-05
6.63168e-05
6.63285e-05
6.63433e-05
6.63604e-05
6.63796e-05
6.64011e-05
6.64284e-05
6.64668e-05
6.66597e-05
7.39226e-05
8.064e-05
6.84468e-05
6.59755e-05
6.60157e-05
6.61411e-05
6.62376e-05
6.62841e-05
6.62989e-05
6.63033e-05
6.63083e-05
6.63062e-05
6.63156e-05
6.63277e-05
6.63417e-05
6.63571e-05
6.63737e-05
6.63905e-05
6.64123e-05
6.6392e-05
6.17927e-05
5.27509e-05
5.48432e-05
6.09059e-05
6.4433e-05
6.57556e-05
6.61629e-05
6.62692e-05
6.62917e-05
6.6296e-05
6.62997e-05
6.62968e-05
6.63042e-05
6.63139e-05
6.63254e-05
6.63381e-05
6.63516e-05
6.63643e-05
6.63779e-05
6.63817e-05
6.61813e-05
6.6051e-05
6.61871e-05
6.63011e-05
6.63184e-05
6.63176e-05
6.63109e-05
6.63012e-05
6.62942e-05
6.62911e-05
6.62922e-05
6.62877e-05
6.62936e-05
6.63015e-05
6.6311e-05
6.63215e-05
6.63326e-05
6.6343e-05
6.63537e-05
6.63614e-05
6.63563e-05
6.63455e-05
6.63446e-05
6.63465e-05
6.6336e-05
6.63206e-05
6.63057e-05
6.62941e-05
6.62871e-05
6.62839e-05
6.62843e-05
6.62793e-05
6.62838e-05
6.62902e-05
6.6298e-05
6.63068e-05
6.6316e-05
6.63243e-05
6.63317e-05
6.63347e-05
6.63364e-05
6.63268e-05
6.63295e-05
6.63292e-05
6.63211e-05
6.63092e-05
6.62972e-05
6.62872e-05
6.62806e-05
6.62772e-05
6.62769e-05
6.62712e-05
6.62747e-05
6.62799e-05
6.62864e-05
6.62938e-05
6.63016e-05
6.63088e-05
6.63156e-05
6.6319e-05
6.63205e-05
6.6314e-05
6.63129e-05
6.63113e-05
6.63054e-05
6.62966e-05
6.62872e-05
6.62791e-05
6.62734e-05
6.62703e-05
6.62696e-05
6.62636e-05
6.62663e-05
6.62705e-05
6.62758e-05
6.6282e-05
6.62886e-05
6.62947e-05
6.63001e-05
6.63027e-05
6.63045e-05
6.63006e-05
6.63014e-05
6.62999e-05
6.6295e-05
6.62873e-05
6.62793e-05
6.62721e-05
6.62668e-05
6.62637e-05
6.62626e-05
6.62564e-05
6.62584e-05
6.62618e-05
6.62662e-05
6.62715e-05
6.62771e-05
6.62825e-05
6.62874e-05
6.62902e-05
6.62922e-05
6.62895e-05
6.62892e-05
6.62873e-05
6.62834e-05
6.62773e-05
6.62709e-05
6.62647e-05
6.62601e-05
6.62571e-05
6.62559e-05
6.62498e-05
6.62512e-05
6.62539e-05
6.62575e-05
6.6262e-05
6.62667e-05
6.62714e-05
6.62758e-05
6.62782e-05
6.62802e-05
6.62788e-05
6.62793e-05
6.62778e-05
6.62744e-05
6.62691e-05
6.62635e-05
6.62581e-05
6.62539e-05
6.6251e-05
6.62497e-05
6.62436e-05
6.62446e-05
6.62467e-05
6.62497e-05
6.62535e-05
6.62576e-05
6.62617e-05
6.62655e-05
6.6268e-05
6.62701e-05
6.62693e-05
6.62695e-05
6.6268e-05
6.62653e-05
6.6261e-05
6.62563e-05
6.62516e-05
6.62479e-05
6.62451e-05
6.62437e-05
6.62378e-05
6.62385e-05
6.62402e-05
6.62426e-05
6.62458e-05
6.62494e-05
6.6253e-05
6.62564e-05
6.62587e-05
6.62607e-05
6.62605e-05
6.6261e-05
6.62598e-05
6.62575e-05
6.62538e-05
6.62498e-05
6.62457e-05
6.62422e-05
6.62397e-05
6.62382e-05
6.62326e-05
6.6233e-05
6.62343e-05
6.62363e-05
6.6239e-05
6.62421e-05
6.62452e-05
6.62483e-05
6.62505e-05
6.62524e-05
6.62525e-05
6.62531e-05
6.62521e-05
6.62502e-05
6.62471e-05
6.62436e-05
6.624e-05
6.6237e-05
6.62346e-05
6.62331e-05
6.62278e-05
6.6228e-05
6.62289e-05
6.62306e-05
6.62329e-05
6.62355e-05
6.62383e-05
6.62411e-05
6.62431e-05
6.62451e-05
6.62455e-05
6.62461e-05
6.62453e-05
6.62438e-05
6.62411e-05
6.62381e-05
6.62349e-05
6.62321e-05
6.62299e-05
6.62284e-05
6.62234e-05
6.62234e-05
6.62241e-05
6.62255e-05
6.62274e-05
6.62297e-05
6.62322e-05
6.62347e-05
6.62367e-05
6.62385e-05
6.6239e-05
6.62397e-05
6.62391e-05
6.62379e-05
6.62356e-05
6.6233e-05
6.62302e-05
6.62277e-05
6.62256e-05
6.62242e-05
6.62195e-05
6.62194e-05
6.62198e-05
6.62209e-05
6.62226e-05
6.62246e-05
6.62268e-05
6.62291e-05
6.62309e-05
6.62327e-05
6.62333e-05
6.6234e-05
6.62336e-05
6.62326e-05
6.62307e-05
6.62284e-05
6.62259e-05
6.62236e-05
6.62217e-05
6.62203e-05
6.6216e-05
6.62157e-05
6.6216e-05
6.62169e-05
6.62183e-05
6.622e-05
6.6222e-05
6.62241e-05
6.62258e-05
6.62275e-05
6.62283e-05
6.6229e-05
6.62287e-05
6.62279e-05
6.62263e-05
6.62243e-05
6.62221e-05
6.622e-05
6.62182e-05
6.62168e-05
6.62128e-05
6.62125e-05
6.62127e-05
6.62133e-05
6.62145e-05
6.6216e-05
6.62178e-05
6.62198e-05
6.62214e-05
6.6223e-05
6.62238e-05
6.62246e-05
6.62244e-05
6.62238e-05
6.62224e-05
6.62206e-05
6.62187e-05
6.62167e-05
6.6215e-05
6.62137e-05
6.62101e-05
6.62097e-05
6.62097e-05
6.62102e-05
6.62113e-05
6.62126e-05
6.62142e-05
6.6216e-05
6.62175e-05
6.62191e-05
6.62199e-05
6.62207e-05
6.62206e-05
6.62202e-05
6.6219e-05
6.62174e-05
6.62157e-05
6.62139e-05
6.62123e-05
6.6211e-05
6.62077e-05
6.62072e-05
6.62071e-05
6.62075e-05
6.62084e-05
6.62096e-05
6.6211e-05
6.62127e-05
6.62141e-05
6.62157e-05
6.62165e-05
6.62174e-05
6.62173e-05
6.6217e-05
6.6216e-05
6.62146e-05
6.6213e-05
6.62113e-05
6.62098e-05
6.62086e-05
6.62056e-05
6.62052e-05
6.6205e-05
6.62052e-05
6.62061e-05
6.62071e-05
6.62083e-05
6.621e-05
6.62113e-05
6.62129e-05
6.62137e-05
6.62146e-05
6.62146e-05
6.62144e-05
6.62135e-05
6.62122e-05
6.62108e-05
6.62092e-05
6.62077e-05
6.62066e-05
6.62038e-05
6.62034e-05
6.62031e-05
6.62032e-05
6.6204e-05
6.62049e-05
6.6206e-05
6.62076e-05
6.62088e-05
6.62104e-05
6.62112e-05
6.62121e-05
6.62122e-05
6.62121e-05
6.62113e-05
6.62101e-05
6.62088e-05
6.62073e-05
6.62059e-05
6.62049e-05
6.62025e-05
6.6202e-05
6.62016e-05
6.62017e-05
6.62024e-05
6.62031e-05
6.62042e-05
6.62058e-05
6.62069e-05
6.62085e-05
6.62092e-05
6.62102e-05
6.62103e-05
6.62103e-05
6.62097e-05
6.62085e-05
6.62074e-05
6.62059e-05
6.62046e-05
6.62035e-05
6.62012e-05
6.62008e-05
6.62003e-05
6.62003e-05
6.6201e-05
6.62016e-05
6.62026e-05
6.62042e-05
6.62053e-05
6.62068e-05
6.62075e-05
6.62086e-05
6.62087e-05
6.62087e-05
6.62082e-05
6.62071e-05
6.6206e-05
6.62046e-05
6.62033e-05
6.62023e-05
6.62006e-05
6.62001e-05
6.61995e-05
6.61995e-05
6.62001e-05
6.62007e-05
6.62016e-05
6.62032e-05
6.62042e-05
6.62058e-05
6.62065e-05
6.62076e-05
6.62077e-05
6.62078e-05
6.62073e-05
6.62063e-05
6.62053e-05
6.62039e-05
6.62026e-05
6.62017e-05
6.61999e-05
6.61994e-05
6.61989e-05
6.61988e-05
6.61994e-05
6.61999e-05
6.62008e-05
6.62024e-05
6.62033e-05
6.6205e-05
6.62056e-05
6.62067e-05
6.62068e-05
6.6207e-05
6.62065e-05
6.62055e-05
6.62046e-05
6.62032e-05
6.62019e-05
6.62011e-05
6.62296e-05
6.62269e-05
6.62276e-05
6.62298e-05
6.62288e-05
6.62296e-05
6.6232e-05
6.6234e-05
6.62335e-05
6.62368e-05
6.62356e-05
6.62391e-05
6.6237e-05
6.62391e-05
6.62368e-05
6.62343e-05
6.62341e-05
6.62324e-05
6.62332e-05
6.62302e-05
4.65285e-05
5.38564e-05
6.07456e-05
6.64733e-05
7.09667e-05
7.43547e-05
7.68749e-05
7.87552e-05
8.0229e-05
8.1494e-05
8.22345e-05
8.16303e-05
7.89657e-05
7.39823e-05
6.66569e-05
5.73357e-05
4.77972e-05
4.07427e-05
3.82671e-05
4.07144e-05
6.84228e-05
7.2156e-05
7.46588e-05
7.61892e-05
7.70636e-05
7.76339e-05
7.81379e-05
7.86369e-05
8.06073e-05
8.69572e-05
9.65843e-05
0.000103786
0.000103036
9.28162e-05
7.69071e-05
6.28715e-05
5.55685e-05
5.50893e-05
5.88566e-05
6.39955e-05
7.21256e-05
7.32966e-05
7.38883e-05
7.41587e-05
7.43412e-05
7.45126e-05
7.48093e-05
7.52609e-05
7.84794e-05
9.37531e-05
0.000114013
0.00012116
0.000109131
8.78977e-05
7.02032e-05
6.16116e-05
6.066e-05
6.3532e-05
6.71843e-05
7.01794e-05
7.15313e-05
7.18076e-05
7.19174e-05
7.19923e-05
7.21545e-05
7.23669e-05
7.27416e-05
7.32267e-05
7.47231e-05
0.000108647
0.000150202
0.000156586
0.000128297
9.5593e-05
7.40989e-05
6.57454e-05
6.52606e-05
6.74001e-05
6.95166e-05
7.08662e-05
7.07687e-05
7.08163e-05
7.08896e-05
7.09889e-05
7.11641e-05
7.13564e-05
7.17043e-05
7.21415e-05
7.55415e-05
0.000154649
0.000237205
0.000254301
0.000212337
0.000148014
0.000101243
7.91986e-05
7.19794e-05
7.05123e-05
7.05283e-05
7.06886e-05
7.01726e-05
7.02042e-05
7.02684e-05
7.03585e-05
7.05134e-05
7.06881e-05
7.09943e-05
7.13804e-05
7.51181e-05
0.000175009
0.00025866
0.000248268
0.000182226
0.000121525
8.77956e-05
7.46388e-05
7.09145e-05
7.01954e-05
7.01372e-05
7.0153e-05
6.98253e-05
6.98679e-05
6.99408e-05
7.00318e-05
7.01651e-05
7.03174e-05
7.05669e-05
7.09038e-05
7.44772e-05
0.000154479
0.000233532
0.000246068
0.000180838
0.000117642
8.54059e-05
7.38579e-05
7.06698e-05
6.99562e-05
6.9823e-05
6.9806e-05
6.96305e-05
6.96708e-05
6.97306e-05
6.98059e-05
6.9911e-05
7.00399e-05
7.02328e-05
7.05181e-05
7.12203e-05
7.47886e-05
8.2627e-05
9.07884e-05
9.29869e-05
8.23166e-05
7.39385e-05
7.06468e-05
6.97847e-05
6.96174e-05
6.95961e-05
6.96043e-05
6.95184e-05
6.95579e-05
6.96115e-05
6.96771e-05
6.97601e-05
6.98694e-05
7.00097e-05
7.02616e-05
7.07441e-05
7.44748e-05
7.96067e-05
7.23845e-05
7.03404e-05
6.98739e-05
6.94314e-05
6.93519e-05
6.94108e-05
6.94517e-05
6.94715e-05
6.94898e-05
6.94517e-05
6.94852e-05
6.95283e-05
6.95815e-05
6.96459e-05
6.97347e-05
6.984e-05
7.00544e-05
7.04058e-05
7.54163e-05
8.43096e-05
7.26635e-05
6.77978e-05
6.82211e-05
6.88663e-05
6.92035e-05
6.93461e-05
6.93925e-05
6.94099e-05
6.94266e-05
6.94113e-05
6.94403e-05
6.94764e-05
6.952e-05
6.95704e-05
6.96403e-05
6.97178e-05
6.98883e-05
7.0126e-05
7.63607e-05
8.62853e-05
7.28707e-05
6.82744e-05
6.85805e-05
6.90277e-05
6.92494e-05
6.93363e-05
6.93632e-05
6.93747e-05
6.93893e-05
6.93841e-05
6.9408e-05
6.94372e-05
6.94722e-05
6.9512e-05
6.95658e-05
6.96274e-05
6.97559e-05
6.99639e-05
7.65491e-05
9.26102e-05
7.7386e-05
7.07757e-05
6.95902e-05
6.93403e-05
6.93227e-05
6.93388e-05
6.93475e-05
6.93541e-05
6.93659e-05
6.93654e-05
6.93851e-05
6.94091e-05
6.94372e-05
6.94688e-05
6.95088e-05
6.95565e-05
6.96442e-05
6.9813e-05
7.7806e-05
8.97685e-05
7.39482e-05
6.94731e-05
6.91918e-05
6.92227e-05
6.92861e-05
6.93217e-05
6.93343e-05
6.93407e-05
6.93504e-05
6.93506e-05
6.93666e-05
6.93861e-05
6.94088e-05
6.94341e-05
6.94643e-05
6.95014e-05
6.9561e-05
6.97836e-05
8.08892e-05
9.76187e-05
7.88627e-05
7.15959e-05
6.98806e-05
6.93978e-05
6.93167e-05
6.93199e-05
6.93263e-05
6.93309e-05
6.93385e-05
6.93385e-05
6.93514e-05
6.93674e-05
6.93857e-05
6.9406e-05
6.94286e-05
6.94569e-05
6.9496e-05
6.96963e-05
7.9068e-05
8.74704e-05
7.34387e-05
7.0051e-05
6.9471e-05
6.93012e-05
6.92962e-05
6.93132e-05
6.93205e-05
6.93236e-05
6.93291e-05
6.93276e-05
6.93379e-05
6.9351e-05
6.93659e-05
6.93824e-05
6.93998e-05
6.94173e-05
6.94397e-05
6.94141e-05
6.51618e-05
5.60479e-05
5.85328e-05
6.45421e-05
6.77557e-05
6.88817e-05
6.92132e-05
6.92962e-05
6.93128e-05
6.93161e-05
6.93203e-05
6.93177e-05
6.93259e-05
6.93365e-05
6.93488e-05
6.93623e-05
6.93764e-05
6.93896e-05
6.94034e-05
6.94069e-05
6.92641e-05
6.9121e-05
6.92406e-05
6.93396e-05
6.93486e-05
6.93422e-05
6.93319e-05
6.93208e-05
6.93135e-05
6.93107e-05
6.93124e-05
6.93082e-05
6.93147e-05
6.93234e-05
6.93335e-05
6.93448e-05
6.93564e-05
6.93672e-05
6.93781e-05
6.93857e-05
6.93812e-05
6.93692e-05
6.93679e-05
6.9369e-05
6.93572e-05
6.93406e-05
6.93251e-05
6.93133e-05
6.93063e-05
6.93034e-05
6.93043e-05
6.92994e-05
6.93044e-05
6.93115e-05
6.93199e-05
6.93292e-05
6.93389e-05
6.93475e-05
6.9355e-05
6.93578e-05
6.9359e-05
6.93486e-05
6.93517e-05
6.93508e-05
6.93419e-05
6.93291e-05
6.93165e-05
6.93063e-05
6.92997e-05
6.92965e-05
6.92966e-05
6.92909e-05
6.92949e-05
6.93006e-05
6.93075e-05
6.93155e-05
6.93236e-05
6.93312e-05
6.9338e-05
6.93413e-05
6.93425e-05
6.93353e-05
6.93343e-05
6.93322e-05
6.93257e-05
6.93162e-05
6.93064e-05
6.9298e-05
6.92924e-05
6.92893e-05
6.92889e-05
6.9283e-05
6.9286e-05
6.92906e-05
6.92964e-05
6.9303e-05
6.93099e-05
6.93163e-05
6.93218e-05
6.93243e-05
6.93258e-05
6.93215e-05
6.93224e-05
6.93204e-05
6.93149e-05
6.93067e-05
6.92983e-05
6.92909e-05
6.92856e-05
6.92825e-05
6.92817e-05
6.92755e-05
6.92778e-05
6.92815e-05
6.92863e-05
6.9292e-05
6.92979e-05
6.93034e-05
6.93084e-05
6.93112e-05
6.9313e-05
6.93099e-05
6.93096e-05
6.93073e-05
6.9303e-05
6.92965e-05
6.92897e-05
6.92833e-05
6.92787e-05
6.92758e-05
6.92747e-05
6.92685e-05
6.92702e-05
6.92732e-05
6.92772e-05
6.92819e-05
6.92869e-05
6.92918e-05
6.92962e-05
6.92986e-05
6.93004e-05
6.92988e-05
6.92992e-05
6.92974e-05
6.92937e-05
6.9288e-05
6.92821e-05
6.92765e-05
6.92723e-05
6.92694e-05
6.92682e-05
6.9262e-05
6.92633e-05
6.92657e-05
6.92689e-05
6.9273e-05
6.92773e-05
6.92815e-05
6.92855e-05
6.92879e-05
6.92899e-05
6.92889e-05
6.9289e-05
6.92872e-05
6.92842e-05
6.92796e-05
6.92747e-05
6.92699e-05
6.9266e-05
6.92633e-05
6.9262e-05
6.92561e-05
6.92569e-05
6.92588e-05
6.92615e-05
6.92649e-05
6.92686e-05
6.92724e-05
6.92759e-05
6.92782e-05
6.92801e-05
6.92798e-05
6.92802e-05
6.92788e-05
6.92762e-05
6.92723e-05
6.9268e-05
6.92637e-05
6.92602e-05
6.92577e-05
6.92563e-05
6.92506e-05
6.92511e-05
6.92526e-05
6.92548e-05
6.92577e-05
6.92609e-05
6.92643e-05
6.92674e-05
6.92696e-05
6.92715e-05
6.92715e-05
6.92719e-05
6.92708e-05
6.92687e-05
6.92653e-05
6.92616e-05
6.92579e-05
6.92548e-05
6.92524e-05
6.9251e-05
6.92456e-05
6.92459e-05
6.9247e-05
6.92488e-05
6.92513e-05
6.92541e-05
6.9257e-05
6.92598e-05
6.92619e-05
6.92638e-05
6.92641e-05
6.92646e-05
6.92637e-05
6.9262e-05
6.92591e-05
6.92559e-05
6.92526e-05
6.92498e-05
6.92475e-05
6.92461e-05
6.9241e-05
6.92411e-05
6.9242e-05
6.92435e-05
6.92456e-05
6.9248e-05
6.92506e-05
6.92531e-05
6.92551e-05
6.92569e-05
6.92574e-05
6.9258e-05
6.92572e-05
6.92559e-05
6.92534e-05
6.92507e-05
6.92478e-05
6.92452e-05
6.92431e-05
6.92417e-05
6.92369e-05
6.92369e-05
6.92375e-05
6.92387e-05
6.92405e-05
6.92426e-05
6.92449e-05
6.92472e-05
6.92491e-05
6.92508e-05
6.92515e-05
6.92521e-05
6.92515e-05
6.92504e-05
6.92484e-05
6.92459e-05
6.92433e-05
6.9241e-05
6.9239e-05
6.92377e-05
6.92333e-05
6.92331e-05
6.92335e-05
6.92345e-05
6.9236e-05
6.92378e-05
6.92399e-05
6.92421e-05
6.92438e-05
6.92455e-05
6.92462e-05
6.92469e-05
6.92465e-05
6.92456e-05
6.92438e-05
6.92417e-05
6.92394e-05
6.92372e-05
6.92354e-05
6.92341e-05
6.923e-05
6.92297e-05
6.923e-05
6.92307e-05
6.92321e-05
6.92336e-05
6.92355e-05
6.92375e-05
6.92391e-05
6.92408e-05
6.92415e-05
6.92423e-05
6.9242e-05
6.92413e-05
6.92398e-05
6.92379e-05
6.92358e-05
6.92338e-05
6.92321e-05
6.92309e-05
6.92271e-05
6.92268e-05
6.92269e-05
6.92275e-05
6.92286e-05
6.923e-05
6.92317e-05
6.92336e-05
6.92351e-05
6.92367e-05
6.92375e-05
6.92383e-05
6.92381e-05
6.92375e-05
6.92362e-05
6.92346e-05
6.92327e-05
6.92309e-05
6.92293e-05
6.9228e-05
6.92246e-05
6.92242e-05
6.92242e-05
6.92246e-05
6.92256e-05
6.92269e-05
6.92283e-05
6.92301e-05
6.92315e-05
6.92331e-05
6.92339e-05
6.92347e-05
6.92346e-05
6.92342e-05
6.92332e-05
6.92316e-05
6.923e-05
6.92283e-05
6.92267e-05
6.92255e-05
6.92225e-05
6.92221e-05
6.92219e-05
6.92222e-05
6.92232e-05
6.92242e-05
6.92255e-05
6.92273e-05
6.92286e-05
6.92302e-05
6.92309e-05
6.92318e-05
6.92318e-05
6.92315e-05
6.92306e-05
6.92292e-05
6.92277e-05
6.92261e-05
6.92246e-05
6.92235e-05
6.92206e-05
6.92202e-05
6.92199e-05
6.92201e-05
6.9221e-05
6.92219e-05
6.92231e-05
6.92248e-05
6.9226e-05
6.92276e-05
6.92283e-05
6.92293e-05
6.92293e-05
6.92291e-05
6.92283e-05
6.9227e-05
6.92257e-05
6.92241e-05
6.92227e-05
6.92216e-05
6.92192e-05
6.92188e-05
6.92184e-05
6.92185e-05
6.92193e-05
6.92201e-05
6.92212e-05
6.92229e-05
6.9224e-05
6.92256e-05
6.92263e-05
6.92273e-05
6.92273e-05
6.92273e-05
6.92266e-05
6.92254e-05
6.92242e-05
6.92227e-05
6.92213e-05
6.92203e-05
6.92179e-05
6.92175e-05
6.92171e-05
6.92171e-05
6.92178e-05
6.92185e-05
6.92196e-05
6.92212e-05
6.92223e-05
6.92239e-05
6.92246e-05
6.92256e-05
6.92256e-05
6.92257e-05
6.9225e-05
6.92239e-05
6.92228e-05
6.92213e-05
6.922e-05
6.9219e-05
6.92172e-05
6.92168e-05
6.92163e-05
6.92162e-05
6.9217e-05
6.92175e-05
6.92185e-05
6.92202e-05
6.92212e-05
6.92228e-05
6.92235e-05
6.92246e-05
6.92246e-05
6.92247e-05
6.92242e-05
6.9223e-05
6.9222e-05
6.92205e-05
6.92192e-05
6.92184e-05
6.92165e-05
6.92161e-05
6.92155e-05
6.92155e-05
6.92162e-05
6.92167e-05
6.92176e-05
6.92193e-05
6.92203e-05
6.92219e-05
6.92225e-05
6.92237e-05
6.92237e-05
6.92239e-05
6.92234e-05
6.92222e-05
6.92213e-05
6.92198e-05
6.92186e-05
6.92177e-05
6.92461e-05
6.9243e-05
6.92442e-05
6.92465e-05
6.9245e-05
6.92463e-05
6.9249e-05
6.92503e-05
6.92503e-05
6.92532e-05
6.92525e-05
6.92554e-05
6.92538e-05
6.92552e-05
6.92527e-05
6.92509e-05
6.92501e-05
6.92489e-05
6.92499e-05
6.92463e-05
5.07611e-05
5.84566e-05
6.53517e-05
7.09232e-05
7.52063e-05
7.83919e-05
8.07501e-05
8.25219e-05
8.39731e-05
8.53436e-05
8.62291e-05
8.55983e-05
8.25586e-05
7.68166e-05
6.8454e-05
5.81776e-05
4.82865e-05
4.17299e-05
4.03812e-05
4.40683e-05
7.259e-05
7.60346e-05
7.83162e-05
7.96855e-05
8.04726e-05
8.1013e-05
8.15319e-05
8.20739e-05
8.45565e-05
9.2622e-05
0.000104764
0.000113853
0.00011316
0.000101206
8.319e-05
6.7978e-05
6.04069e-05
5.9957e-05
6.36284e-05
6.84881e-05
7.56445e-05
7.6675e-05
7.71867e-05
7.74219e-05
7.76032e-05
7.77908e-05
7.81257e-05
7.86376e-05
8.25849e-05
0.000101105
0.000125222
0.00013352
0.000119651
9.57553e-05
7.62166e-05
6.67126e-05
6.53037e-05
6.78292e-05
7.1167e-05
7.38981e-05
7.48269e-05
7.50561e-05
7.51544e-05
7.52372e-05
7.54172e-05
7.56475e-05
7.60544e-05
7.65776e-05
7.82168e-05
0.000117585
0.000164423
0.000170264
0.000138159
0.000102316
7.911e-05
7.00906e-05
6.92915e-05
7.11765e-05
7.30728e-05
7.42594e-05
7.40012e-05
7.40455e-05
7.41258e-05
7.42343e-05
7.44225e-05
7.46269e-05
7.49996e-05
7.54644e-05
7.91526e-05
0.000170308
0.000262857
0.000280025
0.000230767
0.000158492
0.00010738
8.36151e-05
7.57431e-05
7.39858e-05
7.38551e-05
7.39456e-05
7.3396e-05
7.34324e-05
7.35047e-05
7.36032e-05
7.37686e-05
7.39526e-05
7.4277e-05
7.46832e-05
7.87149e-05
0.000193912
0.000286671
0.000270882
0.000195654
0.000128948
9.25731e-05
7.84471e-05
7.43649e-05
7.34998e-05
7.33818e-05
7.3378e-05
7.30512e-05
7.30992e-05
7.31784e-05
7.32753e-05
7.34162e-05
7.35757e-05
7.38382e-05
7.41913e-05
7.80475e-05
0.000171709
0.000262317
0.000272396
0.000195806
0.000125303
9.00651e-05
7.75088e-05
7.40129e-05
7.32074e-05
7.30488e-05
7.30282e-05
7.28573e-05
7.29022e-05
7.29673e-05
7.30477e-05
7.31587e-05
7.32938e-05
7.34958e-05
7.37944e-05
7.45492e-05
7.93162e-05
8.92642e-05
9.8894e-05
0.00010018
8.74107e-05
7.78288e-05
7.4073e-05
7.30613e-05
7.28499e-05
7.28184e-05
7.28273e-05
7.27464e-05
7.27897e-05
7.28473e-05
7.2917e-05
7.30044e-05
7.31187e-05
7.32648e-05
7.3528e-05
7.4042e-05
7.92187e-05
8.61583e-05
7.81837e-05
7.53831e-05
7.40621e-05
7.30326e-05
7.26955e-05
7.26649e-05
7.26795e-05
7.26945e-05
7.27144e-05
7.26799e-05
7.27165e-05
7.2763e-05
7.28196e-05
7.28876e-05
7.29805e-05
7.30899e-05
7.33133e-05
7.36839e-05
8.04196e-05
9.16838e-05
7.83783e-05
7.25156e-05
7.22005e-05
7.23729e-05
7.25116e-05
7.25891e-05
7.26183e-05
7.26332e-05
7.26518e-05
7.26395e-05
7.26711e-05
7.27099e-05
7.27562e-05
7.28095e-05
7.28826e-05
7.2963e-05
7.31401e-05
7.33885e-05
8.16186e-05
9.39143e-05
7.85472e-05
7.28929e-05
7.24465e-05
7.24716e-05
7.25342e-05
7.25731e-05
7.25884e-05
7.25988e-05
7.26151e-05
7.26121e-05
7.26382e-05
7.26697e-05
7.27069e-05
7.27491e-05
7.28053e-05
7.28691e-05
7.3002e-05
7.3218e-05
8.19041e-05
0.000101175
8.34066e-05
7.5413e-05
7.33899e-05
7.27433e-05
7.25929e-05
7.25721e-05
7.25726e-05
7.25787e-05
7.25919e-05
7.25931e-05
7.26146e-05
7.26405e-05
7.26704e-05
7.27039e-05
7.27458e-05
7.27952e-05
7.28854e-05
7.306e-05
8.3357e-05
9.79225e-05
7.96485e-05
7.39845e-05
7.29421e-05
7.26113e-05
7.25536e-05
7.25553e-05
7.25601e-05
7.25657e-05
7.25765e-05
7.25779e-05
7.25954e-05
7.26165e-05
7.26407e-05
7.26675e-05
7.26992e-05
7.27377e-05
7.27988e-05
7.30296e-05
8.68815e-05
0.000106637
8.48653e-05
7.61495e-05
7.36165e-05
7.27755e-05
7.25806e-05
7.2553e-05
7.25523e-05
7.2556e-05
7.25645e-05
7.25654e-05
7.25795e-05
7.25968e-05
7.26163e-05
7.2638e-05
7.26616e-05
7.2691e-05
7.27308e-05
7.29384e-05
8.48744e-05
9.52376e-05
7.89677e-05
7.44534e-05
7.3151e-05
7.26628e-05
7.25563e-05
7.25457e-05
7.25465e-05
7.25488e-05
7.25549e-05
7.2554e-05
7.25653e-05
7.25795e-05
7.25955e-05
7.2613e-05
7.26313e-05
7.26495e-05
7.26725e-05
7.26409e-05
6.88838e-05
5.974e-05
6.26003e-05
6.84544e-05
7.12923e-05
7.22091e-05
7.24658e-05
7.25271e-05
7.25385e-05
7.25411e-05
7.25458e-05
7.25437e-05
7.25527e-05
7.25642e-05
7.25774e-05
7.25918e-05
7.26066e-05
7.26203e-05
7.26342e-05
7.26374e-05
7.25664e-05
7.24024e-05
7.25009e-05
7.25835e-05
7.25838e-05
7.25713e-05
7.25576e-05
7.25451e-05
7.25377e-05
7.25353e-05
7.25376e-05
7.25338e-05
7.25409e-05
7.25504e-05
7.25613e-05
7.25733e-05
7.25855e-05
7.25967e-05
7.26078e-05
7.26151e-05
7.26114e-05
7.2598e-05
7.25965e-05
7.25965e-05
7.25833e-05
7.25654e-05
7.25493e-05
7.25372e-05
7.25303e-05
7.25278e-05
7.25291e-05
7.25245e-05
7.25301e-05
7.25378e-05
7.25468e-05
7.25568e-05
7.25669e-05
7.25759e-05
7.25834e-05
7.2586e-05
7.25868e-05
7.25755e-05
7.25791e-05
7.25774e-05
7.25675e-05
7.25538e-05
7.25407e-05
7.25301e-05
7.25236e-05
7.25207e-05
7.25211e-05
7.25156e-05
7.252e-05
7.25263e-05
7.25338e-05
7.25423e-05
7.25508e-05
7.25587e-05
7.25656e-05
7.25687e-05
7.25695e-05
7.25616e-05
7.25607e-05
7.2558e-05
7.25509e-05
7.25406e-05
7.25304e-05
7.25218e-05
7.25161e-05
7.25133e-05
7.25132e-05
7.25073e-05
7.25107e-05
7.25158e-05
7.2522e-05
7.25291e-05
7.25364e-05
7.2543e-05
7.25485e-05
7.25509e-05
7.25521e-05
7.25473e-05
7.25483e-05
7.25458e-05
7.25398e-05
7.25309e-05
7.25221e-05
7.25144e-05
7.25092e-05
7.25062e-05
7.25057e-05
7.24994e-05
7.25021e-05
7.25062e-05
7.25114e-05
7.25175e-05
7.25237e-05
7.25294e-05
7.25345e-05
7.25371e-05
7.25388e-05
7.25352e-05
7.25349e-05
7.25322e-05
7.25275e-05
7.25205e-05
7.25133e-05
7.25068e-05
7.2502e-05
7.24992e-05
7.24984e-05
7.24922e-05
7.24942e-05
7.24975e-05
7.25018e-05
7.25068e-05
7.25121e-05
7.25172e-05
7.25217e-05
7.2524e-05
7.25256e-05
7.25237e-05
7.25241e-05
7.25219e-05
7.25179e-05
7.25117e-05
7.25055e-05
7.24998e-05
7.24955e-05
7.24927e-05
7.24916e-05
7.24854e-05
7.24869e-05
7.24895e-05
7.24931e-05
7.24974e-05
7.2502e-05
7.25064e-05
7.25103e-05
7.25128e-05
7.25146e-05
7.25134e-05
7.25134e-05
7.25114e-05
7.25081e-05
7.25031e-05
7.24979e-05
7.24929e-05
7.2489e-05
7.24864e-05
7.24852e-05
7.24791e-05
7.24802e-05
7.24823e-05
7.24852e-05
7.24889e-05
7.24928e-05
7.24967e-05
7.25003e-05
7.25026e-05
7.25044e-05
7.25039e-05
7.25042e-05
7.25025e-05
7.24998e-05
7.24955e-05
7.2491e-05
7.24865e-05
7.2483e-05
7.24805e-05
7.24792e-05
7.24734e-05
7.24741e-05
7.24758e-05
7.24782e-05
7.24814e-05
7.24847e-05
7.24882e-05
7.24914e-05
7.24936e-05
7.24954e-05
7.24952e-05
7.24956e-05
7.24943e-05
7.24919e-05
7.24883e-05
7.24844e-05
7.24806e-05
7.24774e-05
7.2475e-05
7.24737e-05
7.24682e-05
7.24686e-05
7.24699e-05
7.24719e-05
7.24746e-05
7.24775e-05
7.24806e-05
7.24834e-05
7.24855e-05
7.24874e-05
7.24876e-05
7.2488e-05
7.24869e-05
7.2485e-05
7.24819e-05
7.24785e-05
7.24751e-05
7.24722e-05
7.247e-05
7.24686e-05
7.24634e-05
7.24637e-05
7.24647e-05
7.24663e-05
7.24686e-05
7.24711e-05
7.24738e-05
7.24764e-05
7.24785e-05
7.24802e-05
7.24806e-05
7.24811e-05
7.24802e-05
7.24787e-05
7.24761e-05
7.24731e-05
7.24701e-05
7.24675e-05
7.24654e-05
7.2464e-05
7.24592e-05
7.24592e-05
7.246e-05
7.24613e-05
7.24632e-05
7.24654e-05
7.24679e-05
7.24703e-05
7.24721e-05
7.24739e-05
7.24744e-05
7.2475e-05
7.24743e-05
7.2473e-05
7.24708e-05
7.24682e-05
7.24655e-05
7.24631e-05
7.24612e-05
7.24598e-05
7.24553e-05
7.24553e-05
7.24558e-05
7.24568e-05
7.24585e-05
7.24604e-05
7.24626e-05
7.24648e-05
7.24666e-05
7.24683e-05
7.24689e-05
7.24695e-05
7.2469e-05
7.2468e-05
7.24661e-05
7.24638e-05
7.24615e-05
7.24592e-05
7.24574e-05
7.24561e-05
7.24519e-05
7.24518e-05
7.24521e-05
7.24529e-05
7.24544e-05
7.2456e-05
7.2458e-05
7.246e-05
7.24617e-05
7.24633e-05
7.2464e-05
7.24647e-05
7.24644e-05
7.24635e-05
7.24619e-05
7.24599e-05
7.24578e-05
7.24557e-05
7.2454e-05
7.24528e-05
7.2449e-05
7.24487e-05
7.24489e-05
7.24495e-05
7.24508e-05
7.24523e-05
7.2454e-05
7.24559e-05
7.24575e-05
7.24591e-05
7.24598e-05
7.24606e-05
7.24603e-05
7.24597e-05
7.24583e-05
7.24565e-05
7.24546e-05
7.24527e-05
7.2451e-05
7.24498e-05
7.24463e-05
7.2446e-05
7.2446e-05
7.24465e-05
7.24477e-05
7.24489e-05
7.24505e-05
7.24523e-05
7.24538e-05
7.24554e-05
7.24561e-05
7.24569e-05
7.24567e-05
7.24563e-05
7.24551e-05
7.24535e-05
7.24518e-05
7.245e-05
7.24484e-05
7.24472e-05
7.24441e-05
7.24438e-05
7.24437e-05
7.2444e-05
7.2445e-05
7.24462e-05
7.24476e-05
7.24493e-05
7.24507e-05
7.24523e-05
7.2453e-05
7.24539e-05
7.24538e-05
7.24534e-05
7.24524e-05
7.24509e-05
7.24494e-05
7.24477e-05
7.24462e-05
7.24451e-05
7.24422e-05
7.24418e-05
7.24416e-05
7.24419e-05
7.24428e-05
7.24437e-05
7.2445e-05
7.24467e-05
7.2448e-05
7.24496e-05
7.24503e-05
7.24512e-05
7.24512e-05
7.24509e-05
7.245e-05
7.24487e-05
7.24473e-05
7.24457e-05
7.24442e-05
7.24432e-05
7.24407e-05
7.24403e-05
7.244e-05
7.24402e-05
7.2441e-05
7.24419e-05
7.2443e-05
7.24447e-05
7.24459e-05
7.24475e-05
7.24482e-05
7.24492e-05
7.24492e-05
7.24491e-05
7.24483e-05
7.2447e-05
7.24457e-05
7.24442e-05
7.24428e-05
7.24418e-05
7.24394e-05
7.2439e-05
7.24386e-05
7.24387e-05
7.24395e-05
7.24402e-05
7.24413e-05
7.2443e-05
7.24441e-05
7.24457e-05
7.24464e-05
7.24474e-05
7.24474e-05
7.24474e-05
7.24467e-05
7.24454e-05
7.24443e-05
7.24427e-05
7.24414e-05
7.24405e-05
7.24386e-05
7.24382e-05
7.24377e-05
7.24377e-05
7.24386e-05
7.24392e-05
7.24402e-05
7.24419e-05
7.24429e-05
7.24446e-05
7.24452e-05
7.24463e-05
7.24463e-05
7.24464e-05
7.24458e-05
7.24446e-05
7.24435e-05
7.2442e-05
7.24407e-05
7.24398e-05
7.24379e-05
7.24375e-05
7.2437e-05
7.2437e-05
7.24378e-05
7.24383e-05
7.24393e-05
7.2441e-05
7.2442e-05
7.24437e-05
7.24442e-05
7.24454e-05
7.24454e-05
7.24455e-05
7.24449e-05
7.24437e-05
7.24427e-05
7.24412e-05
7.244e-05
7.24391e-05
7.24674e-05
7.24638e-05
7.24655e-05
7.24681e-05
7.24661e-05
7.24679e-05
7.24707e-05
7.24715e-05
7.2472e-05
7.24743e-05
7.24741e-05
7.24764e-05
7.24753e-05
7.24762e-05
7.24734e-05
7.24723e-05
7.24709e-05
7.24702e-05
7.24714e-05
7.24671e-05
5.5468e-05
6.34125e-05
7.02318e-05
7.56006e-05
7.96489e-05
8.26231e-05
8.48232e-05
8.64996e-05
8.79597e-05
8.94973e-05
9.05915e-05
8.99454e-05
8.64551e-05
7.98143e-05
7.02814e-05
5.90406e-05
4.89483e-05
4.31103e-05
4.30481e-05
4.79926e-05
7.69573e-05
8.01091e-05
8.21706e-05
8.3384e-05
8.40929e-05
8.46132e-05
8.51572e-05
8.57541e-05
8.88837e-05
9.90745e-05
0.000114266
0.000125559
0.000124811
0.000110746
9.03527e-05
7.38315e-05
6.58562e-05
6.52667e-05
6.86973e-05
7.32001e-05
7.93647e-05
8.02588e-05
8.06969e-05
8.09038e-05
8.10894e-05
8.12971e-05
8.16752e-05
8.22562e-05
8.70837e-05
0.00010948
0.000138073
0.000147575
0.000131502
0.000104543
8.28721e-05
7.22559e-05
7.02627e-05
7.23708e-05
7.53627e-05
7.78186e-05
7.83331e-05
7.85218e-05
7.86132e-05
7.87067e-05
7.89062e-05
7.91559e-05
7.95979e-05
8.01631e-05
8.19606e-05
0.000127498
0.000179993
0.000184858
0.00014856
0.000109359
8.43915e-05
7.46922e-05
7.35527e-05
7.51621e-05
7.68305e-05
7.78565e-05
7.74529e-05
7.7497e-05
7.75858e-05
7.77045e-05
7.79068e-05
7.8124e-05
7.85238e-05
7.90189e-05
8.30113e-05
0.000187683
0.000290852
0.000307437
0.000249661
0.000168972
0.000113569
8.81708e-05
7.96816e-05
7.7651e-05
7.73863e-05
7.74162e-05
7.68416e-05
7.68839e-05
7.69653e-05
7.70727e-05
7.72493e-05
7.74433e-05
7.77874e-05
7.82152e-05
8.2554e-05
0.000214945
0.000317058
0.000294439
0.00020919
0.000136357
9.74374e-05
8.24086e-05
7.80014e-05
7.70085e-05
7.68409e-05
7.68226e-05
7.64999e-05
7.6554e-05
7.66399e-05
7.67432e-05
7.68922e-05
7.70596e-05
7.73361e-05
7.77065e-05
8.18552e-05
0.000191208
0.000294583
0.000300653
0.000211301
0.000133125
9.48647e-05
8.13303e-05
7.75534e-05
7.66709e-05
7.64936e-05
7.64722e-05
7.63072e-05
7.63572e-05
7.64279e-05
7.65139e-05
7.66312e-05
7.67727e-05
7.69845e-05
7.72974e-05
7.81106e-05
8.43652e-05
9.68937e-05
0.000108068
0.000107906
9.2759e-05
8.19088e-05
7.76955e-05
7.65478e-05
7.63001e-05
7.62618e-05
7.62726e-05
7.61975e-05
7.6245e-05
7.63068e-05
7.63808e-05
7.64731e-05
7.65927e-05
7.67452e-05
7.70204e-05
7.75692e-05
8.45362e-05
9.36733e-05
8.46926e-05
8.08712e-05
7.85197e-05
7.6846e-05
7.62492e-05
7.61353e-05
7.61276e-05
7.61393e-05
7.61616e-05
7.61311e-05
7.61713e-05
7.62214e-05
7.62817e-05
7.63535e-05
7.64507e-05
7.65645e-05
7.67973e-05
7.71891e-05
8.60454e-05
0.000100158
8.47867e-05
7.76654e-05
7.64486e-05
7.60972e-05
7.60345e-05
7.6051e-05
7.60653e-05
7.60789e-05
7.60998e-05
7.60909e-05
7.61253e-05
7.6167e-05
7.62162e-05
7.62726e-05
7.6349e-05
7.64325e-05
7.66165e-05
7.68766e-05
8.75502e-05
0.000102667
8.48967e-05
7.792e-05
7.65703e-05
7.61332e-05
7.60357e-05
7.60299e-05
7.60353e-05
7.60454e-05
7.60637e-05
7.60632e-05
7.60916e-05
7.61256e-05
7.61653e-05
7.62099e-05
7.62688e-05
7.63349e-05
7.64723e-05
7.66968e-05
8.79554e-05
0.000111006
9.01212e-05
8.04439e-05
7.74393e-05
7.63638e-05
7.60808e-05
7.60261e-05
7.60197e-05
7.60258e-05
7.60407e-05
7.60438e-05
7.60672e-05
7.60951e-05
7.61271e-05
7.61626e-05
7.62064e-05
7.62577e-05
7.63505e-05
7.65311e-05
8.9636e-05
0.000107273
8.6001e-05
7.8876e-05
7.69404e-05
7.62184e-05
7.60396e-05
7.60099e-05
7.6008e-05
7.60133e-05
7.60254e-05
7.60282e-05
7.60472e-05
7.60701e-05
7.60959e-05
7.61245e-05
7.61576e-05
7.61976e-05
7.62601e-05
7.64992e-05
9.36757e-05
0.000116958
9.15391e-05
8.10795e-05
7.75977e-05
7.63713e-05
7.60631e-05
7.60072e-05
7.60006e-05
7.60038e-05
7.60133e-05
7.60152e-05
7.60306e-05
7.60493e-05
7.60702e-05
7.60932e-05
7.6118e-05
7.61485e-05
7.61891e-05
7.64039e-05
9.14608e-05
0.000104109
8.51062e-05
7.92109e-05
7.70717e-05
7.62427e-05
7.60357e-05
7.59996e-05
7.59948e-05
7.59965e-05
7.60035e-05
7.60033e-05
7.60157e-05
7.60311e-05
7.60482e-05
7.60669e-05
7.60861e-05
7.61051e-05
7.61286e-05
7.60899e-05
7.30137e-05
6.38921e-05
6.70913e-05
7.26643e-05
7.50589e-05
7.57549e-05
7.59383e-05
7.59797e-05
7.59866e-05
7.59888e-05
7.59941e-05
7.59925e-05
7.60024e-05
7.60149e-05
7.6029e-05
7.60444e-05
7.606e-05
7.60742e-05
7.60882e-05
7.6091e-05
7.61085e-05
7.59133e-05
7.59856e-05
7.60504e-05
7.60416e-05
7.60227e-05
7.60057e-05
7.5992e-05
7.59845e-05
7.59826e-05
7.59855e-05
7.59821e-05
7.599e-05
7.60003e-05
7.6012e-05
7.60248e-05
7.60376e-05
7.60494e-05
7.60605e-05
7.60676e-05
7.60649e-05
7.60498e-05
7.60479e-05
7.60467e-05
7.6032e-05
7.60128e-05
7.59961e-05
7.59838e-05
7.5977e-05
7.59748e-05
7.59768e-05
7.59723e-05
7.59786e-05
7.59871e-05
7.59967e-05
7.60074e-05
7.6018e-05
7.60273e-05
7.60349e-05
7.60372e-05
7.60374e-05
7.60252e-05
7.60294e-05
7.60267e-05
7.60158e-05
7.60011e-05
7.59874e-05
7.59766e-05
7.59702e-05
7.59675e-05
7.59684e-05
7.5963e-05
7.5968e-05
7.59749e-05
7.5983e-05
7.5992e-05
7.6001e-05
7.60092e-05
7.60161e-05
7.6019e-05
7.60194e-05
7.60107e-05
7.60099e-05
7.60066e-05
7.59988e-05
7.59877e-05
7.59771e-05
7.59682e-05
7.59625e-05
7.59599e-05
7.59602e-05
7.59543e-05
7.59582e-05
7.59638e-05
7.59705e-05
7.59781e-05
7.59857e-05
7.59926e-05
7.59982e-05
7.60004e-05
7.60013e-05
7.5996e-05
7.5997e-05
7.59939e-05
7.59873e-05
7.59778e-05
7.59686e-05
7.59607e-05
7.59554e-05
7.59526e-05
7.59523e-05
7.59461e-05
7.59491e-05
7.59537e-05
7.59593e-05
7.59658e-05
7.59723e-05
7.59783e-05
7.59833e-05
7.59859e-05
7.59873e-05
7.59833e-05
7.5983e-05
7.59798e-05
7.59746e-05
7.59671e-05
7.59596e-05
7.59528e-05
7.59481e-05
7.59453e-05
7.59448e-05
7.59385e-05
7.59408e-05
7.59445e-05
7.59491e-05
7.59546e-05
7.596e-05
7.59654e-05
7.59699e-05
7.59721e-05
7.59736e-05
7.59714e-05
7.59717e-05
7.59692e-05
7.59647e-05
7.5958e-05
7.59515e-05
7.59456e-05
7.59413e-05
7.59386e-05
7.59377e-05
7.59314e-05
7.59331e-05
7.59361e-05
7.594e-05
7.59446e-05
7.59494e-05
7.5954e-05
7.5958e-05
7.59604e-05
7.59621e-05
7.59606e-05
7.59606e-05
7.59582e-05
7.59546e-05
7.59492e-05
7.59437e-05
7.59386e-05
7.59346e-05
7.5932e-05
7.5931e-05
7.59249e-05
7.59261e-05
7.59285e-05
7.59317e-05
7.59357e-05
7.59398e-05
7.59439e-05
7.59474e-05
7.59498e-05
7.59515e-05
7.59507e-05
7.5951e-05
7.5949e-05
7.59459e-05
7.59413e-05
7.59366e-05
7.5932e-05
7.59284e-05
7.59259e-05
7.59248e-05
7.59189e-05
7.59198e-05
7.59217e-05
7.59243e-05
7.59277e-05
7.59312e-05
7.59349e-05
7.59381e-05
7.59403e-05
7.5942e-05
7.59417e-05
7.5942e-05
7.59404e-05
7.59378e-05
7.59339e-05
7.59298e-05
7.59258e-05
7.59226e-05
7.59202e-05
7.5919e-05
7.59134e-05
7.5914e-05
7.59155e-05
7.59177e-05
7.59206e-05
7.59236e-05
7.59268e-05
7.59297e-05
7.59319e-05
7.59336e-05
7.59337e-05
7.5934e-05
7.59327e-05
7.59307e-05
7.59273e-05
7.59238e-05
7.59202e-05
7.59172e-05
7.5915e-05
7.59137e-05
7.59085e-05
7.59088e-05
7.591e-05
7.59118e-05
7.59142e-05
7.59169e-05
7.59197e-05
7.59224e-05
7.59244e-05
7.59261e-05
7.59264e-05
7.59269e-05
7.59258e-05
7.59241e-05
7.59213e-05
7.59182e-05
7.5915e-05
7.59123e-05
7.59102e-05
7.5909e-05
7.5904e-05
7.59042e-05
7.59051e-05
7.59065e-05
7.59086e-05
7.59109e-05
7.59135e-05
7.59159e-05
7.59178e-05
7.59195e-05
7.592e-05
7.59205e-05
7.59197e-05
7.59182e-05
7.59158e-05
7.59131e-05
7.59103e-05
7.59079e-05
7.59059e-05
7.59046e-05
7.59e-05
7.59001e-05
7.59007e-05
7.59019e-05
7.59037e-05
7.59057e-05
7.5908e-05
7.59102e-05
7.5912e-05
7.59137e-05
7.59142e-05
7.59148e-05
7.59142e-05
7.5913e-05
7.5911e-05
7.59086e-05
7.59061e-05
7.59038e-05
7.5902e-05
7.59007e-05
7.58965e-05
7.58964e-05
7.58968e-05
7.58977e-05
7.58993e-05
7.59011e-05
7.59031e-05
7.59052e-05
7.59069e-05
7.59085e-05
7.59092e-05
7.59098e-05
7.59093e-05
7.59084e-05
7.59066e-05
7.59045e-05
7.59023e-05
7.59002e-05
7.58985e-05
7.58972e-05
7.58934e-05
7.58932e-05
7.58934e-05
7.58942e-05
7.58956e-05
7.58971e-05
7.58989e-05
7.59009e-05
7.59025e-05
7.59041e-05
7.59048e-05
7.59055e-05
7.59051e-05
7.59044e-05
7.59029e-05
7.5901e-05
7.5899e-05
7.58971e-05
7.58954e-05
7.58942e-05
7.58906e-05
7.58904e-05
7.58905e-05
7.5891e-05
7.58923e-05
7.58936e-05
7.58952e-05
7.58971e-05
7.58986e-05
7.59002e-05
7.59009e-05
7.59017e-05
7.59014e-05
7.59009e-05
7.58996e-05
7.58979e-05
7.58961e-05
7.58942e-05
7.58926e-05
7.58915e-05
7.58883e-05
7.5888e-05
7.5888e-05
7.58884e-05
7.58895e-05
7.58907e-05
7.58922e-05
7.5894e-05
7.58954e-05
7.5897e-05
7.58977e-05
7.58985e-05
7.58983e-05
7.58979e-05
7.58968e-05
7.58952e-05
7.58936e-05
7.58919e-05
7.58904e-05
7.58893e-05
7.58863e-05
7.5886e-05
7.58858e-05
7.58861e-05
7.58871e-05
7.58882e-05
7.58895e-05
7.58913e-05
7.58926e-05
7.58942e-05
7.58949e-05
7.58957e-05
7.58956e-05
7.58953e-05
7.58944e-05
7.58929e-05
7.58915e-05
7.58898e-05
7.58883e-05
7.58873e-05
7.58848e-05
7.58844e-05
7.58842e-05
7.58844e-05
7.58853e-05
7.58862e-05
7.58874e-05
7.58892e-05
7.58904e-05
7.5892e-05
7.58927e-05
7.58936e-05
7.58936e-05
7.58934e-05
7.58925e-05
7.58912e-05
7.58899e-05
7.58882e-05
7.58868e-05
7.58858e-05
7.58834e-05
7.5883e-05
7.58827e-05
7.58828e-05
7.58837e-05
7.58845e-05
7.58856e-05
7.58874e-05
7.58885e-05
7.58901e-05
7.58908e-05
7.58918e-05
7.58917e-05
7.58916e-05
7.58909e-05
7.58896e-05
7.58883e-05
7.58868e-05
7.58854e-05
7.58845e-05
7.58826e-05
7.58823e-05
7.58818e-05
7.58818e-05
7.58827e-05
7.58834e-05
7.58844e-05
7.58863e-05
7.58873e-05
7.5889e-05
7.58896e-05
7.58907e-05
7.58906e-05
7.58906e-05
7.589e-05
7.58887e-05
7.58876e-05
7.5886e-05
7.58847e-05
7.58838e-05
7.58819e-05
7.58815e-05
7.5881e-05
7.5881e-05
7.58819e-05
7.58825e-05
7.58835e-05
7.58853e-05
7.58863e-05
7.5888e-05
7.58885e-05
7.58897e-05
7.58896e-05
7.58897e-05
7.5889e-05
7.58878e-05
7.58867e-05
7.58852e-05
7.58839e-05
7.5883e-05
7.59113e-05
7.59072e-05
7.59095e-05
7.59123e-05
7.59096e-05
7.5912e-05
7.5915e-05
7.59152e-05
7.59162e-05
7.59179e-05
7.59183e-05
7.592e-05
7.59195e-05
7.59197e-05
7.59166e-05
7.59162e-05
7.59143e-05
7.59141e-05
7.59155e-05
7.59105e-05
6.06562e-05
6.87268e-05
7.5393e-05
8.0516e-05
8.43082e-05
8.70663e-05
8.91164e-05
9.0715e-05
9.2224e-05
9.40052e-05
9.53829e-05
9.47271e-05
9.06861e-05
8.298e-05
7.2142e-05
5.99618e-05
4.98618e-05
4.49797e-05
4.63434e-05
5.25216e-05
8.15424e-05
8.43984e-05
8.62415e-05
8.73064e-05
8.79476e-05
8.84585e-05
8.90388e-05
8.97046e-05
9.36469e-05
0.000106458
0.000125328
0.00013916
0.000138178
0.000121555
9.8483e-05
8.04814e-05
7.19212e-05
7.10043e-05
7.4057e-05
7.81412e-05
8.33059e-05
8.40696e-05
8.44418e-05
8.46276e-05
8.48227e-05
8.50548e-05
8.54819e-05
8.61419e-05
9.20291e-05
0.000119052
0.000152833
0.00016356
0.000144837
0.000114336
9.019e-05
7.82435e-05
7.55419e-05
7.71684e-05
7.97871e-05
8.1959e-05
8.20726e-05
8.22275e-05
8.23166e-05
8.24234e-05
8.26442e-05
8.29148e-05
8.33955e-05
8.40071e-05
8.59826e-05
0.000138499
0.000197017
0.000200375
0.000159506
0.000116705
8.99466e-05
7.95624e-05
7.80582e-05
7.93735e-05
8.08091e-05
8.16791e-05
8.11466e-05
8.11935e-05
8.12923e-05
8.1422e-05
8.16394e-05
8.18707e-05
8.23001e-05
8.28282e-05
8.71434e-05
0.000206949
0.000321342
0.000336493
0.000268805
0.000179337
0.000119778
9.28674e-05
8.38087e-05
8.15276e-05
8.11439e-05
8.11231e-05
8.05318e-05
8.05814e-05
8.06724e-05
8.07894e-05
8.09779e-05
8.11827e-05
8.15481e-05
8.19995e-05
8.66595e-05
0.000238326
0.000349916
0.0003188
0.000222691
0.000143694
0.000102381
8.65351e-05
8.18435e-05
8.07437e-05
8.05371e-05
8.05096e-05
8.01939e-05
8.02547e-05
8.03478e-05
8.04581e-05
8.06157e-05
8.07916e-05
8.10833e-05
8.14723e-05
8.59226e-05
0.000213286
0.000330698
0.000330758
0.000227195
0.000141053
9.97985e-05
8.53361e-05
8.13119e-05
8.03689e-05
8.01799e-05
8.01602e-05
8.00025e-05
8.0058e-05
8.01348e-05
8.02267e-05
8.03509e-05
8.04994e-05
8.07218e-05
8.10501e-05
8.1928e-05
9.00297e-05
0.000105724
0.00011847
0.000116172
9.83603e-05
8.61891e-05
8.15331e-05
8.02662e-05
7.99905e-05
7.99487e-05
7.99627e-05
7.9894e-05
7.9946e-05
8.00125e-05
8.00912e-05
8.01887e-05
8.0314e-05
8.04733e-05
8.07613e-05
8.13487e-05
9.05329e-05
0.000102349
9.20193e-05
8.68469e-05
8.32644e-05
8.08896e-05
8.00341e-05
7.98443e-05
7.98184e-05
7.98285e-05
7.98538e-05
7.98279e-05
7.98718e-05
7.99259e-05
7.999e-05
8.00661e-05
8.01679e-05
8.02864e-05
8.05291e-05
8.09441e-05
9.24092e-05
0.000109959
9.19993e-05
8.32937e-05
8.09862e-05
8.0059e-05
7.97939e-05
7.97539e-05
7.97559e-05
7.97692e-05
7.97929e-05
7.97876e-05
7.9825e-05
7.98699e-05
7.99224e-05
7.99821e-05
8.0062e-05
8.0149e-05
8.03401e-05
8.06129e-05
9.42823e-05
0.000112769
9.20249e-05
8.33982e-05
8.09724e-05
8.00329e-05
7.97758e-05
7.9729e-05
7.97263e-05
7.97367e-05
7.97575e-05
7.97596e-05
7.97906e-05
7.98272e-05
7.98695e-05
7.99169e-05
7.99785e-05
8.00472e-05
8.01893e-05
8.04227e-05
9.48359e-05
0.000122356
9.76354e-05
8.59081e-05
8.17586e-05
8.02223e-05
7.98084e-05
7.9723e-05
7.97111e-05
7.97177e-05
7.97347e-05
7.97399e-05
7.97653e-05
7.97955e-05
7.98296e-05
7.98673e-05
7.99132e-05
7.99664e-05
8.00618e-05
8.02485e-05
9.67822e-05
0.000118059
9.31051e-05
8.41863e-05
8.12073e-05
8.00647e-05
7.97661e-05
7.97077e-05
7.97003e-05
7.97057e-05
7.97195e-05
7.97237e-05
7.97445e-05
7.97692e-05
7.97968e-05
7.98272e-05
7.98619e-05
7.99035e-05
7.99675e-05
8.02149e-05
0.000101426
0.000128835
9.89841e-05
8.64232e-05
8.18448e-05
8.02061e-05
7.97865e-05
7.97049e-05
7.96933e-05
7.96965e-05
7.97073e-05
7.97102e-05
7.97271e-05
7.97473e-05
7.97697e-05
7.97942e-05
7.98202e-05
7.98518e-05
7.9893e-05
8.01151e-05
9.89787e-05
0.000114297
9.19427e-05
8.43579e-05
8.12535e-05
8.00618e-05
7.97562e-05
7.96971e-05
7.96877e-05
7.96892e-05
7.96972e-05
7.96978e-05
7.97114e-05
7.97281e-05
7.97465e-05
7.97664e-05
7.97865e-05
7.98063e-05
7.98303e-05
7.97834e-05
7.76214e-05
6.85855e-05
7.20612e-05
7.71982e-05
7.9076e-05
7.95406e-05
7.96531e-05
7.96762e-05
7.96793e-05
7.96814e-05
7.96875e-05
7.96864e-05
7.96973e-05
7.9711e-05
7.97261e-05
7.97425e-05
7.97588e-05
7.97736e-05
7.97877e-05
7.979e-05
7.99156e-05
7.96765e-05
7.9717e-05
7.97626e-05
7.97442e-05
7.97187e-05
7.96984e-05
7.96836e-05
7.96762e-05
7.96748e-05
7.96785e-05
7.96755e-05
7.96843e-05
7.96955e-05
7.97081e-05
7.97218e-05
7.97352e-05
7.97474e-05
7.97586e-05
7.97654e-05
7.9764e-05
7.97469e-05
7.97446e-05
7.97421e-05
7.97258e-05
7.97052e-05
7.96878e-05
7.96752e-05
7.96687e-05
7.96669e-05
7.96694e-05
7.96653e-05
7.96723e-05
7.96815e-05
7.96919e-05
7.97033e-05
7.97144e-05
7.97241e-05
7.97316e-05
7.97336e-05
7.97331e-05
7.972e-05
7.97248e-05
7.97211e-05
7.97092e-05
7.96933e-05
7.96791e-05
7.9668e-05
7.96617e-05
7.96593e-05
7.96607e-05
7.96555e-05
7.96611e-05
7.96686e-05
7.96773e-05
7.9687e-05
7.96964e-05
7.97049e-05
7.97118e-05
7.97145e-05
7.97143e-05
7.97049e-05
7.97042e-05
7.97002e-05
7.96917e-05
7.96797e-05
7.96686e-05
7.96595e-05
7.96539e-05
7.96514e-05
7.96521e-05
7.96464e-05
7.96508e-05
7.96569e-05
7.96641e-05
7.96723e-05
7.96802e-05
7.96874e-05
7.9693e-05
7.9695e-05
7.96955e-05
7.96897e-05
7.96908e-05
7.9687e-05
7.96798e-05
7.96695e-05
7.96599e-05
7.96518e-05
7.96465e-05
7.96439e-05
7.96439e-05
7.96378e-05
7.96412e-05
7.96463e-05
7.96523e-05
7.96592e-05
7.9666e-05
7.96723e-05
7.96773e-05
7.96798e-05
7.96809e-05
7.96765e-05
7.96761e-05
7.96724e-05
7.96667e-05
7.96586e-05
7.96507e-05
7.96437e-05
7.9639e-05
7.96364e-05
7.96361e-05
7.96298e-05
7.96325e-05
7.96366e-05
7.96415e-05
7.96474e-05
7.96531e-05
7.96587e-05
7.96632e-05
7.96654e-05
7.96666e-05
7.96641e-05
7.96644e-05
7.96613e-05
7.96564e-05
7.96492e-05
7.96424e-05
7.96364e-05
7.9632e-05
7.96294e-05
7.96287e-05
7.96224e-05
7.96244e-05
7.96277e-05
7.96319e-05
7.96369e-05
7.96419e-05
7.96467e-05
7.96507e-05
7.96531e-05
7.96546e-05
7.96528e-05
7.96527e-05
7.96499e-05
7.9646e-05
7.96402e-05
7.96345e-05
7.96291e-05
7.96251e-05
7.96226e-05
7.96217e-05
7.96155e-05
7.9617e-05
7.96197e-05
7.96232e-05
7.96274e-05
7.96317e-05
7.9636e-05
7.96396e-05
7.96419e-05
7.96435e-05
7.96426e-05
7.96427e-05
7.96404e-05
7.9637e-05
7.96321e-05
7.96271e-05
7.96223e-05
7.96187e-05
7.96163e-05
7.96152e-05
7.96093e-05
7.96104e-05
7.96125e-05
7.96154e-05
7.9619e-05
7.96227e-05
7.96265e-05
7.96298e-05
7.9632e-05
7.96336e-05
7.96331e-05
7.96333e-05
7.96315e-05
7.96287e-05
7.96244e-05
7.96201e-05
7.9616e-05
7.96127e-05
7.96104e-05
7.96092e-05
7.96036e-05
7.96043e-05
7.9606e-05
7.96084e-05
7.96115e-05
7.96147e-05
7.96181e-05
7.9621e-05
7.96232e-05
7.96248e-05
7.96248e-05
7.9625e-05
7.96235e-05
7.96212e-05
7.96176e-05
7.96139e-05
7.96102e-05
7.96071e-05
7.96049e-05
7.96038e-05
7.95984e-05
7.95989e-05
7.96002e-05
7.96022e-05
7.96048e-05
7.96076e-05
7.96106e-05
7.96133e-05
7.96154e-05
7.9617e-05
7.96172e-05
7.96175e-05
7.96163e-05
7.96144e-05
7.96114e-05
7.96081e-05
7.96048e-05
7.96021e-05
7.96e-05
7.95988e-05
7.95937e-05
7.9594e-05
7.95951e-05
7.95967e-05
7.95989e-05
7.96014e-05
7.9604e-05
7.96065e-05
7.96085e-05
7.96101e-05
7.96105e-05
7.96109e-05
7.96099e-05
7.96083e-05
7.96057e-05
7.96029e-05
7.96e-05
7.95974e-05
7.95955e-05
7.95942e-05
7.95896e-05
7.95897e-05
7.95905e-05
7.95918e-05
7.95937e-05
7.95959e-05
7.95982e-05
7.96005e-05
7.96024e-05
7.96039e-05
7.96045e-05
7.9605e-05
7.96042e-05
7.96029e-05
7.96007e-05
7.95982e-05
7.95956e-05
7.95933e-05
7.95914e-05
7.95902e-05
7.95859e-05
7.95859e-05
7.95864e-05
7.95875e-05
7.95892e-05
7.9591e-05
7.95931e-05
7.95953e-05
7.9597e-05
7.95986e-05
7.95992e-05
7.95998e-05
7.95992e-05
7.95981e-05
7.95962e-05
7.9594e-05
7.95917e-05
7.95895e-05
7.95878e-05
7.95866e-05
7.95826e-05
7.95825e-05
7.95829e-05
7.95837e-05
7.95852e-05
7.95868e-05
7.95887e-05
7.95908e-05
7.95924e-05
7.9594e-05
7.95946e-05
7.95953e-05
7.95948e-05
7.9594e-05
7.95923e-05
7.95903e-05
7.95883e-05
7.95863e-05
7.95846e-05
7.95834e-05
7.95798e-05
7.95796e-05
7.95798e-05
7.95804e-05
7.95818e-05
7.95832e-05
7.95849e-05
7.95868e-05
7.95883e-05
7.95899e-05
7.95906e-05
7.95913e-05
7.9591e-05
7.95903e-05
7.95889e-05
7.95871e-05
7.95852e-05
7.95833e-05
7.95817e-05
7.95806e-05
7.95774e-05
7.95771e-05
7.95772e-05
7.95777e-05
7.95789e-05
7.95801e-05
7.95817e-05
7.95835e-05
7.9585e-05
7.95865e-05
7.95872e-05
7.9588e-05
7.95877e-05
7.95872e-05
7.9586e-05
7.95844e-05
7.95827e-05
7.95809e-05
7.95794e-05
7.95783e-05
7.95753e-05
7.9575e-05
7.95749e-05
7.95753e-05
7.95764e-05
7.95775e-05
7.95789e-05
7.95807e-05
7.9582e-05
7.95836e-05
7.95843e-05
7.95851e-05
7.95849e-05
7.95846e-05
7.95835e-05
7.9582e-05
7.95805e-05
7.95787e-05
7.95773e-05
7.95762e-05
7.95737e-05
7.95734e-05
7.95732e-05
7.95734e-05
7.95745e-05
7.95754e-05
7.95767e-05
7.95785e-05
7.95797e-05
7.95814e-05
7.9582e-05
7.95829e-05
7.95828e-05
7.95826e-05
7.95816e-05
7.95802e-05
7.95788e-05
7.95772e-05
7.95757e-05
7.95747e-05
7.95722e-05
7.95719e-05
7.95716e-05
7.95718e-05
7.95728e-05
7.95736e-05
7.95748e-05
7.95766e-05
7.95777e-05
7.95794e-05
7.958e-05
7.9581e-05
7.95809e-05
7.95807e-05
7.95799e-05
7.95785e-05
7.95772e-05
7.95756e-05
7.95742e-05
7.95733e-05
7.95714e-05
7.95711e-05
7.95707e-05
7.95708e-05
7.95718e-05
7.95724e-05
7.95735e-05
7.95754e-05
7.95765e-05
7.95782e-05
7.95788e-05
7.95799e-05
7.95797e-05
7.95797e-05
7.9579e-05
7.95776e-05
7.95764e-05
7.95748e-05
7.95735e-05
7.95726e-05
7.95706e-05
7.95703e-05
7.95698e-05
7.95699e-05
7.95709e-05
7.95715e-05
7.95726e-05
7.95744e-05
7.95754e-05
7.95772e-05
7.95777e-05
7.95788e-05
7.95787e-05
7.95787e-05
7.9578e-05
7.95767e-05
7.95756e-05
7.9574e-05
7.95727e-05
7.95718e-05
7.96001e-05
7.95955e-05
7.95982e-05
7.96013e-05
7.95981e-05
7.96009e-05
7.96042e-05
7.96037e-05
7.96053e-05
7.96065e-05
7.96074e-05
7.96085e-05
7.96085e-05
7.96081e-05
7.96047e-05
7.9605e-05
7.96025e-05
7.96028e-05
7.96044e-05
7.95987e-05
6.63268e-05
7.44001e-05
8.08408e-05
8.56787e-05
8.91979e-05
9.17402e-05
9.36533e-05
9.51964e-05
9.68044e-05
9.89236e-05
0.000100672
0.000100002
9.52791e-05
8.63139e-05
7.40432e-05
6.09937e-05
5.1123e-05
4.74431e-05
5.03389e-05
5.76806e-05
8.6362e-05
8.89206e-05
9.05484e-05
9.14744e-05
9.20602e-05
9.25733e-05
9.32021e-05
9.39534e-05
9.89107e-05
0.000114937
0.000138219
0.000154939
0.000153453
0.000133748
0.000107657
8.79547e-05
7.85879e-05
7.71483e-05
7.97025e-05
8.33226e-05
8.74882e-05
8.81294e-05
8.84444e-05
8.86166e-05
8.88267e-05
8.90875e-05
8.95696e-05
9.03209e-05
9.74779e-05
0.000130023
0.000169815
0.000181745
0.000159817
0.000125199
9.81768e-05
8.46716e-05
8.11447e-05
8.22326e-05
8.44552e-05
8.6337e-05
8.60683e-05
8.61963e-05
8.62877e-05
8.64104e-05
8.66542e-05
8.69475e-05
8.74707e-05
8.8134e-05
9.03123e-05
0.00015071
0.000215611
0.000216831
0.000170963
0.000124335
9.57814e-05
8.47134e-05
8.28217e-05
8.38268e-05
8.50279e-05
8.57489e-05
8.51051e-05
8.51575e-05
8.5268e-05
8.54094e-05
8.56431e-05
8.58898e-05
8.63517e-05
8.69162e-05
9.15755e-05
0.000228292
0.0003545
0.000367134
0.000288016
0.000189478
0.000125982
9.77085e-05
8.8139e-05
8.56358e-05
8.51503e-05
8.50893e-05
8.44892e-05
8.45472e-05
8.46487e-05
8.47761e-05
8.49772e-05
8.51937e-05
8.55823e-05
8.60594e-05
9.10558e-05
0.000264296
0.000385345
0.000343824
0.000236014
0.000150908
0.0001074
9.08402e-05
8.59117e-05
8.4728e-05
8.44934e-05
8.44615e-05
8.41556e-05
8.42238e-05
8.43247e-05
8.44425e-05
8.46094e-05
8.47945e-05
8.51026e-05
8.55117e-05
9.02722e-05
0.000238291
0.000371069
0.000362592
0.000243353
0.000149034
0.000104861
8.95413e-05
8.531e-05
8.43244e-05
8.41302e-05
8.41149e-05
8.39657e-05
8.40273e-05
8.41106e-05
8.42089e-05
8.43405e-05
8.44965e-05
8.47302e-05
8.50752e-05
8.6025e-05
9.6422e-05
0.00011601
0.00013028
0.00012498
0.000104211
9.06804e-05
8.56056e-05
8.4239e-05
8.39438e-05
8.39015e-05
8.39201e-05
8.38584e-05
8.39153e-05
8.39869e-05
8.40707e-05
8.41737e-05
8.43052e-05
8.4472e-05
8.47735e-05
8.54039e-05
9.73349e-05
0.00011243
0.000100287
9.33528e-05
8.83122e-05
8.51809e-05
8.40716e-05
8.38144e-05
8.37741e-05
8.37843e-05
8.38135e-05
8.37925e-05
8.38405e-05
8.38988e-05
8.39672e-05
8.40478e-05
8.41545e-05
8.42781e-05
8.45313e-05
8.4972e-05
9.96493e-05
0.00012136
0.000100143
8.94482e-05
8.58327e-05
8.42774e-05
8.38114e-05
8.37202e-05
8.37124e-05
8.37265e-05
8.37536e-05
8.37521e-05
8.37929e-05
8.38413e-05
8.38972e-05
8.39605e-05
8.40442e-05
8.41348e-05
8.43334e-05
8.46201e-05
0.000101967
0.000124495
0.000100052
8.93707e-05
8.56721e-05
8.41906e-05
8.37764e-05
8.36926e-05
8.36837e-05
8.36952e-05
8.37188e-05
8.37238e-05
8.37576e-05
8.37972e-05
8.38423e-05
8.38927e-05
8.39571e-05
8.40286e-05
8.41753e-05
8.44184e-05
0.000102706
0.00013553
0.000106069
9.18451e-05
8.63669e-05
8.43391e-05
8.37978e-05
8.36852e-05
8.36692e-05
8.3677e-05
8.36962e-05
8.37036e-05
8.37314e-05
8.37639e-05
8.38004e-05
8.38405e-05
8.38885e-05
8.39438e-05
8.40418e-05
8.42349e-05
0.000104963
0.000130567
0.000101073
8.9954e-05
8.57624e-05
8.41709e-05
8.37552e-05
8.36711e-05
8.36594e-05
8.36655e-05
8.3681e-05
8.3687e-05
8.37097e-05
8.37364e-05
8.37659e-05
8.37983e-05
8.38346e-05
8.38778e-05
8.39432e-05
8.41989e-05
0.000110319
0.000142574
0.000107313
9.2218e-05
8.63769e-05
8.43004e-05
8.37727e-05
8.36683e-05
8.36529e-05
8.36565e-05
8.36687e-05
8.36729e-05
8.36913e-05
8.37132e-05
8.37373e-05
8.37634e-05
8.37906e-05
8.38234e-05
8.38651e-05
8.40942e-05
0.000107612
0.000126058
9.95768e-05
8.9928e-05
8.57159e-05
8.4141e-05
8.37401e-05
8.36605e-05
8.36476e-05
8.36493e-05
8.36584e-05
8.36599e-05
8.36748e-05
8.36929e-05
8.37126e-05
8.37339e-05
8.3755e-05
8.37756e-05
8.38001e-05
8.37437e-05
8.27883e-05
7.39161e-05
7.75697e-05
8.20816e-05
8.33633e-05
8.35877e-05
8.36323e-05
8.36391e-05
8.36392e-05
8.36413e-05
8.36483e-05
8.36479e-05
8.36599e-05
8.36748e-05
8.3691e-05
8.37086e-05
8.37256e-05
8.3741e-05
8.37551e-05
8.37569e-05
8.40137e-05
8.37144e-05
8.37171e-05
8.37426e-05
8.37141e-05
8.36816e-05
8.36582e-05
8.36425e-05
8.36353e-05
8.36344e-05
8.3639e-05
8.36365e-05
8.36462e-05
8.36584e-05
8.36719e-05
8.36865e-05
8.37006e-05
8.37133e-05
8.37245e-05
8.3731e-05
8.37311e-05
8.37116e-05
8.3709e-05
8.37048e-05
8.36868e-05
8.36647e-05
8.36468e-05
8.3634e-05
8.36276e-05
8.36263e-05
8.36295e-05
8.36257e-05
8.36335e-05
8.36435e-05
8.36547e-05
8.36669e-05
8.36785e-05
8.36887e-05
8.36961e-05
8.36977e-05
8.36965e-05
8.36824e-05
8.36879e-05
8.36829e-05
8.36698e-05
8.36528e-05
8.3638e-05
8.36267e-05
8.36205e-05
8.36185e-05
8.36204e-05
8.36155e-05
8.36217e-05
8.36299e-05
8.36393e-05
8.36496e-05
8.36595e-05
8.36684e-05
8.36752e-05
8.36776e-05
8.36769e-05
8.36665e-05
8.36661e-05
8.36613e-05
8.36519e-05
8.36391e-05
8.36275e-05
8.36181e-05
8.36125e-05
8.36104e-05
8.36115e-05
8.36059e-05
8.36108e-05
8.36176e-05
8.36253e-05
8.3634e-05
8.36423e-05
8.36499e-05
8.36554e-05
8.36573e-05
8.36573e-05
8.36509e-05
8.36521e-05
8.36476e-05
8.36396e-05
8.36286e-05
8.36185e-05
8.36102e-05
8.36049e-05
8.36025e-05
8.36029e-05
8.35968e-05
8.36007e-05
8.36063e-05
8.36128e-05
8.36202e-05
8.36273e-05
8.36339e-05
8.36389e-05
8.36413e-05
8.36419e-05
8.36371e-05
8.36367e-05
8.36324e-05
8.36262e-05
8.36174e-05
8.36092e-05
8.3602e-05
8.35972e-05
8.35948e-05
8.35947e-05
8.35884e-05
8.35915e-05
8.3596e-05
8.36014e-05
8.36077e-05
8.36137e-05
8.36196e-05
8.3624e-05
8.36262e-05
8.36271e-05
8.36242e-05
8.36244e-05
8.36209e-05
8.36155e-05
8.36078e-05
8.36007e-05
8.35944e-05
8.359e-05
8.35875e-05
8.3587e-05
8.35807e-05
8.3583e-05
8.35867e-05
8.35912e-05
8.35966e-05
8.36018e-05
8.36069e-05
8.36108e-05
8.36133e-05
8.36145e-05
8.36124e-05
8.36122e-05
8.3609e-05
8.36047e-05
8.35985e-05
8.35925e-05
8.35869e-05
8.35829e-05
8.35804e-05
8.35797e-05
8.35735e-05
8.35753e-05
8.35783e-05
8.35821e-05
8.35866e-05
8.35911e-05
8.35956e-05
8.35992e-05
8.36015e-05
8.36029e-05
8.36018e-05
8.36018e-05
8.35991e-05
8.35954e-05
8.35901e-05
8.35849e-05
8.35799e-05
8.35763e-05
8.35739e-05
8.3573e-05
8.3567e-05
8.35683e-05
8.35707e-05
8.35738e-05
8.35777e-05
8.35816e-05
8.35856e-05
8.35889e-05
8.35911e-05
8.35925e-05
8.35919e-05
8.3592e-05
8.35899e-05
8.35868e-05
8.35822e-05
8.35777e-05
8.35734e-05
8.35701e-05
8.35678e-05
8.35668e-05
8.3561e-05
8.3562e-05
8.35639e-05
8.35665e-05
8.35698e-05
8.35732e-05
8.35767e-05
8.35797e-05
8.35818e-05
8.35834e-05
8.35832e-05
8.35833e-05
8.35815e-05
8.3579e-05
8.35752e-05
8.35712e-05
8.35674e-05
8.35643e-05
8.35621e-05
8.35611e-05
8.35556e-05
8.35563e-05
8.35578e-05
8.356e-05
8.35628e-05
8.35657e-05
8.35689e-05
8.35716e-05
8.35737e-05
8.35752e-05
8.35753e-05
8.35755e-05
8.35741e-05
8.3572e-05
8.35687e-05
8.35653e-05
8.35619e-05
8.35591e-05
8.3557e-05
8.35559e-05
8.35507e-05
8.35512e-05
8.35524e-05
8.35541e-05
8.35566e-05
8.35591e-05
8.35619e-05
8.35644e-05
8.35664e-05
8.35679e-05
8.35683e-05
8.35686e-05
8.35674e-05
8.35657e-05
8.35629e-05
8.35599e-05
8.35569e-05
8.35543e-05
8.35523e-05
8.35511e-05
8.35464e-05
8.35467e-05
8.35475e-05
8.3549e-05
8.35511e-05
8.35533e-05
8.35558e-05
8.35582e-05
8.356e-05
8.35616e-05
8.3562e-05
8.35624e-05
8.35615e-05
8.35601e-05
8.35577e-05
8.3555e-05
8.35524e-05
8.355e-05
8.35481e-05
8.35469e-05
8.35425e-05
8.35426e-05
8.35433e-05
8.35445e-05
8.35463e-05
8.35482e-05
8.35505e-05
8.35526e-05
8.35544e-05
8.35559e-05
8.35565e-05
8.3557e-05
8.35563e-05
8.35551e-05
8.35531e-05
8.35507e-05
8.35483e-05
8.35461e-05
8.35443e-05
8.35432e-05
8.35392e-05
8.35391e-05
8.35396e-05
8.35405e-05
8.35421e-05
8.35438e-05
8.35459e-05
8.35479e-05
8.35496e-05
8.35511e-05
8.35517e-05
8.35523e-05
8.35517e-05
8.35508e-05
8.3549e-05
8.35469e-05
8.35448e-05
8.35427e-05
8.3541e-05
8.35399e-05
8.35362e-05
8.35361e-05
8.35363e-05
8.35371e-05
8.35385e-05
8.354e-05
8.35418e-05
8.35438e-05
8.35453e-05
8.35469e-05
8.35475e-05
8.35482e-05
8.35478e-05
8.3547e-05
8.35455e-05
8.35436e-05
8.35416e-05
8.35397e-05
8.35381e-05
8.3537e-05
8.35337e-05
8.35335e-05
8.35336e-05
8.35342e-05
8.35355e-05
8.35368e-05
8.35384e-05
8.35404e-05
8.35418e-05
8.35434e-05
8.3544e-05
8.35448e-05
8.35444e-05
8.35438e-05
8.35425e-05
8.35408e-05
8.3539e-05
8.35372e-05
8.35356e-05
8.35346e-05
8.35315e-05
8.35313e-05
8.35312e-05
8.35317e-05
8.35329e-05
8.3534e-05
8.35355e-05
8.35374e-05
8.35387e-05
8.35403e-05
8.3541e-05
8.35418e-05
8.35415e-05
8.35411e-05
8.35399e-05
8.35383e-05
8.35367e-05
8.35349e-05
8.35334e-05
8.35324e-05
8.35298e-05
8.35296e-05
8.35294e-05
8.35298e-05
8.35309e-05
8.35318e-05
8.35332e-05
8.35351e-05
8.35363e-05
8.3538e-05
8.35386e-05
8.35395e-05
8.35393e-05
8.3539e-05
8.35379e-05
8.35364e-05
8.3535e-05
8.35333e-05
8.35318e-05
8.35308e-05
8.35283e-05
8.3528e-05
8.35278e-05
8.3528e-05
8.35291e-05
8.353e-05
8.35312e-05
8.35331e-05
8.35343e-05
8.35359e-05
8.35365e-05
8.35375e-05
8.35373e-05
8.35371e-05
8.35361e-05
8.35347e-05
8.35334e-05
8.35317e-05
8.35303e-05
8.35294e-05
8.35275e-05
8.35272e-05
8.35268e-05
8.3527e-05
8.3528e-05
8.35288e-05
8.35299e-05
8.35319e-05
8.35329e-05
8.35347e-05
8.35352e-05
8.35363e-05
8.35361e-05
8.3536e-05
8.35352e-05
8.35338e-05
8.35326e-05
8.35309e-05
8.35295e-05
8.35286e-05
8.35267e-05
8.35264e-05
8.35259e-05
8.35261e-05
8.35271e-05
8.35278e-05
8.35289e-05
8.35308e-05
8.35318e-05
8.35336e-05
8.35341e-05
8.35352e-05
8.3535e-05
8.3535e-05
8.35342e-05
8.35328e-05
8.35317e-05
8.353e-05
8.35287e-05
8.35278e-05
8.35561e-05
8.3551e-05
8.35543e-05
8.35575e-05
8.35538e-05
8.35571e-05
8.35606e-05
8.35595e-05
8.35616e-05
8.35622e-05
8.35637e-05
8.35642e-05
8.35647e-05
8.35637e-05
8.356e-05
8.3561e-05
8.35579e-05
8.35587e-05
8.35605e-05
8.35541e-05
7.24784e-05
8.0434e-05
8.65825e-05
9.11003e-05
9.43348e-05
9.66673e-05
9.84616e-05
9.99768e-05
0.000101747
0.00010432
0.000106536
0.000105833
0.00010026
8.98147e-05
7.6002e-05
6.22082e-05
5.28465e-05
5.06126e-05
5.51007e-05
6.34862e-05
9.14352e-05
9.36959e-05
9.51134e-05
9.5913e-05
9.64571e-05
9.69851e-05
9.76756e-05
9.85321e-05
0.00010475
0.000124706
0.000153255
0.000173208
0.000170832
0.00014743
0.000117931
9.62517e-05
8.58254e-05
8.36756e-05
8.56334e-05
8.87592e-05
9.19346e-05
9.24634e-05
9.27305e-05
9.28967e-05
9.31273e-05
9.34214e-05
9.39655e-05
9.48223e-05
0.000103494
0.000142633
0.000189391
0.000202438
0.000176611
0.000137184
0.000106825
9.15324e-05
8.70757e-05
8.75763e-05
8.93841e-05
9.09728e-05
9.03456e-05
9.04539e-05
9.05522e-05
9.06929e-05
9.09616e-05
9.12796e-05
9.18496e-05
9.25706e-05
9.49846e-05
0.000164273
0.000235924
0.000234263
0.000182864
0.000132238
0.000101907
9.01598e-05
8.78586e-05
8.8541e-05
8.95093e-05
9.00908e-05
8.93538e-05
8.94143e-05
8.95378e-05
8.96922e-05
8.99435e-05
9.0207e-05
9.07043e-05
9.13091e-05
9.63385e-05
0.000251933
0.00039055
0.000399307
0.000307149
0.000199302
0.000132166
0.000102702
9.26907e-05
8.99993e-05
8.94311e-05
8.93404e-05
8.8739e-05
8.88065e-05
8.89194e-05
8.90578e-05
8.92726e-05
8.95018e-05
8.99155e-05
9.04209e-05
9.57706e-05
0.000293135
0.000423483
0.000369395
0.000249035
0.000157964
0.000112499
9.53418e-05
9.02301e-05
8.8987e-05
8.87354e-05
8.87038e-05
8.84101e-05
8.84863e-05
8.85956e-05
8.87215e-05
8.88985e-05
8.90936e-05
8.94196e-05
8.98506e-05
9.4929e-05
0.000266644
0.000416184
0.000396176
0.000259639
0.000157021
0.000110052
9.39644e-05
8.95724e-05
8.85627e-05
8.837e-05
8.83614e-05
8.82218e-05
8.82901e-05
8.83803e-05
8.84856e-05
8.86251e-05
8.87892e-05
8.90353e-05
8.93983e-05
9.04283e-05
0.000103681
0.000128076
0.000143569
0.000134328
0.000110311
9.53963e-05
8.99359e-05
8.84911e-05
8.81851e-05
8.81454e-05
8.81697e-05
8.81157e-05
8.81779e-05
8.8255e-05
8.83443e-05
8.84535e-05
8.85914e-05
8.87663e-05
8.90823e-05
8.97607e-05
0.000105098
0.00012422
0.000109639
0.000100436
9.36806e-05
8.974e-05
8.83857e-05
8.80704e-05
8.802e-05
8.80318e-05
8.80656e-05
8.80499e-05
8.81024e-05
8.81654e-05
8.82384e-05
8.83239e-05
8.84357e-05
8.8565e-05
8.88291e-05
8.92982e-05
0.000107937
0.000134709
0.000109369
9.61816e-05
9.10085e-05
8.87741e-05
8.81114e-05
8.79749e-05
8.796e-05
8.79758e-05
8.80067e-05
8.80094e-05
8.80539e-05
8.81061e-05
8.81657e-05
8.8233e-05
8.83207e-05
8.84152e-05
8.86214e-05
8.89236e-05
0.000110794
0.000138193
0.000109122
9.58844e-05
9.06898e-05
8.86287e-05
8.80619e-05
8.79458e-05
8.79325e-05
8.79458e-05
8.79725e-05
8.79808e-05
8.80176e-05
8.80604e-05
8.81086e-05
8.81622e-05
8.82297e-05
8.83041e-05
8.84556e-05
8.8709e-05
0.000111764
0.000150911
0.000115565
9.82977e-05
9.12845e-05
8.87371e-05
8.80736e-05
8.79376e-05
8.7919e-05
8.79283e-05
8.79503e-05
8.79601e-05
8.79904e-05
8.80255e-05
8.80645e-05
8.81073e-05
8.81576e-05
8.82151e-05
8.83156e-05
8.85151e-05
0.000114387
0.000145161
0.000110039
9.62209e-05
9.06268e-05
8.85601e-05
8.80316e-05
8.7925e-05
8.79103e-05
8.79174e-05
8.79351e-05
8.79429e-05
8.79676e-05
8.79966e-05
8.80282e-05
8.80627e-05
8.81008e-05
8.81457e-05
8.82124e-05
8.84763e-05
0.000120585
0.000158556
0.000116659
9.85037e-05
9.12149e-05
8.86775e-05
8.80464e-05
8.79225e-05
8.79044e-05
8.79087e-05
8.79226e-05
8.79281e-05
8.79483e-05
8.79721e-05
8.79978e-05
8.80257e-05
8.80542e-05
8.80882e-05
8.81304e-05
8.83661e-05
0.000117588
0.000139709
0.000108125
9.59571e-05
9.04798e-05
8.85037e-05
8.80122e-05
8.7915e-05
8.78993e-05
8.79015e-05
8.7912e-05
8.79145e-05
8.79309e-05
8.79505e-05
8.79717e-05
8.79944e-05
8.80165e-05
8.80381e-05
8.80629e-05
8.79955e-05
8.86143e-05
8.00008e-05
8.36849e-05
8.73416e-05
8.79429e-05
8.79204e-05
8.7901e-05
8.78934e-05
8.78911e-05
8.78935e-05
8.79016e-05
8.79019e-05
8.79152e-05
8.79313e-05
8.79488e-05
8.79675e-05
8.79854e-05
8.80013e-05
8.80153e-05
8.80166e-05
8.84315e-05
8.80521e-05
8.80109e-05
8.80153e-05
8.79759e-05
8.79363e-05
8.791e-05
8.78935e-05
8.78865e-05
8.78863e-05
8.78919e-05
8.78899e-05
8.79006e-05
8.79139e-05
8.79284e-05
8.79441e-05
8.79588e-05
8.79721e-05
8.79832e-05
8.79893e-05
8.79913e-05
8.7969e-05
8.79659e-05
8.796e-05
8.79401e-05
8.79165e-05
8.78979e-05
8.78849e-05
8.78788e-05
8.78781e-05
8.7882e-05
8.78786e-05
8.78872e-05
8.78982e-05
8.79102e-05
8.79232e-05
8.79354e-05
8.7946e-05
8.79533e-05
8.79545e-05
8.79523e-05
8.79373e-05
8.79435e-05
8.79371e-05
8.79228e-05
8.79044e-05
8.78891e-05
8.78776e-05
8.78715e-05
8.787e-05
8.78725e-05
8.78678e-05
8.78747e-05
8.78838e-05
8.78938e-05
8.79049e-05
8.79152e-05
8.79245e-05
8.79312e-05
8.79334e-05
8.79318e-05
8.79207e-05
8.79204e-05
8.79146e-05
8.79044e-05
8.78906e-05
8.78785e-05
8.78689e-05
8.78634e-05
8.78616e-05
8.78632e-05
8.78577e-05
8.78633e-05
8.78707e-05
8.7879e-05
8.78884e-05
8.78971e-05
8.79049e-05
8.79103e-05
8.7912e-05
8.79114e-05
8.79045e-05
8.79058e-05
8.79004e-05
8.78918e-05
8.78799e-05
8.78694e-05
8.78608e-05
8.78556e-05
8.78534e-05
8.78543e-05
8.78482e-05
8.78526e-05
8.78587e-05
8.78657e-05
8.78737e-05
8.78811e-05
8.7888e-05
8.78929e-05
8.78952e-05
8.78954e-05
8.78901e-05
8.78896e-05
8.78847e-05
8.78779e-05
8.78685e-05
8.78599e-05
8.78524e-05
8.78477e-05
8.78454e-05
8.78457e-05
8.78394e-05
8.78429e-05
8.78479e-05
8.78537e-05
8.78604e-05
8.78667e-05
8.78729e-05
8.78773e-05
8.78793e-05
8.78799e-05
8.78767e-05
8.78768e-05
8.78727e-05
8.78668e-05
8.78585e-05
8.78511e-05
8.78446e-05
8.78402e-05
8.78378e-05
8.78376e-05
8.78313e-05
8.7834e-05
8.78381e-05
8.7843e-05
8.78487e-05
8.78542e-05
8.78594e-05
8.78634e-05
8.78658e-05
8.78667e-05
8.78644e-05
8.78641e-05
8.78604e-05
8.78557e-05
8.78491e-05
8.78427e-05
8.78369e-05
8.78329e-05
8.78305e-05
8.78301e-05
8.78238e-05
8.78259e-05
8.78292e-05
8.78333e-05
8.78382e-05
8.78429e-05
8.78476e-05
8.78511e-05
8.78535e-05
8.78546e-05
8.78533e-05
8.78531e-05
8.78501e-05
8.78461e-05
8.78404e-05
8.78348e-05
8.78298e-05
8.7826e-05
8.78237e-05
8.7823e-05
8.78169e-05
8.78185e-05
8.78212e-05
8.78246e-05
8.78288e-05
8.78329e-05
8.7837e-05
8.78403e-05
8.78425e-05
8.78437e-05
8.7843e-05
8.78429e-05
8.78405e-05
8.78371e-05
8.78322e-05
8.78275e-05
8.7823e-05
8.78196e-05
8.78174e-05
8.78165e-05
8.78107e-05
8.78119e-05
8.78141e-05
8.78169e-05
8.78204e-05
8.7824e-05
8.78277e-05
8.78306e-05
8.78328e-05
8.78342e-05
8.78339e-05
8.78339e-05
8.78319e-05
8.78291e-05
8.7825e-05
8.78208e-05
8.78168e-05
8.78137e-05
8.78116e-05
8.78106e-05
8.78051e-05
8.78059e-05
8.78076e-05
8.781e-05
8.7813e-05
8.78161e-05
8.78194e-05
8.78221e-05
8.78242e-05
8.78256e-05
8.78257e-05
8.78258e-05
8.78241e-05
8.78218e-05
8.78183e-05
8.78146e-05
8.78111e-05
8.78083e-05
8.78062e-05
8.78052e-05
8.78e-05
8.78006e-05
8.78019e-05
8.78039e-05
8.78065e-05
8.78092e-05
8.78121e-05
8.78146e-05
8.78166e-05
8.78181e-05
8.78183e-05
8.78185e-05
8.78172e-05
8.78152e-05
8.78122e-05
8.78091e-05
8.78059e-05
8.78033e-05
8.78014e-05
8.78003e-05
8.77954e-05
8.77958e-05
8.77969e-05
8.77985e-05
8.78007e-05
8.78031e-05
8.78057e-05
8.7808e-05
8.78099e-05
8.78114e-05
8.78118e-05
8.78121e-05
8.78111e-05
8.78094e-05
8.78069e-05
8.78041e-05
8.78013e-05
8.77988e-05
8.7797e-05
8.77959e-05
8.77914e-05
8.77916e-05
8.77924e-05
8.77937e-05
8.77957e-05
8.77977e-05
8.78e-05
8.78023e-05
8.78041e-05
8.78055e-05
8.78061e-05
8.78065e-05
8.78056e-05
8.78043e-05
8.78021e-05
8.77996e-05
8.77971e-05
8.77948e-05
8.77931e-05
8.7792e-05
8.77879e-05
8.77879e-05
8.77885e-05
8.77896e-05
8.77913e-05
8.77931e-05
8.77952e-05
8.77973e-05
8.7799e-05
8.78005e-05
8.78011e-05
8.78016e-05
8.78009e-05
8.77998e-05
8.77979e-05
8.77957e-05
8.77934e-05
8.77913e-05
8.77896e-05
8.77885e-05
8.77848e-05
8.77847e-05
8.77851e-05
8.77859e-05
8.77875e-05
8.77891e-05
8.7791e-05
8.7793e-05
8.77945e-05
8.77961e-05
8.77967e-05
8.77973e-05
8.77967e-05
8.77959e-05
8.77942e-05
8.77922e-05
8.77902e-05
8.77882e-05
8.77866e-05
8.77855e-05
8.77822e-05
8.77821e-05
8.77822e-05
8.77829e-05
8.77843e-05
8.77857e-05
8.77874e-05
8.77894e-05
8.77908e-05
8.77924e-05
8.7793e-05
8.77937e-05
8.77933e-05
8.77926e-05
8.77911e-05
8.77893e-05
8.77875e-05
8.77856e-05
8.77841e-05
8.7783e-05
8.77799e-05
8.77797e-05
8.77797e-05
8.77803e-05
8.77816e-05
8.77828e-05
8.77843e-05
8.77862e-05
8.77876e-05
8.77892e-05
8.77898e-05
8.77906e-05
8.77902e-05
8.77897e-05
8.77884e-05
8.77868e-05
8.77851e-05
8.77833e-05
8.77818e-05
8.77808e-05
8.77782e-05
8.7778e-05
8.77779e-05
8.77783e-05
8.77795e-05
8.77805e-05
8.77819e-05
8.77838e-05
8.77851e-05
8.77867e-05
8.77874e-05
8.77882e-05
8.77879e-05
8.77876e-05
8.77864e-05
8.77848e-05
8.77833e-05
8.77816e-05
8.77801e-05
8.77791e-05
8.77766e-05
8.77763e-05
8.77761e-05
8.77764e-05
8.77776e-05
8.77785e-05
8.77799e-05
8.77818e-05
8.7783e-05
8.77846e-05
8.77852e-05
8.77861e-05
8.77859e-05
8.77856e-05
8.77846e-05
8.7783e-05
8.77817e-05
8.77799e-05
8.77785e-05
8.77776e-05
8.77757e-05
8.77755e-05
8.77751e-05
8.77753e-05
8.77765e-05
8.77773e-05
8.77785e-05
8.77805e-05
8.77816e-05
8.77833e-05
8.77839e-05
8.77849e-05
8.77846e-05
8.77845e-05
8.77836e-05
8.77821e-05
8.77808e-05
8.77791e-05
8.77777e-05
8.77768e-05
8.77748e-05
8.77746e-05
8.77742e-05
8.77744e-05
8.77755e-05
8.77762e-05
8.77774e-05
8.77794e-05
8.77804e-05
8.77822e-05
8.77827e-05
8.77838e-05
8.77835e-05
8.77834e-05
8.77825e-05
8.77811e-05
8.77799e-05
8.77782e-05
8.77769e-05
8.7776e-05
8.78042e-05
8.77986e-05
8.78025e-05
8.7806e-05
8.78016e-05
8.78055e-05
8.78092e-05
8.78075e-05
8.78101e-05
8.78102e-05
8.78122e-05
8.78121e-05
8.78132e-05
8.78114e-05
8.78075e-05
8.78092e-05
8.78055e-05
8.78069e-05
8.78089e-05
8.78017e-05
7.91135e-05
8.68364e-05
9.26315e-05
9.67994e-05
9.97437e-05
0.000101879
0.000103578
0.000105098
0.000107109
0.000110279
0.000113073
0.000112293
0.000105653
9.34828e-05
7.80499e-05
6.37006e-05
5.51672e-05
5.46073e-05
6.06889e-05
6.99517e-05
9.67865e-05
9.87505e-05
9.99657e-05
0.000100654
0.000101172
0.000101728
0.000102494
0.00010348
0.000111258
0.000136002
0.000170819
0.000194328
0.000190521
0.000162698
0.000129336
0.000105343
9.3592e-05
9.05684e-05
9.18586e-05
9.44734e-05
9.66751e-05
9.71031e-05
9.73323e-05
9.75002e-05
9.77568e-05
9.80892e-05
9.87029e-05
9.96825e-05
0.000110155
0.00015719
0.000212033
0.000226015
0.000195401
0.000150322
0.000116117
9.88195e-05
9.33446e-05
9.3218e-05
9.45971e-05
9.58935e-05
9.49365e-05
9.50322e-05
9.51419e-05
9.53027e-05
9.55982e-05
9.59432e-05
9.65649e-05
9.73508e-05
0.000100044
0.000179373
0.000258168
0.000252752
0.00019522
0.000140423
0.000108345
9.59214e-05
9.319e-05
9.3541e-05
9.42825e-05
9.47359e-05
9.39242e-05
9.39953e-05
9.41331e-05
9.43017e-05
9.4572e-05
9.48541e-05
9.53902e-05
9.60399e-05
0.000101473
0.000278162
0.000429833
0.000433013
0.000326033
0.000208741
0.000138329
0.000107864
9.74892e-05
9.46484e-05
9.40181e-05
9.39082e-05
9.33124e-05
9.33907e-05
9.35158e-05
9.36662e-05
9.38955e-05
9.41386e-05
9.45797e-05
9.51164e-05
0.00010084
0.000325212
0.000464574
0.000395462
0.000261665
0.000164848
0.000117692
0.000100065
9.48295e-05
9.35528e-05
9.32946e-05
9.32678e-05
9.29885e-05
9.30736e-05
9.31919e-05
9.33267e-05
9.35146e-05
9.37206e-05
9.40659e-05
9.45208e-05
9.99257e-05
0.000298883
0.000466679
0.000431597
0.000275934
0.000164977
0.000115377
9.86311e-05
9.41304e-05
9.31155e-05
9.29305e-05
9.29307e-05
9.28019e-05
9.28775e-05
9.29754e-05
9.30881e-05
9.32362e-05
9.3409e-05
9.36686e-05
9.40513e-05
9.51707e-05
0.000111987
0.000142344
0.000158407
0.000144225
0.000116664
0.000100357
9.45534e-05
9.30541e-05
9.27457e-05
9.27115e-05
9.27427e-05
9.2697e-05
9.2765e-05
9.28482e-05
9.29434e-05
9.30593e-05
9.32042e-05
9.3388e-05
9.37194e-05
9.44514e-05
0.000114025
0.000138121
0.000120256
0.000108156
9.93921e-05
9.45933e-05
9.30069e-05
9.26437e-05
9.25872e-05
9.26021e-05
9.26411e-05
9.26314e-05
9.26888e-05
9.27568e-05
9.28348e-05
9.29257e-05
9.3043e-05
9.31785e-05
9.3454e-05
9.39546e-05
0.000117493
0.000150457
0.000119867
0.000103556
9.65392e-05
9.35768e-05
9.27243e-05
9.25491e-05
9.25295e-05
9.25481e-05
9.25834e-05
9.25908e-05
9.26392e-05
9.26955e-05
9.27591e-05
9.28308e-05
9.29227e-05
9.30216e-05
9.32357e-05
9.3555e-05
0.000121007
0.000154312
0.000119413
0.000102995
9.60513e-05
9.33756e-05
9.26632e-05
9.25197e-05
9.25038e-05
9.25196e-05
9.25499e-05
9.25617e-05
9.26018e-05
9.26481e-05
9.26996e-05
9.27567e-05
9.28274e-05
9.2905e-05
9.30614e-05
9.33258e-05
0.000122267
0.000168992
0.000126298
0.000105316
9.65373e-05
9.34451e-05
9.26666e-05
9.25113e-05
9.24915e-05
9.2503e-05
9.25279e-05
9.25404e-05
9.25734e-05
9.26115e-05
9.26532e-05
9.26988e-05
9.27515e-05
9.28114e-05
9.29145e-05
9.31205e-05
0.000125325
0.00016231
0.000120168
0.000103037
9.58271e-05
9.32614e-05
9.2626e-05
9.25006e-05
9.24841e-05
9.24927e-05
9.25127e-05
9.25225e-05
9.25496e-05
9.25809e-05
9.26149e-05
9.26517e-05
9.26916e-05
9.27383e-05
9.28063e-05
9.30781e-05
0.000132525
0.000177275
0.000127187
0.000105328
9.6385e-05
9.33666e-05
9.26386e-05
9.24986e-05
9.24788e-05
9.24843e-05
9.25001e-05
9.25071e-05
9.25292e-05
9.2555e-05
9.25826e-05
9.26124e-05
9.26423e-05
9.26775e-05
9.27201e-05
9.2962e-05
0.000129204
0.000155661
0.00011773
0.000102489
9.55719e-05
9.31795e-05
9.26034e-05
9.24915e-05
9.24742e-05
9.24772e-05
9.24892e-05
9.24928e-05
9.25108e-05
9.25321e-05
9.25549e-05
9.25792e-05
9.26024e-05
9.26248e-05
9.26499e-05
9.25696e-05
9.52266e-05
8.69886e-05
9.04888e-05
9.30101e-05
9.28426e-05
9.2569e-05
9.249e-05
9.24702e-05
9.24661e-05
9.24692e-05
9.24785e-05
9.24796e-05
9.24942e-05
9.25117e-05
9.25305e-05
9.25505e-05
9.25692e-05
9.25858e-05
9.25996e-05
9.26002e-05
9.32047e-05
9.27206e-05
9.2629e-05
9.26118e-05
9.25608e-05
9.25138e-05
9.24848e-05
9.24676e-05
9.24611e-05
9.24617e-05
9.24683e-05
9.24669e-05
9.24788e-05
9.24933e-05
9.25089e-05
9.25256e-05
9.2541e-05
9.25549e-05
9.25658e-05
9.25715e-05
9.25756e-05
9.25501e-05
9.25466e-05
9.25386e-05
9.25168e-05
9.24915e-05
9.24723e-05
9.24591e-05
9.24534e-05
9.24532e-05
9.2458e-05
9.2455e-05
9.24645e-05
9.24765e-05
9.24895e-05
9.25034e-05
9.25162e-05
9.25272e-05
9.25342e-05
9.25351e-05
9.25318e-05
9.25158e-05
9.25228e-05
9.25148e-05
9.24991e-05
9.24794e-05
9.24635e-05
9.24518e-05
9.24459e-05
9.24448e-05
9.24481e-05
9.24437e-05
9.24514e-05
9.24612e-05
9.24721e-05
9.24839e-05
9.24947e-05
9.25044e-05
9.25109e-05
9.25128e-05
9.25104e-05
9.24984e-05
9.24984e-05
9.24915e-05
9.24803e-05
9.24655e-05
9.24528e-05
9.2443e-05
9.24377e-05
9.24362e-05
9.24384e-05
9.24331e-05
9.24392e-05
9.24474e-05
9.24564e-05
9.24664e-05
9.24755e-05
9.24837e-05
9.24889e-05
9.24905e-05
9.24892e-05
9.24817e-05
9.24831e-05
9.24767e-05
9.24673e-05
9.24545e-05
9.24435e-05
9.24347e-05
9.24296e-05
9.24277e-05
9.2429e-05
9.24231e-05
9.2428e-05
9.24347e-05
9.24423e-05
9.24508e-05
9.24586e-05
9.24657e-05
9.24706e-05
9.24727e-05
9.24724e-05
9.24666e-05
9.24661e-05
9.24604e-05
9.2453e-05
9.24429e-05
9.24339e-05
9.24262e-05
9.24215e-05
9.24194e-05
9.24201e-05
9.24139e-05
9.24178e-05
9.24233e-05
9.24296e-05
9.24367e-05
9.24433e-05
9.24498e-05
9.24541e-05
9.24561e-05
9.24562e-05
9.24527e-05
9.24526e-05
9.2448e-05
9.24415e-05
9.24326e-05
9.24248e-05
9.24182e-05
9.24138e-05
9.24116e-05
9.24117e-05
9.24053e-05
9.24084e-05
9.24129e-05
9.24182e-05
9.24243e-05
9.24301e-05
9.24356e-05
9.24395e-05
9.24418e-05
9.24424e-05
9.24398e-05
9.24393e-05
9.24352e-05
9.243e-05
9.24229e-05
9.24162e-05
9.24103e-05
9.24062e-05
9.2404e-05
9.24038e-05
9.23975e-05
9.23999e-05
9.24036e-05
9.2408e-05
9.24132e-05
9.24181e-05
9.2423e-05
9.24266e-05
9.24289e-05
9.24297e-05
9.24282e-05
9.24279e-05
9.24245e-05
9.24201e-05
9.24139e-05
9.24081e-05
9.24029e-05
9.23992e-05
9.23969e-05
9.23964e-05
9.23903e-05
9.23921e-05
9.23952e-05
9.23988e-05
9.24033e-05
9.24076e-05
9.24119e-05
9.24152e-05
9.24174e-05
9.24184e-05
9.24175e-05
9.24173e-05
9.24145e-05
9.24108e-05
9.24056e-05
9.24006e-05
9.23959e-05
9.23925e-05
9.23904e-05
9.23896e-05
9.23837e-05
9.23852e-05
9.23876e-05
9.23907e-05
9.23945e-05
9.23982e-05
9.2402e-05
9.2405e-05
9.24072e-05
9.24084e-05
9.24081e-05
9.24078e-05
9.24055e-05
9.24025e-05
9.23981e-05
9.23937e-05
9.23896e-05
9.23864e-05
9.23843e-05
9.23834e-05
9.23778e-05
9.23789e-05
9.23808e-05
9.23834e-05
9.23867e-05
9.23899e-05
9.23933e-05
9.23961e-05
9.23982e-05
9.23995e-05
9.23994e-05
9.23994e-05
9.23975e-05
9.23949e-05
9.23911e-05
9.23873e-05
9.23837e-05
9.23808e-05
9.23787e-05
9.23778e-05
9.23725e-05
9.23733e-05
9.23748e-05
9.23769e-05
9.23798e-05
9.23826e-05
9.23856e-05
9.23882e-05
9.23902e-05
9.23916e-05
9.23918e-05
9.23918e-05
9.23903e-05
9.23881e-05
9.23849e-05
9.23815e-05
9.23783e-05
9.23756e-05
9.23737e-05
9.23727e-05
9.23678e-05
9.23683e-05
9.23695e-05
9.23713e-05
9.23737e-05
9.23762e-05
9.23789e-05
9.23813e-05
9.23832e-05
9.23846e-05
9.23849e-05
9.23851e-05
9.23839e-05
9.23821e-05
9.23793e-05
9.23764e-05
9.23735e-05
9.2371e-05
9.23692e-05
9.23681e-05
9.23636e-05
9.23639e-05
9.23648e-05
9.23663e-05
9.23684e-05
9.23705e-05
9.2373e-05
9.23752e-05
9.2377e-05
9.23785e-05
9.23789e-05
9.23793e-05
9.23783e-05
9.23768e-05
9.23744e-05
9.23718e-05
9.23692e-05
9.23669e-05
9.23651e-05
9.2364e-05
9.23599e-05
9.23601e-05
9.23607e-05
9.23619e-05
9.23638e-05
9.23657e-05
9.23679e-05
9.237e-05
9.23717e-05
9.23732e-05
9.23737e-05
9.23741e-05
9.23733e-05
9.23721e-05
9.23701e-05
9.23677e-05
9.23654e-05
9.23632e-05
9.23615e-05
9.23605e-05
9.23566e-05
9.23567e-05
9.23572e-05
9.23581e-05
9.23598e-05
9.23614e-05
9.23634e-05
9.23655e-05
9.23671e-05
9.23686e-05
9.23692e-05
9.23697e-05
9.2369e-05
9.2368e-05
9.23662e-05
9.23641e-05
9.2362e-05
9.236e-05
9.23584e-05
9.23573e-05
9.23539e-05
9.23539e-05
9.23542e-05
9.2355e-05
9.23565e-05
9.23579e-05
9.23597e-05
9.23617e-05
9.23632e-05
9.23647e-05
9.23653e-05
9.2366e-05
9.23654e-05
9.23646e-05
9.23631e-05
9.23611e-05
9.23592e-05
9.23573e-05
9.23558e-05
9.23547e-05
9.23515e-05
9.23514e-05
9.23516e-05
9.23522e-05
9.23536e-05
9.23548e-05
9.23565e-05
9.23584e-05
9.23598e-05
9.23614e-05
9.2362e-05
9.23627e-05
9.23623e-05
9.23617e-05
9.23603e-05
9.23585e-05
9.23568e-05
9.23549e-05
9.23534e-05
9.23524e-05
9.23498e-05
9.23496e-05
9.23496e-05
9.23501e-05
9.23513e-05
9.23524e-05
9.2354e-05
9.23559e-05
9.23572e-05
9.23588e-05
9.23594e-05
9.23602e-05
9.23599e-05
9.23594e-05
9.23582e-05
9.23565e-05
9.23549e-05
9.23531e-05
9.23517e-05
9.23507e-05
9.23481e-05
9.23479e-05
9.23478e-05
9.23481e-05
9.23494e-05
9.23504e-05
9.23518e-05
9.23538e-05
9.2355e-05
9.23566e-05
9.23572e-05
9.23581e-05
9.23577e-05
9.23574e-05
9.23563e-05
9.23547e-05
9.23532e-05
9.23514e-05
9.235e-05
9.23491e-05
9.23472e-05
9.2347e-05
9.23467e-05
9.2347e-05
9.23483e-05
9.2349e-05
9.23504e-05
9.23524e-05
9.23535e-05
9.23553e-05
9.23558e-05
9.23568e-05
9.23565e-05
9.23563e-05
9.23552e-05
9.23537e-05
9.23523e-05
9.23506e-05
9.23492e-05
9.23483e-05
9.23463e-05
9.23461e-05
9.23457e-05
9.2346e-05
9.23472e-05
9.23479e-05
9.23492e-05
9.23513e-05
9.23523e-05
9.23541e-05
9.23545e-05
9.23556e-05
9.23553e-05
9.23552e-05
9.23542e-05
9.23526e-05
9.23514e-05
9.23496e-05
9.23483e-05
9.23474e-05
9.23757e-05
9.23696e-05
9.2374e-05
9.23777e-05
9.23728e-05
9.23772e-05
9.23812e-05
9.23788e-05
9.2382e-05
9.23814e-05
9.2384e-05
9.23833e-05
9.23849e-05
9.23825e-05
9.23782e-05
9.23807e-05
9.23763e-05
9.23783e-05
9.23805e-05
9.23726e-05
8.62301e-05
9.36126e-05
9.89991e-05
0.000102794
0.000105451
0.000107407
0.000109039
0.000110605
0.000112958
0.000116898
0.000120386
0.000119454
0.000111478
9.732e-05
8.02378e-05
6.55945e-05
5.82397e-05
5.9545e-05
6.71496e-05
7.70799e-05
0.000102439
0.000104111
0.000105135
0.000105731
0.000106238
0.000106836
0.000107695
0.00010884
0.000118536
0.000149103
0.000191357
0.000218696
0.000212722
0.000179628
0.000141863
0.000115166
0.000101835
9.7811e-05
9.83896e-05
0.000100487
0.00010174
0.000102081
0.000102283
0.00010246
0.000102748
0.000103124
0.000103816
0.000104939
0.000117543
0.000174059
0.000238307
0.000252909
0.000216364
0.000164622
0.000126017
0.000106524
9.99605e-05
9.91751e-05
0.000100117
0.000101126
9.98733e-05
9.99632e-05
0.000100089
0.000100272
0.000100596
0.000100971
0.00010165
0.000102509
0.000105539
0.000196221
0.000282606
0.00027242
0.000208064
0.000148909
0.000115119
0.000102018
9.88361e-05
9.88524e-05
9.93773e-05
9.97162e-05
9.88481e-05
9.89322e-05
9.90856e-05
9.92698e-05
9.95606e-05
9.98632e-05
0.000100442
0.000101142
0.000107022
0.00030731
0.000472778
0.000468267
0.00034451
0.000217754
0.000144482
0.000113212
0.000102561
9.96146e-05
9.89437e-05
9.88248e-05
9.82409e-05
9.83313e-05
9.84695e-05
9.86328e-05
9.88778e-05
9.91362e-05
9.96072e-05
0.000100179
0.0001063
0.000360954
0.000508937
0.000422027
0.000273843
0.000171567
0.000123
0.000105039
9.9742e-05
9.84578e-05
9.82033e-05
9.81851e-05
9.79223e-05
9.8017e-05
9.81451e-05
9.82897e-05
9.84894e-05
9.87072e-05
9.90737e-05
9.95548e-05
0.000105295
0.00033565
0.000523321
0.000468839
0.000292122
0.000172874
0.000120847
0.000103569
9.90161e-05
9.8015e-05
9.78434e-05
9.78545e-05
9.77376e-05
9.78211e-05
9.79272e-05
9.80481e-05
9.82056e-05
9.83878e-05
9.86621e-05
9.90662e-05
0.000100286
0.00012156
0.000159349
0.000174968
0.000154688
0.000123274
0.000105584
9.94887e-05
9.79599e-05
9.76575e-05
9.76313e-05
9.76705e-05
9.76338e-05
9.77082e-05
9.77979e-05
9.78996e-05
9.80228e-05
9.81752e-05
9.83688e-05
9.87167e-05
9.95086e-05
0.000124362
0.000154639
0.000132347
0.000116571
0.000105467
9.97671e-05
9.79659e-05
9.75657e-05
9.75071e-05
9.75265e-05
9.75716e-05
9.75684e-05
9.7631e-05
9.77046e-05
9.77879e-05
9.78848e-05
9.8008e-05
9.81502e-05
9.84376e-05
9.89734e-05
0.000128589
0.000169177
0.000131857
0.000111634
0.000102448
9.8713e-05
9.76812e-05
9.74742e-05
9.74526e-05
9.74748e-05
9.75151e-05
9.75275e-05
9.75802e-05
9.76411e-05
9.77091e-05
9.77855e-05
9.78819e-05
9.79857e-05
9.82079e-05
9.8546e-05
0.000132907
0.000173417
0.000131132
0.000110755
0.00010178
9.84598e-05
9.76112e-05
9.74456e-05
9.7429e-05
9.74479e-05
9.74824e-05
9.7498e-05
9.75417e-05
9.75917e-05
9.76469e-05
9.77078e-05
9.7782e-05
9.7863e-05
9.80243e-05
9.83004e-05
0.000134536
0.000190394
0.00013847
0.000112949
0.000102149
9.84921e-05
9.7608e-05
9.74378e-05
9.74182e-05
9.74324e-05
9.74606e-05
9.7476e-05
9.7512e-05
9.75532e-05
9.75979e-05
9.76466e-05
9.77019e-05
9.77643e-05
9.78698e-05
9.80824e-05
0.00013811
0.000182603
0.000131651
0.000110449
0.000101388
9.83041e-05
9.75698e-05
9.74292e-05
9.74121e-05
9.74227e-05
9.74454e-05
9.74574e-05
9.7487e-05
9.7521e-05
9.75574e-05
9.75967e-05
9.76386e-05
9.76871e-05
9.77563e-05
9.80356e-05
0.000146509
0.000199344
0.000139084
0.000112736
0.000101912
9.8397e-05
9.75806e-05
9.74279e-05
9.74076e-05
9.74147e-05
9.74326e-05
9.74413e-05
9.74654e-05
9.74934e-05
9.75231e-05
9.75549e-05
9.75863e-05
9.76228e-05
9.76656e-05
9.79129e-05
0.000142829
0.000174425
0.000128556
0.000109565
0.000101018
9.81982e-05
9.7545e-05
9.74216e-05
9.74035e-05
9.74076e-05
9.74213e-05
9.74262e-05
9.7446e-05
9.74691e-05
9.74936e-05
9.75195e-05
9.75439e-05
9.75674e-05
9.75926e-05
9.74973e-05
0.000102778
9.50591e-05
9.80702e-05
9.91175e-05
9.80898e-05
9.75641e-05
9.7431e-05
9.7401e-05
9.73957e-05
9.73996e-05
9.74103e-05
9.74123e-05
9.74283e-05
9.74474e-05
9.74676e-05
9.7489e-05
9.75086e-05
9.75259e-05
9.75394e-05
9.75393e-05
9.83699e-05
9.77512e-05
9.76027e-05
9.75636e-05
9.74999e-05
9.74454e-05
9.7414e-05
9.73964e-05
9.73903e-05
9.73918e-05
9.73996e-05
9.73989e-05
9.7412e-05
9.74278e-05
9.74446e-05
9.74625e-05
9.74786e-05
9.74931e-05
9.75037e-05
9.75089e-05
9.75156e-05
9.74862e-05
9.74825e-05
9.7472e-05
9.74481e-05
9.74212e-05
9.74013e-05
9.7388e-05
9.73826e-05
9.73831e-05
9.73889e-05
9.73863e-05
9.73969e-05
9.741e-05
9.74239e-05
9.74389e-05
9.74522e-05
9.74637e-05
9.74705e-05
9.74709e-05
9.74662e-05
9.74494e-05
9.74571e-05
9.74473e-05
9.74301e-05
9.74091e-05
9.73925e-05
9.73806e-05
9.7375e-05
9.73745e-05
9.73785e-05
9.73745e-05
9.7383e-05
9.73938e-05
9.74054e-05
9.74181e-05
9.74294e-05
9.74395e-05
9.74457e-05
9.74474e-05
9.74439e-05
9.7431e-05
9.74313e-05
9.74232e-05
9.7411e-05
9.7395e-05
9.73819e-05
9.73718e-05
9.73666e-05
9.73656e-05
9.73684e-05
9.73633e-05
9.73702e-05
9.73791e-05
9.73888e-05
9.73995e-05
9.7409e-05
9.74176e-05
9.74226e-05
9.7424e-05
9.74218e-05
9.74138e-05
9.74153e-05
9.74078e-05
9.73975e-05
9.73838e-05
9.73724e-05
9.73634e-05
9.73584e-05
9.73568e-05
9.73586e-05
9.73528e-05
9.73583e-05
9.73657e-05
9.73738e-05
9.7383e-05
9.73911e-05
9.73986e-05
9.74032e-05
9.74053e-05
9.74042e-05
9.7398e-05
9.73974e-05
9.73909e-05
9.73828e-05
9.7372e-05
9.73626e-05
9.73546e-05
9.735e-05
9.73482e-05
9.73493e-05
9.73431e-05
9.73475e-05
9.73536e-05
9.73604e-05
9.7368e-05
9.73749e-05
9.73817e-05
9.73859e-05
9.73878e-05
9.73874e-05
9.73836e-05
9.73833e-05
9.7378e-05
9.7371e-05
9.73614e-05
9.73533e-05
9.73465e-05
9.73421e-05
9.734e-05
9.73405e-05
9.73341e-05
9.73377e-05
9.73426e-05
9.73483e-05
9.73549e-05
9.73609e-05
9.73666e-05
9.73704e-05
9.73728e-05
9.73729e-05
9.73701e-05
9.73694e-05
9.73648e-05
9.73591e-05
9.73515e-05
9.73445e-05
9.73383e-05
9.73343e-05
9.73322e-05
9.73322e-05
9.73259e-05
9.73287e-05
9.73328e-05
9.73375e-05
9.73431e-05
9.73483e-05
9.73534e-05
9.73569e-05
9.73592e-05
9.73597e-05
9.7358e-05
9.73575e-05
9.73536e-05
9.73488e-05
9.73422e-05
9.73361e-05
9.73307e-05
9.7327e-05
9.73249e-05
9.73246e-05
9.73184e-05
9.73205e-05
9.73239e-05
9.73279e-05
9.73326e-05
9.73371e-05
9.73417e-05
9.73449e-05
9.73471e-05
9.73478e-05
9.73468e-05
9.73464e-05
9.73433e-05
9.73392e-05
9.73336e-05
9.73283e-05
9.73236e-05
9.73201e-05
9.7318e-05
9.73175e-05
9.73115e-05
9.73132e-05
9.73159e-05
9.73192e-05
9.73234e-05
9.73272e-05
9.73313e-05
9.73342e-05
9.73364e-05
9.73374e-05
9.73369e-05
9.73365e-05
9.73339e-05
9.73306e-05
9.73258e-05
9.73212e-05
9.7317e-05
9.73138e-05
9.73117e-05
9.7311e-05
9.73053e-05
9.73066e-05
9.73088e-05
9.73116e-05
9.73151e-05
9.73185e-05
9.73221e-05
9.73248e-05
9.7327e-05
9.73281e-05
9.73279e-05
9.73277e-05
9.73255e-05
9.73227e-05
9.73187e-05
9.73147e-05
9.73109e-05
9.73079e-05
9.7306e-05
9.73051e-05
9.72998e-05
9.73007e-05
9.73025e-05
9.73048e-05
9.73078e-05
9.73108e-05
9.7314e-05
9.73165e-05
9.73186e-05
9.73198e-05
9.73199e-05
9.73198e-05
9.73181e-05
9.73157e-05
9.73122e-05
9.73087e-05
9.73054e-05
9.73026e-05
9.73007e-05
9.72998e-05
9.72948e-05
9.72955e-05
9.72969e-05
9.72988e-05
9.73014e-05
9.7304e-05
9.73069e-05
9.73093e-05
9.73112e-05
9.73125e-05
9.73128e-05
9.73129e-05
9.73115e-05
9.73095e-05
9.73065e-05
9.73034e-05
9.73004e-05
9.72979e-05
9.7296e-05
9.72951e-05
9.72904e-05
9.72909e-05
9.72919e-05
9.72935e-05
9.72958e-05
9.72981e-05
9.73006e-05
9.73029e-05
9.73048e-05
9.73061e-05
9.73065e-05
9.73067e-05
9.73056e-05
9.73039e-05
9.73014e-05
9.72986e-05
9.72959e-05
9.72936e-05
9.72918e-05
9.72908e-05
9.72866e-05
9.72869e-05
9.72877e-05
9.7289e-05
9.7291e-05
9.7293e-05
9.72953e-05
9.72974e-05
9.72992e-05
9.73006e-05
9.73011e-05
9.73014e-05
9.73005e-05
9.72991e-05
9.72969e-05
9.72944e-05
9.7292e-05
9.72898e-05
9.72881e-05
9.72871e-05
9.72832e-05
9.72833e-05
9.72839e-05
9.7285e-05
9.72868e-05
9.72885e-05
9.72906e-05
9.72927e-05
9.72943e-05
9.72957e-05
9.72963e-05
9.72967e-05
9.7296e-05
9.72949e-05
9.72929e-05
9.72907e-05
9.72885e-05
9.72865e-05
9.72848e-05
9.72838e-05
9.72804e-05
9.72804e-05
9.72808e-05
9.72817e-05
9.72833e-05
9.72848e-05
9.72867e-05
9.72887e-05
9.72903e-05
9.72917e-05
9.72923e-05
9.72929e-05
9.72922e-05
9.72913e-05
9.72896e-05
9.72876e-05
9.72856e-05
9.72837e-05
9.72821e-05
9.72811e-05
9.72779e-05
9.72778e-05
9.7278e-05
9.72788e-05
9.72802e-05
9.72816e-05
9.72833e-05
9.72853e-05
9.72867e-05
9.72883e-05
9.72889e-05
9.72895e-05
9.7289e-05
9.72882e-05
9.72868e-05
9.72849e-05
9.72831e-05
9.72812e-05
9.72797e-05
9.72787e-05
9.7276e-05
9.72759e-05
9.7276e-05
9.72765e-05
9.72779e-05
9.72791e-05
9.72807e-05
9.72827e-05
9.7284e-05
9.72856e-05
9.72862e-05
9.72869e-05
9.72865e-05
9.72859e-05
9.72846e-05
9.72828e-05
9.72812e-05
9.72794e-05
9.72779e-05
9.72769e-05
9.72743e-05
9.72742e-05
9.72741e-05
9.72745e-05
9.72759e-05
9.72769e-05
9.72784e-05
9.72804e-05
9.72816e-05
9.72833e-05
9.72838e-05
9.72847e-05
9.72842e-05
9.72838e-05
9.72826e-05
9.72809e-05
9.72794e-05
9.72776e-05
9.72762e-05
9.72753e-05
9.72734e-05
9.72732e-05
9.7273e-05
9.72733e-05
9.72747e-05
9.72755e-05
9.72769e-05
9.7279e-05
9.72801e-05
9.72819e-05
9.72824e-05
9.72833e-05
9.72829e-05
9.72827e-05
9.72816e-05
9.72799e-05
9.72785e-05
9.72767e-05
9.72753e-05
9.72745e-05
9.72724e-05
9.72723e-05
9.72719e-05
9.72722e-05
9.72736e-05
9.72743e-05
9.72757e-05
9.72778e-05
9.72788e-05
9.72806e-05
9.72811e-05
9.72821e-05
9.72817e-05
9.72815e-05
9.72804e-05
9.72788e-05
9.72775e-05
9.72757e-05
9.72744e-05
9.72735e-05
9.73018e-05
9.72952e-05
9.73001e-05
9.73042e-05
9.72986e-05
9.73036e-05
9.73078e-05
9.73047e-05
9.73085e-05
9.73074e-05
9.73105e-05
9.73091e-05
9.73113e-05
9.73082e-05
9.73037e-05
9.73069e-05
9.73018e-05
9.73043e-05
9.73067e-05
9.72981e-05
9.38297e-05
0.000100772
0.000105703
0.00010911
0.00011149
0.000113294
0.000114892
0.000116553
0.000119376
0.000124297
0.000128601
0.000127395
0.000117755
0.000101339
8.26456e-05
6.80466e-05
6.22384e-05
6.55404e-05
7.45173e-05
8.48709e-05
0.000108423
0.000109809
0.000110659
0.000111182
0.000111696
0.000112351
0.000113319
0.000114661
0.00012671
0.00016435
0.000215418
0.000246769
0.000237647
0.000198274
0.000155459
0.00012563
0.000110505
0.000105398
0.000105246
0.000106827
0.000107166
0.000107434
0.00010762
0.000107814
0.000108139
0.000108564
0.000109344
0.000110637
0.000125755
0.000193709
0.000268928
0.00028364
0.000239674
0.00018006
0.000136483
0.00011464
0.000106937
0.00010547
0.000105973
0.000106705
0.000105194
0.000105285
0.00010543
0.000105638
0.000105993
0.000106401
0.000107143
0.000108086
0.000111531
0.000215085
0.000309607
0.000293464
0.00022147
0.000157736
0.000122261
0.000108471
0.000104822
0.000104507
0.00010483
0.00010507
0.000104163
0.000104262
0.000104433
0.000104634
0.000104947
0.000105273
0.000105898
0.000106655
0.000113039
0.000339807
0.000520003
0.000505163
0.000362468
0.000226338
0.000150649
0.000118775
0.000107942
0.000104936
0.000104246
0.000104128
0.000103562
0.000103666
0.000103818
0.000103995
0.000104257
0.000104532
0.000105036
0.000105646
0.000112195
0.000400918
0.00055707
0.000449198
0.000285561
0.000178151
0.000128452
0.000110299
0.000105006
0.000103741
0.000103499
0.000103493
0.000103249
0.000103354
0.000103493
0.000103648
0.00010386
0.000104091
0.000104481
0.000104991
0.000111078
0.000377775
0.000587127
0.00050795
0.000308121
0.000180701
0.00012648
0.000108814
0.000104268
0.000103299
0.000103146
0.00010317
0.000103066
0.000103158
0.000103273
0.000103403
0.000103571
0.000103763
0.000104054
0.000104481
0.000105813
0.000132688
0.0001798
0.000193474
0.000165747
0.000130153
0.000111104
0.000104779
0.000103246
0.000102958
0.000102942
0.00010299
0.000102963
0.000103045
0.000103141
0.00010325
0.000103381
0.000103542
0.000103746
0.000104112
0.000104971
0.000136429
0.00017444
0.000146173
0.00012575
0.000111931
0.000105294
0.0001033
0.000102874
0.000102817
0.000102842
0.000102894
0.000102898
0.000102966
0.000103046
0.000103135
0.000103238
0.000103368
0.000103518
0.000103818
0.000104393
0.000141576
0.000191617
0.000145613
0.000120486
0.000108762
0.000104216
0.000103019
0.000102787
0.000102766
0.000102793
0.000102839
0.000102857
0.000102914
0.00010298
0.000103053
0.000103134
0.000103236
0.000103345
0.000103575
0.000103934
0.000146882
0.000196252
0.000144532
0.000119226
0.000107904
0.000103915
0.000102943
0.000102761
0.000102745
0.000102768
0.000102807
0.000102827
0.000102874
0.000102929
0.000102988
0.000103053
0.000103131
0.000103215
0.000103382
0.00010367
0.000148983
0.000215924
0.000152328
0.00012125
0.000108148
0.000103913
0.000102935
0.000102754
0.000102736
0.000102754
0.000102785
0.000102804
0.000102843
0.000102888
0.000102936
0.000102988
0.000103046
0.000103111
0.000103219
0.000103438
0.000153177
0.000206805
0.000144719
0.000118512
0.000107339
0.000103723
0.0001029
0.000102748
0.000102731
0.000102745
0.00010277
0.000102785
0.000102817
0.000102854
0.000102893
0.000102935
0.000102979
0.000103029
0.0001031
0.000103386
0.00016302
0.00022556
0.00015258
0.000120778
0.000107825
0.000103804
0.000102909
0.000102748
0.000102728
0.000102737
0.000102757
0.000102768
0.000102794
0.000102825
0.000102856
0.00010289
0.000102923
0.000102961
0.000103004
0.000103256
0.000158942
0.000196659
0.000140798
0.000117231
0.000106847
0.000103595
0.000102874
0.000102742
0.000102724
0.00010273
0.000102746
0.000102752
0.000102774
0.000102799
0.000102825
0.000102853
0.000102878
0.000102903
0.000102928
0.000102815
0.000111464
0.000104441
0.000106532
0.000105698
0.000103717
0.000102942
0.000102761
0.000102723
0.000102717
0.000102722
0.000102734
0.000102737
0.000102755
0.000102776
0.000102797
0.00010282
0.000102841
0.000102859
0.000102872
0.000102871
0.00010397
0.00010318
0.000102969
0.000102908
0.00010283
0.000102768
0.000102735
0.000102717
0.000102711
0.000102714
0.000102723
0.000102723
0.000102737
0.000102755
0.000102773
0.000102792
0.000102809
0.000102824
0.000102834
0.000102839
0.000102848
0.000102815
0.000102811
0.000102797
0.000102771
0.000102743
0.000102722
0.000102709
0.000102704
0.000102705
0.000102712
0.00010271
0.000102721
0.000102736
0.000102751
0.000102767
0.000102781
0.000102793
0.000102799
0.000102799
0.000102793
0.000102775
0.000102784
0.000102772
0.000102753
0.00010273
0.000102713
0.000102701
0.000102696
0.000102696
0.000102701
0.000102697
0.000102707
0.000102718
0.000102731
0.000102745
0.000102756
0.000102767
0.000102773
0.000102774
0.000102769
0.000102756
0.000102756
0.000102747
0.000102733
0.000102716
0.000102703
0.000102692
0.000102687
0.000102687
0.00010269
0.000102685
0.000102693
0.000102703
0.000102713
0.000102725
0.000102735
0.000102744
0.000102749
0.00010275
0.000102747
0.000102738
0.000102739
0.000102731
0.00010272
0.000102705
0.000102693
0.000102684
0.000102679
0.000102678
0.00010268
0.000102674
0.000102681
0.000102689
0.000102698
0.000102707
0.000102716
0.000102724
0.000102728
0.00010273
0.000102728
0.000102721
0.000102721
0.000102713
0.000102705
0.000102693
0.000102683
0.000102675
0.00010267
0.000102669
0.00010267
0.000102664
0.000102669
0.000102676
0.000102683
0.000102691
0.000102699
0.000102706
0.00010271
0.000102712
0.000102711
0.000102706
0.000102706
0.0001027
0.000102692
0.000102682
0.000102674
0.000102667
0.000102662
0.00010266
0.000102661
0.000102655
0.000102659
0.000102664
0.00010267
0.000102677
0.000102684
0.00010269
0.000102693
0.000102696
0.000102695
0.000102692
0.000102691
0.000102686
0.00010268
0.000102672
0.000102664
0.000102658
0.000102654
0.000102652
0.000102653
0.000102646
0.000102649
0.000102654
0.000102659
0.000102665
0.00010267
0.000102676
0.000102679
0.000102682
0.000102682
0.00010268
0.000102679
0.000102675
0.000102669
0.000102662
0.000102656
0.00010265
0.000102647
0.000102645
0.000102645
0.000102638
0.000102641
0.000102645
0.000102649
0.000102654
0.000102659
0.000102663
0.000102667
0.000102669
0.000102669
0.000102668
0.000102667
0.000102664
0.000102659
0.000102653
0.000102648
0.000102643
0.000102639
0.000102637
0.000102637
0.000102631
0.000102633
0.000102636
0.00010264
0.000102644
0.000102648
0.000102652
0.000102655
0.000102658
0.000102658
0.000102658
0.000102657
0.000102654
0.00010265
0.000102645
0.000102641
0.000102636
0.000102633
0.000102631
0.00010263
0.000102625
0.000102626
0.000102629
0.000102632
0.000102635
0.000102639
0.000102643
0.000102645
0.000102648
0.000102649
0.000102648
0.000102648
0.000102645
0.000102642
0.000102638
0.000102634
0.00010263
0.000102627
0.000102625
0.000102624
0.000102619
0.00010262
0.000102622
0.000102624
0.000102628
0.000102631
0.000102634
0.000102637
0.000102639
0.00010264
0.00010264
0.00010264
0.000102638
0.000102635
0.000102631
0.000102628
0.000102624
0.000102621
0.00010262
0.000102619
0.000102614
0.000102615
0.000102616
0.000102618
0.000102621
0.000102624
0.000102627
0.000102629
0.000102631
0.000102632
0.000102632
0.000102632
0.000102631
0.000102629
0.000102625
0.000102622
0.000102619
0.000102616
0.000102615
0.000102614
0.000102609
0.00010261
0.000102611
0.000102613
0.000102615
0.000102617
0.00010262
0.000102622
0.000102624
0.000102626
0.000102626
0.000102626
0.000102625
0.000102623
0.00010262
0.000102617
0.000102614
0.000102612
0.00010261
0.000102609
0.000102605
0.000102605
0.000102606
0.000102608
0.00010261
0.000102612
0.000102615
0.000102617
0.000102618
0.00010262
0.00010262
0.00010262
0.000102619
0.000102618
0.000102615
0.000102613
0.00010261
0.000102608
0.000102606
0.000102605
0.000102602
0.000102602
0.000102602
0.000102604
0.000102606
0.000102607
0.00010261
0.000102612
0.000102613
0.000102615
0.000102615
0.000102616
0.000102615
0.000102613
0.000102611
0.000102609
0.000102607
0.000102605
0.000102603
0.000102602
0.000102599
0.000102599
0.000102599
0.0001026
0.000102602
0.000102604
0.000102606
0.000102608
0.000102609
0.000102611
0.000102611
0.000102612
0.000102611
0.00010261
0.000102608
0.000102606
0.000102604
0.000102602
0.0001026
0.000102599
0.000102596
0.000102596
0.000102596
0.000102597
0.000102599
0.0001026
0.000102602
0.000102604
0.000102605
0.000102607
0.000102607
0.000102608
0.000102607
0.000102607
0.000102605
0.000102603
0.000102601
0.000102599
0.000102598
0.000102597
0.000102594
0.000102594
0.000102594
0.000102595
0.000102596
0.000102597
0.000102599
0.000102601
0.000102603
0.000102604
0.000102605
0.000102605
0.000102605
0.000102604
0.000102603
0.000102601
0.000102599
0.000102597
0.000102596
0.000102595
0.000102592
0.000102592
0.000102592
0.000102593
0.000102594
0.000102595
0.000102597
0.000102599
0.0001026
0.000102602
0.000102602
0.000102603
0.000102603
0.000102602
0.000102601
0.000102599
0.000102597
0.000102596
0.000102594
0.000102593
0.000102591
0.000102591
0.000102591
0.000102591
0.000102593
0.000102594
0.000102595
0.000102597
0.000102599
0.0001026
0.000102601
0.000102602
0.000102601
0.000102601
0.0001026
0.000102598
0.000102596
0.000102595
0.000102593
0.000102592
0.00010259
0.00010259
0.00010259
0.00010259
0.000102592
0.000102593
0.000102594
0.000102596
0.000102597
0.000102599
0.000102599
0.0001026
0.0001026
0.0001026
0.000102598
0.000102597
0.000102595
0.000102594
0.000102592
0.000102591
0.00010262
0.000102613
0.000102618
0.000102622
0.000102616
0.000102622
0.000102626
0.000102622
0.000102627
0.000102625
0.000102629
0.000102627
0.000102629
0.000102626
0.000102621
0.000102625
0.000102619
0.000102622
0.000102625
0.000102615
0.000101915
0.000108328
0.000112764
0.00011578
0.000117903
0.000119587
0.00012119
0.000123006
0.000126463
0.000132621
0.000137862
0.000136206
0.000124506
0.000105571
8.53919e-05
7.12532e-05
6.73549e-05
7.26975e-05
8.28131e-05
9.33214e-05
0.000114769
0.000115885
0.00011658
0.000117054
0.000117591
0.000118318
0.000119415
0.000121002
0.000135926
0.000182166
0.000243678
0.000279085
0.000265519
0.000218658
0.000170018
0.000136626
0.000119556
0.000113335
0.000112454
0.000113523
0.000112996
0.000113208
0.000113389
0.000113606
0.000113973
0.000114455
0.000115334
0.000116828
0.000134901
0.000216736
0.000304806
0.000318836
0.00026552
0.000196584
0.000147467
0.000123167
0.000114291
0.000112129
0.000112197
0.000112669
0.000110942
0.00011104
0.000111208
0.000111443
0.000111832
0.000112276
0.000113088
0.000114127
0.000118092
0.000236307
0.000339682
0.000316176
0.00023555
0.000166958
0.000129809
0.000115309
0.000111178
0.000110541
0.000110682
0.000110839
0.000109911
0.000110028
0.000110217
0.000110437
0.000110774
0.000111125
0.000111802
0.000112623
0.000119588
0.000376201
0.000572366
0.000543876
0.000379851
0.000234534
0.000156869
0.000124585
0.000113671
0.000110656
0.000109969
0.000109861
0.000109317
0.000109436
0.000109603
0.000109796
0.000110076
0.00011037
0.00011091
0.000111564
0.000118576
0.000445813
0.000609693
0.000477113
0.000296857
0.000184654
0.000134089
0.000115888
0.000110667
0.000109444
0.000109224
0.000109234
0.00010901
0.000109126
0.000109277
0.000109444
0.00010967
0.000109916
0.00011033
0.000110872
0.000117319
0.000426321
0.00065944
0.000549073
0.000323888
0.000188461
0.000132302
0.000114407
0.00010993
0.000109011
0.000108881
0.000108919
0.000108829
0.000108931
0.000109056
0.000109195
0.000109374
0.000109577
0.000109886
0.000110339
0.000111797
0.00014574
0.000204632
0.000214201
0.000177446
0.000137314
0.000116953
0.000110466
0.000108956
0.000108689
0.000108685
0.000108744
0.000108727
0.000108816
0.000108921
0.000109038
0.000109178
0.000109347
0.000109563
0.000109947
0.000110882
0.000150638
0.000198407
0.000162055
0.000135768
0.000118808
0.00011121
0.00010905
0.00010861
0.000108559
0.000108591
0.000108651
0.000108662
0.000108737
0.000108823
0.000108919
0.000109029
0.000109165
0.000109323
0.000109636
0.000110255
0.000156905
0.000218765
0.000161469
0.000130185
0.000115509
0.000110123
0.000108778
0.000108531
0.000108512
0.000108545
0.000108597
0.000108621
0.000108683
0.000108755
0.000108833
0.00010892
0.000109026
0.000109141
0.00010938
0.000109762
0.000163435
0.000223788
0.000159921
0.00012847
0.000114452
0.00010978
0.0001087
0.000108507
0.000108494
0.000108522
0.000108565
0.00010859
0.000108642
0.000108701
0.000108764
0.000108834
0.000108915
0.000109004
0.000109175
0.000109477
0.000166145
0.000246637
0.000168171
0.000130274
0.000114565
0.000109746
0.000108688
0.000108502
0.000108487
0.000108508
0.000108544
0.000108566
0.000108609
0.000108658
0.000108709
0.000108765
0.000108826
0.000108894
0.000109004
0.000109229
0.000171089
0.000235925
0.000159654
0.000127279
0.000113712
0.000109558
0.000108658
0.000108499
0.000108484
0.0001085
0.000108529
0.000108546
0.000108582
0.000108622
0.000108664
0.000108709
0.000108755
0.000108807
0.000108878
0.000109171
0.00018268
0.000256961
0.000167949
0.000129506
0.000114155
0.000109627
0.000108666
0.0001085
0.000108482
0.000108493
0.000108516
0.000108528
0.000108557
0.00010859
0.000108625
0.000108661
0.000108696
0.000108735
0.000108778
0.000109033
0.000178169
0.000223221
0.00015469
0.000125532
0.000113093
0.000109411
0.000108632
0.000108496
0.000108479
0.000108486
0.000108504
0.000108512
0.000108535
0.000108563
0.000108591
0.000108621
0.000108648
0.000108673
0.000108698
0.000108565
0.000121531
0.000115423
0.000115993
0.000112789
0.000109762
0.000108744
0.000108522
0.000108477
0.000108472
0.000108478
0.000108492
0.000108496
0.000108515
0.000108538
0.000108561
0.000108586
0.000108608
0.000108626
0.000108639
0.000108637
0.000110054
0.000109049
0.000108768
0.000108686
0.000108593
0.000108524
0.000108489
0.000108471
0.000108466
0.00010847
0.00010848
0.000108481
0.000108497
0.000108516
0.000108535
0.000108556
0.000108574
0.000108589
0.000108599
0.000108603
0.000108616
0.000108577
0.000108573
0.000108557
0.000108528
0.000108497
0.000108476
0.000108463
0.000108458
0.000108461
0.000108469
0.000108467
0.00010848
0.000108496
0.000108512
0.000108529
0.000108544
0.000108556
0.000108562
0.000108561
0.000108553
0.000108535
0.000108544
0.00010853
0.00010851
0.000108485
0.000108468
0.000108455
0.000108451
0.000108451
0.000108457
0.000108454
0.000108464
0.000108477
0.000108491
0.000108505
0.000108518
0.000108529
0.000108534
0.000108535
0.000108529
0.000108515
0.000108515
0.000108504
0.00010849
0.000108471
0.000108457
0.000108447
0.000108442
0.000108442
0.000108446
0.000108442
0.00010845
0.000108461
0.000108472
0.000108484
0.000108495
0.000108504
0.000108509
0.000108509
0.000108505
0.000108496
0.000108498
0.000108488
0.000108475
0.00010846
0.000108447
0.000108438
0.000108433
0.000108432
0.000108435
0.00010843
0.000108437
0.000108446
0.000108455
0.000108466
0.000108475
0.000108483
0.000108487
0.000108489
0.000108486
0.000108479
0.000108478
0.00010847
0.00010846
0.000108448
0.000108437
0.000108429
0.000108424
0.000108423
0.000108425
0.000108419
0.000108425
0.000108432
0.00010844
0.000108449
0.000108456
0.000108464
0.000108468
0.000108469
0.000108468
0.000108463
0.000108463
0.000108456
0.000108447
0.000108436
0.000108427
0.00010842
0.000108416
0.000108414
0.000108416
0.000108409
0.000108414
0.00010842
0.000108427
0.000108434
0.000108441
0.000108447
0.00010845
0.000108453
0.000108452
0.000108448
0.000108447
0.000108441
0.000108435
0.000108426
0.000108418
0.000108412
0.000108408
0.000108406
0.000108407
0.0001084
0.000108404
0.000108409
0.000108414
0.000108421
0.000108426
0.000108432
0.000108435
0.000108438
0.000108437
0.000108435
0.000108434
0.000108429
0.000108424
0.000108416
0.000108409
0.000108404
0.0001084
0.000108398
0.000108398
0.000108392
0.000108395
0.000108399
0.000108404
0.000108409
0.000108414
0.000108419
0.000108422
0.000108424
0.000108424
0.000108423
0.000108422
0.000108418
0.000108413
0.000108407
0.000108401
0.000108396
0.000108393
0.000108391
0.000108391
0.000108385
0.000108387
0.00010839
0.000108394
0.000108399
0.000108403
0.000108407
0.00010841
0.000108412
0.000108413
0.000108412
0.000108411
0.000108408
0.000108404
0.000108399
0.000108394
0.000108389
0.000108386
0.000108384
0.000108384
0.000108378
0.000108379
0.000108382
0.000108386
0.00010839
0.000108393
0.000108397
0.0001084
0.000108402
0.000108403
0.000108402
0.000108402
0.000108399
0.000108396
0.000108391
0.000108387
0.000108383
0.00010838
0.000108378
0.000108377
0.000108372
0.000108373
0.000108375
0.000108378
0.000108381
0.000108385
0.000108388
0.000108391
0.000108393
0.000108394
0.000108394
0.000108393
0.000108391
0.000108388
0.000108384
0.00010838
0.000108377
0.000108374
0.000108372
0.000108371
0.000108366
0.000108367
0.000108369
0.000108371
0.000108374
0.000108377
0.00010838
0.000108383
0.000108385
0.000108386
0.000108386
0.000108386
0.000108384
0.000108381
0.000108378
0.000108375
0.000108371
0.000108369
0.000108367
0.000108366
0.000108361
0.000108362
0.000108364
0.000108365
0.000108368
0.000108371
0.000108373
0.000108376
0.000108378
0.000108379
0.000108379
0.000108379
0.000108377
0.000108375
0.000108373
0.000108369
0.000108367
0.000108364
0.000108362
0.000108362
0.000108357
0.000108358
0.000108359
0.00010836
0.000108363
0.000108365
0.000108367
0.00010837
0.000108371
0.000108373
0.000108373
0.000108373
0.000108372
0.00010837
0.000108368
0.000108365
0.000108362
0.00010836
0.000108358
0.000108358
0.000108354
0.000108354
0.000108355
0.000108356
0.000108358
0.00010836
0.000108362
0.000108364
0.000108366
0.000108367
0.000108368
0.000108368
0.000108367
0.000108366
0.000108364
0.000108361
0.000108359
0.000108357
0.000108355
0.000108354
0.00010835
0.000108351
0.000108351
0.000108352
0.000108354
0.000108356
0.000108358
0.00010836
0.000108362
0.000108363
0.000108364
0.000108364
0.000108363
0.000108362
0.00010836
0.000108358
0.000108356
0.000108354
0.000108352
0.000108351
0.000108348
0.000108348
0.000108348
0.000108349
0.000108351
0.000108352
0.000108354
0.000108356
0.000108358
0.000108359
0.00010836
0.00010836
0.00010836
0.000108359
0.000108357
0.000108355
0.000108353
0.000108351
0.000108349
0.000108348
0.000108346
0.000108346
0.000108346
0.000108347
0.000108348
0.00010835
0.000108351
0.000108353
0.000108355
0.000108356
0.000108357
0.000108358
0.000108357
0.000108356
0.000108355
0.000108353
0.000108351
0.000108349
0.000108347
0.000108347
0.000108344
0.000108344
0.000108344
0.000108345
0.000108346
0.000108347
0.000108349
0.000108351
0.000108352
0.000108354
0.000108354
0.000108355
0.000108354
0.000108354
0.000108352
0.000108351
0.000108349
0.000108347
0.000108346
0.000108345
0.000108343
0.000108343
0.000108343
0.000108343
0.000108345
0.000108346
0.000108347
0.000108349
0.000108351
0.000108352
0.000108353
0.000108354
0.000108353
0.000108353
0.000108351
0.00010835
0.000108348
0.000108346
0.000108345
0.000108344
0.000108342
0.000108342
0.000108342
0.000108342
0.000108344
0.000108344
0.000108346
0.000108348
0.000108349
0.000108351
0.000108351
0.000108352
0.000108352
0.000108351
0.00010835
0.000108348
0.000108347
0.000108345
0.000108344
0.000108343
0.000108371
0.000108364
0.00010837
0.000108374
0.000108367
0.000108374
0.000108378
0.000108374
0.000108379
0.000108376
0.000108381
0.000108378
0.000108381
0.000108377
0.000108372
0.000108376
0.00010837
0.000108374
0.000108376
0.000108366
0.000110492
0.000116295
0.00012021
0.000122843
0.00012474
0.000126342
0.000127993
0.000130041
0.000134346
0.000142049
0.000148339
0.000145983
0.000131766
0.00011008
8.8647e-05
7.5455e-05
7.3792e-05
8.11039e-05
9.20451e-05
0.000102427
0.000121518
0.000122382
0.000122947
0.000123396
0.000123974
0.000124789
0.000126039
0.00012793
0.000146357
0.000203083
0.000276988
0.00031628
0.000296576
0.000240758
0.000185383
0.000148038
0.000128963
0.000121638
0.000120042
0.000120611
0.000119279
0.00011945
0.000119638
0.000119884
0.0001203
0.000120845
0.000121836
0.000123569
0.000145112
0.000243917
0.000347114
0.000359257
0.000294079
0.000214109
0.000158925
0.000132111
0.000122043
0.000119182
0.000118831
0.000119065
0.000117165
0.000117277
0.000117472
0.000117736
0.000118162
0.000118646
0.000119537
0.000120686
0.00012531
0.000260324
0.000373538
0.000340973
0.000250443
0.000176648
0.000137804
0.000122557
0.000117939
0.000116999
0.00011698
0.000117073
0.00011614
0.000116276
0.000116485
0.000116726
0.00011709
0.00011747
0.000118204
0.000119098
0.000126744
0.000417196
0.000631054
0.000584693
0.000396664
0.000242422
0.000163189
0.000130684
0.000119797
0.000116824
0.000116161
0.000116071
0.000115555
0.000115689
0.000115873
0.000116083
0.000116383
0.000116698
0.000117276
0.00011798
0.000125502
0.000496559
0.000667852
0.000506065
0.00030783
0.000191149
0.000139958
0.000121856
0.000116775
0.000115618
0.000115427
0.000115455
0.000115253
0.000115382
0.000115545
0.000115725
0.000115967
0.000116228
0.000116671
0.000117248
0.000124072
0.000482669
0.000742057
0.000592438
0.000339428
0.000196172
0.000138348
0.000120398
0.000116051
0.000115197
0.000115095
0.000115149
0.000115074
0.000115187
0.000115322
0.000115472
0.000115663
0.000115879
0.000116206
0.000116687
0.000118288
0.0001612
0.000235101
0.0002375
0.000189848
0.000144777
0.00012317
0.000116599
0.000115138
0.000114898
0.000114909
0.000114979
0.000114974
0.000115071
0.000115184
0.000115309
0.000115459
0.000115638
0.000115867
0.000116272
0.000117292
0.000167527
0.00022772
0.000180389
0.000146708
0.000126128
0.000117558
0.000115264
0.000114823
0.000114779
0.00011482
0.000114888
0.000114908
0.00011499
0.000115084
0.000115186
0.000115304
0.000115448
0.000115615
0.000115942
0.000116609
0.000175165
0.000251943
0.000179837
0.000140809
0.00012272
0.000116477
0.000115007
0.000114751
0.000114738
0.000114777
0.000114836
0.000114866
0.000114935
0.000115012
0.000115096
0.000115189
0.000115301
0.000115422
0.00011567
0.000116078
0.000183221
0.000257324
0.000177676
0.000138549
0.000121457
0.0001161
0.000114929
0.000114732
0.000114723
0.000114756
0.000114806
0.000114835
0.000114892
0.000114955
0.000115024
0.000115098
0.000115184
0.000115277
0.000115453
0.000115769
0.000186728
0.00028393
0.000186355
0.000140077
0.000121433
0.000116038
0.000114917
0.00011473
0.000114719
0.000114744
0.000114785
0.00011481
0.000114857
0.00011491
0.000114965
0.000115025
0.000115089
0.00011516
0.000115272
0.000115503
0.000192586
0.000271294
0.000176796
0.000136809
0.000120542
0.000115854
0.000114891
0.00011473
0.000114717
0.000114737
0.000114769
0.000114789
0.000114828
0.000114871
0.000114917
0.000114965
0.000115013
0.000115068
0.00011514
0.000115437
0.000206312
0.000294914
0.00018552
0.000138972
0.000120939
0.000115912
0.000114899
0.000114732
0.000114716
0.00011473
0.000114756
0.000114771
0.000114802
0.000114838
0.000114875
0.000114914
0.00011495
0.000114991
0.000115033
0.00011529
0.000201333
0.000255236
0.00017051
0.000134517
0.000119793
0.00011569
0.000114867
0.000114729
0.000114714
0.000114723
0.000114743
0.000114753
0.000114779
0.000114809
0.000114839
0.000114871
0.000114899
0.000114926
0.000114951
0.000114794
0.000133293
0.000128375
0.000126586
0.000120429
0.000116266
0.000115017
0.000114761
0.000114713
0.000114707
0.000114715
0.000114731
0.000114736
0.000114758
0.000114782
0.000114808
0.000114834
0.000114856
0.000114876
0.000114888
0.000114885
0.000116676
0.000115404
0.000115048
0.000114945
0.000114836
0.000114761
0.000114724
0.000114706
0.000114702
0.000114707
0.000114719
0.000114721
0.000114738
0.000114759
0.00011478
0.000114802
0.00011482
0.000114837
0.000114846
0.000114849
0.000114865
0.000114821
0.000114817
0.000114797
0.000114766
0.000114733
0.000114712
0.000114698
0.000114694
0.000114697
0.000114707
0.000114706
0.00011472
0.000114737
0.000114755
0.000114773
0.000114788
0.000114801
0.000114806
0.000114806
0.000114795
0.000114776
0.000114786
0.000114769
0.000114747
0.000114721
0.000114703
0.000114691
0.000114686
0.000114688
0.000114695
0.000114692
0.000114704
0.000114718
0.000114732
0.000114748
0.000114761
0.000114772
0.000114777
0.000114778
0.00011477
0.000114755
0.000114756
0.000114743
0.000114727
0.000114707
0.000114692
0.000114682
0.000114677
0.000114678
0.000114683
0.000114679
0.000114688
0.0001147
0.000114712
0.000114725
0.000114736
0.000114746
0.00011475
0.000114751
0.000114745
0.000114736
0.000114737
0.000114726
0.000114712
0.000114696
0.000114683
0.000114673
0.000114669
0.000114668
0.000114672
0.000114667
0.000114674
0.000114684
0.000114694
0.000114706
0.000114715
0.000114723
0.000114727
0.000114729
0.000114725
0.000114718
0.000114717
0.000114707
0.000114697
0.000114683
0.000114672
0.000114664
0.000114659
0.000114659
0.000114661
0.000114655
0.000114662
0.00011467
0.000114678
0.000114688
0.000114695
0.000114703
0.000114707
0.000114708
0.000114706
0.000114701
0.0001147
0.000114693
0.000114683
0.000114672
0.000114662
0.000114655
0.000114651
0.00011465
0.000114651
0.000114645
0.00011465
0.000114657
0.000114664
0.000114672
0.000114679
0.000114685
0.000114689
0.000114691
0.000114689
0.000114686
0.000114684
0.000114678
0.00011467
0.000114661
0.000114653
0.000114646
0.000114642
0.000114641
0.000114642
0.000114636
0.00011464
0.000114645
0.000114651
0.000114658
0.000114664
0.00011467
0.000114673
0.000114675
0.000114674
0.000114672
0.000114671
0.000114665
0.000114659
0.000114651
0.000114644
0.000114638
0.000114634
0.000114633
0.000114633
0.000114627
0.00011463
0.000114635
0.00011464
0.000114646
0.000114651
0.000114656
0.000114659
0.000114661
0.000114661
0.000114659
0.000114658
0.000114654
0.000114648
0.000114641
0.000114635
0.00011463
0.000114627
0.000114625
0.000114625
0.000114619
0.000114622
0.000114625
0.00011463
0.000114635
0.000114639
0.000114644
0.000114646
0.000114649
0.000114649
0.000114648
0.000114647
0.000114643
0.000114639
0.000114633
0.000114628
0.000114623
0.00011462
0.000114618
0.000114618
0.000114612
0.000114614
0.000114617
0.000114621
0.000114625
0.000114629
0.000114633
0.000114635
0.000114638
0.000114638
0.000114638
0.000114637
0.000114634
0.00011463
0.000114625
0.00011462
0.000114616
0.000114613
0.000114611
0.000114611
0.000114606
0.000114607
0.00011461
0.000114613
0.000114616
0.00011462
0.000114623
0.000114626
0.000114628
0.000114629
0.000114629
0.000114628
0.000114625
0.000114622
0.000114618
0.000114614
0.00011461
0.000114607
0.000114606
0.000114605
0.0001146
0.000114601
0.000114603
0.000114606
0.000114609
0.000114612
0.000114615
0.000114617
0.000114619
0.00011462
0.00011462
0.00011462
0.000114618
0.000114615
0.000114612
0.000114608
0.000114605
0.000114602
0.0001146
0.0001146
0.000114595
0.000114596
0.000114597
0.000114599
0.000114602
0.000114605
0.000114608
0.00011461
0.000114612
0.000114613
0.000114613
0.000114613
0.000114611
0.000114609
0.000114606
0.000114603
0.0001146
0.000114597
0.000114596
0.000114595
0.00011459
0.000114591
0.000114592
0.000114594
0.000114597
0.000114599
0.000114602
0.000114604
0.000114606
0.000114607
0.000114607
0.000114607
0.000114606
0.000114604
0.000114601
0.000114598
0.000114595
0.000114593
0.000114592
0.000114591
0.000114587
0.000114587
0.000114588
0.00011459
0.000114592
0.000114594
0.000114596
0.000114598
0.0001146
0.000114601
0.000114602
0.000114602
0.000114601
0.000114599
0.000114597
0.000114594
0.000114592
0.000114589
0.000114588
0.000114587
0.000114583
0.000114584
0.000114584
0.000114586
0.000114588
0.000114589
0.000114592
0.000114594
0.000114595
0.000114597
0.000114597
0.000114597
0.000114596
0.000114595
0.000114593
0.000114591
0.000114588
0.000114586
0.000114585
0.000114584
0.000114581
0.000114581
0.000114581
0.000114582
0.000114584
0.000114586
0.000114588
0.00011459
0.000114591
0.000114593
0.000114593
0.000114594
0.000114593
0.000114592
0.00011459
0.000114588
0.000114586
0.000114584
0.000114582
0.000114581
0.000114578
0.000114579
0.000114579
0.00011458
0.000114581
0.000114583
0.000114585
0.000114587
0.000114588
0.00011459
0.00011459
0.000114591
0.00011459
0.000114589
0.000114587
0.000114585
0.000114584
0.000114582
0.00011458
0.000114579
0.000114577
0.000114577
0.000114577
0.000114577
0.000114579
0.00011458
0.000114582
0.000114584
0.000114585
0.000114587
0.000114587
0.000114588
0.000114587
0.000114587
0.000114585
0.000114583
0.000114582
0.00011458
0.000114578
0.000114577
0.000114575
0.000114576
0.000114575
0.000114576
0.000114578
0.000114579
0.00011458
0.000114583
0.000114584
0.000114585
0.000114586
0.000114587
0.000114586
0.000114586
0.000114584
0.000114582
0.000114581
0.000114579
0.000114577
0.000114576
0.000114574
0.000114574
0.000114574
0.000114575
0.000114576
0.000114577
0.000114579
0.000114581
0.000114582
0.000114584
0.000114584
0.000114585
0.000114585
0.000114584
0.000114583
0.000114581
0.000114579
0.000114578
0.000114576
0.000114575
0.000114604
0.000114596
0.000114602
0.000114607
0.0001146
0.000114607
0.000114611
0.000114606
0.000114612
0.000114609
0.000114614
0.00011461
0.000114614
0.000114609
0.000114604
0.000114609
0.000114602
0.000114606
0.000114609
0.000114598
0.000119567
0.000124697
0.000128079
0.000130352
0.000132062
0.000133625
0.000135374
0.00013775
0.000143182
0.000152803
0.000160236
0.000156848
0.000139597
0.000114987
9.26493e-05
8.09417e-05
8.17557e-05
9.08254e-05
0.00010221
0.000112181
0.000128715
0.000129355
0.00012982
0.000130267
0.000130903
0.000131823
0.000133252
0.000135528
0.000158216
0.000227788
0.000316444
0.000359137
0.000331084
0.000264498
0.000201353
0.000159764
0.000138716
0.000130334
0.000128047
0.000128129
0.000126069
0.000126217
0.000126421
0.000126704
0.000127175
0.000127792
0.00012891
0.00013093
0.000156539
0.000276271
0.000397381
0.000405833
0.000325509
0.000232519
0.000170817
0.000141484
0.000130218
0.000126666
0.000125921
0.000125945
0.000123918
0.00012405
0.000124274
0.000124571
0.000125037
0.000125567
0.000126545
0.000127822
0.000133294
0.000287707
0.000412165
0.000368433
0.00026633
0.000186894
0.00014629
0.000130249
0.000125145
0.000123932
0.000123781
0.000123827
0.000122904
0.000123062
0.000123293
0.000123557
0.000123949
0.000124361
0.000125158
0.000126137
0.000134597
0.000463717
0.000697725
0.000628036
0.000412989
0.000250116
0.000169666
0.000137122
0.000126377
0.000123497
0.000122877
0.000122813
0.000122328
0.00012248
0.000122682
0.00012291
0.000123232
0.00012357
0.000124192
0.000124952
0.00013304
0.000554357
0.000733038
0.000536516
0.000318634
0.000197722
0.000146115
0.000128262
0.000123387
0.000122318
0.000122162
0.000122211
0.000122032
0.000122175
0.000122352
0.000122546
0.000122805
0.000123083
0.000123557
0.000124174
0.000131398
0.000548639
0.000837423
0.000638404
0.000354804
0.000203866
0.000144665
0.000126844
0.000122689
0.000121915
0.000121842
0.000121914
0.000121856
0.000121979
0.000122126
0.000122288
0.000122492
0.000122722
0.000123071
0.000123583
0.000125343
0.00017971
0.000272921
0.000263829
0.000203031
0.000152566
0.000129805
0.000123234
0.000121847
0.00012164
0.000121667
0.000121749
0.000121756
0.000121862
0.000121985
0.00012212
0.00012228
0.000122469
0.000122713
0.000123139
0.000124255
0.000187804
0.000263991
0.000201673
0.000158654
0.000133922
0.000124388
0.000121997
0.000121565
0.000121533
0.000121584
0.000121661
0.000121691
0.00012178
0.000121882
0.000121992
0.000122118
0.00012227
0.000122447
0.000122788
0.00012351
0.000197137
0.000292945
0.000201226
0.000152435
0.000130427
0.000123329
0.000121759
0.000121503
0.000121498
0.000121544
0.000121611
0.000121648
0.000121723
0.000121807
0.000121897
0.000121997
0.000122115
0.000122243
0.0001225
0.000122936
0.000207111
0.000298615
0.000198257
0.000149526
0.000128955
0.000122925
0.000121685
0.000121489
0.000121487
0.000121525
0.000121581
0.000121616
0.000121678
0.000121747
0.00012182
0.000121901
0.000121991
0.000122089
0.000122269
0.0001226
0.000211668
0.00032968
0.000207319
0.000150711
0.000128791
0.000122839
0.000121673
0.00012149
0.000121484
0.000121515
0.00012156
0.00012159
0.000121642
0.000121699
0.000121759
0.000121823
0.00012189
0.000121964
0.000122078
0.000122314
0.000218652
0.000314711
0.000196558
0.000147157
0.00012787
0.000122663
0.000121654
0.000121494
0.000121485
0.000121508
0.000121545
0.000121568
0.000121611
0.000121658
0.000121707
0.000121758
0.000121809
0.000121866
0.000121939
0.000122238
0.000235007
0.000341251
0.000205692
0.000149226
0.000128215
0.00012271
0.000121662
0.000121498
0.000121485
0.000121502
0.000121531
0.000121548
0.000121583
0.000121622
0.000121662
0.000121704
0.000121742
0.000121784
0.000121826
0.000122082
0.000229537
0.000294204
0.00018859
0.000144232
0.000126988
0.000122487
0.000121633
0.000121497
0.000121483
0.000121495
0.000121518
0.00012153
0.000121558
0.000121591
0.000121624
0.000121658
0.000121688
0.000121715
0.000121739
0.000121554
0.000147158
0.000143776
0.000138461
0.000128657
0.000123278
0.000121814
0.000121532
0.000121482
0.000121478
0.000121487
0.000121505
0.000121512
0.000121536
0.000121563
0.00012159
0.000121618
0.000121642
0.000121662
0.000121672
0.000121669
0.0001239
0.000122296
0.000121863
0.000121738
0.000121614
0.000121531
0.000121493
0.000121475
0.000121472
0.000121479
0.000121493
0.000121496
0.000121515
0.000121537
0.00012156
0.000121583
0.000121603
0.00012162
0.000121628
0.000121631
0.00012165
0.000121601
0.000121596
0.000121572
0.000121539
0.000121504
0.000121482
0.000121468
0.000121465
0.000121469
0.00012148
0.00012148
0.000121496
0.000121514
0.000121533
0.000121553
0.000121569
0.000121582
0.000121587
0.000121585
0.000121572
0.000121553
0.000121564
0.000121544
0.00012152
0.000121492
0.000121473
0.000121461
0.000121457
0.000121459
0.000121468
0.000121465
0.000121478
0.000121494
0.000121509
0.000121526
0.000121539
0.000121551
0.000121556
0.000121556
0.000121546
0.00012153
0.000121532
0.000121517
0.000121499
0.000121478
0.000121463
0.000121452
0.000121448
0.000121449
0.000121455
0.000121452
0.000121462
0.000121475
0.000121488
0.000121502
0.000121513
0.000121524
0.000121527
0.000121527
0.00012152
0.000121511
0.000121512
0.000121499
0.000121484
0.000121466
0.000121453
0.000121443
0.000121439
0.000121439
0.000121444
0.000121439
0.000121447
0.000121458
0.000121469
0.000121481
0.000121491
0.000121499
0.000121503
0.000121504
0.000121499
0.000121492
0.00012149
0.00012148
0.000121468
0.000121454
0.000121442
0.000121434
0.00012143
0.000121429
0.000121433
0.000121427
0.000121434
0.000121443
0.000121452
0.000121462
0.00012147
0.000121478
0.000121481
0.000121483
0.000121479
0.000121475
0.000121473
0.000121465
0.000121455
0.000121442
0.000121432
0.000121425
0.000121421
0.00012142
0.000121422
0.000121416
0.000121422
0.000121429
0.000121437
0.000121445
0.000121452
0.000121459
0.000121462
0.000121464
0.000121462
0.000121459
0.000121457
0.000121449
0.000121441
0.000121431
0.000121423
0.000121416
0.000121412
0.000121411
0.000121412
0.000121406
0.000121411
0.000121417
0.000121423
0.00012143
0.000121437
0.000121443
0.000121446
0.000121448
0.000121446
0.000121444
0.000121442
0.000121436
0.000121429
0.000121421
0.000121413
0.000121407
0.000121404
0.000121402
0.000121403
0.000121397
0.000121401
0.000121406
0.000121411
0.000121417
0.000121423
0.000121428
0.000121431
0.000121433
0.000121432
0.000121431
0.000121429
0.000121424
0.000121418
0.000121411
0.000121405
0.000121399
0.000121396
0.000121394
0.000121395
0.000121389
0.000121392
0.000121396
0.0001214
0.000121406
0.00012141
0.000121415
0.000121418
0.00012142
0.00012142
0.000121419
0.000121417
0.000121413
0.000121409
0.000121402
0.000121397
0.000121392
0.000121389
0.000121387
0.000121387
0.000121381
0.000121384
0.000121387
0.000121391
0.000121395
0.000121399
0.000121404
0.000121406
0.000121408
0.000121409
0.000121408
0.000121407
0.000121404
0.0001214
0.000121394
0.000121389
0.000121385
0.000121382
0.00012138
0.00012138
0.000121375
0.000121376
0.000121379
0.000121382
0.000121386
0.00012139
0.000121394
0.000121396
0.000121398
0.000121399
0.000121399
0.000121398
0.000121395
0.000121391
0.000121387
0.000121383
0.000121379
0.000121376
0.000121374
0.000121374
0.000121369
0.00012137
0.000121372
0.000121375
0.000121378
0.000121382
0.000121385
0.000121387
0.000121389
0.00012139
0.00012139
0.000121389
0.000121387
0.000121384
0.00012138
0.000121377
0.000121373
0.00012137
0.000121369
0.000121368
0.000121363
0.000121364
0.000121366
0.000121369
0.000121372
0.000121374
0.000121377
0.00012138
0.000121382
0.000121382
0.000121383
0.000121382
0.00012138
0.000121378
0.000121374
0.000121371
0.000121368
0.000121366
0.000121364
0.000121363
0.000121359
0.00012136
0.000121361
0.000121363
0.000121366
0.000121368
0.000121371
0.000121373
0.000121375
0.000121376
0.000121376
0.000121376
0.000121374
0.000121372
0.000121369
0.000121366
0.000121364
0.000121361
0.00012136
0.000121359
0.000121355
0.000121355
0.000121356
0.000121358
0.00012136
0.000121363
0.000121365
0.000121367
0.000121369
0.00012137
0.00012137
0.00012137
0.000121369
0.000121367
0.000121365
0.000121362
0.00012136
0.000121357
0.000121356
0.000121355
0.000121351
0.000121352
0.000121353
0.000121354
0.000121356
0.000121358
0.00012136
0.000121362
0.000121364
0.000121365
0.000121366
0.000121366
0.000121365
0.000121363
0.000121361
0.000121359
0.000121356
0.000121354
0.000121353
0.000121352
0.000121348
0.000121349
0.000121349
0.00012135
0.000121352
0.000121354
0.000121356
0.000121358
0.00012136
0.000121361
0.000121362
0.000121362
0.000121361
0.00012136
0.000121358
0.000121355
0.000121353
0.000121351
0.00012135
0.000121349
0.000121346
0.000121346
0.000121347
0.000121348
0.00012135
0.000121351
0.000121353
0.000121355
0.000121357
0.000121358
0.000121358
0.000121359
0.000121358
0.000121357
0.000121355
0.000121353
0.000121351
0.000121349
0.000121348
0.000121347
0.000121344
0.000121344
0.000121345
0.000121345
0.000121347
0.000121348
0.00012135
0.000121352
0.000121354
0.000121355
0.000121356
0.000121356
0.000121356
0.000121355
0.000121353
0.000121351
0.000121349
0.000121347
0.000121346
0.000121345
0.000121343
0.000121343
0.000121343
0.000121344
0.000121346
0.000121347
0.000121348
0.000121351
0.000121352
0.000121354
0.000121354
0.000121355
0.000121354
0.000121353
0.000121352
0.00012135
0.000121348
0.000121346
0.000121345
0.000121344
0.000121342
0.000121342
0.000121342
0.000121343
0.000121344
0.000121345
0.000121347
0.000121349
0.00012135
0.000121352
0.000121352
0.000121353
0.000121353
0.000121352
0.000121351
0.000121349
0.000121347
0.000121345
0.000121344
0.000121343
0.000121372
0.000121363
0.00012137
0.000121375
0.000121367
0.000121375
0.00012138
0.000121374
0.00012138
0.000121376
0.000121382
0.000121378
0.000121382
0.000121376
0.00012137
0.000121377
0.000121369
0.000121374
0.000121377
0.000121365
0.000129153
0.000133563
0.000136419
0.000138367
0.000139938
0.00014151
0.000143412
0.000146245
0.000153175
0.000165162
0.0001738
0.000168955
0.00014812
0.00012049
9.77235e-05
8.80523e-05
9.14419e-05
0.000101902
0.000113295
0.00012258
0.000136417
0.000136867
0.000137264
0.000137733
0.000138443
0.000139487
0.000141128
0.000143891
0.000171761
0.000257184
0.000363481
0.000408644
0.000369349
0.000289737
0.0002177
0.000171734
0.000148833
0.000139457
0.000136507
0.000136126
0.000133432
0.000133571
0.000133803
0.00013413
0.000134662
0.000135361
0.000136622
0.00013899
0.000169366
0.000315171
0.000457641
0.000459709
0.000359937
0.000251678
0.000183122
0.000151303
0.000138845
0.000134626
0.000133523
0.000133372
0.000131264
0.000131421
0.000131679
0.000132011
0.000132521
0.000133102
0.000134178
0.000135604
0.000142176
0.000319214
0.000456969
0.000399345
0.000283437
0.0001978
0.00015531
0.000138417
0.000132848
0.000131399
0.000131146
0.000131165
0.000130265
0.000130447
0.000130702
0.000130992
0.000131415
0.000131864
0.00013273
0.000133807
0.000143253
0.000516983
0.000774698
0.000674538
0.000428984
0.00025776
0.000176362
0.000143961
0.000133477
0.000130741
0.000130181
0.000130149
0.0001297
0.000129871
0.000130093
0.000130341
0.000130686
0.000131051
0.00013172
0.000132544
0.000141267
0.000620794
0.000807392
0.000568999
0.000329474
0.000204465
0.000152624
0.000135176
0.000130571
0.000129606
0.00012949
0.000129563
0.000129409
0.000129567
0.000129759
0.000129969
0.000130246
0.000130545
0.000131052
0.000131714
0.000139368
0.000626653
0.000948901
0.000687509
0.000370132
0.00021158
0.000151309
0.000133813
0.000129908
0.000129224
0.000129185
0.000129275
0.000129235
0.000129371
0.000129531
0.000129706
0.000129924
0.000130169
0.000130542
0.000131088
0.00013303
0.000202131
0.000320469
0.000293784
0.00021709
0.000160707
0.000136916
0.000130436
0.000129145
0.000128975
0.00012902
0.000129116
0.000129136
0.000129253
0.000129386
0.000129531
0.000129702
0.000129903
0.000130163
0.000130613
0.000131837
0.000212419
0.000309446
0.000226534
0.000171694
0.000142223
0.000131757
0.00012931
0.000128899
0.000128882
0.000128944
0.000129031
0.000129071
0.000129169
0.000129279
0.000129398
0.000129533
0.000129693
0.000129882
0.000130238
0.000131021
0.000223863
0.000344246
0.00022627
0.000165136
0.000138666
0.000130735
0.000129097
0.000128849
0.000128852
0.000128908
0.000128982
0.000129027
0.000129109
0.0001292
0.000129297
0.000129405
0.000129529
0.000129665
0.000129931
0.000130398
0.000236268
0.000350072
0.000222228
0.000161459
0.000136985
0.000130313
0.000129029
0.00012884
0.000128845
0.000128891
0.000128953
0.000128994
0.000129062
0.000129137
0.000129216
0.000129302
0.000129397
0.000129501
0.000129686
0.000130032
0.000242234
0.00038645
0.00023159
0.000162225
0.00013668
0.00013021
0.00012902
0.000128846
0.000128846
0.000128882
0.000128933
0.000128968
0.000129024
0.000129086
0.00012915
0.000129219
0.00012929
0.000129368
0.000129484
0.000129724
0.000250618
0.000368627
0.000219445
0.000158375
0.000135739
0.000130044
0.000129007
0.000128853
0.000128849
0.000128876
0.000128917
0.000128945
0.000128991
0.000129042
0.000129095
0.00012915
0.000129204
0.000129263
0.000129336
0.000129636
0.000270238
0.000398472
0.000228945
0.000160316
0.000136029
0.000130082
0.000129017
0.000128859
0.00012885
0.000128871
0.000128903
0.000128924
0.000128962
0.000129004
0.000129047
0.000129092
0.000129132
0.000129176
0.000129216
0.000129469
0.000264275
0.000342147
0.000209324
0.00015472
0.000134727
0.000129861
0.000128992
0.00012886
0.00012885
0.000128864
0.00012889
0.000128904
0.000128935
0.00012897
0.000129006
0.000129043
0.000129074
0.000129103
0.000129126
0.000128908
0.000163659
0.000162254
0.000151785
0.000137516
0.000130851
0.000129197
0.000128898
0.000128848
0.000128845
0.000128856
0.000128877
0.000128885
0.000128911
0.00012894
0.00012897
0.000129
0.000129025
0.000129046
0.000129055
0.00012905
0.000131795
0.000129786
0.000129272
0.000129128
0.000128986
0.000128898
0.000128859
0.000128841
0.00012884
0.000128848
0.000128864
0.000128868
0.000128889
0.000128913
0.000128937
0.000128963
0.000128983
0.000129001
0.000129008
0.00012901
0.000129033
0.000128978
0.000128973
0.000128944
0.000128908
0.000128871
0.000128848
0.000128835
0.000128832
0.000128838
0.00012885
0.000128851
0.000128869
0.000128889
0.000128909
0.00012893
0.000128947
0.000128961
0.000128964
0.000128962
0.000128946
0.000128927
0.000128939
0.000128915
0.000128889
0.00012886
0.00012884
0.000128828
0.000128824
0.000128828
0.000128837
0.000128836
0.00012885
0.000128867
0.000128884
0.000128901
0.000128915
0.000128928
0.000128931
0.000128931
0.000128919
0.000128903
0.000128904
0.000128887
0.000128868
0.000128846
0.00012883
0.000128819
0.000128815
0.000128817
0.000128824
0.000128821
0.000128833
0.000128847
0.000128861
0.000128876
0.000128888
0.000128898
0.000128901
0.000128901
0.000128892
0.000128883
0.000128884
0.000128869
0.000128853
0.000128834
0.00012882
0.00012881
0.000128806
0.000128807
0.000128812
0.000128808
0.000128817
0.000128829
0.000128841
0.000128853
0.000128863
0.000128873
0.000128875
0.000128877
0.00012887
0.000128863
0.000128861
0.000128849
0.000128836
0.000128821
0.000128809
0.0001288
0.000128796
0.000128797
0.000128801
0.000128795
0.000128803
0.000128812
0.000128822
0.000128833
0.000128842
0.00012885
0.000128853
0.000128854
0.00012885
0.000128845
0.000128843
0.000128833
0.000128822
0.000128809
0.000128799
0.000128791
0.000128787
0.000128787
0.00012879
0.000128784
0.00012879
0.000128798
0.000128806
0.000128815
0.000128823
0.00012883
0.000128833
0.000128835
0.000128832
0.000128828
0.000128826
0.000128817
0.000128809
0.000128798
0.000128789
0.000128782
0.000128778
0.000128777
0.000128779
0.000128773
0.000128778
0.000128785
0.000128792
0.0001288
0.000128806
0.000128813
0.000128815
0.000128818
0.000128815
0.000128813
0.000128811
0.000128804
0.000128796
0.000128787
0.00012878
0.000128773
0.00012877
0.000128769
0.00012877
0.000128764
0.000128768
0.000128773
0.000128779
0.000128786
0.000128791
0.000128797
0.0001288
0.000128802
0.0001288
0.000128799
0.000128797
0.000128792
0.000128785
0.000128777
0.000128771
0.000128765
0.000128762
0.00012876
0.000128761
0.000128755
0.000128758
0.000128763
0.000128768
0.000128774
0.000128778
0.000128783
0.000128786
0.000128788
0.000128788
0.000128787
0.000128785
0.00012878
0.000128775
0.000128768
0.000128762
0.000128757
0.000128754
0.000128753
0.000128753
0.000128747
0.00012875
0.000128754
0.000128758
0.000128763
0.000128767
0.000128771
0.000128774
0.000128776
0.000128776
0.000128775
0.000128774
0.00012877
0.000128766
0.00012876
0.000128755
0.00012875
0.000128747
0.000128746
0.000128746
0.00012874
0.000128742
0.000128745
0.000128749
0.000128753
0.000128757
0.000128761
0.000128763
0.000128765
0.000128766
0.000128765
0.000128764
0.000128761
0.000128757
0.000128752
0.000128748
0.000128744
0.000128741
0.00012874
0.000128739
0.000128734
0.000128736
0.000128738
0.000128741
0.000128745
0.000128748
0.000128752
0.000128754
0.000128756
0.000128756
0.000128756
0.000128756
0.000128753
0.00012875
0.000128746
0.000128742
0.000128738
0.000128735
0.000128734
0.000128733
0.000128729
0.00012873
0.000128732
0.000128734
0.000128738
0.00012874
0.000128744
0.000128746
0.000128748
0.000128748
0.000128749
0.000128748
0.000128746
0.000128743
0.00012874
0.000128736
0.000128733
0.00012873
0.000128729
0.000128728
0.000128724
0.000128725
0.000128726
0.000128728
0.000128731
0.000128734
0.000128737
0.000128739
0.000128741
0.000128742
0.000128742
0.000128742
0.00012874
0.000128737
0.000128734
0.000128731
0.000128728
0.000128726
0.000128724
0.000128724
0.00012872
0.00012872
0.000128722
0.000128723
0.000128726
0.000128728
0.000128731
0.000128733
0.000128735
0.000128736
0.000128736
0.000128736
0.000128734
0.000128732
0.00012873
0.000128727
0.000128724
0.000128722
0.00012872
0.00012872
0.000128716
0.000128717
0.000128718
0.000128719
0.000128721
0.000128723
0.000128726
0.000128728
0.000128729
0.000128731
0.000128731
0.000128731
0.00012873
0.000128728
0.000128726
0.000128723
0.000128721
0.000128719
0.000128717
0.000128716
0.000128713
0.000128713
0.000128714
0.000128715
0.000128717
0.000128719
0.000128721
0.000128723
0.000128725
0.000128726
0.000128727
0.000128727
0.000128726
0.000128725
0.000128722
0.00012872
0.000128718
0.000128716
0.000128714
0.000128713
0.000128711
0.000128711
0.000128711
0.000128712
0.000128714
0.000128716
0.000128718
0.00012872
0.000128722
0.000128723
0.000128723
0.000128724
0.000128723
0.000128722
0.00012872
0.000128718
0.000128716
0.000128714
0.000128712
0.000128711
0.000128709
0.000128709
0.000128709
0.00012871
0.000128712
0.000128713
0.000128715
0.000128717
0.000128719
0.00012872
0.000128721
0.000128721
0.00012872
0.000128719
0.000128717
0.000128715
0.000128713
0.000128711
0.00012871
0.000128709
0.000128707
0.000128708
0.000128708
0.000128708
0.00012871
0.000128711
0.000128713
0.000128716
0.000128717
0.000128718
0.000128719
0.000128719
0.000128719
0.000128718
0.000128716
0.000128714
0.000128712
0.00012871
0.000128709
0.000128708
0.000128706
0.000128706
0.000128706
0.000128707
0.000128709
0.00012871
0.000128712
0.000128714
0.000128715
0.000128717
0.000128717
0.000128718
0.000128717
0.000128716
0.000128715
0.000128713
0.000128711
0.000128709
0.000128708
0.000128707
0.000128736
0.000128727
0.000128735
0.00012874
0.000128731
0.000128739
0.000128745
0.000128738
0.000128745
0.00012874
0.000128747
0.000128742
0.000128747
0.00012874
0.000128734
0.000128741
0.000128733
0.000128738
0.000128741
0.000128729
0.000139267
0.000142936
0.000145292
0.000146967
0.000148451
0.000150086
0.000152203
0.000155665
0.00016459
0.000179483
0.000189349
0.000182533
0.000157554
0.000126907
0.000104302
9.71693e-05
0.000103022
0.000114346
0.00012528
0.000133619
0.000144691
0.000144993
0.000145355
0.000145868
0.000146671
0.00014786
0.00014975
0.000153137
0.000187312
0.000292493
0.000420026
0.000466086
0.000411729
0.000316258
0.000234203
0.000183924
0.00015935
0.000149048
0.00014547
0.000144657
0.000141439
0.000141586
0.000141854
0.000142233
0.000142834
0.000143627
0.000145051
0.00014784
0.000183819
0.000362484
0.000530653
0.000522316
0.000397452
0.000271442
0.000195839
0.000161592
0.000147957
0.000143114
0.000141705
0.000141418
0.000139275
0.000139462
0.000139757
0.000140128
0.000140685
0.000141326
0.00014251
0.000144112
0.000152119
0.000355867
0.000509964
0.000434777
0.000302036
0.000209478
0.000164903
0.000147103
0.000141105
0.000139471
0.000139149
0.000139158
0.000138294
0.000138502
0.000138783
0.000139102
0.000139559
0.00014005
0.000140993
0.000142184
0.000152842
0.000578635
0.000865255
0.000725073
0.000444889
0.00026551
0.00018334
0.000151273
0.000141175
0.00013863
0.000138145
0.000138149
0.00013774
0.000137932
0.000138175
0.000138445
0.000138816
0.000139211
0.000139934
0.000140832
0.000150272
0.000697993
0.000893991
0.00060413
0.000340606
0.000211468
0.00015956
0.000142677
0.0001384
0.000137555
0.000137483
0.000137581
0.000137454
0.000137629
0.000137838
0.000138066
0.000138363
0.000138684
0.000139228
0.000139941
0.000148062
0.000719982
0.0010812
0.000740517
0.000385587
0.000219356
0.000158348
0.000141383
0.000137782
0.000137198
0.000137193
0.000137304
0.000137283
0.000137433
0.000137607
0.000137796
0.00013803
0.000138292
0.000138691
0.000139276
0.000141422
0.000229638
0.0003811
0.000328153
0.000232131
0.000169233
0.000144573
0.000138278
0.000137105
0.000136976
0.00013704
0.00013715
0.000137184
0.000137312
0.000137457
0.000137614
0.000137798
0.000138011
0.00013829
0.000138765
0.000140111
0.000242666
0.00036723
0.000255766
0.000185906
0.000151068
0.000139733
0.000137276
0.000136896
0.000136896
0.00013697
0.000137069
0.000137119
0.000137227
0.000137346
0.000137475
0.000137621
0.00013779
0.000137991
0.000138363
0.000139213
0.000256761
0.000409326
0.000255762
0.000178978
0.000147477
0.000138763
0.00013709
0.000136858
0.000136873
0.000136937
0.000137022
0.000137075
0.000137165
0.000137264
0.000137368
0.000137484
0.000137615
0.000137761
0.000138035
0.000138537
0.000272284
0.000415068
0.000250286
0.000174394
0.000145593
0.000138334
0.000137032
0.000136856
0.00013687
0.000136923
0.000136993
0.000137041
0.000137115
0.000137197
0.000137282
0.000137375
0.000137475
0.000137585
0.000137774
0.000138136
0.00028016
0.000457799
0.000259814
0.000174657
0.000145149
0.000138218
0.000137028
0.000136867
0.000136874
0.000136916
0.000136973
0.000137013
0.000137075
0.000137142
0.000137212
0.000137286
0.00013736
0.000137442
0.000137559
0.000137802
0.000290311
0.000436456
0.000246072
0.000170508
0.0001442
0.000138067
0.000137023
0.000136878
0.000136879
0.000136911
0.000136958
0.000136989
0.000137039
0.000137095
0.000137152
0.000137212
0.000137268
0.00013733
0.000137403
0.000137701
0.000314025
0.000470028
0.000255858
0.000172278
0.000144432
0.000138097
0.000137035
0.000136886
0.000136882
0.000136906
0.000136943
0.000136966
0.000137008
0.000137055
0.000137101
0.000137149
0.000137191
0.000137237
0.000137276
0.000137521
0.000307607
0.000401852
0.000233185
0.000166018
0.000143065
0.000137881
0.000137014
0.000136889
0.000136883
0.0001369
0.00013693
0.000136946
0.00013698
0.000137018
0.000137057
0.000137096
0.000137129
0.000137159
0.000137181
0.000136924
0.000183503
0.000184641
0.000166744
0.00014705
0.000139052
0.000137236
0.000136929
0.00013688
0.000136879
0.000136892
0.000136916
0.000136926
0.000136954
0.000136986
0.000137018
0.00013705
0.000137076
0.000137098
0.000137106
0.0001371
0.000140442
0.000137941
0.000137347
0.000137183
0.000137024
0.000136931
0.000136891
0.000136874
0.000136874
0.000136884
0.000136902
0.000136907
0.000136931
0.000136957
0.000136983
0.00013701
0.000137032
0.00013705
0.000137056
0.000137057
0.000137084
0.000137023
0.000137017
0.000136984
0.000136944
0.000136905
0.000136881
0.000136868
0.000136867
0.000136874
0.000136888
0.00013689
0.000136909
0.000136931
0.000136953
0.000136975
0.000136993
0.000137008
0.00013701
0.000137007
0.000136987
0.00013697
0.000136981
0.000136954
0.000136925
0.000136894
0.000136874
0.000136861
0.000136859
0.000136863
0.000136874
0.000136874
0.000136889
0.000136907
0.000136926
0.000136945
0.000136959
0.000136972
0.000136975
0.000136974
0.000136959
0.000136944
0.000136945
0.000136925
0.000136904
0.00013688
0.000136864
0.000136853
0.00013685
0.000136853
0.000136861
0.000136858
0.000136871
0.000136886
0.000136901
0.000136917
0.00013693
0.000136941
0.000136943
0.000136943
0.000136932
0.000136923
0.000136923
0.000136906
0.000136889
0.000136868
0.000136854
0.000136844
0.00013684
0.000136842
0.000136848
0.000136844
0.000136854
0.000136867
0.00013688
0.000136894
0.000136904
0.000136914
0.000136916
0.000136917
0.000136909
0.000136901
0.000136899
0.000136886
0.000136872
0.000136856
0.000136843
0.000136834
0.000136831
0.000136831
0.000136836
0.000136831
0.000136839
0.00013685
0.000136861
0.000136872
0.000136881
0.00013689
0.000136892
0.000136893
0.000136887
0.000136883
0.00013688
0.000136869
0.000136857
0.000136843
0.000136833
0.000136825
0.000136821
0.000136821
0.000136824
0.000136819
0.000136826
0.000136834
0.000136843
0.000136853
0.000136861
0.000136868
0.000136871
0.000136873
0.000136869
0.000136865
0.000136862
0.000136853
0.000136843
0.000136832
0.000136823
0.000136816
0.000136812
0.000136811
0.000136814
0.000136808
0.000136813
0.000136821
0.000136828
0.000136837
0.000136843
0.00013685
0.000136852
0.000136855
0.000136852
0.000136849
0.000136846
0.000136839
0.000136831
0.000136821
0.000136813
0.000136807
0.000136803
0.000136802
0.000136804
0.000136798
0.000136802
0.000136808
0.000136815
0.000136822
0.000136828
0.000136834
0.000136836
0.000136838
0.000136836
0.000136834
0.000136832
0.000136826
0.000136819
0.000136811
0.000136804
0.000136798
0.000136795
0.000136794
0.000136795
0.000136789
0.000136792
0.000136797
0.000136803
0.000136809
0.000136814
0.000136819
0.000136821
0.000136824
0.000136823
0.000136822
0.000136819
0.000136814
0.000136809
0.000136802
0.000136795
0.00013679
0.000136787
0.000136786
0.000136786
0.000136781
0.000136783
0.000136788
0.000136792
0.000136797
0.000136802
0.000136806
0.000136809
0.000136811
0.00013681
0.00013681
0.000136808
0.000136804
0.000136799
0.000136793
0.000136788
0.000136783
0.00013678
0.000136779
0.000136779
0.000136773
0.000136776
0.000136779
0.000136783
0.000136787
0.000136791
0.000136795
0.000136798
0.0001368
0.0001368
0.000136799
0.000136798
0.000136795
0.00013679
0.000136785
0.00013678
0.000136776
0.000136774
0.000136772
0.000136772
0.000136767
0.000136769
0.000136771
0.000136775
0.000136779
0.000136782
0.000136786
0.000136788
0.00013679
0.00013679
0.00013679
0.000136789
0.000136786
0.000136783
0.000136778
0.000136774
0.00013677
0.000136768
0.000136766
0.000136766
0.000136761
0.000136762
0.000136765
0.000136767
0.000136771
0.000136774
0.000136777
0.000136779
0.000136781
0.000136782
0.000136782
0.000136781
0.000136779
0.000136776
0.000136772
0.000136768
0.000136765
0.000136762
0.000136761
0.00013676
0.000136756
0.000136757
0.000136759
0.000136761
0.000136764
0.000136767
0.00013677
0.000136772
0.000136774
0.000136775
0.000136775
0.000136774
0.000136772
0.00013677
0.000136767
0.000136763
0.00013676
0.000136758
0.000136756
0.000136756
0.000136752
0.000136752
0.000136754
0.000136756
0.000136759
0.000136761
0.000136764
0.000136766
0.000136767
0.000136768
0.000136769
0.000136768
0.000136767
0.000136765
0.000136762
0.000136759
0.000136756
0.000136754
0.000136752
0.000136752
0.000136748
0.000136749
0.00013675
0.000136751
0.000136754
0.000136756
0.000136758
0.00013676
0.000136762
0.000136763
0.000136764
0.000136763
0.000136762
0.00013676
0.000136758
0.000136755
0.000136753
0.00013675
0.000136749
0.000136748
0.000136745
0.000136745
0.000136746
0.000136747
0.00013675
0.000136751
0.000136754
0.000136756
0.000136757
0.000136759
0.000136759
0.000136759
0.000136758
0.000136756
0.000136754
0.000136752
0.000136749
0.000136747
0.000136746
0.000136745
0.000136742
0.000136743
0.000136743
0.000136744
0.000136747
0.000136748
0.00013675
0.000136752
0.000136754
0.000136755
0.000136756
0.000136756
0.000136755
0.000136754
0.000136752
0.000136749
0.000136747
0.000136745
0.000136744
0.000136743
0.00013674
0.00013674
0.000136741
0.000136742
0.000136744
0.000136745
0.000136747
0.000136749
0.000136751
0.000136752
0.000136753
0.000136753
0.000136752
0.000136751
0.000136749
0.000136747
0.000136745
0.000136743
0.000136742
0.000136741
0.000136739
0.000136739
0.000136739
0.00013674
0.000136742
0.000136743
0.000136745
0.000136748
0.000136749
0.000136751
0.000136751
0.000136751
0.000136751
0.00013675
0.000136748
0.000136746
0.000136744
0.000136742
0.000136741
0.00013674
0.000136738
0.000136738
0.000136738
0.000136739
0.000136741
0.000136742
0.000136744
0.000136746
0.000136747
0.000136749
0.000136749
0.00013675
0.000136749
0.000136748
0.000136746
0.000136744
0.000136743
0.000136741
0.000136739
0.000136739
0.000136767
0.000136758
0.000136766
0.000136772
0.000136763
0.000136771
0.000136777
0.000136769
0.000136777
0.000136772
0.000136779
0.000136773
0.000136779
0.000136771
0.000136765
0.000136773
0.000136763
0.000136769
0.000136773
0.00013676
0.000149939
0.000152873
0.000154778
0.000156241
0.000157698
0.000159452
0.000161858
0.000166188
0.000177777
0.000196231
0.0002073
0.000197933
0.00016827
0.000134721
0.000112946
0.000108702
0.000116627
0.00012814
0.000138135
0.000145297
0.000153619
0.000153818
0.00015418
0.000154759
0.000155671
0.000157029
0.000159214
0.000163407
0.000205276
0.000335399
0.000488723
0.000533185
0.000458646
0.000343765
0.000250683
0.00019636
0.000170315
0.000159153
0.00015499
0.000153795
0.000150175
0.000150346
0.000150658
0.000151097
0.000151775
0.000152674
0.000154285
0.000157588
0.000200178
0.0004208
0.000620228
0.000595444
0.000438077
0.00029168
0.000208985
0.000172376
0.000157597
0.000152198
0.000150546
0.000150167
0.000148032
0.000148254
0.000148589
0.000149004
0.000149614
0.000150322
0.000151628
0.000153438
0.000163326
0.000399066
0.000574086
0.000476152
0.00032244
0.000222038
0.0001751
0.000156352
0.000149991
0.00014823
0.000147873
0.000147888
0.000147072
0.000147308
0.000147618
0.000147969
0.000148464
0.000149002
0.000150031
0.000151356
0.000163515
0.000650906
0.000974095
0.000780725
0.000461008
0.000273512
0.000190664
0.000159143
0.00014956
0.000147249
0.00014685
0.000146897
0.000146529
0.000146745
0.000147011
0.000147306
0.000147706
0.000148134
0.000148915
0.0001499
0.000160156
0.000788827
0.0009973
0.000642855
0.000352318
0.00021881
0.000167007
0.000150857
0.000146962
0.000146247
0.000146222
0.000146348
0.00014625
0.000146443
0.00014667
0.000146917
0.000147236
0.000147582
0.000148168
0.00014894
0.000157576
0.00083309
0.001241
0.000798472
0.000401378
0.000227233
0.000165868
0.000149647
0.000146394
0.000145917
0.000145949
0.00014608
0.000146081
0.000146246
0.000146435
0.00014664
0.000146892
0.000147172
0.0001476
0.000148229
0.000150607
0.000263859
0.000459652
0.000367968
0.000248249
0.000178178
0.000152858
0.000146846
0.000145808
0.000145722
0.000145807
0.000145932
0.000145983
0.000146123
0.00014628
0.00014645
0.000146648
0.000146875
0.000147174
0.000147677
0.000149161
0.000280325
0.000441866
0.000290375
0.000201353
0.000160497
0.000148393
0.000145976
0.000145636
0.000145656
0.000145743
0.000145855
0.000145917
0.000146035
0.000146165
0.000146304
0.000146461
0.00014664
0.000146856
0.000147245
0.000148171
0.00029779
0.000493169
0.000290691
0.000194004
0.000156903
0.000147491
0.000145821
0.000145612
0.00014564
0.000145715
0.000145809
0.000145872
0.00014597
0.000146078
0.000146191
0.000146316
0.000146454
0.00014661
0.000146893
0.000147432
0.000317353
0.000498417
0.000283284
0.000188362
0.00015483
0.000147066
0.000145776
0.000145618
0.000145642
0.000145704
0.000145782
0.000145837
0.000145918
0.000146007
0.000146099
0.000146199
0.000146305
0.000146421
0.000146614
0.000146992
0.000327868
0.000548775
0.000292769
0.000188029
0.000154254
0.000146944
0.000145779
0.000145634
0.00014565
0.000145698
0.000145762
0.000145808
0.000145875
0.000145949
0.000146024
0.000146103
0.000146182
0.000146268
0.000146386
0.000146629
0.00034028
0.000523031
0.000277188
0.000183586
0.000153313
0.000146812
0.000145782
0.000145649
0.000145657
0.000145695
0.000145747
0.000145782
0.000145838
0.000145898
0.00014596
0.000146024
0.000146083
0.000146148
0.00014622
0.000146511
0.000369185
0.000560764
0.000287125
0.000185136
0.000153484
0.000146836
0.000145796
0.000145661
0.000145662
0.00014569
0.000145732
0.000145759
0.000145804
0.000145855
0.000145905
0.000145957
0.000146001
0.000146048
0.000146085
0.000146318
0.000362424
0.000477226
0.000260726
0.000178152
0.000152064
0.00014663
0.000145781
0.000145666
0.000145664
0.000145685
0.000145718
0.000145737
0.000145774
0.000145816
0.000145857
0.0001459
0.000145934
0.000145966
0.000145985
0.000145682
0.000207637
0.000212055
0.000183537
0.000157303
0.000147953
0.000146013
0.000145706
0.00014566
0.000145661
0.000145677
0.000145703
0.000145716
0.000145747
0.000145781
0.000145815
0.00014585
0.000145877
0.0001459
0.000145906
0.000145899
0.000149932
0.000146837
0.000146167
0.000145984
0.000145809
0.000145711
0.000145672
0.000145655
0.000145657
0.000145668
0.000145689
0.000145696
0.000145722
0.00014575
0.000145779
0.000145808
0.00014583
0.000145849
0.000145853
0.000145853
0.000145884
0.000145816
0.000145811
0.000145771
0.000145728
0.000145687
0.000145663
0.00014565
0.00014565
0.000145658
0.000145674
0.000145678
0.000145699
0.000145722
0.000145746
0.00014577
0.000145788
0.000145804
0.000145805
0.000145802
0.000145777
0.000145761
0.000145772
0.000145741
0.00014571
0.000145677
0.000145656
0.000145644
0.000145642
0.000145648
0.00014566
0.00014566
0.000145677
0.000145697
0.000145717
0.000145737
0.000145753
0.000145766
0.000145767
0.000145766
0.000145748
0.000145733
0.000145734
0.000145712
0.000145689
0.000145663
0.000145646
0.000145635
0.000145633
0.000145637
0.000145646
0.000145644
0.000145658
0.000145675
0.000145691
0.000145708
0.000145721
0.000145733
0.000145734
0.000145734
0.00014572
0.000145711
0.000145711
0.000145692
0.000145673
0.000145651
0.000145636
0.000145626
0.000145623
0.000145625
0.000145633
0.000145629
0.000145641
0.000145654
0.000145668
0.000145683
0.000145694
0.000145704
0.000145705
0.000145706
0.000145696
0.000145689
0.000145686
0.000145671
0.000145656
0.000145639
0.000145626
0.000145616
0.000145613
0.000145615
0.00014562
0.000145615
0.000145625
0.000145636
0.000145648
0.00014566
0.000145669
0.000145678
0.00014568
0.000145681
0.000145674
0.000145669
0.000145666
0.000145654
0.000145641
0.000145626
0.000145615
0.000145607
0.000145604
0.000145604
0.000145608
0.000145603
0.00014561
0.00014562
0.00014563
0.00014564
0.000145648
0.000145656
0.000145658
0.00014566
0.000145654
0.000145651
0.000145647
0.000145637
0.000145627
0.000145615
0.000145605
0.000145598
0.000145594
0.000145594
0.000145597
0.000145591
0.000145597
0.000145605
0.000145613
0.000145622
0.000145629
0.000145636
0.000145638
0.000145641
0.000145637
0.000145634
0.000145631
0.000145623
0.000145614
0.000145603
0.000145595
0.000145588
0.000145585
0.000145584
0.000145587
0.000145581
0.000145586
0.000145592
0.000145599
0.000145607
0.000145613
0.000145619
0.000145621
0.000145623
0.00014562
0.000145619
0.000145616
0.00014561
0.000145602
0.000145593
0.000145586
0.00014558
0.000145577
0.000145576
0.000145577
0.000145571
0.000145575
0.000145581
0.000145586
0.000145593
0.000145598
0.000145604
0.000145606
0.000145608
0.000145606
0.000145605
0.000145603
0.000145597
0.000145591
0.000145583
0.000145577
0.000145572
0.000145569
0.000145567
0.000145568
0.000145562
0.000145566
0.00014557
0.000145575
0.000145581
0.000145585
0.00014559
0.000145592
0.000145595
0.000145594
0.000145593
0.000145591
0.000145586
0.000145581
0.000145575
0.000145569
0.000145564
0.000145561
0.00014556
0.00014556
0.000145555
0.000145558
0.000145561
0.000145565
0.00014557
0.000145574
0.000145579
0.000145581
0.000145583
0.000145582
0.000145582
0.00014558
0.000145577
0.000145572
0.000145567
0.000145562
0.000145557
0.000145555
0.000145553
0.000145553
0.000145548
0.00014555
0.000145553
0.000145557
0.000145561
0.000145564
0.000145568
0.00014557
0.000145573
0.000145573
0.000145572
0.000145571
0.000145568
0.000145564
0.000145559
0.000145555
0.000145551
0.000145549
0.000145547
0.000145547
0.000145542
0.000145544
0.000145546
0.000145549
0.000145553
0.000145556
0.000145559
0.000145562
0.000145564
0.000145564
0.000145564
0.000145563
0.00014556
0.000145557
0.000145553
0.000145549
0.000145546
0.000145543
0.000145542
0.000145541
0.000145537
0.000145538
0.00014554
0.000145543
0.000145546
0.000145549
0.000145552
0.000145554
0.000145556
0.000145556
0.000145557
0.000145556
0.000145554
0.000145551
0.000145547
0.000145544
0.000145541
0.000145538
0.000145537
0.000145536
0.000145532
0.000145533
0.000145535
0.000145537
0.00014554
0.000145542
0.000145545
0.000145547
0.000145549
0.00014555
0.00014555
0.00014555
0.000145548
0.000145545
0.000145542
0.000145539
0.000145536
0.000145534
0.000145533
0.000145532
0.000145528
0.000145529
0.000145531
0.000145532
0.000145535
0.000145537
0.00014554
0.000145542
0.000145543
0.000145544
0.000145545
0.000145544
0.000145543
0.000145541
0.000145538
0.000145535
0.000145533
0.000145531
0.000145529
0.000145529
0.000145525
0.000145526
0.000145527
0.000145528
0.000145531
0.000145532
0.000145535
0.000145537
0.000145539
0.00014554
0.00014554
0.00014554
0.000145539
0.000145537
0.000145535
0.000145532
0.00014553
0.000145527
0.000145526
0.000145525
0.000145523
0.000145523
0.000145524
0.000145525
0.000145527
0.000145529
0.000145531
0.000145533
0.000145535
0.000145536
0.000145537
0.000145537
0.000145536
0.000145534
0.000145532
0.000145529
0.000145527
0.000145525
0.000145524
0.000145523
0.00014552
0.000145521
0.000145521
0.000145522
0.000145524
0.000145526
0.000145528
0.00014553
0.000145532
0.000145533
0.000145533
0.000145534
0.000145533
0.000145531
0.000145529
0.000145527
0.000145525
0.000145523
0.000145522
0.000145521
0.000145519
0.000145519
0.00014552
0.000145521
0.000145523
0.000145524
0.000145526
0.000145528
0.00014553
0.000145531
0.000145532
0.000145532
0.000145531
0.00014553
0.000145528
0.000145526
0.000145524
0.000145522
0.000145521
0.00014552
0.000145518
0.000145518
0.000145518
0.000145519
0.000145521
0.000145522
0.000145524
0.000145527
0.000145528
0.000145529
0.00014553
0.00014553
0.000145529
0.000145528
0.000145527
0.000145524
0.000145523
0.000145521
0.000145519
0.000145519
0.000145548
0.000145537
0.000145546
0.000145552
0.000145542
0.000145552
0.000145558
0.000145549
0.000145558
0.000145552
0.000145559
0.000145553
0.000145559
0.000145551
0.000145544
0.000145553
0.000145543
0.000145549
0.000145553
0.000145539
0.000161214
0.000163452
0.000164975
0.000166298
0.000167791
0.000169723
0.000172506
0.000178037
0.000193214
0.000216034
0.000228238
0.000215735
0.000180835
0.000144644
0.000124361
0.00012306
0.000132331
0.000143236
0.000151827
0.000157617
0.000163299
0.000163443
0.000163837
0.000164503
0.000165543
0.000167097
0.000169635
0.000174876
0.000226179
0.000388295
0.000573301
0.000612324
0.000510634
0.000371897
0.000267043
0.000209119
0.000181785
0.000169821
0.000165135
0.000163625
0.000159735
0.000159944
0.000160311
0.000160817
0.000161581
0.000162604
0.000164427
0.000168362
0.000218808
0.000493792
0.000731786
0.000681381
0.00048178
0.000312297
0.000222597
0.000183679
0.000167816
0.000161959
0.000160142
0.000159717
0.000157629
0.000157893
0.000158271
0.000158734
0.000159401
0.000160187
0.000161631
0.000163688
0.000176052
0.000450777
0.000653718
0.000525264
0.000344994
0.000235574
0.00018592
0.000166223
0.000159593
0.000157772
0.000157415
0.000157452
0.000156692
0.000156961
0.000157302
0.000157688
0.000158225
0.000158818
0.000159942
0.000161424
0.000175451
0.00073691
0.00110809
0.000842968
0.000477714
0.000281883
0.0001984
0.000167676
0.000158738
0.000156695
0.000156392
0.000156484
0.000156162
0.000156403
0.000156695
0.000157018
0.000157449
0.000157916
0.000158762
0.000159847
0.000171035
0.000897265
0.00112392
0.000686398
0.000364905
0.000226549
0.000175063
0.000159823
0.000156353
0.000155776
0.0001558
0.000155955
0.000155888
0.000156101
0.000156349
0.000156618
0.000156962
0.000157336
0.000157968
0.000158806
0.000168015
0.000972192
0.00143803
0.000862791
0.00041773
0.00023524
0.000173969
0.000158709
0.000155843
0.000155475
0.000155543
0.000155698
0.000155722
0.000155904
0.00015611
0.000156332
0.000156604
0.000156905
0.000157366
0.000158043
0.000160685
0.000307092
0.000563265
0.000414595
0.000265521
0.00018758
0.000161871
0.000156239
0.000155348
0.000155308
0.000155413
0.000155557
0.000155624
0.000155778
0.000155949
0.000156133
0.000156347
0.000156589
0.000156911
0.000157444
0.000159085
0.000327908
0.000540019
0.000331639
0.000218066
0.000170556
0.000157831
0.000155504
0.000155215
0.000155255
0.000155357
0.000155482
0.000155558
0.000155687
0.000155829
0.000155979
0.000156149
0.00015634
0.000156571
0.000156977
0.000157987
0.000349707
0.000603095
0.000332293
0.000210226
0.000166994
0.00015701
0.000155383
0.000155204
0.000155247
0.000155333
0.000155439
0.000155512
0.000155619
0.000155737
0.000155859
0.000155994
0.000156141
0.000156307
0.0001566
0.00015718
0.000374578
0.000607111
0.000322269
0.000203363
0.000164756
0.000156601
0.000155354
0.000155219
0.000155254
0.000155325
0.000155413
0.000155475
0.000155565
0.000155662
0.000155761
0.000155869
0.000155981
0.000156104
0.000156301
0.000156694
0.000388801
0.000666701
0.000331393
0.000202337
0.000164061
0.000156481
0.000155365
0.000155241
0.000155266
0.000155322
0.000155393
0.000155445
0.000155519
0.000155599
0.00015568
0.000155766
0.000155849
0.00015594
0.000156059
0.000156298
0.000404153
0.000635389
0.0003137
0.00019762
0.000163145
0.000156371
0.000155378
0.000155261
0.000155276
0.00015532
0.000155378
0.000155418
0.000155479
0.000155545
0.000155611
0.000155681
0.000155743
0.000155811
0.000155881
0.000156161
0.00043972
0.000677648
0.000323573
0.000198893
0.000163254
0.000156391
0.000155396
0.000155276
0.000155283
0.000155316
0.000155363
0.000155393
0.000155443
0.000155498
0.000155552
0.000155608
0.000155655
0.000155703
0.000155738
0.000155953
0.000432863
0.000573857
0.000292596
0.000191134
0.0001618
0.000156199
0.000155387
0.000155284
0.000155286
0.000155311
0.000155348
0.00015537
0.000155411
0.000155456
0.000155501
0.000155547
0.000155583
0.000155616
0.000155633
0.000155275
0.000237358
0.000246031
0.000202368
0.000168321
0.000157642
0.000155622
0.000155323
0.000155281
0.000155285
0.000155304
0.000155333
0.000155348
0.000155382
0.000155419
0.000155456
0.000155494
0.000155522
0.000155546
0.000155549
0.000155541
0.000160366
0.000156563
0.000155826
0.000155625
0.000155433
0.000155332
0.000155293
0.000155278
0.000155281
0.000155295
0.000155318
0.000155327
0.000155355
0.000155386
0.000155417
0.000155448
0.000155471
0.000155491
0.000155493
0.000155492
0.000155526
0.000155452
0.000155447
0.000155401
0.000155354
0.00015531
0.000155286
0.000155273
0.000155274
0.000155285
0.000155303
0.000155307
0.00015533
0.000155356
0.000155382
0.000155408
0.000155427
0.000155443
0.000155442
0.000155438
0.000155409
0.000155394
0.000155405
0.000155369
0.000155336
0.000155301
0.000155279
0.000155267
0.000155267
0.000155274
0.000155288
0.000155289
0.000155308
0.000155329
0.000155351
0.000155372
0.000155388
0.000155402
0.000155402
0.000155401
0.000155378
0.000155365
0.000155365
0.00015534
0.000155315
0.000155288
0.00015527
0.000155259
0.000155257
0.000155262
0.000155273
0.000155272
0.000155288
0.000155305
0.000155323
0.000155342
0.000155355
0.000155367
0.000155367
0.000155367
0.00015535
0.000155342
0.00015534
0.00015532
0.000155299
0.000155276
0.00015526
0.00015525
0.000155248
0.000155251
0.000155259
0.000155256
0.000155269
0.000155284
0.000155299
0.000155314
0.000155326
0.000155336
0.000155337
0.000155338
0.000155325
0.000155319
0.000155315
0.000155298
0.000155282
0.000155263
0.00015525
0.000155241
0.000155238
0.00015524
0.000155246
0.000155242
0.000155252
0.000155265
0.000155277
0.00015529
0.0001553
0.000155309
0.000155311
0.000155311
0.000155302
0.000155298
0.000155294
0.000155281
0.000155266
0.00015525
0.000155239
0.000155231
0.000155228
0.000155229
0.000155234
0.000155229
0.000155237
0.000155247
0.000155258
0.000155269
0.000155277
0.000155285
0.000155287
0.000155289
0.000155282
0.000155279
0.000155274
0.000155263
0.000155252
0.000155239
0.000155229
0.000155221
0.000155218
0.000155218
0.000155222
0.000155216
0.000155223
0.000155232
0.000155241
0.00015525
0.000155257
0.000155265
0.000155266
0.000155269
0.000155263
0.000155261
0.000155257
0.000155248
0.000155238
0.000155227
0.000155219
0.000155212
0.000155209
0.000155209
0.000155211
0.000155205
0.000155211
0.000155218
0.000155226
0.000155234
0.00015524
0.000155246
0.000155248
0.00015525
0.000155247
0.000155245
0.000155242
0.000155235
0.000155226
0.000155217
0.000155209
0.000155203
0.0001552
0.000155199
0.000155201
0.000155195
0.0001552
0.000155206
0.000155212
0.000155219
0.000155225
0.00015523
0.000155232
0.000155234
0.000155232
0.000155231
0.000155228
0.000155222
0.000155215
0.000155207
0.0001552
0.000155195
0.000155192
0.000155191
0.000155192
0.000155186
0.00015519
0.000155195
0.0001552
0.000155206
0.000155211
0.000155216
0.000155218
0.00015522
0.000155219
0.000155218
0.000155216
0.000155211
0.000155205
0.000155198
0.000155192
0.000155187
0.000155184
0.000155183
0.000155184
0.000155178
0.000155181
0.000155186
0.00015519
0.000155195
0.000155199
0.000155204
0.000155206
0.000155208
0.000155207
0.000155207
0.000155205
0.000155201
0.000155196
0.00015519
0.000155185
0.00015518
0.000155178
0.000155176
0.000155177
0.000155171
0.000155174
0.000155177
0.000155181
0.000155185
0.000155189
0.000155193
0.000155195
0.000155197
0.000155197
0.000155197
0.000155195
0.000155192
0.000155187
0.000155182
0.000155178
0.000155174
0.000155171
0.00015517
0.00015517
0.000155165
0.000155167
0.00015517
0.000155173
0.000155177
0.00015518
0.000155184
0.000155186
0.000155188
0.000155188
0.000155188
0.000155186
0.000155184
0.00015518
0.000155176
0.000155172
0.000155168
0.000155166
0.000155164
0.000155164
0.00015516
0.000155161
0.000155163
0.000155166
0.00015517
0.000155172
0.000155176
0.000155178
0.00015518
0.00015518
0.00015518
0.000155179
0.000155177
0.000155174
0.00015517
0.000155166
0.000155163
0.000155161
0.000155159
0.000155159
0.000155155
0.000155156
0.000155158
0.00015516
0.000155163
0.000155166
0.000155169
0.000155171
0.000155173
0.000155173
0.000155173
0.000155173
0.000155171
0.000155168
0.000155165
0.000155162
0.000155159
0.000155156
0.000155155
0.000155155
0.000155151
0.000155152
0.000155153
0.000155155
0.000155158
0.00015516
0.000155163
0.000155165
0.000155167
0.000155168
0.000155168
0.000155167
0.000155166
0.000155164
0.000155161
0.000155158
0.000155155
0.000155153
0.000155151
0.000155151
0.000155147
0.000155148
0.000155149
0.000155151
0.000155153
0.000155155
0.000155158
0.00015516
0.000155162
0.000155163
0.000155163
0.000155163
0.000155161
0.000155159
0.000155157
0.000155154
0.000155152
0.00015515
0.000155148
0.000155147
0.000155145
0.000155145
0.000155146
0.000155148
0.00015515
0.000155152
0.000155154
0.000155156
0.000155158
0.000155159
0.000155159
0.000155159
0.000155158
0.000155156
0.000155154
0.000155152
0.000155149
0.000155147
0.000155146
0.000155145
0.000155142
0.000155143
0.000155143
0.000155145
0.000155147
0.000155148
0.000155151
0.000155153
0.000155154
0.000155156
0.000155156
0.000155156
0.000155155
0.000155154
0.000155151
0.000155149
0.000155147
0.000155145
0.000155144
0.000155143
0.000155141
0.000155142
0.000155142
0.000155143
0.000155145
0.000155146
0.000155149
0.000155151
0.000155152
0.000155154
0.000155154
0.000155154
0.000155153
0.000155152
0.00015515
0.000155148
0.000155146
0.000155144
0.000155143
0.000155142
0.00015514
0.00015514
0.00015514
0.000155141
0.000155144
0.000155145
0.000155147
0.000155149
0.00015515
0.000155152
0.000155152
0.000155153
0.000155152
0.000155151
0.000155149
0.000155146
0.000155145
0.000155142
0.000155141
0.00015514
0.00015517
0.000155159
0.000155169
0.000155175
0.000155164
0.000155174
0.00015518
0.000155171
0.00015518
0.000155174
0.000155182
0.000155174
0.000155182
0.000155172
0.000155165
0.000155175
0.000155164
0.000155171
0.000155175
0.000155161
0.000173158
0.000174776
0.000176004
0.000177264
0.000178858
0.000181034
0.0001843
0.000191513
0.000211563
0.000239763
0.000253023
0.000236934
0.000196276
0.000157725
0.0001394
0.000140608
0.000150134
0.000159557
0.000166315
0.000170595
0.000173846
0.000173984
0.000174441
0.000175214
0.000176401
0.000178184
0.000181146
0.000187761
0.000250726
0.000454669
0.000679176
0.00070689
0.000568225
0.000400246
0.000283293
0.000222302
0.000193811
0.000181109
0.000175993
0.000174256
0.000170233
0.000170491
0.000170921
0.000171504
0.000172365
0.000173531
0.000175598
0.000180312
0.00024019
0.000586781
0.000873255
0.000783069
0.000528469
0.000333251
0.000236712
0.000195521
0.000178681
0.000172499
0.000170605
0.00017018
0.000168176
0.000168485
0.000168912
0.000169428
0.00017016
0.000171035
0.000172635
0.000174988
0.000190619
0.000513831
0.000755556
0.000583965
0.000370069
0.000250141
0.000197372
0.000176788
0.000170018
0.000168211
0.000167884
0.000167957
0.000167263
0.000167567
0.000167943
0.000168368
0.000168953
0.000169609
0.00017084
0.000172508
0.000188864
0.000841093
0.00127752
0.000913924
0.000495417
0.000290678
0.000206619
0.000176995
0.000168827
0.000167081
0.000166879
0.000167018
0.000166746
0.000167016
0.000167335
0.00016769
0.000168156
0.000168668
0.000169586
0.000170788
0.000183044
0.0010289
0.00128381
0.000736303
0.000378611
0.000234718
0.000183846
0.000169698
0.000166688
0.00016625
0.000166325
0.000166512
0.000166478
0.000166713
0.000166983
0.000167277
0.000167649
0.000168055
0.000168739
0.000169654
0.000179505
0.00114609
0.00168679
0.000935351
0.000434836
0.000243394
0.000182778
0.000168692
0.000166239
0.00016598
0.000166086
0.000166266
0.000166314
0.000166515
0.000166739
0.000166982
0.000167275
0.0001676
0.000168097
0.00016883
0.00017177
0.000362642
0.00070276
0.000469825
0.00028396
0.000197485
0.000171729
0.000166569
0.000165835
0.00016584
0.000165969
0.000166131
0.000166217
0.000166386
0.000166573
0.000166772
0.000167004
0.000167263
0.000167611
0.000168177
0.000169993
0.000389014
0.000671774
0.000381171
0.00023602
0.0001813
0.000168155
0.000165971
0.000165738
0.000165802
0.00016592
0.00016606
0.00016615
0.000166292
0.000166447
0.00016661
0.000166793
0.000166997
0.000167246
0.000167671
0.000168774
0.000416471
0.00075012
0.000382107
0.000227603
0.000177812
0.000167428
0.000165887
0.000165743
0.000165802
0.000165901
0.000166019
0.000166103
0.000166221
0.000166349
0.000166482
0.000166628
0.000166784
0.000166963
0.000167265
0.000167887
0.000448419
0.000751615
0.000368511
0.000219354
0.000175444
0.000167049
0.000165875
0.000165768
0.000165815
0.000165896
0.000165994
0.000166065
0.000166163
0.000166269
0.000166377
0.000166493
0.000166611
0.000166743
0.000166943
0.000167349
0.000467962
0.000822429
0.000376793
0.000217536
0.000174649
0.000166939
0.000165898
0.000165796
0.000165831
0.000165895
0.000165975
0.000166034
0.000166114
0.000166202
0.000166289
0.000166382
0.00016647
0.000166566
0.000166685
0.000166916
0.000487209
0.000784
0.000356694
0.000212585
0.000173778
0.000166854
0.00016592
0.000165822
0.000165845
0.000165895
0.000165959
0.000166005
0.000166072
0.000166144
0.000166216
0.00016629
0.000166356
0.000166427
0.000166495
0.000166755
0.000531444
0.000830935
0.000366169
0.000213519
0.000173826
0.000166873
0.000165943
0.00016584
0.000165854
0.000165892
0.000165944
0.000165979
0.000166034
0.000166093
0.000166152
0.000166212
0.000166261
0.000166311
0.000166343
0.000166531
0.000524981
0.000699927
0.000329531
0.000204951
0.000172362
0.0001667
0.00016594
0.000165852
0.000165859
0.000165888
0.000165929
0.000165954
0.000165999
0.000166048
0.000166097
0.000166146
0.000166184
0.000166218
0.000166232
0.00016581
0.000274464
0.000288707
0.000223439
0.000180152
0.000168221
0.000166171
0.000165889
0.000165851
0.000165858
0.000165881
0.000165913
0.000165931
0.000165968
0.000166009
0.000166049
0.000166089
0.000166119
0.000166143
0.000166143
0.000166135
0.000171861
0.000167218
0.000166431
0.000166212
0.000166006
0.000165903
0.000165864
0.00016585
0.000165855
0.000165872
0.000165898
0.000165909
0.000165939
0.000165973
0.000166006
0.000166039
0.000166064
0.000166085
0.000166084
0.000166082
0.000166118
0.00016604
0.000166033
0.00016598
0.00016593
0.000165884
0.000165859
0.000165847
0.000165849
0.000165861
0.000165882
0.000165888
0.000165913
0.000165941
0.000165969
0.000165996
0.000166016
0.000166033
0.00016603
0.000166026
0.00016599
0.00016598
0.000165989
0.000165949
0.000165912
0.000165875
0.000165853
0.000165841
0.000165842
0.00016585
0.000165866
0.000165869
0.00016589
0.000165913
0.000165936
0.000165959
0.000165975
0.00016599
0.000165988
0.000165986
0.000165959
0.000165948
0.000165947
0.000165919
0.000165892
0.000165863
0.000165844
0.000165834
0.000165832
0.000165839
0.000165851
0.000165851
0.000165868
0.000165887
0.000165906
0.000165926
0.00016594
0.000165952
0.000165951
0.00016595
0.00016593
0.000165924
0.000165921
0.000165898
0.000165875
0.000165851
0.000165834
0.000165825
0.000165823
0.000165827
0.000165837
0.000165834
0.000165848
0.000165865
0.00016588
0.000165897
0.000165909
0.000165919
0.000165919
0.00016592
0.000165905
0.000165899
0.000165894
0.000165876
0.000165858
0.000165838
0.000165824
0.000165815
0.000165813
0.000165815
0.000165823
0.000165819
0.000165831
0.000165844
0.000165857
0.000165871
0.000165881
0.000165891
0.000165892
0.000165892
0.000165881
0.000165878
0.000165872
0.000165858
0.000165842
0.000165825
0.000165814
0.000165806
0.000165803
0.000165804
0.00016581
0.000165805
0.000165815
0.000165826
0.000165837
0.000165849
0.000165858
0.000165866
0.000165866
0.000165869
0.00016586
0.000165857
0.000165852
0.00016584
0.000165827
0.000165814
0.000165803
0.000165796
0.000165793
0.000165793
0.000165798
0.000165792
0.0001658
0.000165809
0.000165819
0.000165829
0.000165836
0.000165844
0.000165845
0.000165847
0.000165841
0.000165839
0.000165834
0.000165824
0.000165814
0.000165802
0.000165793
0.000165786
0.000165783
0.000165783
0.000165787
0.000165781
0.000165787
0.000165795
0.000165803
0.000165811
0.000165818
0.000165824
0.000165826
0.000165828
0.000165824
0.000165822
0.000165818
0.00016581
0.000165801
0.000165791
0.000165783
0.000165777
0.000165774
0.000165774
0.000165776
0.00016577
0.000165776
0.000165782
0.000165789
0.000165796
0.000165802
0.000165808
0.000165809
0.000165811
0.000165808
0.000165807
0.000165804
0.000165797
0.00016579
0.000165781
0.000165774
0.000165769
0.000165766
0.000165765
0.000165767
0.000165761
0.000165765
0.000165771
0.000165776
0.000165783
0.000165788
0.000165793
0.000165794
0.000165797
0.000165795
0.000165794
0.000165791
0.000165786
0.000165779
0.000165772
0.000165766
0.000165761
0.000165758
0.000165757
0.000165758
0.000165753
0.000165756
0.00016576
0.000165765
0.000165771
0.000165775
0.00016578
0.000165782
0.000165784
0.000165782
0.000165782
0.00016578
0.000165775
0.00016577
0.000165764
0.000165758
0.000165754
0.000165751
0.00016575
0.000165751
0.000165745
0.000165748
0.000165752
0.000165756
0.00016576
0.000165764
0.000165768
0.00016577
0.000165772
0.000165772
0.000165772
0.00016577
0.000165766
0.000165761
0.000165756
0.000165751
0.000165747
0.000165745
0.000165743
0.000165744
0.000165739
0.000165741
0.000165744
0.000165747
0.000165751
0.000165755
0.000165758
0.000165761
0.000165763
0.000165762
0.000165762
0.000165761
0.000165758
0.000165754
0.000165749
0.000165745
0.000165741
0.000165739
0.000165738
0.000165738
0.000165733
0.000165735
0.000165737
0.00016574
0.000165744
0.000165747
0.00016575
0.000165752
0.000165754
0.000165754
0.000165754
0.000165753
0.000165751
0.000165747
0.000165743
0.000165739
0.000165736
0.000165734
0.000165732
0.000165732
0.000165728
0.000165729
0.000165731
0.000165734
0.000165737
0.00016574
0.000165743
0.000165745
0.000165747
0.000165747
0.000165747
0.000165746
0.000165744
0.000165741
0.000165738
0.000165735
0.000165732
0.000165729
0.000165728
0.000165728
0.000165724
0.000165725
0.000165727
0.000165729
0.000165732
0.000165734
0.000165737
0.000165739
0.000165741
0.000165741
0.000165742
0.000165741
0.000165739
0.000165737
0.000165734
0.00016573
0.000165728
0.000165725
0.000165724
0.000165724
0.00016572
0.000165721
0.000165722
0.000165724
0.000165727
0.000165729
0.000165731
0.000165734
0.000165735
0.000165736
0.000165737
0.000165736
0.000165735
0.000165732
0.00016573
0.000165727
0.000165724
0.000165722
0.000165721
0.00016572
0.000165717
0.000165718
0.000165719
0.000165721
0.000165723
0.000165725
0.000165727
0.00016573
0.000165731
0.000165732
0.000165733
0.000165732
0.000165731
0.000165729
0.000165727
0.000165724
0.000165722
0.00016572
0.000165718
0.000165718
0.000165715
0.000165716
0.000165716
0.000165718
0.00016572
0.000165722
0.000165724
0.000165726
0.000165728
0.000165729
0.000165729
0.000165729
0.000165728
0.000165726
0.000165724
0.000165722
0.000165719
0.000165717
0.000165716
0.000165715
0.000165714
0.000165714
0.000165715
0.000165716
0.000165718
0.00016572
0.000165722
0.000165724
0.000165726
0.000165727
0.000165727
0.000165727
0.000165726
0.000165725
0.000165723
0.00016572
0.000165718
0.000165716
0.000165715
0.000165714
0.000165712
0.000165713
0.000165713
0.000165714
0.000165717
0.000165718
0.00016572
0.000165722
0.000165724
0.000165725
0.000165725
0.000165726
0.000165725
0.000165723
0.000165721
0.000165719
0.000165717
0.000165715
0.000165714
0.000165713
0.000165742
0.000165731
0.000165741
0.000165748
0.000165737
0.000165747
0.000165754
0.000165744
0.000165754
0.000165746
0.000165755
0.000165747
0.000165755
0.000165744
0.000165737
0.000165748
0.000165736
0.000165744
0.000165748
0.000165733
0.000185871
0.000186977
0.00018801
0.000189286
0.000191049
0.000193542
0.000197426
0.000207013
0.000233774
0.000268673
0.000282983
0.00026328
0.000216296
0.000175444
0.000159027
0.000161614
0.000169949
0.000176994
0.000181562
0.000184273
0.000185396
0.000185575
0.000186123
0.000187022
0.000188379
0.00019043
0.000193904
0.000202339
0.000279879
0.000539737
0.000814464
0.000821824
0.000631945
0.000428419
0.000299561
0.00023601
0.000206434
0.000193093
0.000187676
0.000185819
0.000181795
0.000182115
0.000182617
0.000183286
0.000184257
0.000185588
0.000187938
0.000193617
0.000264977
0.000707666
0.00105661
0.000904342
0.000578022
0.000354563
0.000251349
0.000207923
0.000190283
0.000183945
0.000182068
0.000181687
0.000179798
0.000180159
0.000180638
0.000181213
0.000182018
0.000182997
0.000184774
0.000187482
0.000207437
0.000592401
0.000890122
0.000655295
0.000398105
0.000265729
0.000209454
0.000188145
0.000181397
0.000179678
0.000179409
0.000179532
0.000178911
0.000179253
0.000179668
0.000180138
0.000180775
0.000181504
0.000182854
0.000184744
0.000204008
0.000969938
0.00149819
0.000995902
0.000514477
0.000299869
0.00021541
0.000187252
0.000179969
0.000178536
0.000178437
0.000178627
0.000178408
0.000178708
0.00017906
0.000179449
0.000179953
0.000180516
0.000181516
0.000182857
0.000196334
0.00119179
0.00149238
0.000794475
0.000393554
0.000243326
0.000193494
0.000180625
0.000178097
0.000177797
0.000177923
0.000178143
0.000178145
0.000178405
0.000178701
0.000179022
0.000179424
0.000179867
0.000180609
0.000181613
0.000192187
0.0013675
0.00200947
0.00101861
0.000452766
0.000251704
0.000192444
0.000179737
0.000177711
0.000177558
0.000177703
0.000177909
0.000177984
0.000178205
0.000178451
0.000178715
0.000179033
0.000179384
0.000179922
0.00018072
0.000183997
0.000435378
0.000895014
0.000535977
0.00030347
0.00020795
0.000182571
0.000177969
0.000177395
0.000177445
0.000177598
0.000177781
0.000177887
0.000178073
0.000178277
0.000178494
0.000178745
0.000179023
0.0001794
0.000180004
0.000182017
0.000468927
0.000852827
0.00044098
0.000255097
0.000192797
0.000179493
0.000177506
0.000177334
0.000177421
0.000177557
0.000177714
0.00017782
0.000177976
0.000178145
0.000178322
0.000178521
0.000178738
0.000179008
0.000179453
0.000180657
0.00050389
0.000951306
0.000442008
0.000246012
0.00018943
0.000178873
0.000177458
0.000177354
0.00017743
0.000177544
0.000177675
0.000177772
0.000177901
0.000178041
0.000178185
0.000178343
0.000178509
0.000178702
0.000179013
0.00017968
0.000545438
0.000948061
0.000423507
0.000236229
0.000186983
0.000178538
0.000177468
0.00017739
0.000177451
0.000177543
0.000177651
0.000177733
0.00017784
0.000177955
0.000178072
0.000178198
0.000178323
0.000178464
0.000178667
0.000179083
0.000572786
0.00103244
0.000430238
0.000233529
0.000186114
0.000178445
0.000177502
0.000177426
0.000177471
0.000177544
0.000177633
0.000177699
0.000177788
0.000177883
0.000177978
0.000178078
0.000178172
0.000178273
0.000178391
0.000178607
0.000597306
0.000984873
0.000407431
0.000228409
0.000185311
0.000178389
0.000177536
0.000177457
0.000177488
0.000177545
0.000177617
0.000177669
0.000177742
0.000177821
0.000177899
0.000177979
0.000178048
0.000178122
0.000178188
0.000178419
0.000652992
0.0010361
0.000415998
0.000228934
0.000185303
0.000178408
0.000177564
0.00017748
0.0001775
0.000177544
0.000177602
0.000177641
0.000177702
0.000177766
0.00017783
0.000177894
0.000177946
0.000177998
0.000178026
0.000178175
0.000647852
0.000867715
0.000372329
0.000219556
0.000183858
0.000178259
0.000177569
0.000177495
0.000177507
0.00017754
0.000177587
0.000177615
0.000177665
0.000177718
0.000177771
0.000177823
0.000177863
0.000177899
0.00017791
0.000177408
0.000321495
0.000343125
0.000246919
0.000192845
0.000179813
0.000177789
0.00017753
0.000177498
0.000177508
0.000177534
0.000177571
0.000177591
0.000177631
0.000177676
0.000177719
0.000177762
0.000177793
0.000177819
0.000177816
0.000177806
0.000184542
0.00017892
0.000178109
0.000177872
0.000177654
0.00017755
0.000177512
0.000177499
0.000177506
0.000177525
0.000177554
0.000177568
0.000177601
0.000177638
0.000177673
0.000177709
0.000177734
0.000177756
0.000177752
0.000177749
0.000177786
0.000177705
0.000177697
0.000177636
0.000177582
0.000177533
0.000177508
0.000177496
0.0001775
0.000177515
0.000177538
0.000177546
0.000177573
0.000177604
0.000177633
0.000177663
0.000177684
0.000177701
0.000177696
0.000177691
0.000177649
0.000177643
0.00017765
0.000177604
0.000177564
0.000177525
0.000177503
0.000177492
0.000177493
0.000177504
0.000177522
0.000177526
0.000177548
0.000177574
0.000177598
0.000177623
0.00017764
0.000177655
0.000177651
0.000177649
0.000177617
0.000177608
0.000177606
0.000177575
0.000177545
0.000177514
0.000177495
0.000177484
0.000177484
0.000177492
0.000177506
0.000177507
0.000177525
0.000177546
0.000177567
0.000177588
0.000177602
0.000177615
0.000177612
0.000177611
0.000177587
0.000177583
0.000177578
0.000177553
0.000177528
0.000177502
0.000177485
0.000177476
0.000177474
0.00017748
0.000177491
0.000177489
0.000177505
0.000177522
0.000177539
0.000177557
0.000177569
0.00017758
0.000177578
0.000177579
0.000177561
0.000177557
0.00017755
0.00017753
0.000177511
0.00017749
0.000177475
0.000177466
0.000177464
0.000177468
0.000177477
0.000177473
0.000177486
0.0001775
0.000177515
0.000177529
0.00017754
0.00017755
0.00017755
0.00017755
0.000177537
0.000177534
0.000177528
0.000177512
0.000177495
0.000177477
0.000177465
0.000177457
0.000177454
0.000177456
0.000177463
0.000177459
0.000177469
0.000177481
0.000177493
0.000177506
0.000177515
0.000177523
0.000177523
0.000177525
0.000177515
0.000177513
0.000177506
0.000177493
0.00017748
0.000177465
0.000177454
0.000177447
0.000177444
0.000177445
0.00017745
0.000177445
0.000177454
0.000177464
0.000177474
0.000177485
0.000177493
0.0001775
0.000177501
0.000177503
0.000177495
0.000177494
0.000177488
0.000177477
0.000177466
0.000177453
0.000177444
0.000177437
0.000177434
0.000177435
0.000177439
0.000177433
0.00017744
0.000177449
0.000177457
0.000177466
0.000177473
0.00017748
0.000177481
0.000177483
0.000177477
0.000177476
0.000177471
0.000177463
0.000177453
0.000177442
0.000177434
0.000177428
0.000177425
0.000177425
0.000177428
0.000177422
0.000177428
0.000177435
0.000177442
0.00017745
0.000177456
0.000177462
0.000177463
0.000177465
0.000177462
0.000177461
0.000177456
0.000177449
0.000177441
0.000177432
0.000177425
0.000177419
0.000177416
0.000177416
0.000177418
0.000177412
0.000177417
0.000177423
0.000177429
0.000177436
0.000177441
0.000177446
0.000177448
0.00017745
0.000177447
0.000177447
0.000177443
0.000177437
0.00017743
0.000177423
0.000177416
0.000177411
0.000177409
0.000177408
0.000177409
0.000177404
0.000177407
0.000177412
0.000177417
0.000177423
0.000177428
0.000177433
0.000177434
0.000177436
0.000177435
0.000177434
0.000177431
0.000177426
0.000177421
0.000177414
0.000177408
0.000177404
0.000177401
0.0001774
0.000177401
0.000177396
0.000177399
0.000177403
0.000177407
0.000177412
0.000177416
0.000177421
0.000177422
0.000177425
0.000177424
0.000177423
0.000177421
0.000177417
0.000177412
0.000177406
0.000177401
0.000177397
0.000177395
0.000177394
0.000177394
0.000177389
0.000177392
0.000177395
0.000177399
0.000177403
0.000177406
0.00017741
0.000177412
0.000177414
0.000177414
0.000177414
0.000177412
0.000177408
0.000177404
0.000177399
0.000177395
0.000177391
0.000177389
0.000177388
0.000177388
0.000177383
0.000177385
0.000177388
0.000177391
0.000177395
0.000177398
0.000177401
0.000177403
0.000177405
0.000177405
0.000177405
0.000177404
0.000177401
0.000177397
0.000177393
0.000177389
0.000177386
0.000177383
0.000177382
0.000177382
0.000177378
0.00017738
0.000177382
0.000177384
0.000177388
0.000177391
0.000177394
0.000177396
0.000177398
0.000177398
0.000177398
0.000177397
0.000177395
0.000177392
0.000177388
0.000177384
0.000177381
0.000177379
0.000177378
0.000177377
0.000177374
0.000177375
0.000177377
0.000177379
0.000177382
0.000177384
0.000177387
0.000177389
0.000177391
0.000177392
0.000177392
0.000177391
0.000177389
0.000177387
0.000177383
0.00017738
0.000177377
0.000177375
0.000177374
0.000177373
0.00017737
0.000177371
0.000177372
0.000177374
0.000177377
0.000177379
0.000177382
0.000177384
0.000177386
0.000177387
0.000177387
0.000177386
0.000177385
0.000177382
0.000177379
0.000177376
0.000177374
0.000177372
0.00017737
0.00017737
0.000177367
0.000177368
0.000177369
0.000177371
0.000177373
0.000177375
0.000177378
0.00017738
0.000177382
0.000177382
0.000177383
0.000177382
0.000177381
0.000177379
0.000177376
0.000177374
0.000177371
0.000177369
0.000177368
0.000177367
0.000177364
0.000177365
0.000177366
0.000177368
0.00017737
0.000177372
0.000177374
0.000177376
0.000177378
0.000177379
0.000177379
0.000177379
0.000177378
0.000177376
0.000177374
0.000177371
0.000177369
0.000177367
0.000177365
0.000177365
0.000177363
0.000177364
0.000177364
0.000177366
0.000177368
0.000177369
0.000177372
0.000177374
0.000177376
0.000177377
0.000177377
0.000177377
0.000177376
0.000177375
0.000177372
0.00017737
0.000177368
0.000177366
0.000177364
0.000177364
0.000177361
0.000177362
0.000177363
0.000177364
0.000177366
0.000177367
0.00017737
0.000177372
0.000177373
0.000177375
0.000177375
0.000177375
0.000177374
0.000177373
0.00017737
0.000177368
0.000177366
0.000177364
0.000177363
0.000177362
0.000177392
0.00017738
0.000177391
0.000177398
0.000177386
0.000177397
0.000177404
0.000177393
0.000177404
0.000177395
0.000177405
0.000177396
0.000177405
0.000177393
0.000177386
0.000177397
0.000177385
0.000177393
0.000177398
0.000177381
0.000199491
0.000200219
0.000201164
0.000202534
0.000204536
0.000207429
0.000212104
0.000225088
0.000261243
0.000304663
0.000320296
0.000297952
0.000243685
0.000199808
0.000184232
0.000186178
0.00019159
0.000195408
0.000197545
0.000198726
0.00019811
0.00019837
0.000199035
0.000200078
0.000201631
0.000203996
0.000208097
0.00021896
0.000315012
0.00065159
0.00099185
0.000964577
0.000702224
0.000456102
0.000316048
0.000250306
0.000219693
0.000205875
0.000200331
0.000198477
0.00019457
0.000194965
0.000195547
0.000196313
0.00019741
0.000198933
0.000201612
0.000208491
0.000294092
0.000868558
0.0013007
0.00105033
0.000630303
0.000376286
0.000266474
0.000220906
0.000202742
0.000196453
0.000194687
0.00019439
0.000192643
0.00019306
0.000193598
0.000194239
0.000195126
0.000196226
0.000198206
0.000201343
0.000227038
0.000692879
0.00107458
0.000743263
0.000429476
0.000282201
0.000222161
0.000200421
0.000193887
0.000192326
0.000192141
0.000192322
0.000191783
0.000192166
0.000192625
0.000193145
0.000193841
0.000194654
0.00019614
0.000198296
0.000221183
0.00113329
0.00179526
0.00109173
0.000535131
0.000309299
0.000224884
0.000198624
0.000192323
0.000191209
0.000191213
0.000191456
0.000191295
0.000191629
0.000192015
0.000192442
0.000192991
0.000193613
0.000194705
0.00019621
0.000211079
0.00139795
0.00177432
0.000863204
0.000409618
0.00025235
0.000204181
0.000192768
0.000190728
0.000190562
0.000190739
0.000190996
0.000191037
0.000191325
0.000191648
0.000192
0.000192436
0.000192921
0.000193729
0.000194837
0.000206223
0.00165533
0.00244135
0.00111574
0.000471363
0.000260162
0.000203151
0.000192006
0.000190408
0.000190356
0.000190539
0.000190774
0.000190879
0.000191122
0.000191391
0.00019168
0.000192024
0.000192406
0.00019299
0.000193862
0.000197521
0.000532645
0.00116727
0.000616016
0.000323775
0.000219045
0.00019456
0.000190589
0.000190174
0.00019027
0.000190448
0.000190654
0.000190782
0.000190987
0.000191209
0.000191446
0.000191718
0.000192018
0.000192427
0.000193074
0.000195306
0.000575594
0.00110838
0.000513505
0.000275048
0.00020513
0.000192
0.000190255
0.000190149
0.000190261
0.000190416
0.000190591
0.000190715
0.000190886
0.00019107
0.000191262
0.000191478
0.000191711
0.000192004
0.000192471
0.000193785
0.000620707
0.00123408
0.00051422
0.000265212
0.000201943
0.000191496
0.000190246
0.000190185
0.00019028
0.000190409
0.000190555
0.000190665
0.000190807
0.000190959
0.000191116
0.000191287
0.000191464
0.000191673
0.000191994
0.000192704
0.000675537
0.00122208
0.000488954
0.00025379
0.000199484
0.000191217
0.000190278
0.000190232
0.000190308
0.000190412
0.000190533
0.000190625
0.000190742
0.000190868
0.000190995
0.000191131
0.000191264
0.000191415
0.00019162
0.000192039
0.000714634
0.00132261
0.000493088
0.000250139
0.000198578
0.00019115
0.000190327
0.000190277
0.000190334
0.000190416
0.000190515
0.00019059
0.000190687
0.00019079
0.000190893
0.000191002
0.0001911
0.000191208
0.000191324
0.000191515
0.000746477
0.00126331
0.000467303
0.000244949
0.000197866
0.000191125
0.000190371
0.000190315
0.000190355
0.00019042
0.0001905
0.000190558
0.000190638
0.000190723
0.000190808
0.000190894
0.000190968
0.000191045
0.000191108
0.000191294
0.000817556
0.00131725
0.000474202
0.000245
0.000197808
0.000191148
0.000190406
0.000190343
0.00019037
0.00019042
0.000190484
0.000190529
0.000190595
0.000190665
0.000190734
0.000190803
0.000190858
0.000190911
0.000190934
0.000191031
0.000815483
0.00109623
0.00042178
0.00023486
0.000196419
0.000191026
0.000190419
0.000190361
0.000190379
0.000190417
0.000190468
0.000190501
0.000190556
0.000190614
0.00019067
0.000190726
0.000190768
0.000190805
0.000190812
0.000190216
0.000382119
0.000413709
0.000272899
0.000206454
0.000192563
0.000190623
0.000190394
0.000190368
0.000190381
0.000190411
0.000190452
0.000190475
0.00019052
0.000190568
0.000190615
0.00019066
0.000190693
0.00019072
0.000190712
0.000190701
0.000198548
0.000191802
0.000191005
0.00019075
0.000190523
0.000190419
0.000190382
0.000190371
0.00019038
0.000190402
0.000190435
0.000190451
0.000190488
0.000190528
0.000190566
0.000190604
0.00019063
0.000190652
0.000190645
0.000190641
0.000190675
0.000190596
0.000190585
0.000190516
0.000190457
0.000190406
0.00019038
0.00019037
0.000190375
0.000190392
0.000190418
0.000190428
0.000190458
0.000190491
0.000190523
0.000190555
0.000190576
0.000190594
0.000190586
0.000190581
0.000190531
0.000190531
0.000190534
0.000190484
0.00019044
0.000190399
0.000190376
0.000190366
0.000190369
0.000190381
0.000190402
0.000190407
0.000190432
0.000190459
0.000190485
0.000190512
0.00019053
0.000190545
0.000190539
0.000190536
0.000190498
0.000190494
0.000190489
0.000190454
0.000190421
0.000190389
0.000190369
0.000190359
0.00019036
0.000190369
0.000190385
0.000190387
0.000190407
0.00019043
0.000190452
0.000190474
0.000190489
0.000190503
0.000190498
0.000190497
0.000190469
0.000190467
0.00019046
0.000190432
0.000190405
0.000190377
0.00019036
0.000190351
0.00019035
0.000190357
0.00019037
0.000190369
0.000190386
0.000190404
0.000190423
0.000190442
0.000190454
0.000190465
0.000190462
0.000190463
0.000190442
0.000190439
0.000190431
0.000190409
0.000190387
0.000190366
0.00019035
0.000190341
0.00019034
0.000190345
0.000190355
0.000190352
0.000190366
0.000190381
0.000190397
0.000190412
0.000190423
0.000190433
0.000190432
0.000190432
0.000190417
0.000190415
0.000190407
0.000190389
0.000190371
0.000190352
0.00019034
0.000190332
0.00019033
0.000190333
0.000190341
0.000190337
0.000190348
0.000190361
0.000190374
0.000190387
0.000190397
0.000190406
0.000190405
0.000190407
0.000190394
0.000190393
0.000190385
0.000190371
0.000190357
0.000190341
0.000190329
0.000190322
0.000190319
0.000190322
0.000190327
0.000190323
0.000190332
0.000190343
0.000190354
0.000190365
0.000190373
0.000190381
0.000190381
0.000190383
0.000190374
0.000190373
0.000190366
0.000190354
0.000190342
0.000190329
0.000190319
0.000190312
0.00019031
0.000190311
0.000190315
0.00019031
0.000190318
0.000190327
0.000190336
0.000190346
0.000190353
0.000190359
0.00019036
0.000190362
0.000190355
0.000190354
0.000190349
0.00019034
0.000190329
0.000190318
0.000190309
0.000190303
0.0001903
0.000190301
0.000190304
0.000190299
0.000190305
0.000190312
0.00019032
0.000190328
0.000190335
0.000190341
0.000190341
0.000190344
0.000190339
0.000190338
0.000190333
0.000190326
0.000190317
0.000190307
0.0001903
0.000190294
0.000190291
0.000190291
0.000190294
0.000190288
0.000190293
0.0001903
0.000190306
0.000190313
0.000190319
0.000190324
0.000190325
0.000190328
0.000190324
0.000190324
0.000190319
0.000190313
0.000190306
0.000190298
0.000190291
0.000190286
0.000190283
0.000190283
0.000190285
0.000190279
0.000190283
0.000190289
0.000190294
0.0001903
0.000190305
0.00019031
0.000190311
0.000190313
0.000190311
0.000190311
0.000190307
0.000190302
0.000190296
0.000190289
0.000190283
0.000190278
0.000190276
0.000190275
0.000190276
0.000190271
0.000190274
0.000190279
0.000190283
0.000190289
0.000190293
0.000190297
0.000190299
0.000190301
0.0001903
0.000190299
0.000190297
0.000190292
0.000190287
0.000190281
0.000190276
0.000190272
0.000190269
0.000190268
0.000190269
0.000190264
0.000190267
0.00019027
0.000190274
0.000190279
0.000190282
0.000190286
0.000190288
0.00019029
0.000190289
0.000190289
0.000190287
0.000190283
0.000190279
0.000190274
0.000190269
0.000190265
0.000190263
0.000190262
0.000190262
0.000190258
0.00019026
0.000190263
0.000190266
0.00019027
0.000190274
0.000190277
0.000190279
0.000190281
0.000190281
0.000190281
0.000190279
0.000190276
0.000190272
0.000190267
0.000190263
0.00019026
0.000190258
0.000190256
0.000190256
0.000190252
0.000190254
0.000190256
0.000190259
0.000190263
0.000190266
0.000190269
0.000190271
0.000190273
0.000190273
0.000190273
0.000190272
0.000190269
0.000190266
0.000190262
0.000190258
0.000190255
0.000190253
0.000190252
0.000190251
0.000190248
0.000190249
0.000190251
0.000190254
0.000190257
0.000190259
0.000190262
0.000190264
0.000190266
0.000190267
0.000190267
0.000190266
0.000190264
0.000190261
0.000190257
0.000190254
0.000190251
0.000190249
0.000190248
0.000190247
0.000190244
0.000190245
0.000190247
0.000190249
0.000190252
0.000190254
0.000190257
0.000190259
0.000190261
0.000190261
0.000190261
0.000190261
0.000190259
0.000190256
0.000190253
0.00019025
0.000190247
0.000190245
0.000190244
0.000190244
0.000190241
0.000190242
0.000190243
0.000190245
0.000190248
0.00019025
0.000190252
0.000190254
0.000190256
0.000190257
0.000190257
0.000190257
0.000190255
0.000190253
0.00019025
0.000190247
0.000190245
0.000190243
0.000190241
0.000190241
0.000190238
0.000190239
0.00019024
0.000190242
0.000190244
0.000190246
0.000190249
0.000190251
0.000190252
0.000190253
0.000190254
0.000190253
0.000190252
0.00019025
0.000190247
0.000190245
0.000190242
0.00019024
0.000190239
0.000190238
0.000190237
0.000190237
0.000190238
0.00019024
0.000190242
0.000190244
0.000190246
0.000190249
0.00019025
0.000190251
0.000190252
0.000190251
0.00019025
0.000190248
0.000190246
0.000190243
0.000190241
0.000190239
0.000190238
0.000190237
0.000190235
0.000190236
0.000190236
0.000190238
0.00019024
0.000190242
0.000190244
0.000190246
0.000190248
0.000190249
0.000190249
0.000190249
0.000190248
0.000190247
0.000190244
0.000190242
0.00019024
0.000190238
0.000190236
0.000190236
0.000190266
0.000190253
0.000190266
0.000190272
0.00019026
0.000190272
0.000190279
0.000190267
0.000190278
0.000190269
0.00019028
0.000190269
0.000190279
0.000190266
0.000190259
0.000190271
0.000190258
0.000190268
0.000190272
0.000190254
0.000214201
0.000214702
0.000215663
0.000217206
0.000219522
0.000222911
0.000228608
0.000246508
0.000296111
0.000350745
0.000368702
0.000346913
0.000282982
0.000233413
0.000215877
0.000214157
0.000214752
0.000214641
0.000214275
0.000214082
0.000212172
0.000212548
0.00021335
0.000214559
0.000216339
0.000219074
0.00022395
0.000238082
0.000358155
0.000803209
0.00123204
0.00114669
0.000779241
0.000483103
0.000332948
0.000265182
0.000233635
0.000219601
0.000214146
0.000212419
0.000208732
0.000209211
0.000209884
0.00021076
0.000212
0.000213748
0.000216812
0.00022519
0.000328871
0.00108866
0.00163647
0.00122846
0.000685183
0.000398426
0.000281974
0.000234513
0.000216224
0.000210212
0.000208647
0.000208466
0.000206882
0.000207361
0.000207963
0.000208679
0.00020966
0.0002109
0.000213114
0.000216772
0.000250115
0.000825402
0.00133804
0.000852492
0.000464344
0.000299262
0.000235504
0.000213787
0.000207675
0.000206336
0.000206253
0.000206501
0.000206049
0.000206479
0.000206986
0.000207563
0.000208325
0.000209236
0.000210876
0.000213352
0.000240743
0.0013466
0.0022103
0.00120473
0.000557301
0.000318709
0.000235205
0.000211326
0.000206075
0.000205275
0.00020538
0.000205677
0.000205577
0.000205949
0.000206373
0.000206844
0.000207442
0.000208132
0.000209328
0.000211031
0.00022748
0.00166589
0.00217062
0.000945038
0.000426279
0.000261784
0.000216118
0.000206318
0.000204758
0.000204718
0.000204947
0.000205242
0.000205326
0.000205643
0.000205997
0.000206383
0.000206857
0.000207391
0.000208273
0.000209506
0.000221798
0.00203847
0.00304074
0.00123072
0.000490038
0.000268787
0.000215123
0.000205687
0.000204502
0.000204545
0.000204768
0.000205033
0.000205171
0.000205439
0.000205733
0.000206048
0.000206423
0.000206839
0.000207475
0.000208435
0.000212522
0.000665855
0.00156526
0.000713557
0.000344326
0.00023088
0.000207896
0.000204608
0.000204346
0.000204486
0.000204691
0.000204921
0.000205075
0.000205299
0.000205542
0.0002058
0.000206096
0.000206421
0.000206867
0.000207563
0.000210037
0.000721317
0.00148053
0.00060153
0.000295422
0.000218418
0.000205856
0.000204395
0.000204354
0.000204493
0.000204669
0.000204864
0.000205007
0.000205194
0.000205395
0.000205605
0.000205839
0.000206089
0.000206408
0.000206901
0.000208328
0.000780466
0.00164412
0.000601182
0.000284785
0.000215479
0.000205476
0.000204424
0.000204408
0.000204523
0.000204668
0.000204831
0.000204956
0.000205111
0.000205277
0.000205448
0.000205633
0.000205823
0.000206049
0.000206381
0.000207129
0.000854093
0.00161596
0.000566566
0.000271711
0.000213093
0.000205265
0.00020448
0.000204468
0.000204558
0.000204676
0.00020481
0.000204914
0.000205043
0.000205179
0.000205317
0.000205464
0.000205606
0.000205768
0.000205975
0.000206387
0.000911396
0.00173498
0.000566592
0.000267091
0.000212193
0.000205232
0.000204545
0.000204522
0.000204591
0.000204684
0.000204793
0.000204878
0.000204984
0.000205096
0.000205208
0.000205325
0.00020543
0.000205543
0.000205658
0.000205808
0.00095371
0.00166073
0.000537662
0.000261977
0.000211596
0.000205239
0.000204602
0.000204567
0.000204617
0.00020469
0.000204779
0.000204845
0.000204932
0.000205024
0.000205116
0.000205208
0.000205286
0.000205367
0.000205426
0.000205548
0.00104589
0.00171319
0.000541775
0.000261496
0.0002115
0.00020527
0.000204644
0.0002046
0.000204635
0.000204692
0.000204763
0.000204814
0.000204886
0.000204962
0.000205036
0.000205111
0.000205168
0.000205223
0.000205241
0.000205263
0.00105015
0.00141587
0.000478476
0.000250717
0.000210208
0.000205179
0.000204665
0.000204623
0.000204646
0.00020469
0.000204747
0.000204785
0.000204844
0.000204907
0.000204968
0.000205028
0.000205072
0.00020511
0.000205112
0.000204401
0.000461739
0.000507056
0.000301317
0.000221042
0.000206643
0.00020485
0.000204653
0.000204634
0.000204651
0.000204685
0.000204731
0.000204758
0.000204806
0.000204858
0.000204908
0.000204957
0.000204991
0.000205019
0.000205007
0.000204995
0.000214025
0.000206022
0.000205294
0.000205021
0.000204788
0.000204684
0.000204648
0.000204639
0.000204651
0.000204677
0.000204713
0.000204732
0.000204772
0.000204815
0.000204856
0.000204897
0.000204924
0.000204947
0.000204936
0.00020493
0.000204959
0.000204885
0.000204871
0.000204792
0.000204728
0.000204675
0.000204649
0.00020464
0.000204648
0.000204667
0.000204696
0.000204708
0.000204741
0.000204777
0.000204811
0.000204844
0.000204866
0.000204885
0.000204874
0.000204868
0.000204808
0.000204816
0.000204815
0.00020476
0.000204713
0.00020467
0.000204646
0.000204637
0.000204641
0.000204656
0.000204679
0.000204685
0.000204713
0.000204742
0.000204771
0.000204799
0.000204817
0.000204832
0.000204824
0.000204821
0.000204776
0.000204777
0.00020477
0.00020473
0.000204694
0.00020466
0.00020464
0.000204631
0.000204633
0.000204644
0.000204662
0.000204665
0.000204687
0.000204712
0.000204736
0.000204759
0.000204774
0.000204788
0.000204782
0.00020478
0.000204747
0.000204748
0.000204738
0.000204708
0.000204678
0.00020465
0.000204632
0.000204623
0.000204623
0.000204631
0.000204645
0.000204646
0.000204664
0.000204684
0.000204704
0.000204724
0.000204737
0.000204748
0.000204744
0.000204744
0.000204719
0.000204719
0.000204708
0.000204684
0.000204661
0.000204638
0.000204623
0.000204613
0.000204613
0.000204619
0.00020463
0.000204628
0.000204643
0.00020466
0.000204677
0.000204693
0.000204704
0.000204715
0.000204712
0.000204712
0.000204694
0.000204694
0.000204684
0.000204665
0.000204644
0.000204625
0.000204612
0.000204604
0.000204603
0.000204607
0.000204615
0.000204612
0.000204624
0.000204639
0.000204652
0.000204667
0.000204676
0.000204685
0.000204684
0.000204685
0.000204671
0.00020467
0.000204661
0.000204646
0.00020463
0.000204614
0.000204602
0.000204594
0.000204592
0.000204595
0.000204602
0.000204597
0.000204608
0.000204619
0.000204631
0.000204643
0.000204651
0.000204659
0.000204659
0.00020466
0.00020465
0.000204649
0.000204641
0.000204629
0.000204615
0.000204602
0.000204591
0.000204585
0.000204582
0.000204584
0.000204589
0.000204584
0.000204593
0.000204602
0.000204612
0.000204622
0.00020463
0.000204637
0.000204637
0.000204638
0.000204631
0.00020463
0.000204624
0.000204614
0.000204602
0.00020459
0.000204581
0.000204575
0.000204573
0.000204574
0.000204578
0.000204572
0.000204579
0.000204587
0.000204596
0.000204604
0.000204611
0.000204617
0.000204617
0.000204619
0.000204614
0.000204613
0.000204607
0.000204599
0.00020459
0.00020458
0.000204572
0.000204566
0.000204564
0.000204564
0.000204567
0.000204562
0.000204567
0.000204574
0.000204581
0.000204588
0.000204594
0.000204599
0.000204601
0.000204603
0.000204599
0.000204598
0.000204593
0.000204587
0.000204578
0.00020457
0.000204563
0.000204558
0.000204555
0.000204555
0.000204557
0.000204552
0.000204557
0.000204562
0.000204568
0.000204575
0.00020458
0.000204584
0.000204586
0.000204588
0.000204585
0.000204585
0.000204581
0.000204575
0.000204568
0.000204561
0.000204555
0.00020455
0.000204548
0.000204547
0.000204549
0.000204544
0.000204547
0.000204552
0.000204557
0.000204563
0.000204567
0.000204571
0.000204573
0.000204575
0.000204573
0.000204573
0.00020457
0.000204565
0.000204559
0.000204553
0.000204547
0.000204543
0.000204541
0.00020454
0.000204541
0.000204536
0.000204539
0.000204543
0.000204547
0.000204552
0.000204556
0.00020456
0.000204562
0.000204564
0.000204563
0.000204562
0.00020456
0.000204556
0.000204551
0.000204546
0.000204541
0.000204537
0.000204534
0.000204534
0.000204534
0.00020453
0.000204532
0.000204535
0.000204539
0.000204543
0.000204547
0.00020455
0.000204552
0.000204554
0.000204553
0.000204553
0.000204551
0.000204548
0.000204544
0.000204539
0.000204535
0.000204531
0.000204529
0.000204528
0.000204528
0.000204524
0.000204526
0.000204529
0.000204532
0.000204536
0.000204539
0.000204542
0.000204544
0.000204546
0.000204545
0.000204546
0.000204544
0.000204541
0.000204538
0.000204533
0.00020453
0.000204526
0.000204524
0.000204523
0.000204523
0.000204519
0.000204521
0.000204523
0.000204526
0.000204529
0.000204532
0.000204535
0.000204537
0.000204539
0.000204539
0.000204539
0.000204538
0.000204535
0.000204532
0.000204529
0.000204525
0.000204522
0.00020452
0.000204519
0.000204519
0.000204515
0.000204516
0.000204518
0.000204521
0.000204524
0.000204526
0.000204529
0.000204531
0.000204533
0.000204533
0.000204533
0.000204532
0.00020453
0.000204528
0.000204524
0.000204521
0.000204518
0.000204516
0.000204515
0.000204515
0.000204512
0.000204513
0.000204515
0.000204517
0.00020452
0.000204522
0.000204524
0.000204526
0.000204528
0.000204529
0.000204529
0.000204528
0.000204527
0.000204524
0.000204521
0.000204518
0.000204516
0.000204514
0.000204512
0.000204512
0.000204509
0.00020451
0.000204511
0.000204513
0.000204516
0.000204518
0.00020452
0.000204523
0.000204524
0.000204525
0.000204525
0.000204525
0.000204523
0.000204521
0.000204518
0.000204516
0.000204513
0.000204511
0.00020451
0.000204509
0.000204508
0.000204509
0.00020451
0.000204511
0.000204514
0.000204515
0.000204518
0.00020452
0.000204522
0.000204523
0.000204523
0.000204523
0.000204522
0.00020452
0.000204517
0.000204514
0.000204512
0.00020451
0.000204509
0.000204508
0.000204506
0.000204507
0.000204508
0.000204509
0.000204512
0.000204513
0.000204516
0.000204518
0.000204519
0.000204521
0.000204521
0.000204521
0.000204519
0.000204518
0.000204515
0.000204513
0.00020451
0.000204508
0.000204507
0.000204506
0.000204537
0.000204524
0.000204538
0.000204544
0.000204531
0.000204543
0.000204551
0.000204538
0.00020455
0.00020454
0.000204552
0.00020454
0.00020455
0.000204537
0.000204529
0.000204542
0.000204528
0.000204539
0.000204543
0.000204525
0.000230236
0.000230664
0.000231741
0.000233529
0.000236241
0.000240241
0.000247273
0.000272388
0.000341806
0.000411985
0.000434998
0.000421848
0.000341494
0.000279346
0.000254443
0.000245083
0.000239017
0.000234549
0.000231826
0.000230534
0.000227796
0.000228317
0.000229277
0.000230673
0.000232717
0.000235892
0.000241733
0.000260306
0.000412463
0.00101637
0.00157078
0.00138673
0.000862626
0.000509298
0.000350311
0.000280565
0.000248349
0.000234478
0.000229355
0.000227872
0.000224484
0.000225057
0.000225832
0.000226832
0.000228237
0.000230249
0.000233769
0.000244025
0.000371333
0.00139975
0.00211748
0.00144853
0.000742386
0.000420779
0.000297647
0.00024884
0.000230953
0.000225451
0.000224161
0.00022412
0.000222717
0.000223264
0.000223937
0.000224737
0.000225827
0.000227231
0.000229717
0.000234011
0.000277585
0.00100678
0.00173228
0.000989269
0.000502418
0.000316425
0.000249547
0.00022847
0.000222986
0.000221916
0.000221949
0.000222271
0.000221914
0.000222395
0.000222955
0.000223595
0.000224433
0.000225458
0.000227274
0.000230138
0.000263104
0.00163527
0.00281521
0.00133844
0.000580252
0.000327725
0.000246611
0.000225614
0.00022144
0.000220936
0.000221137
0.000221491
0.000221459
0.000221871
0.000222338
0.000222857
0.000223511
0.00022428
0.000225594
0.000227536
0.000245764
0.00202543
0.00275246
0.00104236
0.0004424
0.00027165
0.000229568
0.000221496
0.00022039
0.000220466
0.000220747
0.000221084
0.000221214
0.000221564
0.000221952
0.000222376
0.000222893
0.000223482
0.000224447
0.00022583
0.000239121
0.00256267
0.00390859
0.00136825
0.000507521
0.000277639
0.000228632
0.000220999
0.000220199
0.000220328
0.000220591
0.000220889
0.000221063
0.000221357
0.000221679
0.000222024
0.000222432
0.000222888
0.000223582
0.000224647
0.000229211
0.000853318
0.00216935
0.000832621
0.000364166
0.000243613
0.000222809
0.000220234
0.000220114
0.000220296
0.00022053
0.000220787
0.000220967
0.000221214
0.000221479
0.00022176
0.000222082
0.000222435
0.000222922
0.000223677
0.000226412
0.000925766
0.00204298
0.000707797
0.000315496
0.000232824
0.000221279
0.000220129
0.000220154
0.00022032
0.000220518
0.000220735
0.000220899
0.000221104
0.000221323
0.000221552
0.000221806
0.000222076
0.000222424
0.000222945
0.000224488
0.00100484
0.00226083
0.000705104
0.000304098
0.000230209
0.000221026
0.000220197
0.000220226
0.000220362
0.000220525
0.000220706
0.000220848
0.000221017
0.000221198
0.000221383
0.000221584
0.000221788
0.000222033
0.000222378
0.000223154
0.00110578
0.00220251
0.000657605
0.000289518
0.000227996
0.000220895
0.000220279
0.0002203
0.000220407
0.000220539
0.000220687
0.000220805
0.000220945
0.000221093
0.000221243
0.000221402
0.000221553
0.000221727
0.000221936
0.000222323
0.00119225
0.00234071
0.000651381
0.000283985
0.000227155
0.000220901
0.000220361
0.000220365
0.000220446
0.000220551
0.000220672
0.000220767
0.000220882
0.000221005
0.000221126
0.000221252
0.000221363
0.000221483
0.000221596
0.000221683
0.00125004
0.00224793
0.000619382
0.000279141
0.000226696
0.000220942
0.00022043
0.000220418
0.000220477
0.00022056
0.000220658
0.000220732
0.000220827
0.000220928
0.000221026
0.000221126
0.000221208
0.000221292
0.000221346
0.000221377
0.0013718
0.00228895
0.000619108
0.000278098
0.000226578
0.000220985
0.000220482
0.000220457
0.0002205
0.000220564
0.000220643
0.0002207
0.000220778
0.000220861
0.000220941
0.000221021
0.000221081
0.000221137
0.000221149
0.000221069
0.00138864
0.00187723
0.000542443
0.000266922
0.000225428
0.000220927
0.000220512
0.000220484
0.000220514
0.000220564
0.000220627
0.00022067
0.000220734
0.000220802
0.000220868
0.000220932
0.000220978
0.000221018
0.000221012
0.000220161
0.000568569
0.0006333
0.000331816
0.000236689
0.000222265
0.000220675
0.000220512
0.000220499
0.000220521
0.00022056
0.00022061
0.000220641
0.000220694
0.00022075
0.000220804
0.000220856
0.000220892
0.00022092
0.000220903
0.00022089
0.000231116
0.000221762
0.00022118
0.000220886
0.00022065
0.000220549
0.000220515
0.000220508
0.000220523
0.000220552
0.000220593
0.000220615
0.000220658
0.000220705
0.000220749
0.000220792
0.00022082
0.000220843
0.000220828
0.00022082
0.00022084
0.000220777
0.000220757
0.000220668
0.0002206
0.000220544
0.000220518
0.00022051
0.00022052
0.000220543
0.000220575
0.000220589
0.000220625
0.000220664
0.0002207
0.000220736
0.000220759
0.000220777
0.000220763
0.000220756
0.000220686
0.000220705
0.000220697
0.000220636
0.000220585
0.000220541
0.000220517
0.000220508
0.000220515
0.000220532
0.000220557
0.000220566
0.000220595
0.000220627
0.000220658
0.000220687
0.000220706
0.000220722
0.000220711
0.000220708
0.000220655
0.000220663
0.000220651
0.000220608
0.000220568
0.000220533
0.000220512
0.000220503
0.000220507
0.00022052
0.00022054
0.000220544
0.000220569
0.000220595
0.000220621
0.000220645
0.000220661
0.000220675
0.000220666
0.000220664
0.000220626
0.000220631
0.000220618
0.000220584
0.000220552
0.000220523
0.000220505
0.000220496
0.000220498
0.000220507
0.000220523
0.000220525
0.000220544
0.000220567
0.000220588
0.000220608
0.000220621
0.000220633
0.000220627
0.000220627
0.000220598
0.0002206
0.000220587
0.000220561
0.000220536
0.000220512
0.000220496
0.000220487
0.000220488
0.000220495
0.000220507
0.000220506
0.000220523
0.000220541
0.000220558
0.000220576
0.000220588
0.000220597
0.000220594
0.000220593
0.000220572
0.000220574
0.000220562
0.000220541
0.000220519
0.000220499
0.000220486
0.000220478
0.000220477
0.000220482
0.000220492
0.000220489
0.000220503
0.000220518
0.000220533
0.000220548
0.000220558
0.000220567
0.000220565
0.000220565
0.000220549
0.000220549
0.000220539
0.000220523
0.000220505
0.000220488
0.000220476
0.000220468
0.000220467
0.00022047
0.000220478
0.000220474
0.000220485
0.000220498
0.00022051
0.000220523
0.000220532
0.000220539
0.000220538
0.00022054
0.000220528
0.000220527
0.000220518
0.000220505
0.00022049
0.000220476
0.000220465
0.000220459
0.000220457
0.000220459
0.000220465
0.00022046
0.000220469
0.00022048
0.00022049
0.000220501
0.000220509
0.000220516
0.000220516
0.000220517
0.000220508
0.000220507
0.0002205
0.000220489
0.000220477
0.000220464
0.000220455
0.000220449
0.000220447
0.000220448
0.000220453
0.000220448
0.000220455
0.000220464
0.000220473
0.000220482
0.000220489
0.000220495
0.000220495
0.000220497
0.000220491
0.00022049
0.000220483
0.000220474
0.000220464
0.000220454
0.000220445
0.00022044
0.000220438
0.000220438
0.000220442
0.000220436
0.000220443
0.00022045
0.000220458
0.000220465
0.000220471
0.000220477
0.000220477
0.000220479
0.000220475
0.000220474
0.000220469
0.000220461
0.000220453
0.000220444
0.000220437
0.000220431
0.000220429
0.000220429
0.000220432
0.000220426
0.000220432
0.000220438
0.000220444
0.000220451
0.000220456
0.000220461
0.000220462
0.000220464
0.00022046
0.00022046
0.000220456
0.00022045
0.000220442
0.000220435
0.000220428
0.000220424
0.000220421
0.000220421
0.000220423
0.000220418
0.000220422
0.000220427
0.000220432
0.000220438
0.000220443
0.000220447
0.000220449
0.00022045
0.000220448
0.000220448
0.000220444
0.000220439
0.000220433
0.000220426
0.000220421
0.000220416
0.000220414
0.000220414
0.000220415
0.00022041
0.000220413
0.000220418
0.000220422
0.000220427
0.000220431
0.000220435
0.000220437
0.000220439
0.000220437
0.000220437
0.000220434
0.00022043
0.000220424
0.000220419
0.000220414
0.00022041
0.000220408
0.000220407
0.000220408
0.000220403
0.000220406
0.000220409
0.000220413
0.000220418
0.000220421
0.000220425
0.000220427
0.000220429
0.000220428
0.000220428
0.000220425
0.000220422
0.000220417
0.000220412
0.000220408
0.000220404
0.000220402
0.000220401
0.000220401
0.000220397
0.000220399
0.000220402
0.000220406
0.00022041
0.000220413
0.000220416
0.000220418
0.00022042
0.00022042
0.00022042
0.000220418
0.000220415
0.000220411
0.000220406
0.000220402
0.000220399
0.000220397
0.000220396
0.000220396
0.000220392
0.000220394
0.000220397
0.0002204
0.000220403
0.000220406
0.000220409
0.000220411
0.000220413
0.000220413
0.000220413
0.000220411
0.000220409
0.000220405
0.000220401
0.000220398
0.000220395
0.000220393
0.000220392
0.000220391
0.000220388
0.00022039
0.000220392
0.000220394
0.000220397
0.0002204
0.000220403
0.000220405
0.000220407
0.000220407
0.000220407
0.000220406
0.000220404
0.000220401
0.000220397
0.000220394
0.000220391
0.000220389
0.000220388
0.000220387
0.000220385
0.000220386
0.000220388
0.00022039
0.000220393
0.000220395
0.000220398
0.0002204
0.000220402
0.000220402
0.000220403
0.000220402
0.0002204
0.000220397
0.000220394
0.000220391
0.000220388
0.000220386
0.000220385
0.000220385
0.000220382
0.000220383
0.000220384
0.000220386
0.000220389
0.000220391
0.000220394
0.000220396
0.000220398
0.000220398
0.000220399
0.000220398
0.000220396
0.000220394
0.000220391
0.000220388
0.000220386
0.000220383
0.000220382
0.000220382
0.000220381
0.000220381
0.000220383
0.000220384
0.000220387
0.000220389
0.000220391
0.000220394
0.000220395
0.000220396
0.000220397
0.000220396
0.000220395
0.000220392
0.00022039
0.000220387
0.000220384
0.000220382
0.000220381
0.000220381
0.000220379
0.00022038
0.000220381
0.000220382
0.000220385
0.000220386
0.000220389
0.000220391
0.000220393
0.000220394
0.000220394
0.000220394
0.000220392
0.00022039
0.000220388
0.000220385
0.000220383
0.000220381
0.00022038
0.000220379
0.00022041
0.000220396
0.000220411
0.000220417
0.000220403
0.000220417
0.000220424
0.000220411
0.000220424
0.000220413
0.000220425
0.000220413
0.000220424
0.000220409
0.000220401
0.000220415
0.0002204
0.000220411
0.000220416
0.000220397
0.000247884
0.000248381
0.000249661
0.000251766
0.00025497
0.000259723
0.00026852
0.000304377
0.000404083
0.000497423
0.000532288
0.000546984
0.000430737
0.00034074
0.000299665
0.00027808
0.00026388
0.000255049
0.000250374
0.000248355
0.000245229
0.000245917
0.000247052
0.00024866
0.000251015
0.000254713
0.000261773
0.00028644
0.000483075
0.00132953
0.00207373
0.00171576
0.000950764
0.000534424
0.000367927
0.00029635
0.000264015
0.000250794
0.000246245
0.000245099
0.000242066
0.000242741
0.000243629
0.000244769
0.000246366
0.000248688
0.000252754
0.000265367
0.000424635
0.00185715
0.00284199
0.00172406
0.000801219
0.000442699
0.000313227
0.000264074
0.000247221
0.000242443
0.000241479
0.000241594
0.000240388
0.000241007
0.000241759
0.000242653
0.000243867
0.000245464
0.00024827
0.000253342
0.000310682
0.00126641
0.00235461
0.00116111
0.000542387
0.000333006
0.000264448
0.000244761
0.000240085
0.000239315
0.00023947
0.000239871
0.000239615
0.000240151
0.00024077
0.00024148
0.000242405
0.000243562
0.000245583
0.000248918
0.000288756
0.00204333
0.00374106
0.00149572
0.000602023
0.000335955
0.000259446
0.000241784
0.000238667
0.000238434
0.000238726
0.000239139
0.000239179
0.000239636
0.000240148
0.000240721
0.000241438
0.000242298
0.000243748
0.000245979
0.000266189
0.00252697
0.00365007
0.001156
0.000455992
0.000282088
0.000244856
0.000238559
0.000237864
0.000238047
0.00023838
0.000238762
0.000238942
0.000239327
0.000239752
0.000240217
0.000240782
0.000241435
0.000242496
0.000244058
0.000258424
0.00330346
0.00522952
0.00153291
0.000521521
0.000286889
0.000244006
0.000238195
0.000237738
0.000237946
0.000238249
0.000238583
0.000238795
0.000239119
0.000239469
0.000239847
0.000240291
0.000240792
0.000241553
0.000242743
0.000247831
0.00112552
0.00312828
0.000976539
0.000381807
0.000257488
0.000239578
0.000237709
0.000237717
0.000237941
0.000238206
0.000238491
0.000238701
0.000238971
0.00023926
0.000239567
0.000239917
0.000240302
0.000240835
0.000241659
0.000244669
0.00122155
0.00293148
0.000833819
0.000334201
0.000248579
0.000238527
0.000237702
0.000237789
0.000237984
0.000238206
0.000238446
0.000238634
0.000238858
0.000239096
0.000239344
0.00023962
0.000239912
0.000240291
0.000240848
0.000242497
0.00132977
0.00322952
0.000826716
0.00032223
0.000246372
0.000238402
0.000237808
0.000237881
0.000238039
0.000238222
0.000238421
0.000238581
0.000238767
0.000238963
0.000239163
0.000239381
0.0002396
0.000239866
0.000240226
0.000241008
0.00147169
0.00311352
0.000761683
0.000306552
0.000244446
0.000238358
0.000237917
0.00023797
0.000238094
0.000238242
0.000238406
0.000238538
0.00023869
0.000238851
0.000239013
0.000239185
0.000239346
0.000239533
0.000239745
0.000240077
0.00160668
0.003266
0.000746299
0.000300293
0.000243721
0.000238408
0.000238017
0.000238047
0.000238141
0.000238259
0.000238393
0.000238499
0.000238625
0.000238757
0.000238888
0.000239023
0.000239141
0.000239269
0.000239378
0.000239369
0.00168831
0.00315193
0.000711815
0.000295973
0.000243416
0.000238482
0.0002381
0.000238109
0.000238179
0.000238272
0.00023838
0.000238463
0.000238567
0.000238675
0.000238781
0.000238888
0.000238974
0.000239062
0.000239109
0.00023901
0.00185258
0.00315848
0.000704956
0.000294392
0.000243298
0.00023854
0.000238161
0.000238155
0.000238206
0.000238278
0.000238365
0.00023843
0.000238515
0.000238604
0.00023869
0.000238775
0.000238838
0.000238896
0.0002389
0.000238676
0.00189425
0.00256822
0.000612285
0.000283214
0.000242336
0.000238516
0.0002382
0.000238187
0.000238223
0.00023828
0.00023835
0.000238398
0.000238468
0.000238542
0.000238612
0.00023868
0.000238728
0.000238768
0.000238756
0.000237731
0.000715361
0.000808519
0.000363517
0.000253508
0.000239679
0.000238341
0.000238213
0.000238207
0.000238233
0.000238277
0.000238333
0.000238368
0.000238426
0.000238486
0.000238544
0.0002386
0.000238636
0.000238665
0.000238641
0.000238627
0.000249946
0.000239242
0.000238908
0.000238589
0.000238354
0.000238256
0.000238223
0.000238218
0.000238237
0.00023827
0.000238315
0.00023834
0.000238388
0.000238438
0.000238485
0.000238531
0.00023856
0.000238583
0.000238563
0.000238552
0.000238558
0.000238515
0.000238485
0.000238386
0.000238312
0.000238255
0.000238229
0.000238223
0.000238236
0.000238261
0.000238297
0.000238314
0.000238353
0.000238395
0.000238434
0.000238471
0.000238495
0.000238513
0.000238496
0.000238487
0.000238407
0.000238438
0.000238421
0.000238355
0.0002383
0.000238254
0.00023823
0.000238223
0.000238231
0.000238251
0.000238279
0.00023829
0.000238322
0.000238356
0.000238389
0.00023842
0.000238439
0.000238455
0.000238441
0.000238436
0.000238375
0.000238392
0.000238375
0.000238327
0.000238285
0.000238248
0.000238227
0.000238219
0.000238224
0.000238239
0.000238262
0.000238268
0.000238294
0.000238322
0.000238349
0.000238375
0.000238392
0.000238405
0.000238395
0.000238391
0.000238347
0.000238358
0.00023834
0.000238304
0.000238269
0.000238238
0.00023822
0.000238212
0.000238215
0.000238226
0.000238244
0.000238247
0.000238268
0.000238292
0.000238315
0.000238336
0.00023835
0.000238361
0.000238354
0.000238352
0.000238319
0.000238324
0.000238308
0.00023828
0.000238253
0.000238228
0.000238211
0.000238204
0.000238205
0.000238214
0.000238228
0.000238228
0.000238246
0.000238265
0.000238284
0.000238303
0.000238314
0.000238324
0.000238319
0.000238319
0.000238295
0.000238298
0.000238283
0.000238261
0.000238237
0.000238217
0.000238203
0.000238195
0.000238195
0.000238201
0.000238212
0.00023821
0.000238225
0.000238241
0.000238257
0.000238273
0.000238283
0.000238292
0.000238289
0.000238289
0.00023827
0.000238271
0.000238259
0.000238242
0.000238223
0.000238205
0.000238193
0.000238186
0.000238185
0.000238189
0.000238198
0.000238194
0.000238206
0.00023822
0.000238234
0.000238247
0.000238255
0.000238263
0.000238261
0.000238262
0.000238249
0.000238249
0.000238238
0.000238224
0.000238208
0.000238193
0.000238182
0.000238176
0.000238175
0.000238177
0.000238184
0.00023818
0.00023819
0.000238201
0.000238213
0.000238224
0.000238231
0.000238238
0.000238238
0.000238238
0.000238228
0.000238228
0.00023822
0.000238208
0.000238195
0.000238182
0.000238172
0.000238167
0.000238165
0.000238167
0.000238172
0.000238167
0.000238175
0.000238185
0.000238194
0.000238204
0.000238211
0.000238217
0.000238216
0.000238218
0.000238211
0.00023821
0.000238202
0.000238193
0.000238182
0.000238171
0.000238163
0.000238157
0.000238155
0.000238157
0.000238161
0.000238155
0.000238162
0.00023817
0.000238178
0.000238186
0.000238192
0.000238198
0.000238198
0.0002382
0.000238194
0.000238194
0.000238188
0.00023818
0.000238171
0.000238161
0.000238154
0.000238149
0.000238147
0.000238147
0.00023815
0.000238145
0.000238151
0.000238157
0.000238164
0.000238171
0.000238176
0.000238181
0.000238182
0.000238184
0.00023818
0.000238179
0.000238174
0.000238168
0.00023816
0.000238152
0.000238146
0.000238141
0.000238139
0.000238139
0.000238141
0.000238136
0.00023814
0.000238146
0.000238152
0.000238158
0.000238162
0.000238167
0.000238168
0.00023817
0.000238167
0.000238167
0.000238163
0.000238157
0.000238151
0.000238144
0.000238138
0.000238134
0.000238131
0.000238131
0.000238133
0.000238128
0.000238132
0.000238136
0.000238141
0.000238146
0.00023815
0.000238155
0.000238156
0.000238158
0.000238156
0.000238156
0.000238152
0.000238148
0.000238142
0.000238136
0.000238131
0.000238127
0.000238125
0.000238124
0.000238125
0.000238121
0.000238124
0.000238128
0.000238132
0.000238137
0.00023814
0.000238144
0.000238146
0.000238147
0.000238146
0.000238146
0.000238143
0.000238139
0.000238135
0.000238129
0.000238125
0.000238121
0.000238119
0.000238118
0.000238119
0.000238115
0.000238117
0.00023812
0.000238124
0.000238128
0.000238131
0.000238135
0.000238137
0.000238138
0.000238138
0.000238138
0.000238135
0.000238132
0.000238128
0.000238123
0.000238119
0.000238116
0.000238114
0.000238113
0.000238113
0.000238109
0.000238112
0.000238114
0.000238117
0.000238121
0.000238124
0.000238127
0.000238129
0.000238131
0.000238131
0.000238131
0.000238129
0.000238126
0.000238122
0.000238118
0.000238115
0.000238112
0.000238109
0.000238108
0.000238108
0.000238105
0.000238107
0.000238109
0.000238112
0.000238115
0.000238118
0.000238121
0.000238123
0.000238124
0.000238125
0.000238125
0.000238123
0.000238121
0.000238118
0.000238114
0.000238111
0.000238108
0.000238106
0.000238105
0.000238104
0.000238102
0.000238103
0.000238105
0.000238107
0.000238111
0.000238113
0.000238116
0.000238118
0.00023812
0.00023812
0.00023812
0.000238119
0.000238117
0.000238114
0.000238111
0.000238108
0.000238105
0.000238103
0.000238102
0.000238101
0.000238099
0.0002381
0.000238101
0.000238104
0.000238107
0.000238109
0.000238112
0.000238114
0.000238115
0.000238116
0.000238116
0.000238115
0.000238113
0.000238111
0.000238108
0.000238105
0.000238102
0.0002381
0.000238099
0.000238098
0.000238097
0.000238098
0.000238099
0.000238101
0.000238104
0.000238106
0.000238109
0.000238111
0.000238113
0.000238114
0.000238114
0.000238113
0.000238112
0.000238109
0.000238106
0.000238104
0.000238101
0.000238099
0.000238098
0.000238097
0.000238095
0.000238096
0.000238097
0.000238099
0.000238102
0.000238104
0.000238107
0.000238109
0.00023811
0.000238111
0.000238111
0.000238111
0.000238109
0.000238107
0.000238104
0.000238102
0.000238099
0.000238097
0.000238096
0.000238095
0.000238127
0.000238112
0.000238128
0.000238135
0.00023812
0.000238134
0.000238142
0.000238128
0.000238141
0.000238129
0.000238143
0.000238129
0.000238141
0.000238125
0.000238117
0.000238132
0.000238116
0.000238128
0.000238133
0.000238113
0.000267486
0.000268173
0.000269729
0.000272224
0.000276032
0.000281718
0.000292882
0.000344983
0.00049324
0.000624456
0.000687775
0.000776346
0.00056795
0.000419601
0.000350048
0.000311839
0.000288836
0.000276202
0.000270221
0.000267904
0.000264761
0.000265628
0.000266957
0.000268804
0.000271529
0.000275853
0.000284471
0.000317585
0.000578911
0.00181504
0.00287101
0.00218894
0.00103891
0.00055758
0.000385276
0.000312497
0.000280948
0.000268928
0.000265155
0.000264406
0.000261758
0.000262544
0.000263555
0.000264853
0.000266674
0.000269363
0.000274088
0.000289667
0.000493949
0.00256313
0.00400322
0.00207352
0.000859651
0.000462818
0.000328486
0.000280541
0.000265399
0.000261509
0.000260898
0.000261173
0.000260175
0.000260873
0.00026171
0.000262711
0.000264067
0.000265889
0.000269077
0.000275103
0.000351095
0.00165888
0.0034004
0.00137543
0.00058098
0.000348232
0.000280525
0.00026303
0.000259285
0.000258822
0.0002591
0.000259584
0.000259437
0.000260032
0.000260715
0.000261503
0.000262525
0.000263835
0.000266096
0.000270006
0.000318264
0.002652
0.0052421
0.00167589
0.000618611
0.000343154
0.000274192
0.000260185
0.000258049
0.000258052
0.00025843
0.000258904
0.000259023
0.000259526
0.000260088
0.00026072
0.000261506
0.000262471
0.000264077
0.000266662
0.000289044
0.00326104
0.00511674
0.00128139
0.000464068
0.000293451
0.000262373
0.000257804
0.000257467
0.000257745
0.000258132
0.00025856
0.000258795
0.000259218
0.000259682
0.000260192
0.000260808
0.000261534
0.000262703
0.000264485
0.00027996
0.0043914
0.00736624
0.00172635
0.000528386
0.000296914
0.000261636
0.000257571
0.000257405
0.000257683
0.000258029
0.0002584
0.000258655
0.000259008
0.00025939
0.000259803
0.000260286
0.000260837
0.000261672
0.000263014
0.000268661
0.00153545
0.00473137
0.0011447
0.00039513
0.000272886
0.000258529
0.000257323
0.000257442
0.000257708
0.000258005
0.000258321
0.000258563
0.000258857
0.000259172
0.000259505
0.000259885
0.000260304
0.000260889
0.000261798
0.00026508
0.00166514
0.00441222
0.000976671
0.000350091
0.000266021
0.00025791
0.000257401
0.000257546
0.000257771
0.000258019
0.000258284
0.000258497
0.00025874
0.000258999
0.000259268
0.000259567
0.000259883
0.000260297
0.000260895
0.000262625
0.00181762
0.00483283
0.000962036
0.000337982
0.000264303
0.000257909
0.000257544
0.00025766
0.000257841
0.000258045
0.000258264
0.000258445
0.000258646
0.000258859
0.000259076
0.00025931
0.000259545
0.000259834
0.000260211
0.00026096
0.00202327
0.00460195
0.000873915
0.000322
0.000262777
0.000257953
0.000257682
0.000257766
0.000257908
0.000258073
0.000258253
0.000258401
0.000258567
0.00025874
0.000258915
0.0002591
0.000259272
0.000259472
0.000259687
0.000259915
0.00224268
0.0047473
0.000845751
0.000315397
0.000262226
0.000258051
0.000257801
0.000257856
0.000257964
0.000258095
0.000258243
0.000258361
0.000258498
0.000258641
0.000258781
0.000258926
0.000259051
0.000259186
0.000259291
0.000259134
0.00236276
0.00461418
0.000810363
0.000311905
0.000262083
0.000258157
0.000257899
0.000257928
0.000258009
0.000258112
0.000258231
0.000258325
0.000258437
0.000258554
0.000258668
0.000258782
0.000258872
0.000258963
0.000259002
0.000258714
0.00258997
0.0045327
0.000794161
0.000309897
0.00026199
0.000258232
0.000257971
0.000257982
0.000258041
0.000258122
0.000258218
0.00025829
0.000258383
0.000258478
0.000258571
0.000258661
0.000258727
0.000258785
0.000258779
0.000258355
0.00268134
0.00365013
0.000683464
0.000299313
0.000261254
0.000258242
0.00025802
0.00025802
0.000258063
0.000258126
0.000258204
0.000258258
0.000258334
0.000258413
0.000258488
0.00025856
0.00025861
0.00025865
0.000258629
0.000257388
0.000922685
0.0010592
0.000394595
0.000271676
0.000259192
0.00025814
0.000258044
0.000258045
0.000258076
0.000258125
0.000258187
0.000258227
0.00025829
0.000258355
0.000258416
0.000258475
0.000258512
0.000258541
0.000258511
0.000258495
0.000270583
0.000258719
0.000258767
0.000258418
0.000258186
0.000258092
0.000258061
0.00025806
0.000258082
0.00025812
0.000258169
0.000258198
0.00025825
0.000258304
0.000258354
0.000258401
0.000258431
0.000258454
0.000258428
0.000258414
0.000258398
0.000258386
0.000258343
0.000258234
0.000258155
0.000258096
0.000258071
0.000258067
0.000258083
0.000258112
0.000258151
0.000258171
0.000258214
0.000258258
0.0002583
0.000258339
0.000258363
0.000258381
0.000258359
0.000258349
0.000258258
0.000258303
0.000258276
0.000258205
0.000258145
0.000258098
0.000258074
0.000258069
0.000258079
0.000258101
0.000258133
0.000258146
0.000258181
0.000258218
0.000258252
0.000258285
0.000258304
0.000258319
0.000258303
0.000258296
0.000258227
0.000258252
0.000258229
0.000258178
0.000258132
0.000258093
0.000258073
0.000258066
0.000258073
0.00025809
0.000258115
0.000258123
0.000258151
0.000258182
0.00025821
0.000258238
0.000258255
0.000258268
0.000258254
0.000258249
0.0002582
0.000258216
0.000258193
0.000258155
0.000258118
0.000258086
0.000258067
0.00025806
0.000258064
0.000258077
0.000258097
0.000258101
0.000258125
0.00025815
0.000258174
0.000258196
0.000258209
0.00025822
0.000258212
0.000258209
0.000258172
0.00025818
0.00025816
0.000258131
0.000258101
0.000258075
0.000258059
0.000258052
0.000258055
0.000258065
0.000258081
0.000258081
0.000258101
0.000258122
0.000258142
0.000258161
0.000258174
0.000258183
0.000258176
0.000258175
0.000258148
0.000258153
0.000258136
0.000258111
0.000258087
0.000258066
0.000258052
0.000258044
0.000258045
0.000258052
0.000258065
0.000258063
0.000258079
0.000258097
0.000258114
0.00025813
0.00025814
0.000258149
0.000258145
0.000258144
0.000258123
0.000258125
0.000258111
0.000258093
0.000258073
0.000258054
0.000258041
0.000258035
0.000258034
0.00025804
0.00025805
0.000258047
0.00025806
0.000258075
0.000258089
0.000258102
0.000258111
0.000258119
0.000258116
0.000258117
0.000258101
0.000258102
0.00025809
0.000258074
0.000258058
0.000258043
0.000258032
0.000258025
0.000258024
0.000258028
0.000258036
0.000258032
0.000258043
0.000258055
0.000258067
0.000258079
0.000258086
0.000258093
0.000258092
0.000258092
0.00025808
0.000258081
0.000258071
0.000258059
0.000258044
0.000258031
0.000258022
0.000258016
0.000258014
0.000258017
0.000258023
0.000258018
0.000258027
0.000258038
0.000258048
0.000258058
0.000258065
0.000258071
0.00025807
0.000258071
0.000258063
0.000258062
0.000258053
0.000258044
0.000258032
0.000258021
0.000258012
0.000258007
0.000258005
0.000258007
0.000258011
0.000258006
0.000258014
0.000258022
0.000258031
0.000258039
0.000258045
0.000258051
0.000258051
0.000258052
0.000258046
0.000258045
0.000258039
0.00025803
0.00025802
0.000258011
0.000258003
0.000257998
0.000257996
0.000257997
0.000258001
0.000257996
0.000258002
0.000258009
0.000258016
0.000258023
0.000258029
0.000258034
0.000258034
0.000258036
0.000258031
0.000258031
0.000258025
0.000258018
0.00025801
0.000258001
0.000257995
0.00025799
0.000257988
0.000257988
0.000257991
0.000257986
0.000257991
0.000257997
0.000258003
0.00025801
0.000258014
0.000258019
0.00025802
0.000258021
0.000258018
0.000258018
0.000258013
0.000258007
0.000258
0.000257993
0.000257987
0.000257983
0.00025798
0.00025798
0.000257982
0.000257978
0.000257982
0.000257987
0.000257992
0.000257998
0.000258002
0.000258006
0.000258007
0.000258009
0.000258006
0.000258006
0.000258002
0.000257998
0.000257991
0.000257985
0.00025798
0.000257976
0.000257974
0.000257973
0.000257975
0.00025797
0.000257974
0.000257978
0.000257982
0.000257987
0.000257991
0.000257995
0.000257996
0.000257998
0.000257996
0.000257996
0.000257993
0.000257989
0.000257984
0.000257978
0.000257974
0.00025797
0.000257968
0.000257967
0.000257968
0.000257964
0.000257967
0.00025797
0.000257974
0.000257978
0.000257982
0.000257985
0.000257987
0.000257989
0.000257988
0.000257988
0.000257985
0.000257982
0.000257977
0.000257972
0.000257968
0.000257965
0.000257962
0.000257962
0.000257962
0.000257959
0.000257961
0.000257964
0.000257967
0.000257971
0.000257974
0.000257977
0.000257979
0.000257981
0.00025798
0.00025798
0.000257978
0.000257975
0.000257971
0.000257967
0.000257963
0.00025796
0.000257958
0.000257957
0.000257957
0.000257954
0.000257956
0.000257958
0.000257961
0.000257965
0.000257967
0.000257971
0.000257972
0.000257974
0.000257974
0.000257974
0.000257972
0.00025797
0.000257967
0.000257963
0.000257959
0.000257956
0.000257954
0.000257953
0.000257953
0.000257951
0.000257952
0.000257954
0.000257957
0.00025796
0.000257962
0.000257965
0.000257967
0.000257969
0.000257969
0.00025797
0.000257968
0.000257966
0.000257963
0.000257959
0.000257956
0.000257953
0.000257951
0.00025795
0.00025795
0.000257947
0.000257949
0.00025795
0.000257953
0.000257956
0.000257958
0.000257961
0.000257963
0.000257965
0.000257965
0.000257965
0.000257964
0.000257962
0.000257959
0.000257956
0.000257953
0.00025795
0.000257948
0.000257948
0.000257947
0.000257946
0.000257947
0.000257948
0.000257951
0.000257954
0.000257955
0.000257958
0.000257961
0.000257962
0.000257963
0.000257963
0.000257962
0.000257961
0.000257958
0.000257955
0.000257952
0.000257949
0.000257947
0.000257947
0.000257946
0.000257944
0.000257945
0.000257946
0.000257948
0.000257951
0.000257953
0.000257956
0.000257958
0.00025796
0.00025796
0.000257961
0.00025796
0.000257958
0.000257956
0.000257953
0.00025795
0.000257947
0.000257946
0.000257945
0.000257944
0.000257976
0.00025796
0.000257977
0.000257984
0.000257968
0.000257984
0.000257992
0.000257976
0.000257991
0.000257978
0.000257992
0.000257977
0.00025799
0.000257973
0.000257964
0.000257981
0.000257963
0.000257977
0.000257982
0.000257961
0.000289441
0.000290403
0.000292294
0.000295252
0.000299802
0.000306643
0.000321035
0.000398158
0.000629074
0.000829209
0.0009631
0.00124204
0.000775651
0.000514247
0.000402361
0.000344738
0.000313559
0.000298297
0.000291824
0.000289621
0.000286728
0.000287782
0.00028932
0.000291437
0.000294599
0.000299674
0.000310308
0.000355274
0.000716523
0.00262003
0.00424511
0.00291277
0.00111379
0.000576662
0.00040171
0.000329203
0.000299649
0.000289349
0.000286481
0.000286145
0.000283897
0.000284798
0.000285943
0.000287416
0.000289494
0.000292615
0.000298146
0.000317461
0.000588175
0.00372146
0.0060146
0.0025222
0.00091207
0.000478939
0.000343434
0.000298765
0.000285943
0.000283027
0.000282763
0.000283196
0.000282418
0.000283197
0.000284124
0.000285241
0.000286759
0.000288844
0.000292491
0.000299689
0.00040117
0.00229344
0.00529496
0.00163428
0.000611632
0.000361521
0.00029832
0.00028372
0.000280953
0.000280783
0.000281181
0.000281748
0.000281719
0.000282375
0.000283125
0.000283996
0.000285126
0.000286611
0.000289156
0.000293768
0.000352258
0.00362285
0.00784998
0.00186685
0.000623156
0.00034954
0.00029149
0.000281212
0.000279931
0.000280132
0.000280592
0.000281127
0.000281331
0.000281882
0.000282496
0.000283189
0.000284051
0.000285134
0.000286921
0.000289938
0.000314632
0.00440187
0.00768256
0.0013979
0.000462919
0.000306456
0.000282581
0.000279583
0.00027954
0.000279904
0.000280345
0.000280821
0.000281116
0.000281577
0.000282081
0.000282638
0.00028331
0.000284116
0.000285408
0.000287456
0.000303986
0.00606573
0.0110824
0.00193777
0.000523008
0.00030844
0.00028198
0.000279473
0.000279542
0.000279884
0.000280272
0.000280682
0.000280983
0.000281368
0.000281782
0.00028223
0.000282754
0.00028336
0.000284278
0.000285804
0.000292018
0.00218004
0.00759238
0.00132329
0.000401453
0.000290383
0.000280048
0.000279421
0.000279634
0.00027994
0.000280271
0.000280619
0.000280896
0.000281216
0.000281556
0.000281916
0.000282327
0.000282783
0.000283425
0.000284436
0.000287957
0.00235932
0.00704671
0.00112061
0.00036146
0.000285634
0.000279793
0.000279571
0.00027977
0.000280026
0.000280301
0.000280592
0.000280833
0.000281097
0.000281376
0.000281666
0.000281988
0.000282328
0.00028278
0.000283427
0.000285182
0.00258198
0.00766119
0.00109422
0.000350001
0.000284468
0.000279907
0.000279752
0.000279908
0.000280114
0.000280339
0.00028058
0.000280783
0.000281001
0.000281229
0.000281462
0.000281714
0.000281964
0.000282279
0.000282676
0.000283321
0.00289124
0.00718838
0.000978161
0.000335047
0.000283436
0.000280037
0.000279918
0.000280033
0.000280194
0.000280376
0.000280574
0.000280739
0.000280919
0.000281105
0.000281293
0.000281489
0.000281671
0.000281886
0.000282104
0.000282147
0.00326538
0.00725753
0.000933743
0.000328747
0.000283108
0.000280184
0.000280059
0.000280137
0.00028026
0.000280406
0.000280567
0.0002807
0.000280847
0.000281
0.000281151
0.000281304
0.000281435
0.000281578
0.000281678
0.00028129
0.00345107
0.00712619
0.000900889
0.000326402
0.000283121
0.00028032
0.000280173
0.00028022
0.000280313
0.000280428
0.000280559
0.000280663
0.000280784
0.000280909
0.000281031
0.000281152
0.000281245
0.000281338
0.000281367
0.000280802
0.00377454
0.006827
0.000872621
0.000324218
0.000283079
0.000280414
0.000280256
0.000280282
0.000280352
0.000280442
0.000280547
0.000280628
0.000280728
0.00028083
0.000280929
0.000281024
0.000281092
0.00028115
0.000281133
0.000280419
0.00396867
0.00543732
0.000744611
0.00031505
0.000282595
0.000280457
0.000280316
0.000280328
0.000280378
0.000280449
0.000280534
0.000280595
0.000280677
0.000280762
0.000280841
0.000280917
0.000280968
0.000281008
0.000280977
0.000279462
0.00122484
0.00143089
0.000421568
0.000291486
0.000281176
0.000280419
0.000280351
0.000280358
0.000280395
0.00028045
0.000280518
0.000280564
0.000280631
0.000280701
0.000280766
0.000280827
0.000280865
0.000280893
0.000280856
0.000280837
0.000292961
0.000280503
0.000281111
0.000280719
0.000280494
0.000280403
0.000280374
0.000280377
0.000280404
0.000280446
0.000280501
0.000280535
0.00028059
0.000280647
0.0002807
0.00028075
0.00028078
0.000280802
0.00028077
0.000280752
0.000280707
0.000280738
0.000280676
0.000280557
0.000280472
0.000280413
0.000280389
0.000280387
0.000280406
0.00028044
0.000280483
0.000280507
0.000280552
0.000280599
0.000280643
0.000280684
0.000280709
0.000280726
0.0002807
0.000280686
0.000280583
0.000280645
0.000280606
0.000280529
0.000280466
0.000280417
0.000280395
0.000280391
0.000280404
0.00028043
0.000280465
0.00028048
0.000280518
0.000280558
0.000280594
0.000280627
0.000280647
0.000280662
0.000280641
0.000280631
0.000280554
0.00028059
0.000280558
0.000280504
0.000280455
0.000280416
0.000280395
0.00028039
0.000280399
0.000280418
0.000280446
0.000280456
0.000280487
0.00028052
0.00028055
0.000280578
0.000280595
0.000280607
0.000280591
0.000280585
0.000280531
0.000280552
0.000280524
0.000280482
0.000280443
0.00028041
0.000280392
0.000280386
0.000280391
0.000280406
0.000280429
0.000280434
0.000280459
0.000280487
0.000280512
0.000280535
0.000280548
0.000280558
0.000280548
0.000280543
0.000280502
0.000280513
0.00028049
0.000280459
0.000280427
0.0002804
0.000280384
0.000280379
0.000280382
0.000280394
0.000280411
0.000280413
0.000280434
0.000280457
0.000280478
0.000280498
0.000280511
0.00028052
0.000280511
0.000280509
0.000280479
0.000280485
0.000280466
0.00028044
0.000280414
0.000280393
0.000280378
0.000280371
0.000280373
0.000280381
0.000280395
0.000280395
0.000280412
0.000280431
0.000280448
0.000280465
0.000280476
0.000280484
0.000280479
0.000280477
0.000280454
0.000280457
0.000280441
0.000280422
0.0002804
0.000280381
0.000280368
0.000280362
0.000280362
0.000280369
0.00028038
0.000280377
0.000280392
0.000280408
0.000280422
0.000280437
0.000280446
0.000280453
0.000280449
0.000280449
0.000280432
0.000280433
0.000280419
0.000280403
0.000280386
0.00028037
0.000280358
0.000280353
0.000280352
0.000280357
0.000280365
0.000280362
0.000280374
0.000280387
0.0002804
0.000280412
0.00028042
0.000280426
0.000280423
0.000280422
0.000280411
0.000280411
0.0002804
0.000280386
0.000280372
0.000280359
0.000280349
0.000280343
0.000280342
0.000280345
0.000280352
0.000280348
0.000280358
0.000280369
0.000280379
0.00028039
0.000280397
0.000280403
0.000280402
0.000280403
0.000280393
0.000280392
0.000280384
0.000280373
0.00028036
0.000280348
0.000280339
0.000280334
0.000280333
0.000280335
0.00028034
0.000280336
0.000280344
0.000280353
0.000280362
0.000280371
0.000280377
0.000280382
0.000280382
0.000280383
0.000280376
0.000280375
0.000280367
0.000280359
0.000280348
0.000280338
0.00028033
0.000280325
0.000280324
0.000280325
0.000280329
0.000280324
0.000280331
0.000280339
0.000280346
0.000280354
0.000280359
0.000280364
0.000280365
0.000280366
0.000280361
0.00028036
0.000280354
0.000280346
0.000280337
0.000280329
0.000280322
0.000280317
0.000280315
0.000280316
0.000280319
0.000280314
0.00028032
0.000280326
0.000280333
0.00028034
0.000280344
0.000280349
0.00028035
0.000280351
0.000280347
0.000280347
0.000280341
0.000280335
0.000280328
0.00028032
0.000280314
0.00028031
0.000280308
0.000280308
0.00028031
0.000280306
0.00028031
0.000280316
0.000280321
0.000280327
0.000280331
0.000280336
0.000280336
0.000280338
0.000280335
0.000280335
0.000280331
0.000280325
0.000280319
0.000280312
0.000280307
0.000280303
0.000280301
0.000280301
0.000280302
0.000280298
0.000280302
0.000280306
0.000280311
0.000280316
0.00028032
0.000280324
0.000280325
0.000280327
0.000280325
0.000280325
0.000280321
0.000280317
0.000280311
0.000280305
0.000280301
0.000280297
0.000280295
0.000280294
0.000280295
0.000280291
0.000280294
0.000280298
0.000280302
0.000280307
0.00028031
0.000280314
0.000280315
0.000280317
0.000280316
0.000280316
0.000280313
0.000280309
0.000280304
0.000280299
0.000280295
0.000280291
0.000280289
0.000280289
0.000280289
0.000280286
0.000280288
0.000280292
0.000280295
0.000280299
0.000280302
0.000280306
0.000280307
0.000280309
0.000280308
0.000280308
0.000280306
0.000280303
0.000280299
0.000280294
0.00028029
0.000280287
0.000280285
0.000280284
0.000280284
0.000280281
0.000280283
0.000280286
0.000280289
0.000280293
0.000280295
0.000280299
0.0002803
0.000280302
0.000280302
0.000280302
0.0002803
0.000280297
0.000280294
0.00028029
0.000280286
0.000280283
0.000280281
0.00028028
0.00028028
0.000280278
0.000280279
0.000280282
0.000280284
0.000280288
0.00028029
0.000280293
0.000280295
0.000280297
0.000280297
0.000280297
0.000280295
0.000280293
0.00028029
0.000280286
0.000280283
0.00028028
0.000280278
0.000280277
0.000280277
0.000280274
0.000280276
0.000280278
0.00028028
0.000280284
0.000280286
0.000280289
0.000280291
0.000280292
0.000280293
0.000280293
0.000280291
0.000280289
0.000280286
0.000280283
0.00028028
0.000280277
0.000280275
0.000280274
0.000280274
0.000280273
0.000280274
0.000280276
0.000280278
0.000280281
0.000280283
0.000280286
0.000280288
0.00028029
0.00028029
0.000280291
0.000280289
0.000280288
0.000280285
0.000280281
0.000280279
0.000280276
0.000280274
0.000280273
0.000280272
0.000280271
0.000280272
0.000280273
0.000280276
0.000280279
0.00028028
0.000280283
0.000280285
0.000280287
0.000280288
0.000280288
0.000280287
0.000280285
0.000280282
0.000280279
0.000280277
0.000280274
0.000280272
0.000280272
0.00028027
0.000280303
0.000280287
0.000280304
0.000280312
0.000280295
0.000280312
0.00028032
0.000280303
0.000280319
0.000280305
0.00028032
0.000280304
0.000280318
0.000280299
0.00028029
0.000280308
0.00028029
0.000280304
0.000280309
0.000280287
0.000314199
0.000315485
0.000317751
0.000321248
0.000326699
0.000334975
0.00035383
0.000470313
0.000853214
0.00119488
0.00151642
0.00230906
0.00107149
0.000614741
0.000451622
0.000375296
0.000338146
0.000321919
0.000315785
0.000314024
0.000311525
0.000312765
0.000314523
0.000316939
0.00032061
0.000326583
0.000339852
0.000401662
0.000929127
0.00407427
0.00688923
0.00411652
0.00113861
0.000589012
0.000417017
0.000347066
0.000320822
0.000312613
0.000310676
0.00031073
0.00030888
0.000309897
0.000311182
0.000312845
0.000315213
0.000318839
0.000325358
0.000349367
0.000723457
0.00577648
0.00986549
0.00310654
0.000944005
0.00048853
0.000358623
0.000319482
0.000309388
0.000307433
0.000307487
0.000308068
0.000307518
0.000308379
0.000309398
0.000310639
0.000312334
0.000314719
0.000318922
0.000327547
0.000464207
0.00340855
0.00906777
0.001918
0.000623238
0.000373085
0.000318642
0.000307356
0.000305519
0.000305612
0.000306123
0.000306772
0.000306868
0.000307585
0.000308402
0.000309359
0.000310605
0.000312283
0.000315166
0.000320627
0.000391378
0.00530699
0.0127895
0.00202445
0.000606145
0.000356339
0.000312133
0.000305316
0.000304722
0.000305085
0.000305621
0.000306218
0.000306513
0.000307112
0.000307776
0.000308531
0.000309472
0.000310682
0.000312679
0.000316221
0.000343217
0.00631369
0.0125598
0.00144039
0.000449644
0.000322326
0.000306007
0.000304308
0.000304495
0.000304936
0.000305432
0.000305956
0.000306316
0.000306815
0.000307358
0.000307961
0.000308688
0.00030958
0.00031101
0.000313379
0.000330722
0.00879426
0.0181417
0.00211497
0.000499669
0.000322728
0.000305561
0.000304316
0.000304562
0.000304963
0.000305395
0.000305845
0.000306195
0.00030661
0.000307055
0.000307538
0.000308102
0.000308764
0.000309773
0.000311516
0.000318241
0.00324724
0.0131387
0.00145911
0.000398295
0.00031082
0.000304585
0.000304415
0.000304706
0.000305053
0.00030542
0.0003058
0.000306116
0.00030646
0.000306824
0.000307212
0.000307651
0.000308144
0.000308846
0.000309977
0.000313644
0.00350243
0.0121291
0.00121533
0.000366979
0.000308098
0.000304616
0.000304629
0.000304877
0.000305164
0.000305469
0.000305786
0.000306058
0.000306342
0.00030664
0.00030695
0.000307293
0.000307657
0.000308147
0.000308853
0.000310519
0.00384248
0.0130594
0.00117306
0.000357385
0.000307505
0.00030483
0.000304848
0.000305041
0.000305273
0.000305522
0.000305784
0.00030601
0.000306244
0.000306489
0.000306737
0.000307004
0.000307269
0.000307607
0.000308029
0.000308444
0.00432942
0.0120382
0.00103103
0.000345369
0.000307012
0.000305039
0.000305043
0.000305186
0.000305368
0.000305569
0.000305785
0.000305969
0.000306162
0.000306361
0.00030656
0.000306768
0.000306959
0.000307187
0.000307408
0.000307126
0.00500528
0.011819
0.000970384
0.000340309
0.000306932
0.000305231
0.000305207
0.000305307
0.000305447
0.000305607
0.000305783
0.000305931
0.000306089
0.000306252
0.000306412
0.000306573
0.000306709
0.000306858
0.000306951
0.000306195
0.00531072
0.0117739
0.00094672
0.000339349
0.000307078
0.000305395
0.000305336
0.000305402
0.000305508
0.000305636
0.000305778
0.000305895
0.000306025
0.000306158
0.000306287
0.000306413
0.000306509
0.000306604
0.000306619
0.000305637
0.00578702
0.0109241
0.000906043
0.000337408
0.000307108
0.000305511
0.000305434
0.000305475
0.000305554
0.000305655
0.00030577
0.00030586
0.000305967
0.000306076
0.00030618
0.000306279
0.000306348
0.000306406
0.000306375
0.000305232
0.00620409
0.00858968
0.000769597
0.000330646
0.000306875
0.000305581
0.000305504
0.000305528
0.000305586
0.000305665
0.000305758
0.000305827
0.000305915
0.000306005
0.000306089
0.000306168
0.000306218
0.000306257
0.000306215
0.000304349
0.00168158
0.00200604
0.000438004
0.000313441
0.000306081
0.000305595
0.000305551
0.000305564
0.000305608
0.000305669
0.000305744
0.000305795
0.000305867
0.000305942
0.00030601
0.000306074
0.000306112
0.000306138
0.000306092
0.000306068
0.000316772
0.000304974
0.000306364
0.000305908
0.000305691
0.000305606
0.000305581
0.000305588
0.000305619
0.000305667
0.000305727
0.000305765
0.000305825
0.000305886
0.000305942
0.000305993
0.000306023
0.000306043
0.000306004
0.000305979
0.000305901
0.000305984
0.000305898
0.00030577
0.000305681
0.000305623
0.0003056
0.000305602
0.000305624
0.000305662
0.00030571
0.000305737
0.000305786
0.000305836
0.000305882
0.000305925
0.000305949
0.000305964
0.000305932
0.000305914
0.000305802
0.00030588
0.000305827
0.000305745
0.000305679
0.000305631
0.00030561
0.000305608
0.000305624
0.000305653
0.000305692
0.00030571
0.000305751
0.000305792
0.000305831
0.000305865
0.000305885
0.000305898
0.000305875
0.000305861
0.000305774
0.000305819
0.000305781
0.000305725
0.000305672
0.000305632
0.000305613
0.000305609
0.00030562
0.000305643
0.000305673
0.000305685
0.000305719
0.000305753
0.000305785
0.000305814
0.00030583
0.00030584
0.000305821
0.000305814
0.000305755
0.000305781
0.000305747
0.000305701
0.000305659
0.000305627
0.000305611
0.000305606
0.000305614
0.000305631
0.000305655
0.000305662
0.00030569
0.000305719
0.000305746
0.000305769
0.000305783
0.000305794
0.00030578
0.000305771
0.000305726
0.000305739
0.000305713
0.000305682
0.00030565
0.000305621
0.000305605
0.0003056
0.000305605
0.000305618
0.000305638
0.000305641
0.000305663
0.000305687
0.00030571
0.000305731
0.000305744
0.000305752
0.00030574
0.000305737
0.000305704
0.000305711
0.00030569
0.000305662
0.000305635
0.000305614
0.0003056
0.000305593
0.000305595
0.000305605
0.000305621
0.000305622
0.00030564
0.00030566
0.000305679
0.000305697
0.000305707
0.000305715
0.000305709
0.000305705
0.00030568
0.000305683
0.000305665
0.000305645
0.000305623
0.000305603
0.00030559
0.000305584
0.000305586
0.000305593
0.000305606
0.000305604
0.000305619
0.000305636
0.000305652
0.000305667
0.000305676
0.000305683
0.000305678
0.000305675
0.000305656
0.000305657
0.000305643
0.000305626
0.000305608
0.000305592
0.000305581
0.000305575
0.000305576
0.000305581
0.000305591
0.000305588
0.000305601
0.000305615
0.000305628
0.000305641
0.000305649
0.000305655
0.000305651
0.00030565
0.000305638
0.000305638
0.000305625
0.00030561
0.000305595
0.000305581
0.000305571
0.000305566
0.000305566
0.00030557
0.000305577
0.000305574
0.000305584
0.000305596
0.000305607
0.000305618
0.000305625
0.000305631
0.00030563
0.00030563
0.000305618
0.000305617
0.000305608
0.000305597
0.000305583
0.000305571
0.000305562
0.000305557
0.000305556
0.000305559
0.000305565
0.000305561
0.000305569
0.000305579
0.000305588
0.000305598
0.000305604
0.000305609
0.000305608
0.000305609
0.000305601
0.0003056
0.000305592
0.000305583
0.000305571
0.000305561
0.000305553
0.000305548
0.000305547
0.000305549
0.000305553
0.000305549
0.000305556
0.000305564
0.000305572
0.00030558
0.000305586
0.000305591
0.000305591
0.000305592
0.000305586
0.000305585
0.000305578
0.00030557
0.000305561
0.000305552
0.000305545
0.00030554
0.000305539
0.00030554
0.000305543
0.000305539
0.000305545
0.000305551
0.000305558
0.000305565
0.00030557
0.000305575
0.000305575
0.000305576
0.000305572
0.000305571
0.000305565
0.000305559
0.000305551
0.000305543
0.000305537
0.000305533
0.000305531
0.000305531
0.000305534
0.00030553
0.000305534
0.00030554
0.000305546
0.000305552
0.000305557
0.000305561
0.000305562
0.000305563
0.00030556
0.000305559
0.000305554
0.000305549
0.000305542
0.000305535
0.00030553
0.000305526
0.000305524
0.000305524
0.000305526
0.000305522
0.000305526
0.000305531
0.000305536
0.000305541
0.000305545
0.000305549
0.00030555
0.000305552
0.000305549
0.000305549
0.000305545
0.00030554
0.000305534
0.000305528
0.000305523
0.00030552
0.000305518
0.000305517
0.000305519
0.000305515
0.000305518
0.000305522
0.000305527
0.000305531
0.000305535
0.000305539
0.00030554
0.000305542
0.00030554
0.00030554
0.000305536
0.000305533
0.000305527
0.000305522
0.000305518
0.000305514
0.000305512
0.000305512
0.000305512
0.000305509
0.000305512
0.000305515
0.000305519
0.000305523
0.000305526
0.00030553
0.000305532
0.000305533
0.000305532
0.000305532
0.000305529
0.000305526
0.000305521
0.000305517
0.000305513
0.000305509
0.000305507
0.000305507
0.000305507
0.000305504
0.000305506
0.000305509
0.000305513
0.000305517
0.000305519
0.000305523
0.000305524
0.000305526
0.000305525
0.000305526
0.000305523
0.00030552
0.000305516
0.000305512
0.000305508
0.000305505
0.000305503
0.000305503
0.000305503
0.0003055
0.000305502
0.000305505
0.000305508
0.000305511
0.000305514
0.000305517
0.000305519
0.000305521
0.00030552
0.000305521
0.000305519
0.000305516
0.000305513
0.000305509
0.000305505
0.000305502
0.0003055
0.0003055
0.000305499
0.000305497
0.000305499
0.000305501
0.000305503
0.000305507
0.000305509
0.000305512
0.000305514
0.000305516
0.000305516
0.000305516
0.000305514
0.000305512
0.000305509
0.000305505
0.000305502
0.000305499
0.000305497
0.000305497
0.000305496
0.000305495
0.000305497
0.000305499
0.000305501
0.000305504
0.000305506
0.00030551
0.000305512
0.000305513
0.000305513
0.000305514
0.000305512
0.000305511
0.000305507
0.000305504
0.000305501
0.000305498
0.000305496
0.000305496
0.000305495
0.000305493
0.000305495
0.000305496
0.000305499
0.000305502
0.000305503
0.000305507
0.000305509
0.00030551
0.000305511
0.000305511
0.00030551
0.000305508
0.000305505
0.000305502
0.000305499
0.000305496
0.000305494
0.000305494
0.000305493
0.000305526
0.000305509
0.000305527
0.000305535
0.000305518
0.000305535
0.000305544
0.000305526
0.000305543
0.000305527
0.000305544
0.000305526
0.000305541
0.000305521
0.000305512
0.000305531
0.000305511
0.000305526
0.000305532
0.000305509
0.000342264
0.000343883
0.000346541
0.000350642
0.000357165
0.000367209
0.000392302
0.000572233
0.0012631
0.00193764
0.00206738
0.00480981
0.00142108
0.000697268
0.000492708
0.000402976
0.000363347
0.000347954
0.000342828
0.000341696
0.000339624
0.000341036
0.000343006
0.000345739
0.000349987
0.000357013
0.000373738
0.000459797
0.00128966
0.00700347
0.00717134
0.0090267
0.00101116
0.000596191
0.000432128
0.000367164
0.000345335
0.000339347
0.000338262
0.000338646
0.00033719
0.000338316
0.000339732
0.000341588
0.000344267
0.000348469
0.000356181
0.00038603
0.00093094
0.00980418
0.0179657
0.00388338
0.000919858
0.000490746
0.000375478
0.00034363
0.000336344
0.000335246
0.000335567
0.000336276
0.000335965
0.0003369
0.000338005
0.000339366
0.000341241
0.000343959
0.000348817
0.00035914
0.000544946
0.00558436
0.0152865
0.00212359
0.000600836
0.000384859
0.000342554
0.000334531
0.000333496
0.000333811
0.000334422
0.000335147
0.000335379
0.000336151
0.000337029
0.000338067
0.000339424
0.000341307
0.000344577
0.00035103
0.000436148
0.00855662
0.0337996
0.00200957
0.000558679
0.000366431
0.000337009
0.000333007
0.000332919
0.000333412
0.000334018
0.000334674
0.000335067
0.000335709
0.000336418
0.000337229
0.000338243
0.000339582
0.00034181
0.000345966
0.000374906
0.00983613
0.0332221
0.00122445
0.00042643
0.000342841
0.000333225
0.000332475
0.000332833
0.000333344
0.000333893
0.000334466
0.000334896
0.000335429
0.000336007
0.000336649
0.000337425
0.0003384
0.000339977
0.000342719
0.000360232
0.0135631
0.0331253
0.00208053
0.000455499
0.000341723
0.000332958
0.000332593
0.000332968
0.000333424
0.0003339
0.000334389
0.000334793
0.000335236
0.000335707
0.000336219
0.000336817
0.000337532
0.000338633
0.000340624
0.000347649
0.00512784
0.0250723
0.00138935
0.000385843
0.000335356
0.000332663
0.000332808
0.000333164
0.000333553
0.000333956
0.000334368
0.000334726
0.000335092
0.000335478
0.000335887
0.000336349
0.000336875
0.000337635
0.000338899
0.000342488
0.00550471
0.022987
0.00112196
0.000367577
0.000334321
0.000332895
0.000333079
0.000333372
0.000333693
0.000334027
0.000334371
0.000334675
0.000334978
0.000335293
0.00033562
0.000335978
0.000336362
0.000336888
0.000337655
0.000339007
0.00605468
0.0244324
0.00106531
0.00036132
0.000334247
0.000333194
0.000333337
0.000333566
0.000333824
0.000334097
0.000334382
0.000334634
0.000334883
0.000335141
0.000335402
0.00033568
0.000335956
0.000336315
0.000336758
0.000336713
0.00686693
0.0220402
0.00092513
0.000354382
0.000334249
0.000333467
0.000333562
0.000333733
0.000333937
0.000334158
0.000334392
0.000334596
0.000334802
0.000335012
0.000335221
0.000335436
0.000335632
0.00033587
0.00033609
0.000335238
0.00817746
0.0208599
0.000862085
0.000351612
0.0003344
0.000333701
0.000333749
0.000333871
0.000334029
0.000334206
0.000334397
0.000334561
0.000334729
0.000334901
0.000335069
0.000335236
0.000335373
0.000335525
0.000335606
0.000334248
0.00872028
0.0212069
0.000858699
0.000352014
0.00033464
0.000333891
0.000333898
0.000333981
0.000334101
0.000334242
0.000334397
0.000334526
0.000334665
0.000334806
0.00033494
0.00033507
0.000335166
0.00033526
0.000335256
0.000333627
0.00944924
0.0188763
0.000815046
0.000350877
0.00033475
0.000334029
0.00033401
0.000334065
0.000334155
0.000334267
0.000334392
0.000334493
0.000334606
0.000334722
0.00033483
0.000334932
0.000335
0.000335055
0.000335006
0.000333203
0.0103824
0.0146208
0.000700531
0.000347395
0.000334728
0.000334124
0.000334092
0.000334126
0.000334194
0.000334282
0.000334383
0.00033446
0.000334554
0.000334648
0.000334736
0.000334817
0.000334867
0.000334902
0.000334844
0.000332524
0.00240229
0.00294294
0.000432202
0.000338422
0.000334448
0.000334175
0.000334149
0.00033417
0.00033422
0.000334289
0.00033437
0.000334428
0.000334506
0.000334584
0.000334655
0.00033472
0.000334757
0.00033478
0.000334724
0.000334692
0.000341145
0.000332594
0.000335048
0.000334492
0.000334287
0.000334207
0.000334187
0.000334199
0.000334236
0.00033429
0.000334355
0.000334398
0.000334462
0.000334526
0.000334585
0.000334637
0.000334666
0.000334683
0.000334636
0.000334602
0.000334489
0.000334628
0.000334515
0.000334379
0.000334289
0.000334231
0.000334211
0.000334217
0.000334244
0.000334285
0.000334338
0.00033437
0.000334422
0.000334475
0.000334523
0.000334566
0.00033459
0.000334603
0.000334566
0.00033454
0.000334419
0.000334511
0.000334444
0.000334359
0.000334292
0.000334244
0.000334225
0.000334226
0.000334246
0.000334278
0.000334321
0.000334343
0.000334386
0.00033443
0.00033447
0.000334505
0.000334524
0.000334536
0.000334506
0.000334488
0.000334396
0.000334448
0.000334402
0.000334341
0.000334289
0.000334249
0.000334231
0.00033423
0.000334244
0.000334269
0.000334303
0.000334317
0.000334353
0.000334389
0.000334423
0.000334452
0.000334468
0.000334476
0.000334455
0.000334444
0.000334377
0.000334406
0.000334371
0.000334323
0.000334279
0.000334247
0.000334231
0.000334228
0.000334238
0.000334258
0.000334285
0.000334294
0.000334323
0.000334354
0.000334381
0.000334406
0.000334419
0.000334429
0.000334412
0.000334401
0.000334353
0.000334368
0.000334337
0.000334305
0.000334272
0.000334243
0.000334227
0.000334224
0.00033423
0.000334245
0.000334267
0.000334272
0.000334296
0.000334321
0.000334345
0.000334367
0.00033438
0.000334386
0.000334372
0.000334367
0.00033433
0.000334339
0.000334316
0.000334286
0.000334259
0.000334237
0.000334224
0.000334218
0.000334221
0.000334232
0.00033425
0.000334252
0.000334272
0.000334293
0.000334313
0.000334331
0.000334341
0.000334349
0.00033434
0.000334335
0.000334307
0.00033431
0.000334291
0.00033427
0.000334248
0.000334227
0.000334215
0.000334209
0.000334212
0.00033422
0.000334234
0.000334233
0.00033425
0.000334268
0.000334284
0.000334299
0.000334309
0.000334315
0.000334309
0.000334305
0.000334284
0.000334285
0.000334269
0.000334252
0.000334234
0.000334217
0.000334206
0.000334201
0.000334202
0.000334208
0.000334219
0.000334217
0.000334231
0.000334245
0.000334259
0.000334272
0.00033428
0.000334286
0.000334281
0.00033428
0.000334266
0.000334266
0.000334252
0.000334236
0.00033422
0.000334206
0.000334197
0.000334192
0.000334192
0.000334197
0.000334205
0.000334202
0.000334213
0.000334226
0.000334237
0.000334249
0.000334256
0.000334261
0.000334259
0.000334259
0.000334246
0.000334245
0.000334235
0.000334224
0.000334209
0.000334197
0.000334188
0.000334183
0.000334182
0.000334185
0.000334192
0.000334188
0.000334198
0.000334208
0.000334218
0.000334228
0.000334234
0.000334239
0.000334238
0.000334238
0.000334229
0.000334228
0.000334219
0.000334209
0.000334197
0.000334187
0.000334179
0.000334174
0.000334173
0.000334176
0.000334181
0.000334176
0.000334184
0.000334193
0.000334201
0.00033421
0.000334215
0.00033422
0.00033422
0.00033422
0.000334213
0.000334212
0.000334205
0.000334197
0.000334187
0.000334178
0.00033417
0.000334166
0.000334165
0.000334166
0.00033417
0.000334166
0.000334172
0.000334179
0.000334187
0.000334194
0.000334199
0.000334204
0.000334204
0.000334204
0.000334199
0.000334198
0.000334192
0.000334185
0.000334177
0.000334169
0.000334163
0.000334158
0.000334157
0.000334158
0.000334161
0.000334156
0.000334162
0.000334168
0.000334174
0.00033418
0.000334185
0.000334189
0.00033419
0.000334191
0.000334187
0.000334186
0.000334181
0.000334175
0.000334168
0.000334161
0.000334155
0.000334151
0.00033415
0.00033415
0.000334152
0.000334148
0.000334153
0.000334158
0.000334163
0.000334169
0.000334173
0.000334177
0.000334178
0.000334179
0.000334176
0.000334176
0.000334171
0.000334166
0.00033416
0.000334154
0.000334149
0.000334145
0.000334143
0.000334143
0.000334145
0.000334141
0.000334145
0.000334149
0.000334154
0.000334159
0.000334162
0.000334166
0.000334167
0.000334169
0.000334167
0.000334166
0.000334163
0.000334159
0.000334153
0.000334148
0.000334143
0.00033414
0.000334138
0.000334137
0.000334138
0.000334135
0.000334138
0.000334142
0.000334146
0.00033415
0.000334154
0.000334157
0.000334158
0.00033416
0.000334159
0.000334159
0.000334156
0.000334152
0.000334147
0.000334142
0.000334138
0.000334135
0.000334133
0.000334132
0.000334133
0.00033413
0.000334132
0.000334135
0.000334139
0.000334143
0.000334146
0.00033415
0.000334151
0.000334153
0.000334152
0.000334152
0.000334149
0.000334146
0.000334142
0.000334138
0.000334134
0.000334131
0.000334129
0.000334128
0.000334128
0.000334126
0.000334128
0.000334131
0.000334134
0.000334138
0.00033414
0.000334144
0.000334145
0.000334147
0.000334147
0.000334147
0.000334145
0.000334142
0.000334138
0.000334134
0.000334131
0.000334128
0.000334126
0.000334125
0.000334125
0.000334123
0.000334124
0.000334127
0.00033413
0.000334133
0.000334135
0.000334139
0.000334141
0.000334142
0.000334142
0.000334142
0.00033414
0.000334138
0.000334134
0.000334131
0.000334128
0.000334124
0.000334123
0.000334122
0.000334122
0.000334121
0.000334123
0.000334124
0.000334127
0.000334131
0.000334133
0.000334136
0.000334138
0.00033414
0.00033414
0.00033414
0.000334138
0.000334136
0.000334133
0.000334129
0.000334127
0.000334123
0.000334122
0.000334121
0.00033412
0.000334119
0.00033412
0.000334122
0.000334125
0.000334128
0.00033413
0.000334133
0.000334135
0.000334137
0.000334137
0.000334137
0.000334135
0.000334134
0.00033413
0.000334127
0.000334125
0.000334121
0.00033412
0.000334119
0.000334118
0.000334152
0.000334134
0.000334153
0.000334162
0.000334143
0.000334162
0.000334171
0.000334152
0.00033417
0.000334153
0.00033417
0.000334151
0.000334167
0.000334146
0.000334137
0.000334157
0.000334136
0.000334152
0.000334158
0.000334134
0.000374205
0.000376113
0.000379137
0.00038386
0.000391574
0.00040373
0.000437563
0.000723047
0.00212033
0.00279755
0.00534402
0.0127375
0.00219528
0.000724684
0.000525044
0.000429022
0.000390619
0.000377528
0.000373762
0.000373281
0.000371586
0.000373129
0.000375273
0.000378302
0.000383136
0.000391326
0.000412556
0.000534074
0.00197779
0.00527333
0.00979038
0.053452
0.000993487
0.000613349
0.000448812
0.000390927
0.000374164
0.000370248
0.000369846
0.000370474
0.000369408
0.000370616
0.000372135
0.000374156
0.000377125
0.000381928
0.000391007
0.000427991
0.00127524
0.0136178
0.0390156
0.00903466
0.000764832
0.000491027
0.000396284
0.000372241
0.000367493
0.000367079
0.000367604
0.000368414
0.000368352
0.000369342
0.000370509
0.000371964
0.00037399
0.000377033
0.000382597
0.000394821
0.000650529
0.0041784
0.0313608
0.00287918
0.000537099
0.000401427
0.000371194
0.000365904
0.000365497
0.000365989
0.000366686
0.000367477
0.000367854
0.000368668
0.000369588
0.000370682
0.000372122
0.000374191
0.000377854
0.000385363
0.000486856
0.00297744
0.0762384
0.00333213
0.000483663
0.000384596
0.000366931
0.00036487
0.000365129
0.000365727
0.000366397
0.000367104
0.000367601
0.000368276
0.000369016
0.000369864
0.000370924
0.000372371
0.000374819
0.000379616
0.00040946
0.0013427
0.0725545
0.00167859
0.000410048
0.00036995
0.000364826
0.00036468
0.000365169
0.000365747
0.000366348
0.000366964
0.000367468
0.000368029
0.000368629
0.000369297
0.0003701
0.000371138
0.000372839
0.000375959
0.000392194
0.00154694
0.151941
0.00190163
0.000399454
0.000367965
0.000364772
0.000364907
0.000365377
0.000365887
0.000366405
0.00036693
0.000367392
0.000367856
0.000368346
0.000368876
0.000369489
0.000370239
0.000371409
0.000373644
0.000380423
0.000699847
0.112137
0.00104489
0.000373535
0.00036537
0.000364885
0.000365212
0.000365628
0.00036606
0.000366498
0.000366941
0.000367342
0.000367727
0.000368127
0.00036855
0.000369022
0.000369565
0.000370364
0.000371748
0.000374759
0.000446622
0.101199
0.000492685
0.000371179
0.000365384
0.000365246
0.000365537
0.000365876
0.000366233
0.000366596
0.000366966
0.000367304
0.000367622
0.00036795
0.000368287
0.000368652
0.000369042
0.000369587
0.000370399
0.000370986
0.000406755
0.105822
0.000445512
0.000369142
0.000365682
0.000365613
0.000365836
0.000366101
0.000366388
0.000366686
0.000366992
0.000367271
0.000367534
0.000367802
0.000368071
0.000368353
0.00036863
0.000368996
0.000369445
0.000368505
0.000384868
0.0899443
0.000411957
0.00036819
0.000366018
0.000365938
0.000366093
0.000366293
0.000366521
0.000366762
0.000367013
0.00036724
0.000367456
0.000367675
0.000367891
0.000368108
0.000368302
0.000368539
0.000368744
0.000366857
0.000383081
0.0862121
0.000402185
0.000368166
0.000366332
0.00036621
0.000366305
0.000366451
0.000366628
0.000366822
0.000367027
0.000367209
0.000367387
0.000367566
0.000367739
0.000367907
0.000368041
0.000368188
0.000368244
0.000365852
0.000376847
0.0859159
0.000433204
0.00036932
0.000366615
0.000366425
0.000366474
0.000366577
0.000366712
0.000366867
0.000367034
0.000367177
0.000367324
0.000367471
0.000367609
0.00036774
0.000367833
0.000367919
0.000367889
0.000365199
0.000371939
0.0754955
0.000427421
0.000369358
0.000366792
0.000366586
0.000366602
0.000366673
0.000366776
0.000366898
0.000367034
0.000367146
0.000367266
0.000367387
0.000367499
0.0003676
0.000367665
0.000367713
0.00036764
0.000364763
0.000372547
0.0527417
0.000413775
0.000369097
0.000366901
0.000366701
0.000366698
0.000366744
0.000366821
0.000366918
0.000367028
0.000367114
0.000367213
0.000367312
0.000367403
0.000367484
0.000367531
0.000367559
0.000367481
0.000364552
0.00036302
0.0161661
0.000382945
0.000367989
0.000366925
0.000366777
0.000366765
0.000366795
0.000366853
0.000366929
0.000367018
0.000367083
0.000367165
0.000367247
0.000367321
0.000367386
0.00036742
0.000367437
0.000367369
0.000367324
0.000363889
0.000363938
0.000367804
0.000367088
0.000366896
0.000366825
0.000366812
0.00036683
0.000366874
0.000366933
0.000367005
0.000367053
0.00036712
0.000367188
0.000367249
0.000367302
0.000367329
0.000367341
0.000367284
0.000367239
0.000367101
0.000367278
0.000367142
0.000367
0.000366912
0.000366858
0.000366843
0.000366853
0.000366885
0.000366931
0.000366989
0.000367024
0.00036708
0.000367136
0.000367187
0.00036723
0.000367252
0.000367261
0.000367217
0.000367184
0.000367053
0.000367153
0.000367079
0.00036699
0.000366923
0.000366878
0.000366861
0.000366866
0.000366889
0.000366926
0.000366972
0.000366997
0.000367043
0.00036709
0.000367132
0.000367167
0.000367185
0.000367194
0.000367159
0.000367134
0.000367037
0.000367092
0.00036704
0.000366977
0.000366926
0.000366887
0.000366871
0.000366872
0.000366889
0.000366917
0.000366954
0.000366972
0.00036701
0.000367048
0.000367083
0.000367113
0.000367128
0.000367133
0.000367106
0.000367089
0.000367018
0.000367048
0.00036701
0.000366961
0.000366919
0.000366888
0.000366874
0.000366873
0.000366885
0.000366907
0.000366937
0.000366948
0.000366979
0.000367011
0.000367041
0.000367065
0.000367077
0.000367086
0.000367068
0.000367054
0.000366999
0.000367014
0.000366985
0.00036695
0.000366915
0.000366886
0.000366872
0.00036687
0.000366878
0.000366895
0.000366919
0.000366926
0.000366951
0.000366978
0.000367003
0.000367025
0.000367038
0.000367043
0.000367026
0.000367018
0.00036698
0.000366988
0.000366962
0.000366931
0.000366904
0.000366883
0.00036687
0.000366865
0.00036687
0.000366883
0.000366902
0.000366905
0.000366926
0.000366949
0.00036697
0.000366988
0.000366998
0.000367004
0.000366994
0.000366986
0.000366956
0.000366959
0.000366939
0.000366917
0.000366894
0.000366874
0.000366862
0.000366858
0.000366861
0.000366871
0.000366886
0.000366886
0.000366904
0.000366923
0.00036694
0.000366956
0.000366965
0.00036697
0.000366963
0.000366957
0.000366934
0.000366934
0.000366918
0.0003669
0.000366881
0.000366865
0.000366854
0.000366849
0.000366851
0.000366858
0.00036687
0.000366869
0.000366884
0.000366899
0.000366914
0.000366928
0.000366935
0.000366941
0.000366934
0.000366932
0.000366917
0.000366917
0.000366902
0.000366885
0.000366869
0.000366855
0.000366845
0.00036684
0.000366841
0.000366847
0.000366856
0.000366853
0.000366865
0.000366879
0.000366891
0.000366903
0.00036691
0.000366915
0.000366913
0.000366911
0.000366897
0.000366896
0.000366885
0.000366873
0.000366858
0.000366845
0.000366836
0.000366831
0.000366831
0.000366835
0.000366843
0.00036684
0.00036685
0.000366861
0.000366871
0.000366881
0.000366887
0.000366892
0.00036689
0.000366889
0.000366879
0.000366878
0.000366868
0.000366858
0.000366846
0.000366835
0.000366827
0.000366823
0.000366822
0.000366825
0.000366831
0.000366827
0.000366835
0.000366845
0.000366854
0.000366862
0.000366868
0.000366873
0.000366871
0.000366871
0.000366864
0.000366862
0.000366854
0.000366846
0.000366836
0.000366826
0.000366819
0.000366815
0.000366814
0.000366816
0.00036682
0.000366816
0.000366823
0.000366831
0.000366838
0.000366846
0.000366851
0.000366855
0.000366855
0.000366855
0.00036685
0.000366849
0.000366842
0.000366835
0.000366826
0.000366818
0.000366811
0.000366807
0.000366806
0.000366807
0.00036681
0.000366806
0.000366812
0.000366819
0.000366825
0.000366832
0.000366836
0.00036684
0.000366841
0.000366841
0.000366837
0.000366836
0.000366831
0.000366825
0.000366817
0.00036681
0.000366804
0.0003668
0.000366798
0.000366799
0.000366802
0.000366798
0.000366803
0.000366808
0.000366814
0.00036682
0.000366824
0.000366828
0.000366828
0.000366829
0.000366826
0.000366826
0.000366821
0.000366816
0.000366809
0.000366803
0.000366798
0.000366794
0.000366792
0.000366792
0.000366794
0.00036679
0.000366794
0.000366799
0.000366804
0.000366809
0.000366813
0.000366817
0.000366818
0.000366819
0.000366817
0.000366816
0.000366812
0.000366808
0.000366802
0.000366796
0.000366792
0.000366788
0.000366786
0.000366786
0.000366787
0.000366784
0.000366788
0.000366791
0.000366796
0.000366801
0.000366804
0.000366808
0.000366809
0.00036681
0.000366808
0.000366808
0.000366805
0.000366801
0.000366796
0.000366791
0.000366787
0.000366783
0.000366781
0.000366781
0.000366782
0.000366779
0.000366782
0.000366785
0.000366789
0.000366793
0.000366796
0.0003668
0.000366801
0.000366803
0.000366801
0.000366801
0.000366798
0.000366795
0.000366791
0.000366786
0.000366782
0.000366779
0.000366777
0.000366777
0.000366777
0.000366775
0.000366777
0.00036678
0.000366784
0.000366788
0.00036679
0.000366794
0.000366795
0.000366797
0.000366796
0.000366796
0.000366794
0.000366791
0.000366787
0.000366783
0.000366779
0.000366776
0.000366774
0.000366774
0.000366773
0.000366771
0.000366773
0.000366776
0.000366779
0.000366783
0.000366785
0.000366789
0.00036679
0.000366792
0.000366791
0.000366792
0.000366789
0.000366787
0.000366783
0.000366779
0.000366776
0.000366773
0.000366771
0.000366771
0.00036677
0.00036677
0.000366771
0.000366773
0.000366777
0.00036678
0.000366782
0.000366786
0.000366787
0.000366789
0.000366789
0.00036679
0.000366787
0.000366785
0.000366782
0.000366778
0.000366775
0.000366772
0.00036677
0.00036677
0.000366769
0.000366768
0.000366769
0.000366771
0.000366774
0.000366777
0.000366779
0.000366783
0.000366784
0.000366786
0.000366786
0.000366787
0.000366784
0.000366783
0.000366779
0.000366775
0.000366773
0.00036677
0.000366768
0.000366768
0.000366767
0.000366801
0.000366783
0.000366803
0.000366812
0.000366792
0.000366812
0.000366821
0.000366801
0.00036682
0.000366801
0.00036682
0.0003668
0.000366817
0.000366794
0.000366785
0.000366806
0.000366784
0.000366801
0.000366807
0.000366782
0.000410674
0.000412761
0.000416036
0.000421254
0.00043008
0.00044455
0.000490342
0.000957455
0.00423042
0.00850267
0.0308528
0.00213566
0.00083433
0.000560128
0.000455882
0.00042172
0.000411822
0.000409444
0.000409503
0.000408084
0.000409675
0.000411889
0.000415103
0.000420375
0.000429653
0.000456523
0.000630381
0.00347863
0.0119396
0.0552819
0.185807
0.00107727
0.000631163
0.000467061
0.000419747
0.000408267
0.00040607
0.000406145
0.000406915
0.000406251
0.000407485
0.000409035
0.000411125
0.00041426
0.000419541
0.000429947
0.000475218
0.00189206
0.0291576
0.118352
0.0135709
0.000787396
0.000503531
0.00042303
0.000406249
0.000403587
0.000403674
0.000404342
0.000405217
0.000405416
0.000406423
0.0004076
0.000409075
0.000411145
0.000414405
0.000420522
0.000434541
0.000795408
0.00796363
0.130393
0.00311802
0.000555586
0.00042823
0.000405412
0.000402204
0.000402272
0.000402904
0.000403673
0.00040451
0.000405044
0.000405874
0.000406797
0.000407894
0.000409336
0.000411491
0.000415398
0.000423753
0.000548404
0.00411337
0.257245
0.00239965
0.000487875
0.000413346
0.000402432
0.000401605
0.000402106
0.000402793
0.000403519
0.000404267
0.000404872
0.000405562
0.000406306
0.00040715
0.000408198
0.000409672
0.00041221
0.000417449
0.000451634
0.00170873
0.342705
0.00152144
0.000432223
0.000404268
0.000401433
0.000401672
0.00040227
0.000402912
0.000403559
0.00040421
0.000404792
0.000405367
0.000405972
0.000406636
0.000407423
0.000408461
0.000410178
0.00041351
0.000431347
0.00163702
0.424105
0.0013985
0.0004214
0.000403044
0.000401622
0.000402006
0.000402556
0.000403118
0.000403676
0.000404232
0.000404751
0.00040523
0.000405725
0.000406252
0.00040685
0.000407587
0.00040874
0.000411097
0.000418466
0.000884171
0.416265
0.000879459
0.000407102
0.000402021
0.000401963
0.000402391
0.000402864
0.000403339
0.000403811
0.00040428
0.000404727
0.000405124
0.000405531
0.000405952
0.000406412
0.000406936
0.000407711
0.000409119
0.000412173
0.000502667
0.635521
0.000533954
0.000403876
0.000402258
0.000402407
0.000402769
0.000403156
0.000403548
0.000403941
0.000404333
0.000404706
0.000405036
0.00040537
0.000405707
0.000406061
0.000406434
0.00040695
0.000407739
0.000408087
0.000448588
1.82938
0.000455688
0.000403721
0.000402718
0.000402831
0.00040311
0.000403414
0.000403731
0.000404053
0.000404379
0.000404686
0.000404959
0.000405233
0.000405503
0.000405777
0.000406038
0.000406375
0.00040678
0.000405473
0.000420826
1.49322
0.000422161
0.000404026
0.000403157
0.000403201
0.0004034
0.000403633
0.000403885
0.000404146
0.000404414
0.000404663
0.000404889
0.000405114
0.00040533
0.000405541
0.000405722
0.000405933
0.000406089
0.000403722
0.000408473
1.36517
0.000417549
0.000404417
0.000403531
0.000403507
0.000403639
0.000403811
0.000404008
0.000404219
0.000404439
0.000404639
0.000404825
0.000405009
0.000405183
0.000405347
0.000405469
0.000405593
0.000405602
0.000402679
0.00040227
0.606962
0.000410601
0.000404732
0.000403824
0.000403749
0.000403829
0.000403953
0.000404106
0.000404274
0.000404453
0.000404611
0.000404765
0.000404917
0.000405057
0.000405184
0.000405267
0.000405334
0.000405262
0.000401998
0.000398607
0.499409
0.000409124
0.000404962
0.000404038
0.000403933
0.000403975
0.000404063
0.00040418
0.000404314
0.000404459
0.000404583
0.00040471
0.000404834
0.000404948
0.000405047
0.000405104
0.000405137
0.000405028
0.000401574
0.00039722
0.282224
0.000406073
0.000405105
0.000404184
0.000404067
0.000404085
0.000404145
0.000404233
0.00040434
0.000404458
0.000404554
0.000404658
0.000404761
0.000404854
0.000404932
0.000404972
0.000404987
0.000404882
0.000401344
0.000397345
0.147531
0.000403824
0.000404918
0.00040427
0.000404162
0.000404164
0.000404205
0.000404272
0.000404355
0.000404451
0.000404524
0.00040461
0.000404695
0.000404771
0.000404835
0.000404865
0.000404872
0.000404786
0.000404731
0.000398816
0.000401142
0.000405421
0.000404452
0.000404283
0.000404225
0.00040422
0.000404247
0.000404297
0.000404363
0.00040444
0.000404495
0.000404566
0.000404636
0.000404699
0.000404751
0.000404775
0.000404779
0.000404711
0.000404652
0.000404529
0.000404679
0.000404537
0.000404397
0.000404315
0.000404268
0.000404259
0.000404275
0.000404312
0.000404364
0.000404426
0.000404467
0.000404526
0.000404584
0.000404636
0.000404679
0.000404698
0.000404702
0.000404649
0.000404604
0.000404466
0.000404561
0.000404486
0.000404398
0.000404336
0.000404295
0.000404283
0.000404292
0.00040432
0.00040436
0.00040441
0.000404439
0.000404488
0.000404537
0.00040458
0.000404615
0.000404632
0.000404636
0.000404596
0.000404564
0.000404455
0.000404507
0.000404459
0.000404396
0.000404345
0.00040431
0.000404297
0.000404301
0.000404322
0.000404353
0.000404393
0.000404414
0.000404454
0.000404494
0.00040453
0.00040456
0.000404574
0.000404578
0.000404546
0.000404523
0.000404448
0.000404475
0.000404435
0.000404386
0.000404345
0.000404315
0.000404303
0.000404304
0.000404319
0.000404343
0.000404376
0.000404389
0.000404423
0.000404457
0.000404487
0.000404511
0.000404523
0.000404529
0.000404508
0.000404489
0.000404429
0.000404442
0.000404413
0.000404378
0.000404344
0.000404316
0.000404303
0.000404303
0.000404313
0.000404332
0.000404358
0.000404367
0.000404394
0.000404422
0.000404448
0.00040447
0.000404483
0.000404486
0.000404466
0.000404455
0.000404414
0.000404421
0.000404394
0.000404362
0.000404335
0.000404315
0.000404303
0.000404299
0.000404306
0.00040432
0.000404342
0.000404346
0.000404369
0.000404392
0.000404414
0.000404432
0.000404442
0.000404447
0.000404435
0.000404425
0.000404392
0.000404393
0.000404373
0.000404351
0.000404328
0.000404307
0.000404296
0.000404293
0.000404297
0.000404309
0.000404325
0.000404327
0.000404346
0.000404365
0.000404384
0.000404399
0.000404408
0.000404413
0.000404403
0.000404395
0.00040437
0.00040437
0.000404352
0.000404335
0.000404316
0.000404299
0.000404289
0.000404285
0.000404288
0.000404297
0.00040431
0.000404309
0.000404325
0.000404341
0.000404357
0.00040437
0.000404378
0.000404383
0.000404375
0.000404371
0.000404354
0.000404353
0.000404338
0.00040432
0.000404304
0.00040429
0.000404281
0.000404277
0.000404278
0.000404285
0.000404295
0.000404293
0.000404306
0.00040432
0.000404333
0.000404345
0.000404352
0.000404357
0.000404353
0.000404351
0.000404335
0.000404333
0.000404323
0.00040431
0.000404294
0.000404281
0.000404272
0.000404268
0.000404269
0.000404273
0.000404282
0.000404279
0.00040429
0.000404302
0.000404312
0.000404323
0.000404329
0.000404333
0.000404331
0.000404329
0.000404318
0.000404316
0.000404306
0.000404295
0.000404283
0.000404272
0.000404264
0.00040426
0.00040426
0.000404263
0.00040427
0.000404266
0.000404275
0.000404285
0.000404294
0.000404303
0.000404309
0.000404313
0.000404312
0.000404311
0.000404302
0.000404301
0.000404292
0.000404283
0.000404273
0.000404263
0.000404256
0.000404252
0.000404251
0.000404253
0.000404258
0.000404255
0.000404262
0.00040427
0.000404278
0.000404286
0.000404291
0.000404296
0.000404295
0.000404295
0.000404288
0.000404287
0.00040428
0.000404272
0.000404263
0.000404255
0.000404248
0.000404244
0.000404243
0.000404245
0.000404248
0.000404244
0.000404251
0.000404258
0.000404265
0.000404271
0.000404276
0.00040428
0.00040428
0.00040428
0.000404276
0.000404274
0.000404268
0.000404262
0.000404254
0.000404247
0.000404241
0.000404237
0.000404235
0.000404237
0.000404239
0.000404236
0.000404241
0.000404247
0.000404253
0.000404259
0.000404263
0.000404267
0.000404267
0.000404268
0.000404264
0.000404264
0.000404258
0.000404253
0.000404246
0.000404239
0.000404234
0.000404231
0.000404229
0.00040423
0.000404232
0.000404228
0.000404232
0.000404237
0.000404243
0.000404248
0.000404252
0.000404255
0.000404256
0.000404257
0.000404255
0.000404254
0.00040425
0.000404245
0.000404239
0.000404233
0.000404228
0.000404225
0.000404223
0.000404223
0.000404225
0.000404222
0.000404225
0.000404229
0.000404234
0.000404239
0.000404242
0.000404246
0.000404247
0.000404248
0.000404246
0.000404246
0.000404242
0.000404238
0.000404233
0.000404228
0.000404223
0.00040422
0.000404218
0.000404218
0.000404219
0.000404216
0.000404219
0.000404223
0.000404227
0.000404231
0.000404234
0.000404238
0.000404239
0.000404241
0.000404239
0.000404239
0.000404236
0.000404233
0.000404228
0.000404223
0.000404219
0.000404216
0.000404214
0.000404214
0.000404214
0.000404212
0.000404215
0.000404218
0.000404221
0.000404225
0.000404228
0.000404232
0.000404233
0.000404235
0.000404234
0.000404234
0.000404231
0.000404228
0.000404224
0.000404219
0.000404216
0.000404213
0.000404211
0.00040421
0.00040421
0.000404208
0.00040421
0.000404213
0.000404217
0.00040422
0.000404223
0.000404227
0.000404228
0.00040423
0.000404229
0.000404229
0.000404226
0.000404224
0.00040422
0.000404216
0.000404213
0.000404209
0.000404208
0.000404207
0.000404207
0.000404207
0.000404208
0.000404211
0.000404214
0.000404218
0.00040422
0.000404224
0.000404225
0.000404227
0.000404226
0.000404227
0.000404224
0.000404223
0.000404218
0.000404214
0.000404212
0.000404208
0.000404207
0.000404207
0.000404205
0.000404204
0.000404206
0.000404208
0.000404211
0.000404214
0.000404217
0.000404221
0.000404222
0.000404224
0.000404223
0.000404224
0.000404221
0.00040422
0.000404216
0.000404212
0.00040421
0.000404206
0.000404205
0.000404205
0.000404203
0.000404239
0.000404219
0.00040424
0.00040425
0.000404229
0.00040425
0.00040426
0.000404238
0.000404258
0.000404238
0.000404258
0.000404236
0.000404255
0.000404231
0.000404221
0.000404243
0.00040422
0.000404238
0.000404245
0.000404218
0.000452474
0.000454517
0.000457741
0.000463019
0.000472544
0.000489304
0.000550627
0.001332
0.00522019
0.0350468
11.6282
0.00190265
0.000882447
0.00057242
0.000482041
0.000457887
0.000451917
0.000450803
0.000451232
0.000449999
0.000451489
0.000453554
0.000456644
0.00046189
0.00047185
0.000505341
0.000755499
0.00194761
0.0287965
0.0308273
0.00109984
0.000622369
0.000485815
0.000454747
0.00044852
0.000447658
0.000448045
0.00044887
0.000448643
0.000449814
0.000451254
0.0004532
0.000456181
0.000461529
0.000472749
0.000526559
0.0015221
0.0715255
0.0133744
0.000770919
0.000511695
0.000455686
0.000446497
0.000445515
0.00044596
0.000446727
0.000447628
0.000448099
0.000449067
0.000450164
0.000451518
0.000453411
0.000456565
0.000462666
0.000477732
0.000590826
0.00719647
0.00376793
0.000554974
0.000459302
0.000445671
0.000444326
0.000444769
0.000445517
0.00044634
0.0004472
0.000447895
0.000448703
0.000449575
0.000450583
0.000451878
0.000453883
0.000457571
0.000466104
0.000508236
0.00215798
0.00254389
0.000495584
0.00044932
0.000444076
0.000444131
0.000444812
0.000445573
0.000446344
0.000447115
0.000447829
0.000448509
0.00044922
0.000450002
0.000450939
0.00045227
0.000454558
0.000459705
0.000475276
0.00140107
0.00158002
0.000460844
0.000444892
0.000443875
0.000444407
0.000445101
0.0004458
0.000446485
0.000447159
0.000447817
0.000448389
0.000448975
0.000449596
0.000450302
0.00045122
0.000452702
0.000455845
0.000461836
0.00108852
0.00118997
0.000453486
0.000444514
0.000444277
0.000444845
0.000445468
0.000446077
0.000446668
0.000447246
0.000447822
0.000448303
0.000448787
0.000449286
0.000449825
0.000450467
0.000451418
0.000453607
0.000456887
0.000672808
0.000830828
0.000447159
0.000444492
0.00044478
0.000445305
0.000445833
0.000446348
0.000446849
0.000447339
0.000447829
0.000448232
0.000448633
0.000449036
0.000449453
0.000449905
0.000450526
0.000451735
0.000451731
0.000489002
0.000542571
0.000445937
0.000444982
0.000445302
0.000445735
0.000446168
0.000446594
0.000447012
0.000447423
0.000447832
0.000448168
0.0004485
0.000448825
0.000449149
0.000449467
0.000449868
0.000450475
0.000448425
0.000465985
0.000479611
0.000446192
0.000445537
0.00044578
0.000446116
0.000446459
0.000446805
0.000447149
0.000447492
0.000447828
0.000448108
0.000448382
0.000448645
0.000448896
0.000449117
0.000449367
0.000449615
0.000446334
0.000454347
0.000457063
0.000446663
0.000446039
0.00044619
0.000446439
0.000446704
0.000446981
0.000447262
0.000447545
0.000447817
0.000448049
0.000448275
0.000448488
0.000448683
0.000448834
0.000448979
0.000449008
0.00044499
0.000446618
0.000454621
0.000447131
0.000446461
0.000446531
0.000446704
0.000446904
0.000447122
0.000447349
0.000447582
0.000447801
0.000447993
0.00044818
0.000448352
0.000448503
0.000448604
0.000448678
0.000448584
0.000444137
0.000442975
0.000448187
0.000447518
0.000446796
0.000446802
0.000446916
0.000447063
0.000447233
0.000447415
0.000447606
0.000447779
0.000447939
0.000448093
0.000448232
0.000448351
0.000448417
0.000448447
0.000448293
0.000443602
0.000441508
0.000447225
0.000447798
0.000447045
0.000447009
0.00044708
0.000447186
0.000447318
0.000447464
0.000447619
0.000447755
0.000447887
0.000448014
0.000448127
0.000448221
0.000448265
0.00044827
0.000448098
0.000443304
0.000440426
0.000446165
0.000447981
0.000447222
0.000447164
0.000447204
0.000447279
0.00044738
0.000447496
0.000447623
0.000447729
0.000447838
0.000447944
0.000448036
0.000448111
0.000448141
0.000448136
0.000447988
0.000443184
0.000441276
0.00044513
0.000448101
0.000447347
0.000447277
0.000447296
0.000447349
0.000447425
0.000447517
0.00044762
0.000447701
0.000447791
0.000447879
0.000447955
0.000448016
0.00044804
0.000448034
0.000447925
0.000447865
0.000442939
0.000444958
0.000448382
0.00044752
0.000447397
0.000447357
0.000447363
0.000447399
0.000447456
0.000447529
0.000447612
0.000447673
0.000447748
0.000447821
0.000447884
0.000447934
0.000447954
0.000447949
0.000447867
0.000447792
0.000447644
0.000447775
0.000447643
0.000447518
0.00044745
0.000447412
0.00044741
0.000447433
0.000447476
0.000447533
0.0004476
0.000447646
0.000447708
0.000447768
0.000447821
0.000447863
0.000447879
0.000447877
0.000447815
0.000447759
0.000447602
0.000447682
0.00044762
0.000447539
0.000447482
0.000447447
0.000447441
0.000447455
0.000447486
0.000447531
0.000447586
0.000447619
0.00044767
0.000447721
0.000447765
0.0004478
0.000447814
0.000447813
0.000447767
0.000447724
0.000447607
0.00044765
0.000447605
0.000447547
0.0004475
0.000447469
0.000447459
0.000447467
0.000447491
0.000447526
0.00044757
0.000447593
0.000447636
0.000447678
0.000447715
0.000447745
0.000447757
0.000447756
0.00044772
0.000447689
0.000447608
0.000447629
0.000447591
0.000447544
0.000447506
0.000447479
0.000447469
0.000447473
0.00044749
0.000447518
0.000447553
0.000447569
0.000447604
0.00044764
0.000447671
0.000447695
0.000447706
0.000447709
0.000447684
0.00044766
0.000447595
0.000447604
0.000447576
0.000447542
0.000447509
0.000447483
0.000447471
0.000447473
0.000447486
0.000447507
0.000447535
0.000447546
0.000447575
0.000447605
0.000447631
0.000447653
0.000447666
0.000447666
0.000447643
0.000447626
0.000447582
0.000447586
0.000447559
0.000447529
0.000447503
0.000447485
0.000447473
0.000447471
0.000447479
0.000447496
0.000447519
0.000447524
0.000447549
0.000447574
0.000447596
0.000447615
0.000447624
0.000447627
0.000447613
0.000447602
0.000447566
0.000447566
0.000447545
0.000447521
0.000447498
0.000447478
0.000447468
0.000447466
0.000447472
0.000447484
0.000447502
0.000447505
0.000447526
0.000447546
0.000447565
0.000447581
0.000447589
0.000447593
0.000447581
0.000447571
0.000447544
0.000447542
0.000447524
0.000447506
0.000447487
0.000447471
0.000447461
0.000447458
0.000447462
0.000447472
0.000447487
0.000447487
0.000447504
0.000447521
0.000447537
0.000447551
0.000447559
0.000447562
0.000447553
0.000447548
0.00044753
0.000447528
0.000447511
0.000447493
0.000447477
0.000447463
0.000447454
0.000447451
0.000447453
0.000447461
0.000447472
0.000447471
0.000447485
0.000447499
0.000447513
0.000447525
0.000447532
0.000447536
0.000447532
0.000447528
0.000447511
0.000447508
0.000447497
0.000447484
0.000447468
0.000447455
0.000447446
0.000447442
0.000447444
0.000447449
0.000447459
0.000447456
0.000447468
0.00044748
0.000447492
0.000447502
0.000447508
0.000447512
0.000447509
0.000447506
0.000447494
0.000447491
0.000447481
0.00044747
0.000447457
0.000447446
0.000447438
0.000447434
0.000447435
0.000447439
0.000447446
0.000447443
0.000447452
0.000447463
0.000447473
0.000447482
0.000447487
0.000447492
0.000447489
0.000447488
0.000447479
0.000447476
0.000447467
0.000447458
0.000447447
0.000447437
0.00044743
0.000447426
0.000447426
0.000447429
0.000447435
0.000447431
0.000447439
0.000447448
0.000447456
0.000447464
0.000447469
0.000447473
0.000447472
0.000447471
0.000447464
0.000447463
0.000447455
0.000447447
0.000447438
0.000447429
0.000447423
0.000447419
0.000447418
0.00044742
0.000447424
0.000447421
0.000447427
0.000447435
0.000447442
0.000447449
0.000447453
0.000447458
0.000447457
0.000447457
0.000447452
0.00044745
0.000447444
0.000447437
0.000447429
0.000447421
0.000447416
0.000447412
0.00044741
0.000447412
0.000447415
0.000447412
0.000447417
0.000447423
0.00044743
0.000447436
0.00044744
0.000447444
0.000447444
0.000447445
0.00044744
0.000447439
0.000447434
0.000447428
0.000447421
0.000447414
0.000447409
0.000447405
0.000447404
0.000447405
0.000447407
0.000447404
0.000447408
0.000447414
0.000447419
0.000447425
0.000447428
0.000447432
0.000447433
0.000447434
0.00044743
0.00044743
0.000447425
0.00044742
0.000447414
0.000447408
0.000447403
0.000447399
0.000447398
0.000447398
0.0004474
0.000447397
0.000447401
0.000447405
0.00044741
0.000447415
0.000447419
0.000447423
0.000447423
0.000447425
0.000447422
0.000447422
0.000447418
0.000447414
0.000447408
0.000447402
0.000447398
0.000447394
0.000447393
0.000447393
0.000447394
0.000447391
0.000447395
0.000447398
0.000447403
0.000447407
0.00044741
0.000447414
0.000447415
0.000447417
0.000447415
0.000447415
0.000447411
0.000447408
0.000447402
0.000447397
0.000447394
0.00044739
0.000447388
0.000447388
0.000447389
0.000447387
0.00044739
0.000447393
0.000447397
0.000447401
0.000447404
0.000447408
0.000447409
0.000447411
0.000447409
0.00044741
0.000447406
0.000447403
0.000447398
0.000447394
0.000447391
0.000447387
0.000447385
0.000447385
0.000447385
0.000447383
0.000447385
0.000447388
0.000447392
0.000447396
0.000447399
0.000447403
0.000447404
0.000447406
0.000447404
0.000447405
0.000447402
0.000447399
0.000447395
0.00044739
0.000447387
0.000447384
0.000447382
0.000447382
0.000447382
0.000447382
0.000447384
0.000447386
0.00044739
0.000447393
0.000447396
0.0004474
0.000447401
0.000447403
0.000447402
0.000447403
0.000447399
0.000447398
0.000447393
0.000447389
0.000447386
0.000447383
0.000447381
0.000447381
0.00044738
0.000447379
0.000447381
0.000447383
0.000447387
0.00044739
0.000447392
0.000447396
0.000447397
0.0004474
0.000447398
0.0004474
0.000447396
0.000447395
0.00044739
0.000447386
0.000447384
0.00044738
0.000447379
0.000447379
0.000447378
0.000447414
0.000447394
0.000447416
0.000447426
0.000447404
0.000447426
0.000447436
0.000447413
0.000447434
0.000447413
0.000447435
0.000447411
0.00044743
0.000447405
0.000447395
0.000447418
0.000447394
0.000447413
0.00044742
0.000447392
0.000500654
0.000502327
0.000504918
0.000509205
0.000517884
0.000535138
0.000614546
0.0014832
0.0116318
5.66898
0.0207873
0.00149659
0.000744364
0.000555867
0.000511364
0.000501205
0.000499016
0.000498892
0.000499528
0.000498596
0.000499816
0.000501419
0.000503801
0.000507936
0.000516964
0.00055612
0.000917005
0.00412161
0.417071
0.00774155
0.000853358
0.000572842
0.000509663
0.00049799
0.000496086
0.000496158
0.000496761
0.000497593
0.000497832
0.000498844
0.000500008
0.000501504
0.00050376
0.000508081
0.000518111
0.000580135
0.00205973
0.261079
0.0049905
0.000636715
0.00051773
0.000496948
0.000494315
0.000494482
0.000495173
0.000496005
0.000496895
0.000497628
0.000498498
0.000499424
0.000500492
0.000501903
0.000504298
0.000508952
0.000523943
0.000653562
0.0218209
0.00259196
0.000534147
0.000497734
0.000493468
0.000493522
0.000494234
0.000495068
0.000495923
0.000496775
0.000497618
0.000498368
0.000499133
0.000499959
0.000500939
0.000502411
0.000504998
0.000512657
0.000556049
0.00436639
0.00163857
0.000508639
0.000494089
0.000493079
0.000493681
0.000494483
0.000495297
0.000496092
0.000496863
0.000497672
0.000498318
0.000498961
0.000499624
0.000500354
0.000501318
0.00050284
0.000507082
0.00052286
0.00185544
0.00106922
0.000498045
0.000493168
0.000493397
0.000494125
0.000494889
0.000495626
0.000496334
0.000497014
0.000497739
0.000498292
0.000498836
0.000499378
0.000499942
0.000500606
0.000501548
0.000503985
0.000509145
0.000924973
0.000775635
0.000495719
0.000493485
0.000493963
0.000494652
0.000495327
0.00049597
0.000496583
0.000497171
0.000497798
0.000498269
0.000498727
0.000499173
0.000499615
0.00050008
0.000500654
0.000502262
0.000504909
0.00081723
0.000648199
0.000494711
0.000494031
0.000494572
0.00049517
0.000495743
0.000496288
0.00049681
0.000497312
0.000497843
0.000498242
0.000498627
0.000498994
0.000499344
0.000499674
0.000500034
0.000500785
0.000501014
0.00054058
0.000531647
0.0004949
0.000494681
0.000495152
0.000495644
0.000496115
0.000496569
0.000497007
0.000497431
0.000497872
0.000498209
0.000498531
0.000498834
0.00049911
0.000499343
0.000499561
0.000499837
0.000498542
0.000514159
0.000505048
0.000495471
0.000495306
0.000495671
0.000496059
0.000496436
0.000496806
0.000497169
0.000497525
0.000497888
0.000498171
0.00049844
0.000498687
0.000498906
0.000499066
0.000499188
0.000499199
0.00049703
0.000500892
0.000498387
0.000496075
0.000495858
0.000496116
0.000496409
0.000496705
0.000497003
0.000497301
0.000497597
0.000497891
0.000498127
0.000498352
0.000498554
0.000498726
0.000498834
0.000498889
0.000498755
0.000496113
0.000495627
0.000497335
0.000496619
0.00049632
0.000496485
0.000496698
0.000496924
0.000497161
0.000497404
0.000497649
0.000497886
0.000498082
0.000498269
0.000498434
0.00049857
0.00049864
0.00049865
0.000498444
0.000495534
0.000492954
0.000496141
0.000497071
0.000496692
0.000496782
0.00049693
0.0004971
0.000497286
0.000497482
0.000497684
0.000497872
0.000498036
0.000498192
0.000498327
0.000498433
0.000498477
0.000498462
0.000498233
0.00049518
0.000492647
0.000496146
0.000497407
0.000496975
0.000497012
0.000497111
0.000497237
0.000497382
0.00049754
0.000497705
0.000497853
0.00049799
0.000498118
0.000498229
0.000498315
0.000498343
0.000498314
0.000498092
0.000494997
0.000492011
0.000496062
0.000497644
0.000497182
0.000497186
0.00049725
0.000497342
0.000497454
0.00049758
0.000497715
0.000497831
0.000497944
0.000498052
0.000498143
0.000498212
0.000498231
0.000498202
0.000498022
0.000494949
0.000491956
0.000495992
0.000497825
0.000497339
0.000497318
0.000497356
0.00049742
0.000497506
0.000497607
0.000497717
0.000497806
0.0004979
0.000497989
0.000498065
0.000498122
0.000498138
0.000498116
0.000497986
0.000497884
0.000494688
0.000495941
0.000498088
0.000497505
0.000497435
0.000497414
0.000497433
0.000497478
0.000497543
0.000497623
0.000497712
0.00049778
0.000497858
0.000497933
0.000497996
0.000498044
0.000498057
0.000498042
0.000497945
0.000497851
0.000497646
0.000497743
0.000497657
0.00049756
0.000497507
0.000497481
0.000497488
0.000497518
0.000497567
0.00049763
0.000497703
0.000497754
0.000497818
0.000497881
0.000497934
0.000497974
0.000497987
0.000497976
0.000497905
0.000497834
0.000497658
0.000497714
0.00049767
0.0004976
0.000497553
0.000497526
0.000497525
0.000497545
0.000497582
0.000497631
0.00049769
0.000497727
0.000497781
0.000497833
0.000497878
0.000497912
0.000497924
0.000497917
0.000497863
0.000497809
0.000497681
0.00049771
0.000497673
0.000497622
0.000497581
0.000497555
0.000497549
0.000497561
0.000497589
0.000497628
0.000497675
0.000497702
0.000497747
0.000497791
0.000497828
0.000497858
0.000497867
0.000497863
0.00049782
0.000497782
0.000497693
0.000497706
0.000497671
0.000497627
0.000497593
0.000497569
0.000497563
0.00049757
0.000497591
0.000497621
0.000497659
0.000497677
0.000497715
0.000497752
0.000497783
0.000497807
0.000497816
0.000497817
0.000497788
0.000497757
0.000497687
0.00049769
0.000497664
0.000497633
0.000497602
0.000497577
0.000497567
0.000497572
0.000497588
0.000497611
0.000497642
0.000497655
0.000497685
0.000497716
0.000497743
0.000497766
0.000497777
0.000497774
0.000497748
0.000497726
0.000497679
0.000497679
0.000497652
0.000497623
0.000497599
0.000497583
0.000497573
0.000497572
0.000497582
0.000497601
0.000497626
0.000497633
0.000497659
0.000497685
0.000497708
0.000497726
0.000497734
0.000497737
0.00049772
0.000497705
0.000497667
0.000497664
0.000497643
0.000497619
0.000497597
0.000497578
0.000497569
0.000497568
0.000497575
0.000497589
0.000497609
0.000497613
0.000497635
0.000497656
0.000497676
0.000497692
0.000497699
0.000497702
0.000497688
0.000497675
0.000497646
0.000497642
0.000497624
0.000497607
0.000497588
0.000497572
0.000497563
0.000497561
0.000497566
0.000497578
0.000497593
0.000497595
0.000497613
0.000497631
0.000497647
0.000497661
0.000497668
0.000497671
0.00049766
0.000497653
0.000497634
0.00049763
0.000497613
0.000497594
0.000497579
0.000497565
0.000497557
0.000497554
0.000497557
0.000497566
0.000497579
0.000497578
0.000497593
0.000497608
0.000497622
0.000497635
0.000497641
0.000497645
0.00049764
0.000497635
0.000497616
0.000497611
0.000497601
0.000497587
0.000497571
0.000497558
0.00049755
0.000497546
0.000497548
0.000497555
0.000497565
0.000497563
0.000497575
0.000497588
0.0004976
0.000497611
0.000497617
0.00049762
0.000497616
0.000497612
0.000497599
0.000497596
0.000497585
0.000497573
0.00049756
0.000497549
0.000497542
0.000497538
0.000497539
0.000497544
0.000497552
0.000497549
0.00049756
0.000497571
0.000497581
0.00049759
0.000497596
0.000497599
0.000497596
0.000497594
0.000497584
0.000497581
0.000497572
0.000497562
0.000497551
0.000497541
0.000497534
0.00049753
0.00049753
0.000497534
0.00049754
0.000497537
0.000497546
0.000497555
0.000497564
0.000497572
0.000497577
0.000497581
0.000497579
0.000497578
0.00049757
0.000497568
0.00049756
0.000497551
0.000497542
0.000497533
0.000497527
0.000497523
0.000497522
0.000497525
0.00049753
0.000497526
0.000497533
0.000497541
0.000497549
0.000497556
0.000497561
0.000497565
0.000497564
0.000497563
0.000497557
0.000497555
0.000497549
0.000497542
0.000497533
0.000497525
0.00049752
0.000497516
0.000497515
0.000497517
0.00049752
0.000497517
0.000497523
0.00049753
0.000497536
0.000497543
0.000497547
0.000497551
0.00049755
0.000497551
0.000497546
0.000497545
0.000497539
0.000497533
0.000497525
0.000497518
0.000497513
0.000497509
0.000497508
0.000497509
0.000497512
0.000497509
0.000497514
0.000497519
0.000497525
0.000497531
0.000497535
0.000497539
0.000497539
0.00049754
0.000497536
0.000497535
0.00049753
0.000497525
0.000497518
0.000497512
0.000497507
0.000497504
0.000497502
0.000497503
0.000497505
0.000497502
0.000497506
0.000497511
0.000497516
0.000497521
0.000497525
0.000497529
0.000497529
0.00049753
0.000497527
0.000497527
0.000497522
0.000497518
0.000497512
0.000497506
0.000497502
0.000497499
0.000497497
0.000497498
0.000497499
0.000497496
0.0004975
0.000497504
0.000497508
0.000497513
0.000497516
0.00049752
0.000497521
0.000497522
0.00049752
0.00049752
0.000497516
0.000497512
0.000497507
0.000497501
0.000497498
0.000497494
0.000497492
0.000497493
0.000497493
0.000497492
0.000497495
0.000497498
0.000497503
0.000497507
0.00049751
0.000497514
0.000497514
0.000497516
0.000497514
0.000497515
0.000497511
0.000497508
0.000497503
0.000497498
0.000497495
0.000497491
0.000497489
0.00049749
0.000497489
0.000497488
0.00049749
0.000497493
0.000497497
0.000497501
0.000497504
0.000497508
0.000497509
0.000497511
0.000497509
0.00049751
0.000497506
0.000497504
0.000497499
0.000497494
0.000497491
0.000497488
0.000497486
0.000497486
0.000497486
0.000497486
0.000497488
0.000497491
0.000497495
0.000497498
0.000497501
0.000497505
0.000497506
0.000497508
0.000497507
0.000497508
0.000497504
0.000497503
0.000497497
0.000497493
0.000497491
0.000497487
0.000497485
0.000497486
0.000497484
0.000497484
0.000497485
0.000497488
0.000497492
0.000497495
0.000497497
0.000497502
0.000497502
0.000497505
0.000497503
0.000497505
0.000497501
0.0004975
0.000497495
0.00049749
0.000497488
0.000497484
0.000497483
0.000497484
0.000497482
0.000497519
0.000497498
0.000497521
0.000497532
0.000497509
0.000497532
0.000497542
0.000497517
0.00049754
0.000497517
0.00049754
0.000497515
0.000497536
0.000497509
0.000497498
0.000497523
0.000497498
0.000497518
0.000497525
0.000497496
0.000556866
0.000558012
0.000559596
0.000562069
0.000567332
0.000579354
0.000664954
0.0022665
0.108533
0.0110211
0.000893796
0.000638423
0.000576318
0.000560348
0.000555905
0.000554753
0.000554744
0.000555222
0.000555951
0.000555664
0.00055656
0.000557583
0.000558937
0.000561146
0.000566455
0.000604094
0.00108035
0.0101161
0.0095256
0.000651841
0.000578609
0.000558364
0.000553468
0.000552485
0.000552669
0.000553261
0.000554009
0.000554819
0.000555471
0.000556282
0.000557108
0.000558026
0.000559246
0.000561481
0.000567458
0.000626546
0.00205207
1.57865
0.00819549
0.000598337
0.000561465
0.000552731
0.000551231
0.000551442
0.000552126
0.000552951
0.000553804
0.000554647
0.000555583
0.000556324
0.000557042
0.000557764
0.000558572
0.000559766
0.00056199
0.000571369
0.00063819
0.0258845
0.00347037
0.000570576
0.000554009
0.000550816
0.000550756
0.000551427
0.000552273
0.000553144
0.000553994
0.000554807
0.000555757
0.000556425
0.000557057
0.000557663
0.00055827
0.000559014
0.000560158
0.000563982
0.000585601
0.0026113
0.00145487
0.000560816
0.000551603
0.00055052
0.000551023
0.000551834
0.000552687
0.000553515
0.000554304
0.00055505
0.000555929
0.000556523
0.000557079
0.000557598
0.000558084
0.000558587
0.000559218
0.000561058
0.000566053
0.000820872
0.00104391
0.000556195
0.000550972
0.000550884
0.000551582
0.000552387
0.000553176
0.000553925
0.000554633
0.0005553
0.000556077
0.000556598
0.000557083
0.000557528
0.000557927
0.000558287
0.000558649
0.000559512
0.000559775
0.000614217
0.000793439
0.000554056
0.000551164
0.00055152
0.000552235
0.000552968
0.000553665
0.000554321
0.00055494
0.000555524
0.000556192
0.000556644
0.000557064
0.000557444
0.000557773
0.000558034
0.000558236
0.000558577
0.00056105
0.000589573
0.000702019
0.000553288
0.000551723
0.00055224
0.00055289
0.000553521
0.000554116
0.000554677
0.000555208
0.000555713
0.000556279
0.000556667
0.000557027
0.00055735
0.00055762
0.000557811
0.000557914
0.000557927
0.00055892
0.000567817
0.000627015
0.000553255
0.000552426
0.000552951
0.000553499
0.000554022
0.000554516
0.000554986
0.000555436
0.000555867
0.000556338
0.00055667
0.000556977
0.000557248
0.000557468
0.000557605
0.000557644
0.000557484
0.000557734
0.000558499
0.00059048
0.000553648
0.000553149
0.000553604
0.00055404
0.000554458
0.000554859
0.000555247
0.000555624
0.000555988
0.000556376
0.000556658
0.000556918
0.000557144
0.000557322
0.000557416
0.000557411
0.000557161
0.000557056
0.000554338
0.000572589
0.000554215
0.000553824
0.000554177
0.000554505
0.000554829
0.000555147
0.000555464
0.000555775
0.00055608
0.000556396
0.000556633
0.000556852
0.00055704
0.000557185
0.000557246
0.000557211
0.00055692
0.000556654
0.000552701
0.000557566
0.00055481
0.000554415
0.000554662
0.000554894
0.000555136
0.000555384
0.000555637
0.000555893
0.000556147
0.000556402
0.000556602
0.000556786
0.000556942
0.000557057
0.000557094
0.000557042
0.000556742
0.000556415
0.000552326
0.000553607
0.000555352
0.000554905
0.000555056
0.000555209
0.000555385
0.000555574
0.000555776
0.000555984
0.000556194
0.000556398
0.000556565
0.00055672
0.000556849
0.000556942
0.000556962
0.000556903
0.000556619
0.000556281
0.000552049
0.000553222
0.000555781
0.000555287
0.000555365
0.000555458
0.000555581
0.000555724
0.000555883
0.000556051
0.000556224
0.000556386
0.000556526
0.000556654
0.000556762
0.000556837
0.000556849
0.00055679
0.000556541
0.000556241
0.000552043
0.000553293
0.000556105
0.000555575
0.0005556
0.000555651
0.000555734
0.00055584
0.000555964
0.0005561
0.000556242
0.000556368
0.000556485
0.000556593
0.000556683
0.000556744
0.000556753
0.000556703
0.000556506
0.000556283
0.000552257
0.000553407
0.000556355
0.000555797
0.000555779
0.000555798
0.000555852
0.000555928
0.000556024
0.000556132
0.000556249
0.000556347
0.000556444
0.000556535
0.00055661
0.000556662
0.000556669
0.000556632
0.000556485
0.000556323
0.000555986
0.000556074
0.000556013
0.000555936
0.00055591
0.000555908
0.000555939
0.000555993
0.000556066
0.000556153
0.000556248
0.000556323
0.000556404
0.00055648
0.000556543
0.000556588
0.000556595
0.000556568
0.000556459
0.000556339
0.00055606
0.000556115
0.000556099
0.000556034
0.000556
0.000555986
0.000556003
0.00055604
0.000556096
0.000556164
0.000556242
0.000556298
0.000556366
0.00055643
0.000556483
0.000556521
0.000556529
0.00055651
0.000556427
0.000556338
0.000556146
0.000556174
0.000556148
0.000556095
0.000556059
0.000556041
0.000556047
0.000556072
0.000556114
0.000556168
0.000556231
0.000556272
0.000556329
0.000556383
0.000556428
0.000556461
0.000556469
0.000556455
0.000556394
0.000556328
0.000556191
0.000556203
0.000556175
0.000556131
0.000556096
0.000556076
0.000556075
0.000556092
0.000556124
0.000556166
0.000556217
0.000556248
0.000556295
0.00055634
0.000556378
0.000556407
0.000556414
0.000556404
0.000556356
0.000556309
0.000556214
0.000556217
0.000556185
0.000556146
0.000556116
0.000556096
0.000556094
0.000556104
0.000556128
0.000556161
0.000556203
0.000556223
0.000556263
0.000556301
0.000556334
0.000556356
0.000556364
0.000556362
0.000556328
0.000556291
0.000556214
0.000556212
0.000556188
0.000556159
0.000556131
0.000556108
0.000556101
0.000556109
0.000556127
0.000556153
0.000556186
0.000556201
0.000556233
0.000556265
0.000556293
0.000556316
0.000556326
0.00055632
0.000556289
0.000556263
0.000556213
0.000556208
0.000556182
0.000556154
0.000556131
0.000556118
0.000556109
0.00055611
0.000556122
0.000556143
0.00055617
0.000556179
0.000556206
0.000556233
0.000556257
0.000556276
0.000556282
0.000556283
0.000556264
0.000556245
0.000556204
0.000556198
0.000556177
0.000556154
0.000556132
0.000556114
0.000556107
0.000556108
0.000556116
0.000556132
0.000556154
0.000556159
0.000556182
0.000556204
0.000556224
0.00055624
0.000556247
0.000556248
0.000556233
0.000556216
0.000556184
0.000556178
0.00055616
0.000556144
0.000556125
0.000556111
0.000556102
0.000556102
0.000556108
0.000556121
0.000556138
0.00055614
0.000556159
0.000556178
0.000556195
0.000556209
0.000556216
0.000556217
0.000556204
0.000556196
0.000556175
0.00055617
0.000556152
0.000556132
0.000556118
0.000556105
0.000556097
0.000556095
0.000556099
0.000556109
0.000556123
0.000556123
0.000556139
0.000556155
0.00055617
0.000556182
0.000556188
0.000556191
0.000556185
0.000556178
0.000556158
0.000556152
0.000556141
0.000556128
0.000556111
0.000556098
0.00055609
0.000556088
0.00055609
0.000556098
0.000556109
0.000556108
0.000556121
0.000556135
0.000556147
0.000556158
0.000556163
0.000556166
0.000556161
0.000556156
0.000556142
0.000556137
0.000556126
0.000556114
0.000556101
0.00055609
0.000556083
0.00055608
0.000556082
0.000556087
0.000556096
0.000556094
0.000556105
0.000556116
0.000556127
0.000556136
0.000556142
0.000556145
0.000556141
0.000556138
0.000556127
0.000556123
0.000556113
0.000556104
0.000556092
0.000556083
0.000556076
0.000556072
0.000556073
0.000556077
0.000556084
0.000556081
0.00055609
0.0005561
0.000556109
0.000556118
0.000556123
0.000556126
0.000556124
0.000556122
0.000556113
0.00055611
0.000556102
0.000556093
0.000556083
0.000556075
0.000556068
0.000556065
0.000556065
0.000556068
0.000556073
0.00055607
0.000556078
0.000556086
0.000556094
0.000556101
0.000556106
0.00055611
0.000556108
0.000556107
0.000556101
0.000556098
0.000556091
0.000556084
0.000556075
0.000556067
0.000556061
0.000556058
0.000556057
0.000556059
0.000556064
0.00055606
0.000556067
0.000556074
0.000556081
0.000556087
0.000556092
0.000556095
0.000556094
0.000556095
0.000556089
0.000556088
0.000556081
0.000556075
0.000556067
0.00055606
0.000556055
0.000556051
0.00055605
0.000556052
0.000556055
0.000556052
0.000556057
0.000556063
0.000556069
0.000556075
0.000556079
0.000556083
0.000556083
0.000556083
0.000556079
0.000556078
0.000556072
0.000556067
0.00055606
0.000556054
0.000556049
0.000556046
0.000556044
0.000556045
0.000556047
0.000556045
0.000556049
0.000556054
0.00055606
0.000556065
0.000556069
0.000556073
0.000556073
0.000556074
0.00055607
0.00055607
0.000556065
0.000556061
0.000556054
0.000556048
0.000556044
0.000556041
0.000556039
0.00055604
0.000556041
0.000556039
0.000556042
0.000556047
0.000556052
0.000556057
0.00055606
0.000556064
0.000556064
0.000556066
0.000556063
0.000556063
0.000556058
0.000556055
0.000556049
0.000556043
0.00055604
0.000556036
0.000556035
0.000556035
0.000556036
0.000556034
0.000556037
0.000556041
0.000556046
0.00055605
0.000556053
0.000556057
0.000556058
0.00055606
0.000556057
0.000556058
0.000556053
0.000556051
0.000556045
0.00055604
0.000556037
0.000556033
0.000556031
0.000556032
0.000556032
0.00055603
0.000556033
0.000556036
0.000556041
0.000556045
0.000556047
0.000556052
0.000556052
0.000556054
0.000556052
0.000556053
0.000556049
0.000556046
0.000556041
0.000556036
0.000556033
0.000556029
0.000556028
0.000556029
0.000556028
0.000556029
0.000556031
0.000556034
0.000556038
0.000556042
0.000556044
0.000556049
0.000556049
0.000556052
0.00055605
0.000556051
0.000556047
0.000556045
0.000556039
0.000556035
0.000556033
0.000556029
0.000556027
0.000556028
0.000556026
0.000556026
0.000556028
0.000556031
0.000556035
0.000556038
0.000556041
0.000556045
0.000556045
0.000556048
0.000556046
0.000556048
0.000556043
0.000556042
0.000556037
0.000556032
0.00055603
0.000556026
0.000556025
0.000556026
0.000556024
0.000556063
0.00055604
0.000556065
0.000556076
0.000556052
0.000556076
0.000556087
0.00055606
0.000556085
0.00055606
0.000556084
0.000556057
0.000556079
0.00055605
0.00055604
0.000556066
0.000556039
0.00055606
0.000556068
0.000556038
0.000623738
0.000624421
0.000625121
0.000625914
0.000627102
0.000629697
0.000634539
0.000642167
0.000656474
0.000663839
0.000641216
0.000635772
0.000627437
0.000622917
0.00062125
0.000620897
0.000621159
0.000621699
0.000622356
0.000623049
0.000623404
0.000624037
0.000624614
0.000625165
0.00062576
0.000626698
0.00062953
0.000635786
0.000643568
0.000649178
0.000635096
0.000628893
0.000622426
0.000619986
0.000619528
0.000619844
0.000620473
0.000621216
0.000621978
0.000622715
0.000623617
0.000624246
0.000624795
0.000625265
0.000625679
0.000626135
0.000627208
0.000630461
0.000636856
0.000638247
0.00063092
0.00062474
0.000620035
0.000618887
0.000619077
0.00061972
0.000620517
0.000621347
0.000622156
0.000622917
0.000623957
0.000624571
0.000625103
0.00062554
0.000625879
0.000626143
0.000626542
0.000627858
0.000631514
0.000631148
0.000627105
0.000621995
0.000618987
0.000618697
0.000619243
0.000620034
0.000620885
0.000621726
0.000622527
0.000623273
0.000624277
0.000624856
0.000625359
0.000625771
0.000626073
0.000626255
0.000626385
0.000626772
0.000628455
0.000630015
0.000623962
0.000620659
0.000618794
0.000619019
0.000619728
0.000620553
0.000621383
0.000622181
0.000622934
0.000623634
0.000624552
0.000625084
0.000625549
0.000625932
0.000626207
0.000626347
0.000626347
0.000626314
0.000626793
0.000626757
0.000622298
0.000620096
0.000619123
0.000619608
0.000620355
0.000621143
0.000621911
0.00062264
0.000623325
0.000623963
0.000624772
0.000625252
0.000625674
0.000626023
0.000626272
0.000626383
0.000626324
0.000626084
0.000625941
0.000624869
0.000621401
0.000620116
0.000619724
0.00062031
0.000621023
0.000621738
0.000622422
0.000623068
0.000623677
0.000624245
0.000624943
0.000625368
0.000625744
0.000626056
0.000626277
0.000626365
0.000626274
0.000625923
0.000625796
0.000623912
0.000621072
0.000620478
0.000620446
0.000621039
0.000621676
0.000622297
0.000622889
0.000623449
0.00062398
0.000624478
0.00062507
0.000625442
0.000625773
0.000626046
0.000626239
0.000626307
0.000626206
0.000625809
0.00062542
0.000623424
0.000621112
0.000621027
0.000621197
0.00062174
0.000622281
0.000622804
0.000623304
0.00062378
0.000624234
0.000624666
0.000625161
0.000625483
0.00062577
0.000626007
0.000626171
0.000626219
0.000626113
0.000625707
0.000625202
0.000623226
0.000621421
0.00062167
0.000621921
0.000622383
0.000622823
0.00062325
0.000623662
0.00062406
0.000624444
0.000624813
0.000625223
0.0006255
0.000625747
0.000625949
0.000626086
0.000626117
0.000626008
0.00062561
0.000625072
0.000623204
0.00062188
0.000622327
0.000622583
0.000622951
0.000623293
0.000623631
0.000623964
0.000624293
0.000624615
0.000624925
0.000625261
0.000625497
0.000625707
0.000625879
0.000625993
0.00062601
0.000625902
0.000625521
0.000624995
0.000623285
0.000622422
0.000622946
0.000623162
0.000623437
0.000623691
0.000623951
0.000624214
0.000624481
0.000624747
0.000625009
0.000625281
0.000625481
0.00062566
0.000625804
0.000625899
0.000625904
0.000625799
0.000625447
0.000624961
0.000623439
0.000622983
0.000623493
0.000623648
0.000623839
0.000624018
0.000624213
0.000624417
0.000624632
0.00062485
0.000625068
0.000625286
0.000625455
0.000625608
0.000625728
0.000625806
0.000625805
0.000625709
0.000625397
0.000624968
0.000623674
0.000623503
0.000623947
0.000624043
0.000624164
0.000624281
0.000624422
0.000624579
0.00062475
0.000624928
0.000625108
0.000625281
0.000625424
0.000625552
0.000625654
0.000625719
0.000625716
0.000625632
0.000625367
0.000625016
0.000624021
0.000623997
0.00062431
0.00062435
0.000624415
0.000624488
0.000624588
0.000624706
0.00062484
0.000624984
0.000625132
0.00062527
0.000625389
0.000625498
0.000625584
0.000625639
0.000625635
0.000625567
0.000625358
0.000625093
0.00062444
0.000624449
0.000624597
0.000624587
0.00062461
0.000624648
0.000624714
0.000624802
0.000624907
0.000625023
0.000625146
0.000625252
0.000625352
0.000625444
0.000625517
0.000625564
0.000625562
0.000625511
0.00062535
0.000625156
0.000624731
0.00062475
0.000624793
0.00062476
0.000624757
0.00062477
0.000624811
0.000624875
0.000624955
0.000625048
0.000625149
0.000625231
0.000625315
0.000625393
0.000625455
0.000625495
0.000625496
0.000625458
0.000625336
0.000625193
0.000624905
0.000624914
0.000624917
0.000624877
0.00062486
0.000624858
0.000624883
0.000624928
0.00062499
0.000625064
0.000625145
0.000625208
0.000625279
0.000625343
0.000625397
0.000625433
0.000625436
0.000625407
0.000625313
0.000625206
0.000625008
0.000625009
0.00062499
0.000624952
0.00062493
0.000624921
0.000624934
0.000624965
0.000625011
0.00062507
0.000625137
0.000625184
0.000625243
0.000625299
0.000625344
0.000625374
0.000625379
0.000625358
0.00062529
0.000625213
0.000625071
0.000625066
0.000625041
0.000625004
0.000624976
0.000624963
0.000624968
0.000624989
0.000625024
0.000625071
0.000625126
0.00062516
0.000625209
0.000625256
0.000625295
0.000625321
0.000625325
0.000625311
0.000625257
0.000625202
0.000625099
0.000625091
0.000625064
0.000625029
0.000625003
0.000624988
0.00062499
0.000625004
0.000625031
0.000625068
0.000625112
0.000625136
0.000625177
0.000625216
0.00062525
0.000625272
0.000625277
0.000625272
0.000625235
0.000625189
0.000625108
0.000625098
0.000625077
0.00062505
0.000625025
0.000625004
0.000625
0.000625011
0.000625031
0.00062506
0.000625096
0.000625113
0.000625147
0.00062518
0.000625208
0.000625231
0.000625241
0.000625232
0.000625197
0.000625169
0.000625116
0.000625107
0.00062508
0.00062505
0.000625029
0.000625018
0.000625011
0.000625014
0.000625028
0.000625051
0.000625081
0.000625092
0.00062512
0.000625148
0.000625172
0.000625191
0.000625197
0.000625195
0.000625174
0.000625148
0.000625104
0.000625094
0.000625073
0.000625054
0.000625034
0.000625017
0.000625011
0.000625013
0.000625024
0.000625041
0.000625064
0.000625071
0.000625096
0.000625119
0.00062514
0.000625155
0.000625161
0.00062516
0.000625143
0.000625122
0.000625089
0.000625081
0.000625062
0.000625046
0.000625029
0.000625015
0.000625008
0.000625008
0.000625016
0.00062503
0.000625049
0.000625053
0.000625072
0.000625092
0.00062511
0.000625124
0.00062513
0.00062513
0.000625114
0.000625104
0.000625083
0.000625076
0.000625056
0.000625036
0.000625023
0.00062501
0.000625003
0.000625003
0.000625008
0.000625019
0.000625034
0.000625035
0.000625051
0.000625068
0.000625084
0.000625096
0.000625102
0.000625103
0.000625097
0.000625088
0.000625066
0.000625059
0.000625048
0.000625034
0.000625017
0.000625005
0.000624998
0.000624996
0.000624999
0.000625007
0.00062502
0.000625019
0.000625033
0.000625048
0.00062506
0.000625071
0.000625076
0.000625079
0.000625072
0.000625066
0.000625051
0.000625045
0.000625033
0.000625022
0.000625008
0.000624998
0.000624991
0.000624988
0.000624991
0.000624997
0.000625006
0.000625005
0.000625016
0.000625028
0.000625039
0.000625049
0.000625054
0.000625057
0.000625053
0.000625048
0.000625036
0.000625032
0.000625022
0.000625012
0.000625
0.000624991
0.000624984
0.000624981
0.000624982
0.000624987
0.000624994
0.000624992
0.000625001
0.000625012
0.000625022
0.00062503
0.000625035
0.000625038
0.000625035
0.000625032
0.000625023
0.00062502
0.000625011
0.000625002
0.000624992
0.000624983
0.000624977
0.000624973
0.000624974
0.000624977
0.000624983
0.00062498
0.000624988
0.000624997
0.000625006
0.000625013
0.000625018
0.000625021
0.000625019
0.000625018
0.00062501
0.000625008
0.000625
0.000624993
0.000624984
0.000624976
0.00062497
0.000624967
0.000624966
0.000624969
0.000624973
0.00062497
0.000624977
0.000624985
0.000624992
0.000624999
0.000625003
0.000625007
0.000625005
0.000625005
0.000624999
0.000624997
0.00062499
0.000624984
0.000624976
0.000624969
0.000624964
0.00062496
0.000624959
0.000624961
0.000624965
0.000624962
0.000624967
0.000624974
0.00062498
0.000624986
0.00062499
0.000624994
0.000624993
0.000624994
0.000624989
0.000624988
0.000624982
0.000624976
0.000624969
0.000624963
0.000624958
0.000624954
0.000624953
0.000624955
0.000624957
0.000624955
0.000624959
0.000624965
0.000624971
0.000624976
0.00062498
0.000624984
0.000624983
0.000624984
0.00062498
0.00062498
0.000624974
0.00062497
0.000624963
0.000624957
0.000624953
0.000624949
0.000624948
0.000624949
0.00062495
0.000624948
0.000624952
0.000624957
0.000624962
0.000624967
0.00062497
0.000624974
0.000624974
0.000624976
0.000624973
0.000624973
0.000624968
0.000624964
0.000624958
0.000624952
0.000624948
0.000624945
0.000624943
0.000624944
0.000624945
0.000624944
0.000624947
0.000624951
0.000624956
0.00062496
0.000624963
0.000624968
0.000624968
0.00062497
0.000624967
0.000624967
0.000624963
0.00062496
0.000624954
0.000624949
0.000624945
0.000624942
0.00062494
0.000624941
0.000624941
0.00062494
0.000624942
0.000624946
0.000624951
0.000624954
0.000624957
0.000624962
0.000624962
0.000624964
0.000624962
0.000624962
0.000624958
0.000624956
0.00062495
0.000624945
0.000624942
0.000624938
0.000624937
0.000624938
0.000624937
0.000624938
0.00062494
0.000624943
0.000624948
0.000624951
0.000624954
0.000624959
0.000624959
0.000624962
0.000624959
0.000624961
0.000624956
0.000624955
0.000624948
0.000624943
0.000624942
0.000624937
0.000624936
0.000624937
0.000624935
0.000624935
0.000624937
0.00062494
0.000624945
0.000624948
0.000624951
0.000624956
0.000624955
0.000624958
0.000624955
0.000624958
0.000624952
0.000624952
0.000624945
0.00062494
0.000624939
0.000624934
0.000624934
0.000624935
0.000624932
0.000624973
0.000624949
0.000624975
0.000624987
0.000624961
0.000624987
0.000624998
0.000624969
0.000624996
0.000624969
0.000624995
0.000624966
0.00062499
0.000624959
0.000624948
0.000624976
0.000624947
0.00062497
0.000624978
0.000624946
0.000704238
0.000704666
0.000704982
0.000705179
0.000705249
0.000705235
0.000705245
0.000705394
0.000704296
0.000703745
0.000704312
0.000702576
0.000701448
0.000701014
0.000701055
0.000701407
0.000701933
0.000702533
0.000703146
0.000703723
0.000704379
0.000704832
0.000705165
0.000705365
0.000705409
0.0007053
0.000705087
0.000705166
0.000704309
0.00070327
0.000703233
0.000701309
0.000700429
0.000700303
0.000700616
0.000701167
0.000701831
0.000702526
0.000703204
0.000703828
0.000704807
0.000705292
0.000705656
0.00070588
0.000705935
0.0007058
0.000705487
0.000705157
0.000704977
0.000703184
0.000702571
0.000700719
0.000700083
0.000700196
0.000700687
0.00070136
0.000702102
0.00070285
0.000703566
0.000704224
0.000705279
0.000705782
0.00070617
0.00070642
0.000706502
0.000706375
0.000706016
0.000705477
0.000704985
0.000703129
0.000702073
0.000700488
0.000700116
0.000700421
0.000701032
0.000701769
0.000702543
0.000703304
0.000704026
0.000704689
0.000705698
0.000706192
0.000706585
0.000706852
0.000706959
0.000706857
0.000706501
0.000705878
0.00070517
0.000703614
0.000701839
0.00070055
0.000700438
0.000700881
0.000701549
0.000702295
0.000703054
0.000703789
0.000704484
0.000705124
0.000706049
0.000706519
0.000706901
0.000707174
0.000707298
0.000707225
0.000706892
0.000706232
0.000705396
0.000703616
0.000701869
0.000700918
0.000700968
0.00070148
0.000702153
0.000702869
0.000703581
0.000704267
0.000704913
0.00070551
0.000706331
0.000706767
0.000707128
0.000707392
0.000707523
0.000707472
0.000707173
0.000706526
0.000705628
0.00070377
0.000702086
0.000701453
0.000701615
0.000702146
0.000702784
0.000703443
0.00070409
0.00070471
0.000705294
0.000705837
0.000706551
0.000706947
0.000707277
0.000707525
0.000707655
0.000707621
0.000707358
0.000706744
0.000705872
0.000704031
0.000702435
0.000702083
0.000702314
0.000702827
0.000703403
0.000703988
0.000704558
0.000705105
0.000705622
0.000706106
0.000706717
0.000707069
0.000707368
0.000707594
0.000707717
0.000707691
0.000707459
0.000706893
0.000706059
0.000704292
0.000702861
0.000702752
0.000703017
0.000703484
0.000703983
0.000704486
0.000704977
0.000705449
0.0007059
0.000706324
0.000706839
0.000707149
0.000707415
0.000707616
0.000707727
0.000707704
0.000707498
0.00070698
0.000706208
0.000704561
0.000703347
0.000703423
0.000703688
0.000704092
0.00070451
0.00070493
0.000705342
0.000705743
0.000706129
0.000706496
0.000706925
0.000707195
0.000707427
0.000707604
0.000707703
0.000707679
0.000707494
0.000707022
0.000706321
0.000704816
0.000703858
0.000704062
0.000704305
0.000704638
0.000704973
0.000705313
0.000705653
0.000705988
0.000706315
0.000706629
0.000706982
0.000707214
0.000707415
0.00070757
0.000707655
0.000707631
0.000707465
0.000707039
0.000706415
0.000705062
0.000704372
0.000704648
0.000704852
0.000705113
0.000705371
0.00070564
0.000705913
0.000706188
0.000706462
0.000706729
0.000707017
0.000707216
0.000707389
0.000707521
0.000707594
0.00070757
0.000707422
0.000707044
0.000706498
0.000705307
0.000704867
0.000705164
0.00070532
0.000705512
0.000705704
0.00070591
0.000706127
0.000706351
0.000706577
0.000706802
0.000707033
0.000707203
0.000707352
0.000707465
0.000707527
0.000707504
0.000707378
0.000707049
0.000706585
0.000705578
0.000705333
0.000705604
0.000705711
0.000705842
0.000705976
0.00070613
0.000706298
0.000706479
0.000706664
0.000706851
0.000707037
0.000707181
0.000707308
0.000707405
0.000707458
0.000707439
0.000707332
0.000707056
0.000706681
0.000705883
0.000705762
0.000705965
0.000706024
0.000706105
0.000706193
0.000706305
0.000706434
0.000706577
0.000706728
0.000706883
0.000707031
0.000707153
0.000707261
0.000707344
0.00070739
0.000707375
0.00070729
0.000707069
0.00070678
0.000706208
0.000706143
0.000706254
0.000706271
0.00070631
0.000706363
0.000706441
0.000706539
0.000706652
0.000706775
0.000706903
0.000707018
0.000707121
0.000707213
0.000707284
0.000707325
0.000707315
0.000707248
0.000707077
0.000706861
0.000706463
0.000706424
0.000706465
0.000706455
0.000706466
0.000706494
0.000706546
0.000706618
0.000706706
0.000706806
0.000706911
0.000707
0.000707088
0.000707165
0.000707226
0.000707263
0.000707257
0.000707206
0.000707074
0.000706913
0.000706632
0.000706604
0.000706608
0.000706586
0.000706581
0.000706592
0.000706625
0.000706677
0.000706745
0.000706825
0.000706911
0.00070698
0.000707053
0.000707119
0.000707171
0.000707203
0.000707201
0.000707164
0.000707063
0.000706942
0.000706739
0.000706716
0.000706704
0.000706677
0.000706662
0.000706662
0.000706682
0.000706719
0.000706771
0.000706834
0.000706905
0.000706957
0.000707019
0.000707075
0.000707119
0.000707148
0.000707149
0.000707125
0.000707045
0.000706955
0.000706814
0.000706793
0.000706767
0.000706739
0.000706721
0.000706711
0.000706722
0.000706748
0.000706788
0.000706838
0.000706895
0.000706933
0.000706985
0.000707033
0.000707072
0.000707097
0.000707097
0.000707074
0.000707018
0.000706959
0.000706849
0.000706826
0.000706805
0.000706773
0.000706748
0.000706741
0.000706748
0.000706765
0.000706795
0.000706836
0.000706883
0.00070691
0.000706953
0.000706994
0.000707027
0.000707047
0.00070705
0.000707043
0.000706998
0.00070694
0.000706859
0.000706847
0.000706822
0.0007068
0.000706781
0.000706762
0.00070676
0.000706774
0.000706798
0.00070683
0.000706868
0.000706888
0.000706923
0.000706957
0.000706986
0.000707009
0.000707019
0.000707004
0.000706965
0.000706933
0.000706878
0.000706864
0.000706836
0.000706806
0.000706788
0.000706781
0.000706776
0.00070678
0.000706796
0.000706821
0.000706853
0.000706866
0.000706896
0.000706925
0.00070695
0.000706968
0.000706972
0.000706969
0.000706945
0.000706915
0.000706868
0.000706855
0.000706834
0.000706816
0.000706797
0.000706781
0.000706776
0.00070678
0.000706793
0.000706812
0.000706837
0.000706845
0.000706871
0.000706895
0.000706916
0.000706932
0.000706937
0.000706934
0.000706915
0.000706891
0.000706855
0.000706844
0.000706825
0.00070681
0.000706793
0.00070678
0.000706775
0.000706777
0.000706786
0.000706802
0.000706822
0.000706827
0.000706848
0.000706868
0.000706886
0.0007069
0.000706906
0.000706904
0.000706886
0.000706874
0.000706852
0.000706843
0.000706822
0.000706801
0.00070679
0.000706778
0.000706772
0.000706772
0.000706778
0.000706791
0.000706807
0.000706809
0.000706826
0.000706844
0.000706859
0.000706872
0.000706877
0.000706878
0.00070687
0.00070686
0.000706835
0.000706827
0.000706817
0.000706802
0.000706785
0.000706773
0.000706766
0.000706765
0.000706769
0.000706779
0.000706792
0.000706792
0.000706807
0.000706822
0.000706835
0.000706846
0.000706851
0.000706853
0.000706845
0.000706838
0.000706821
0.000706815
0.000706802
0.00070679
0.000706777
0.000706767
0.00070676
0.000706758
0.000706762
0.000706769
0.000706779
0.000706778
0.00070679
0.000706803
0.000706814
0.000706824
0.000706829
0.000706831
0.000706826
0.00070682
0.000706808
0.000706802
0.000706791
0.000706781
0.00070677
0.00070676
0.000706754
0.000706751
0.000706753
0.000706758
0.000706766
0.000706764
0.000706775
0.000706786
0.000706796
0.000706804
0.000706809
0.000706812
0.000706808
0.000706805
0.000706794
0.00070679
0.000706781
0.000706772
0.000706762
0.000706753
0.000706747
0.000706744
0.000706744
0.000706749
0.000706755
0.000706753
0.000706761
0.00070677
0.000706779
0.000706787
0.000706791
0.000706795
0.000706792
0.00070679
0.000706782
0.000706779
0.000706771
0.000706763
0.000706754
0.000706746
0.00070674
0.000706737
0.000706737
0.00070674
0.000706745
0.000706742
0.00070675
0.000706758
0.000706765
0.000706772
0.000706776
0.00070678
0.000706778
0.000706777
0.000706771
0.000706769
0.000706761
0.000706755
0.000706746
0.000706739
0.000706734
0.000706731
0.00070673
0.000706732
0.000706736
0.000706733
0.000706739
0.000706746
0.000706753
0.000706759
0.000706763
0.000706767
0.000706766
0.000706766
0.000706761
0.000706759
0.000706753
0.000706747
0.00070674
0.000706733
0.000706728
0.000706725
0.000706724
0.000706726
0.000706728
0.000706726
0.000706731
0.000706737
0.000706743
0.000706749
0.000706752
0.000706756
0.000706755
0.000706756
0.000706752
0.000706751
0.000706745
0.000706741
0.000706733
0.000706727
0.000706723
0.00070672
0.000706718
0.00070672
0.000706721
0.00070672
0.000706724
0.000706729
0.000706734
0.000706739
0.000706743
0.000706747
0.000706746
0.000706748
0.000706744
0.000706744
0.000706738
0.000706735
0.000706728
0.000706722
0.000706719
0.000706715
0.000706714
0.000706715
0.000706716
0.000706715
0.000706718
0.000706723
0.000706728
0.000706732
0.000706735
0.00070674
0.00070674
0.000706742
0.000706738
0.000706739
0.000706734
0.000706731
0.000706724
0.000706719
0.000706716
0.000706712
0.000706711
0.000706712
0.000706711
0.000706711
0.000706713
0.000706717
0.000706722
0.000706726
0.000706729
0.000706734
0.000706734
0.000706736
0.000706733
0.000706734
0.000706729
0.000706727
0.00070672
0.000706715
0.000706712
0.000706708
0.000706707
0.000706708
0.000706707
0.000706709
0.000706711
0.000706715
0.00070672
0.000706723
0.000706726
0.000706731
0.000706731
0.000706734
0.00070673
0.000706732
0.000706727
0.000706726
0.000706719
0.000706714
0.000706712
0.000706708
0.000706707
0.000706708
0.000706706
0.000706706
0.000706708
0.000706712
0.000706716
0.000706719
0.000706722
0.000706728
0.000706727
0.00070673
0.000706727
0.000706729
0.000706723
0.000706723
0.000706716
0.000706711
0.00070671
0.000706705
0.000706704
0.000706706
0.000706703
0.000706745
0.00070672
0.000706747
0.000706759
0.000706732
0.00070676
0.000706771
0.000706741
0.000706769
0.00070674
0.000706768
0.000706737
0.000706762
0.000706729
0.000706718
0.000706748
0.000706717
0.000706741
0.00070675
0.000706716
0.000801465
0.000801753
0.000801919
0.000801947
0.000801816
0.000801527
0.000801099
0.000800557
0.000799982
0.000799502
0.000799041
0.000798653
0.000798486
0.000798546
0.00079879
0.00079917
0.000799634
0.000800133
0.000800628
0.000801081
0.00080178
0.000802111
0.000802319
0.000802376
0.000802266
0.000801977
0.00080151
0.000800905
0.000800178
0.000799476
0.000798812
0.000798324
0.000798171
0.000798311
0.000798663
0.000799147
0.000799703
0.000800282
0.000800838
0.000801349
0.000802287
0.000802662
0.000802914
0.000803014
0.000802934
0.000802652
0.000802152
0.000801454
0.000800573
0.000799659
0.000798833
0.000798281
0.000798166
0.000798387
0.000798828
0.000799394
0.000800015
0.000800651
0.000801256
0.000801812
0.000802821
0.000803228
0.000803515
0.000803655
0.000803612
0.000803354
0.000802847
0.000802085
0.000801095
0.000799972
0.00079898
0.000798411
0.000798355
0.000798655
0.000799165
0.000799786
0.000800446
0.00080111
0.000801741
0.000802318
0.000803295
0.000803712
0.00080402
0.00080419
0.000804185
0.000803963
0.000803478
0.000802698
0.000801653
0.000800342
0.000799221
0.000798699
0.000798719
0.000799081
0.000799629
0.000800267
0.000800935
0.000801593
0.000802217
0.00080279
0.0008037
0.000804111
0.000804424
0.000804613
0.00080464
0.000804457
0.000804011
0.000803246
0.000802182
0.00080077
0.000799591
0.000799132
0.000799212
0.000799614
0.000800172
0.000800796
0.000801437
0.000802065
0.000802662
0.00080321
0.00080403
0.00080442
0.000804727
0.000804923
0.000804971
0.000804825
0.000804427
0.000803703
0.000802665
0.000801215
0.000800027
0.000799658
0.00079979
0.000800202
0.000800742
0.000801331
0.000801928
0.000802509
0.00080306
0.000803571
0.00080429
0.000804653
0.000804944
0.000805136
0.000805198
0.000805083
0.000804732
0.000804064
0.000803091
0.000801656
0.000800504
0.000800241
0.000800409
0.000800813
0.000801312
0.000801846
0.000802385
0.000802908
0.000803406
0.00080387
0.000804491
0.000804822
0.000805091
0.000805273
0.000805341
0.000805247
0.000804941
0.000804332
0.000803434
0.000802058
0.000800996
0.000800845
0.000801034
0.000801412
0.000801857
0.000802328
0.0008028
0.00080326
0.000803701
0.000804114
0.000804643
0.000804938
0.000805181
0.00080535
0.000805417
0.000805341
0.000805072
0.00080452
0.000803708
0.00080242
0.000801491
0.000801446
0.000801639
0.000801976
0.000802358
0.000802761
0.000803164
0.000803562
0.000803945
0.000804309
0.000804752
0.000805013
0.00080523
0.000805382
0.000805447
0.000805381
0.000805145
0.00080465
0.000803924
0.000802743
0.000801977
0.000802019
0.000802203
0.000802489
0.000802807
0.000803142
0.000803482
0.000803819
0.000804146
0.00080446
0.000804828
0.000805056
0.000805247
0.000805382
0.000805441
0.000805386
0.000805179
0.000804737
0.000804099
0.000803035
0.000802445
0.00080255
0.000802713
0.000802945
0.000803199
0.000803469
0.000803747
0.000804028
0.000804307
0.000804575
0.000804879
0.000805075
0.000805241
0.00080536
0.000805414
0.000805365
0.000805186
0.000804797
0.000804245
0.000803306
0.000802887
0.000803025
0.000803157
0.000803337
0.000803532
0.000803744
0.000803968
0.0008042
0.000804433
0.000804662
0.000804906
0.000805076
0.00080522
0.000805324
0.000805371
0.00080533
0.000805178
0.000804844
0.000804378
0.000803576
0.000803299
0.000803438
0.000803535
0.000803665
0.000803807
0.00080397
0.000804148
0.000804336
0.000804529
0.00080472
0.000804919
0.000805064
0.000805187
0.00080528
0.000805322
0.000805288
0.000805162
0.000804881
0.0008045
0.00080385
0.000803675
0.000803786
0.000803845
0.000803931
0.000804031
0.000804154
0.000804292
0.000804442
0.000804602
0.000804762
0.000804921
0.000805044
0.00080515
0.000805229
0.000805267
0.000805241
0.000805139
0.000804912
0.000804614
0.00080412
0.000804005
0.000804069
0.000804094
0.000804145
0.000804211
0.000804299
0.000804405
0.000804526
0.000804655
0.000804788
0.000804911
0.000805017
0.000805108
0.000805176
0.000805211
0.000805192
0.000805113
0.000804934
0.000804704
0.00080434
0.000804262
0.000804286
0.000804288
0.000804311
0.000804349
0.000804411
0.00080449
0.000804586
0.00080469
0.0008048
0.000804898
0.000804987
0.000805065
0.000805124
0.000805156
0.000805143
0.000805082
0.00080494
0.000804767
0.0008045
0.000804443
0.000804441
0.000804428
0.000804433
0.000804455
0.000804497
0.000804555
0.000804628
0.000804713
0.000804805
0.00080488
0.000804955
0.000805021
0.000805072
0.000805102
0.000805095
0.000805048
0.000804938
0.000804808
0.000804612
0.000804568
0.000804551
0.000804529
0.000804524
0.000804533
0.000804559
0.000804602
0.000804659
0.000804727
0.000804802
0.000804859
0.000804923
0.000804981
0.000805024
0.00080505
0.000805045
0.000805015
0.000804929
0.000804826
0.00080468
0.000804645
0.000804622
0.000804602
0.000804591
0.000804588
0.000804605
0.000804635
0.000804679
0.000804733
0.000804794
0.000804837
0.000804891
0.00080494
0.000804978
0.000805001
0.000804997
0.000804967
0.000804909
0.000804844
0.00080473
0.000804701
0.000804681
0.000804646
0.000804624
0.000804623
0.000804635
0.000804656
0.000804689
0.000804732
0.000804782
0.000804813
0.000804858
0.000804901
0.000804935
0.000804952
0.000804952
0.000804943
0.000804893
0.000804827
0.000804749
0.000804724
0.000804695
0.000804681
0.000804666
0.000804648
0.000804649
0.000804668
0.000804694
0.000804728
0.000804769
0.000804792
0.000804828
0.000804863
0.000804893
0.000804917
0.000804924
0.000804905
0.000804861
0.000804826
0.000804765
0.000804744
0.000804721
0.000804691
0.000804677
0.000804673
0.000804669
0.000804674
0.000804692
0.00080472
0.000804755
0.00080477
0.000804801
0.000804831
0.000804857
0.000804874
0.000804878
0.000804873
0.000804846
0.000804811
0.000804761
0.000804744
0.000804724
0.000804707
0.00080469
0.000804674
0.00080467
0.000804677
0.000804691
0.000804712
0.000804739
0.000804749
0.000804775
0.000804801
0.000804823
0.000804837
0.000804842
0.000804838
0.000804815
0.000804787
0.00080475
0.000804736
0.000804717
0.000804703
0.000804687
0.000804675
0.000804671
0.000804674
0.000804684
0.000804702
0.000804723
0.00080473
0.000804752
0.000804773
0.000804792
0.000804805
0.00080481
0.000804808
0.000804786
0.000804774
0.00080475
0.000804739
0.000804717
0.000804695
0.000804685
0.000804674
0.000804668
0.00080467
0.000804677
0.000804691
0.000804709
0.000804711
0.000804729
0.000804748
0.000804764
0.000804777
0.000804782
0.000804781
0.000804773
0.000804761
0.000804734
0.000804724
0.000804714
0.0008047
0.000804682
0.00080467
0.000804664
0.000804664
0.000804669
0.000804679
0.000804694
0.000804695
0.000804711
0.000804727
0.00080474
0.000804751
0.000804756
0.000804756
0.000804748
0.000804738
0.000804721
0.000804713
0.0008047
0.000804688
0.000804675
0.000804665
0.000804659
0.000804657
0.000804661
0.000804669
0.00080468
0.00080468
0.000804693
0.000804706
0.000804718
0.000804728
0.000804733
0.000804734
0.000804728
0.000804721
0.000804708
0.000804702
0.00080469
0.00080468
0.000804668
0.000804659
0.000804653
0.00080465
0.000804653
0.000804659
0.000804668
0.000804666
0.000804677
0.000804688
0.000804699
0.000804708
0.000804712
0.000804714
0.00080471
0.000804706
0.000804695
0.00080469
0.00080468
0.000804671
0.000804661
0.000804652
0.000804646
0.000804643
0.000804644
0.000804649
0.000804656
0.000804654
0.000804663
0.000804673
0.000804682
0.00080469
0.000804694
0.000804697
0.000804694
0.000804691
0.000804683
0.000804679
0.00080467
0.000804663
0.000804653
0.000804645
0.00080464
0.000804637
0.000804637
0.000804641
0.000804646
0.000804644
0.000804651
0.00080466
0.000804667
0.000804675
0.000804679
0.000804682
0.00080468
0.000804679
0.000804671
0.000804669
0.000804661
0.000804654
0.000804646
0.000804638
0.000804633
0.00080463
0.00080463
0.000804633
0.000804637
0.000804634
0.000804641
0.000804648
0.000804655
0.000804661
0.000804665
0.000804669
0.000804667
0.000804667
0.000804661
0.00080466
0.000804653
0.000804647
0.000804639
0.000804632
0.000804628
0.000804624
0.000804624
0.000804626
0.000804629
0.000804627
0.000804632
0.000804638
0.000804645
0.00080465
0.000804654
0.000804658
0.000804657
0.000804658
0.000804653
0.000804652
0.000804645
0.000804641
0.000804633
0.000804627
0.000804623
0.000804619
0.000804618
0.00080462
0.000804622
0.00080462
0.000804624
0.00080463
0.000804636
0.000804641
0.000804644
0.000804648
0.000804648
0.000804649
0.000804645
0.000804645
0.000804639
0.000804635
0.000804628
0.000804622
0.000804618
0.000804615
0.000804614
0.000804615
0.000804616
0.000804615
0.000804619
0.000804624
0.000804629
0.000804634
0.000804637
0.000804641
0.000804641
0.000804643
0.000804639
0.00080464
0.000804634
0.000804631
0.000804624
0.000804618
0.000804615
0.000804611
0.00080461
0.000804611
0.000804611
0.000804611
0.000804613
0.000804618
0.000804623
0.000804627
0.000804631
0.000804635
0.000804635
0.000804637
0.000804633
0.000804635
0.000804629
0.000804627
0.00080462
0.000804614
0.000804612
0.000804608
0.000804607
0.000804608
0.000804607
0.00080461
0.000804612
0.000804616
0.000804621
0.000804624
0.000804627
0.000804633
0.000804632
0.000804635
0.000804631
0.000804633
0.000804627
0.000804626
0.000804619
0.000804613
0.000804612
0.000804607
0.000804607
0.000804608
0.000804606
0.000804607
0.000804608
0.000804612
0.000804617
0.00080462
0.000804623
0.000804629
0.000804627
0.000804631
0.000804627
0.00080463
0.000804623
0.000804623
0.000804615
0.00080461
0.00080461
0.000804604
0.000804604
0.000804606
0.000804602
0.000804646
0.000804619
0.000804648
0.000804662
0.000804633
0.000804662
0.000804674
0.000804641
0.000804671
0.00080464
0.00080467
0.000804636
0.000804664
0.000804628
0.000804617
0.000804649
0.000804617
0.000804642
0.000804652
0.000804616
0.000919493
0.000919701
0.000919801
0.000919785
0.000919643
0.000919382
0.000919017
0.000918582
0.00091813
0.000917719
0.000917399
0.000917199
0.000917144
0.00091723
0.000917435
0.000917734
0.000918095
0.000918478
0.000918861
0.000919208
0.000919841
0.000920091
0.000920228
0.000920235
0.000920101
0.000919821
0.000919403
0.00091888
0.000918304
0.00091775
0.000917311
0.000917046
0.000916984
0.000917107
0.000917381
0.000917756
0.000918194
0.000918652
0.000919099
0.000919504
0.000920357
0.000920652
0.000920829
0.000920868
0.000920752
0.000920462
0.00092
0.000919389
0.000918681
0.000917975
0.00091741
0.000917082
0.000917026
0.000917196
0.000917534
0.000917981
0.000918485
0.000919006
0.00091951
0.000919969
0.000920905
0.000921237
0.000921453
0.000921527
0.000921435
0.000921152
0.000920667
0.000919986
0.000919163
0.000918307
0.00091762
0.00091725
0.000917208
0.000917428
0.000917823
0.000918323
0.000918876
0.000919442
0.000919984
0.000920479
0.000921405
0.000921757
0.000922
0.000922107
0.000922044
0.000921784
0.0009213
0.000920586
0.000919687
0.000918704
0.000917918
0.000917536
0.000917527
0.000917787
0.00091822
0.00091875
0.000919323
0.000919901
0.000920454
0.000920963
0.000921842
0.0009222
0.000922457
0.000922586
0.000922554
0.000922326
0.000921864
0.000921148
0.000920214
0.000919146
0.000918297
0.000917926
0.000917949
0.000918242
0.000918691
0.000919225
0.000919793
0.000920359
0.000920901
0.000921403
0.000922204
0.000922557
0.000922818
0.000922959
0.000922951
0.000922756
0.000922331
0.00092164
0.000920711
0.0009196
0.000918722
0.000918388
0.000918445
0.000918753
0.000919199
0.000919716
0.000920258
0.000920794
0.00092131
0.000921784
0.0009225
0.000922834
0.000923086
0.000923234
0.000923245
0.000923082
0.000922698
0.000922049
0.000921155
0.000920043
0.000919174
0.000918896
0.000918982
0.000919293
0.000919717
0.000920198
0.000920699
0.000921192
0.000921667
0.000922106
0.000922733
0.000923042
0.000923281
0.000923427
0.000923451
0.000923314
0.000922972
0.000922372
0.000921534
0.000920454
0.000919633
0.000919426
0.000919535
0.000919832
0.000920221
0.000920655
0.000921103
0.000921547
0.000921974
0.000922372
0.000922911
0.000923191
0.000923412
0.000923551
0.000923583
0.000923467
0.000923164
0.000922618
0.000921851
0.000920828
0.000920089
0.000919956
0.000920075
0.00092035
0.000920696
0.000921075
0.000921464
0.000921853
0.00092223
0.000922586
0.000923043
0.000923294
0.000923496
0.000923626
0.00092366
0.000923561
0.000923295
0.000922803
0.000922111
0.000921162
0.000920529
0.000920467
0.00092059
0.000920831
0.000921125
0.000921448
0.000921783
0.00092212
0.000922446
0.000922756
0.000923137
0.000923359
0.000923538
0.000923657
0.000923693
0.00092361
0.000923377
0.000922937
0.000922325
0.000921465
0.000920951
0.000920945
0.00092106
0.000921265
0.000921507
0.000921773
0.000922052
0.000922336
0.000922616
0.000922887
0.000923202
0.000923397
0.000923556
0.000923662
0.000923697
0.000923626
0.000923426
0.000923038
0.000922506
0.000921742
0.000921349
0.000921381
0.000921479
0.000921642
0.000921835
0.000922051
0.00092228
0.000922517
0.000922753
0.000922984
0.000923243
0.000923411
0.000923551
0.000923646
0.000923678
0.000923622
0.000923451
0.000923117
0.000922664
0.000922005
0.000921719
0.000921766
0.000921842
0.000921967
0.000922114
0.000922283
0.000922467
0.000922662
0.00092286
0.000923055
0.000923265
0.00092341
0.000923531
0.000923616
0.000923646
0.0009236
0.000923458
0.000923178
0.000922803
0.000922257
0.000922054
0.000922096
0.000922146
0.000922234
0.000922341
0.000922471
0.000922618
0.000922776
0.00092294
0.000923105
0.000923273
0.000923397
0.000923502
0.000923576
0.000923607
0.000923571
0.000923457
0.000923225
0.000922924
0.000922492
0.000922346
0.000922369
0.000922397
0.000922452
0.000922527
0.000922624
0.000922736
0.000922863
0.000922998
0.000923137
0.000923271
0.000923377
0.000923468
0.000923532
0.00092356
0.000923533
0.000923444
0.000923257
0.000923022
0.00092269
0.000922585
0.000922587
0.000922593
0.000922623
0.000922671
0.00092274
0.000922828
0.00092293
0.00092304
0.000923156
0.000923261
0.000923351
0.000923429
0.000923487
0.000923513
0.000923494
0.000923423
0.000923275
0.000923093
0.000922841
0.000922762
0.00092275
0.000922741
0.000922755
0.000922785
0.000922833
0.000922899
0.000922978
0.000923068
0.000923165
0.000923245
0.000923322
0.000923388
0.000923438
0.000923464
0.000923451
0.000923398
0.000923279
0.000923138
0.000922947
0.000922886
0.000922864
0.000922848
0.000922854
0.000922869
0.000922902
0.000922951
0.000923012
0.000923085
0.000923164
0.000923227
0.000923292
0.00092335
0.000923392
0.000923415
0.000923407
0.00092337
0.000923284
0.000923173
0.000923023
0.000922975
0.000922956
0.000922939
0.000922928
0.00092293
0.000922951
0.000922987
0.000923037
0.000923096
0.000923159
0.000923207
0.000923261
0.000923311
0.000923348
0.00092337
0.000923361
0.000923324
0.000923258
0.000923187
0.000923083
0.000923045
0.000923013
0.00092298
0.000922964
0.000922969
0.000922987
0.000923013
0.000923051
0.000923097
0.000923151
0.000923184
0.000923231
0.000923273
0.000923306
0.000923321
0.000923319
0.000923307
0.000923253
0.000923179
0.000923094
0.000923063
0.000923037
0.000923028
0.000923015
0.000922998
0.000923004
0.000923027
0.000923057
0.000923094
0.000923137
0.000923162
0.000923201
0.000923238
0.000923266
0.000923288
0.000923295
0.000923271
0.000923222
0.000923184
0.000923121
0.000923096
0.000923072
0.000923041
0.00092303
0.000923031
0.000923029
0.000923037
0.000923057
0.000923085
0.000923122
0.000923139
0.000923173
0.000923204
0.000923229
0.000923246
0.000923248
0.000923241
0.000923211
0.000923171
0.000923119
0.000923099
0.000923077
0.000923063
0.000923047
0.000923033
0.000923032
0.000923039
0.000923054
0.000923077
0.000923106
0.000923117
0.000923146
0.000923173
0.000923196
0.000923211
0.000923214
0.000923207
0.000923183
0.00092315
0.00092311
0.000923094
0.000923074
0.000923062
0.000923048
0.000923037
0.000923034
0.000923037
0.000923048
0.000923067
0.00092309
0.000923098
0.000923122
0.000923143
0.000923163
0.000923177
0.000923181
0.000923178
0.000923153
0.00092314
0.000923116
0.000923103
0.000923079
0.000923056
0.000923047
0.000923036
0.000923031
0.000923033
0.000923042
0.000923057
0.000923076
0.00092308
0.000923099
0.000923118
0.000923134
0.000923147
0.000923152
0.000923151
0.000923142
0.000923129
0.000923098
0.000923087
0.000923078
0.000923063
0.000923044
0.000923032
0.000923027
0.000923028
0.000923034
0.000923046
0.000923061
0.000923063
0.000923079
0.000923095
0.000923109
0.00092312
0.000923125
0.000923125
0.000923115
0.000923104
0.000923085
0.000923076
0.000923063
0.000923051
0.000923038
0.000923028
0.000923023
0.000923022
0.000923026
0.000923035
0.000923047
0.000923047
0.000923061
0.000923075
0.000923087
0.000923097
0.000923102
0.000923103
0.000923095
0.000923088
0.000923073
0.000923066
0.000923054
0.000923043
0.000923031
0.000923022
0.000923017
0.000923015
0.000923018
0.000923025
0.000923034
0.000923033
0.000923045
0.000923057
0.000923068
0.000923077
0.000923081
0.000923083
0.000923077
0.000923072
0.00092306
0.000923055
0.000923045
0.000923035
0.000923025
0.000923016
0.00092301
0.000923008
0.00092301
0.000923015
0.000923023
0.000923021
0.000923031
0.000923041
0.00092305
0.000923058
0.000923062
0.000923065
0.000923061
0.000923058
0.000923049
0.000923044
0.000923035
0.000923027
0.000923017
0.000923009
0.000923004
0.000923001
0.000923002
0.000923006
0.000923012
0.00092301
0.000923018
0.000923027
0.000923035
0.000923043
0.000923047
0.00092305
0.000923047
0.000923045
0.000923037
0.000923034
0.000923026
0.000923019
0.00092301
0.000923003
0.000922998
0.000922995
0.000922995
0.000922998
0.000923003
0.000923001
0.000923007
0.000923015
0.000923022
0.000923029
0.000923033
0.000923036
0.000923034
0.000923034
0.000923027
0.000923025
0.000923018
0.000923012
0.000923004
0.000922997
0.000922992
0.000922989
0.000922989
0.000922991
0.000922994
0.000922993
0.000922998
0.000923005
0.000923012
0.000923017
0.000923021
0.000923025
0.000923023
0.000923024
0.000923019
0.000923018
0.000923011
0.000923006
0.000922998
0.000922992
0.000922988
0.000922984
0.000922983
0.000922985
0.000922987
0.000922986
0.00092299
0.000922996
0.000923002
0.000923008
0.000923011
0.000923015
0.000923014
0.000923016
0.000923011
0.000923011
0.000923004
0.000923
0.000922993
0.000922987
0.000922983
0.000922979
0.000922978
0.00092298
0.000922981
0.000922981
0.000922985
0.00092299
0.000922996
0.000923
0.000923003
0.000923008
0.000923007
0.000923009
0.000923005
0.000923006
0.000922999
0.000922996
0.000922989
0.000922983
0.00092298
0.000922976
0.000922975
0.000922977
0.000922976
0.000922976
0.000922979
0.000922984
0.00092299
0.000922994
0.000922997
0.000923002
0.000923001
0.000923004
0.000922999
0.000923001
0.000922994
0.000922992
0.000922985
0.000922979
0.000922977
0.000922972
0.000922972
0.000922974
0.000922972
0.000922975
0.000922977
0.000922982
0.000922988
0.000922991
0.000922994
0.000923
0.000922998
0.000923002
0.000922997
0.000923
0.000922993
0.000922992
0.000922984
0.000922978
0.000922977
0.000922972
0.000922972
0.000922974
0.000922971
0.000922972
0.000922973
0.000922978
0.000922984
0.000922986
0.00092299
0.000922996
0.000922993
0.000922998
0.000922993
0.000922996
0.000922989
0.000922989
0.00092298
0.000922975
0.000922975
0.000922969
0.000922969
0.000922971
0.000922967
0.000923013
0.000922985
0.000923015
0.000923029
0.000922998
0.00092303
0.000923042
0.000923007
0.000923039
0.000923005
0.000923038
0.000923002
0.000923031
0.000922993
0.000922981
0.000923016
0.000922981
0.000923008
0.000923019
0.00092298
0.001064
0.00106415
0.00106422
0.0010642
0.00106408
0.00106387
0.0010636
0.00106327
0.00106294
0.00106264
0.00106241
0.00106226
0.00106222
0.00106228
0.00106244
0.00106266
0.00106293
0.00106322
0.00106352
0.00106378
0.00106433
0.00106452
0.00106461
0.0010646
0.00106448
0.00106425
0.00106391
0.00106351
0.00106308
0.00106268
0.00106236
0.00106216
0.00106211
0.0010622
0.0010624
0.00106269
0.00106302
0.00106338
0.00106374
0.00106406
0.00106482
0.00106505
0.00106518
0.0010652
0.00106507
0.00106482
0.00106443
0.00106394
0.0010634
0.00106288
0.00106246
0.00106222
0.00106216
0.00106228
0.00106253
0.00106288
0.00106328
0.00106371
0.00106412
0.0010645
0.00106535
0.00106563
0.0010658
0.00106583
0.00106572
0.00106546
0.00106503
0.00106447
0.00106382
0.00106318
0.00106266
0.00106237
0.00106232
0.00106247
0.00106277
0.00106318
0.00106363
0.00106411
0.00106457
0.00106499
0.00106586
0.00106616
0.00106636
0.00106642
0.00106633
0.00106607
0.00106563
0.00106502
0.00106429
0.00106354
0.00106295
0.00106263
0.00106259
0.00106277
0.00106311
0.00106355
0.00106404
0.00106454
0.00106503
0.00106548
0.00106632
0.00106663
0.00106684
0.00106693
0.00106686
0.00106662
0.00106619
0.00106555
0.00106477
0.00106395
0.00106329
0.00106297
0.00106295
0.00106316
0.00106352
0.00106397
0.00106447
0.00106498
0.00106547
0.00106592
0.0010667
0.00106702
0.00106724
0.00106734
0.0010673
0.00106708
0.00106666
0.00106604
0.00106524
0.00106437
0.00106368
0.00106337
0.00106337
0.0010636
0.00106397
0.00106442
0.00106491
0.0010654
0.00106588
0.00106632
0.00106703
0.00106733
0.00106755
0.00106766
0.00106764
0.00106745
0.00106706
0.00106646
0.00106568
0.00106479
0.0010641
0.00106382
0.00106385
0.00106408
0.00106444
0.00106487
0.00106533
0.00106579
0.00106624
0.00106666
0.00106728
0.00106757
0.00106779
0.0010679
0.00106789
0.00106773
0.00106737
0.00106681
0.00106606
0.00106518
0.00106452
0.00106429
0.00106433
0.00106457
0.00106491
0.0010653
0.00106572
0.00106615
0.00106656
0.00106694
0.00106748
0.00106775
0.00106795
0.00106807
0.00106807
0.00106793
0.00106761
0.00106708
0.00106638
0.00106555
0.00106493
0.00106476
0.00106482
0.00106504
0.00106535
0.0010657
0.00106608
0.00106646
0.00106683
0.00106717
0.00106764
0.00106788
0.00106807
0.00106818
0.00106819
0.00106806
0.00106778
0.0010673
0.00106666
0.00106588
0.00106534
0.00106521
0.00106529
0.00106549
0.00106576
0.00106607
0.0010664
0.00106673
0.00106705
0.00106736
0.00106775
0.00106796
0.00106813
0.00106824
0.00106825
0.00106815
0.0010679
0.00106747
0.0010669
0.00106618
0.00106573
0.00106565
0.00106573
0.0010659
0.00106613
0.00106639
0.00106667
0.00106695
0.00106723
0.0010675
0.00106783
0.00106802
0.00106817
0.00106827
0.00106829
0.0010682
0.00106798
0.0010676
0.0010671
0.00106646
0.00106609
0.00106605
0.00106612
0.00106627
0.00106645
0.00106667
0.0010669
0.00106714
0.00106738
0.00106761
0.00106788
0.00106805
0.00106819
0.00106827
0.00106829
0.00106822
0.00106804
0.00106771
0.00106727
0.00106671
0.00106643
0.00106641
0.00106647
0.00106658
0.00106673
0.0010669
0.00106709
0.00106729
0.00106749
0.00106769
0.00106791
0.00106806
0.00106818
0.00106826
0.00106828
0.00106822
0.00106807
0.00106778
0.00106742
0.00106695
0.00106673
0.00106673
0.00106677
0.00106685
0.00106696
0.0010671
0.00106725
0.00106741
0.00106758
0.00106775
0.00106793
0.00106806
0.00106816
0.00106823
0.00106825
0.0010682
0.00106808
0.00106784
0.00106755
0.00106716
0.001067
0.00106699
0.00106701
0.00106707
0.00106715
0.00106725
0.00106737
0.00106751
0.00106765
0.00106779
0.00106793
0.00106804
0.00106813
0.00106819
0.00106821
0.00106818
0.00106808
0.00106789
0.00106765
0.00106735
0.00106722
0.00106721
0.00106721
0.00106725
0.0010673
0.00106738
0.00106747
0.00106758
0.0010677
0.00106782
0.00106793
0.00106802
0.0010681
0.00106815
0.00106817
0.00106815
0.00106807
0.00106791
0.00106773
0.00106749
0.00106739
0.00106737
0.00106737
0.00106739
0.00106742
0.00106748
0.00106755
0.00106763
0.00106773
0.00106783
0.00106792
0.00106799
0.00106806
0.00106811
0.00106813
0.00106811
0.00106805
0.00106793
0.00106778
0.0010676
0.00106752
0.0010675
0.00106749
0.00106749
0.00106751
0.00106755
0.0010676
0.00106767
0.00106775
0.00106783
0.0010679
0.00106797
0.00106802
0.00106807
0.00106809
0.00106807
0.00106803
0.00106793
0.00106782
0.00106768
0.00106762
0.00106759
0.00106757
0.00106757
0.00106758
0.0010676
0.00106765
0.0010677
0.00106776
0.00106783
0.00106788
0.00106794
0.00106799
0.00106802
0.00106804
0.00106804
0.001068
0.00106792
0.00106784
0.00106772
0.00106768
0.00106765
0.00106763
0.00106762
0.00106763
0.00106764
0.00106767
0.00106771
0.00106776
0.00106782
0.00106786
0.00106791
0.00106795
0.00106798
0.00106799
0.00106798
0.00106796
0.00106791
0.00106784
0.00106775
0.00106771
0.00106769
0.00106767
0.00106766
0.00106765
0.00106766
0.00106769
0.00106772
0.00106776
0.00106781
0.00106784
0.00106788
0.00106791
0.00106794
0.00106796
0.00106797
0.00106794
0.00106789
0.00106785
0.00106778
0.00106775
0.00106773
0.0010677
0.00106769
0.00106769
0.00106769
0.0010677
0.00106773
0.00106776
0.0010678
0.00106782
0.00106785
0.00106788
0.00106791
0.00106792
0.00106792
0.00106791
0.00106788
0.00106784
0.00106778
0.00106776
0.00106774
0.00106772
0.00106771
0.0010677
0.0010677
0.00106771
0.00106772
0.00106775
0.00106778
0.00106779
0.00106782
0.00106785
0.00106787
0.00106789
0.00106789
0.00106788
0.00106785
0.00106782
0.00106778
0.00106776
0.00106774
0.00106773
0.00106771
0.0010677
0.0010677
0.00106771
0.00106772
0.00106774
0.00106777
0.00106778
0.0010678
0.00106782
0.00106784
0.00106786
0.00106786
0.00106785
0.00106783
0.00106781
0.00106778
0.00106776
0.00106774
0.00106773
0.00106771
0.0010677
0.0010677
0.0010677
0.00106771
0.00106773
0.00106775
0.00106776
0.00106778
0.0010678
0.00106781
0.00106783
0.00106783
0.00106783
0.00106781
0.00106779
0.00106777
0.00106776
0.00106774
0.00106773
0.00106771
0.0010677
0.0010677
0.0010677
0.00106771
0.00106772
0.00106774
0.00106774
0.00106776
0.00106777
0.00106779
0.0010678
0.0010678
0.0010678
0.00106779
0.00106778
0.00106776
0.00106775
0.00106773
0.00106772
0.00106771
0.0010677
0.00106769
0.00106769
0.0010677
0.00106771
0.00106772
0.00106772
0.00106774
0.00106775
0.00106777
0.00106778
0.00106778
0.00106778
0.00106777
0.00106776
0.00106775
0.00106774
0.00106773
0.00106772
0.0010677
0.00106769
0.00106769
0.00106769
0.00106769
0.0010677
0.00106771
0.00106771
0.00106772
0.00106773
0.00106775
0.00106775
0.00106776
0.00106776
0.00106775
0.00106775
0.00106773
0.00106773
0.00106772
0.00106771
0.0010677
0.00106769
0.00106768
0.00106768
0.00106768
0.00106769
0.0010677
0.0010677
0.00106771
0.00106772
0.00106773
0.00106774
0.00106774
0.00106774
0.00106774
0.00106773
0.00106772
0.00106772
0.00106771
0.0010677
0.00106769
0.00106768
0.00106768
0.00106767
0.00106768
0.00106768
0.00106769
0.00106769
0.00106769
0.0010677
0.00106771
0.00106772
0.00106772
0.00106773
0.00106772
0.00106772
0.00106771
0.00106771
0.0010677
0.00106769
0.00106768
0.00106768
0.00106767
0.00106767
0.00106767
0.00106767
0.00106768
0.00106768
0.00106768
0.00106769
0.0010677
0.00106771
0.00106771
0.00106771
0.00106771
0.00106771
0.0010677
0.0010677
0.00106769
0.00106769
0.00106768
0.00106767
0.00106767
0.00106766
0.00106766
0.00106767
0.00106767
0.00106767
0.00106767
0.00106768
0.00106769
0.00106769
0.0010677
0.0010677
0.0010677
0.0010677
0.00106769
0.00106769
0.00106768
0.00106768
0.00106767
0.00106766
0.00106766
0.00106766
0.00106766
0.00106766
0.00106766
0.00106766
0.00106767
0.00106767
0.00106768
0.00106768
0.00106769
0.00106769
0.00106769
0.00106769
0.00106769
0.00106769
0.00106768
0.00106767
0.00106767
0.00106766
0.00106766
0.00106765
0.00106765
0.00106765
0.00106765
0.00106766
0.00106766
0.00106766
0.00106767
0.00106768
0.00106768
0.00106768
0.00106768
0.00106768
0.00106768
0.00106768
0.00106767
0.00106767
0.00106766
0.00106766
0.00106765
0.00106765
0.00106765
0.00106765
0.00106765
0.00106765
0.00106765
0.00106766
0.00106766
0.00106767
0.00106767
0.00106768
0.00106768
0.00106768
0.00106767
0.00106768
0.00106767
0.00106767
0.00106766
0.00106765
0.00106765
0.00106765
0.00106765
0.00106765
0.00106765
0.00106765
0.00106765
0.00106766
0.00106766
0.00106767
0.00106767
0.00106768
0.00106767
0.00106768
0.00106767
0.00106767
0.00106767
0.00106767
0.00106766
0.00106765
0.00106765
0.00106765
0.00106765
0.00106765
0.00106764
0.00106765
0.00106765
0.00106765
0.00106766
0.00106766
0.00106766
0.00106767
0.00106767
0.00106767
0.00106767
0.00106767
0.00106766
0.00106766
0.00106765
0.00106765
0.00106765
0.00106764
0.00106764
0.00106765
0.00106764
0.00106769
0.00106766
0.00106769
0.00106771
0.00106767
0.00106771
0.00106772
0.00106768
0.00106772
0.00106768
0.00106771
0.00106768
0.00106771
0.00106767
0.00106765
0.00106769
0.00106765
0.00106768
0.00106769
0.00106765
0.00124288
0.001243
0.00124305
0.00124303
0.00124293
0.00124278
0.00124257
0.00124233
0.00124208
0.00124186
0.00124168
0.00124156
0.00124153
0.00124157
0.00124168
0.00124185
0.00124206
0.00124228
0.00124251
0.00124271
0.00124318
0.00124333
0.0012434
0.00124339
0.00124328
0.00124309
0.00124283
0.00124252
0.00124219
0.00124189
0.00124165
0.0012415
0.00124145
0.00124151
0.00124166
0.00124187
0.00124214
0.00124243
0.00124271
0.00124296
0.00124363
0.00124382
0.00124393
0.00124392
0.00124381
0.00124359
0.00124328
0.00124289
0.00124247
0.00124207
0.00124175
0.00124155
0.0012415
0.00124158
0.00124177
0.00124204
0.00124237
0.00124272
0.00124306
0.00124337
0.00124415
0.00124438
0.00124451
0.00124453
0.00124442
0.00124418
0.00124382
0.00124335
0.00124284
0.00124234
0.00124194
0.0012417
0.00124164
0.00124174
0.00124198
0.0012423
0.00124268
0.00124309
0.00124348
0.00124384
0.00124465
0.00124491
0.00124507
0.0012451
0.00124501
0.00124476
0.00124437
0.00124385
0.00124326
0.00124267
0.0012422
0.00124193
0.00124188
0.001242
0.00124227
0.00124263
0.00124305
0.00124349
0.00124392
0.00124431
0.00124512
0.00124539
0.00124557
0.00124562
0.00124554
0.0012453
0.0012449
0.00124435
0.0012437
0.00124304
0.00124252
0.00124223
0.00124219
0.00124234
0.00124263
0.00124302
0.00124346
0.00124391
0.00124435
0.00124476
0.00124552
0.0012458
0.00124599
0.00124606
0.001246
0.00124577
0.00124538
0.00124482
0.00124414
0.00124344
0.00124288
0.00124259
0.00124256
0.00124273
0.00124304
0.00124343
0.00124387
0.00124432
0.00124476
0.00124517
0.00124586
0.00124614
0.00124633
0.00124642
0.00124637
0.00124617
0.00124579
0.00124524
0.00124455
0.00124383
0.00124326
0.00124299
0.00124298
0.00124316
0.00124346
0.00124385
0.00124427
0.0012447
0.00124513
0.00124552
0.00124614
0.00124641
0.0012466
0.00124669
0.00124666
0.00124648
0.00124612
0.00124559
0.00124493
0.0012442
0.00124364
0.00124341
0.00124341
0.0012436
0.00124389
0.00124426
0.00124465
0.00124506
0.00124545
0.00124581
0.00124636
0.00124661
0.0012468
0.00124689
0.00124687
0.00124671
0.00124639
0.00124589
0.00124526
0.00124456
0.00124403
0.00124383
0.00124386
0.00124404
0.00124431
0.00124464
0.001245
0.00124537
0.00124573
0.00124606
0.00124653
0.00124677
0.00124694
0.00124703
0.00124702
0.00124688
0.00124659
0.00124613
0.00124555
0.00124488
0.00124441
0.00124425
0.00124429
0.00124446
0.0012447
0.001245
0.00124532
0.00124564
0.00124596
0.00124626
0.00124666
0.00124687
0.00124703
0.00124712
0.00124712
0.001247
0.00124674
0.00124633
0.00124579
0.00124518
0.00124477
0.00124465
0.0012447
0.00124485
0.00124506
0.00124531
0.00124559
0.00124587
0.00124615
0.00124642
0.00124676
0.00124695
0.00124709
0.00124717
0.00124718
0.00124708
0.00124685
0.00124648
0.00124601
0.00124545
0.00124511
0.00124503
0.00124507
0.0012452
0.00124538
0.00124559
0.00124582
0.00124607
0.00124631
0.00124654
0.00124682
0.00124699
0.00124712
0.00124719
0.0012472
0.00124712
0.00124693
0.0012466
0.00124619
0.0012457
0.00124542
0.00124537
0.0012454
0.00124551
0.00124565
0.00124583
0.00124602
0.00124622
0.00124643
0.00124663
0.00124687
0.00124701
0.00124712
0.00124719
0.00124721
0.00124714
0.00124698
0.0012467
0.00124635
0.00124593
0.0012457
0.00124566
0.00124569
0.00124577
0.00124589
0.00124603
0.00124618
0.00124635
0.00124652
0.0012467
0.00124689
0.00124701
0.00124712
0.00124718
0.00124719
0.00124714
0.001247
0.00124677
0.00124648
0.00124613
0.00124595
0.00124592
0.00124594
0.00124599
0.00124608
0.00124619
0.00124631
0.00124645
0.0012466
0.00124675
0.00124689
0.001247
0.00124709
0.00124715
0.00124717
0.00124712
0.00124702
0.00124682
0.00124659
0.0012463
0.00124616
0.00124613
0.00124614
0.00124617
0.00124623
0.00124632
0.00124642
0.00124653
0.00124665
0.00124678
0.00124689
0.00124699
0.00124707
0.00124712
0.00124714
0.0012471
0.00124702
0.00124686
0.00124667
0.00124644
0.00124633
0.0012463
0.00124629
0.00124632
0.00124636
0.00124642
0.0012465
0.00124659
0.00124669
0.00124679
0.00124689
0.00124696
0.00124703
0.00124708
0.0012471
0.00124707
0.001247
0.00124688
0.00124672
0.00124654
0.00124646
0.00124642
0.00124642
0.00124643
0.00124645
0.0012465
0.00124656
0.00124663
0.00124671
0.0012468
0.00124687
0.00124694
0.001247
0.00124704
0.00124706
0.00124704
0.00124699
0.00124689
0.00124677
0.00124663
0.00124657
0.00124653
0.00124651
0.00124651
0.00124653
0.00124656
0.0012466
0.00124666
0.00124673
0.0012468
0.00124685
0.00124691
0.00124696
0.001247
0.00124702
0.00124701
0.00124697
0.00124688
0.00124679
0.00124668
0.00124663
0.0012466
0.00124658
0.00124657
0.00124658
0.0012466
0.00124663
0.00124668
0.00124673
0.00124679
0.00124683
0.00124688
0.00124693
0.00124696
0.00124697
0.00124695
0.00124693
0.00124688
0.00124679
0.00124671
0.00124666
0.00124663
0.00124662
0.00124661
0.0012466
0.00124662
0.00124665
0.00124669
0.00124673
0.00124678
0.00124681
0.00124685
0.00124689
0.00124692
0.00124694
0.00124695
0.00124691
0.00124685
0.00124681
0.00124675
0.00124671
0.00124669
0.00124665
0.00124665
0.00124666
0.00124666
0.00124667
0.00124669
0.00124673
0.00124677
0.00124679
0.00124683
0.00124686
0.00124688
0.0012469
0.0012469
0.00124689
0.00124685
0.0012468
0.00124675
0.00124672
0.0012467
0.00124669
0.00124667
0.00124666
0.00124666
0.00124667
0.00124669
0.00124672
0.00124675
0.00124677
0.0012468
0.00124683
0.00124685
0.00124686
0.00124687
0.00124685
0.00124682
0.00124679
0.00124675
0.00124673
0.00124671
0.00124669
0.00124668
0.00124667
0.00124667
0.00124668
0.00124669
0.00124671
0.00124674
0.00124675
0.00124678
0.0012468
0.00124682
0.00124683
0.00124683
0.00124683
0.0012468
0.00124678
0.00124675
0.00124673
0.00124671
0.00124669
0.00124668
0.00124667
0.00124667
0.00124667
0.00124668
0.0012467
0.00124672
0.00124673
0.00124675
0.00124677
0.00124679
0.0012468
0.0012468
0.0012468
0.00124678
0.00124677
0.00124674
0.00124672
0.00124671
0.00124669
0.00124668
0.00124667
0.00124667
0.00124667
0.00124668
0.00124669
0.00124671
0.00124671
0.00124673
0.00124675
0.00124676
0.00124677
0.00124678
0.00124678
0.00124676
0.00124675
0.00124673
0.00124672
0.0012467
0.00124669
0.00124668
0.00124667
0.00124666
0.00124666
0.00124667
0.00124668
0.0012467
0.0012467
0.00124671
0.00124673
0.00124674
0.00124675
0.00124675
0.00124675
0.00124674
0.00124673
0.00124672
0.00124671
0.0012467
0.00124668
0.00124667
0.00124666
0.00124666
0.00124666
0.00124666
0.00124667
0.00124668
0.00124668
0.0012467
0.00124671
0.00124672
0.00124673
0.00124673
0.00124673
0.00124673
0.00124672
0.00124671
0.0012467
0.00124669
0.00124668
0.00124667
0.00124666
0.00124665
0.00124665
0.00124665
0.00124666
0.00124667
0.00124667
0.00124668
0.00124669
0.0012467
0.00124671
0.00124671
0.00124672
0.00124671
0.00124671
0.00124669
0.00124669
0.00124668
0.00124667
0.00124666
0.00124665
0.00124665
0.00124665
0.00124665
0.00124665
0.00124666
0.00124666
0.00124667
0.00124668
0.00124669
0.00124669
0.0012467
0.0012467
0.0012467
0.00124669
0.00124668
0.00124668
0.00124667
0.00124666
0.00124665
0.00124665
0.00124664
0.00124664
0.00124664
0.00124664
0.00124665
0.00124665
0.00124666
0.00124666
0.00124667
0.00124668
0.00124668
0.00124669
0.00124668
0.00124668
0.00124667
0.00124667
0.00124666
0.00124666
0.00124665
0.00124664
0.00124664
0.00124663
0.00124663
0.00124664
0.00124664
0.00124664
0.00124665
0.00124665
0.00124666
0.00124667
0.00124667
0.00124667
0.00124667
0.00124667
0.00124666
0.00124666
0.00124666
0.00124665
0.00124664
0.00124664
0.00124663
0.00124663
0.00124663
0.00124663
0.00124663
0.00124663
0.00124664
0.00124664
0.00124665
0.00124666
0.00124666
0.00124666
0.00124666
0.00124666
0.00124666
0.00124666
0.00124665
0.00124665
0.00124664
0.00124663
0.00124663
0.00124662
0.00124662
0.00124663
0.00124663
0.00124663
0.00124663
0.00124664
0.00124664
0.00124665
0.00124665
0.00124666
0.00124665
0.00124666
0.00124665
0.00124665
0.00124664
0.00124664
0.00124663
0.00124663
0.00124662
0.00124662
0.00124662
0.00124662
0.00124662
0.00124662
0.00124662
0.00124663
0.00124664
0.00124664
0.00124664
0.00124665
0.00124665
0.00124665
0.00124665
0.00124665
0.00124664
0.00124664
0.00124663
0.00124662
0.00124662
0.00124662
0.00124662
0.00124662
0.00124662
0.00124662
0.00124662
0.00124663
0.00124664
0.00124664
0.00124664
0.00124665
0.00124664
0.00124665
0.00124664
0.00124665
0.00124664
0.00124664
0.00124663
0.00124662
0.00124662
0.00124662
0.00124662
0.00124662
0.00124662
0.00124662
0.00124662
0.00124662
0.00124663
0.00124663
0.00124664
0.00124664
0.00124664
0.00124665
0.00124664
0.00124664
0.00124663
0.00124663
0.00124662
0.00124662
0.00124662
0.00124661
0.00124661
0.00124662
0.00124661
0.00124666
0.00124663
0.00124666
0.00124668
0.00124664
0.00124668
0.00124669
0.00124665
0.00124669
0.00124665
0.00124669
0.00124665
0.00124668
0.00124664
0.00124662
0.00124666
0.00124662
0.00124665
0.00124667
0.00124662
0.00146724
0.00146734
0.00146737
0.00146736
0.00146728
0.00146716
0.001467
0.00146682
0.00146662
0.00146645
0.00146631
0.00146622
0.00146619
0.00146622
0.0014663
0.00146643
0.00146659
0.00146677
0.00146695
0.00146711
0.00146751
0.00146763
0.00146768
0.00146767
0.00146758
0.00146743
0.00146722
0.00146697
0.00146672
0.00146648
0.00146629
0.00146617
0.00146613
0.00146617
0.00146629
0.00146645
0.00146667
0.0014669
0.00146713
0.00146733
0.00146793
0.00146809
0.00146817
0.00146816
0.00146806
0.00146788
0.00146761
0.0014673
0.00146697
0.00146665
0.0014664
0.00146624
0.00146619
0.00146624
0.00146639
0.00146661
0.00146687
0.00146716
0.00146745
0.00146771
0.00146842
0.00146861
0.00146872
0.00146873
0.00146862
0.00146841
0.0014681
0.00146772
0.0014673
0.0014669
0.00146658
0.00146638
0.00146632
0.00146639
0.00146658
0.00146684
0.00146716
0.00146751
0.00146785
0.00146816
0.00146891
0.00146913
0.00146926
0.00146929
0.00146919
0.00146896
0.00146862
0.00146818
0.00146768
0.00146721
0.00146682
0.00146659
0.00146653
0.00146662
0.00146683
0.00146714
0.0014675
0.00146789
0.00146827
0.00146861
0.00146938
0.00146962
0.00146977
0.00146981
0.00146972
0.00146949
0.00146913
0.00146865
0.00146809
0.00146755
0.00146712
0.00146687
0.00146681
0.00146692
0.00146716
0.0014675
0.00146788
0.00146829
0.00146869
0.00146906
0.00146979
0.00147005
0.00147021
0.00147026
0.00147018
0.00146996
0.00146959
0.00146909
0.00146851
0.00146792
0.00146745
0.00146719
0.00146714
0.00146727
0.00146753
0.00146787
0.00146827
0.00146869
0.00146909
0.00146946
0.00147015
0.0014704
0.00147057
0.00147064
0.00147057
0.00147037
0.00147001
0.00146951
0.0014689
0.00146829
0.00146781
0.00146755
0.00146752
0.00146766
0.00146792
0.00146827
0.00146866
0.00146906
0.00146946
0.00146982
0.00147044
0.00147069
0.00147087
0.00147094
0.00147089
0.0014707
0.00147036
0.00146986
0.00146927
0.00146865
0.00146817
0.00146794
0.00146792
0.00146806
0.00146832
0.00146866
0.00146903
0.00146941
0.00146979
0.00147013
0.00147068
0.00147092
0.00147109
0.00147117
0.00147113
0.00147096
0.00147064
0.00147017
0.0014696
0.00146899
0.00146853
0.00146833
0.00146832
0.00146847
0.00146872
0.00146903
0.00146937
0.00146972
0.00147007
0.00147039
0.00147087
0.0014711
0.00147126
0.00147134
0.00147131
0.00147116
0.00147087
0.00147043
0.00146989
0.00146931
0.00146889
0.00146872
0.00146872
0.00146887
0.00146909
0.00146937
0.00146968
0.00147
0.00147031
0.00147061
0.00147102
0.00147122
0.00147137
0.00147145
0.00147143
0.0014713
0.00147104
0.00147064
0.00147015
0.0014696
0.00146923
0.00146909
0.00146911
0.00146924
0.00146944
0.00146968
0.00146995
0.00147023
0.00147051
0.00147078
0.00147113
0.00147131
0.00147145
0.00147152
0.00147152
0.0014714
0.00147117
0.00147081
0.00147037
0.00146987
0.00146955
0.00146944
0.00146946
0.00146957
0.00146975
0.00146996
0.00147019
0.00147043
0.00147068
0.00147091
0.0014712
0.00147137
0.00147149
0.00147156
0.00147156
0.00147147
0.00147127
0.00147095
0.00147055
0.00147011
0.00146984
0.00146976
0.00146978
0.00146988
0.00147002
0.0014702
0.00147039
0.0014706
0.00147081
0.00147102
0.00147125
0.0014714
0.00147151
0.00147157
0.00147158
0.0014715
0.00147133
0.00147106
0.00147072
0.00147034
0.00147011
0.00147005
0.00147006
0.00147014
0.00147025
0.00147039
0.00147056
0.00147073
0.00147091
0.00147109
0.00147128
0.00147141
0.00147151
0.00147157
0.00147158
0.00147152
0.00147137
0.00147114
0.00147086
0.00147053
0.00147035
0.0014703
0.00147031
0.00147036
0.00147045
0.00147056
0.0014707
0.00147084
0.00147099
0.00147114
0.0014713
0.00147141
0.0014715
0.00147155
0.00147156
0.00147151
0.0014714
0.0014712
0.00147097
0.0014707
0.00147055
0.00147051
0.00147051
0.00147055
0.00147061
0.0014707
0.00147081
0.00147092
0.00147105
0.00147118
0.0014713
0.0014714
0.00147148
0.00147153
0.00147154
0.0014715
0.0014714
0.00147124
0.00147105
0.00147083
0.00147072
0.00147068
0.00147067
0.00147069
0.00147074
0.00147081
0.00147089
0.00147099
0.00147109
0.0014712
0.0014713
0.00147138
0.00147144
0.00147149
0.00147151
0.00147148
0.0014714
0.00147128
0.00147111
0.00147093
0.00147084
0.0014708
0.0014708
0.00147081
0.00147084
0.00147089
0.00147095
0.00147103
0.00147112
0.00147121
0.00147128
0.00147135
0.00147141
0.00147146
0.00147147
0.00147145
0.00147139
0.00147129
0.00147117
0.00147103
0.00147096
0.00147092
0.0014709
0.0014709
0.00147092
0.00147095
0.001471
0.00147106
0.00147113
0.00147121
0.00147127
0.00147133
0.00147138
0.00147142
0.00147143
0.00147142
0.00147137
0.00147129
0.00147119
0.00147108
0.00147102
0.00147098
0.00147097
0.00147096
0.00147098
0.001471
0.00147104
0.00147109
0.00147114
0.0014712
0.00147125
0.0014713
0.00147135
0.00147138
0.00147138
0.00147138
0.00147135
0.00147128
0.00147119
0.0014711
0.00147106
0.00147103
0.00147102
0.00147101
0.00147101
0.00147102
0.00147106
0.0014711
0.00147114
0.0014712
0.00147123
0.00147127
0.00147131
0.00147134
0.00147136
0.00147136
0.00147131
0.00147126
0.00147122
0.00147115
0.00147111
0.00147109
0.00147105
0.00147103
0.00147106
0.00147106
0.00147107
0.0014711
0.00147114
0.00147118
0.00147121
0.00147124
0.00147128
0.00147131
0.00147132
0.00147132
0.00147131
0.00147127
0.00147121
0.00147115
0.00147112
0.0014711
0.00147109
0.00147108
0.00147106
0.00147107
0.00147108
0.0014711
0.00147113
0.00147117
0.00147119
0.00147122
0.00147125
0.00147127
0.00147128
0.00147128
0.00147127
0.00147124
0.0014712
0.00147116
0.00147113
0.00147111
0.00147109
0.00147108
0.00147107
0.00147108
0.00147109
0.0014711
0.00147113
0.00147115
0.00147117
0.00147119
0.00147122
0.00147124
0.00147125
0.00147125
0.00147124
0.00147122
0.00147119
0.00147116
0.00147114
0.00147112
0.0014711
0.00147109
0.00147108
0.00147108
0.00147108
0.0014711
0.00147112
0.00147114
0.00147115
0.00147117
0.00147119
0.00147121
0.00147122
0.00147122
0.00147122
0.0014712
0.00147118
0.00147115
0.00147113
0.00147112
0.0014711
0.00147109
0.00147108
0.00147108
0.00147108
0.00147109
0.00147111
0.00147113
0.00147113
0.00147115
0.00147117
0.00147118
0.00147119
0.0014712
0.00147119
0.00147118
0.00147116
0.00147114
0.00147113
0.00147111
0.0014711
0.00147109
0.00147108
0.00147108
0.00147108
0.00147108
0.0014711
0.00147111
0.00147111
0.00147113
0.00147115
0.00147116
0.00147117
0.00147117
0.00147117
0.00147116
0.00147115
0.00147113
0.00147112
0.00147111
0.0014711
0.00147108
0.00147108
0.00147107
0.00147107
0.00147108
0.00147109
0.0014711
0.0014711
0.00147111
0.00147113
0.00147114
0.00147115
0.00147115
0.00147115
0.00147114
0.00147113
0.00147112
0.00147111
0.0014711
0.00147109
0.00147108
0.00147107
0.00147107
0.00147106
0.00147107
0.00147108
0.00147109
0.00147108
0.0014711
0.00147111
0.00147112
0.00147113
0.00147113
0.00147113
0.00147113
0.00147112
0.00147111
0.0014711
0.00147109
0.00147108
0.00147107
0.00147107
0.00147106
0.00147106
0.00147106
0.00147107
0.00147107
0.00147107
0.00147108
0.00147109
0.0014711
0.00147111
0.00147111
0.00147112
0.00147111
0.00147111
0.0014711
0.00147109
0.00147108
0.00147108
0.00147107
0.00147106
0.00147105
0.00147105
0.00147105
0.00147106
0.00147106
0.00147106
0.00147107
0.00147108
0.00147109
0.00147109
0.0014711
0.0014711
0.0014711
0.0014711
0.00147109
0.00147109
0.00147108
0.00147107
0.00147106
0.00147105
0.00147105
0.00147105
0.00147105
0.00147105
0.00147105
0.00147105
0.00147106
0.00147107
0.00147108
0.00147108
0.00147109
0.00147109
0.00147109
0.00147109
0.00147108
0.00147108
0.00147107
0.00147106
0.00147106
0.00147105
0.00147104
0.00147104
0.00147104
0.00147104
0.00147105
0.00147105
0.00147105
0.00147106
0.00147107
0.00147107
0.00147108
0.00147108
0.00147108
0.00147108
0.00147107
0.00147107
0.00147106
0.00147106
0.00147105
0.00147104
0.00147104
0.00147104
0.00147104
0.00147104
0.00147104
0.00147104
0.00147105
0.00147105
0.00147106
0.00147106
0.00147107
0.00147107
0.00147107
0.00147107
0.00147107
0.00147107
0.00147106
0.00147106
0.00147105
0.00147104
0.00147104
0.00147103
0.00147103
0.00147104
0.00147103
0.00147104
0.00147104
0.00147105
0.00147105
0.00147106
0.00147106
0.00147107
0.00147106
0.00147107
0.00147106
0.00147106
0.00147105
0.00147105
0.00147104
0.00147104
0.00147103
0.00147103
0.00147103
0.00147103
0.00147103
0.00147104
0.00147104
0.00147104
0.00147105
0.00147105
0.00147106
0.00147106
0.00147106
0.00147107
0.00147106
0.00147106
0.00147105
0.00147105
0.00147104
0.00147104
0.00147104
0.00147103
0.00147103
0.00147103
0.00147103
0.00147103
0.00147103
0.00147104
0.00147105
0.00147105
0.00147105
0.00147106
0.00147105
0.00147106
0.00147105
0.00147106
0.00147105
0.00147105
0.00147104
0.00147103
0.00147103
0.00147103
0.00147103
0.00147103
0.00147102
0.00147108
0.00147104
0.00147108
0.0014711
0.00147106
0.0014711
0.00147111
0.00147107
0.00147111
0.00147107
0.00147111
0.00147106
0.0014711
0.00147105
0.00147104
0.00147108
0.00147104
0.00147107
0.00147108
0.00147104
0.00175291
0.00175299
0.00175302
0.001753
0.00175294
0.00175284
0.00175271
0.00175256
0.00175241
0.00175228
0.00175217
0.00175209
0.00175206
0.00175209
0.00175215
0.00175225
0.00175239
0.00175252
0.00175267
0.0017528
0.00175314
0.00175324
0.00175329
0.00175328
0.0017532
0.00175307
0.0017529
0.0017527
0.0017525
0.00175231
0.00175216
0.00175206
0.00175202
0.00175205
0.00175214
0.00175227
0.00175245
0.00175263
0.00175283
0.001753
0.00175354
0.00175367
0.00175373
0.00175372
0.00175364
0.00175348
0.00175326
0.001753
0.00175273
0.00175247
0.00175226
0.00175213
0.00175208
0.00175212
0.00175224
0.00175242
0.00175264
0.00175288
0.00175313
0.00175335
0.001754
0.00175417
0.00175426
0.00175425
0.00175416
0.00175397
0.00175371
0.00175338
0.00175303
0.0017527
0.00175244
0.00175227
0.00175221
0.00175226
0.00175242
0.00175264
0.00175291
0.00175321
0.0017535
0.00175377
0.00175448
0.00175467
0.00175479
0.0017548
0.0017547
0.00175449
0.00175419
0.00175381
0.00175339
0.00175299
0.00175267
0.00175247
0.00175241
0.00175247
0.00175265
0.00175292
0.00175323
0.00175357
0.00175391
0.00175421
0.00175493
0.00175516
0.00175528
0.00175531
0.00175522
0.00175501
0.00175468
0.00175425
0.00175378
0.00175332
0.00175295
0.00175273
0.00175266
0.00175275
0.00175295
0.00175324
0.00175358
0.00175395
0.00175432
0.00175465
0.00175536
0.00175559
0.00175573
0.00175577
0.00175569
0.00175547
0.00175513
0.00175468
0.00175417
0.00175367
0.00175326
0.00175303
0.00175297
0.00175307
0.00175329
0.0017536
0.00175396
0.00175434
0.00175472
0.00175506
0.00175573
0.00175596
0.00175611
0.00175617
0.00175609
0.00175589
0.00175555
0.00175509
0.00175455
0.00175402
0.0017536
0.00175336
0.00175332
0.00175342
0.00175366
0.00175397
0.00175433
0.00175471
0.00175508
0.00175542
0.00175604
0.00175628
0.00175643
0.00175649
0.00175643
0.00175624
0.0017559
0.00175545
0.00175491
0.00175437
0.00175394
0.00175372
0.00175368
0.0017538
0.00175404
0.00175434
0.00175469
0.00175505
0.00175541
0.00175575
0.0017563
0.00175653
0.00175668
0.00175674
0.00175669
0.00175652
0.00175621
0.00175576
0.00175524
0.0017547
0.00175429
0.00175409
0.00175406
0.00175419
0.00175441
0.0017547
0.00175503
0.00175537
0.0017557
0.00175602
0.00175651
0.00175672
0.00175687
0.00175693
0.0017569
0.00175674
0.00175645
0.00175603
0.00175553
0.00175501
0.00175463
0.00175445
0.00175444
0.00175456
0.00175477
0.00175504
0.00175534
0.00175565
0.00175596
0.00175625
0.00175667
0.00175686
0.001757
0.00175707
0.00175704
0.0017569
0.00175664
0.00175626
0.00175579
0.0017553
0.00175496
0.00175481
0.00175481
0.00175492
0.00175511
0.00175534
0.00175561
0.00175589
0.00175616
0.00175643
0.00175679
0.00175696
0.0017571
0.00175716
0.00175715
0.00175703
0.00175679
0.00175644
0.00175602
0.00175557
0.00175526
0.00175514
0.00175514
0.00175525
0.00175541
0.00175562
0.00175585
0.00175609
0.00175634
0.00175657
0.00175687
0.00175703
0.00175715
0.00175722
0.00175721
0.00175711
0.0017569
0.00175659
0.00175621
0.00175581
0.00175554
0.00175545
0.00175546
0.00175554
0.00175568
0.00175585
0.00175605
0.00175627
0.00175648
0.00175668
0.00175693
0.00175708
0.00175718
0.00175725
0.00175724
0.00175716
0.00175698
0.00175671
0.00175638
0.00175603
0.0017558
0.00175572
0.00175573
0.0017558
0.00175592
0.00175606
0.00175623
0.0017564
0.00175659
0.00175677
0.00175697
0.0017571
0.00175719
0.00175725
0.00175725
0.00175718
0.00175704
0.0017568
0.00175652
0.00175622
0.00175603
0.00175597
0.00175597
0.00175603
0.00175611
0.00175623
0.00175637
0.00175652
0.00175667
0.00175683
0.00175699
0.0017571
0.00175719
0.00175724
0.00175724
0.00175719
0.00175707
0.00175687
0.00175664
0.00175638
0.00175623
0.00175617
0.00175617
0.00175621
0.00175628
0.00175637
0.00175648
0.0017566
0.00175673
0.00175686
0.001757
0.00175709
0.00175717
0.00175722
0.00175723
0.00175719
0.00175709
0.00175692
0.00175673
0.00175651
0.00175639
0.00175634
0.00175633
0.00175636
0.00175641
0.00175648
0.00175657
0.00175667
0.00175678
0.00175689
0.001757
0.00175708
0.00175715
0.00175719
0.00175721
0.00175717
0.00175709
0.00175696
0.00175678
0.00175661
0.00175651
0.00175646
0.00175647
0.00175648
0.00175651
0.00175657
0.00175664
0.00175672
0.00175681
0.00175691
0.00175698
0.00175706
0.00175712
0.00175716
0.00175717
0.00175714
0.00175708
0.00175697
0.00175686
0.00175672
0.00175664
0.0017566
0.00175657
0.00175658
0.00175659
0.00175663
0.00175669
0.00175676
0.00175683
0.00175691
0.00175697
0.00175703
0.00175709
0.00175712
0.00175714
0.00175712
0.00175707
0.00175698
0.00175688
0.00175676
0.0017567
0.00175666
0.00175664
0.00175665
0.00175666
0.00175669
0.00175673
0.00175678
0.00175684
0.0017569
0.00175695
0.00175701
0.00175705
0.00175708
0.0017571
0.00175709
0.00175705
0.00175698
0.0017569
0.0017568
0.00175675
0.00175672
0.0017567
0.0017567
0.0017567
0.00175672
0.00175675
0.00175679
0.00175684
0.0017569
0.00175693
0.00175698
0.00175702
0.00175705
0.00175706
0.00175705
0.00175701
0.00175696
0.00175691
0.00175683
0.00175679
0.00175676
0.00175673
0.00175672
0.00175673
0.00175675
0.00175677
0.0017568
0.00175684
0.00175689
0.00175691
0.00175695
0.00175699
0.00175701
0.00175703
0.00175702
0.00175701
0.00175697
0.00175691
0.00175685
0.00175681
0.00175679
0.00175678
0.00175677
0.00175676
0.00175676
0.00175678
0.0017568
0.00175684
0.00175687
0.00175689
0.00175692
0.00175695
0.00175698
0.00175699
0.00175699
0.00175697
0.00175694
0.0017569
0.00175685
0.00175683
0.0017568
0.00175679
0.00175677
0.00175677
0.00175677
0.00175678
0.0017568
0.00175683
0.00175686
0.00175687
0.0017569
0.00175693
0.00175695
0.00175696
0.00175696
0.00175695
0.00175692
0.00175689
0.00175685
0.00175683
0.00175681
0.00175679
0.00175678
0.00175678
0.00175678
0.00175678
0.0017568
0.00175682
0.00175684
0.00175685
0.00175688
0.0017569
0.00175692
0.00175693
0.00175693
0.00175692
0.0017569
0.00175688
0.00175685
0.00175683
0.00175681
0.0017568
0.00175679
0.00175678
0.00175678
0.00175678
0.00175679
0.00175681
0.00175683
0.00175683
0.00175685
0.00175687
0.00175689
0.0017569
0.0017569
0.0017569
0.00175688
0.00175687
0.00175684
0.00175683
0.00175681
0.0017568
0.00175679
0.00175678
0.00175678
0.00175678
0.00175678
0.0017568
0.00175681
0.00175682
0.00175683
0.00175685
0.00175686
0.00175687
0.00175688
0.00175688
0.00175686
0.00175685
0.00175683
0.00175682
0.00175681
0.0017568
0.00175678
0.00175677
0.00175677
0.00175677
0.00175678
0.00175679
0.0017568
0.0017568
0.00175682
0.00175683
0.00175684
0.00175685
0.00175686
0.00175686
0.00175685
0.00175684
0.00175682
0.00175681
0.0017568
0.00175679
0.00175678
0.00175677
0.00175677
0.00175677
0.00175677
0.00175678
0.00175679
0.00175679
0.0017568
0.00175681
0.00175682
0.00175683
0.00175684
0.00175684
0.00175683
0.00175682
0.00175681
0.0017568
0.00175679
0.00175678
0.00175677
0.00175677
0.00175676
0.00175676
0.00175676
0.00175677
0.00175678
0.00175678
0.00175679
0.0017568
0.00175681
0.00175681
0.00175682
0.00175682
0.00175681
0.00175681
0.0017568
0.0017568
0.00175678
0.00175678
0.00175677
0.00175676
0.00175676
0.00175675
0.00175675
0.00175676
0.00175677
0.00175677
0.00175677
0.00175678
0.00175679
0.0017568
0.0017568
0.00175681
0.0017568
0.0017568
0.00175679
0.00175679
0.00175678
0.00175677
0.00175676
0.00175675
0.00175675
0.00175675
0.00175675
0.00175675
0.00175676
0.00175676
0.00175676
0.00175677
0.00175678
0.00175679
0.00175679
0.00175679
0.00175679
0.00175679
0.00175678
0.00175678
0.00175677
0.00175677
0.00175676
0.00175675
0.00175675
0.00175674
0.00175674
0.00175675
0.00175675
0.00175675
0.00175675
0.00175676
0.00175677
0.00175677
0.00175678
0.00175678
0.00175678
0.00175678
0.00175677
0.00175677
0.00175676
0.00175676
0.00175675
0.00175674
0.00175674
0.00175674
0.00175674
0.00175674
0.00175674
0.00175674
0.00175675
0.00175675
0.00175676
0.00175677
0.00175677
0.00175678
0.00175677
0.00175678
0.00175677
0.00175677
0.00175676
0.00175676
0.00175675
0.00175674
0.00175674
0.00175673
0.00175673
0.00175674
0.00175674
0.00175674
0.00175674
0.00175675
0.00175676
0.00175676
0.00175676
0.00175677
0.00175677
0.00175677
0.00175676
0.00175676
0.00175675
0.00175675
0.00175674
0.00175674
0.00175674
0.00175673
0.00175673
0.00175673
0.00175673
0.00175674
0.00175674
0.00175675
0.00175675
0.00175676
0.00175676
0.00175677
0.00175676
0.00175677
0.00175676
0.00175676
0.00175675
0.00175675
0.00175674
0.00175674
0.00175674
0.00175673
0.00175673
0.00175674
0.00175673
0.00175673
0.00175673
0.00175674
0.00175675
0.00175675
0.00175676
0.00175676
0.00175676
0.00175676
0.00175675
0.00175676
0.00175675
0.00175675
0.00175674
0.00175673
0.00175673
0.00175673
0.00175673
0.00175673
0.00175673
0.00175678
0.00175675
0.00175678
0.0017568
0.00175676
0.0017568
0.00175682
0.00175677
0.00175681
0.00175677
0.00175681
0.00175676
0.0017568
0.00175675
0.00175674
0.00175678
0.00175674
0.00175677
0.00175679
0.00175674
0.0021229
0.00212297
0.00212299
0.00212298
0.00212293
0.00212285
0.00212274
0.00212262
0.0021225
0.00212238
0.00212229
0.00212224
0.00212221
0.00212222
0.00212228
0.00212236
0.00212247
0.00212259
0.0021227
0.00212281
0.00212311
0.0021232
0.00212323
0.00212322
0.00212316
0.00212306
0.00212291
0.00212275
0.00212258
0.00212242
0.00212229
0.00212221
0.00212218
0.0021222
0.00212227
0.00212239
0.00212253
0.00212269
0.00212284
0.00212299
0.00212348
0.00212359
0.00212365
0.00212363
0.00212356
0.00212343
0.00212324
0.00212302
0.00212279
0.00212258
0.0021224
0.00212229
0.00212225
0.00212227
0.00212237
0.00212252
0.00212271
0.00212292
0.00212312
0.00212332
0.00212392
0.00212406
0.00212414
0.00212414
0.00212405
0.00212389
0.00212365
0.00212337
0.00212308
0.0021228
0.00212257
0.00212242
0.00212237
0.00212241
0.00212254
0.00212273
0.00212296
0.00212323
0.00212348
0.00212372
0.00212439
0.00212456
0.00212465
0.00212466
0.00212457
0.00212438
0.00212411
0.00212378
0.00212342
0.00212308
0.0021228
0.00212262
0.00212256
0.00212261
0.00212276
0.00212299
0.00212327
0.00212357
0.00212387
0.00212416
0.00212485
0.00212504
0.00212515
0.00212517
0.00212508
0.00212488
0.00212458
0.0021242
0.00212378
0.00212339
0.00212307
0.00212287
0.0021228
0.00212286
0.00212304
0.0021233
0.00212361
0.00212394
0.00212427
0.00212459
0.00212528
0.00212549
0.00212561
0.00212564
0.00212555
0.00212535
0.00212503
0.00212462
0.00212416
0.00212372
0.00212337
0.00212315
0.00212309
0.00212317
0.00212336
0.00212364
0.00212397
0.00212432
0.00212467
0.002125
0.00212565
0.00212587
0.002126
0.00212604
0.00212596
0.00212576
0.00212544
0.00212502
0.00212453
0.00212406
0.00212369
0.00212347
0.00212342
0.0021235
0.00212371
0.00212399
0.00212433
0.00212468
0.00212504
0.00212537
0.00212598
0.0021262
0.00212634
0.00212638
0.00212631
0.00212612
0.00212581
0.00212538
0.00212488
0.0021244
0.00212402
0.0021238
0.00212376
0.00212386
0.00212407
0.00212435
0.00212468
0.00212503
0.00212538
0.0021257
0.00212625
0.00212646
0.00212661
0.00212666
0.0021266
0.00212642
0.00212611
0.0021257
0.00212521
0.00212473
0.00212435
0.00212415
0.00212412
0.00212422
0.00212443
0.0021247
0.00212501
0.00212534
0.00212567
0.00212598
0.00212647
0.00212667
0.00212681
0.00212687
0.00212682
0.00212666
0.00212637
0.00212597
0.00212551
0.00212504
0.00212468
0.0021245
0.00212448
0.00212458
0.00212477
0.00212503
0.00212532
0.00212563
0.00212593
0.00212622
0.00212664
0.00212683
0.00212696
0.00212702
0.00212699
0.00212685
0.00212658
0.00212621
0.00212577
0.00212532
0.00212499
0.00212484
0.00212483
0.00212492
0.0021251
0.00212533
0.0021256
0.00212587
0.00212614
0.00212641
0.00212678
0.00212695
0.00212708
0.00212713
0.00212711
0.00212698
0.00212675
0.0021264
0.002126
0.00212558
0.00212529
0.00212516
0.00212515
0.00212524
0.0021254
0.00212561
0.00212584
0.00212608
0.00212633
0.00212656
0.00212687
0.00212703
0.00212715
0.0021272
0.00212719
0.00212708
0.00212687
0.00212657
0.0021262
0.00212582
0.00212556
0.00212546
0.00212546
0.00212554
0.00212567
0.00212585
0.00212605
0.00212626
0.00212647
0.00212668
0.00212694
0.00212708
0.00212719
0.00212724
0.00212724
0.00212714
0.00212696
0.00212669
0.00212637
0.00212604
0.00212582
0.00212573
0.00212573
0.00212579
0.00212591
0.00212605
0.00212622
0.0021264
0.00212659
0.00212677
0.00212698
0.00212711
0.00212721
0.00212726
0.00212726
0.00212718
0.00212703
0.0021268
0.00212652
0.00212623
0.00212604
0.00212596
0.00212596
0.00212601
0.0021261
0.00212623
0.00212637
0.00212652
0.00212668
0.00212684
0.00212701
0.00212712
0.00212721
0.00212726
0.00212726
0.0021272
0.00212707
0.00212688
0.00212664
0.00212639
0.00212624
0.00212617
0.00212617
0.0021262
0.00212627
0.00212637
0.00212649
0.00212661
0.00212675
0.00212688
0.00212702
0.00212712
0.0021272
0.00212725
0.00212725
0.0021272
0.00212709
0.00212693
0.00212673
0.00212653
0.0021264
0.00212634
0.00212633
0.00212635
0.00212641
0.00212648
0.00212658
0.00212669
0.0021268
0.00212691
0.00212703
0.00212711
0.00212718
0.00212722
0.00212723
0.00212719
0.00212711
0.00212697
0.00212679
0.00212661
0.00212651
0.00212646
0.00212647
0.00212648
0.00212652
0.00212658
0.00212665
0.00212673
0.00212683
0.00212693
0.00212702
0.00212709
0.00212715
0.00212719
0.0021272
0.00212717
0.00212711
0.00212699
0.00212687
0.00212674
0.00212665
0.00212661
0.00212657
0.00212658
0.0021266
0.00212665
0.00212671
0.00212678
0.00212685
0.00212693
0.002127
0.00212707
0.00212712
0.00212716
0.00212717
0.00212715
0.0021271
0.002127
0.00212689
0.00212678
0.00212671
0.00212667
0.00212665
0.00212666
0.00212667
0.0021267
0.00212675
0.0021268
0.00212687
0.00212693
0.00212699
0.00212704
0.00212709
0.00212712
0.00212713
0.00212712
0.00212708
0.002127
0.00212692
0.00212682
0.00212677
0.00212673
0.00212671
0.00212671
0.00212672
0.00212674
0.00212677
0.00212682
0.00212687
0.00212693
0.00212697
0.00212701
0.00212705
0.00212708
0.0021271
0.00212709
0.00212704
0.00212698
0.00212693
0.00212685
0.00212681
0.00212678
0.00212674
0.00212673
0.00212675
0.00212677
0.00212679
0.00212683
0.00212687
0.00212692
0.00212695
0.00212699
0.00212702
0.00212705
0.00212706
0.00212705
0.00212705
0.00212701
0.00212693
0.00212687
0.00212683
0.00212681
0.00212681
0.0021268
0.00212678
0.00212679
0.0021268
0.00212683
0.00212687
0.00212691
0.00212693
0.00212696
0.00212699
0.00212702
0.00212703
0.00212702
0.00212701
0.00212697
0.00212693
0.00212688
0.00212685
0.00212683
0.00212681
0.0021268
0.00212679
0.0021268
0.00212681
0.00212683
0.00212686
0.00212689
0.00212691
0.00212694
0.00212696
0.00212698
0.002127
0.00212699
0.00212698
0.00212695
0.00212692
0.00212688
0.00212686
0.00212684
0.00212682
0.00212681
0.0021268
0.0021268
0.00212681
0.00212683
0.00212685
0.00212688
0.00212689
0.00212691
0.00212693
0.00212695
0.00212696
0.00212696
0.00212696
0.00212693
0.00212691
0.00212688
0.00212686
0.00212684
0.00212683
0.00212681
0.00212681
0.0021268
0.00212681
0.00212682
0.00212684
0.00212686
0.00212687
0.00212689
0.00212691
0.00212693
0.00212694
0.00212694
0.00212693
0.00212692
0.0021269
0.00212687
0.00212686
0.00212684
0.00212683
0.00212681
0.00212681
0.0021268
0.00212681
0.00212682
0.00212683
0.00212685
0.00212685
0.00212687
0.00212689
0.0021269
0.00212691
0.00212691
0.00212691
0.0021269
0.00212688
0.00212686
0.00212685
0.00212684
0.00212682
0.00212681
0.0021268
0.0021268
0.0021268
0.00212681
0.00212682
0.00212683
0.00212683
0.00212685
0.00212686
0.00212688
0.00212689
0.00212689
0.00212689
0.00212688
0.00212687
0.00212685
0.00212684
0.00212683
0.00212682
0.00212681
0.0021268
0.0021268
0.0021268
0.0021268
0.00212681
0.00212682
0.00212682
0.00212683
0.00212685
0.00212686
0.00212687
0.00212687
0.00212687
0.00212686
0.00212686
0.00212684
0.00212683
0.00212682
0.00212681
0.0021268
0.00212679
0.00212679
0.00212679
0.00212679
0.0021268
0.00212681
0.00212681
0.00212682
0.00212683
0.00212684
0.00212685
0.00212685
0.00212685
0.00212685
0.00212684
0.00212683
0.00212683
0.00212682
0.00212681
0.0021268
0.00212679
0.00212679
0.00212678
0.00212678
0.00212679
0.0021268
0.0021268
0.00212681
0.00212682
0.00212683
0.00212683
0.00212684
0.00212684
0.00212683
0.00212683
0.00212682
0.00212682
0.00212681
0.0021268
0.00212679
0.00212678
0.00212678
0.00212678
0.00212678
0.00212678
0.00212679
0.00212679
0.00212679
0.0021268
0.00212681
0.00212682
0.00212682
0.00212683
0.00212682
0.00212682
0.00212681
0.00212681
0.0021268
0.0021268
0.00212679
0.00212678
0.00212678
0.00212677
0.00212677
0.00212678
0.00212678
0.00212678
0.00212679
0.00212679
0.0021268
0.00212681
0.00212681
0.00212682
0.00212681
0.00212681
0.0021268
0.00212681
0.00212679
0.00212679
0.00212678
0.00212677
0.00212677
0.00212677
0.00212677
0.00212677
0.00212677
0.00212677
0.00212678
0.00212679
0.00212679
0.0021268
0.0021268
0.00212681
0.0021268
0.00212681
0.0021268
0.0021268
0.00212679
0.00212679
0.00212678
0.00212677
0.00212677
0.00212676
0.00212676
0.00212677
0.00212677
0.00212677
0.00212677
0.00212678
0.00212679
0.00212679
0.0021268
0.0021268
0.0021268
0.0021268
0.00212679
0.0021268
0.00212678
0.00212678
0.00212677
0.00212677
0.00212677
0.00212676
0.00212676
0.00212677
0.00212676
0.00212677
0.00212677
0.00212678
0.00212679
0.00212679
0.00212679
0.0021268
0.00212679
0.0021268
0.00212679
0.0021268
0.00212678
0.00212679
0.00212677
0.00212677
0.00212677
0.00212676
0.00212676
0.00212677
0.00212676
0.00212677
0.00212676
0.00212677
0.00212678
0.00212678
0.00212679
0.0021268
0.00212679
0.0021268
0.00212678
0.00212679
0.00212678
0.00212678
0.00212677
0.00212676
0.00212677
0.00212676
0.00212676
0.00212676
0.00212676
0.00212682
0.00212678
0.00212682
0.00212684
0.00212679
0.00212684
0.00212685
0.0021268
0.00212685
0.0021268
0.00212685
0.00212679
0.00212684
0.00212678
0.00212677
0.00212682
0.00212677
0.00212681
0.00212682
0.00212677
0.00261158
0.00261165
0.00261165
0.00261165
0.00261161
0.00261154
0.00261145
0.00261135
0.00261124
0.00261115
0.00261107
0.00261102
0.002611
0.00261102
0.00261105
0.00261112
0.00261122
0.00261131
0.00261142
0.00261151
0.00261177
0.00261186
0.00261188
0.00261186
0.00261182
0.00261173
0.0026116
0.00261146
0.00261132
0.00261118
0.00261107
0.002611
0.00261097
0.00261099
0.00261106
0.00261115
0.00261127
0.0026114
0.00261155
0.00261167
0.00261212
0.00261222
0.00261227
0.00261225
0.0026122
0.00261207
0.0026119
0.00261172
0.00261152
0.00261134
0.00261118
0.00261108
0.00261105
0.00261107
0.00261115
0.00261129
0.00261144
0.00261163
0.00261181
0.00261199
0.00261255
0.00261268
0.00261274
0.00261273
0.00261266
0.00261251
0.0026123
0.00261205
0.0026118
0.00261156
0.00261136
0.00261122
0.00261118
0.00261121
0.00261132
0.00261149
0.00261169
0.00261193
0.00261216
0.00261237
0.002613
0.00261316
0.00261324
0.00261324
0.00261315
0.00261298
0.00261274
0.00261244
0.00261212
0.00261182
0.00261158
0.00261142
0.00261136
0.0026114
0.00261154
0.00261174
0.00261198
0.00261226
0.00261254
0.00261279
0.00261346
0.00261363
0.00261373
0.00261374
0.00261365
0.00261347
0.00261319
0.00261285
0.00261247
0.00261212
0.00261184
0.00261166
0.00261159
0.00261165
0.0026118
0.00261203
0.00261231
0.00261263
0.00261293
0.00261322
0.00261388
0.00261409
0.0026142
0.00261421
0.00261413
0.00261392
0.00261363
0.00261326
0.00261284
0.00261245
0.00261213
0.00261193
0.00261187
0.00261193
0.00261211
0.00261235
0.00261267
0.002613
0.00261332
0.00261362
0.00261427
0.00261447
0.00261459
0.00261463
0.00261454
0.00261434
0.00261403
0.00261365
0.00261321
0.00261278
0.00261244
0.00261224
0.00261218
0.00261225
0.00261244
0.00261269
0.00261302
0.00261335
0.00261369
0.002614
0.00261461
0.00261482
0.00261495
0.00261498
0.00261491
0.00261472
0.00261441
0.00261401
0.00261355
0.00261311
0.00261276
0.00261256
0.00261251
0.00261259
0.00261278
0.00261304
0.00261336
0.0026137
0.00261403
0.00261434
0.00261489
0.0026151
0.00261523
0.00261527
0.00261521
0.00261503
0.00261473
0.00261433
0.00261387
0.00261343
0.00261309
0.00261289
0.00261285
0.00261293
0.00261313
0.00261339
0.00261369
0.00261401
0.00261433
0.00261463
0.00261512
0.00261533
0.00261546
0.0026155
0.00261545
0.00261528
0.002615
0.00261462
0.00261418
0.00261374
0.0026134
0.00261322
0.00261319
0.00261328
0.00261347
0.00261372
0.002614
0.0026143
0.0026146
0.00261488
0.00261531
0.0026155
0.00261562
0.00261568
0.00261563
0.00261548
0.00261522
0.00261486
0.00261445
0.00261403
0.00261371
0.00261355
0.00261354
0.00261363
0.00261379
0.00261402
0.00261427
0.00261455
0.00261482
0.00261508
0.00261545
0.00261562
0.00261575
0.0026158
0.00261577
0.00261564
0.0026154
0.00261506
0.00261468
0.00261429
0.00261401
0.00261387
0.00261385
0.00261394
0.00261409
0.00261429
0.00261452
0.00261476
0.002615
0.00261524
0.00261556
0.00261572
0.00261584
0.00261589
0.00261586
0.00261575
0.00261553
0.00261524
0.00261488
0.00261453
0.00261428
0.00261416
0.00261415
0.00261422
0.00261435
0.00261453
0.00261473
0.00261495
0.00261516
0.00261537
0.00261564
0.00261578
0.00261588
0.00261594
0.00261592
0.00261583
0.00261564
0.00261537
0.00261506
0.00261474
0.00261453
0.00261443
0.00261442
0.00261448
0.00261459
0.00261474
0.00261491
0.00261509
0.00261528
0.00261547
0.00261569
0.00261582
0.00261592
0.00261597
0.00261596
0.00261587
0.00261571
0.00261548
0.0026152
0.00261493
0.00261474
0.00261465
0.00261464
0.00261469
0.00261479
0.00261491
0.00261506
0.00261522
0.00261538
0.00261554
0.00261572
0.00261583
0.00261592
0.00261597
0.00261597
0.0026159
0.00261577
0.00261557
0.00261533
0.00261509
0.00261493
0.00261486
0.00261486
0.00261489
0.00261496
0.00261506
0.00261518
0.00261532
0.00261545
0.00261559
0.00261574
0.00261584
0.00261592
0.00261596
0.00261596
0.00261591
0.0026158
0.00261563
0.00261543
0.00261523
0.0026151
0.00261503
0.00261502
0.00261505
0.0026151
0.00261518
0.00261528
0.00261539
0.00261551
0.00261563
0.00261574
0.00261583
0.0026159
0.00261594
0.00261595
0.00261591
0.00261581
0.00261567
0.00261551
0.00261534
0.00261523
0.00261517
0.00261516
0.00261517
0.00261522
0.00261528
0.00261536
0.00261545
0.00261555
0.00261565
0.00261574
0.00261582
0.00261588
0.00261592
0.00261592
0.00261589
0.00261582
0.0026157
0.00261556
0.00261542
0.00261533
0.00261528
0.00261527
0.00261528
0.0026153
0.00261535
0.00261541
0.00261549
0.00261557
0.00261566
0.00261573
0.00261579
0.00261585
0.00261588
0.00261589
0.00261587
0.00261581
0.00261572
0.0026156
0.00261549
0.00261541
0.00261537
0.00261535
0.00261536
0.00261538
0.00261541
0.00261546
0.00261552
0.00261558
0.00261566
0.00261571
0.00261577
0.00261582
0.00261585
0.00261586
0.00261584
0.0026158
0.00261572
0.00261563
0.00261553
0.00261547
0.00261544
0.00261542
0.00261542
0.00261543
0.00261545
0.00261549
0.00261554
0.00261559
0.00261565
0.00261569
0.00261574
0.00261578
0.00261581
0.00261583
0.00261581
0.00261578
0.00261572
0.00261565
0.00261557
0.00261552
0.00261549
0.00261547
0.00261546
0.00261547
0.00261548
0.00261551
0.00261555
0.00261559
0.00261564
0.00261567
0.00261572
0.00261575
0.00261578
0.00261579
0.00261578
0.00261576
0.00261571
0.00261565
0.00261559
0.00261555
0.00261552
0.0026155
0.00261549
0.00261549
0.0026155
0.00261552
0.00261555
0.00261559
0.00261563
0.00261565
0.00261569
0.00261572
0.00261575
0.00261576
0.00261575
0.00261573
0.00261569
0.00261565
0.0026156
0.00261557
0.00261554
0.00261552
0.00261551
0.00261551
0.00261552
0.00261553
0.00261555
0.00261558
0.00261562
0.00261563
0.00261566
0.00261569
0.00261571
0.00261572
0.00261572
0.00261571
0.00261568
0.00261564
0.0026156
0.00261558
0.00261555
0.00261554
0.00261552
0.00261552
0.00261552
0.00261553
0.00261555
0.00261557
0.0026156
0.00261561
0.00261564
0.00261566
0.00261568
0.00261569
0.00261569
0.00261568
0.00261566
0.00261563
0.0026156
0.00261558
0.00261556
0.00261554
0.00261553
0.00261552
0.00261552
0.00261553
0.00261554
0.00261556
0.00261559
0.00261559
0.00261562
0.00261564
0.00261565
0.00261566
0.00261566
0.00261566
0.00261564
0.00261562
0.00261559
0.00261558
0.00261556
0.00261555
0.00261553
0.00261553
0.00261552
0.00261553
0.00261554
0.00261555
0.00261557
0.00261558
0.0026156
0.00261561
0.00261563
0.00261564
0.00261564
0.00261564
0.00261562
0.00261561
0.00261558
0.00261557
0.00261556
0.00261554
0.00261553
0.00261552
0.00261552
0.00261552
0.00261553
0.00261554
0.00261556
0.00261556
0.00261558
0.00261559
0.0026156
0.00261561
0.00261562
0.00261562
0.0026156
0.00261559
0.00261558
0.00261557
0.00261555
0.00261554
0.00261553
0.00261552
0.00261552
0.00261552
0.00261552
0.00261553
0.00261554
0.00261555
0.00261556
0.00261557
0.00261558
0.00261559
0.0026156
0.0026156
0.00261559
0.00261558
0.00261556
0.00261556
0.00261554
0.00261554
0.00261552
0.00261552
0.00261551
0.00261551
0.00261551
0.00261552
0.00261553
0.00261553
0.00261554
0.00261556
0.00261557
0.00261557
0.00261558
0.00261558
0.00261557
0.00261557
0.00261555
0.00261555
0.00261554
0.00261553
0.00261552
0.00261551
0.00261551
0.00261551
0.00261551
0.00261551
0.00261552
0.00261552
0.00261553
0.00261554
0.00261555
0.00261556
0.00261556
0.00261556
0.00261556
0.00261556
0.00261554
0.00261554
0.00261553
0.00261552
0.00261551
0.00261551
0.0026155
0.0026155
0.0026155
0.00261551
0.00261551
0.00261551
0.00261552
0.00261553
0.00261554
0.00261554
0.00261555
0.00261555
0.00261555
0.00261555
0.00261554
0.00261553
0.00261552
0.00261552
0.00261551
0.0026155
0.0026155
0.00261549
0.00261549
0.0026155
0.0026155
0.0026155
0.00261551
0.00261552
0.00261553
0.00261553
0.00261554
0.00261554
0.00261554
0.00261554
0.00261553
0.00261553
0.00261552
0.00261551
0.0026155
0.0026155
0.00261549
0.00261549
0.00261549
0.00261549
0.00261549
0.0026155
0.0026155
0.00261551
0.00261552
0.00261552
0.00261553
0.00261553
0.00261553
0.00261553
0.00261552
0.00261552
0.00261551
0.00261551
0.0026155
0.00261549
0.00261549
0.00261549
0.00261549
0.00261549
0.00261549
0.00261549
0.0026155
0.0026155
0.00261551
0.00261552
0.00261552
0.00261553
0.00261552
0.00261553
0.00261552
0.00261552
0.00261551
0.00261551
0.00261549
0.00261549
0.00261549
0.00261548
0.00261548
0.00261549
0.00261548
0.00261549
0.00261549
0.0026155
0.00261551
0.00261551
0.00261552
0.00261553
0.00261552
0.00261553
0.00261551
0.00261552
0.00261551
0.00261551
0.0026155
0.00261549
0.00261549
0.00261548
0.00261549
0.00261549
0.00261548
0.00261549
0.00261549
0.0026155
0.00261551
0.0026155
0.00261551
0.00261552
0.00261551
0.00261552
0.00261551
0.00261552
0.0026155
0.00261551
0.00261549
0.00261548
0.00261549
0.00261548
0.00261548
0.00261549
0.00261548
0.00261554
0.0026155
0.00261555
0.00261557
0.00261552
0.00261557
0.00261558
0.00261553
0.00261558
0.00261552
0.00261557
0.00261552
0.00261556
0.0026155
0.00261549
0.00261554
0.00261549
0.00261554
0.00261555
0.00261549
0.00327167
0.00327174
0.00327174
0.00327174
0.00327169
0.00327164
0.00327156
0.00327148
0.00327138
0.0032713
0.00327123
0.00327119
0.00327117
0.00327119
0.00327121
0.00327127
0.00327136
0.00327144
0.00327154
0.00327161
0.00327185
0.00327192
0.00327195
0.00327194
0.00327189
0.00327181
0.0032717
0.00327158
0.00327146
0.00327134
0.00327124
0.00327118
0.00327116
0.00327117
0.00327122
0.0032713
0.00327142
0.00327153
0.00327166
0.00327176
0.00327218
0.00327227
0.00327231
0.00327231
0.00327224
0.00327213
0.00327199
0.00327183
0.00327165
0.00327149
0.00327136
0.00327127
0.00327124
0.00327125
0.00327133
0.00327144
0.00327158
0.00327175
0.00327191
0.00327205
0.00327259
0.00327271
0.00327277
0.00327277
0.00327269
0.00327255
0.00327236
0.00327215
0.00327192
0.00327171
0.00327153
0.00327141
0.00327136
0.00327139
0.00327148
0.00327163
0.00327183
0.00327204
0.00327224
0.00327243
0.00327303
0.00327318
0.00327325
0.00327325
0.00327317
0.00327301
0.00327278
0.00327252
0.00327223
0.00327196
0.00327175
0.00327161
0.00327155
0.00327157
0.00327169
0.00327188
0.00327211
0.00327236
0.00327261
0.00327284
0.00327348
0.00327366
0.00327374
0.00327375
0.00327366
0.00327348
0.00327322
0.00327291
0.00327257
0.00327226
0.003272
0.00327183
0.00327177
0.00327181
0.00327195
0.00327217
0.00327243
0.00327271
0.003273
0.00327326
0.00327392
0.00327411
0.00327421
0.00327422
0.00327414
0.00327395
0.00327366
0.00327331
0.00327293
0.00327257
0.00327228
0.0032721
0.00327204
0.00327209
0.00327225
0.00327249
0.00327277
0.00327308
0.00327339
0.00327368
0.00327431
0.0032745
0.00327462
0.00327465
0.00327456
0.00327436
0.00327407
0.0032737
0.00327329
0.0032729
0.00327259
0.00327239
0.00327233
0.00327241
0.00327258
0.00327282
0.00327312
0.00327343
0.00327376
0.00327405
0.00327465
0.00327486
0.00327498
0.00327501
0.00327493
0.00327474
0.00327445
0.00327407
0.00327364
0.00327323
0.00327291
0.00327271
0.00327266
0.00327274
0.00327291
0.00327316
0.00327346
0.00327378
0.00327411
0.0032744
0.00327496
0.00327515
0.00327528
0.00327531
0.00327524
0.00327506
0.00327477
0.00327439
0.00327397
0.00327356
0.00327323
0.00327304
0.00327299
0.00327307
0.00327325
0.00327349
0.00327379
0.00327409
0.00327441
0.0032747
0.0032752
0.0032754
0.00327552
0.00327556
0.0032755
0.00327533
0.00327505
0.00327468
0.00327426
0.00327386
0.00327354
0.00327337
0.00327333
0.0032734
0.00327358
0.00327381
0.0032741
0.00327439
0.00327468
0.00327496
0.0032754
0.00327558
0.0032757
0.00327575
0.0032757
0.00327555
0.00327529
0.00327494
0.00327453
0.00327414
0.00327384
0.00327369
0.00327366
0.00327373
0.0032739
0.00327411
0.00327437
0.00327464
0.00327491
0.00327517
0.00327556
0.00327573
0.00327585
0.00327589
0.00327585
0.00327572
0.00327548
0.00327515
0.00327477
0.0032744
0.00327413
0.00327399
0.00327396
0.00327404
0.00327419
0.00327439
0.00327461
0.00327486
0.00327511
0.00327535
0.00327567
0.00327583
0.00327594
0.00327599
0.00327596
0.00327584
0.00327563
0.00327532
0.00327499
0.00327464
0.0032744
0.00327428
0.00327426
0.00327432
0.00327445
0.00327463
0.00327483
0.00327505
0.00327527
0.00327548
0.00327576
0.0032759
0.003276
0.00327605
0.00327603
0.00327593
0.00327574
0.00327547
0.00327516
0.00327486
0.00327464
0.00327453
0.00327452
0.00327458
0.00327469
0.00327484
0.00327501
0.0032752
0.0032754
0.00327559
0.00327582
0.00327595
0.00327604
0.00327609
0.00327607
0.00327598
0.00327583
0.00327559
0.00327531
0.00327504
0.00327486
0.00327476
0.00327475
0.0032748
0.00327489
0.00327502
0.00327517
0.00327533
0.0032755
0.00327567
0.00327585
0.00327597
0.00327606
0.00327611
0.0032761
0.00327602
0.00327589
0.00327568
0.00327545
0.00327521
0.00327505
0.00327498
0.00327496
0.003275
0.00327507
0.00327517
0.0032753
0.00327544
0.00327558
0.00327572
0.00327588
0.00327598
0.00327605
0.0032761
0.0032761
0.00327604
0.00327592
0.00327575
0.00327555
0.00327535
0.00327521
0.00327514
0.00327513
0.00327515
0.00327521
0.0032753
0.0032754
0.00327551
0.00327564
0.00327576
0.00327589
0.00327597
0.00327604
0.00327609
0.00327609
0.00327604
0.00327595
0.0032758
0.00327563
0.00327546
0.00327535
0.00327529
0.00327527
0.00327529
0.00327534
0.0032754
0.00327548
0.00327558
0.00327568
0.00327578
0.00327588
0.00327596
0.00327602
0.00327606
0.00327607
0.00327603
0.00327595
0.00327584
0.00327569
0.00327555
0.00327545
0.0032754
0.00327539
0.0032754
0.00327542
0.00327548
0.00327554
0.00327562
0.00327571
0.0032758
0.00327587
0.00327594
0.003276
0.00327603
0.00327604
0.00327601
0.00327595
0.00327585
0.00327573
0.00327562
0.00327554
0.00327549
0.00327548
0.00327548
0.0032755
0.00327554
0.00327559
0.00327565
0.00327572
0.0032758
0.00327586
0.00327592
0.00327597
0.003276
0.00327601
0.00327599
0.00327594
0.00327586
0.00327576
0.00327567
0.0032756
0.00327556
0.00327554
0.00327554
0.00327556
0.00327558
0.00327562
0.00327567
0.00327573
0.0032758
0.00327584
0.00327589
0.00327593
0.00327596
0.00327597
0.00327596
0.00327592
0.00327586
0.00327578
0.0032757
0.00327565
0.00327562
0.0032756
0.00327559
0.0032756
0.00327562
0.00327565
0.00327569
0.00327573
0.00327579
0.00327582
0.00327586
0.0032759
0.00327593
0.00327594
0.00327593
0.0032759
0.00327585
0.00327579
0.00327572
0.00327568
0.00327565
0.00327563
0.00327562
0.00327563
0.00327564
0.00327566
0.00327569
0.00327573
0.00327578
0.0032758
0.00327584
0.00327587
0.0032759
0.00327591
0.0032759
0.00327588
0.00327584
0.00327579
0.00327574
0.0032757
0.00327567
0.00327566
0.00327565
0.00327565
0.00327565
0.00327567
0.0032757
0.00327573
0.00327576
0.00327578
0.00327581
0.00327584
0.00327586
0.00327587
0.00327587
0.00327585
0.00327582
0.00327578
0.00327574
0.00327571
0.00327569
0.00327567
0.00327566
0.00327566
0.00327566
0.00327567
0.00327569
0.00327572
0.00327575
0.00327576
0.00327579
0.00327581
0.00327583
0.00327584
0.00327584
0.00327583
0.0032758
0.00327578
0.00327574
0.00327572
0.0032757
0.00327568
0.00327567
0.00327566
0.00327566
0.00327567
0.00327569
0.00327571
0.00327573
0.00327574
0.00327576
0.00327578
0.0032758
0.00327581
0.00327581
0.00327581
0.00327579
0.00327576
0.00327573
0.00327572
0.0032757
0.00327569
0.00327567
0.00327567
0.00327567
0.00327567
0.00327568
0.0032757
0.00327572
0.00327572
0.00327574
0.00327576
0.00327578
0.00327579
0.00327579
0.00327578
0.00327577
0.00327575
0.00327573
0.00327571
0.0032757
0.00327569
0.00327567
0.00327566
0.00327566
0.00327567
0.00327567
0.00327569
0.0032757
0.00327571
0.00327572
0.00327574
0.00327575
0.00327576
0.00327576
0.00327576
0.00327575
0.00327574
0.00327572
0.00327571
0.00327569
0.00327568
0.00327567
0.00327566
0.00327566
0.00327566
0.00327566
0.00327568
0.00327569
0.00327569
0.0032757
0.00327572
0.00327573
0.00327574
0.00327574
0.00327574
0.00327573
0.00327573
0.00327571
0.0032757
0.00327569
0.00327568
0.00327567
0.00327566
0.00327565
0.00327565
0.00327566
0.00327567
0.00327568
0.00327568
0.00327569
0.0032757
0.00327571
0.00327572
0.00327572
0.00327573
0.00327572
0.00327571
0.0032757
0.00327569
0.00327568
0.00327567
0.00327566
0.00327565
0.00327565
0.00327565
0.00327565
0.00327566
0.00327566
0.00327567
0.00327568
0.00327569
0.0032757
0.0032757
0.00327571
0.00327571
0.0032757
0.0032757
0.00327569
0.00327569
0.00327567
0.00327567
0.00327566
0.00327565
0.00327564
0.00327564
0.00327564
0.00327565
0.00327565
0.00327566
0.00327566
0.00327567
0.00327568
0.00327569
0.00327569
0.0032757
0.00327569
0.00327569
0.00327568
0.00327568
0.00327567
0.00327566
0.00327565
0.00327564
0.00327564
0.00327564
0.00327564
0.00327564
0.00327565
0.00327565
0.00327565
0.00327566
0.00327567
0.00327568
0.00327568
0.00327569
0.00327568
0.00327568
0.00327567
0.00327567
0.00327566
0.00327566
0.00327565
0.00327564
0.00327564
0.00327563
0.00327563
0.00327564
0.00327564
0.00327564
0.00327565
0.00327565
0.00327566
0.00327567
0.00327567
0.00327568
0.00327567
0.00327568
0.00327567
0.00327567
0.00327566
0.00327565
0.00327564
0.00327564
0.00327563
0.00327563
0.00327563
0.00327563
0.00327563
0.00327564
0.00327564
0.00327565
0.00327566
0.00327566
0.00327566
0.00327567
0.00327566
0.00327567
0.00327566
0.00327566
0.00327565
0.00327565
0.00327564
0.00327563
0.00327563
0.00327562
0.00327563
0.00327563
0.00327563
0.00327564
0.00327564
0.00327565
0.00327566
0.00327566
0.00327566
0.00327567
0.00327566
0.00327567
0.00327566
0.00327567
0.00327565
0.00327565
0.00327564
0.00327563
0.00327563
0.00327562
0.00327563
0.00327563
0.00327563
0.00327563
0.00327563
0.00327564
0.00327565
0.00327565
0.00327566
0.00327567
0.00327565
0.00327567
0.00327565
0.00327566
0.00327564
0.00327565
0.00327563
0.00327562
0.00327563
0.00327562
0.00327563
0.00327563
0.00327562
0.00327569
0.00327564
0.0032757
0.00327572
0.00327566
0.00327571
0.00327573
0.00327567
0.00327573
0.00327567
0.00327572
0.00327566
0.00327571
0.00327565
0.00327563
0.00327569
0.00327563
0.00327568
0.0032757
0.00327563
0.00418676
0.0041868
0.00418682
0.00418681
0.00418677
0.00418673
0.00418666
0.00418658
0.0041865
0.00418643
0.00418637
0.00418632
0.00418631
0.00418633
0.00418636
0.00418641
0.00418649
0.00418655
0.00418664
0.00418669
0.00418692
0.00418698
0.00418702
0.004187
0.00418696
0.0041869
0.00418679
0.00418668
0.00418656
0.00418646
0.00418638
0.00418633
0.0041863
0.00418633
0.00418638
0.00418644
0.00418652
0.00418664
0.00418675
0.00418683
0.00418724
0.00418731
0.00418736
0.00418735
0.00418729
0.0041872
0.00418707
0.00418692
0.00418676
0.00418661
0.00418649
0.00418641
0.00418639
0.00418641
0.00418648
0.00418657
0.00418669
0.00418685
0.00418699
0.00418712
0.00418764
0.00418774
0.0041878
0.00418779
0.00418772
0.0041876
0.00418743
0.00418724
0.00418703
0.00418682
0.00418666
0.00418656
0.00418652
0.00418655
0.00418663
0.00418677
0.00418693
0.00418714
0.00418732
0.00418749
0.00418807
0.0041882
0.00418827
0.00418827
0.00418819
0.00418805
0.00418784
0.0041876
0.00418734
0.00418709
0.00418689
0.00418677
0.00418671
0.00418673
0.00418685
0.00418701
0.00418721
0.00418744
0.00418768
0.00418789
0.00418852
0.00418868
0.00418876
0.00418876
0.00418868
0.00418851
0.00418827
0.00418798
0.00418768
0.00418739
0.00418715
0.00418699
0.00418693
0.00418697
0.0041871
0.00418728
0.00418752
0.0041878
0.00418807
0.00418831
0.00418896
0.00418913
0.00418922
0.00418924
0.00418915
0.00418896
0.0041887
0.00418838
0.00418803
0.0041877
0.00418743
0.00418725
0.00418719
0.00418723
0.00418738
0.00418759
0.00418787
0.00418817
0.00418845
0.00418872
0.00418936
0.00418954
0.00418964
0.00418966
0.00418958
0.00418939
0.00418911
0.00418876
0.00418838
0.00418802
0.00418773
0.00418755
0.00418748
0.00418754
0.0041877
0.00418792
0.00418822
0.00418851
0.00418882
0.00418911
0.00418971
0.0041899
0.00419002
0.00419004
0.00418996
0.00418977
0.00418949
0.00418912
0.00418872
0.00418834
0.00418804
0.00418785
0.00418779
0.00418786
0.00418802
0.00418826
0.00418855
0.00418886
0.00418917
0.00418946
0.00419003
0.00419021
0.00419033
0.00419036
0.00419029
0.0041901
0.00418982
0.00418945
0.00418905
0.00418866
0.00418835
0.00418817
0.00418812
0.00418818
0.00418836
0.00418859
0.00418888
0.00418918
0.00418948
0.00418978
0.00419028
0.00419047
0.00419059
0.00419062
0.00419056
0.00419039
0.00419012
0.00418975
0.00418935
0.00418896
0.00418866
0.00418849
0.00418844
0.00418851
0.00418868
0.00418891
0.00418919
0.00418948
0.00418977
0.00419004
0.0041905
0.00419067
0.00419079
0.00419082
0.00419078
0.00419061
0.00419036
0.00419001
0.00418962
0.00418925
0.00418896
0.0041888
0.00418877
0.00418884
0.00418899
0.00418921
0.00418946
0.00418973
0.00419
0.00419027
0.00419068
0.00419085
0.00419096
0.00419098
0.00419094
0.0041908
0.00419056
0.00419023
0.00418987
0.00418951
0.00418924
0.0041891
0.00418907
0.00418914
0.00418929
0.00418949
0.00418971
0.00418997
0.00419022
0.00419047
0.0041908
0.00419096
0.00419107
0.00419111
0.00419107
0.00419094
0.00419072
0.00419042
0.00419008
0.00418975
0.00418951
0.00418939
0.00418936
0.00418942
0.00418955
0.00418973
0.00418993
0.00419016
0.00419039
0.00419061
0.0041909
0.00419104
0.00419114
0.00419118
0.00419116
0.00419105
0.00419085
0.00419058
0.00419027
0.00418997
0.00418975
0.00418964
0.00418962
0.00418968
0.00418979
0.00418994
0.00419012
0.00419033
0.00419054
0.00419073
0.00419097
0.0041911
0.00419119
0.00419124
0.00419122
0.00419112
0.00419096
0.00419071
0.00419043
0.00419017
0.00418998
0.00418988
0.00418986
0.00418992
0.00419001
0.00419014
0.0041903
0.00419047
0.00419064
0.00419081
0.00419101
0.00419113
0.00419122
0.00419126
0.00419125
0.00419117
0.00419103
0.00419082
0.00419058
0.00419035
0.00419019
0.0041901
0.00419008
0.00419013
0.0041902
0.00419031
0.00419044
0.00419058
0.00419073
0.00419087
0.00419104
0.00419114
0.00419121
0.00419126
0.00419125
0.00419119
0.00419107
0.00419089
0.00419069
0.00419049
0.00419035
0.00419028
0.00419026
0.00419028
0.00419034
0.00419044
0.00419054
0.00419066
0.00419079
0.00419092
0.00419105
0.00419114
0.00419121
0.00419125
0.00419125
0.0041912
0.0041911
0.00419095
0.00419077
0.0041906
0.00419048
0.00419042
0.00419041
0.00419043
0.00419047
0.00419054
0.00419063
0.00419073
0.00419083
0.00419094
0.00419105
0.00419113
0.00419119
0.00419123
0.00419123
0.00419119
0.00419111
0.00419098
0.00419084
0.00419069
0.0041906
0.00419054
0.00419052
0.00419054
0.00419057
0.00419062
0.00419069
0.00419077
0.00419086
0.00419096
0.00419104
0.00419111
0.00419117
0.0041912
0.00419121
0.00419118
0.00419111
0.00419101
0.00419089
0.00419077
0.00419068
0.00419064
0.00419062
0.00419062
0.00419065
0.00419069
0.00419074
0.00419081
0.00419088
0.00419096
0.00419103
0.00419109
0.00419114
0.00419117
0.00419118
0.00419115
0.0041911
0.00419102
0.00419092
0.00419082
0.00419075
0.00419071
0.00419069
0.00419069
0.00419071
0.00419074
0.00419078
0.00419083
0.00419089
0.00419096
0.00419101
0.00419106
0.00419111
0.00419113
0.00419114
0.00419113
0.00419109
0.00419102
0.00419094
0.00419086
0.0041908
0.00419077
0.00419075
0.00419074
0.00419075
0.00419077
0.0041908
0.00419085
0.0041909
0.00419095
0.00419099
0.00419103
0.00419107
0.0041911
0.00419111
0.0041911
0.00419107
0.00419101
0.00419095
0.00419088
0.00419084
0.0041908
0.00419079
0.00419078
0.00419078
0.00419079
0.00419082
0.00419085
0.0041909
0.00419094
0.00419097
0.00419101
0.00419104
0.00419107
0.00419108
0.00419107
0.00419105
0.004191
0.00419095
0.00419089
0.00419086
0.00419083
0.00419081
0.0041908
0.0041908
0.00419081
0.00419083
0.00419086
0.00419089
0.00419093
0.00419095
0.00419098
0.00419101
0.00419103
0.00419104
0.00419104
0.00419102
0.00419099
0.00419095
0.0041909
0.00419087
0.00419085
0.00419083
0.00419082
0.00419082
0.00419082
0.00419083
0.00419085
0.00419088
0.00419091
0.00419093
0.00419095
0.00419098
0.004191
0.00419101
0.00419101
0.004191
0.00419097
0.00419094
0.0041909
0.00419088
0.00419086
0.00419084
0.00419083
0.00419082
0.00419082
0.00419083
0.00419085
0.00419087
0.0041909
0.00419091
0.00419093
0.00419095
0.00419097
0.00419098
0.00419098
0.00419097
0.00419095
0.00419093
0.0041909
0.00419088
0.00419086
0.00419085
0.00419083
0.00419083
0.00419083
0.00419083
0.00419084
0.00419086
0.00419088
0.00419089
0.00419091
0.00419093
0.00419094
0.00419095
0.00419096
0.00419095
0.00419093
0.00419092
0.00419089
0.00419088
0.00419086
0.00419085
0.00419083
0.00419083
0.00419082
0.00419083
0.00419084
0.00419085
0.00419087
0.00419087
0.00419089
0.00419091
0.00419092
0.00419093
0.00419093
0.00419093
0.00419091
0.0041909
0.00419088
0.00419087
0.00419085
0.00419084
0.00419083
0.00419082
0.00419082
0.00419082
0.00419083
0.00419084
0.00419085
0.00419086
0.00419087
0.00419089
0.0041909
0.00419091
0.00419091
0.00419091
0.0041909
0.00419089
0.00419087
0.00419086
0.00419085
0.00419084
0.00419083
0.00419082
0.00419082
0.00419082
0.00419082
0.00419083
0.00419084
0.00419084
0.00419086
0.00419087
0.00419088
0.00419089
0.00419089
0.00419089
0.00419088
0.00419088
0.00419086
0.00419086
0.00419084
0.00419083
0.00419082
0.00419082
0.00419081
0.00419081
0.00419081
0.00419082
0.00419083
0.00419083
0.00419084
0.00419085
0.00419086
0.00419087
0.00419087
0.00419088
0.00419087
0.00419087
0.00419085
0.00419085
0.00419084
0.00419083
0.00419082
0.00419081
0.00419081
0.0041908
0.00419081
0.00419081
0.00419082
0.00419082
0.00419083
0.00419084
0.00419085
0.00419086
0.00419086
0.00419086
0.00419086
0.00419086
0.00419084
0.00419084
0.00419083
0.00419083
0.00419081
0.00419081
0.0041908
0.0041908
0.0041908
0.00419081
0.00419081
0.00419081
0.00419082
0.00419083
0.00419084
0.00419084
0.00419085
0.00419085
0.00419084
0.00419085
0.00419084
0.00419084
0.00419082
0.00419082
0.00419081
0.0041908
0.0041908
0.00419079
0.0041908
0.0041908
0.0041908
0.00419081
0.00419081
0.00419082
0.00419083
0.00419083
0.00419084
0.00419084
0.00419084
0.00419084
0.00419083
0.00419083
0.00419082
0.00419082
0.0041908
0.0041908
0.0041908
0.00419079
0.00419079
0.0041908
0.0041908
0.0041908
0.0041908
0.00419081
0.00419082
0.00419082
0.00419083
0.00419084
0.00419083
0.00419084
0.00419082
0.00419083
0.00419081
0.00419081
0.0041908
0.00419079
0.00419079
0.00419079
0.00419079
0.0041908
0.00419079
0.0041908
0.0041908
0.00419081
0.00419082
0.00419082
0.00419083
0.00419084
0.00419083
0.00419084
0.00419082
0.00419083
0.00419081
0.00419082
0.0041908
0.00419079
0.0041908
0.00419079
0.00419079
0.0041908
0.00419079
0.0041908
0.00419079
0.00419081
0.00419082
0.00419081
0.00419082
0.00419083
0.00419082
0.00419083
0.00419081
0.00419083
0.00419081
0.00419082
0.00419079
0.00419079
0.0041908
0.00419078
0.00419079
0.0041908
0.00419078
0.00419086
0.00419081
0.00419087
0.00419089
0.00419083
0.00419088
0.00419091
0.00419083
0.0041909
0.00419083
0.00419089
0.00419082
0.00419088
0.00419081
0.0041908
0.00419086
0.0041908
0.00419085
0.00419087
0.0041908
0.00549437
0.00549439
0.00549439
0.00549439
0.00549436
0.00549432
0.00549426
0.00549419
0.00549413
0.00549406
0.00549401
0.00549397
0.00549395
0.00549396
0.00549399
0.00549403
0.00549408
0.00549414
0.00549426
0.0054943
0.00549452
0.00549456
0.00549457
0.00549456
0.00549452
0.00549446
0.00549438
0.00549428
0.00549419
0.00549409
0.00549402
0.00549397
0.00549395
0.00549395
0.00549399
0.00549406
0.00549412
0.00549425
0.00549436
0.00549444
0.00549483
0.0054949
0.00549491
0.0054949
0.00549485
0.00549476
0.00549465
0.00549451
0.00549437
0.00549424
0.00549413
0.00549406
0.00549403
0.00549403
0.00549409
0.00549419
0.00549431
0.00549444
0.00549458
0.00549471
0.00549523
0.00549532
0.00549536
0.00549533
0.00549527
0.00549515
0.005495
0.00549482
0.00549463
0.00549445
0.0054943
0.00549421
0.00549417
0.00549418
0.00549425
0.00549438
0.00549455
0.00549474
0.00549491
0.00549508
0.00549565
0.00549577
0.00549583
0.00549581
0.00549573
0.00549559
0.0054954
0.00549517
0.00549493
0.0054947
0.00549452
0.0054944
0.00549435
0.00549436
0.00549446
0.00549462
0.00549482
0.00549504
0.00549527
0.00549548
0.0054961
0.00549625
0.00549632
0.00549631
0.00549621
0.00549605
0.00549582
0.00549555
0.00549526
0.00549499
0.00549477
0.00549462
0.00549457
0.0054946
0.00549471
0.0054949
0.00549513
0.0054954
0.00549567
0.0054959
0.00549655
0.0054967
0.00549679
0.0054968
0.00549669
0.0054965
0.00549625
0.00549594
0.00549561
0.0054953
0.00549505
0.00549488
0.00549483
0.00549486
0.00549499
0.00549521
0.00549548
0.00549576
0.00549605
0.00549632
0.00549694
0.00549712
0.00549721
0.00549723
0.00549713
0.00549693
0.00549666
0.00549632
0.00549596
0.00549562
0.00549535
0.00549517
0.00549512
0.00549515
0.00549531
0.00549553
0.00549582
0.00549612
0.00549643
0.00549671
0.00549731
0.0054975
0.0054976
0.00549762
0.00549753
0.00549733
0.00549705
0.00549669
0.00549631
0.00549595
0.00549566
0.00549547
0.00549542
0.00549548
0.00549563
0.00549587
0.00549617
0.00549648
0.00549678
0.00549707
0.00549764
0.00549782
0.00549793
0.00549795
0.00549787
0.00549768
0.0054974
0.00549703
0.00549664
0.00549626
0.00549597
0.00549579
0.00549574
0.0054958
0.00549596
0.00549622
0.0054965
0.0054968
0.0054971
0.00549739
0.0054979
0.00549808
0.0054982
0.00549823
0.00549817
0.00549798
0.00549771
0.00549735
0.00549696
0.00549658
0.00549628
0.0054961
0.00549607
0.00549615
0.00549631
0.00549655
0.00549681
0.00549711
0.00549739
0.00549767
0.00549812
0.00549829
0.00549841
0.00549844
0.00549839
0.00549823
0.00549797
0.00549763
0.00549725
0.00549688
0.00549659
0.00549643
0.0054964
0.00549648
0.00549662
0.00549685
0.00549709
0.00549736
0.00549762
0.00549789
0.00549831
0.00549847
0.00549859
0.00549861
0.00549856
0.00549842
0.00549818
0.00549786
0.0054975
0.00549715
0.00549689
0.00549675
0.00549671
0.00549678
0.00549692
0.00549712
0.00549734
0.0054976
0.00549785
0.0054981
0.00549843
0.00549859
0.0054987
0.00549874
0.0054987
0.00549857
0.00549835
0.00549805
0.00549772
0.0054974
0.00549716
0.00549703
0.00549699
0.00549706
0.00549719
0.00549737
0.00549757
0.0054978
0.00549802
0.00549824
0.00549854
0.00549868
0.00549878
0.00549882
0.00549879
0.00549868
0.00549848
0.00549821
0.00549791
0.00549762
0.0054974
0.00549729
0.00549726
0.00549732
0.00549743
0.00549759
0.00549777
0.00549797
0.00549817
0.00549836
0.00549861
0.00549874
0.00549884
0.00549888
0.00549885
0.00549875
0.00549859
0.00549835
0.00549807
0.0054978
0.00549761
0.00549751
0.0054975
0.00549755
0.00549764
0.00549777
0.00549793
0.0054981
0.00549828
0.00549845
0.00549866
0.00549878
0.00549887
0.00549891
0.00549889
0.00549881
0.00549867
0.00549845
0.00549822
0.00549799
0.00549782
0.00549773
0.00549771
0.00549775
0.00549782
0.00549794
0.00549808
0.00549822
0.00549837
0.00549852
0.00549869
0.0054988
0.00549887
0.00549891
0.00549891
0.00549884
0.00549871
0.00549853
0.00549832
0.00549812
0.00549798
0.00549791
0.00549789
0.00549792
0.00549798
0.00549807
0.00549818
0.0054983
0.00549844
0.00549857
0.0054987
0.0054988
0.00549887
0.00549891
0.0054989
0.00549885
0.00549874
0.00549859
0.00549841
0.00549824
0.00549812
0.00549806
0.00549804
0.00549806
0.00549811
0.00549818
0.00549827
0.00549837
0.00549848
0.0054986
0.00549871
0.00549879
0.00549885
0.00549889
0.00549889
0.00549885
0.00549876
0.00549863
0.00549848
0.00549833
0.00549823
0.00549818
0.00549816
0.00549817
0.00549821
0.00549826
0.00549834
0.00549842
0.00549852
0.00549861
0.0054987
0.00549877
0.00549883
0.00549886
0.00549887
0.00549884
0.00549877
0.00549866
0.00549853
0.00549841
0.00549833
0.00549828
0.00549826
0.00549826
0.00549829
0.00549833
0.00549839
0.00549846
0.00549854
0.00549862
0.00549869
0.00549875
0.0054988
0.00549883
0.00549884
0.00549882
0.00549876
0.00549867
0.00549857
0.00549846
0.0054984
0.00549835
0.00549833
0.00549833
0.00549835
0.00549838
0.00549843
0.00549849
0.00549855
0.00549862
0.00549867
0.00549873
0.00549877
0.0054988
0.00549881
0.00549879
0.00549875
0.00549867
0.00549859
0.00549851
0.00549845
0.00549841
0.00549839
0.00549839
0.0054984
0.00549842
0.00549846
0.0054985
0.00549856
0.00549861
0.00549865
0.0054987
0.00549874
0.00549877
0.00549878
0.00549876
0.00549873
0.00549867
0.0054986
0.00549853
0.00549849
0.00549845
0.00549843
0.00549843
0.00549843
0.00549845
0.00549847
0.00549851
0.00549855
0.0054986
0.00549863
0.00549867
0.00549871
0.00549873
0.00549874
0.00549873
0.00549871
0.00549866
0.00549861
0.00549855
0.00549851
0.00549848
0.00549846
0.00549845
0.00549845
0.00549846
0.00549848
0.00549851
0.00549855
0.00549859
0.00549861
0.00549864
0.00549868
0.0054987
0.00549871
0.0054987
0.00549868
0.00549865
0.00549861
0.00549856
0.00549853
0.0054985
0.00549848
0.00549847
0.00549847
0.00549847
0.00549849
0.00549851
0.00549854
0.00549857
0.00549859
0.00549862
0.00549865
0.00549867
0.00549868
0.00549867
0.00549866
0.00549863
0.0054986
0.00549856
0.00549853
0.00549851
0.0054985
0.00549848
0.00549848
0.00549848
0.00549849
0.00549851
0.00549853
0.00549856
0.00549857
0.00549859
0.00549862
0.00549864
0.00549865
0.00549864
0.00549864
0.00549861
0.00549859
0.00549855
0.00549854
0.00549851
0.0054985
0.00549849
0.00549848
0.00549848
0.00549849
0.0054985
0.00549852
0.00549854
0.00549855
0.00549857
0.00549859
0.00549861
0.00549862
0.00549862
0.00549861
0.00549859
0.00549858
0.00549855
0.00549853
0.00549851
0.0054985
0.00549849
0.00549848
0.00549848
0.00549848
0.00549849
0.00549851
0.00549853
0.00549853
0.00549855
0.00549857
0.00549858
0.00549859
0.00549859
0.00549859
0.00549858
0.00549856
0.00549854
0.00549853
0.00549851
0.0054985
0.00549849
0.00549848
0.00549848
0.00549848
0.00549849
0.0054985
0.00549851
0.00549852
0.00549853
0.00549855
0.00549856
0.00549857
0.00549857
0.00549857
0.00549856
0.00549855
0.00549853
0.00549852
0.00549851
0.0054985
0.00549848
0.00549848
0.00549847
0.00549847
0.00549848
0.00549849
0.0054985
0.0054985
0.00549852
0.00549853
0.00549854
0.00549855
0.00549855
0.00549855
0.00549854
0.00549854
0.00549852
0.00549852
0.0054985
0.00549849
0.00549848
0.00549847
0.00549847
0.00549847
0.00549847
0.00549848
0.00549849
0.00549849
0.0054985
0.00549851
0.00549852
0.00549853
0.00549853
0.00549854
0.00549853
0.00549853
0.00549851
0.00549851
0.00549849
0.00549849
0.00549847
0.00549847
0.00549846
0.00549846
0.00549846
0.00549847
0.00549848
0.00549848
0.00549849
0.0054985
0.00549851
0.00549852
0.00549852
0.00549853
0.00549852
0.00549852
0.0054985
0.0054985
0.00549849
0.00549848
0.00549847
0.00549846
0.00549846
0.00549846
0.00549846
0.00549847
0.00549847
0.00549847
0.00549848
0.00549849
0.0054985
0.0054985
0.00549851
0.00549851
0.0054985
0.00549851
0.00549849
0.0054985
0.00549848
0.00549848
0.00549847
0.00549846
0.00549846
0.00549845
0.00549845
0.00549846
0.00549846
0.00549846
0.00549847
0.00549848
0.00549849
0.00549849
0.0054985
0.00549851
0.0054985
0.0054985
0.00549849
0.00549849
0.00549848
0.00549848
0.00549846
0.00549846
0.00549846
0.00549845
0.00549845
0.00549846
0.00549845
0.00549846
0.00549846
0.00549847
0.00549848
0.00549848
0.00549849
0.0054985
0.00549849
0.0054985
0.00549848
0.00549849
0.00549847
0.00549847
0.00549846
0.00549845
0.00549845
0.00549844
0.00549845
0.00549845
0.00549845
0.00549846
0.00549846
0.00549847
0.00549848
0.00549848
0.00549849
0.0054985
0.00549849
0.0054985
0.00549848
0.00549849
0.00549847
0.00549848
0.00549846
0.00549845
0.00549846
0.00549845
0.00549845
0.00549846
0.00549845
0.00549846
0.00549845
0.00549847
0.00549848
0.00549847
0.00549848
0.0054985
0.00549848
0.00549849
0.00549847
0.00549849
0.00549846
0.00549848
0.00549845
0.00549844
0.00549845
0.00549844
0.00549845
0.00549846
0.00549844
0.00549852
0.00549847
0.00549853
0.00549855
0.00549849
0.00549855
0.00549857
0.00549849
0.00549857
0.00549849
0.00549856
0.00549848
0.00549855
0.00549847
0.00549845
0.00549853
0.00549846
0.00549852
0.00549854
0.00549846
0.00743066
0.00743069
0.00743071
0.0074307
0.00743068
0.00743061
0.00743054
0.00743048
0.00743042
0.00743036
0.00743031
0.00743027
0.00743026
0.00743027
0.00743032
0.00743035
0.00743044
0.00743047
0.00743056
0.00743061
0.00743081
0.00743085
0.00743087
0.00743087
0.00743083
0.00743077
0.00743067
0.00743056
0.00743048
0.00743039
0.00743032
0.00743029
0.00743025
0.00743026
0.00743033
0.00743039
0.00743048
0.00743059
0.00743065
0.00743074
0.0074311
0.00743117
0.0074312
0.00743119
0.00743115
0.00743107
0.00743094
0.00743079
0.00743066
0.00743054
0.00743044
0.00743037
0.00743034
0.00743036
0.00743043
0.00743054
0.00743065
0.00743077
0.00743088
0.00743101
0.00743151
0.00743158
0.00743164
0.00743162
0.00743156
0.00743145
0.00743129
0.0074311
0.00743091
0.00743075
0.00743061
0.00743052
0.0074305
0.00743053
0.00743061
0.00743073
0.00743088
0.00743105
0.00743121
0.00743138
0.00743192
0.00743202
0.00743209
0.00743208
0.00743201
0.00743188
0.0074317
0.00743147
0.00743122
0.007431
0.00743083
0.00743072
0.00743071
0.00743072
0.00743081
0.00743097
0.00743115
0.00743136
0.00743155
0.00743175
0.00743236
0.0074325
0.00743257
0.00743257
0.00743249
0.00743233
0.00743212
0.00743186
0.00743158
0.00743131
0.0074311
0.00743097
0.00743095
0.00743094
0.00743107
0.00743125
0.00743146
0.0074317
0.00743195
0.00743218
0.00743282
0.00743296
0.00743304
0.00743304
0.00743296
0.00743279
0.00743254
0.00743225
0.00743194
0.00743164
0.0074314
0.00743125
0.00743119
0.00743121
0.00743135
0.00743155
0.00743181
0.00743207
0.00743234
0.0074326
0.00743321
0.00743339
0.00743348
0.00743349
0.0074334
0.00743322
0.00743295
0.00743263
0.00743229
0.00743196
0.0074317
0.00743153
0.00743147
0.00743152
0.00743166
0.00743187
0.00743214
0.00743241
0.00743272
0.00743298
0.00743359
0.00743377
0.00743387
0.00743389
0.0074338
0.00743361
0.00743334
0.007433
0.00743263
0.00743229
0.00743201
0.00743183
0.00743178
0.00743184
0.00743198
0.00743221
0.00743248
0.00743278
0.00743308
0.00743335
0.00743393
0.0074341
0.00743421
0.00743423
0.00743415
0.00743397
0.00743369
0.00743334
0.00743296
0.0074326
0.00743232
0.00743214
0.00743209
0.00743216
0.0074323
0.00743253
0.00743281
0.0074331
0.0074334
0.00743369
0.0074342
0.00743438
0.00743449
0.00743452
0.00743445
0.00743427
0.007434
0.00743365
0.00743327
0.00743291
0.00743263
0.00743246
0.00743241
0.00743248
0.00743263
0.00743286
0.00743312
0.00743341
0.00743369
0.00743396
0.00743443
0.00743461
0.00743472
0.00743474
0.00743468
0.00743452
0.00743426
0.00743392
0.00743355
0.0074332
0.00743293
0.00743277
0.00743273
0.00743279
0.00743294
0.00743317
0.0074334
0.00743368
0.00743395
0.00743421
0.00743462
0.00743479
0.00743491
0.00743493
0.00743487
0.00743472
0.00743448
0.00743416
0.00743381
0.00743347
0.00743321
0.00743307
0.00743303
0.0074331
0.00743324
0.00743343
0.00743365
0.00743393
0.00743417
0.00743441
0.00743476
0.00743491
0.00743502
0.00743506
0.00743502
0.00743488
0.00743466
0.00743436
0.00743403
0.00743372
0.00743348
0.00743336
0.00743332
0.00743338
0.00743351
0.00743368
0.00743389
0.00743412
0.00743434
0.00743457
0.00743487
0.00743502
0.00743512
0.00743516
0.00743512
0.007435
0.0074348
0.00743453
0.00743423
0.00743394
0.00743373
0.00743361
0.00743358
0.00743364
0.00743375
0.00743391
0.00743409
0.00743429
0.0074345
0.0074347
0.00743495
0.00743509
0.00743518
0.00743522
0.00743519
0.00743509
0.00743491
0.00743467
0.00743439
0.00743413
0.00743394
0.00743383
0.00743382
0.00743387
0.00743397
0.0074341
0.00743426
0.00743444
0.00743462
0.00743479
0.00743501
0.00743513
0.00743522
0.00743526
0.00743524
0.00743515
0.007435
0.00743478
0.00743455
0.00743432
0.00743415
0.00743406
0.00743403
0.00743407
0.00743415
0.00743426
0.00743441
0.00743456
0.00743471
0.00743487
0.00743504
0.00743515
0.00743522
0.00743526
0.00743526
0.00743518
0.00743505
0.00743487
0.00743466
0.00743446
0.00743431
0.00743423
0.00743421
0.00743424
0.00743431
0.0074344
0.00743451
0.00743464
0.00743478
0.00743492
0.00743506
0.00743516
0.00743523
0.00743526
0.00743526
0.0074352
0.00743509
0.00743493
0.00743475
0.00743458
0.00743445
0.00743439
0.00743437
0.00743439
0.00743444
0.00743451
0.00743461
0.00743472
0.00743483
0.00743495
0.00743506
0.00743515
0.00743521
0.00743525
0.00743525
0.0074352
0.00743511
0.00743498
0.00743483
0.00743468
0.00743457
0.00743451
0.00743449
0.00743451
0.00743454
0.0074346
0.00743468
0.00743477
0.00743487
0.00743497
0.00743506
0.00743513
0.00743519
0.00743523
0.00743523
0.00743519
0.00743512
0.00743501
0.00743488
0.00743475
0.00743467
0.00743461
0.00743459
0.0074346
0.00743463
0.00743467
0.00743474
0.00743481
0.00743489
0.00743498
0.00743505
0.00743511
0.00743516
0.0074352
0.0074352
0.00743517
0.00743511
0.00743502
0.00743492
0.00743481
0.00743474
0.00743469
0.00743467
0.00743468
0.00743469
0.00743473
0.00743478
0.00743484
0.00743491
0.00743498
0.00743503
0.00743509
0.00743513
0.00743516
0.00743517
0.00743515
0.0074351
0.00743503
0.00743494
0.00743485
0.00743479
0.00743476
0.00743473
0.00743473
0.00743474
0.00743477
0.00743481
0.00743485
0.00743491
0.00743497
0.00743501
0.00743506
0.0074351
0.00743513
0.00743514
0.00743512
0.00743509
0.00743503
0.00743496
0.00743488
0.00743483
0.0074348
0.00743478
0.00743477
0.00743478
0.0074348
0.00743483
0.00743486
0.00743491
0.00743496
0.00743499
0.00743503
0.00743507
0.00743509
0.0074351
0.00743509
0.00743507
0.00743502
0.00743496
0.0074349
0.00743486
0.00743483
0.00743481
0.0074348
0.0074348
0.00743482
0.00743484
0.00743487
0.00743491
0.00743495
0.00743497
0.00743501
0.00743504
0.00743506
0.00743507
0.00743506
0.00743504
0.007435
0.00743496
0.00743491
0.00743488
0.00743485
0.00743483
0.00743482
0.00743482
0.00743483
0.00743484
0.00743487
0.0074349
0.00743493
0.00743495
0.00743498
0.00743501
0.00743503
0.00743504
0.00743504
0.00743502
0.00743499
0.00743495
0.00743491
0.00743489
0.00743486
0.00743485
0.00743483
0.00743483
0.00743483
0.00743484
0.00743486
0.00743489
0.00743492
0.00743493
0.00743496
0.00743498
0.007435
0.00743501
0.00743501
0.007435
0.00743497
0.00743495
0.00743491
0.00743489
0.00743487
0.00743485
0.00743484
0.00743484
0.00743484
0.00743484
0.00743486
0.00743488
0.0074349
0.00743491
0.00743493
0.00743495
0.00743497
0.00743498
0.00743498
0.00743497
0.00743495
0.00743493
0.0074349
0.00743489
0.00743487
0.00743486
0.00743484
0.00743484
0.00743484
0.00743484
0.00743485
0.00743487
0.00743489
0.00743489
0.00743491
0.00743493
0.00743494
0.00743495
0.00743495
0.00743495
0.00743493
0.00743492
0.0074349
0.00743488
0.00743487
0.00743486
0.00743484
0.00743484
0.00743483
0.00743483
0.00743484
0.00743486
0.00743487
0.00743487
0.00743489
0.00743491
0.00743492
0.00743493
0.00743493
0.00743493
0.00743492
0.00743491
0.00743489
0.00743488
0.00743486
0.00743485
0.00743484
0.00743483
0.00743483
0.00743483
0.00743483
0.00743485
0.00743486
0.00743486
0.00743487
0.00743489
0.0074349
0.00743491
0.00743491
0.00743491
0.0074349
0.0074349
0.00743488
0.00743487
0.00743486
0.00743485
0.00743483
0.00743483
0.00743482
0.00743482
0.00743483
0.00743484
0.00743485
0.00743485
0.00743486
0.00743487
0.00743488
0.00743489
0.00743489
0.0074349
0.00743489
0.00743488
0.00743487
0.00743487
0.00743485
0.00743484
0.00743483
0.00743482
0.00743482
0.00743482
0.00743482
0.00743483
0.00743483
0.00743484
0.00743485
0.00743486
0.00743487
0.00743488
0.00743488
0.00743488
0.00743487
0.00743487
0.00743486
0.00743486
0.00743484
0.00743484
0.00743483
0.00743482
0.00743482
0.00743481
0.00743481
0.00743482
0.00743482
0.00743483
0.00743484
0.00743484
0.00743486
0.00743486
0.00743487
0.00743487
0.00743486
0.00743487
0.00743485
0.00743485
0.00743484
0.00743484
0.00743482
0.00743481
0.00743481
0.00743481
0.00743481
0.00743482
0.00743482
0.00743482
0.00743483
0.00743484
0.00743485
0.00743485
0.00743486
0.00743486
0.00743485
0.00743486
0.00743484
0.00743485
0.00743483
0.00743483
0.00743482
0.00743481
0.00743481
0.00743481
0.00743481
0.00743481
0.00743481
0.00743482
0.00743482
0.00743483
0.00743484
0.00743484
0.00743485
0.00743486
0.00743485
0.00743486
0.00743484
0.00743485
0.00743483
0.00743483
0.00743481
0.0074348
0.00743481
0.0074348
0.0074348
0.00743481
0.0074348
0.00743482
0.00743482
0.00743483
0.00743484
0.00743484
0.00743485
0.00743486
0.00743484
0.00743486
0.00743484
0.00743485
0.00743483
0.00743484
0.00743481
0.00743481
0.00743482
0.0074348
0.00743481
0.00743482
0.0074348
0.00743481
0.00743481
0.00743482
0.00743484
0.00743483
0.00743484
0.00743486
0.00743483
0.00743485
0.00743483
0.00743485
0.00743482
0.00743483
0.00743481
0.0074348
0.00743481
0.00743479
0.0074348
0.00743481
0.00743479
0.00743489
0.00743483
0.0074349
0.00743492
0.00743485
0.00743492
0.00743494
0.00743485
0.00743493
0.00743485
0.00743493
0.00743484
0.00743491
0.00743483
0.00743481
0.00743489
0.00743481
0.00743488
0.0074349
0.00743481
0.0104222
0.0104223
0.0104223
0.0104223
0.0104222
0.0104222
0.0104222
0.0104221
0.010422
0.010422
0.0104219
0.0104219
0.0104219
0.0104219
0.0104219
0.0104219
0.010422
0.010422
0.0104221
0.0104222
0.0104224
0.0104224
0.0104224
0.0104224
0.0104224
0.0104223
0.0104223
0.0104222
0.0104221
0.010422
0.010422
0.0104219
0.0104219
0.0104219
0.010422
0.010422
0.0104221
0.0104221
0.0104222
0.0104223
0.0104227
0.0104227
0.0104227
0.0104227
0.0104227
0.0104226
0.0104225
0.0104224
0.0104223
0.0104222
0.0104221
0.010422
0.010422
0.010422
0.010422
0.0104221
0.0104222
0.0104223
0.0104225
0.0104226
0.0104231
0.0104231
0.0104232
0.0104232
0.0104231
0.010423
0.0104229
0.0104227
0.0104225
0.0104224
0.0104222
0.0104222
0.0104221
0.0104221
0.0104222
0.0104223
0.0104225
0.0104226
0.0104228
0.0104229
0.0104235
0.0104235
0.0104236
0.0104236
0.0104235
0.0104234
0.0104232
0.010423
0.0104228
0.0104226
0.0104225
0.0104224
0.0104223
0.0104223
0.0104224
0.0104226
0.0104227
0.0104229
0.0104231
0.0104233
0.0104239
0.010424
0.0104241
0.0104241
0.010424
0.0104239
0.0104237
0.0104234
0.0104232
0.0104229
0.0104227
0.0104226
0.0104225
0.0104226
0.0104227
0.0104228
0.010423
0.0104233
0.0104235
0.0104237
0.0104244
0.0104245
0.0104246
0.0104246
0.0104245
0.0104243
0.0104241
0.0104238
0.0104235
0.0104232
0.010423
0.0104228
0.0104228
0.0104228
0.0104229
0.0104231
0.0104234
0.0104236
0.0104239
0.0104242
0.0104248
0.0104249
0.010425
0.010425
0.0104249
0.0104248
0.0104245
0.0104242
0.0104239
0.0104235
0.0104233
0.0104231
0.0104231
0.0104231
0.0104233
0.0104235
0.0104237
0.010424
0.0104243
0.0104245
0.0104251
0.0104253
0.0104254
0.0104254
0.0104253
0.0104252
0.0104249
0.0104246
0.0104242
0.0104239
0.0104236
0.0104234
0.0104234
0.0104234
0.0104236
0.0104238
0.0104241
0.0104243
0.0104246
0.0104249
0.0104255
0.0104257
0.0104258
0.0104258
0.0104257
0.0104255
0.0104252
0.0104249
0.0104245
0.0104242
0.0104239
0.0104237
0.0104237
0.0104237
0.0104239
0.0104241
0.0104244
0.0104247
0.010425
0.0104252
0.0104258
0.0104259
0.0104261
0.0104261
0.010426
0.0104258
0.0104256
0.0104252
0.0104248
0.0104245
0.0104242
0.010424
0.010424
0.0104241
0.0104242
0.0104245
0.0104247
0.010425
0.0104253
0.0104255
0.010426
0.0104262
0.0104263
0.0104263
0.0104262
0.0104261
0.0104258
0.0104255
0.0104251
0.0104248
0.0104245
0.0104244
0.0104243
0.0104244
0.0104245
0.0104247
0.010425
0.0104253
0.0104255
0.0104258
0.0104262
0.0104264
0.0104265
0.0104265
0.0104264
0.0104263
0.010426
0.0104257
0.0104254
0.0104251
0.0104248
0.0104247
0.0104246
0.0104247
0.0104248
0.010425
0.0104252
0.0104255
0.0104258
0.010426
0.0104264
0.0104265
0.0104266
0.0104266
0.0104266
0.0104265
0.0104262
0.0104259
0.0104256
0.0104253
0.0104251
0.0104249
0.0104249
0.010425
0.0104251
0.0104253
0.0104255
0.0104257
0.0104259
0.0104262
0.0104265
0.0104266
0.0104267
0.0104268
0.0104267
0.0104266
0.0104264
0.0104261
0.0104258
0.0104255
0.0104253
0.0104252
0.0104252
0.0104252
0.0104253
0.0104255
0.0104257
0.0104259
0.0104261
0.0104263
0.0104266
0.0104267
0.0104268
0.0104268
0.0104268
0.0104267
0.0104265
0.0104263
0.010426
0.0104257
0.0104255
0.0104254
0.0104254
0.0104255
0.0104256
0.0104257
0.0104259
0.010426
0.0104262
0.0104264
0.0104266
0.0104267
0.0104268
0.0104269
0.0104268
0.0104267
0.0104266
0.0104264
0.0104262
0.0104259
0.0104258
0.0104257
0.0104256
0.0104257
0.0104257
0.0104259
0.010426
0.0104262
0.0104263
0.0104265
0.0104267
0.0104268
0.0104268
0.0104269
0.0104269
0.0104268
0.0104267
0.0104265
0.0104263
0.0104261
0.0104259
0.0104258
0.0104258
0.0104258
0.0104259
0.010426
0.0104261
0.0104262
0.0104264
0.0104265
0.0104267
0.0104268
0.0104268
0.0104269
0.0104269
0.0104268
0.0104267
0.0104265
0.0104264
0.0104262
0.0104261
0.010426
0.010426
0.010426
0.010426
0.0104261
0.0104262
0.0104263
0.0104264
0.0104266
0.0104267
0.0104268
0.0104268
0.0104269
0.0104269
0.0104268
0.0104267
0.0104266
0.0104264
0.0104263
0.0104262
0.0104261
0.0104261
0.0104261
0.0104261
0.0104262
0.0104263
0.0104264
0.0104265
0.0104266
0.0104267
0.0104268
0.0104268
0.0104268
0.0104268
0.0104268
0.0104267
0.0104266
0.0104265
0.0104264
0.0104263
0.0104262
0.0104262
0.0104262
0.0104262
0.0104263
0.0104263
0.0104264
0.0104265
0.0104266
0.0104267
0.0104267
0.0104268
0.0104268
0.0104268
0.0104268
0.0104267
0.0104266
0.0104265
0.0104264
0.0104263
0.0104263
0.0104263
0.0104263
0.0104263
0.0104263
0.0104264
0.0104264
0.0104265
0.0104266
0.0104267
0.0104267
0.0104268
0.0104268
0.0104268
0.0104268
0.0104267
0.0104266
0.0104266
0.0104265
0.0104264
0.0104264
0.0104263
0.0104263
0.0104264
0.0104264
0.0104264
0.0104265
0.0104265
0.0104266
0.0104266
0.0104267
0.0104267
0.0104268
0.0104268
0.0104267
0.0104267
0.0104266
0.0104266
0.0104265
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104265
0.0104265
0.0104266
0.0104266
0.0104267
0.0104267
0.0104267
0.0104267
0.0104267
0.0104267
0.0104266
0.0104266
0.0104265
0.0104265
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104265
0.0104265
0.0104265
0.0104266
0.0104266
0.0104266
0.0104267
0.0104267
0.0104267
0.0104267
0.0104267
0.0104266
0.0104266
0.0104265
0.0104265
0.0104265
0.0104264
0.0104264
0.0104264
0.0104264
0.0104265
0.0104265
0.0104265
0.0104266
0.0104266
0.0104266
0.0104266
0.0104267
0.0104267
0.0104267
0.0104266
0.0104266
0.0104266
0.0104265
0.0104265
0.0104265
0.0104265
0.0104264
0.0104264
0.0104264
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104266
0.0104266
0.0104266
0.0104266
0.0104266
0.0104266
0.0104266
0.0104266
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104266
0.0104266
0.0104266
0.0104266
0.0104266
0.0104266
0.0104266
0.0104266
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104266
0.0104266
0.0104266
0.0104266
0.0104266
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104264
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104266
0.0104266
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104264
0.0104264
0.0104264
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104264
0.0104264
0.0104264
0.0104264
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104264
0.0104265
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104265
0.0104264
0.0104265
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104265
0.0104264
0.0104265
0.0104265
0.0104264
0.0104265
0.0104264
0.0104265
0.0104264
0.0104265
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104264
0.0104265
0.0104264
0.0104265
0.0104266
0.0104265
0.0104265
0.0104266
0.0104265
0.0104266
0.0104265
0.0104266
0.0104265
0.0104265
0.0104264
0.0104264
0.0104265
0.0104264
0.0104265
0.0104265
0.0104264
0.0152863
0.0152864
0.0152864
0.0152864
0.0152864
0.0152863
0.0152863
0.0152862
0.0152862
0.0152861
0.0152861
0.015286
0.0152861
0.0152861
0.0152861
0.015286
0.0152861
0.0152862
0.0152863
0.0152863
0.0152865
0.0152865
0.0152865
0.0152865
0.0152865
0.0152864
0.0152864
0.0152863
0.0152862
0.0152862
0.0152861
0.015286
0.015286
0.015286
0.0152861
0.0152861
0.0152862
0.0152863
0.0152863
0.0152864
0.0152868
0.0152868
0.0152868
0.0152868
0.0152868
0.0152867
0.0152866
0.0152865
0.0152864
0.0152863
0.0152862
0.0152861
0.0152861
0.0152861
0.0152862
0.0152863
0.0152864
0.0152865
0.0152866
0.0152867
0.0152872
0.0152872
0.0152873
0.0152872
0.0152872
0.0152871
0.015287
0.0152868
0.0152866
0.0152865
0.0152864
0.0152863
0.0152863
0.0152863
0.0152863
0.0152864
0.0152866
0.0152868
0.0152869
0.0152871
0.0152875
0.0152876
0.0152877
0.0152877
0.0152876
0.0152875
0.0152873
0.0152871
0.0152869
0.0152867
0.0152866
0.0152865
0.0152864
0.0152865
0.0152866
0.0152867
0.0152869
0.015287
0.0152872
0.0152874
0.015288
0.0152881
0.0152882
0.0152882
0.0152881
0.0152879
0.0152877
0.0152875
0.0152873
0.015287
0.0152868
0.0152867
0.0152867
0.0152867
0.0152868
0.015287
0.0152872
0.0152874
0.0152876
0.0152878
0.0152884
0.0152886
0.0152886
0.0152886
0.0152885
0.0152884
0.0152882
0.0152879
0.0152876
0.0152873
0.0152871
0.015287
0.0152869
0.015287
0.0152871
0.0152873
0.0152875
0.0152877
0.015288
0.0152882
0.0152888
0.015289
0.0152891
0.0152891
0.015289
0.0152888
0.0152886
0.0152883
0.0152879
0.0152877
0.0152874
0.0152873
0.0152872
0.0152872
0.0152874
0.0152876
0.0152878
0.0152881
0.0152884
0.0152886
0.0152892
0.0152894
0.0152895
0.0152895
0.0152894
0.0152892
0.015289
0.0152886
0.0152883
0.015288
0.0152877
0.0152876
0.0152875
0.0152875
0.0152877
0.0152879
0.0152882
0.0152884
0.0152887
0.015289
0.0152896
0.0152897
0.0152898
0.0152898
0.0152898
0.0152896
0.0152893
0.015289
0.0152886
0.0152883
0.015288
0.0152879
0.0152878
0.0152879
0.015288
0.0152882
0.0152885
0.0152888
0.0152891
0.0152893
0.0152899
0.01529
0.0152901
0.0152901
0.0152901
0.0152899
0.0152896
0.0152893
0.0152889
0.0152886
0.0152883
0.0152882
0.0152881
0.0152882
0.0152883
0.0152886
0.0152888
0.0152891
0.0152894
0.0152896
0.0152901
0.0152903
0.0152904
0.0152904
0.0152903
0.0152902
0.0152899
0.0152896
0.0152892
0.0152889
0.0152886
0.0152885
0.0152884
0.0152885
0.0152886
0.0152888
0.0152891
0.0152894
0.0152896
0.0152899
0.0152903
0.0152905
0.0152906
0.0152906
0.0152905
0.0152904
0.0152901
0.0152898
0.0152895
0.0152892
0.0152889
0.0152888
0.0152887
0.0152888
0.0152889
0.0152891
0.0152893
0.0152896
0.0152898
0.0152901
0.0152905
0.0152906
0.0152907
0.0152907
0.0152907
0.0152905
0.0152903
0.01529
0.0152897
0.0152894
0.0152892
0.015289
0.015289
0.0152891
0.0152892
0.0152894
0.0152896
0.0152898
0.01529
0.0152903
0.0152906
0.0152907
0.0152908
0.0152908
0.0152908
0.0152907
0.0152905
0.0152902
0.0152899
0.0152896
0.0152894
0.0152893
0.0152893
0.0152893
0.0152894
0.0152896
0.0152898
0.01529
0.0152902
0.0152904
0.0152907
0.0152908
0.0152909
0.0152909
0.0152909
0.0152908
0.0152906
0.0152904
0.0152901
0.0152898
0.0152896
0.0152895
0.0152895
0.0152896
0.0152897
0.0152898
0.01529
0.0152901
0.0152903
0.0152905
0.0152907
0.0152908
0.0152909
0.015291
0.0152909
0.0152908
0.0152907
0.0152905
0.0152902
0.01529
0.0152898
0.0152897
0.0152897
0.0152898
0.0152898
0.01529
0.0152901
0.0152903
0.0152904
0.0152906
0.0152908
0.0152909
0.015291
0.015291
0.015291
0.0152909
0.0152908
0.0152906
0.0152904
0.0152902
0.01529
0.0152899
0.0152899
0.0152899
0.01529
0.0152901
0.0152902
0.0152904
0.0152905
0.0152906
0.0152908
0.0152909
0.015291
0.015291
0.015291
0.0152909
0.0152908
0.0152906
0.0152905
0.0152903
0.0152902
0.0152901
0.0152901
0.0152901
0.0152901
0.0152902
0.0152903
0.0152904
0.0152906
0.0152907
0.0152908
0.0152909
0.0152909
0.015291
0.015291
0.0152909
0.0152908
0.0152907
0.0152905
0.0152904
0.0152903
0.0152902
0.0152902
0.0152902
0.0152903
0.0152903
0.0152904
0.0152905
0.0152906
0.0152907
0.0152908
0.0152909
0.0152909
0.015291
0.015291
0.0152909
0.0152908
0.0152907
0.0152906
0.0152905
0.0152904
0.0152903
0.0152903
0.0152903
0.0152903
0.0152904
0.0152905
0.0152905
0.0152906
0.0152907
0.0152908
0.0152909
0.0152909
0.0152909
0.0152909
0.0152909
0.0152908
0.0152907
0.0152906
0.0152905
0.0152905
0.0152904
0.0152904
0.0152904
0.0152904
0.0152904
0.0152905
0.0152906
0.0152906
0.0152907
0.0152908
0.0152908
0.0152909
0.0152909
0.0152909
0.0152909
0.0152908
0.0152908
0.0152907
0.0152906
0.0152905
0.0152905
0.0152904
0.0152904
0.0152905
0.0152905
0.0152905
0.0152906
0.0152906
0.0152907
0.0152908
0.0152908
0.0152908
0.0152909
0.0152909
0.0152909
0.0152908
0.0152908
0.0152907
0.0152906
0.0152906
0.0152905
0.0152905
0.0152905
0.0152905
0.0152905
0.0152906
0.0152906
0.0152906
0.0152907
0.0152907
0.0152908
0.0152908
0.0152908
0.0152908
0.0152908
0.0152908
0.0152907
0.0152907
0.0152906
0.0152906
0.0152906
0.0152905
0.0152905
0.0152905
0.0152905
0.0152906
0.0152906
0.0152906
0.0152907
0.0152907
0.0152907
0.0152908
0.0152908
0.0152908
0.0152908
0.0152908
0.0152907
0.0152907
0.0152906
0.0152906
0.0152906
0.0152906
0.0152905
0.0152905
0.0152906
0.0152906
0.0152906
0.0152906
0.0152907
0.0152907
0.0152907
0.0152907
0.0152908
0.0152908
0.0152908
0.0152908
0.0152907
0.0152907
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152907
0.0152907
0.0152907
0.0152907
0.0152907
0.0152907
0.0152907
0.0152907
0.0152907
0.0152907
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152907
0.0152907
0.0152907
0.0152907
0.0152907
0.0152907
0.0152907
0.0152907
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152907
0.0152907
0.0152907
0.0152907
0.0152907
0.0152907
0.0152907
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152907
0.0152907
0.0152907
0.0152907
0.0152907
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152907
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152905
0.0152905
0.0152905
0.0152905
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152905
0.0152905
0.0152905
0.0152905
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152905
0.0152905
0.0152905
0.0152905
0.0152905
0.0152905
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152905
0.0152905
0.0152905
0.0152905
0.0152905
0.0152906
0.0152905
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152905
0.0152905
0.0152906
0.0152905
0.0152905
0.0152906
0.0152905
0.0152906
0.0152905
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152906
0.0152905
0.0152906
0.0152905
0.0152905
0.0152905
0.0152905
0.0152905
0.0152906
0.0152905
0.0152906
0.0152906
0.0152907
0.0152907
0.0152906
0.0152907
0.0152907
0.0152906
0.0152907
0.0152906
0.0152907
0.0152906
0.0152907
0.0152906
0.0152905
0.0152906
0.0152906
0.0152906
0.0152907
0.0152906
0.0237026
0.0237026
0.0237026
0.0237026
0.0237026
0.0237026
0.0237025
0.0237025
0.0237024
0.0237024
0.0237023
0.0237023
0.0237023
0.0237023
0.0237023
0.0237022
0.0237024
0.0237024
0.0237025
0.0237025
0.0237027
0.0237027
0.0237028
0.0237027
0.0237027
0.0237027
0.0237026
0.0237025
0.0237025
0.0237024
0.0237023
0.0237023
0.0237023
0.0237023
0.0237024
0.0237024
0.0237024
0.0237025
0.0237026
0.0237026
0.023703
0.023703
0.023703
0.023703
0.023703
0.0237029
0.0237028
0.0237027
0.0237026
0.0237025
0.0237025
0.0237024
0.0237024
0.0237024
0.0237024
0.0237025
0.0237026
0.0237027
0.0237028
0.0237029
0.0237034
0.0237034
0.0237034
0.0237034
0.0237034
0.0237033
0.0237032
0.023703
0.0237029
0.0237027
0.0237026
0.0237025
0.0237025
0.0237025
0.0237026
0.0237027
0.0237028
0.023703
0.0237031
0.0237033
0.0237037
0.0237038
0.0237039
0.0237039
0.0237038
0.0237037
0.0237035
0.0237033
0.0237031
0.023703
0.0237028
0.0237027
0.0237027
0.0237027
0.0237028
0.0237029
0.0237031
0.0237033
0.0237034
0.0237036
0.0237041
0.0237043
0.0237043
0.0237043
0.0237042
0.0237041
0.0237039
0.0237037
0.0237034
0.0237032
0.0237031
0.0237029
0.0237029
0.0237029
0.023703
0.0237032
0.0237034
0.0237036
0.0237038
0.023704
0.0237046
0.0237047
0.0237048
0.0237048
0.0237047
0.0237045
0.0237043
0.0237041
0.0237038
0.0237035
0.0237033
0.0237032
0.0237032
0.0237032
0.0237033
0.0237035
0.0237037
0.0237039
0.0237042
0.0237044
0.023705
0.0237051
0.0237052
0.0237052
0.0237051
0.0237049
0.0237047
0.0237044
0.0237041
0.0237038
0.0237036
0.0237035
0.0237034
0.0237035
0.0237036
0.0237038
0.023704
0.0237043
0.0237045
0.0237048
0.0237053
0.0237055
0.0237056
0.0237056
0.0237055
0.0237053
0.0237051
0.0237048
0.0237045
0.0237042
0.0237039
0.0237038
0.0237037
0.0237038
0.0237039
0.0237041
0.0237043
0.0237046
0.0237049
0.0237051
0.0237057
0.0237058
0.0237059
0.0237059
0.0237059
0.0237057
0.0237054
0.0237051
0.0237048
0.0237045
0.0237042
0.0237041
0.023704
0.0237041
0.0237042
0.0237044
0.0237047
0.0237049
0.0237052
0.0237055
0.023706
0.0237061
0.0237062
0.0237062
0.0237062
0.023706
0.0237057
0.0237054
0.0237051
0.0237048
0.0237045
0.0237044
0.0237043
0.0237044
0.0237045
0.0237047
0.023705
0.0237052
0.0237055
0.0237058
0.0237062
0.0237064
0.0237065
0.0237065
0.0237064
0.0237063
0.023706
0.0237057
0.0237054
0.023705
0.0237048
0.0237046
0.0237046
0.0237047
0.0237048
0.023705
0.0237052
0.0237055
0.0237058
0.023706
0.0237064
0.0237066
0.0237067
0.0237067
0.0237066
0.0237065
0.0237062
0.0237059
0.0237056
0.0237053
0.0237051
0.0237049
0.0237049
0.023705
0.0237051
0.0237053
0.0237055
0.0237057
0.023706
0.0237062
0.0237066
0.0237067
0.0237068
0.0237068
0.0237068
0.0237066
0.0237064
0.0237061
0.0237058
0.0237055
0.0237053
0.0237052
0.0237052
0.0237052
0.0237053
0.0237055
0.0237057
0.0237059
0.0237062
0.0237064
0.0237067
0.0237068
0.0237069
0.0237069
0.0237069
0.0237068
0.0237066
0.0237063
0.023706
0.0237058
0.0237056
0.0237055
0.0237054
0.0237055
0.0237056
0.0237057
0.0237059
0.0237061
0.0237063
0.0237065
0.0237068
0.0237069
0.023707
0.023707
0.023707
0.0237069
0.0237067
0.0237065
0.0237062
0.023706
0.0237058
0.0237057
0.0237057
0.0237057
0.0237058
0.0237059
0.0237061
0.0237063
0.0237064
0.0237066
0.0237068
0.023707
0.023707
0.0237071
0.023707
0.023707
0.0237068
0.0237066
0.0237064
0.0237061
0.023706
0.0237059
0.0237059
0.0237059
0.023706
0.0237061
0.0237062
0.0237064
0.0237065
0.0237067
0.0237069
0.023707
0.0237071
0.0237071
0.0237071
0.023707
0.0237069
0.0237067
0.0237065
0.0237063
0.0237061
0.0237061
0.023706
0.0237061
0.0237061
0.0237062
0.0237064
0.0237065
0.0237066
0.0237068
0.0237069
0.023707
0.0237071
0.0237071
0.0237071
0.023707
0.0237069
0.0237068
0.0237066
0.0237064
0.0237063
0.0237062
0.0237062
0.0237062
0.0237063
0.0237063
0.0237064
0.0237066
0.0237067
0.0237068
0.0237069
0.023707
0.0237071
0.0237071
0.0237071
0.023707
0.0237069
0.0237068
0.0237067
0.0237065
0.0237064
0.0237063
0.0237063
0.0237063
0.0237064
0.0237064
0.0237065
0.0237066
0.0237067
0.0237068
0.0237069
0.023707
0.023707
0.0237071
0.0237071
0.023707
0.023707
0.0237068
0.0237067
0.0237066
0.0237065
0.0237064
0.0237064
0.0237064
0.0237065
0.0237065
0.0237066
0.0237067
0.0237067
0.0237068
0.0237069
0.023707
0.023707
0.0237071
0.0237071
0.023707
0.023707
0.0237069
0.0237068
0.0237066
0.0237066
0.0237065
0.0237065
0.0237065
0.0237065
0.0237066
0.0237066
0.0237067
0.0237068
0.0237068
0.0237069
0.023707
0.023707
0.023707
0.023707
0.023707
0.023707
0.0237069
0.0237068
0.0237067
0.0237066
0.0237066
0.0237066
0.0237066
0.0237066
0.0237066
0.0237067
0.0237067
0.0237068
0.0237068
0.0237069
0.0237069
0.023707
0.023707
0.023707
0.023707
0.0237069
0.0237069
0.0237068
0.0237067
0.0237067
0.0237066
0.0237066
0.0237066
0.0237066
0.0237066
0.0237067
0.0237067
0.0237068
0.0237068
0.0237069
0.0237069
0.0237069
0.023707
0.023707
0.023707
0.0237069
0.0237069
0.0237068
0.0237067
0.0237067
0.0237067
0.0237067
0.0237066
0.0237067
0.0237067
0.0237067
0.0237067
0.0237068
0.0237068
0.0237068
0.0237069
0.0237069
0.0237069
0.0237069
0.0237069
0.0237069
0.0237069
0.0237068
0.0237068
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237068
0.0237068
0.0237068
0.0237068
0.0237069
0.0237069
0.0237069
0.0237069
0.0237069
0.0237068
0.0237068
0.0237068
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237069
0.0237069
0.0237069
0.0237069
0.0237068
0.0237068
0.0237068
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237068
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237068
0.0237068
0.0237068
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237068
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237067
0.0237066
0.0237068
0.0237067
0.0237068
0.0237068
0.0237067
0.0237068
0.0237069
0.0237067
0.0237068
0.0237067
0.0237068
0.0237067
0.0237068
0.0237067
0.0237067
0.0237068
0.0237067
0.0237068
0.0237068
0.0237067
0.0394258
0.0394259
0.0394259
0.0394259
0.0394258
0.0394258
0.0394258
0.0394257
0.0394257
0.0394257
0.0394256
0.0394256
0.0394256
0.0394256
0.0394256
0.0394254
0.0394257
0.0394257
0.0394258
0.0394258
0.0394259
0.039426
0.039426
0.039426
0.0394259
0.0394259
0.0394258
0.0394258
0.0394257
0.0394257
0.0394256
0.0394256
0.0394255
0.0394256
0.0394257
0.0394256
0.0394257
0.0394258
0.0394258
0.0394259
0.0394262
0.0394262
0.0394262
0.0394262
0.0394262
0.0394261
0.0394261
0.039426
0.0394259
0.0394258
0.0394257
0.0394257
0.0394257
0.0394257
0.0394257
0.0394258
0.0394258
0.0394259
0.039426
0.0394261
0.0394265
0.0394266
0.0394266
0.0394266
0.0394265
0.0394265
0.0394263
0.0394262
0.0394261
0.039426
0.0394259
0.0394258
0.0394258
0.0394258
0.0394258
0.0394259
0.039426
0.0394263
0.0394263
0.0394264
0.0394269
0.039427
0.039427
0.039427
0.0394269
0.0394268
0.0394267
0.0394265
0.0394264
0.0394262
0.0394261
0.039426
0.0394259
0.039426
0.039426
0.0394261
0.0394263
0.0394265
0.0394265
0.0394267
0.0394273
0.0394274
0.0394274
0.0394274
0.0394273
0.0394272
0.039427
0.0394268
0.0394266
0.0394264
0.0394263
0.0394262
0.0394261
0.0394262
0.0394263
0.0394264
0.0394266
0.0394267
0.0394269
0.0394271
0.0394276
0.0394278
0.0394278
0.0394278
0.0394277
0.0394276
0.0394274
0.0394272
0.0394269
0.0394267
0.0394265
0.0394264
0.0394264
0.0394264
0.0394265
0.0394267
0.0394268
0.0394271
0.0394273
0.0394275
0.039428
0.0394282
0.0394282
0.0394282
0.0394281
0.039428
0.0394278
0.0394275
0.0394272
0.039427
0.0394268
0.0394267
0.0394266
0.0394267
0.0394268
0.0394269
0.0394271
0.0394274
0.0394276
0.0394278
0.0394284
0.0394285
0.0394286
0.0394286
0.0394285
0.0394283
0.0394281
0.0394278
0.0394276
0.0394273
0.0394271
0.0394269
0.0394269
0.0394269
0.039427
0.0394272
0.0394274
0.0394277
0.0394279
0.0394282
0.0394287
0.0394288
0.0394289
0.0394289
0.0394288
0.0394287
0.0394284
0.0394281
0.0394278
0.0394276
0.0394273
0.0394272
0.0394271
0.0394272
0.0394273
0.0394275
0.0394277
0.039428
0.0394282
0.0394285
0.0394289
0.0394291
0.0394292
0.0394292
0.0394291
0.039429
0.0394287
0.0394284
0.0394281
0.0394278
0.0394276
0.0394275
0.0394274
0.0394275
0.0394276
0.0394278
0.039428
0.0394283
0.0394285
0.0394287
0.0394292
0.0394293
0.0394294
0.0394294
0.0394294
0.0394292
0.039429
0.0394287
0.0394284
0.0394281
0.0394279
0.0394277
0.0394277
0.0394277
0.0394279
0.0394281
0.0394283
0.0394285
0.0394288
0.039429
0.0394294
0.0394295
0.0394296
0.0394296
0.0394295
0.0394294
0.0394292
0.0394289
0.0394286
0.0394283
0.0394281
0.039428
0.039428
0.039428
0.0394281
0.0394283
0.0394285
0.0394287
0.039429
0.0394292
0.0394295
0.0394296
0.0394297
0.0394297
0.0394297
0.0394296
0.0394294
0.0394291
0.0394288
0.0394286
0.0394284
0.0394282
0.0394282
0.0394283
0.0394284
0.0394285
0.0394287
0.0394289
0.0394291
0.0394293
0.0394296
0.0394297
0.0394298
0.0394299
0.0394298
0.0394297
0.0394295
0.0394293
0.039429
0.0394288
0.0394286
0.0394285
0.0394284
0.0394285
0.0394286
0.0394287
0.0394289
0.0394291
0.0394293
0.0394295
0.0394297
0.0394298
0.0394299
0.0394299
0.0394299
0.0394298
0.0394296
0.0394294
0.0394292
0.0394289
0.0394288
0.0394287
0.0394287
0.0394287
0.0394288
0.0394289
0.0394291
0.0394292
0.0394294
0.0394296
0.0394298
0.0394299
0.0394299
0.03943
0.0394299
0.0394299
0.0394297
0.0394295
0.0394293
0.0394291
0.039429
0.0394289
0.0394289
0.0394289
0.039429
0.0394291
0.0394292
0.0394293
0.0394295
0.0394296
0.0394298
0.0394299
0.03943
0.03943
0.03943
0.0394299
0.0394298
0.0394296
0.0394294
0.0394292
0.0394291
0.039429
0.039429
0.039429
0.0394291
0.0394292
0.0394293
0.0394294
0.0394296
0.0394297
0.0394298
0.0394299
0.03943
0.03943
0.03943
0.0394299
0.0394298
0.0394297
0.0394295
0.0394294
0.0394292
0.0394292
0.0394292
0.0394292
0.0394292
0.0394293
0.0394294
0.0394295
0.0394296
0.0394297
0.0394298
0.0394299
0.03943
0.03943
0.03943
0.0394299
0.0394299
0.0394297
0.0394296
0.0394294
0.0394294
0.0394293
0.0394293
0.0394293
0.0394293
0.0394294
0.0394295
0.0394296
0.0394296
0.0394297
0.0394298
0.0394299
0.03943
0.03943
0.03943
0.0394299
0.0394299
0.0394298
0.0394296
0.0394295
0.0394294
0.0394294
0.0394294
0.0394294
0.0394294
0.0394295
0.0394295
0.0394296
0.0394297
0.0394298
0.0394298
0.0394299
0.0394299
0.03943
0.03943
0.0394299
0.0394299
0.0394298
0.0394297
0.0394296
0.0394295
0.0394295
0.0394295
0.0394295
0.0394295
0.0394295
0.0394296
0.0394296
0.0394297
0.0394298
0.0394298
0.0394299
0.0394299
0.0394299
0.0394299
0.0394299
0.0394299
0.0394298
0.0394297
0.0394296
0.0394296
0.0394295
0.0394295
0.0394295
0.0394295
0.0394296
0.0394296
0.0394296
0.0394297
0.0394298
0.0394298
0.0394298
0.0394299
0.0394299
0.0394299
0.0394299
0.0394299
0.0394298
0.0394297
0.0394297
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394297
0.0394297
0.0394298
0.0394298
0.0394298
0.0394299
0.0394299
0.0394299
0.0394299
0.0394298
0.0394298
0.0394297
0.0394297
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394297
0.0394297
0.0394297
0.0394298
0.0394298
0.0394298
0.0394298
0.0394299
0.0394298
0.0394298
0.0394298
0.0394297
0.0394297
0.0394297
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394297
0.0394297
0.0394297
0.0394297
0.0394298
0.0394298
0.0394298
0.0394298
0.0394298
0.0394298
0.0394298
0.0394297
0.0394297
0.0394297
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394298
0.0394298
0.0394298
0.0394298
0.0394298
0.0394298
0.0394297
0.0394297
0.0394297
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394298
0.0394298
0.0394298
0.0394298
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394296
0.0394297
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394297
0.0394297
0.0394297
0.0394297
0.0394297
0.0394296
0.0394297
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394297
0.0394296
0.0394296
0.0394297
0.0394296
0.0394297
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394297
0.0394296
0.0394297
0.0394297
0.0394296
0.0394297
0.0394296
0.0394297
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394297
0.0394296
0.0394297
0.0394296
0.0394297
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394296
0.0394297
0.0394296
0.0394297
0.0394298
0.0394297
0.0394298
0.0394298
0.0394297
0.0394298
0.0394297
0.0394298
0.0394296
0.0394298
0.0394296
0.0394296
0.0394297
0.0394296
0.0394297
0.0394298
0.0394296
0.0717545
0.0717545
0.0717545
0.0717545
0.0717545
0.0717544
0.0717544
0.0717544
0.0717543
0.0717543
0.0717543
0.0717543
0.0717542
0.0717543
0.0717542
0.0717543
0.0717543
0.0717544
0.0717544
0.0717544
0.0717545
0.0717546
0.0717546
0.0717546
0.0717545
0.0717545
0.0717545
0.0717544
0.0717544
0.0717543
0.0717543
0.0717543
0.0717542
0.0717543
0.0717542
0.0717543
0.0717543
0.0717544
0.0717544
0.0717545
0.0717547
0.0717548
0.0717548
0.0717548
0.0717547
0.0717547
0.0717546
0.0717546
0.0717545
0.0717544
0.0717543
0.0717543
0.0717543
0.0717543
0.0717543
0.0717544
0.0717545
0.0717545
0.0717546
0.0717547
0.071755
0.071755
0.0717551
0.071755
0.071755
0.0717549
0.0717549
0.0717548
0.0717547
0.0717546
0.0717545
0.0717544
0.0717544
0.0717544
0.0717545
0.0717545
0.0717546
0.0717547
0.0717548
0.0717549
0.0717553
0.0717553
0.0717554
0.0717554
0.0717553
0.0717552
0.0717551
0.071755
0.0717549
0.0717547
0.0717546
0.0717546
0.0717545
0.0717546
0.0717546
0.0717547
0.0717548
0.0717549
0.0717551
0.0717552
0.0717556
0.0717557
0.0717557
0.0717557
0.0717557
0.0717556
0.0717554
0.0717553
0.0717551
0.0717549
0.0717548
0.0717547
0.0717547
0.0717547
0.0717548
0.0717549
0.071755
0.0717552
0.0717553
0.0717555
0.0717559
0.071756
0.0717561
0.071756
0.071756
0.0717559
0.0717557
0.0717555
0.0717553
0.0717552
0.071755
0.0717549
0.0717549
0.0717549
0.071755
0.0717551
0.0717553
0.0717554
0.0717556
0.0717558
0.0717562
0.0717563
0.0717564
0.0717564
0.0717563
0.0717562
0.071756
0.0717558
0.0717556
0.0717554
0.0717552
0.0717551
0.0717551
0.0717551
0.0717552
0.0717553
0.0717555
0.0717557
0.0717559
0.0717561
0.0717565
0.0717566
0.0717567
0.0717567
0.0717566
0.0717565
0.0717563
0.0717561
0.0717558
0.0717556
0.0717554
0.0717553
0.0717553
0.0717553
0.0717554
0.0717556
0.0717558
0.071756
0.0717562
0.0717563
0.0717568
0.0717569
0.0717569
0.0717569
0.0717569
0.0717567
0.0717566
0.0717563
0.0717561
0.0717558
0.0717557
0.0717556
0.0717555
0.0717556
0.0717557
0.0717558
0.071756
0.0717562
0.0717564
0.0717566
0.071757
0.0717571
0.0717572
0.0717572
0.0717571
0.071757
0.0717568
0.0717566
0.0717563
0.0717561
0.0717559
0.0717558
0.0717557
0.0717558
0.0717559
0.071756
0.0717562
0.0717564
0.0717566
0.0717568
0.0717572
0.0717573
0.0717573
0.0717574
0.0717573
0.0717572
0.071757
0.0717568
0.0717565
0.0717563
0.0717561
0.071756
0.071756
0.071756
0.0717561
0.0717563
0.0717564
0.0717566
0.0717568
0.071757
0.0717573
0.0717574
0.0717575
0.0717575
0.0717575
0.0717573
0.0717572
0.0717569
0.0717567
0.0717565
0.0717563
0.0717562
0.0717562
0.0717562
0.0717563
0.0717565
0.0717566
0.0717568
0.071757
0.0717572
0.0717574
0.0717575
0.0717576
0.0717576
0.0717576
0.0717575
0.0717573
0.0717571
0.0717569
0.0717567
0.0717565
0.0717564
0.0717564
0.0717564
0.0717565
0.0717566
0.0717568
0.071757
0.0717571
0.0717573
0.0717575
0.0717576
0.0717577
0.0717577
0.0717577
0.0717576
0.0717574
0.0717572
0.071757
0.0717568
0.0717567
0.0717566
0.0717566
0.0717566
0.0717567
0.0717568
0.0717569
0.0717571
0.0717573
0.0717574
0.0717576
0.0717577
0.0717578
0.0717578
0.0717578
0.0717577
0.0717575
0.0717574
0.0717572
0.071757
0.0717568
0.0717568
0.0717567
0.0717568
0.0717569
0.071757
0.0717571
0.0717572
0.0717573
0.0717575
0.0717577
0.0717577
0.0717578
0.0717578
0.0717578
0.0717577
0.0717576
0.0717574
0.0717573
0.0717571
0.071757
0.0717569
0.0717569
0.0717569
0.071757
0.0717571
0.0717572
0.0717573
0.0717574
0.0717575
0.0717577
0.0717578
0.0717578
0.0717578
0.0717578
0.0717578
0.0717577
0.0717575
0.0717574
0.0717572
0.0717571
0.0717571
0.071757
0.0717571
0.0717571
0.0717572
0.0717573
0.0717574
0.0717575
0.0717576
0.0717577
0.0717578
0.0717578
0.0717578
0.0717578
0.0717578
0.0717577
0.0717576
0.0717574
0.0717573
0.0717572
0.0717572
0.0717572
0.0717572
0.0717572
0.0717573
0.0717574
0.0717574
0.0717575
0.0717576
0.0717577
0.0717578
0.0717578
0.0717578
0.0717578
0.0717578
0.0717577
0.0717576
0.0717575
0.0717574
0.0717573
0.0717573
0.0717573
0.0717573
0.0717573
0.0717573
0.0717574
0.0717575
0.0717576
0.0717576
0.0717577
0.0717578
0.0717578
0.0717578
0.0717578
0.0717578
0.0717577
0.0717576
0.0717575
0.0717575
0.0717574
0.0717573
0.0717573
0.0717573
0.0717574
0.0717574
0.0717575
0.0717575
0.0717576
0.0717576
0.0717577
0.0717578
0.0717578
0.0717578
0.0717578
0.0717578
0.0717577
0.0717577
0.0717576
0.0717575
0.0717574
0.0717574
0.0717574
0.0717574
0.0717574
0.0717574
0.0717575
0.0717575
0.0717576
0.0717577
0.0717577
0.0717577
0.0717578
0.0717578
0.0717578
0.0717578
0.0717577
0.0717577
0.0717576
0.0717575
0.0717575
0.0717575
0.0717574
0.0717574
0.0717575
0.0717575
0.0717575
0.0717576
0.0717576
0.0717576
0.0717577
0.0717577
0.0717578
0.0717578
0.0717578
0.0717578
0.0717577
0.0717577
0.0717576
0.0717576
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717576
0.0717576
0.0717576
0.0717577
0.0717577
0.0717577
0.0717577
0.0717578
0.0717577
0.0717577
0.0717577
0.0717576
0.0717576
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717576
0.0717576
0.0717576
0.0717577
0.0717577
0.0717577
0.0717577
0.0717577
0.0717577
0.0717577
0.0717577
0.0717576
0.0717576
0.0717576
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717576
0.0717576
0.0717576
0.0717576
0.0717577
0.0717577
0.0717577
0.0717577
0.0717577
0.0717577
0.0717577
0.0717576
0.0717576
0.0717576
0.0717576
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717577
0.0717577
0.0717577
0.0717577
0.0717577
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717575
0.0717575
0.0717575
0.0717575
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717577
0.0717577
0.0717577
0.0717577
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717575
0.0717575
0.0717575
0.0717575
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717575
0.0717576
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717576
0.0717575
0.0717576
0.0717575
0.0717576
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717576
0.0717575
0.0717576
0.0717576
0.0717575
0.0717576
0.0717575
0.0717576
0.0717575
0.0717576
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717575
0.0717577
0.0717576
0.0717577
0.0717577
0.0717576
0.0717577
0.0717577
0.0717576
0.0717577
0.0717576
0.0717577
0.0717576
0.0717577
0.0717576
0.0717575
0.0717577
0.0717575
0.0717577
0.0717577
0.0717575
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146782
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146782
0.146782
0.146782
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146784
0.146784
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146783
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146783
0.146783
0.146783
0.146783
0.146783
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.146784
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.350026
0.00892391
0.00808407
0.0242974
0.0142934
0.022098
1.82375
0.0370374
0.035522
0.0839838
0.0290938
1.80429
0.0880206
0.0621059
0.0627733
0.0372886
0.022786
0.0986369
0.0504624
0.0997855
0.0179297
0.0180013
0.00929409
0.0219017
0.0189898
42.022
0.0191078
32.1738
0.0457347
1.85108
0.37341
0.00713132
0.550061
0.00301498
16.9801
0.00644836
0.0842011
0.00452328
0.0258584
0.0327031
0.0959479
0.0220446
40.9489
0.060333
48.0769
1.64681
0.125786
0.0633349
0.252566
0.0601711
0.00256222
0.0196711
0.00286131
0.0394704
0.00291614
0.0196519
0.00308806
0.0922519
0.0192572
0.0857652
0.0523095
48.5121
0.0332919
38.6279
0.0543132
0.132441
0.0200763
0.046126
0.0247255
0.00212668
0.00654994
0.00162138
0.0149137
0.0023123
0.00619977
0.00180096
0.0681392
0.00460357
0.0992574
0.0136127
38.5328
0.00740294
49.2442
0.0165325
0.216907
0.00927642
0.0187376
0.0106536
0.128091
0.00230838
0.133087
0.00609209
49.9676
0.00317969
47.7578
0.0106435
0.306458
0.00637608
0.0111985
0.00746021
0.131997
0.00147512
0.251051
0.00219268
49.9726
0.00174677
48.1226
0.00490431
0.39455
0.00376162
0.00669793
0.00433095
0.27907
0.00183557
0.166013
0.00193385
47.336
0.00221554
24.1562
0.00471729
0.401621
0.00469071
0.00445034
0.00442888
0.155084
0.000599633
0.183061
0.00101495
23.7922
0.000654936
20.195
0.00311055
0.621468
0.00136447
0.00343329
0.0015467
0.169391
0.000459488
0.210007
0.000537378
19.7524
0.000485506
18.168
0.00126414
1.87635
0.000908985
0.00140177
0.00094759
0.205063
0.000437249
0.237168
0.000473965
17.8043
0.000461554
16.5724
0.000871906
1.44048
0.000650362
0.000901328
0.000658784
0.235296
0.000415057
0.151082
0.000443039
16.1068
0.000436699
13.7794
0.000608639
1.42052
0.000540518
0.000616143
0.000550307
0.149047
0.00040542
0.168425
0.000429969
13.5277
0.000426863
9.33812
0.000579587
1.1029
0.00048777
0.000595944
0.000506266
0.0334392
2.25331
0.277279
182.72
0.250203
0.170834
0.0901965
0.00788524
0.0517054
0.0046218
0.0463661
0.00693704
0.0236419
0.00449286
0.0976702
0.234701
0.352079
0.195364
0.0620067
0.0648504
0.0419033
0.0217162
0.255773
0.0454896
0.0472096
0.0237024
0.032479
0.0158307
0.0026202
0.0185124
0.00512494
0.0192471
0.0108037
0.0179213
0.0102658
0.00173899
0.00372482
0.0024199
0.0115673
0.00800028
0.00898962
0.00603413
0.00104824
0.00186837
0.00100138
0.0071312
0.00445051
0.00520902
0.00341368
0.00129221
46.7763
0.00104254
0.00140697
0.00446594
0.00444907
0.00323114
0.00315191
45.9795
0.000503133
39.1376
0.000811222
0.000547224
0.00349102
0.00155392
0.00252429
0.00119452
38.339
0.000471215
34.9469
0.000528656
0.0005088
0.00138836
0.000935693
0.00106634
0.000758668
34.2222
0.000457257
31.8182
0.00050256
0.000492183
0.000885234
0.000651173
0.000697441
0.000596233
30.9077
0.000448455
27.0957
0.000488675
0.000484198
0.000609359
0.000551788
0.000564448
0.000527457
26.6065
0.000443608
10.8875
0.000482664
0.00048006
0.000599291
0.000509275
0.000564308
0.000514617
10.7904
0.000442251
8.56072
0.000479439
0.000479465
0.000495075
0.000477438
0.000505534
0.000496351
8.36018
0.00044059
6.56618
0.000478883
0.000478205
0.000476894
0.000460653
0.000496166
0.000488288
6.30902
0.000440054
5.71515
0.000478104
0.000477852
0.0004596
0.000449399
0.000487725
0.000481946
2.21389
0.00945112
0.22466
0.0603333
0.00852412
0.520505
0.451703
0.389557
0.122876
0.0526628
0.311489
0.0504142
0.134081
0.0336336
0.0998763
0.0024617
0.119571
0.00645868
1629.69
0.00312315
0.763528
0.413328
0.360154
2.60267
0.409976
0.0375518
0.0366943
0.115041
0.021032
0.133551
0.0168905
0.0443032
0.000911751
0.00659463
0.0025122
0.107284
0.000946944
0.0127851
0.0685724
1.73464
0.393043
0.0761549
0.335178
0.0279054
0.0141357
0.120027
0.0128114
0.0838339
0.0100001
0.00700543
0.0479599
0.401035
0.0189027
0.029981
0.0118178
0.00775838
0.0912367
0.00779601
0.025817
0.00606396
0.00279033
0.00893742
0.0257906
0.00326356
0.00987563
0.00680387
0.00487365
0.0183966
0.00475428
0.011461
0.00378945
0.00101137
0.00180139
0.00899097
0.000865516
0.0643837
0.00417
0.00269023
0.00980779
0.0029734
0.00453851
0.00203542
0.00144124
0.00073497
0.00342932
0.000884237
0.00546625
0.00251233
0.00254969
0.00229629
0.00164094
0.0021853
0.00148723
0.000560636
0.000717704
0.00515341
0.000572238
0.0027277
0.00198981
0.00102077
0.00209847
0.00118759
0.00110019
0.000863138
0.000520822
0.000560843
0.0018048
0.000550781
0.00102613
0.000911479
0.000686015
0.000964973
0.000765801
0.000749086
0.000638719
0.000504353
0.000545128
0.000935966
0.000541741
0.000715306
0.000635454
0.000574437
0.000720424
0.000594697
0.000640489
0.000570309
0.000497101
0.000539427
0.000773399
0.000538018
0.000640556
0.000546782
0.000520199
0.000633012
0.000547293
0.00061583
0.000534787
0.000493485
0.000536961
0.000625869
0.000536258
0.000595244
0.000544432
0.000516178
0.000601692
0.00053031
0.000561692
0.000526496
0.000493173
0.000536118
0.000564246
0.000521996
0.000550667
0.000509669
0.000503286
0.000552716
0.000523261
0.000546581
0.000522496
0.0612251
0.0737278
0.000738469
0.00090083
0.00072022
0.000890005
0.0491505
2.8776
0.0533109
0.000697228
0.000679384
0.000675622
0.000668746
0.0532093
0.0486285
0.025956
0.000661656
0.000657276
0.000642182
0.000648919
0.0239467
0.00576608
0.00985468
0.00063486
0.000639999
0.000669407
0.000692981
0.00999479
0.0541238
0.00509062
0.00660795
0.562686
0.00266861
0.00815677
0.0142953
0.0271724
0.00794277
0.0129141
0.0231811
0.042256
0.0025001
0.0251482
0.00292739
0.214502
0.00225665
0.0200129
0.00306242
0.0280946
0.0097336
0.0247818
0.0215322
0.0713939
0.0149643
0.0641709
0.00232123
0.00482376
0.00154347
0.013729
0.00219097
0.00635267
0.00156214
0.0156705
0.00267268
0.0200035
0.00625299
0.0490022
0.00372293
0.0755203
0.0178339
0.0556949
0.0104079
0.0951825
0.0156965
0.161104
0.00902199
0.0336315
0.00176222
0.0264526
0.0039387
0.0999272
0.0022556
0.0726183
0.029531
0.0656144
0.0199517
0.198435
0.0117968
0.214363
0.00689979
0.0253975
0.00128625
0.0422634
0.00166842
0.0717137
0.00149802
0.140963
0.0116884
0.137987
0.0115083
0.236778
0.00475566
0.416549
0.00399861
0.055956
0.00162488
0.0346493
0.00179055
0.166158
0.00194768
0.0831612
0.014015
0.12292
0.0117831
0.468066
0.00577255
0.520355
0.00534189
0.0166426
0.000512676
0.0176802
0.000790478
0.0672687
0.000550133
0.0761155
0.00629615
0.107245
0.00441557
0.576746
0.00307637
0.875987
0.0028287
0.0176226
0.000416262
0.0193063
0.000469544
0.0716243
0.000433514
0.0838687
0.00399817
0.0980448
0.00321793
0.9069
0.00244521
1.17658
0.00173932
0.0192921
0.000397456
0.0214569
0.000423392
0.0802216
0.000413228
0.0912406
0.00357198
0.101376
0.0029708
0.651149
0.00176566
0.529038
0.00138403
0.0714546
0.0320389
0.102409
0.150578
0.0932335
0.0276831
0.245565
0.0315024
18.7626
0.104954
0.313254
0.0433827
0.131618
1.36873
0.148331
0.00786509
0.00886467
0.0531095
0.103625
0.00710855
0.00918941
0.0391632
64.2369
0.115697
0.343813
0.386417
3.55993
0.146532
0.430327
4.40997
39.0535
0.486397
0.00131518
0.00235489
0.0010765
0.00358884
0.00139267
0.00266502
0.00111268
0.457949
1.02409
0.304861
0.80283
0.358458
0.81251
0.943965
0.00111707
0.00195208
0.000937039
0.00269518
0.00109732
0.00208532
0.000916186
0.205609
0.121962
0.259893
1.25654
0.142273
0.172662
1.54538
0.000733272
0.00123912
0.000619845
0.00165749
0.000720576
0.00127305
0.000610444
0.113343
0.0845594
0.412945
2.07003
0.0994693
0.113562
2.43294
0.0239327
0.0295651
0.480112
1.86295
0.0165847
0.0410586
2.27382
0.0160019
0.0132938
2.37968
2.80812
0.0126845
0.0196317
3.41378
0.0077235
0.00677437
1.79571
3.64097
0.00662849
0.00919012
4.20454
0.16933
0.00040036
0.163797
0.000423467
9.26316
0.000421489
8.32288
0.000604377
0.496869
0.00060451
0.000490806
0.000469759
0.149641
0.000397577
0.190961
0.000419669
8.14772
0.00041868
6.64306
0.000596298
0.329777
0.000534137
0.000469098
0.000451537
0.190487
0.000396784
0.197213
0.000418207
6.39195
0.000417754
5.94585
0.000520234
0.268116
0.000558855
0.000450634
0.000495333
0.0205176
0.00327902
0.0134136
0.0098671
0.558988
0.00525137
0.0773864
0.0253519
0.0425399
0.253411
0.212416
0.0269862
0.0967681
0.0304214
0.00748651
0.00176519
0.0173804
0.00274805
0.0520451
0.00225593
0.0315802
0.00303084
0.0190871
0.0033062
0.0160391
0.00300215
0.00985138
0.0033743
0.00738526
0.000826424
0.00261353
0.00192
0.0120134
0.000906111
0.00372299
5.26192
102.096
9.3563
0.00245816
0.00511399
0.00189618
0.0070613
0.0024386
0.0045443
0.00171316
0.00170357
0.000541496
0.00111812
0.000628163
0.00221521
0.000571587
0.00132479
0.67684
5.05988
1.55213
1.13729
0.0013889
0.00281153
0.00108952
0.003613
0.0012471
0.00266878
0.000984014
0.54578
0.740046
0.383925
0.503852
0.00103604
0.00209414
0.000857385
0.00233787
0.000895176
0.00181159
0.000757514
0.160988
0.377672
0.170895
0.246988
0.110447
0.12155
0.148523
0.116999
0.0530431
0.0723589
0.0450855
0.0885661
0.0220175
0.0335793
0.0278143
0.0347226
0.0159742
0.0148387
0.013971
0.0195904
0.0074194
0.00618542
0.00651171
0.00719829
0.00650116
0.00588516
0.00468523
0.00747517
0.00222951
0.00243966
0.00221027
0.00256279
0.00213616
0.00204902
0.00192036
0.00215019
0.00141198
0.00143214
0.00134552
0.00158393
6.21145
0.000442039
0.000443411
0.000477987
0.000466382
0.000480216
0.000444735
0.000444775
0.000443701
0.00048031
0.000480853
0.00046772
0.003796
0.000840954
0.00168977
0.0018793
0.00579091
0.000892622
0.00206147
0.660615
0.559899
80.1134
10.5341
0.863598
0.239347
5.57035
1.29261
0.251127
2.70984
1.16936
0.288974
20.0005
0.0501813
0.477303
3.69677
0.0679614
0.141043
0.924569
0.542268
0.174472
0.00295024
0.000603702
0.00158066
0.000669229
0.00714459
0.000623458
0.00186483
27.0915
1.68053
0.011081
0.0350407
0.60675
0.0175533
0.0798204
0.30716
0.26583
0.0912658
0.000883728
0.00053365
0.000695143
0.000572079
0.000920072
0.000552805
0.000715399
0.191009
0.179026
0.00361558
0.0056869
0.0860069
1.3799
0.00438059
0.048464
0.17914
0.1435
0.0575627
0.000584429
0.000515097
0.000549732
0.000543255
0.000602154
0.000537634
0.000568882
0.0330797
0.0217644
0.00158348
0.00198203
0.0160603
0.0484661
0.00164925
0.0281508
0.122211
0.0931482
0.0366619
74.5304
0.000535636
0.000505115
0.000528294
0.000532738
0.000555513
0.000529963
0.000549621
0.0161384
0.059147
62.8348
0.0509172
0.019027
53.5381
0.0109155
0.0528191
49.0654
0.0279121
0.0190963
11.588
0.00588864
0.0178864
5.89208
0.0149927
0.00777841
4.44923
0.00283196
0.00934405
3.37047
0.00725101
0.00342881
2.74565
0.00154734
0.00479715
1.56817
0.00398211
0.00187514
1.09446
0.00428054
0.00495831
0.63388
0.00427153
0.00496588
0.172006
0.00192218
0.0026019
0.737469
0.00212125
0.00236144
0.234681
0.00049206
0.000521598
0.000547996
0.000521216
0.000542988
0.000503047
0.000497884
0.000545111
0.000522773
0.000542188
0.000522366
0.000491795
0.000521258
0.000542725
0.000521112
0.000540759
0.000497531
0.00049428
0.000541947
0.000522569
0.000539872
0.000522216
0.00959803
0.000887447
0.000725069
0.000768226
0.000698561
0.00240479
4.75335
0.00363475
19.4532
0.00302503
0.0022715
0.00364979
0.013182
0.00168407
0.000733613
0.000689005
0.000682468
0.000670084
584.976
0.00362212
0.801869
0.000711099
0.000688969
0.000674628
0.000744341
0.00169007
8.41722
0.00223395
0.00240374
0.00172224
0.00111513
0.0108249
0.00120104
0.000658049
0.000640696
0.000651035
0.000634223
0.000949426
0.0042067
0.000763524
0.00064033
0.000622664
0.000632886
0.000616692
0.000679034
0.00176313
0.000636747
0.000623525
0.000608091
0.000618555
0.000604563
0.00674631
0.00103124
0.00454863
0.000636945
0.000649115
0.000623977
0.000634655
0.000614104
0.00118303
0.000600545
0.000608781
0.000598581
0.000604176
0.00059591
0.00383908
0.000644255
0.00274096
0.000610802
0.000621257
0.000605171
0.000614042
0.000587503
0.00085471
0.000578318
0.000598624
0.000592232
0.000595534
0.000590354
0.00178483
0.000590628
0.00135818
0.000598584
0.000605912
0.000595561
0.000601197
0.000571224
0.000729251
0.000566473
0.000592266
0.000588277
0.000590359
0.000587127
0.00124365
0.000577768
0.000976147
0.000594063
0.000596968
0.000592276
0.000594448
0.000562257
0.0006521
0.000558714
0.000588641
0.000586114
0.000587328
0.000585339
0.000752192
0.000563071
0.000666065
0.000589777
0.000592009
0.000588818
0.000590542
0.000556156
0.00059825
0.000554258
0.000586416
0.000584937
0.000585601
0.000584487
0.0329771
0.0418818
0.0642099
0.137149
0.127837
0.0228358
0.0261077
0.531485
0.442552
0.160231
0.0394016
0.170426
0.0777605
0.684539
0.379215
0.174416
0.0452323
0.368394
2.16506
0.0790958
0.0630905
0.0689083
8.30522
0.0523082
0.111559
0.878648
0.119198
0.0690901
0.176791
0.203374
0.219543
3.16361
0.148173
0.0701514
11.5546
0.0911195
0.126012
0.0631896
0.248027
0.0511113
0.026412
0.283896
0.0252404
0.169968
0.0701245
0.0886189
0.0643656
0.253094
0.37367
0.0244207
0.0203459
15.5255
0.0192131
0.467418
0.0322897
0.100378
0.0796522
37.2584
0.0974681
0.0707974
0.0346518
0.0371741
0.0947666
36.1484
0.0741154
0.107496
0.0387756
0.0765777
0.153354
0.239015
201.267
0.0406242
0.287937
0.107199
0.151367
0.0989626
1.00837
0.712584
0.253949
74.3475
0.247666
0.21346
1.65793
98.8246
0.229292
0.214359
0.647648
1.28478
37.3153
0.0269139
0.0157826
0.182754
0.0208599
12.8458
0.0151141
0.0249824
0.0438807
0.424132
13.5962
0.0312723
0.0947575
0.0213807
0.140483
0.231807
0.014124
3.14241
0.0142799
0.0185543
0.0469534
0.112022
0.0769208
42.5211
0.0418794
0.133691
0.084704
0.0959278
0.296726
50.0186
0.205381
0.207205
0.140118
0.144289
0.813533
0.184193
0.563292
4.68409
0.176479
0.0852158
28.0851
0.371574
1.99575
0.224544
0.163478
0.0713108
7.43313
0.115607
0.276477
0.203863
0.479996
0.121086
0.146076
0.456204
0.287946
0.0684382
0.0867981
0.105731
0.0989228
0.291614
0.18391
42.7236
0.125852
0.262169
0.148767
0.0962781
0.298427
42.5249
0.164082
0.263726
0.112274
0.148343
0.0271566
0.0511919
0.0291138
0.115057
0.397192
0.325137
86.8584
0.0213648
17.9564
0.0266014
0.024771
11.8173
0.426277
0.44739
402.935
0.0502615
0.0366426
0.0308281
35.4935
0.565004
5.74918
0.452414
60.0986
109.962
0.0264516
0.0333414
1.21932
0.026989
12.0839
22.3582
0.0358659
0.0666512
0.0371502
0.273492
0.0268202
0.191213
0.052705
0.0582358
0.290058
0.117354
52.6413
0.0773859
0.28684
0.0938951
0.0547424
0.387522
53.2574
0.109545
0.287364
0.0793094
0.0876655
0.763424
16.8953
0.0124217
0.0175938
0.995912
7.22283
0.0136385
3.13392
0.137615
1.31126
0.720319
4.35867
0.493114
0.997037
0.634516
0.00937155
0.178122
0.0101714
0.795976
0.0105985
0.185686
3.30266
0.629781
5.37373
35.9744
0.711942
2.89714
0.747618
0.0184435
1.074
0.0158945
6.15423
0.014918
0.373485
3.61763
1.03546
0.705392
0.721795
0.89668
1.50346
0.572973
0.0109011
0.0120162
0.158109
0.0116629
0.16449
0.263525
0.0607078
0.0473726
0.173925
0.314311
0.0538464
0.0658305
0.353468
0.0505614
0.162771
0.0338048
0.311947
0.0444256
0.343672
0.0473613
0.0868192
0.439311
0.127386
49.8474
0.0970587
0.491804
0.13123
0.0724063
0.44799
50.0094
0.0933878
0.484381
0.0693348
0.109429
0.10028
0.137808
0.0110211
0.0113133
0.0849217
0.138514
0.011418
0.451922
0.307584
0.145703
1.12681
0.363536
0.982458
0.187544
0.0871233
0.00926469
0.0395769
0.00690337
0.0746622
0.00974871
0.048535
0.492756
1.15071
0.711828
0.815693
1.3587
0.375789
0.108132
0.0121683
0.136669
0.0107076
0.145701
0.0120367
0.0983878
0.469687
1.67128
0.250179
1.42798
0.199079
0.363938
0.0899092
0.0075993
0.00981484
0.0591297
0.0104755
0.0530252
0.0823041
0.0407746
0.0317901
0.16012
0.308385
0.0352536
0.0442498
0.358498
0.0376139
0.179913
0.0412712
0.483534
0.0361739
0.383119
0.0525758
0.0573209
0.60541
0.0856225
49.5535
0.0640142
0.70006
0.0842302
0.0506727
0.880161
49.3488
0.0804308
0.72234
0.0708508
0.0722356
0.0292183
0.0316128
0.00474647
0.00552582
0.0268716
0.0407148
0.00535684
0.174827
0.28725
0.0801768
1.92132
0.105836
1.57835
0.10199
0.017933
0.00406333
0.0139739
0.00408457
0.0158913
0.00446459
0.0158373
0.23407
1.88203
0.3291
0.18169
2.28332
0.172158
0.0271681
0.00626683
0.0447233
0.00588826
0.0435405
0.00594136
0.0285264
0.162008
1.60491
0.125908
2.31504
0.11422
0.152093
0.0196474
0.00444332
0.00491359
0.0188421
0.00484761
0.0180957
0.0214276
0.0588953
0.057479
0.250834
0.523026
0.0592743
0.0727468
0.513083
0.0709018
0.22781
0.0324795
0.724659
0.0618753
0.49062
0.04265
0.074949
0.921665
0.106183
25.0308
0.0965752
0.961936
0.100035
0.0920854
0.939131
24.7223
0.0769735
0.945794
0.0567707
0.122551
0.111886
0.393749
0.041388
1.81866
0.0896968
2.43766
0.0543129
0.121958
1.66208
0.130629
0.122699
1.83413
0.157334
0.122103
2.24664
0.0785682
1.82708
0.0597917
0.138969
0.00836585
0.0101195
0.166087
0.717979
0.00625994
0.0134334
0.76646
0.00728191
0.172533
0.00441446
0.827296
0.00556619
0.789466
0.00560829
0.0110332
0.933377
0.0264779
22.0355
0.0180589
0.98603
0.0148015
0.00955352
1.04829
22.0258
0.00957952
1.01375
0.00725114
0.0127683
0.0200596
0.504397
0.0133214
2.82104
0.0158613
2.36655
0.0182061
0.0279685
2.3036
0.06398
0.0453015
2.77876
0.0417209
0.0227562
3.33539
0.0292465
2.90801
0.0203056
0.0337587
0.00344732
0.00311357
0.193899
0.811255
0.00285478
0.00381986
0.941619
0.00309523
0.191277
0.00235968
0.983658
0.00258757
0.933491
0.00278429
0.00420365
1.0253
0.00602417
19.7915
0.00475554
1.17553
0.00518115
0.00374311
1.21963
19.5752
0.00397472
1.16252
0.00331283
0.00457835
0.0132381
0.782655
0.0068616
3.65999
0.0106398
3.41671
0.00952858
0.0184443
3.31713
0.0301588
0.0223208
3.93224
0.0280637
0.0141983
4.37702
0.0129038
3.92173
0.0103748
0.0190706
0.00227844
0.00211646
0.213862
0.970851
0.00195765
0.00248392
1.0437
0.00267241
1.20352
0.00351326
17.4414
0.00294113
1.31139
0.00315738
0.00247913
1.37855
17.4237
0.00240322
1.32785
0.00205923
0.00294856
0.00864943
4.35426
0.0133475
0.0103474
5.47863
0.0128228
0.00836231
6.44606
0.00629971
5.50249
0.00530986
0.0125821
0.00127463
1.33887
0.00141583
14.6798
0.00129887
1.46427
0.00138474
0.00128781
1.49296
14.608
0.00148139
1.47262
0.00133519
0.00140546
0.00475931
6.351
0.00576955
0.00494163
8.98966
0.00607791
0.00435605
10.6012
0.0052322
9.05554
0.00385755
0.00580695
0.000642307
1.48612
0.00104438
11.3252
0.000967283
1.49491
0.00066052
0.000682143
1.95267
10.3135
0.000649373
1.41438
0.000628905
0.000707997
0.00360951
10.6752
0.0052153
0.00389614
9.45866
0.00428736
0.0035532
11.6536
0.00252643
9.12945
0.00219809
0.00406361
1.88678
0.160502
0.120448
16.5986
2.47406
0.113424
0.134379
0.764412
1.46679
0.141922
0.472999
0.0891526
13.2257
2.67438
53.8035
1.61111
0.119243
0.485675
0.1359
0.621499
6.76844
1.48603
1.43698
0.809986
0.339833
0.887708
0.118119
0.216607
142.983
12.0695
0.63163
44.3273
0.0932371
0.290978
3.7303
4.40855
8.67696
0.0930808
0.124895
1.65753
0.180518
3.13607
0.60871
0.108712
0.122823
0.777716
0.681869
0.288016
0.186523
0.7267
0.379806
0.102748
0.163943
0.58443
0.0903302
0.798844
1.45673
0.486598
0.247482
0.254537
15.0725
0.163291
0.627255
0.955692
73.283
0.883106
23.3847
0.0933597
0.0847692
0.0699344
10.343
10.1602
0.0726022
0.0697188
0.0551754
3.32877
192.307
4.08801
1.85781
40.0034
0.0684853
1.11912
0.0485771
0.0783064
0.550858
129.734
1.00593
8.53102
1.62519
11.9353
0.0559937
0.0397779
0.283661
0.0583946
2.09668
0.449991
0.474373
0.257088
0.187748
0.660167
0.475484
0.205342
0.184667
0.483715
0.371847
0.176917
6.96995
0.096124
0.559106
0.0740594
2.38802
0.779309
63.0102
0.842875
6.87041
0.340124
0.0419718
0.0516241
1.00049
0.0449095
0.368304
2.26644
0.775452
3.61756
0.738026
6.60464
0.797112
0.0433673
0.0504752
20.5933
2.44671
0.037204
4.95447
5.71102
56.3124
1.38556
0.625787
0.0304175
1.18409
0.0217589
9.55928
0.027613
0.308953
2.91547
1.07788
7.9343
1.07895
0.544103
0.043038
0.243331
0.0246187
1.97471
0.0316149
0.215811
2.34383
0.549214
1.26517
0.936687
0.404663
0.0187987
0.019315
0.116948
0.0236126
0.246413
0.17948
0.257942
0.144347
0.0955034
0.375425
0.231446
0.112255
0.0807599
0.244823
0.0891094
0.0127695
0.72935
0.00819815
0.249314
0.00587292
0.40209
0.399169
3.10165
0.583765
1.5436
0.0616554
0.00403154
0.00639585
0.17587
0.0045379
0.0498833
0.268294
0.357161
0.885491
0.35698
1.39129
0.185641
0.951194
0.0159816
0.0184108
0.295554
0.250656
0.0155501
0.570078
0.735283
1.22142
0.531537
0.143346
0.0119944
0.147372
0.0108784
0.217057
0.0119991
0.128062
0.668695
0.489069
1.12856
0.382651
0.163693
0.0184225
0.0919553
0.0153397
0.200904
0.0157444
0.0754312
0.579467
0.257609
0.643616
0.322854
0.215046
0.115528
0.122713
0.235164
0.188704
0.0722939
0.101425
0.138734
0.290211
0.802981
0.339039
0.514059
0.257387
0.489669
0.187514
0.740006
0.0859474
0.135414
0.0108383
0.0120521
0.100905
0.0915479
0.0110287
0.465606
0.288212
0.391168
0.260957
0.0536295
0.0103897
0.0618684
0.00818404
0.0826644
0.0105994
0.0417324
0.348603
0.245965
0.613564
0.18731
0.333992
0.150548
0.243957
0.170944
0.0695964
0.0588511
0.0467131
0.111403
0.05232
0.0358505
0.0390193
0.0364157
0.0879498
0.384158
0.149508
0.179683
0.0638954
0.0611003
0.041313
0.115464
0.145936
0.120057
0.169425
0.126245
0.156453
0.141503
0.20887
0.107806
0.142902
0.0905102
0.107512
0.0952819
0.0383162
0.0476883
48.6971
0.042396
0.046001
0.0603731
47.9158
0.0381192
0.0600603
0.0500089
0.0405884
0.0590673
0.049943
0.0422005
0.06463
0.0589473
0.05644
0.0650701
0.116315
0.0873979
0.140692
0.108016
0.113242
0.0928589
0.109796
0.0804341
0.116928
0.0696139
0.107074
0.0756836
0.00516766
0.0147217
42.7507
0.003498
0.0261305
0.00506123
42.6255
0.00261569
0.00344736
0.00386335
0.00591257
0.0443033
0.0316872
0.0084999
0.00584895
0.00688344
0.00444415
0.00870288
0.0489945
0.0334237
0.0369103
0.0451531
0.0566661
0.0680636
0.0915551
0.0352851
0.0526758
0.0254281
0.0400073
0.0319352
0.00210647
0.00218385
38.0439
0.0015991
0.00315718
0.00188537
37.6273
0.00104464
0.00147098
0.00121921
0.00231398
0.0055099
0.00360926
0.00304124
0.00204962
0.00143124
0.00127767
0.00260138
0.0208718
0.0143152
0.0186971
0.0192305
0.0231268
0.0233787
0.0298309
0.019086
0.0222135
0.0119528
0.0196992
0.0168599
0.00195581
0.0012199
33.4545
0.00151317
0.00152752
0.00192282
33.3786
0.0010072
0.00148532
0.00121465
0.00213748
0.00206234
0.00164916
0.00278719
0.00210508
0.00151969
0.00129012
0.00277544
0.0126018
0.00671785
0.0131148
0.00773506
0.0150272
0.0113472
0.0194878
0.00923737
0.0123577
0.00745864
0.00803651
0.00850754
0.000700651
0.000664381
28.5381
0.000643226
0.000729799
0.000707079
28.3784
0.000684451
0.000649191
0.000767935
0.000717148
0.000795651
0.000749371
0.000754725
0.000723907
0.000876895
0.000796073
0.000762681
0.00712084
0.00588784
0.00625279
0.00708707
0.00755026
0.00654977
0.0074402
0.00550066
0.007246
0.00444321
0.00719067
0.0051232
0.000530374
0.000579125
13.8674
0.000507267
0.000628716
0.000529413
12.1575
0.000669097
0.000732254
0.000526633
0.000538103
0.000686198
0.00064444
0.000559688
0.000536689
0.000548621
0.000532912
0.000555828
0.00579313
0.00257867
0.00428639
0.00281233
0.00665109
0.00534384
0.00767336
0.00435395
0.00594536
0.00295661
0.00289063
0.0042021
0.000523397
0.00071183
9.09652
0.000851023
0.000507233
0.000504908
9.03701
0.000672723
0.000881072
0.000483503
0.000531068
0.000525148
0.000512714
0.000550278
0.000511476
0.000507542
0.000490248
0.000527793
0.00256238
0.00202826
0.00241182
0.00212805
0.00222993
0.00265737
0.0026038
0.00221004
0.0026059
0.00203642
0.00211747
0.00271715
0.000474744
0.000475569
8.20086
0.000475883
0.000478657
0.000473378
7.70154
0.000471204
0.000471282
0.000471116
0.000481679
0.000503201
0.00048551
0.000499903
0.000480258
0.000496801
0.000478013
0.000498443
0.00191946
0.00146273
0.00173757
0.00163435
0.00211264
0.00196007
0.00211924
0.00189521
0.00188403
0.00132946
0.00163111
0.00161207
0.000466734
0.000489935
6.08713
0.000470745
0.000469993
0.000465558
6.26182
0.000473095
0.00047507
0.000465034
0.000473473
0.00049554
0.000476805
0.000492717
0.000472231
0.000491581
0.000471855
0.000491399
0.00123975
0.0010693
0.00122721
0.000926059
0.00146428
0.00129233
0.00159977
0.00114371
0.00127816
0.00074533
0.000918959
0.000974442
0.109069
0.224868
0.491388
0.0939046
0.882344
0.099106
0.395614
0.0277719
1.4203
0.0498584
0.0496116
0.0813502
0.0336458
5.17214
0.0260002
0.0168978
0.26806
0.327719
0.179333
40.9972
0.954282
2.07043
0.114978
4.3129
0.13459
0.0486894
0.467568
1.1484
6.30421
14.5513
8.14102
0.475904
29.5825
7.73987
0.546152
37.1098
0.486182
2.99646
8.28964
0.347237
0.398324
0.0938477
0.352473
0.0950095
0.461978
0.355162
0.333762
0.0343013
0.266012
0.0866585
0.0230638
2.68548
0.0894099
1.21264
0.0484688
0.247622
0.0360044
0.0176215
0.401885
0.712493
0.027222
0.233479
0.0251439
0.0260709
0.266893
24.086
0.809277
0.955464
11.4846
10.2966
0.880398
0.477794
1.16282
4.61307
0.811441
0.472235
0.24449
1.07905
0.973278
0.216604
0.186389
0.0280481
0.140501
0.198172
0.028418
0.177847
0.138618
0.0275839
0.166021
0.0275048
10.6819
0.0819058
2.02079
0.0492104
3.62548
0.0636062
5.92085
9.9418
0.639332
0.179668
0.085847
0.365181
0.0579182
0.18429
0.0828347
0.348026
0.129804
0.331126
0.495724
0.105647
0.123365
0.022676
0.0941195
0.140554
0.0168142
0.112142
0.0875434
0.014638
0.100863
0.0152134
109.727
5.11815
2.25664
9.19864
0.00916171
0.253329
0.00972952
0.419501
0.0133789
2.00862
74.1457
1.18273
2.0385
12.2906
40.1885
0.0290753
0.032458
0.0176348
9.08564
473.945
0.50449
26.8875
0.0137428
0.0322232
2.59412
0.0199989
2.68529
4.83973
167.849
0.492721
1.21507
15.6003
0.0712075
0.190515
0.227667
0.0641799
0.0765113
0.0139493
0.102137
0.0840148
92.4767
0.0127677
0.0690143
80.7678
0.093676
0.00869121
91.0515
0.0625946
0.0107951
2.9243
1.07242
0.613939
11.5178
0.134756
0.00334583
0.0304513
0.0031859
0.061295
0.00398576
0.0650865
2.49696
0.246014
0.545559
0.568627
0.398118
0.0074705
1.38507
0.00539883
1.83102
0.00526745
0.275979
4.02741
4.62036
0.014383
15.0689
1.0313
0.197902
0.00356678
0.00462346
0.0798624
0.00469045
0.0893282
0.209737
3.30109
0.0124071
0.141992
0.693871
0.647971
0.0450991
0.131758
0.136384
0.039456
0.0486923
79.4171
0.00816986
0.01347
0.0543186
70.9243
0.00741918
0.0445206
59.0789
0.0121183
0.00543825
69.6515
0.0405791
0.00642408
0.255192
0.578087
0.257021
0.422671
0.0228595
0.00114585
0.00714843
0.00101286
0.00861404
0.00116767
0.0176538
0.213315
0.0805243
0.159599
0.111698
0.0451134
0.00206562
0.0497558
0.00138846
0.0679379
0.00167625
0.0170394
0.313108
0.103484
0.00539121
0.525187
0.011614
0.0298017
0.00100331
0.00102464
0.0138277
0.00117174
0.0223166
0.00772244
0.26254
0.00474507
0.0904469
0.134115
0.00886502
0.0240857
0.0619297
63.9556
0.0836814
72.9919
0.0208432
0.0282524
57.5313
0.00476352
0.00370412
0.0368132
16.2486
0.00364604
0.0225416
13.9846
0.00335639
0.0022168
15.8881
0.0198491
0.00285678
0.0876333
0.0729029
0.0493555
0.0925398
0.101185
0.0638379
0.0728084
0.0670993
0.0138492
0.000852284
0.00566395
0.00110649
0.0155401
0.00145278
0.00789152
0.120615
0.0330302
0.00933614
0.107914
0.008067
0.00887245
0.00127203
0.00105303
0.00444407
0.00150235
0.00770649
0.00712213
0.135109
0.00683759
0.00520776
0.0781527
0.0074808
0.0158805
0.0571239
50.7263
0.0529129
52.9582
0.0203709
0.0150867
13.7493
0.00201399
0.00219192
0.0173367
11.5178
0.00166861
0.0142719
11.4927
0.00190734
0.00159264
11.4262
0.0146972
0.00153609
0.0138041
0.0521228
0.00981493
0.0702843
0.016515
0.00808789
0.0103311
0.0129228
0.0139056
0.00384828
0.00497298
0.0871866
0.00112083
0.0186734
0.00410863
0.000808687
0.0149596
0.000985472
0.00968077
0.0192956
8.8968
0.0249786
11.2839
0.00790111
0.00825501
11.0057
0.0014457
0.00141702
0.0132907
6.4155
0.00092396
0.0070967
4.90813
0.00127604
0.000745905
6.21686
0.00610515
0.000841933
0.00418515
0.00638138
0.00330499
0.01003
0.00340907
0.00146652
0.00279259
0.00148478
0.00416822
0.000753515
0.00136534
0.0114671
0.000675767
0.00485983
0.00996393
3.48136
0.0134348
4.24626
0.00384196
0.00427082
2.79644
0.000653182
0.000842601
0.00635094
2.73508
0.000611395
0.00373266
0.00220854
0.0030268
0.002534
0.00382412
0.0015914
0.00302855
0.0017352
0.00266761
0.00558481
1.71511
0.00654139
2.65261
0.00230179
0.000746215
0.000807231
0.000764814
0.000814165
0.000771503
0.000899926
0.000772908
0.000952069
0.00137899
0.0034677
0.678147
0.00373997
1.05747
0.00108696
0.000557851
0.000695774
0.000564182
0.000706846
0.000554304
0.000554063
2.21704
0.00055983
0.000563369
0.00428365
0.00293488
0.765892
0.00420805
0.164778
0.00277359
0.000572836
0.000529738
2.14289
0.000557228
0.000542519
0.564819
0.000546815
0.000512936
0.0858028
0.000533517
0.594731
0.000529161
0.00243594
0.00191668
0.139448
0.00264639
0.246527
0.00174006
0.00236741
2.20582
0.0713691
0.00182225
5.29016
0.00181008
0.00249792
0.00215666
0.00269843
29.447
0.002964
0.00232012
0.00237492
0.0743238
54.2057
0.00173083
6.27613
0.0018268
0.00250537
0.00134962
179.207
0.0460206
0.00198132
0.00363343
0.00185486
0.0016222
4.85292
0.00111926
0.00146512
0.00145462
0.00131762
0.0488513
0.0017237
0.00177768
0.00128708
0.00120013
0.0277925
0.00162267
0.0012627
0.00152394
0.00114107
0.0238557
0.00135945
0.00141663
0.00105586
0.000971941
0.0274177
0.00125752
20.6657
0.00100571
0.00122907
0.00132352
0.0100962
0.67786
0.00101622
12.327
0.00105118
0.00122629
0.00247406
0.00280284
0.00399763
0.00302447
0.00422805
0.00444512
0.00720106
0.00888477
0.0155102
0.0194734
0.00899189
0.0151139
0.0232598
0.0327167
0.0198219
0.0172201
0.0183132
0.0265829
0.0322637
0.0260538
0.0294769
0.0035817
0.00337692
0.00508478
0.00446356
0.00636519
0.00543524
0.00872329
0.00115338
0.00213895
0.000983093
0.00279221
0.00122793
0.00212416
0.00103533
0.00120626
0.00257805
0.001009
0.00258499
0.00117121
0.00205248
0.000985037
0.0222924
0.000380247
0.0242929
0.000398767
0.0907207
0.00039366
0.10489
0.00224982
0.090987
0.00282006
0.517535
0.00100776
0.480274
0.00117232
0.0281895
0.000379563
0.0296411
0.000396485
0.0441277
0.000393095
0.0463393
0.00260244
0.0761111
0.00190663
0.452029
0.00106579
0.344033
0.000780728
2.27959
2.43918
232.876
0.00140214
0.00172115
0.00130319
0.00221464
0.00161583
0.00194679
0.00155993
0.00496925
0.00634079
0.00973743
0.0141233
0.00534685
0.00662351
0.0105328
2.36951
0.341326
0.131408
0.190074
0.48257
1.62662
0.191144
1.26425
0.274296
0.364831
1.79857
92.5004
0.386607
12.3179
0.354703
0.37831
29.2961
0.394816
15.6224
23.4707
0.436003
0.703949
8.2479
0.750488
0.000662524
0.00130213
0.000618084
0.00141613
0.000627134
0.00125576
0.000597988
2.55237
3.30589
0.457606
0.876279
2.44037
3.46947
0.946634
0.000490337
0.0006078
0.000431218
0.000885633
0.000494295
0.000611483
0.000445638
0.766568
0.631386
0.663974
1.32399
0.55398
0.919052
1.39994
0.000417168
0.000479568
0.000408336
0.00054169
0.000434364
0.000489998
0.000427092
0.00427428
0.00781756
1.59506
5.00364
0.00816202
0.00455453
6.60833
0.00332522
0.00925323
1.17799
9.06561
0.00711044
0.00364901
8.12438
0.114351
0.000398004
0.000444356
0.000418167
6.35259
0.000418765
0.000432033
0.000548692
0.000405577
0.000400786
0.000460143
0.000433576
0.00042147
0.445631
0.090527
0.0302276
0.0721324
0.0649904
0.0559203
4.62339
0.130329
0.286979
1.93508
1.51463
0.157764
0.466851
0.174526
0.242072
0.0596357
0.0314861
0.0527703
0.070573
0.293583
0.0534481
0.00949382
0.023373
0.0229001
0.00808269
0.00839256
0.0205489
0.0077682
0.180084
0.171026
0.0348675
0.109658
0.126219
0.264774
0.0490625
0.0592448
0.0568455
0.0035407
0.00937855
0.0361105
0.0910645
0.00442702
0.000819572
0.000485775
0.000651093
0.000533224
0.000885351
0.000509086
0.000685948
0.0196275
0.0175296
0.00207001
0.00251276
0.0191758
0.0242284
0.00236546
0.000539226
0.000467858
0.000504734
0.000498498
0.000565446
0.000490416
0.000528174
0.00068973
0.00122815
0.000591206
0.00140393
0.000636709
0.00106795
0.000564653
0.000491659
0.000457883
0.000484076
0.000484492
0.000514599
0.0004802
0.000507239
11.5675
29.5012
26.5004
23.3886
0.000593082
0.00115798
0.000574313
0.00102986
0.000555905
0.000989869
0.000549189
0.000466855
0.000455355
0.000462566
0.000479563
0.000490607
0.000478242
0.000485955
6.69954
3.82293
3.67281
4.28753
0.0004981
0.000602835
0.000461123
0.000760616
0.000501779
0.000578976
0.000478171
0.000457879
0.00045075
0.000455466
0.000474982
0.000481634
0.000474086
0.000479164
2.617
1.6233
1.80526
1.8737
0.000452887
0.000498074
0.000447407
0.000536504
0.000473148
0.000503776
0.000469596
0.571898
0.385297
0.402152
0.529373
0.176115
0.131968
0.135212
0.170239
0.199686
0.161789
0.139841
0.207904
0.0365068
0.0363023
0.0368199
0.0362097
0.0366415
0.0313545
0.0282848
0.0374783
0.0219632
0.0173758
0.0182813
0.0221593
0.000826541
0.00065599
0.000476894
0.000609706
0.000477128
0.00057497
1.64789
40.8569
0.00669784
0.0125513
0.00430171
0.0121412
0.00400157
0.00826669
0.00275347
5.42933
1.79093
0.362048
0.800402
1.05938
79.0078
0.667003
54.9131
34.0756
0.00276242
0.00695969
0.00261881
0.00507319
0.00170671
0.00453065
0.0015245
11.8982
13.5906
0.00189021
0.00361236
0.00134991
0.00318924
0.00111158
0.00238473
0.000895552
5.98029
21.398
41.5672
6.94902
0.000978889
0.00200791
0.00080817
0.00172366
0.000722322
0.00137178
0.000651905
2.54687
8.67153
9.99335
2.55311
0.000729449
0.00135239
0.000649529
0.00113278
0.00060551
0.000960373
0.000577393
1.45855
5.73319
4.41349
1.75283
0.0080362
0.00579441
0.00153562
0.000898985
0.00625539
0.0145063
0.00153823
0.988497
1.92759
1.75858
1.0276
0.000515108
0.000504055
0.000510588
0.000530869
0.000538462
0.000530656
0.000535295
0.00151515
0.00438699
0.000603325
0.000834743
0.00145073
0.00525433
0.000612975
0.722083
1.49957
1.12269
0.907793
0.000506448
0.000500382
0.000504299
0.00052806
0.000531702
0.000527836
0.000530464
0.000700583
0.00092791
0.000532783
0.000549357
0.000687438
0.000971084
0.000542219
0.249452
0.612941
0.603388
0.270733
0.000501757
0.00049817
0.000500704
0.000526302
0.00052842
0.000526177
0.000527844
0.00062332
0.000579801
0.000511817
0.000524006
0.000609626
0.000587459
0.000522025
0.160481
0.446171
0.383562
0.171721
0.000499152
0.000496841
0.000498486
0.00052524
0.00052666
0.00052518
0.000526377
0.000535377
0.000533849
0.000499492
0.000512875
0.000527843
0.00054147
0.000511866
0.0866448
0.145986
0.125946
0.102036
0.0653705
0.0996758
0.0914324
0.0713464
0.035312
0.0660913
0.0665149
0.0398831
0.00181003
0.129112
0.00170575
0.00160039
0.00150143
0.0148934
0.00109453
0.000968798
0.000889905
0.00186763
0.000973668
0.00125584
0.000492643
0.000493528
0.000521301
0.000539866
0.000521116
0.000522177
0.000493592
0.000494011
0.000493719
0.000539094
0.00052241
0.000522446
0.000521968
0.0809967
0.20264
0.210759
0.067004
0.129358
73.3141
0.210231
0.0881664
0.242495
0.126488
0.000865917
0.00896155
0.000634757
0.000680893
0.000620762
0.000647654
0.00122921
0.128458
0.00281492
0.0013862
0.00195274
0.00424751
0.000637148
0.00127988
0.000607195
0.000626112
0.000604491
0.000620449
0.00146283
0.0307426
0.00103046
7.77544
0.000951262
0.00104756
0.000724269
0.000573091
0.000618379
0.000597849
0.000608776
0.000595963
0.000603422
0.0738533
0.00136845
0.000721105
0.0105455
0.000838955
0.00078257
0.000694697
0.000640799
0.000556183
0.000600244
0.000587276
0.000588915
0.000586741
0.000588012
0.000553494
0.000575518
0.00055252
0.000585434
0.00058462
0.000584964
0.000584383
0.000593151
0.000553497
0.000572814
0.00058606
0.000587249
0.000585859
0.000586815
0.00055246
0.000559263
0.000551998
0.000585217
0.000584773
0.000585432
0.00058465
0.000567782
0.000552295
0.000569074
0.00058556
0.00058649
0.000585488
0.000586304
0.000552202
0.000555948
0.000551879
0.000585752
0.0005852
0.000585554
0.000585164
0.000554688
0.000552186
0.000553657
0.000585489
0.000586471
0.000585428
0.000586325
0.000552183
0.000553055
0.00055202
0.000585945
0.000585752
0.000585838
0.000585726
0.000669659
0.000659495
0.000667416
0.000665489
0.000667852
0.000665026
0.000667733
0.000642761
0.000644917
0.000640558
0.000663947
0.000664819
0.000663039
0.000664746
0.0144489
0.00646269
0.0129113
0.0173264
0.00797635
0.0277195
0.0107935
0.0180851
0.0161832
0.0137042
0.152839
0.0106799
0.0650225
0.0251419
0.240164
0.341492
0.49069
1.89438
1.52054
0.124361
0.0212221
0.0133855
0.0201605
0.124371
0.0121929
0.0225174
0.0445789
1.73339
1.48845
35.6704
3.37341
0.0474794
0.0189422
0.0588844
0.226147
0.0235478
0.0333559
0.251715
0.0790083
0.0775328
0.0563492
0.143656
0.0462354
0.171228
0.127283
0.0400051
0.0187001
0.118083
0.0324207
0.0292491
0.0213482
0.611872
2.12014
0.482484
0.515037
3.80288
3.35154
0.0629079
0.0812105
0.612834
0.0835725
0.784083
1.75453
0.146187
0.068445
0.0428435
0.0934318
0.0783624
0.152504
0.0563353
0.169375
0.0476889
0.406761
0.044148
0.0440134
0.494023
0.168603
0.17369
0.52752
0.45834
39.5175
0.515125
0.433938
0.183774
0.175371
0.493244
33.8463
0.309241
0.562899
0.153528
0.367923
1.4755
3.51432
30.3349
1.84619
11.297
1.09385
1.38252
8.1809
1.16408
1.67836
0.316592
0.392308
21.5344
0.563205
0.00976979
0.0250151
0.00427847
0.00656473
0.010414
0.00458032
0.0194836
0.0786261
2.78196
0.0587544
0.364337
0.0905332
0.0594988
1.5539
0.397806
0.511581
2.75342
0.228551
17.6765
0.824645
0.0292112
0.0171723
0.0314394
0.0435664
0.0198995
0.0248688
0.052071
0.0709737
0.0697221
0.0663362
0.143822
0.0535343
0.102822
0.0919278
0.152726
0.630611
0.333989
45.1556
0.167791
0.64613
0.291492
0.334622
1.19804
50.7822
0.565842
1.16726
0.365091
0.507788
0.469673
1.13022
0.341039
1.04532
0.079019
0.567969
0.0663352
1.54725
0.0778113
0.474668
1.31773
1.55023
3.84881
0.33966
7.54691
0.154584
328.751
0.191141
1.66899
4.26017
3.87606
0.0084354
0.0232406
0.00911566
0.0209422
0.00924105
0.0227936
0.00957806
0.00858024
0.0797286
0.010591
0.0265388
0.0099467
0.0301781
0.00834751
0.00872643
0.0218158
0.0202807
0.00924068
0.0228885
0.00999471
0.00889945
0.0741677
0.0614101
0.0823825
0.138151
0.0551185
0.0841107
0.122999
0.0706039
0.080166
0.0529521
0.207769
0.0509071
0.185456
0.0743912
0.320164
1.209
0.530419
43.8874
0.342563
1.01545
0.489144
0.307234
1.16811
38.8181
0.441777
1.11791
0.301036
0.456997
0.142496
0.352426
0.0442817
0.0569992
0.0440013
0.158987
0.221127
1.18979
0.12978
0.295001
0.181523
1.42079
0.280109
0.176145
1.97891
1.79488
2.64728
2.40657
0.0414861
0.0337116
0.065314
0.195084
0.0285259
0.0494534
0.195137
0.255716
1.19041
0.403012
37.8979
0.266338
1.24615
0.386759
0.286349
1.75113
47.7404
0.452459
1.59112
0.323565
0.418827
12.679
0.193129
1.15949
0.309893
0.778646
39.8486
0.27243
2.8452
3.16702
4.95627
4.41626
0.349291
1.85184
0.488699
47.0354
0.360849
1.87361
0.493742
0.304721
2.08699
45.2872
0.421703
1.89979
0.302523
0.432331
0.285046
10.9753
0.353386
6.02874
0.319234
5.19559
5.37449
7.61684
6.96174
0.304679
2.21745
0.42335
50.1989
0.301896
2.41328
0.428104
0.357903
2.76406
47.8528
0.504156
2.58182
0.403923
0.479057
0.359405
43.8558
0.649047
0.595449
8.03546
9.65652
12.6882
30.2858
9.69594
0.438885
2.8465
0.545852
46.4758
0.444126
2.95572
0.568819
0.312585
4.71988
23.2355
0.36085
4.38613
0.263949
0.412715
0.019063
0.0166461
0.00581464
0.00488963
0.0217404
0.0183989
0.00584032
3.96677
0.371385
2.51988
0.827114
2.81554
3.51251
0.745217
0.0187609
0.00589154
0.0143714
0.00486193
0.020458
0.00595028
0.015823
23.8368
13.793
29.0756
26.6464
14.633
0.0198129
0.00513584
0.0185991
0.00484637
0.02027
0.00591991
0.020733
7.15758
18.4552
3.85532
16.7626
3.53549
4.52244
0.0200035
0.00508775
0.00497771
0.0165766
0.00605691
0.0175409
0.0208515
0.204188
4.69666
0.293995
23.2354
0.211072
4.6459
0.2787
0.18704
4.36221
22.0745
0.236987
4.72128
0.176772
0.250965
0.00589436
0.00847394
0.00203574
0.00328401
0.00513114
0.00961417
0.00217044
1.62698
0.578866
0.750576
1.27103
1.07004
1.13408
1.19808
0.00433723
0.00154465
0.00337992
0.00143948
0.00384161
0.00163464
0.00386765
3.31213
18.5472
3.87279
3.60963
3.51703
18.0039
0.00686418
0.00346343
0.0117884
0.00238849
0.0108745
0.00230358
0.00789031
0.773505
16.1239
1.51169
17.727
0.859584
0.925543
0.00496164
0.00150351
0.00177668
0.00495705
0.00171699
0.00438716
0.00570274
0.154161
4.29102
0.202278
19.3999
0.152245
5.17559
0.203939
0.143312
4.95279
18.3871
0.168801
4.95238
0.129998
0.186626
0.00326801
0.00311413
0.00117123
0.00132442
0.00291249
0.00357278
0.00121592
1.50274
15.8995
1.60686
1.69238
1.51591
19.3076
0.00374124
0.00137536
0.0046568
0.00127101
0.00413928
0.00125338
0.00423069
0.340455
17.2002
0.365186
17.3278
0.340299
0.35821
0.00292315
0.000945567
0.00106073
0.00275877
0.00105552
0.00256979
0.003194
0.00210444
0.222856
0.00154928
1.10043
0.00180558
1.05668
0.00177816
0.114359
4.88296
0.159505
17.1248
0.122987
4.71058
0.147658
0.100572
5.81143
16.7789
0.115357
5.86888
0.0908949
0.127671
0.0076356
2.22678
0.0100582
5.0721
0.0183422
4.22933
0.00497064
0.338224
17.0208
0.366051
0.377257
0.339056
16.3265
0.24046
29.8167
0.12687
30.4643
0.110951
0.281564
0.00117038
0.0010907
0.247991
1.07261
0.0010754
0.00118958
1.18463
0.00117783
0.246927
0.00114103
1.22956
0.00107761
1.18767
0.00120235
0.0718706
5.68764
0.0928502
15.0375
0.0739047
6.76805
0.089601
0.0618981
6.54235
14.0529
0.0708945
6.52694
0.0577604
0.0758372
0.00394821
1.49782
0.0108796
9.008
0.0107595
6.64809
0.00360899
0.105614
29.3465
0.12132
0.123225
0.106094
109.332
0.127965
0.146918
0.10353
0.170661
0.000618521
0.000881859
0.152897
1.22563
0.00065351
0.000892749
1.25323
0.000652109
0.148388
0.000643721
1.5646
0.000683336
1.18013
0.000603943
0.0369573
6.53177
0.0567814
12.6958
0.0464399
8.59868
0.0446955
0.0186914
9.24046
9.67391
0.0285254
0.0244342
7.997
0.0213917
0.00325833
1.09936
0.00351416
7.03077
0.00614189
7.66179
0.00205809
0.0896171
0.144475
0.123235
0.0998599
0.0763481
0.0362217
0.0382728
0.0761725
18.1746
0.947638
0.684736
42.4922
0.404266
0.0326351
0.064751
0.0619676
0.0626992
0.0623676
0.30464
6.33521
0.464681
0.560249
5.05149
1.25819
0.645448
0.850972
0.384239
3.83884
10.7878
6.83064
1.716
2.57065
0.406718
6.64365
0.174753
412.593
0.223076
1.21025
0.0162028
0.166646
0.0147296
0.0361106
0.0169068
0.0519751
0.0123665
0.0188177
0.0889897
0.0199132
0.0330264
0.0536094
0.0168353
0.0270032
2.74281
0.515678
0.364394
4.69112
0.206599
0.0657253
0.203426
0.150737
0.13926
0.098271
0.311846
2.11692
0.691729
0.611265
2.6698
0.445037
4.24555
0.12851
0.167949
0.114613
1.29471
0.764745
1.68874
0.637605
0.553326
2.2979
0.154405
0.0225036
0.109363
0.0295871
0.110636
0.0308071
0.170457
1.49974
0.487981
0.541071
1.21712
42.3176
191.048
1.02656
0.451004
0.413327
1.19086
0.0393172
0.00272957
0.024243
0.00320363
0.0247152
0.00345039
0.0374329
0.934271
0.480376
0.424669
0.96111
40.8781
20.0027
8.9439
172.311
12.0901
0.132151
0.010968
0.0116961
0.0475636
0.0121799
0.118777
0.0551504
0.938538
0.513144
0.513188
0.988873
0.781845
0.406935
0.419754
0.75807
0.0282254
0.00302207
0.152797
0.00329681
0.0365078
0.00277256
0.0886327
0.0144706
0.0022741
0.00309138
0.0134726
0.00260733
0.00997173
0.0221401
26.1646
16.3209
40.214
8.91704
8.8961
158.264
0.0501865
0.0121229
0.0411866
0.00807194
0.0631202
0.0109023
0.0355967
13.1729
3.88534
13.4587
4.93857
0.0422266
0.00744705
0.00707372
0.0260839
0.00930473
0.0347884
0.0314697
0.722202
0.393075
0.399004
0.752434
0.692768
0.478479
0.450505
0.697321
0.00605902
0.00170838
0.00974286
0.00164122
0.00754367
0.00152933
0.00849023
11.1747
16.4353
0.00493831
0.00107269
0.00118548
0.00575392
0.00114813
0.00434477
0.00673989
5.87809
26.8454
4.6336
38.9119
0.026398
0.0369586
0.00598165
0.00681127
0.0271303
0.0324599
0.00595476
33.5046
30.4356
24.1433
0.0216413
0.00510409
0.0194059
0.00439521
0.0234846
0.00499535
0.0189406
6.60992
4.68805
4.44935
11.1976
0.02268
0.00626095
0.0218488
0.00462408
0.0280777
0.00552965
0.0184466
10.4183
4.19604
3.63687
4.56414
0.0193889
0.00412116
0.00380501
0.0141108
0.00461986
0.0173245
0.0158453
0.759655
0.514705
0.549761
0.733624
0.540984
45.1434
0.487397
0.552131
0.42323
0.00358379
0.00107048
0.00525596
0.00172657
0.00409686
0.00164152
0.0045711
3.64964
25.1872
4.31532
15.2679
0.00421361
0.00153308
0.00152726
0.00473358
0.00167544
0.0051972
0.00496242
4.28687
6.68701
3.55181
8.42385
0.0169706
0.0184774
0.00479154
0.0043938
0.0214155
0.0182036
0.00458779
4.18551
3.79411
4.27083
4.42453
0.0173221
0.00487013
0.0173038
0.00439982
0.0208054
0.00469258
0.0180563
3.22276
4.21174
2.24144
3.69227
0.015024
0.00412709
0.0128693
0.00312988
0.0164555
0.00421108
0.0118815
3.81116
1.57239
4.33273
1.74967
0.0155982
0.00417436
0.00318207
0.0123408
0.00435399
0.0168784
0.0120074
0.293729
0.408121
44.9267
0.386254
0.339257
0.236881
42.5997
0.321868
0.341216
0.206265
0.0012363
0.000765175
0.00423097
0.000589096
0.00346881
0.000572224
0.00134337
2.62611
6.02619
3.30276
3.88181
0.00115531
0.000533162
0.000560326
0.00106001
0.00054614
0.000991349
0.00124684
1.8678
3.41359
1.54883
2.00096
0.0085824
0.0130653
0.00242675
0.00341008
0.00866631
0.0135989
0.00236405
1.71241
1.72037
1.91667
0.966418
0.00663185
0.00178679
0.0055191
0.00150421
0.006302
0.0017262
0.00587483
2.22427
1.64635
1.43971
4.12951
0.00813913
0.00314943
0.0101107
0.00189147
0.0127843
0.00221298
0.00639909
0.955026
0.725736
1.02323
0.957054
0.00638969
0.00137612
0.00134054
0.00422523
0.00158128
0.00535708
0.00492025
0.155973
0.272177
37.4554
0.272816
0.167363
0.122657
35.4127
0.2208
0.244716
0.0818471
0.000645791
0.000516216
0.00087931
0.000520963
0.000827774
0.000508902
0.000667839
0.971945
2.58084
1.19887
1.91232
0.000610853
0.000496658
0.000512572
0.000579627
0.000500741
0.000567104
0.000629597
0.637739
0.642577
0.381563
1.13134
0.00407128
0.0050239
0.00124977
0.00132007
0.00438003
0.0049141
0.00118705
0.485576
0.382775
0.516641
0.371443
0.00342534
0.00104377
0.00294383
0.000904161
0.00336658
0.0010004
0.00306238
1.0686
0.664762
0.633113
1.06286
0.0038363
0.00120428
0.00373416
0.000994258
0.00434991
0.00110386
0.00334403
0.63604
0.475828
0.43856
0.471899
0.0641003
0.208273
32.9461
0.191926
0.0821328
0.0443321
32.1763
0.147051
0.162746
0.0311942
0.27393
0.686346
0.402546
0.444378
0.145777
0.219389
0.122434
0.232123
0.179912
0.137359
0.17657
0.22097
0.37626
0.473868
0.464462
0.414715
0.369121
0.33141
0.3639
0.389768
0.0181451
0.117143
29.0194
0.112184
0.0175
0.0172868
27.4605
0.0874601
0.0933378
0.0168549
0.0419578
0.0597079
0.0392139
0.0607484
0.0461499
0.0446636
0.0474339
0.0559528
0.228984
0.163093
0.204076
0.190056
0.364197
0.293085
0.176065
0.344625
0.393005
0.110436
0.371301
0.108047
0.00839778
0.0698479
25.1255
0.054419
0.013371
0.0286118
11.268
0.0336934
0.0246545
0.0403124
0.021332
0.0429443
0.0384781
0.0295476
0.00569131
0.0169906
0.0126302
0.00671386
0.0925391
0.0353833
0.0357309
0.0771172
0.333609
0.103172
0.0916171
0.387534
0.057766
0.0651708
0.0517501
0.069239
0.0340518
0.0316448
10.6926
0.0286494
0.0379151
0.0257206
8.72486
0.0161882
0.0217722
0.0191232
0.0112246
0.0120903
0.00954685
0.0147288
0.0138087
0.00531101
0.00556578
0.0179592
0.0332236
0.0308609
0.0304902
0.0361516
0.0520866
0.0636149
0.0660161
0.0507355
0.0453021
0.0517289
0.0454229
0.0540455
0.00573407
0.00584188
8.14754
0.00559061
0.00611095
0.00842581
6.93893
0.00972364
0.00765261
0.0110227
0.00106984
0.00112408
0.000910816
0.00138556
0.00108348
0.0015469
0.00100523
0.00167475
0.0276208
0.0190382
0.0202501
0.0251388
0.0472336
0.0509633
0.0516574
0.0455063
0.0475438
0.0386999
0.0459226
0.0474776
0.00807772
0.00758159
6.21937
0.00720635
0.00853455
0.00652333
5.59627
0.00626594
0.00585182
0.00707154
0.0026565
0.00350468
0.00305923
0.0030334
0.0020959
0.00261138
0.00213301
0.00251382
0.0191168
0.0590552
0.0617089
0.0143793
0.0461996
0.0346151
0.0287455
0.0438474
0.0382904
0.00797483
0.0185675
0.0101392
0.690649
0.580291
0.931447
0.355781
7.66551
1.38468
0.0340919
0.0067128
0.0153626
0.0300455
0.0104621
0.0192918
0.0576105
1.35442
87.5722
1.55383
4.21767
0.653015
0.534882
1.82131
0.99897
95.7919
3.32097
1.2467
160.27
1.93913
1.1552
0.432359
2.146
1.1189
98.0283
2.37867
0.377263
1.11179
1.94422
1.01391
0.188267
10.7396
0.096376
0.0781738
1.54503
0.0616665
0.252937
201.779
44.0343
0.138557
0.062947
0.680641
0.0375147
1.19135
0.0444134
0.11008
0.0151092
0.0164368
0.0481611
0.782479
0.0102338
0.0274285
0.1789
0.0155967
0.0713004
0.0144379
0.185622
0.0113203
0.116771
0.0185326
0.403201
51.8212
1.05797
12.7731
0.637994
0.60339
4.10251
147.52
15.2701
2.37269
1.18546
0.348238
2.23728
1.2231
2.17274
3.01081
1497.78
1.96762
110.978
3.31351
0.435479
1.69935
3.31641
1.80191
0.0677809
0.514304
0.0300979
0.0269387
0.311647
0.0804693
0.0238304
15.0936
14.7792
0.060663
0.0266884
0.159008
0.0223633
0.253645
0.0220878
0.0686727
0.00637722
0.0888373
0.0225088
0.0267921
0.0204908
0.0209847
0.00770142
0.00447188
0.0117979
0.0192487
0.00373345
0.0146863
0.00395791
0.00506598
10.6794
1.23396
210.017
0.780608
12.4937
83.1133
0.703365
3.32843
1.98339
0.431335
3.97142
1.93308
2.58019
0.369149
2.41721
2.03115
2.03032
0.0409341
0.117085
0.0216875
0.0168844
0.0869211
0.0510727
0.0149372
7.4474
21.8784
7.0554
46.3981
0.0328608
0.0168934
0.0545231
0.0105914
0.0679017
0.0117262
0.0280841
2.72883
2.28365
0.464783
2.67291
2.14433
2.58942
0.0447925
1.47238
2.40136
0.990384
0.0197424
0.0475544
0.0107435
0.00837809
0.0432494
0.0226776
0.00783304
3.04263
8.69085
2.69538
8.51286
0.016015
0.00850929
0.0294634
0.00606521
0.0332137
0.00632469
0.0146824
2.64293
1.53352
0.0201581
0.473208
2.72854
1.99755
0.0106057
0.226158
0.192878
2.18882
0.0116746
0.0258307
0.00634991
0.00520606
0.0231432
0.0128989
0.00510384
2.09811
4.3606
1.78726
5.21974
0.0101051
0.00550304
0.0174179
0.00398087
0.0204957
0.00426868
0.0088716
34.3457
75.0634
2.00223
0.227223
0.00672463
0.158625
1.80482
0.651926
0.125752
0.265284
0.569836
0.687049
1.12231
1.96668
1.05615
2.19468
32.246
23.3073
0.00836969
0.00156853
0.00565062
0.00142798
0.00623119
0.00156404
0.00705205
38.8364
8.02081
10.111
38.1918
0.678866
0.0992951
0.0118561
0.0221801
0.556653
0.355793
0.00532606
0.00644764
0.00642516
0.371648
0.969231
1.57242
0.924476
1.7739
22.6351
7.29556
4.7499
36.1887
0.00138305
0.000574035
0.00112723
0.000570135
0.00133482
0.000582708
0.00118697
6.01921
1.53313
2.3745
3.97158
0.00157852
0.00083573
0.00345787
0.000602638
0.00625957
0.000618056
0.00102605
3.5083
0.352842
0.00524515
0.00434895
0.00286243
0.270169
0.00143611
0.00057673
0.000579265
0.000656454
0.000587568
0.00123001
0.000844485
0.468587
0.136957
0.00297314
0.00289741
0.0014201
0.158857
0.144747
0.351951
0.649444
0.293345
0.686732
2.0985
1.21864
0.799287
3.43281
0.00065683
0.000524279
0.000590076
0.000531063
0.000645724
0.000533869
0.000597682
0.592763
0.797317
1.41165
1.26207
0.000702353
0.000556444
0.000737247
0.000557634
0.000997774
0.000550655
0.000603842
0.309649
0.0943515
0.00198362
0.00162458
0.00169614
0.980966
0.0312067
0.00343928
0.00126702
0.00062566
0.00135546
0.000651719
0.192174
0.46307
0.177919
0.500897
0.00324386
1.92213
0.000810355
0.000589065
2.59174
0.0026618
0.000599007
0.952517
0.858451
0.52785
1.50578
0.000607572
0.000507132
0.000558969
0.000516077
0.000594417
0.000517844
0.000568704
0.314419
0.259591
0.256758
0.373813
0.00333302
0.000607294
0.0008222
0.00238121
0.000772328
0.00371737
12.8325
0.000781681
0.000646713
0.00115562
0.000707526
0.130648
0.158469
0.119615
0.192853
0.00194262
1.844
0.000581498
0.00068049
0.00224101
1.50043
0.000573742
0.00184643
4.38693
0.000663673
0.000562921
1.44815
0.00148734
0.000568304
0.0830421
0.0675386
0.0697413
0.0841221
0.103976
0.0484839
0.0638595
0.0710477
0.000695562
12.1095
0.000609084
0.000702068
0.000762218
9.60799
0.000591475
0.000706504
4.72037
0.000674023
0.000570495
9.51503
0.000721584
0.000578945
0.0706384
0.106627
0.0828541
0.0990981
0.00104426
4.0698
0.000558192
0.000683714
0.0011746
3.1232
0.000562043
0.000890078
1.70365
0.000635407
0.000555086
3.06608
0.000779935
0.000557891
0.0273494
0.047761
0.022151
0.0726488
0.00543376
0.0181846
0.00672996
0.0140098
0.000555923
4.44282
0.000561191
0.000603992
0.00059069
2.4834
0.000555917
0.000552854
0.108422
0.000596158
0.000558378
2.42878
0.00055884
0.000553047
0.0464811
0.0681182
0.0425098
0.0727204
0.000706761
1.59313
0.000551706
0.000591007
0.000742218
0.445603
0.000549961
0.000722267
0.0216487
0.000583051
0.000544894
0.426691
0.000565781
0.000547509
0.0178123
0.0126962
0.0160976
0.011733
0.0301754
0.00557132
0.00668511
0.0202821
0.000568635
0.10045
0.000547738
0.0005567
0.000543371
0.0858584
0.000546528
0.000546524
0.00535454
0.000552453
0.000542432
0.077756
0.000535025
0.000543309
0.0269282
0.0471679
0.0246042
0.0503588
0.000544937
0.0189917
0.00054173
0.00055028
0.000549745
0.0133833
0.000541088
0.000539214
0.00168967
0.000548136
0.00053974
0.00973274
0.000537111
0.000540108
0.254755
0.328707
0.525885
0.335895
0.00105989
0.00123335
0.000774426
0.000731811
0.00119086
0.000772158
0.00107487
0.00103033
0.00109674
0.000724354
0.000758763
0.00114455
0.00103232
0.000755737
0.000914044
0.000991705
0.000694822
0.000688547
0.000997031
0.000951049
0.000687544
0.00114492
0.169074
0.00122389
0.00153399
0.0010103
0.00112567
0.0123936
0.171716
0.000804819
3.23491
0.000859254
0.00100413
0.0771106
0.225752
0.287684
0.0336061
0.0415493
0.39824
0.615252
0.0164488
0.278505
0.0207369
0.0255858
0.0182238
0.298781
0.00877341
0.0509705
0.0669056
0.00645393
0.00619783
0.00903059
0.0193277
0.0246037
0.00965441
0.0258951
0.00867319
0.00848795
0.00897758
0.0130948
0.00667348
0.00970058
0.00910045
0.00489875
0.00456269
0.00619959
0.0652715
0.104557
0.270685
4.22519
0.344942
0.0696822
0.0152668
15.0338
0.0113973
0.514238
1.00731
0.363259
0.0112124
0.0993796
1.28968
4.21543
0.427776
0.111883
0.0778171
0.497494
0.0083707
0.162664
0.825518
0.314874
0.00844632
0.00819825
0.131209
1.00186
0.227069
0.347256
0.414016
0.151806
0.462927
0.12052
0.135796
0.0126645
0.0830643
0.0599306
0.012331
0.0746201
0.0129326
0.223653
0.136286
0.337278
0.359115
0.097333
0.112732
0.22014
0.116433
0.2782
0.117375
0.0840397
0.10337
0.168005
0.134055
0.309814
0.0740605
0.0916539
0.269351
0.346754
0.301632
0.257528
0.0848247
0.48476
0.0986891
0.193036
0.389539
0.219005
0.397113
0.477098
0.0383561
0.0873503
0.145513
0.353039
0.383595
0.112497
0.0262831
0.647397
0.0165865
0.0623653
0.397599
0.0767412
0.403806
0.712021
0.0421194
0.0617878
0.0525886
0.398147
0.399222
0.0372134
0.0379269
1.20439
0.0445639
0.0399994
0.390733
0.0341883
0.376914
0.285954
3.00124
1.63341
0.999293
0.316075
1.01197
0.224729
0.52593
0.720011
1.34211
0.874921
0.186489
0.499546
0.0870927
0.183289
0.944687
0.0814034
17.8428
1.44069
0.40543
2.64005
0.285236
1.92159
6.17686
0.79664
61.6179
1.01213
0.39207
0.287405
0.517972
0.368956
0.0594267
0.13534
0.988514
0.0798802
0.225627
4.80669
0.535093
17.1751
0.648735
10.8284
0.253222
0.110304
0.590794
16.7619
0.121398
0.22655
0.286262
0.676
0.166328
0.131865
0.352518
0.460006
3.75909
0.312265
8.07661
0.230884
2.34326
0.0914035
0.153139
0.0902589
0.260126
1.58062
2.31388
4.35664
1.79779
0.296259
0.35556
1.34608
1.01386
0.223466
35.4099
0.35437
0.7364
0.227078
2.09344
0.407528
0.384152
2.40411
2.23768
2.96969
1.06261
0.237123
0.372104
0.228474
1.36666
4.69956
12.2535
15.6949
23.8697
1.02164
17.0644
1.37048
8.55723
18.5094
5.20071
0.139446
0.606653
0.221697
0.490186
0.20748
7.48459
6.69412
0.304472
0.431894
4.78504
0.304118
28.6498
4.71163
16.1068
1.17218
1.58124
16.7426
16.2675
24.9302
18.6879
7.55168
0.364345
0.461065
0.338088
14.0359
0.363124
0.502236
0.569621
3.92544
0.670832
1.10038
7.47722
0.620032
0.304221
3.78425
0.358985
2.07606
0.425793
0.378376
0.85154
0.397503
0.343073
0.522904
14.8408
8.03019
0.53771
0.638454
1.08175
0.614238
0.440485
0.878033
0.410781
0.18162
0.190815
0.126292
0.0849399
0.142284
0.0995736
0.234203
0.469873
30.2732
0.430643
0.488293
1.30511
0.507339
0.16714
0.180066
55.8504
0.114149
0.133703
0.149726
0.10652
0.60208
1.41633
0.553729
3.59231
0.119402
0.111761
1.95214
0.117866
1.77193
3.73124
3.73569
5.28448
0.0951354
0.095706
1.99608
14.635
0.102986
15.6324
0.424965
4.82894
0.74488
7.51466
0.745823
15.3414
16.6748
0.876482
2.29088
0.942168
18.6062
3.61625
0.109909
0.100475
1.24096
1.79098
0.10929
1.74724
3.73927
0.110114
0.110565
16.3375
16.0123
0.113333
3.97873
16.4719
18.8771
0.958822
2.31498
0.942094
16.0189
18.5844
0.350677
0.0206583
0.0279808
0.280008
0.023717
0.225425
0.448497
0.384763
0.467918
0.0220781
0.033128
0.305583
0.550199
0.025158
2.276
0.462556
1.83382
1.01803
2.0796
0.949685
1.23206
2.77367
1.17845
3.68626
2.06282
3.49261
1.25353
3.4324
0.32008
0.0184607
0.0181973
0.242229
0.258457
0.020579
0.245465
0.420308
0.0330449
0.0364133
0.513083
0.536858
0.028652
0.476014
2.49451
1.57789
1.35266
2.0789
1.25374
1.17163
3.39466
0.080064
0.0147133
0.0172845
0.0859887
0.0152643
0.0830581
0.0901013
0.72675
0.681085
1.49123
1.62846
0.563674
1.44388
0.636677
0.816296
1.7315
1.45926
3.25447
1.05386
1.86619
1.06202
0.0797592
0.0183162
0.017045
0.105546
0.0881857
0.015791
0.0946013
0.780751
0.682148
2.21211
3.28764
1.94369
0.701764
0.942654
0.206258
1.37047
0.361153
4.073
0.255744
1.37691
0.264061
0.202195
0.208333
1.53306
4.08235
1.36642
0.200035
0.235861
1.95851
0.0006866
8.84099
0.000660063
0.000804942
0.000760039
2.63571
8.79059
0.000642928
0.000827889
0.000776113
1.49007
2.5981
0.000612623
12.251
0.00239823
0.00206563
0.00215845
0.00182904
8.22621
0.00191902
0.00230688
0.00189283
6.15587
7.46737
0.00165747
0.00046368
8.18309
0.000465022
0.000453964
1.44302
0.000452017
1.53739
7.76547
0.000460195
0.000459975
0.000448825
1.66395
1.60586
0.000449356
0.00193897
0.00181967
0.00165839
5.90533
0.00170582
4.50707
0.00144084
0.00166397
0.00288345
2.75651
5.0876
0.00270272
0.000477017
6.19966
0.000460101
0.000446287
1.56732
0.00046462
1.04929
6.37574
0.00046136
0.000464336
0.000450165
0.898736
1.07675
0.000446586
0.00142202
0.00305436
0.00264904
2.72889
0.00275019
1.63005
0.00281081
0.00276468
0.00243307
1.19825
1.48336
0.00256163
0.0805401
0.0908797
0.156724
0.0709342
0.0455838
0.0243652
0.0413836
7.04523
4.76597
35.7698
16.1947
7.56582
14.7318
5.15652
181.812
38.2684
1.01583
1.00865
1.34407
3.53238
3.67153
1.55561
1.12631
3.28704
1.44549
1.08031
1.79818
1.52529
0.402826
0.576366
46.5881
0.469725
0.51577
0.491841
0.446177
0.403536
0.418917
0.476511
0.462849
0.480142
0.451351
23.4097
0.198613
0.181998
3.35291
0.214765
44.4736
4.15041
28.4503
0.328746
0.355164
111.33
50.317
0.242132
396.992
35.2496
26.7185
0.194344
0.185561
30.4166
45.2673
0.19347
12.1009
25.448
0.225757
0.242705
47.9655
39.1728
0.230938
4.76359
23.6818
360.596
32.518
2.81842
0.126839
0.108603
1.25224
0.13454
1.03679
1.16957
3.30932
4.09618
0.134867
0.131875
2.4637
2.64445
0.144297
10.1503
20.4739
26.3286
6.04637
41.1635
5.90815
21.0596
5.15597
3.598
0.145037
0.14916
2.77356
2.56025
0.153654
1.92206
3.67011
0.112366
0.143601
1.32119
3.21899
0.143781
1.15335
29.4091
5.56294
5.06332
5.17148
0.459914
0.0488499
0.0586299
0.333783
0.055741
0.292105
0.341481
0.986174
0.635208
0.0603862
0.0816236
0.730815
0.916614
0.066559
5.34821
4.4675
3.72427
1.23536
3.90832
1.80114
4.56659
1.84914
0.86415
0.0466511
0.0527444
0.662294
0.773307
0.0556239
0.308646
0.693903
0.0702512
0.0894778
0.49204
1.05827
0.0688162
0.38297
2.53978
2.36666
1.28487
2.06659
0.137766
0.0216477
0.0231123
0.102332
0.0252302
0.100184
0.105845
0.266702
0.190648
0.0344914
0.0368993
0.222321
0.230356
0.0362175
3.00204
2.08998
1.96722
0.603271
2.81426
2.22081
2.12007
0.606835
0.255848
0.0241015
0.0335842
0.217513
0.244642
0.0320553
0.149209
0.247798
0.0258618
0.0386539
0.225436
0.274661
0.0329902
0.126618
1.45979
0.598641
0.570234
0.594677
0.582291
0.596289
0.408008
0.515432
0.648662
0.747872
0.601903
0.830315
0.657014
0.813623
0.504461
0.844497
0.183381
0.184067
0.146292
0.219951
0.185809
0.203754
0.17811
0.217312
0.193838
0.239606
0.220047
0.226489
0.185662
0.106815
0.124399
0.163568
0.217373
0.256112
0.219048
0.258343
0.209881
0.295652
0.191742
0.271592
0.0357538
0.03653
0.0362523
0.0362854
0.0370015
0.0399602
0.0369952
0.0395198
0.03601
0.0376605
0.0362139
0.0379366
0.0349053
0.0257159
0.0264836
0.0350238
0.0379236
0.0380895
0.0378893
0.0392486
0.0364698
0.0422101
0.0381435
0.0378356
0.0218959
0.0188544
0.0183806
0.0204456
0.0244556
0.0336464
0.0248246
0.0343561
0.0243626
0.0317908
0.0223629
0.0349023
0.000455164
0.000466951
0.000456396
0.000806711
0.000444587
0.000772282
0.000491125
0.000471724
0.000469165
0.000693187
0.000751353
0.000481895
0.000573538
0.000640062
0.000481038
0.000543997
0.000565795
0.000488239
1.44182
24.8675
3.7534
37.2878
235.751
157.709
4.98015
92.6146
84.535
1.05304
1.66038
0.627027
1.16121
21.4208
1.94536
280.069
18.9627
2.8149
2.10633
6.95647
6.23551
162.006
1.31997
21.8756
1.83741
56.2264
767.975
3.64744
116.022
5.88127
36.0088
0.72707
1.71904
2.74386
1.40556
2.17829
127.337
52.3437
8.32003
24.0841
4.05469
2.05213
14.4318
1.08814
2.07569
1.36107
28.175
1.40131
2.15652
8.58496
80.8375
15.7952
0.722506
1.47532
0.910849
3.86225
16.7325
2.14751
1.44148
22.8731
1.20669
53.2637
31.3713
15.8232
2.65744
36.5837
2.27076
11.7291
0.77807
1.47833
0.908049
7.45561
15.8453
2.11835
17.8066
2.25282
1.75377
2.51544
1.08311
5.37195
1.69975
1.46948
8.75857
1.2247
2.32402
1.4154
7.20723
0.716292
0.92206
1.16886
2.29288
11.7612
3.26809
7.56488
2.84002
205.793
0.775098
0.502154
25.6972
3.44052
0.453848
11.2175
598.598
6.45603
8.14954
1.41401
8.87303
1.36402
2.69192
0.320465
0.640972
62.6454
26.7984
0.384688
2.24462
7.75195
1.24689
6.92688
1.32107
0.145449
3.22236
50.6504
0.166423
4.30471
0.113402
0.2138
0.194433
0.245536
0.965657
4.99034
0.168999
0.357156
3.29966
0.123709
2.2213
0.753405
0.0550289
0.0884759
2.93127
0.0772337
0.281973
57.2928
12.4728
0.717326
0.546375
4.93994
0.422639
1.33914
6.38866
0.333819
0.202987
5.23471
1.57379
0.273401
5.81554
12.7439
41.5154
5.38075
3.01051
0.860277
3.7582
0.824815
1.10169
0.218456
0.302338
2.84684
5.11515
0.236524
1.01032
2.89528
0.790372
2.79665
0.80182
0.0219251
0.158477
0.323891
0.0182595
0.25472
0.01672
0.0287789
0.021715
0.744709
0.358674
0.0325533
0.0272991
0.287975
0.0281505
0.659554
2.21145
0.169104
0.144809
1.8577
0.675163
0.141849
2.49515
5.11608
9.9451
2.44608
1.61137
0.801558
2.14306
0.589953
0.61522
0.115216
0.159799
1.45897
1.81359
0.132623
0.515655
1.56647
0.544235
1.7967
0.577701
1.34812
4.21824
5.11777
1.2541
1.16208
0.449836
1.24849
0.400146
1.12348
0.311234
1.06148
0.359876
0.963664
1.7565
1.70254
0.91997
0.794493
0.250209
58.6038
0.827747
0.240885
0.776357
0.208871
57.1815
0.748493
0.228689
0.655924
0.792323
0.898999
0.566388
0.466556
0.5094
13.9135
0.605685
0.424456
0.397695
0.310637
13.1194
0.353993
0.336853
0.249223
0.607597
0.601739
0.245058
0.22755
0.218072
3.95568
0.230522
0.213419
0.226839
0.188926
5.43707
0.226069
0.203454
0.150922
0.270169
0.377158
0.13585
0.138474
0.131302
3.08578
0.14679
0.124789
0.129037
0.112202
3.00185
0.10643
0.117673
0.0818813
0.112727
0.122183
0.0797604
0.0700698
0.0830904
1.26789
0.0803027
0.0759244
0.0642883
0.0626142
1.17634
0.0611868
0.0672729
0.0599929
0.0796729
0.086615
0.0567361
0.0680013
0.0377796
0.479192
0.0739528
0.0343007
0.0616792
0.0305812
0.452287
0.0587304
0.030272
0.0308948
0.0556217
0.0583713
0.0288023
0.0374577
0.0067006
0.519452
0.0417059
0.00593306
0.0325911
0.00441812
0.427867
0.03036
0.00499122
0.000508506
0.0818776
0.000505359
0.000525157
0.000523167
0.0141806
0.000502565
0.000503857
0.000521598
0.0048764
0.0132752
0.000521
0.00114195
0.00141776
0.00122116
0.0041516
0.0138206
0.00104037
0.000501399
0.000498949
0.000518374
0.00344504
0.000519899
0.0014951
0.000498151
0.000497694
0.000517258
0.00117828
0.00138504
0.000517385
0.00069697
0.000831363
0.000762442
0.000786021
0.00117678
0.000675981
38.4784
0.00390744
1.5247
0.00288105
0.00190994
0.00286872
0.164562
0.00238043
0.666849
0.00275578
0.00759579
0.005225
0.0395532
11.0921
0.0570702
0.0633717
0.0345152
0.0773916
0.172948
0.186289
0.109699
0.017507
0.024877
0.00317781
0.00301921
0.0548311
0.00302613
0.0179362
0.039229
0.0214871
9.99203
0.072381
0.0546166
0.0168478
0.00290407
0.0425649
0.003012
0.0475797
0.0181764
0.00289445
0.143647
1.44701
0.0019637
0.0476536
0.00385039
0.00220403
0.00292273
0.834918
0.0265244
0.00235681
0.0317414
0.00252813
0.0016302
0.00168373
0.106539
0.0284318
0.12558
0.037003
0.0924134
24.049
0.0325484
0.0691775
0.067413
0.0147115
0.0176208
0.00225819
0.00209714
0.0134978
0.0177505
0.00215887
0.0766986
0.0409124
0.0398682
0.0619151
0.451175
0.00523694
0.000903864
0.0402295
0.00100515
0.00092238
0.000869232
0.000939374
0.00289811
0.00737008
0.000725528
0.000654904
0.000660607
0.000726476
0.00462041
0.0141977
0.0323656
0.000840542
0.000800097
0.000818941
0.000807724
0.0120167
0.0030494
0.00403287
0.000725728
0.00075349
0.000750568
0.000733003
0.00258536
0.00268139
0.00303796
0.000696481
0.000692342
0.000706395
0.000680546
0.00168132
0.00168396
0.00116049
0.000643853
0.000666058
0.000654436
0.000656721
0.00149422
0.00100431
0.00104547
0.000628903
0.000640439
0.000643337
0.000639175
0.000858634
0.00113665
0.00077252
0.000615194
0.00062669
0.000622481
0.000620155
0.00105867
0.000685628
0.000715612
0.000605555
0.000606776
0.000611566
0.000601891
0.000649322
0.000715666
0.000629666
0.000591026
0.000611243
0.000594067
0.000605385
0.0849637
0.0938198
0.0612301
0.0275467
0.493546
0.0396393
0.0504312
0.160036
18.5483
1.40999
0.31662
2.80048
0.0863454
0.0610006
0.0767293
27.5136
0.473136
0.0433646
0.137363
0.614346
1.70676
0.287593
0.154144
0.161543
1.75267
1.07929
37.4845
0.356489
0.493686
0.149829
0.252725
0.117139
1.14817
0.417824
0.0767875
0.38256
0.111906
0.173885
0.416672
0.0790637
7.18486
0.233027
0.213262
0.100777
12.4691
2.00726
0.131491
0.526207
0.542729
1.56124
0.214232
5.66007
0.163595
0.723116
1.37468
0.121117
0.354158
0.168823
0.444704
8.89039
0.214228
0.862574
0.143422
0.126768
0.213774
0.376076
2.13382
0.279538
0.139214
0.183347
0.110127
0.176561
0.143524
1.42955
0.0993022
0.216424
0.167372
21.5343
0.267423
0.144156
0.19736
0.35454
0.28342
3.88619
0.107945
0.189007
0.116075
4.03148
16.6141
1.95817
0.936835
15.5999
0.619285
2.97158
15.4142
16.2466
0.194538
0.512098
0.483407
0.410791
0.346619
2.78408
21.9684
0.315692
9.59134
0.485454
19.7566
0.173214
0.234287
0.493489
0.283968
0.149928
0.702855
0.18431
1.13299
0.274148
0.261916
0.826274
0.17477
0.989417
1.97125
1.31899
2.38913
1.39737
1.00235
0.912684
0.346541
0.594716
0.61292
2.42102
0.54014
1.0432
0.873411
4.43143
0.372722
1.46508
0.379546
0.708066
0.254698
0.524541
8.69332
0.187148
5.22137
0.403612
0.224403
1.47724
0.301981
0.194295
3.8268
0.396007
0.11803
0.167464
4.34907
0.161378
42.5427
0.12406
0.144296
4.37019
0.271952
0.263491
19.6238
0.148496
0.174482
39.4741
0.543225
0.399552
0.168301
0.524888
0.42579
0.174283
33.1894
0.560956
0.398098
0.177831
0.554364
0.378582
8.78778
1.62417
0.496624
0.251325
0.514579
1.30274
1.40057
5.52438
4.12582
0.348876
15.9335
1.16081
2.93996
1.40937
4.68121
0.231465
4.219
1.49186
0.386664
9.24135
2.24225
0.184252
0.0911851
0.255962
18.4606
0.18598
0.0904176
2.81862
0.294862
4.07094
0.300915
11.5676
3.04216
11.5623
87.067
11.4477
0.494089
19.1477
1.53813
3.01881
9.25149
4.17762
21.3402
0.45554
15.8288
3.09269
10.9145
5.57302
2.75211
0.699454
0.270431
0.805266
0.895566
0.788731
1.68268
1.57275
1.37085
0.208152
0.700651
0.764593
0.667357
1.96943
2.44647
6.34784
7.01472
180.965
5.26392
2.40824
4.04564
0.541182
0.253959
2.83491
0.716301
1.68899
1.62143
1.60265
1.35971
0.235499
0.680225
0.689224
1.6811
9.48799
4.33229
0.336057
2.25897
0.711763
0.619057
3.13104
0.740654
108.176
3.73688
5.71349
0.84498
0.13687
8.8938
0.263819
0.16607
0.218719
2.17129
0.0691915
0.24692
0.528956
0.0512351
0.0602196
1.16707
0.0640011
0.114689
0.162751
0.830687
0.240971
1.81305
0.094743
0.334351
4.25313
0.573662
68.5299
1.32861
0.184406
1.21203
1.24155
0.109248
0.141067
7.50926
0.118069
0.303473
0.237952
1.50323
0.369921
17.5791
0.152971
0.0773349
0.120034
0.732454
0.890519
0.300095
0.0816788
0.0933242
0.161214
45.3993
0.711019
0.311791
0.173011
0.655834
0.291725
0.249569
48.9101
0.91798
0.405111
0.250339
1.02143
0.401877
34.708
1.13501
0.336504
0.25565
0.241068
31.8698
0.868511
0.228676
0.29159
1.25309
5.93407
0.21624
0.313866
0.239383
27.1028
1.09882
22.1586
0.831082
0.754632
0.304436
7.02767
1.37453
0.221892
0.540025
0.237774
0.322577
35.7757
0.872076
0.213252
10.5532
0.580305
0.249758
7.18633
0.456895
0.305041
0.465447
2.7853
0.152777
0.242617
0.367885
0.159147
9.72043
1.46747
2.99816
7.42975
20.4633
3.34027
1.5456
0.102949
0.139241
3.57612
22.645
0.0975224
6.49018
1.94356
14.1161
2.46108
0.822935
0.0713201
0.0812454
0.260217
0.488794
0.0798251
0.41617
9.60528
54.4513
19.1423
1.4445
2.63117
0.125865
0.088365
14.3692
0.778641
0.0929451
5.58409
1.38338
2.78227
2.07167
25.1638
0.627189
2.86326
0.317506
5.55519
0.732998
1.88282
1.62083
8.8505
19.853
9.36521
0.314322
0.890776
6.3862
0.740381
24.7588
21.0763
4.725
7.14784
0.303969
0.222406
0.258479
24.7651
49.3552
6.39924
2.95335
0.128325
0.119058
0.577184
0.97706
0.137977
1.11313
39.0612
3.59186
3.01643
0.223053
0.123918
261.63
1.11198
0.163246
13.4106
3.27418
4.38307
7.2135
1.94711
0.416954
1.75698
33.9523
2.22778
2.94367
10.0621
0.317433
1.0876
1.31543
31.2102
2.43417
10.9512
3.35922
4.35184
1.20934
0.488891
0.715432
0.87797
0.385856
2.1844
0.0903945
0.102653
0.726949
0.737746
0.0924874
1.48561
1.12234
3.26135
0.826543
1.53414
1.81806
4.36537
1.05689
0.28111
44.3847
1.03246
0.421858
0.278359
1.00986
0.435
0.288755
37.9426
1.04272
0.420483
0.280221
1.06261
0.434981
0.459229
0.241714
0.27225
0.411388
0.652433
1.77965
0.934401
1.72234
0.485575
0.355276
0.628002
0.302278
0.626352
0.953353
1.68889
0.538739
6.32748
4.10535
0.986921
0.121261
0.21782
0.155016
0.764903
0.240324
0.163976
4.79249
0.85629
7.4605
0.633784
2.24879
0.276037
0.37292
4.84095
0.265077
4.1397
0.454975
2.3908
0.63464
1.80663
0.229685
0.353227
1.36067
0.24611
7.45662
18.0587
0.190245
0.204026
86.6454
0.201432
0.269682
0.17149
0.168475
20.7579
0.129837
0.164705
0.173249
0.266027
0.152687
0.210439
0.204609
41.9316
19.762
0.137016
0.183342
0.145286
1.6421
0.41886
1.59057
2.04921
1.82153
0.413808
1.83764
1.63423
0.297099
0.243348
250.602
0.387305
0.281256
0.326373
0.386562
436.685
0.547462
0.350447
0.344382
0.859232
0.618637
0.499255
0.298412
79.8789
120.707
0.266841
0.342712
0.385922
241.282
2.50522
0.521161
2.12732
2.08105
2.31817
25.4293
39.0273
42.5626
0.49383
1.85846
2.01673
8.97045
72.7374
12.3767
71.9546
0.204731
0.217467
63.7773
78.2017
0.253333
0.291184
23.2417
0.143397
0.105652
2.69248
3.25406
7.18413
0.118362
0.135627
0.157381
39.6286
0.133009
2.52166
0.165665
14.7339
0.125979
0.177791
47.5015
0.197573
3.42927
0.220255
15.3196
0.160631
0.260518
39.9582
1.44104
0.387973
0.254746
1.34386
0.407507
0.178158
0.122898
0.280247
0.925368
0.127511
0.170631
0.871891
0.210557
1.16293
0.347644
0.172544
0.158692
1.03488
0.229222
0.248865
48.6199
1.47364
0.384336
0.248725
1.56288
0.380007
0.171048
0.118518
0.301502
0.94016
0.123766
0.165956
0.994295
0.0695417
0.802445
1.47148
0.0593505
1.69772
0.0566158
0.0687507
0.0833081
0.106754
4.00656
17.0881
0.0806224
2.48437
0.106467
0.0685096
0.855029
3.26113
0.0540616
0.0664874
1.74758
0.0554014
0.0841414
1.83542
14.525
0.101987
2.04614
0.105331
0.0837985
4.36621
2.44319
1.45254
12.2804
0.147321
0.627212
0.200663
0.707809
7.62555
0.213581
4.10222
1.40278
1.38419
1.87894
1.45585
32.5893
0.32906
0.611958
0.277257
4.43063
1.22887
1.5194
1.76082
1.51406
31.4066
0.209142
0.540178
14.2732
0.232393
2.21496
1.49421
1.58413
0.0447983
0.655699
0.0521826
0.384645
0.0482983
0.388527
0.049418
0.0424996
0.0425351
0.306336
0.183832
0.039196
0.290143
0.0447814
0.0409999
0.670898
0.0420128
0.394465
0.0374141
0.0447758
0.410413
0.0473281
0.230109
0.195407
0.0457633
0.282393
0.0512293
0.0470985
8.55716
2.33168
4.25859
3.05243
0.624101
2.18121
17.7057
2.85478
4.38861
3.38079
3.31598
13.0645
24.7442
4.63703
0.67229
2.35721
2.29365
2.87961
3.46311
4.25052
0.0720117
1.13119
0.0633722
0.512511
0.0690912
0.902581
0.0678696
0.0778806
0.0936837
1.8376
0.675478
0.0936282
0.968559
0.0792317
0.0791446
1.82301
0.101004
2.55652
0.0997987
0.0823352
0.979544
0.0756726
0.501067
0.526557
0.0780194
0.867258
0.0739158
0.0805913
2.46884
2.68597
2.68522
3.40522
0.885335
2.98804
3.43717
4.27146
0.946818
1.1185
1.09091
0.793624
2.39248
2.87393
2.15669
0.885976
1.62217
2.81624
1.19791
1.81336
0.0581221
0.0566458
0.376275
0.379064
0.0547477
0.062028
0.292951
0.0497459
0.234073
0.046074
0.159923
0.0523123
0.212612
0.0471305
0.0552028
0.33586
0.0597972
0.20297
0.0656115
0.258984
0.0512237
0.271325
1.24594
0.199628
0.451558
0.259945
0.208088
1.27882
0.359729
48.0394
2.08405
0.521405
0.391894
1.91741
0.501153
0.282428
0.222417
0.469999
1.42495
0.219768
0.287388
1.313
0.227485
1.41708
0.435168
0.16558
0.171928
1.30068
0.218682
0.321152
45.5488
2.14429
0.498753
0.369708
1.91315
0.450023
0.249381
0.20454
0.453766
1.45328
0.191142
0.267561
1.31381
0.0430782
0.0431832
0.117969
0.138455
0.0467398
0.120388
0.0452958
0.37901
0.247606
0.301362
0.292467
4.54148
0.356193
5.36872
0.334941
0.191771
0.155823
0.220395
0.452281
0.971964
0.402801
0.377404
19.0463
0.215952
0.274664
0.440855
0.964486
0.417477
0.219097
0.158645
0.231245
0.480134
0.529512
0.536586
3.5919
1.22786
3.92942
0.893887
0.638669
0.574523
6.67183
5.49403
0.613476
0.904522
0.554854
1.26485
4.68228
4.03608
0.47149
0.499572
0.590145
0.238923
0.459061
0.252873
5.34815
1.44567
4.70973
7.17528
6.95028
0.212951
0.27809
0.276497
1.41279
4.90127
4.68141
0.225348
0.221721
0.261537
0.352476
0.292592
0.272955
0.22537
1.51401
0.16328
0.636071
0.217627
0.169545
1.64412
0.315739
50.3375
2.52065
0.435235
0.321604
2.46753
0.440037
0.236076
0.18144
0.661903
1.74431
0.179292
0.237433
1.69066
0.296426
1.97884
0.817411
0.24731
0.234681
1.84705
0.310908
0.327371
47.8251
2.52499
0.441357
0.334459
2.53835
0.44518
0.263943
0.191714
0.778123
1.75969
0.204859
0.248384
1.79936
17.4956
0.157405
0.11548
0.112186
19.4863
0.327406
0.49772
0.560509
16.2928
6.61565
0.0952887
0.091386
10.6306
15.8441
0.100431
0.808761
1.84042
0.746921
16.449
0.125223
26.9433
0.0979175
10.4709
0.101769
0.631957
1.78315
0.710063
17.2405
0.103774
0.0985539
18.279
16.9193
0.100764
19.5128
0.228722
0.26155
0.249122
240.294
5.67121
1.95115
7.08831
0.234535
0.324977
110.449
0.271751
9.77286
9.796
0.148503
0.218943
0.225717
2.08328
7.29593
7.23572
0.24368
0.242261
30.2173
46.6651
0.284135
63.0389
26.2823
239.288
0.116147
0.169023
20.5951
94.1474
0.120022
8.22936
2.73627
7.31414
9.80418
9.63292
25.5964
4.72756
0.136314
0.156515
0.140356
10.1749
22.2334
2.67047
7.32064
7.24836
25.9656
0.114566
18.8545
0.125271
20.6257
0.122989
13.1136
26.0374
0.151581
30.2178
0.15556
37.1262
0.134252
24.3868
0.207552
0.418956
0.234389
0.539105
0.428004
0.217977
0.244692
0.195148
0.215041
0.394107
0.527345
0.412107
0.189172
0.232554
0.111888
0.288344
0.692724
0.122438
0.13979
0.289363
0.0943828
0.152401
0.209282
0.366976
0.69554
0.172574
0.185209
0.311283
0.368419
2.04917
0.280662
0.966526
0.347117
0.295823
2.13368
0.42508
46.2747
3.17944
0.517748
0.4122
2.96572
0.550705
0.352739
0.261377
0.961681
2.22651
0.283599
0.323629
2.13615
0.229164
2.25064
0.892256
0.15636
0.178233
2.11302
0.201129
0.380482
23.1378
3.18907
0.531299
0.413262
4.30588
0.492638
0.289177
0.25791
0.887515
2.21988
0.230583
0.322432
2.03741
1.00791
0.111405
1.9578
0.099315
1.72598
0.0943197
1.39184
4.92913
0.376131
6.25895
0.734445
3.19366
15.2185
0.72728
0.704259
0.533457
0.0567837
0.0454473
0.655549
0.578671
0.0623043
4.54625
1.1005
1.64429
3.72527
3.53216
0.989331
7.18411
0.878941
0.0993556
1.09793
0.0757321
0.748682
1.61682
0.0837777
5.9209
18.8951
0.951878
1.61808
15.9428
0.954355
11.892
0.769152
0.0745975
0.0493163
0.527211
0.553921
0.0686839
1.0632
2.56611
0.120183
2.07846
0.130187
3.76102
0.128713
1.90342
24.5103
9.0797
1.82895
19.6217
9.71044
3.12801
4.37157
0.138049
0.142284
2.46149
8.27866
0.132831
23.7071
14.2143
21.8454
26.5965
14.6885
23.6411
3.13944
0.115681
16.7825
0.135497
4.02541
10.9946
0.12434
24.2502
19.8915
1.83157
9.32844
19.5899
9.74131
24.1093
2.48637
0.141992
0.155908
2.56023
2.51667
0.140083
1.9651
2.13837
2.07701
0.10925
0.132292
1.30283
1.93388
0.120004
8.82371
14.2912
2.0266
3.77458
12.6444
7.7532
3.60523
8.48808
14.2423
20.2686
15.8932
23.4215
4.77471
2.16758
0.595834
0.0739823
0.0932636
0.0971605
0.503791
0.712006
10.5258
19.8899
1.99059
9.33101
11.5996
11.2973
23.9596
1.77408
0.0816758
0.533872
0.0662744
1.05092
0.0900604
0.499023
2.46676
0.14434
2.55954
0.116175
1.98214
0.128158
0.904127
0.0675831
0.276474
0.0896235
0.74437
0.284284
0.0679871
0.0868309
0.063987
0.0843069
0.290495
0.74406
0.284626
0.0652748
0.082111
0.0656294
0.316642
0.843398
0.0795211
0.0835679
0.320537
0.0625072
0.065455
0.0839573
0.302271
0.827011
0.065146
0.0834889
0.3116
0.15026
2.23201
0.117714
0.963264
0.156373
0.113569
2.24016
0.191549
22.8982
4.55766
0.262978
0.19308
4.60117
0.260864
0.14173
0.109761
0.963575
2.28002
0.107168
0.144603
2.22437
0.141185
2.27168
1.07839
0.102609
0.108007
2.39673
0.133931
0.188584
22.221
4.60384
0.259224
0.190923
4.7313
0.253877
0.141701
0.109088
1.05816
2.31932
0.108144
0.143406
2.38451
0.214929
0.0180814
0.227487
0.0188245
0.203958
0.0172162
0.160314
1.82807
0.555271
1.60551
1.06289
1.21998
1.14308
1.15177
0.11497
0.0822706
0.0153047
0.0148823
0.0983483
0.0955471
0.0170671
1.77823
1.66247
2.79227
1.6556
1.3311
1.59094
0.768988
0.138214
0.0165925
0.126322
0.0162087
0.117752
0.223735
0.017507
1.90674
1.21764
1.40662
2.63226
1.08191
1.52254
0.782447
0.130371
0.0183675
0.0169381
0.181983
0.113239
0.0184105
0.151646
0.49719
0.0321816
0.312969
0.0325357
0.471495
0.0365846
0.455292
3.38792
14.3589
3.73483
2.5653
3.47973
3.5891
14.0334
0.505867
0.596653
0.0564198
0.0527301
0.655392
0.495413
0.0463911
3.32951
17.7304
3.80951
3.65343
17.8577
2.68946
0.492814
0.0368903
0.519548
0.0502539
0.488454
0.490248
0.0412141
3.4003
1.68024
2.59074
15.9118
3.44933
14.1072
2.53509
0.514463
0.0373141
0.0470297
0.663905
0.685686
0.0414621
0.518597
0.168333
0.255271
0.0208277
0.026266
0.157569
0.386871
0.0234688
0.772258
15.0816
3.4791
1.622
16.0042
0.764412
0.82619
0.790607
17.8921
2.93846
17.7938
2.42279
0.936685
0.158983
0.192347
0.0256782
0.0290004
0.0255274
0.165445
0.182148
0.788341
1.30468
3.23259
16.0314
15.9223
0.777458
2.21672
0.155429
0.0202739
0.163697
0.0227393
0.148854
0.0226274
0.159489
0.17356
0.0302474
0.419243
0.0302104
0.453316
0.0266918
0.196742
0.0565825
0.436535
0.0700335
0.884228
0.465771
0.0552384
0.0715921
0.0579301
0.0747736
0.502931
0.897837
0.476823
0.0592469
0.0730946
0.0555883
0.547918
0.962785
0.0637406
0.0694848
0.525807
0.0511641
0.0551239
0.0716724
0.500142
0.946961
0.0569589
0.0689538
0.510437
0.118226
2.21322
0.0897244
1.11513
0.116292
0.0914794
2.40088
0.155671
19.4617
5.26233
0.209337
0.159229
4.74571
0.204861
0.119883
0.0951998
1.12607
4.33929
0.0930777
0.122624
4.03868
0.111613
4.1141
1.20245
0.0799743
0.0875349
4.10724
0.101583
0.142625
18.3945
5.20846
0.198511
0.151331
4.93664
0.185775
0.110971
0.0909754
1.1852
4.2959
0.0869657
0.116868
4.0909
0.385985
1.37457
3.63755
0.392871
0.279694
1.24315
0.4362
0.421797
0.590548
2.21844
3.6099
0.620014
1.20116
0.4351
0.139642
0.0204607
0.103995
0.0219316
0.111152
0.024506
0.130903
1.50083
14.8985
1.40476
3.80622
1.21408
1.53253
16.5346
0.157602
0.162234
0.0271832
0.0312907
0.184292
0.143133
0.0280347
1.49707
18.3683
1.91995
1.77683
17.4589
1.38878
0.138946
0.0216904
0.120717
0.0246889
0.116084
0.131856
0.0249904
1.47897
0.781106
3.83416
15.693
1.11584
15.2961
1.20563
0.168838
0.0255094
0.0314394
0.205476
0.203087
0.0281542
0.167444
0.0495566
0.0721242
0.0113671
0.0158635
0.0500886
0.0860205
0.0120654
0.338644
14.6995
4.36528
0.399327
14.8275
0.402994
0.337409
0.346487
18.2204
1.70266
17.279
1.24811
0.361048
0.049276
0.0553539
0.0118063
0.0130939
0.0120031
0.0500562
0.0542316
0.34156
0.628825
4.33587
15.566
14.7852
0.398072
1.02153
0.0465882
0.0106427
0.0484699
0.0109798
0.0486549
0.0111537
0.0473907
0.0546123
0.0177928
0.122538
0.0142589
0.106346
0.0131327
0.0599856
0.0458492
0.541251
0.0605138
0.97411
0.53701
0.0485663
0.0569616
0.0442195
0.0551207
0.581118
0.967421
0.532409
0.0446268
0.0546083
0.0899102
4.06037
0.075875
1.21897
0.0962502
0.0711863
3.92714
0.107437
16.9138
5.97875
0.139389
0.108882
4.67455
0.13754
0.0850841
0.0685432
1.2131
4.6508
0.0678341
0.0861017
3.89778
0.0800897
4.55323
1.34992
0.0582259
0.064291
4.58656
0.072433
0.103462
16.9139
6.05613
0.132507
0.103827
5.89249
0.131481
0.0822643
0.0656474
1.3283
4.70259
0.0658966
0.0822505
4.60223
0.331202
14.553
0.385885
5.31211
0.29671
0.33582
13.9807
0.336992
31.1879
0.531347
0.381233
16.2382
0.385981
0.326754
0.225933
5.33789
16.0097
0.264905
13.9085
0.340818
0.211101
15.1968
5.66639
0.150214
15.5488
0.172251
0.112989
0.358334
31.67
0.675563
30.5567
0.450499
0.529836
0.302538
0.247199
6.65131
16.1803
15.5961
0.215295
0.387496
0.05818
4.45912
0.0483219
1.38783
0.0594856
0.0475462
5.23981
0.0705882
14.9066
6.61552
0.0867683
0.0703282
5.76277
0.0873864
0.0574049
0.0471295
1.39688
5.33195
0.0471423
0.0572952
4.74247
0.0507162
5.30889
1.45338
0.0390323
0.0419915
5.27208
0.0472156
0.0657068
14.237
6.63924
0.0840183
0.0682335
6.59262
0.0808715
0.0536185
0.0458256
1.46315
5.35385
0.0441968
0.0556562
5.32208
0.134088
14.9637
0.155057
6.684
0.137605
0.107756
25.1734
0.123767
0.168284
0.135048
0.167441
0.148855
0.12259
7.07887
27.2069
0.136081
25.3945
0.168145
0.114092
26.986
9.17611
0.0875845
26.8728
0.0922564
0.0924259
0.132817
0.169639
0.163668
0.165459
0.119396
0.113006
9.116
27.3517
27.1049
0.0888904
0.156015
0.0305159
5.32037
0.0314945
1.52308
0.0380265
0.0254827
6.11235
0.0312648
12.5757
8.48261
0.0330587
0.0279715
8.54137
0.0374297
0.026037
0.0200565
1.52622
6.00735
0.0219355
0.0235582
6.07654
0.0161968
7.76749
1.67287
0.0178042
0.0207976
0.0141273
5.73159
0.0277564
9.69494
8.13477
0.0355519
0.0300327
7.97906
0.0329411
0.0232615
0.0214283
1.51704
5.78017
0.0197093
0.0252372
5.69847
0.0865438
27.7838
0.088694
10.3455
0.091406
0.0897451
0.0835447
0.0957138
0.10933
0.0899363
0.0828976
0.0793592
10.3329
0.0844711
0.0897305
0.075173
10.0956
0.0283716
0.0367523
0.0601626
0.0925369
0.0988707
0.0952511
0.0943298
0.0911621
0.0820089
9.75199
0.0751986
0.0946596
14.9759
0.664211
5.13036
0.446496
8.73121
16.7513
0.573921
0.751848
9.80542
45.9006
45.2579
23.3938
13.3672
5.55263
0.703564
0.400898
40.7699
4.67637
0.6598
1.30237
8.45009
0.51088
5.89876
0.615626
0.511138
10.8281
14.3296
6.81494
13.5752
23.1194
4.6299
1.10039
0.398015
0.454448
2.69924
1.30166
0.310756
3.36732
0.439802
0.616614
3.94211
8.6092
1.26492
0.733518
0.250232
5.0796
0.329708
0.615027
3.10634
26.6344
1.16807
1.56531
4.02457
0.505304
0.257115
4.21562
9.04972
9.35193
0.50933
0.318613
1.02738
0.255526
0.712742
68.364
0.62195
2.18555
21.0642
0.478807
4.1937
0.435333
0.876092
0.214603
5.67065
0.238651
50.2283
0.370329
0.641249
28.5738
1.2547
5.21756
2.86866
2.34404
44.8605
7.23744
305.318
53.0742
5.49936
0.486718
1.16217
51.1288
2.98795
0.805028
422.812
1.03154
11.9569
2.12455
0.509251
0.42414
0.975375
32.0322
8.68869
35.966
8.2858
11.0952
132.036
3.03894
4.32432
0.827602
0.631146
16.619
0.359758
8.45666
40.4622
5.52431
18.8628
2.27195
2.18431
0.309693
0.201195
9.79608
0.809703
0.229502
7.77449
1.41921
2.28595
4.17365
37.9397
28.0696
2.74112
6.32767
22.9828
1.39375
1.14249
0.324766
0.435594
67.1422
6.60807
0.302926
2.29372
2.11924
1.90929
10.6828
1.18494
4.12431
1.58224
8.64949
0.659322
1.60667
0.900657
4.26333
45.001
9.5965
66
8.39068
218.991
38.549
9.17253
582.316
0.699715
5.38524
2.41179
1.07766
42.0343
0.50926
0.407389
7.15997
2.05549
44.2624
0.499543
0.301881
1.00664
0.893895
11.4722
1.62854
31.5651
0.774137
0.712339
644.153
0.482708
2.43515
0.939933
59.9527
0.382652
1.91784
0.331172
0.526688
0.27534
1.63218
2.65273
0.421869
0.39839
2.3919
4.0154
6.07271
2.00723
0.562438
0.360059
0.296166
2.4952
4.04407
3.10076
1.34123
0.405859
0.650814
1.59323
0.405163
139.824
1.95605
0.524891
0.48439
2.7469
2.46389
5.61381
2.29092
3.48083
1.40643
0.784729
0.52473
30.2452
0.535616
70.2376
1.47974
0.601507
1.98776
22.02
1.17528
0.806739
5.75339
0.309235
0.438405
0.216464
5.63717
0.183903
0.387631
2.47112
0.586088
2.52405
0.921085
1.25404
5.35453
0.514222
0.865757
5.45948
9.41151
17.5323
0.991531
37.6668
9.71137
6.43544
21.2357
0.73282
1.05118
1.67094
45.4475
2.1058
0.781691
1.08908
0.601171
2.87011
0.950306
70.0973
0.576379
1.94985
0.98718
0.753168
5.96001
2.91363
3.5983
3.70267
0.949149
156.005
2.14293
3.12769
7.48823
3.48332
1.11283
0.772799
0.692609
0.585854
1.64078
21.354
7.01287
4.37436
1.57326
1.73955
6.77322
0.895736
1.37734
1.08945
2.40627
0.718103
24.3173
23.0917
405.655
0.637885
0.527749
7.12937
0.5499
452.68
0.39825
0.444719
0.480959
16.5213
0.732624
0.547981
0.556624
1.37071
0.846616
0.636738
0.478523
5.72871
38.0445
0.274877
209.264
0.355718
0.352545
5.95703
11.3304
58.767
4.11401
12.9088
36.0409
12.1196
6.46312
2.54729
11.88
0.340866
164.317
0.430872
1.8925
0.589312
3.24781
0.292483
0.306997
0.289388
6.09055
1.01744
0.354763
2.85063
0.255516
0.452748
467.695
0.724922
10.7915
0.556201
0.827453
4.98892
46.2257
10.3311
6.11916
2.15157
1.29444
2.90574
43.522
2.7623
5.43466
6.5898
1.49477
3.18874
0.214668
0.34792
5.5544
2.04265
0.287379
0.238017
1.36386
0.241478
4.53149
0.226548
0.754755
0.279815
0.963193
0.208394
1.10212
0.347479
0.544321
4.83105
0.376384
1.00302
18.8615
1.68112
0.482432
0.51374
1.49366
3.08966
4.54637
1.12065
0.602937
0.4735
23.2814
0.436423
1.32259
13.7079
3.10865
45.5242
2.64704
192.573
0.928577
0.345866
4.41018
0.483114
0.953011
0.354171
3.33428
1.516
0.482152
0.517443
1.4315
2.50947
11.9781
15.3621
1.93192
2.62436
36.4363
2.46684
16.2503
0.781052
0.501381
0.372397
2.51673
0.378209
3.19436
0.735127
0.587274
0.978489
1.64579
3.8858
0.852402
0.655637
1.14674
0.423026
0.772448
4.03046
0.516645
0.638831
0.971024
0.350631
0.918767
13.4833
1.14142
26.7259
1.47556
3.61996
15.8331
2.37126
0.717538
72.8995
2.16778
28.3028
1.59826
1.67468
15.5624
2.28563
17.7739
0.761787
1.15575
9.2366
1.03877
17.8404
37.2737
1.25604
4.94141
1.41931
197.241
46.3266
0.763697
5.77933
1.00418
10.0679
1.0975
1.68233
5.38431
1.43316
0.180858
1.57492
1.06544
0.178373
3.18458
0.181952
0.169562
0.287645
0.367544
115.01
13.5184
4.88825
0.42052
0.391433
0.224194
1.96612
60.2406
0.231137
3.95229
0.274647
0.197878
0.237037
1.455
31.8566
0.222502
4.03276
0.283262
0.21261
6.35871
2.10318
4.66373
23.8476
3.91001
3.44902
6.77044
40.6763
3.98722
1.82834
2.58133
4.07954
0.121727
1.43108
0.141083
0.488235
0.145668
1.00498
0.120674
0.122386
0.102837
2.06671
0.684597
0.125778
0.754359
0.102256
0.126897
1.60146
0.175258
3.42509
0.144371
0.152338
1.18267
5.90011
1.41876
1.89981
2.15517
0.794267
146.114
1.62555
5.57715
2.64783
2.49689
1.02692
0.674996
26.6057
132.095
1.51171
0.145062
0.864517
0.192908
0.64431
0.176889
0.207369
0.49669
2.03769
1.35434
0.936464
216.219
11.2219
0.599951
0.754655
0.750149
43.0056
1.67338
0.707627
0.846636
0.916488
26.2812
0.829536
0.805575
46.2591
0.533285
0.188482
0.27625
1.8965
0.201062
0.53084
1.86922
1.05601
0.409905
0.412644
1.06736
1.58582
11.1441
1.90172
7.59288
0.603907
0.340136
0.278592
2.65947
0.250475
0.662058
2.20482
1.60147
6.2863
1.63929
7.23025
0.481381
0.162279
1.82088
0.236763
0.503078
0.169088
1.50171
0.913059
0.39192
0.383469
1.0211
1.34081
3.60909
4.01267
1.3316
1.33163
5.64229
1.54286
4.27306
0.492421
0.233253
0.201496
1.43143
0.183906
1.44396
0.517647
0.42968
3.05955
0.639272
3.00758
0.695409
95.9845
16.1826
12.1208
1.03513
2.19773
0.824509
0.528732
4.70603
0.814212
3.68106
0.850332
10.2092
11.2546
0.608702
1.91679
0.736321
32.8059
2.88826
0.35896
0.567992
2.27639
86.8127
0.559551
4.92414
5.59608
74.4392
0.794761
1.03123
0.482898
30.6383
8.42212
6.29588
31.076
0.339889
2.0719
0.541563
2.11463
0.512513
18.1932
79.5278
0.529289
1.22057
0.529805
0.0829309
0.0972684
0.664884
0.445983
0.350393
0.0824309
0.0979331
0.922704
0.536553
0.853441
1.0079
0.581491
0.81869
0.934236
1.22289
0.891623
0.489041
0.499043
0.755993
0.715501
0.839839
0.584755
165.277
10.915
0.901522
0.4837
6.77754
0.768411
41.3084
19.8998
0.9054
0.782125
0.658327
634.349
0.519175
0.431191
5.83327
6.39334
0.676823
53.8929
35.4965
0.522333
0.712914
101.927
0.622177
40.7023
12.7284
21.3085
2.83735
0.346014
0.271987
0.368543
41.6744
4.80071
31.3319
0.457512
0.445479
0.550527
16.0105
24.3457
0.438556
5.62308
0.295354
45.1095
0.403715
5.07586
0.941028
0.539777
0.516811
0.940852
1.26118
3.64172
1.35766
4.05103
0.544226
0.255824
0.202528
1.40903
0.220618
0.533684
0.805227
1.25479
3.55281
1.23325
3.92239
0.777706
0.511794
0.438411
0.916895
1.03342
2.68181
2.88784
0.989266
1.00916
3.44095
1.20798
2.69549
11.0828
0.302783
1.65833
0.407046
1.70625
0.431302
4.72112
65.3089
5.03878
3.72105
15.5519
0.729114
0.763987
29.1706
0.730526
63.7048
11.5034
0.360948
2.00566
0.511961
17.0629
1.75021
0.532608
64.2758
3.14566
3.61249
27.9816
14.6507
0.597971
0.648467
0.64608
11.1811
3.43093
1.53811
0.216276
0.366935
1.27154
4.51449
0.307533
16.2806
4.09305
4.48792
12.2558
26.7939
56.0928
7.13693
69.1797
0.375374
0.482538
0.360775
4.31324
16.5377
3.04613
2.4677
27.8907
3.22645
0.177501
1.21087
0.261139
1.24109
0.247859
3.03336
7.24329
0.547218
0.629661
12.4813
0.456913
0.502397
41.2585
0.346591
0.493033
26.5125
0.299001
0.417746
82.4539
0.411047
0.425883
0.292339
0.402369
0.285677
0.320052
11.0567
45.4373
0.44255
24.9265
10.0728
0.428613
36.9591
0.311787
145.522
0.342518
6.08083
58.622
5.57323
2.74055
0.324563
0.227089
2.3319
39.0968
0.293579
36.0302
9.77884
8.84215
24.8834
11.9641
0.544759
0.40226
178.225
14.9081
0.37553
51.2174
32.9854
5.53193
0.25012
0.204708
2.16394
2.22323
0.272924
4.97161
4.59357
33.9205
0.310698
0.293661
20.5416
5.82215
0.261589
19.2277
126.523
43.2157
15.3662
9.58214
24.2332
5.01229
4.93099
1.01174
0.17523
0.165411
0.197379
2.85179
1.42154
21.6212
31.9836
4.45511
0.276824
32.2572
0.207833
18.9271
0.227312
5.33082
5.12291
0.239446
2.07644
0.188754
4.7876
0.232216
1.53567
0.737477
0.401844
0.411386
0.692963
0.921249
2.61754
0.984397
2.21455
0.934525
2.00456
0.874736
2.19999
0.660397
0.406955
0.416607
0.677329
0.847324
1.56122
1.72338
0.838862
0.813545
1.91344
0.849779
1.68599
2.35454
0.127284
0.690843
0.114795
1.06308
0.169035
2.03682
8.25461
3.89713
12.2717
3.16185
3.39324
47.9895
0.296624
0.287142
4.26383
0.244048
27.9012
10.953
8.25227
2.45734
0.132268
1.15803
0.207599
2.98199
1.05215
0.176896
8.29342
2.82095
3.15275
6.55977
3.23398
0.156566
0.270049
15.6547
0.232599
2.77202
27.2062
1.59608
0.629652
0.0366927
0.0807949
0.554212
1.92564
0.0454321
4.80496
2.06902
2.34759
3.84807
5.87836
284.321
8.79115
39.52
2.12879
4.65886
0.0600237
0.0612297
0.0565454
1.91483
10.4448
4.78122
2.68214
2.29901
6.76518
1.68806
0.0369979
0.579043
0.048713
0.574339
0.0442803
1.57728
2.1214
0.107025
19.0662
0.0665766
2.63196
0.0593719
10.5968
4.11067
0.166607
3.33767
0.148411
32.9612
0.150242
3.96548
35.67
4.62681
4.33645
0.164999
0.122234
2.44836
20.258
0.149209
31.3866
6.75523
22.0595
13.129
5.45583
0.188455
30.3321
0.176436
11.4876
22.7178
0.179329
32.4492
23.5593
133.219
14.3429
3.78696
0.142487
0.133202
2.1598
2.91591
0.140675
3.59393
1.75442
0.166383
3.97171
0.129367
3.49331
0.146322
1.5516
7.2939
80.2011
31.0251
36.2263
1.61753
1.02157
0.153366
0.127392
0.908247
2.01465
0.140559
6.39984
4.17824
4.79321
7.73216
2.10027
0.187595
20.8445
0.188412
3.68402
4.91647
0.169082
6.85645
19.1041
28.8273
6.95342
1.62719
0.12058
0.11472
0.799787
0.905536
0.128773
1.70795
1.5189
3.84512
0.140127
0.116354
4.33963
1.52333
0.123065
8.49715
5.63435
36.6781
7.70839
6.72913
3.81849
7.36318
4.58055
1.40265
0.542327
0.102832
0.0981816
0.112455
0.879683
0.56069
6.53954
18.8894
52.8139
6.83887
1.59953
0.125445
1.21183
0.108302
3.60734
0.117301
1.46627
1.48968
0.109948
0.729698
0.10596
1.6473
0.120777
0.59851
0.748063
0.4823
0.530039
0.689269
0.884286
1.54367
0.870441
1.47894
0.873368
1.36974
0.81157
1.47878
0.635671
45.0112
0.705772
0.649656
0.711859
0.647872
0.970857
1.17604
0.514343
0.750023
1.40793
0.837425
1.29622
0.711034
0.0470059
0.484099
0.0439977
0.596449
0.0511853
0.654759
4.44556
2.0086
3.65762
1.88489
1.72997
4.18493
0.0653131
0.0534239
1.84569
0.0632787
3.54157
3.67877
11.4077
3.21236
14.1845
0.805182
0.0533577
0.591018
0.0561459
1.56003
0.643324
0.05778
4.44293
1.73298
1.88556
3.91889
1.67414
0.0490458
0.0494588
2.91557
0.0571592
1.48788
3.33641
0.842802
0.582828
0.0840983
0.0707386
0.681757
0.765272
0.0930648
3.12721
1.22813
1.47714
2.62038
4.58302
10.8233
5.39511
8.65274
1.32203
1.90765
0.0721776
0.0610077
0.0758614
0.945079
2.41234
3.34733
1.76975
1.6126
3.97143
1.58018
0.078818
2.79373
0.0859003
1.51323
0.104544
2.83674
0.979918
0.127469
1.31368
0.122468
0.993942
0.12911
1.43522
4.16072
18.7042
5.41021
4.62149
0.841978
0.622864
0.0995101
0.0983325
0.889862
0.694009
0.109012
4.38304
1.99863
4.64299
6.77278
0.864869
0.131914
2.75821
0.116516
1.2214
0.814141
0.120038
4.34803
5.50318
4.90538
7.4923
0.977595
0.118952
0.110833
0.696734
1.06087
0.122119
1.37431
0.898577
0.108974
1.43725
0.107541
1.31605
0.103597
0.637935
3.18224
5.38892
5.35749
7.22089
0.785845
0.542033
0.103515
0.086189
0.514307
0.864501
0.101877
3.18085
1.88097
2.17128
3.61478
1.00526
0.111526
1.18264
0.112023
1.296
1.45335
0.111474
3.12166
6.01739
5.36961
3.24273
0.747773
0.0993098
0.0791583
0.451842
0.467619
0.0957285
0.537109
0.582112
1.46664
0.121395
0.108368
1.31762
0.603776
0.114004
3.31841
1.9307
7.48177
3.70815
3.97698
1.78129
3.51526
1.75856
0.548657
0.308084
0.102231
0.0752594
0.109996
0.537384
0.345752
3.39821
5.84155
8.91084
3.15626
0.59684
0.116343
0.518809
0.107317
1.1274
0.113155
0.482205
0.55828
0.101966
0.431434
0.075396
0.526279
0.108986
0.378207
0.261994
44.2626
0.360637
0.360388
0.269554
0.362154
0.832832
0.419532
0.704813
0.323474
0.629968
0.330891
0.63268
0.242051
42.8891
0.354336
0.346394
0.260741
0.290712
0.472389
0.550998
0.252528
0.297141
0.617939
0.320988
0.562982
1.95511
1.07171
2.40708
0.901081
0.307766
1.45502
0.04732
0.0307882
0.437982
0.0256584
0.883345
2.36386
2.73936
2.14748
3.30643
1.75673
0.783398
0.800615
1.64438
0.184091
0.00772127
0.010252
0.559487
0.00888233
0.189036
0.551642
1.4476
0.586064
0.684272
1.21597
1.89497
2.60609
2.17045
1.98162
0.105937
0.242756
0.00594233
0.00796657
0.00676859
0.0930561
0.288078
1.47058
0.773758
0.699468
1.65376
0.125027
0.00791245
0.50103
0.0080916
0.168672
0.00699468
0.296333
0.266011
0.0446835
0.282486
0.0488005
0.261689
0.0440035
0.309466
1.72534
2.73966
1.26842
0.976777
0.23116
0.197951
0.0330954
0.0377149
0.208434
0.191828
0.0377357
1.95211
3.05419
2.11758
2.84094
0.250586
0.0403737
0.359323
0.034105
0.253495
0.206572
0.0386436
1.96798
2.37613
1.36762
2.73348
0.24747
0.0474265
0.0427162
0.327564
0.268089
0.0425982
0.318187
0.423346
0.0620491
0.352222
0.0548462
0.347079
0.0626373
0.375439
4.41157
1.85251
2.0991
3.65336
0.335135
0.28204
0.0876867
0.0519854
0.237455
0.457028
0.0666171
1.62085
1.22713
1.34786
1.03169
0.446781
0.0750018
0.450158
0.0937315
0.409419
0.462533
0.0774021
3.64294
2.70886
2.38281
1.65008
0.23447
0.353095
0.0506701
0.047097
0.370253
0.313204
0.0398873
0.893589
3.23046
3.21999
0.892123
0.970137
1.20019
0.998303
1.02251
0.937218
2.72987
3.11665
1.32769
0.174368
0.0462821
0.292859
0.0300276
0.349437
0.0336297
0.150906
0.152541
37.5117
0.277318
0.272095
0.150631
0.188548
0.378866
0.204247
0.338452
0.184304
0.31733
0.181277
0.329652
0.124491
35.4376
0.262281
0.243683
0.141944
0.145928
0.157319
0.247467
0.0963243
0.148333
0.300401
0.17084
0.254093
0.784152
0.468405
0.947197
0.412154
0.0459698
0.0651709
0.00477794
0.00488916
0.0514756
0.004334
0.056464
0.947107
1.72012
0.894972
1.9029
0.760425
0.38659
0.401181
0.722589
0.0378838
0.00278771
0.00306521
0.0418411
0.00281983
0.0346549
0.0458102
0.518485
0.187262
0.297848
0.312381
0.663437
1.62192
0.84829
1.19733
0.0307401
0.026461
0.00138708
0.00223019
0.00207079
0.0218922
0.0380419
0.537575
0.366432
0.306598
0.684102
0.0333154
0.00241276
0.0361613
0.00303237
0.0298987
0.00275692
0.0413503
0.0852646
0.019592
0.0985617
0.0198292
0.0883486
0.0183153
0.0976962
0.472081
1.0645
0.520501
0.369985
0.0729511
0.0636476
0.0144307
0.0160408
0.0760466
0.0616331
0.016051
0.550669
0.696608
0.584871
0.668646
0.0718829
0.0187136
0.0948724
0.0153294
0.0833105
0.0635202
0.0166671
0.532634
0.601846
0.54835
0.63188
0.9167
2.05792
0.594413
0.912063
1.05886
0.589899
0.62407
1.13553
0.131856
0.0248831
0.164469
0.0274431
0.114328
0.137845
0.0257745
0.918305
0.617715
0.595148
0.993138
1.10289
0.760596
0.735923
0.755019
0.846548
0.555503
1.16702
0.492983
1.04892
0.629726
0.6836
1.03874
0.0588623
32.5149
0.179445
0.17719
0.0537634
0.0746153
0.161139
0.0970628
0.118947
0.0682315
0.0972299
0.0622188
0.107569
0.0465192
32.4701
0.170037
0.16784
0.0472508
0.0505206
0.0571205
0.0761157
0.0359868
0.0531805
0.0835858
0.0544546
0.0806279
0.226905
0.192897
0.32741
0.139984
0.242
0.334787
0.208909
0.388615
0.20138
0.113294
0.126052
0.174839
0.126489
0.0664342
0.0871384
0.1043
0.160534
0.268847
0.171327
0.260398
0.13753
0.0964935
0.0926687
0.144878
0.198598
0.766116
0.47984
0.463816
0.184381
0.211246
0.184411
0.214364
0.198268
0.822307
0.467276
0.241539
0.39342
0.831516
0.909334
0.58311
0.367846
0.455884
0.459432
0.380769
0.369772
0.833441
0.907544
0.356157
0.332961
0.228826
0.23318
0.331741
0.356781
0.413057
0.368819
0.392932
0.326269
0.8604
0.262023
0.345158
0.0169047
28.7777
0.107578
0.108704
0.0176086
0.0201035
0.0265334
0.0193607
0.0277002
0.0185644
0.0264134
0.0193816
0.0247259
0.0167551
27.7881
0.103932
0.100025
0.0162931
0.0190812
0.0267063
0.0267177
0.0187166
0.0184903
0.0240738
0.0178515
0.0258875
0.0399163
0.029113
0.0374686
0.0303611
0.0343938
0.05164
0.0403752
0.0468349
0.0333821
0.0288135
0.0266883
0.038195
0.0414696
0.0295798
0.029497
0.0417039
0.0445565
0.0447577
0.036023
0.0526721
0.0402851
0.0261813
0.0286069
0.034214
0.221621
0.185567
0.221705
0.183494
0.236715
0.246415
0.213788
0.261225
0.228975
0.234162
0.224382
0.253589
0.336376
0.219763
0.234232
0.314211
0.368806
0.133528
0.171615
0.386706
0.341904
0.257052
0.242531
0.361516
0.378873
0.264143
0.277297
0.360506
0.402202
0.127839
0.378666
0.117685
0.379176
0.251237
0.270529
0.353759
0.00716585
24.9191
0.0393421
0.0451197
0.0470947
0.00919374
0.0212949
0.0148536
0.0126986
0.00770177
0.00819255
0.00627711
0.0100979
0.0478479
11.2799
0.0424193
0.0394457
0.0511603
0.00366311
0.00870259
0.00459268
0.00648834
0.00730467
0.00784361
0.0063442
0.00997274
0.0186871
0.0236451
0.0334986
0.01394
0.0145799
0.0135412
0.0111638
0.0175817
0.0132745
0.00878429
0.0108619
0.0103297
0.00542023
0.00955372
0.00486698
0.011713
0.0145475
0.0105789
0.0095485
0.0191783
0.0133534
0.00825487
0.0109001
0.00910194
0.125455
0.106064
0.158963
0.0968533
0.105128
0.0415055
0.0367693
0.165814
0.145319
0.305582
0.18739
0.242773
0.351068
0.275666
0.275302
0.379789
0.346994
0.076656
0.0861048
0.120653
0.3921
0.326832
0.296224
0.298882
0.0590899
0.0436669
0.193137
0.049147
0.0723133
0.0736598
0.0865366
0.0860526
0.0777022
0.340293
0.288172
0.210258
0.0301077
10.4877
0.0271257
0.0255887
0.032035
0.00593489
0.00705205
0.00542127
0.0078488
0.0061376
0.00931841
0.00683873
0.00829013
0.0290964
8.83452
0.0264108
0.0245389
0.0310442
0.00622995
0.00368776
0.00841643
0.00285039
0.0068484
0.00885693
0.00663248
0.00942699
0.0105619
0.00764885
0.00902101
0.00863157
0.0129661
0.0212102
0.0149792
0.0184045
0.0119457
0.0104452
0.00923547
0.0137696
0.0127557
0.00407569
0.00946896
0.00526037
0.0163237
0.018129
0.0135751
0.0229365
0.0148358
0.00985486
0.0106819
0.0126468
0.0388752
0.0378316
0.0366182
0.0387061
0.0335135
0.0371131
0.03653
0.0350536
0.0391149
0.0416218
0.0389523
0.0410204
0.0489898
0.0414337
0.0409505
0.0480566
0.0482866
0.056904
0.0591124
0.0472241
0.0458229
0.038772
0.0391026
0.0449679
0.0428424
0.0380623
0.0363795
0.0433684
0.0534616
0.0708427
0.0556259
0.0650671
0.0504279
0.0433511
0.0426029
0.0521492
0.0121746
8.08181
0.00815719
0.0107224
0.00901567
0.000889821
0.00122456
0.0010202
0.00102213
0.0015288
0.00118945
0.00102472
0.00180745
0.00975286
7.00718
0.00574174
0.0087106
0.00603292
0.00908154
0.00137952
0.000939049
0.0122855
0.0106935
0.00100115
0.000868981
0.0011543
0.00107926
0.00127688
0.00138742
0.00104164
0.0022726
0.001084
0.00157706
0.00139194
0.00223201
0.00123286
0.00191196
0.00137956
0.00106623
0.00142146
0.000963398
0.00162374
0.0013816
0.000970729
0.00116873
0.00114034
0.00135605
0.00102966
0.00119445
0.0011322
0.0300276
0.0243196
0.0222997
0.0330282
0.0306463
0.0374643
0.028212
0.0377576
0.0329171
0.0397297
0.0358915
0.0381316
0.0450895
0.0388289
0.0398944
0.0436214
0.0442816
0.0571791
0.0464789
0.0523302
0.042539
0.0432138
0.0382631
0.0496659
0.0454109
0.0392481
0.0390506
0.0457991
0.0436988
0.0489698
0.0423105
0.0472353
0.0424595
0.0404414
0.038642
0.0453563
0.00786277
6.29696
0.00683142
0.00707741
0.00763589
0.00890094
0.00213622
0.00945608
0.00193631
0.00857076
0.00148048
0.00844759
0.00124297
0.00834055
5.72409
0.00750027
0.00735175
0.00848121
0.00727237
0.00171598
0.0079846
0.00168172
0.00947531
0.00135857
0.00955945
0.00192717
0.0024667
0.00225275
0.00282765
0.00202095
0.00152104
0.00214907
0.00160936
0.00188329
0.00144617
0.00152389
0.00127202
0.00175979
0.00195436
0.00178825
0.00200052
0.00172837
0.00256863
0.00187994
0.00323134
0.00167079
0.00235842
0.00139163
0.00200146
0.00157176
0.0212927
0.0186376
0.0225855
0.019605
0.0195142
0.0150718
0.0137172
0.0257612
0.0220781
0.0297249
0.0212697
0.030613
0.0450964
0.03569
0.0377039
0.0422584
0.0495167
0.0195592
0.0310962
0.0462583
0.0479561
0.0356238
0.0386901
0.0455872
0.0388115
0.0166114
0.019846
0.0290921
0.0471791
0.0146712
0.0139692
0.0426898
0.0472328
0.0333042
0.034838
0.0425668
0.902993
66.993
34.876
5.32235
3.21927
1.26378
1.47145
3.22932
22.7711
0.812571
3.7551
0.374489
1.25132
2.37625
7.15644
0.603286
0.696935
1.28811
99.0336
0.949053
0.295759
0.337379
2.80094
0.61864
3.75879
460.025
13.5053
4.76084
10.7091
1.48485
63.8909
14.6731
2.49595
7.9045
17.336
260.15
0.522675
2.01411
19.3472
1.1831
5.87362
495.322
0.812093
69.154
5.38014
4.17055
0.994255
0.945427
57.4042
13.3402
0.41982
0.707347
0.723319
2.4559
87.1646
7.20338
17.2523
1.70856
1.81908
19.8877
0.580201
9.43482
0.68741
0.285985
8.84145
0.307588
1.2491
2.66727
0.18744
0.711719
21.8798
3.54839
3.08207
1.24159
4.9846
6.95465
1.21525
26.6626
2.18727
74.3939
6.19814
8.55051
30.4591
2.17209
39.072
39.0509
4.60477
5.92392
1.1327
19.5037
1.59006
497.831
0.46002
2.70334
1.35775
2.68286
1.24224
5.81853
5.91323
18.2223
1.6584
1.7498
46.348
56.9805
4.62523
5.10168
0.512269
2.64607
1.61803
2.52347
1.61885
2.85174
2.4426
5.79419
5.49364
1.79237
2.08465
10.0799
0.885649
1.43131
0.466155
18.407
0.796045
1.36674
240.159
53.5326
3.80297
1.68146
16.0584
2.31786
30.2262
2.81835
48.3868
3.11192
58.4577
1.176
4.07754
30.6941
0.981388
36.8235
3.80198
109.479
3.55093
10.0527
0.387904
0.612778
0.964902
8.25266
0.670926
1.15265
0.915563
2.99086
3.43641
3.28886
2.91312
0.972847
0.874522
2.94827
2.72144
3.13932
2.77652
0.843749
0.693025
2.4131
1.76818
2.4587
2.07289
0.668472
0.787518
2.71848
2.67652
2.59525
2.57542
0.822092
0.247861
51.9707
0.209343
0.828511
0.349461
0.160891
2.7694
0.208581
6.69171
0.696747
0.247932
0.316891
0.167079
2.06827
6.0033
7.62336
57.4503
3.52566
1.3118
246.622
2.53917
1.40593
2.01748
0.740973
0.957156
5.2226
1.80416
0.811265
8.13957
3.50693
1.29886
6.45451
1.20378
2.56453
355.961
0.635649
0.874899
3.36448
0.664179
10.6602
5.87828
12.244
3.66513
41.2814
704.845
3.49443
11.6416
59.5157
3.3918
11.1695
2.38215
2.42604
12.0057
5.44116
5.58176
3.20013
3.44263
0.394536
2.2477
1.55433
2.58637
1.17393
6.42594
6.22766
4.57587
3.38093
152.793
1.70515
1.43803
8.13199
1.97503
23.309
82.9036
3.75923
2.12926
2.14339
1.42565
1.81531
2.00548
25.994
17.6181
90.0109
7.15855
6.83043
0.457414
2.29883
1.94156
3.00057
1.86887
5.93647
5.9774
6.42867
6.4911
5.74831
6.00734
14.9742
25.3043
6.33249
260.534
1.34593
0.602411
3.63289
0.747059
21.3767
1.56069
11.4187
1.68118
7.45231
0.672178
1.62338
9.03097
0.633683
21.3197
2.09752
16.2345
1.94187
0.340338
1.79218
1.61462
1.48284
0.390206
1.79595
0.376692
1.47194
2.04099
1.52855
2.01655
0.362893
0.407425
2.24396
1.34806
2.15005
1.38829
0.413251
0.371099
1.45317
2.01382
2.03068
1.42398
0.364102
24.8348
23.667
1.41782
1.84777
0.843067
40.0574
1.37524
0.77267
0.464534
2.57155
6.10211
0.670526
0.60429
22.6886
0.958333
335.35
0.564398
2.6909
0.907117
0.60821
23.7656
1.21596
14.015
0.894396
1.02223
38.1348
1.09973
5.22058
36.1707
5.29644
58.6616
39.8016
3.62173
8.79037
5.98495
8.36582
0.870118
6.51068
0.396914
3.26839
63.1209
0.515618
62.2817
36.3184
5.79425
0.34995
0.159314
3.32562
12.053
0.310214
1.95337
62.8153
17.1012
13.2071
4.70254
0.645999
0.170483
0.113898
1.99027
0.22459
1.66779
56.9676
8.15166
146.48
7.10903
6.78784
5.85501
8.40196
3.11518
0.38048
1.94823
1.65036
2.34455
1.79936
5.85248
5.82196
2.35591
2.97574
3.02897
2.59993
1.73008
7.80442
0.563604
0.145083
0.159203
1.95054
0.145154
1.49983
0.809757
2.69449
2.02087
2.02031
3.7032
2.5842
1.0644
1.34253
1.962
3.91874
9.98035
11.431
4.33838
11.1974
10.5417
0.353338
1.96726
1.5889
2.02911
1.24015
2.69868
2.72998
5.9539
8.97033
2.27249
2.81412
7.58552
229.097
6.29053
49.6337
1.79156
6.47022
0.403953
0.214102
1.58915
7.45843
0.247632
5.61622
0.925151
3.26846
1.05318
1.86615
0.303184
49.9076
0.453951
2.15809
10.1861
0.273906
5.62273
1.19801
6.63504
1.10286
0.3432
2.01798
1.21552
1.21287
0.352544
1.83047
0.305083
1.07549
1.69354
1.16492
1.73519
0.291277
0.296895
2.59395
0.853916
2.63919
0.965952
0.282849
0.288937
1.00709
1.66871
2.3518
0.982541
0.284063
7.60365
16.3236
3.44178
30.3291
11.3153
5.73559
2.92556
10.9914
50.7601
15.8812
0.0641161
2.53037
0.103784
6.3646
0.0664881
2.11969
0.0901476
0.0509933
4.20243
0.917034
0.0572785
0.0457138
1.48918
0.0714707
7.08159
37.4674
4.64913
1.41731
3.20534
4.40431
5.40417
1.70337
5.43508
25.4038
4.84535
6.98132
0.300381
75.9573
0.25666
0.330701
0.397053
0.640148
1.79456
0.809445
1.44411
0.578536
107.584
0.704301
0.314655
1.3631
0.380147
0.833114
0.399109
0.456721
11.0256
11.0324
2.60583
2.79704
0.471954
2.56939
2.28162
2.64613
2.08677
2.70338
10.7027
3.77637
2.83407
0.188998
0.156297
9.55668
780.041
0.128541
0.235657
57.9632
0.214108
0.128498
5.94057
6.96778
41.7105
0.137821
0.229502
0.147956
6.18302
0.0785897
5.98075
0.10258
38.4383
0.107629
0.270625
0.464499
5.22619
0.357386
59.6194
0.285643
43.0132
3.51982
2.54103
0.431043
2.45643
2.25072
2.32684
1.59272
3.92435
60.0712
6.76443
2.85422
2.59045
2.46805
34.3913
63.3235
3.05423
11.779
2.14586
3.0572
12.3699
4.54737
8.94767
0.768992
2.23487
0.196885
0.156256
0.730725
2.21628
0.164997
2.24103
0.85494
2.19311
0.684263
0.812208
0.187218
2.67546
0.210307
0.859264
2.22415
0.174574
2.2559
0.744811
2.63687
0.690237
0.247152
2.48332
0.781214
98.7809
0.746336
0.262298
2.44354
0.223742
0.71644
96.9263
1.30018
0.719269
2.35253
0.212411
0.18106
1.31154
85.443
0.628251
1.19229
0.651498
0.175662
0.188026
0.678607
86.4618
1.22258
1.18944
0.661071
0.19328
1.33251
7.38771
2.53282
0.983441
2.87744
2.22553
1.1977
0.826653
1.93256
4.93727
4.3219
3.15557
1.18948
1.47179
0.769374
312.189
0.241799
0.324479
0.378858
1.07323
0.360278
0.688919
0.839642
0.385055
0.465604
0.0487562
0.817084
0.0234673
0.620175
0.0389798
1.48944
0.0308173
0.0668064
0.0835151
4.61688
1.42356
0.0565782
0.0974731
1.67339
0.0541906
0.919292
0.046438
3.84405
0.0387074
0.067828
1.71259
0.0628413
0.721159
1.00206
0.0247521
0.0485444
1.65508
0.0375491
4.82295
2.57946
10.0503
3.87924
4.40344
3.93563
58.736
6.0993
0.81395
10.0856
0.018023
2.51251
0.26251
0.411299
2.67128
5.83436
60.2662
11.6233
4.06738
4.33086
2.60301
3.67862
0.338793
0.664351
9.143
0.039176
0.025463
0.182633
0.382032
0.0309396
0.0331551
0.275839
0.0273037
0.10678
0.0193002
0.123273
0.02283
0.158135
0.0237322
0.0495551
0.363275
0.0349314
0.213101
0.0346762
0.0400475
0.381296
1.86817
2.22118
3.48981
3.12095
3.56834
0.0113096
2.44292
0.207821
0.174314
2.24679
0.321809
1.0376
0.271283
0.676391
2.69587
3.98048
3.66356
1.06493
1.12074
2.12529
2.07687
0.255128
0.432177
0.586817
4.17829
2.19233
5.04191
2.41331
5.10124
0.405911
0.693905
0.145933
0.0815723
0.371357
0.771515
0.0908564
1.45871
0.464236
1.27399
0.494016
0.467016
0.109323
1.4173
0.164576
0.492522
0.834662
0.105408
1.62683
0.526686
1.77003
0.50941
0.166327
1.08262
0.586729
76.3539
0.552208
0.16517
1.27553
0.160581
0.519214
75.3328
1.1919
0.537902
1.253
0.15483
0.127421
0.894417
64.0749
0.445529
1.00612
0.469236
0.12281
0.135944
0.498928
65.2761
1.14692
1.05377
0.486649
0.144633
0.164403
0.279886
0.210575
102.848
0.41754
0.236627
0.187842
38.6924
0.170232
0.386703
23.6732
0.228876
36.0278
0.262712
0.280472
0.21244
0.136549
0.104343
0.0717685
78.6573
9.25337
0.0823908
0.110458
13.8376
0.114569
46.7473
0.229572
21.2955
0.0906058
14.2008
0.126395
0.0915121
0.157427
0.0610437
76.5503
0.330338
0.547275
0.461347
3.14608
2.8889
0.351438
1.06448
0.0391511
0.199205
0.329677
0.00564633
1.14578
0.138044
0.116917
1.65371
0.299742
1.00825
0.397413
1.27079
2.75941
0.564148
0.0296785
0.0877671
0.146087
0.494678
0.119977
0.486069
0.158752
1.42243
0.864674
0.121147
1.11998
0.134947
0.515649
1.43908
0.155059
0.178725
0.106593
0.313422
0.151813
1.21998
1.4214
0.108274
0.20372
0.148626
0.49632
0.0980563
0.252922
0.369295
0.16561
1.1295
3.87973
1.34065
2.20258
0.951021
67.5498
0.257658
0.845331
0.271189
0.959868
0.290872
68.4609
1.02457
0.278857
0.10686
0.876628
0.428655
53.1288
0.40659
0.112593
0.815275
0.0997575
0.258916
51.5741
0.71827
0.359515
0.761945
0.0855782
0.0659399
0.67883
14.697
0.20814
0.586896
0.217164
0.0616612
0.0746229
0.235206
14.9392
0.680435
0.691653
0.227323
0.0769114
33.9442
0.0776234
0.108594
0.0951437
27.5292
31.8812
8.76833
0.0614201
0.0952649
0.0740708
4.87473
38.8145
15.2528
21.6223
31.4461
0.0606666
0.0578192
3.88317
0.0712527
4.52748
19.3865
34.9794
0.108454
0.133927
0.0973711
47.207
15.3668
0.102024
348.174
0.104225
24.7295
0.118357
39.3947
44.8171
14.3415
10.5122
10.316
2.40313
0.0649273
0.069817
2.99035
0.0701972
4.86446
46.7673
40.3376
12.5528
0.0845899
3.6388
0.0935913
3.52306
16.9046
0.103979
71.8105
12.3064
0.0681078
0.0785882
33.9723
0.0786616
36.4204
9.55122
0.0893116
0.170637
0.110925
1.68074
1.77484
0.0496386
0.123792
0.0123709
0.0131896
0.0466049
0.00996182
0.435151
0.0107304
0.0173188
0.518155
0.06653
0.157615
0.0657329
1.49242
1.69049
6.67065
0.116333
0.196016
38.858
0.128719
1.50006
1.54093
0.00561014
0.41224
0.00788581
0.00750948
0.380912
1.48721
1.54831
4.67492
0.0733515
33.0584
0.0762688
34.8854
0.0686274
4.00647
0.953049
1.78308
1.01105
1.82907
0.665248
51.3426
0.536273
0.654775
0.530196
0.602093
0.209549
51.6633
0.640549
0.220618
0.051112
0.464798
0.196198
12.7409
0.189994
0.055191
0.449456
0.0471719
0.171381
12.3031
0.329726
0.181663
0.40063
0.0425378
0.0408365
0.371609
11.2156
0.185289
0.340303
0.182849
0.0442702
0.0405689
0.169903
11.256
0.324817
0.341662
0.17639
0.0408934
1.7102
0.0127802
0.0191085
2.67476
0.0169128
1.53628
6.7631
2.29329
1.85973
0.0384761
0.0618662
0.0481155
1.12704
3.95566
17.8998
3.34984
4.01923
9.70318
28.559
37.465
239.119
1.34946
0.0112459
0.0121553
0.69155
0.0143524
0.694906
1.24657
2.82732
0.065695
0.0753897
31.0996
0.0606307
7.93859
9.30267
23.9421
20.3783
12.9124
56.6771
0.709338
0.0146171
2.53753
0.0159628
1.31819
0.0136061
1.18525
5.53092
3.14504
2.37024
7.80044
0.567817
0.282914
0.00955123
0.00948775
0.345672
0.0114645
0.480851
6.68401
5.92166
17.56
3.97527
0.601509
0.0122792
0.614797
0.00962156
0.358064
1.0945
0.0114377
6.0947
20.9246
10.1737
19.0532
0.655867
0.0165999
0.0111049
0.795849
0.0137796
1.00385
0.537498
1.23944
0.0219838
2.20808
0.011772
8.23397
0.0219735
0.44464
10.2031
1.50965
1.24447
2.4562
0.00447227
0.152399
0.00221241
0.00256255
0.65467
0.218642
2.74192
0.0814604
31.5893
0.105769
3.68076
8.48183
0.0912867
6.21884
17.9177
0.782057
120.999
1.48388
1.07211
1.29349
2.16246
0.0184067
0.0171732
1.17853
0.835102
0.0162306
4.45574
0.388715
5.67958
14.9755
0.463822
0.284187
0.583022
0.00328556
0.292394
0.00196892
0.00156636
0.681531
0.172401
6.60561
18.3502
0.750214
16.5047
1.48665
0.490748
0.645291
0.01985
0.93482
0.0108603
1.03332
0.0173178
0.140155
0.366772
0.823345
0.449776
0.70987
0.291244
9.86939
0.238707
0.251185
0.267157
0.303175
0.293736
10.0863
0.331158
0.283382
0.0369512
0.408607
0.177758
7.81932
0.136635
0.0455743
0.336188
0.0271148
0.0901009
7.32929
0.209253
0.101872
0.272076
0.0228793
0.0175265
0.0902146
5.3606
0.0707778
0.107006
0.0759729
0.0159648
0.0207439
0.0830311
5.48596
0.204932
0.118173
0.0835669
0.0212168
0.173077
0.00390109
0.00414567
0.219478
0.0039007
0.152501
0.160075
0.178775
0.163201
0.00553088
0.00744097
0.00626984
0.111818
0.309509
1.93371
2.0728
0.773376
1.06304
2.3874
4.31784
3.55788
1.66142
0.14892
0.00359033
0.00332044
0.0864428
0.00360194
0.0955376
0.12809
0.208494
0.00787961
0.00867221
0.725935
0.00709662
0.377969
0.196027
2.23493
1.47563
1.25078
1.43191
0.149694
0.00320968
0.152262
0.00429241
0.112579
0.00395687
0.271193
0.644598
1.98446
1.48396
0.896224
0.107176
0.0319609
0.00239393
0.00148575
0.0471758
0.00254139
0.0385234
0.632544
0.23471
1.24966
0.259348
0.125836
0.0029958
0.0712398
0.00332846
0.0514882
0.0975021
0.00362029
0.697056
1.20122
1.03688
1.46241
0.122974
0.00284928
0.00148512
0.0527727
0.00270669
0.194649
0.0488348
0.105564
0.00403999
0.240626
0.00312741
0.154747
0.00329375
0.136659
1.43813
0.300567
4.40926
0.820835
1.70336
0.0590886
0.10153
0.00143211
0.0221722
0.00133528
0.0014201
0.0534863
0.0262792
0.163279
0.00809016
0.958945
0.0106209
0.176534
0.193175
0.00735412
0.628331
1.5124
0.0432568
1.4339
0.119672
0.0531495
0.199625
0.569266
0.226176
0.532946
0.161646
3.72307
0.140097
0.152841
0.146704
0.169057
0.169047
3.79279
0.208085
0.155024
0.0125059
0.06487
0.0911033
2.28409
0.0856568
0.0123524
0.0625426
0.009766
0.0484216
3.52398
0.0453192
0.0592163
0.0554565
0.00853426
0.0333359
0.00352635
0.00238269
0.0400246
0.00232995
0.0322381
0.0341437
0.0401309
0.0328555
0.00241007
0.00235018
0.00258539
0.0324945
0.0403589
0.799514
0.377455
0.453442
0.62692
0.999145
0.308668
0.349336
0.3313
0.028189
0.00327527
0.00212859
0.0225125
0.00223809
0.023705
0.0268713
0.0836363
0.0027444
0.00246983
0.0403787
0.00273673
0.0524323
0.0492333
0.881051
0.574343
0.766732
0.278378
0.0398569
0.00357288
0.0462489
0.00414634
0.0363477
0.00384517
0.0513479
0.369139
0.299368
0.285974
0.45705
0.0284522
0.0168865
0.00266754
0.00164906
0.0229841
0.00286335
0.0208583
0.371418
0.326547
0.587573
0.45573
0.0313952
0.00329255
0.0232629
0.0032519
0.0252768
0.0288256
0.00353591
0.447463
0.464365
0.536593
0.741103
0.035793
0.00326459
0.00170018
0.0334199
0.00306845
0.0456449
0.0258737
0.129802
0.226017
0.13029
0.208506
0.104302
2.8528
0.0999343
0.0956594
0.109603
0.103207
0.104335
1.95035
0.100916
0.109395
0.00540723
0.0007783
0.000749765
0.00380239
0.000780097
0.00522701
0.00399943
0.064113
0.0593467
0.0528815
0.0783325
0.0760286
0.0354359
0.0908284
0.0452274
0.00549482
0.000797823
0.000817379
0.00517128
0.000828137
0.00572737
0.00407266
0.060096
0.0464628
0.0732991
0.0361864
0.0983915
0.0508428
0.0608264
0.0674542
0.118137
0.087985
0.127745
0.0819425
0.108303
0.0410737
0.0637894
0.116735
0.07647
0.109711
0.0814022
0.104796
0.049853
0.807215
0.043104
0.0871016
0.0435496
0.0556258
0.0621428
0.880658
0.0621642
0.0508836
0.00815119
0.0100462
0.0100815
0.00764343
0.031239
0.0891071
0.0864538
0.00769328
0.00805128
0.00522438
0.00670705
0.00551183
0.0106462
0.0105464
0.0201286
0.00688362
0.00487513
2.67636
0.0104051
0.00418073
0.0126133
0.00921503
0.00456226
3.37684
0.00601323
0.00706312
0.06269
0.0767777
0.0531718
0.0914837
0.0486476
0.936737
0.00747969
0.0447783
0.00921557
0.066743
0.029799
1.19327
0.054474
0.0280634
0.0278627
0.0246674
0.0209431
0.0361586
0.0170189
0.00787688
1.31846
0.00945509
0.0100424
0.0291064
0.00639288
1.03812
0.0378178
0.0200748
0.044042
0.020715
0.0268514
0.0288056
0.0323149
0.177777
0.000753201
0.00698456
0.000872424
0.0474304
0.00250408
0.0732331
0.0296988
0.00133194
0.0343996
0.0714702
0.0452162
0.0623373
0.0286684
0.0353911
0.00423935
0.0262221
0.00266785
0.036971
0.00664099
0.0283168
0.0497676
0.00386315
0.0155569
0.0307047
3.03993
0.447098
0.0318965
0.360297
0.0147289
0.183583
0.134126
0.512713
0.116537
0.136264
200.141
0.0332215
0.137303
0.0232973
0.0234189
0.0255944
0.00283734
0.00265139
0.0278883
0.0232422
0.00268337
0.0937533
0.0185265
61.0488
0.056469
0.0241016
0.0198795
0.00281022
0.0347124
0.00294946
0.0375432
0.0186055
0.00277434
0.0154667
0.645852
24.6246
0.0390619
0.496368
0.037372
0.0150992
0.0153532
0.0284658
0.48027
16.8181
0.455083
0.0130121
0.0363275
0.0173216
0.714295
0.0382557
0.0451845
0.731346
0.0152074
0.0205487
0.0177038
0.731931
0.0576384
0.811239
0.0174681
0.0864557
3.58256
0.498512
0.585297
0.0423183
0.0988104
0.0410383
0.126574
0.0278877
0.0780627
0.0280615
0.0397035
0.0226526
0.0114779
1.04863
0.0226785
1.16278
0.0156969
0.0116375
0.0109996
0.0138459
0.722175
1.18406
0.0123735
0.0130969
0.00951988
1.0025
0.0194972
0.0109842
0.807087
0.00894137
0.013512
0.0141153
0.574717
0.0111181
0.781064
0.0207095
0.0156076
0.672242
0.00869485
0.45038
0.00919459
0.0154936
0.0197909
0.0131551
0.556514
0.495103
0.0231227
0.0103015
0.020436
0.754442
0.00899993
0.00953213
0.890391
0.0199697
0.0163212
0.00709403
1.82498
0.00797358
0.92389
0.0160257
0.00562457
1.62351
6.00626
0.00752728
0.00658052
1.03744
0.00745897
0.00593022
0.0146835
1.29397
12.7538
0.683882
0.00776268
0.00946655
0.0048366
0.00747434
0.00371807
0.0105358
0.00825482
0.0151206
0.00469024
0.00297193
0.0104792
0.00370301
0.0147779
0.00311737
0.0133184
0.00377434
0.016586
0.0228013
0.015522
0.0249504
0.0265289
0.0378599
0.0225121
0.0172182
0.0314054
0.0128467
0.0552486
0.022857
0.0514422
0.0163606
0.0229022
0.0339711
0.0938961
0.0833363
0.0367885
0.0431395
0.233869
0.00114658
0.00161421
0.00098234
0.00195777
0.00122345
0.00145556
0.00109403
0.0360639
0.0876425
0.0478278
0.00873024
0.014061
0.00924365
0.013882
0.0710744
0.0503118
0.0375848
0.050924
0.0498591
0.0699987
0.0475977
0.208508
0.125657
0.0786352
0.105938
0.128014
0.213096
0.107643
0.000757361
0.00155812
0.000657036
0.00147272
0.000749032
0.00124498
0.00063791
0.000779054
0.00181259
0.000694437
0.00161196
0.000726786
0.00149751
0.000658967
0.0311892
0.00037408
0.0308539
0.000390083
0.0490385
0.000387555
0.0482673
0.00319034
0.0809047
0.00338861
0.149249
0.00262356
0.13691
0.00274237
0.0297897
0.000372346
0.0366933
0.000385282
0.0461387
0.000385358
0.056496
0.00342879
0.0643942
0.00268184
0.126382
0.00273702
0.101808
0.00208647
0.0266435
0.0427869
0.0983014
0.159631
0.0277561
0.0390472
0.087213
0.336026
0.184157
0.121213
0.155509
0.207837
0.286838
0.157459
2.07407
1.35961
0.436446
0.52112
1.88986
0.545525
1.48692
0.195726
0.66338
1.71627
2.07946
0.689688
0.231348
1.99065
0.000405392
0.000433251
0.000402555
0.000468042
0.000424808
0.000448473
0.000422633
0.000401848
0.000414958
0.000400919
0.000439106
0.000422226
0.0004329
0.000421517
0.000401618
0.000411391
0.000400976
0.000435406
0.000422189
0.000430247
0.000421712
0.00395477
7.24197
0.00312911
0.00285183
0.58206
0.00328111
6.34524
0.00287315
0.00725174
0.44613
2.39843
0.00552419
0.00313222
1.90626
0.819945
2.199
4.43699
4.99098
1.14014
2.68015
1.26083
0.00562417
0.00436797
0.00129384
0.00155053
0.00438748
0.00555087
0.00140952
0.00370159
0.00321878
0.00143572
0.00108795
0.00327618
0.00349953
0.00154117
0.00114043
0.00243127
0.000535633
0.00071757
0.00104442
0.00288611
0.000553419
0.000622701
0.000730456
0.000482886
0.000502272
0.000599524
0.00077749
0.000495451
0.000452478
0.00044784
0.000450971
0.00047205
0.000476419
0.000471517
0.000475081
0.000561678
0.000529447
0.000464757
0.000478053
0.000544187
0.000544368
0.000476326
0.000445853
0.0004643
0.000444344
0.00049043
0.000468802
0.000481054
0.000467935
0.000449129
0.000445997
0.000448279
0.000470216
0.000473406
0.000469942
0.000472548
15.5543
15.7749
15.1885
16.0891
0.000444243
0.000452375
0.000443747
0.000476438
0.000468121
0.000473215
0.000467819
0.000446953
0.000444805
0.000446447
0.000469087
0.00047132
0.000468944
0.000470875
14.6589
14.3362
13.88
14.9887
0.000444396
0.000450451
0.000444072
0.000474945
0.000468444
0.000472297
0.000468272
0.000445716
0.000444039
0.000445485
0.000468365
0.000470207
0.000468297
0.000469983
1.83856
1.87196
1.81782
1.87689
0.000444386
0.000447445
0.000444276
0.000471067
0.000468694
0.000470593
0.000468634
0.000444935
0.000443548
0.000444751
0.000467915
0.000469493
0.000467882
0.000469329
1.48425
1.40408
1.5662
1.25843
0.000444576
0.000446344
0.000444465
0.000470648
0.000468978
0.000470107
0.000468911
0.387785
0.407415
0.405894
0.40972
0.0681108
0.010032
0.0256289
0.0554946
0.0351735
0.0497967
0.0420255
0.0421896
0.00762559
0.0191383
0.0234127
0.0110018
0.0830192
40.1863
4.38593
25.6007
15.1262
13.1032
0.000584481
0.000845258
0.000542613
0.000809987
0.000553291
0.000684358
0.000538936
105.333
113.132
0.000533891
0.000786164
0.000531804
0.000643686
0.000533202
0.000641673
0.000532217
17.2498
336.592
88.1
19.2969
0.000510113
0.000554255
0.000498426
0.000588314
0.000526559
0.000547682
0.000523339
6.19272
15.3497
13.4804
7.65338
0.000496133
0.000511931
0.000494304
0.000538554
0.000522709
0.000529434
0.000522107
2.99429
6.43499
31.3104
3.33525
0.00049418
0.000500706
0.000493793
0.000526789
0.000522375
0.000525023
0.00052226
2.37715
2.64863
2.45179
2.07536
0.000494201
0.000496525
0.000494055
0.000524291
0.000522797
0.000523509
0.000522758
0.000497459
0.000496014
0.000497149
0.000524582
0.000525678
0.000524558
0.000525562
0.000517582
0.000509951
0.000494895
0.00050856
0.000506073
0.000520633
0.000508014
1.92449
1.82717
1.7325
2.0218
0.000496563
0.000495483
0.00049641
0.000524165
0.00052514
0.000524159
0.000525058
0.000510636
0.000498642
0.000492667
0.000506586
0.000499224
0.000510422
0.000506381
1.45863
1.43348
1.38529
1.52114
0.0461409
0.0435193
0.0232218
0.0214116
0.0191564
0.0148964
0.0143197
0.0173952
0.000553686
0.000538756
0.000739743
0.000497617
0.000538996
0.000509042
0.000521412
0.00857632
0.000926001
0.00230606
0.000674106
0.000738219
0.000643139
0.000674636
6.51777
0.0383014
0.383076
0.00518929
0.00547838
0.00290852
0.0105054
1348.56
60.1335
17.9103
55.0083
0.697458
0.255164
10.5598
0.605884
0.204319
0.119411
0.00363194
0.00542455
0.000897929
0.00209473
0.000863194
0.00071379
0.000729659
0.00128392
0.00294763
0.000778356
0.00110667
0.000768568
0.000660872
0.000668768
0.000813174
0.0013208
0.000711497
0.000781597
0.000623684
0.000628783
0.000701794
0.000590666
0.00056298
0.000578082
0.000592692
0.000598009
0.00059194
0.000595802
0.00185014
0.000725262
0.00127042
0.000662186
0.000627421
0.000681583
0.000620156
0.000701691
0.000948113
0.000674526
0.000600494
0.000657989
0.00060494
0.00064811
0.000631241
0.000769438
0.000621673
0.000586595
0.000620196
0.000588882
0.000615788
0.000601009
0.000686933
0.000592644
0.000578333
0.00060049
0.000580122
0.000596764
0.000553228
0.000551874
0.000552899
0.000585479
0.000586436
0.000585443
0.000586365
0.000552468
0.000552948
0.000552382
0.000586336
0.000586256
0.00058628
0.000586241
0.000553155
0.000551964
0.000553122
0.000585685
0.000586721
0.000585672
0.000586693
0.000552828
0.00055313
0.000552756
0.000586787
0.000586738
0.000586757
0.000586727
0.000655754
0.000647701
0.000651159
0.000666472
0.000666407
0.000665222
0.000665804
0.0163346
0.0083423
0.0259498
0.0152156
0.00887294
0.0348757
0.012813
2.03211
4.06777
5.00337
33.6946
33.5087
1.14834
1.81964
6.08617
5.4673
0.0500872
0.0328152
0.0455845
0.045762
0.0397719
0.0396528
0.0612273
18.4698
2.07672
1.25495
22.639
1.24473
0.0764257
0.0362543
0.0566361
0.0497093
0.0507576
0.0467715
0.0904159
0.17374
0.029856
0.0862837
0.0254393
0.0949575
0.0346872
0.147478
0.1256
0.0813903
0.0986527
0.186303
0.0801987
0.128947
0.178198
0.0163984
0.0103268
0.0158298
0.0384531
0.0101636
0.0306404
0.0169823
0.0203889
0.0201276
0.0138817
0.0389228
0.01306
0.0371065
0.0214313
0.987141
2.876
2.74841
42.1281
2.70568
2.45098
1.074
0.835295
2.41294
30.7409
1.6116
2.49077
0.760906
1.80886
21.5912
5.93472
2.49312
2.68666
5.80571
5.46673
25.1972
6.86076
7.31938
2.1038
3.02617
7.21182
1.36603
19.5914
5.16617
0.00951143
0.00625327
0.0113714
0.00607947
0.00512863
0.00955485
0.0150699
0.765449
3.03878
1.58691
46.0004
0.790433
3.13292
1.50356
1.33058
4.51013
49.2822
2.39726
4.54465
1.33996
2.38962
7.33908
1.13163
1.59572
0.913737
22.0835
109.677
0.243251
0.119198
0.19366
0.163354
0.304101
0.165833
0.150857
8.20655
8.96055
14.1476
14.641
0.209247
0.0654508
0.0651716
0.142874
0.0733989
0.166147
0.177811
1.30216
4.60897
2.43199
46.7078
1.35521
4.5113
2.31373
1.07739
5.33958
38.5215
1.7641
5.24817
1.07927
1.76098
14.5315
14.0067
0.0990917
0.0491844
0.105594
0.0436011
0.11696
0.0454479
0.0993027
19.8274
19.6436
0.00380754
0.00686005
0.00337771
0.00698297
0.00387192
0.0073412
0.00366462
0.00530091
0.0146576
0.00651065
0.011438
0.00689727
0.0114992
0.00563014
1.07011
5.42261
1.75083
38.1591
1.06768
5.44599
1.75119
1.21692
8.06439
47.6503
1.89852
7.67258
1.25358
1.86221
20.3228
20.2302
46.9259
45.3238
1.32107
8.28878
1.97165
49.8215
1.32115
8.36478
1.98918
1.21333
11.766
43.5559
1.84968
8.03352
1.27337
1.75945
48.5789
48.3096
170.225
49.8125
0.138558
0.234411
0.136187
0.306198
0.135416
0.28608
0.15685
1.34659
9.33249
1.94803
51.4189
1.34084
10.6158
1.9466
1.42514
10.6986
47.9884
1.93862
10.5555
1.45062
1.92963
0.19104
0.160511
0.281388
0.338664
0.163987
0.342736
0.184883
0.0850603
0.169397
0.0624979
0.215532
0.0697532
0.217348
0.0761672
1.47765
10.6393
1.97166
46.4212
1.4861
10.6047
1.97094
1.25836
14.7246
23.7714
1.66112
14.414
1.25888
1.64664
1.68713
0.38966
1.2892
0.500108
1.78717
0.484407
1.21718
0.0524427
0.0425243
0.160361
0.204962
0.041845
0.211707
0.0534247
0.0520188
0.184476
0.039953
0.238732
0.0417322
0.241227
0.0497339
1.20897
14.5834
1.61609
23.6274
1.21821
14.5343
1.59393
1.1096
12.5988
21.2477
1.35663
13.2782
1.05866
1.42641
0.045394
0.0357626
0.176724
0.218242
0.0367547
0.227889
0.0442428
0.976585
12.3304
1.28674
19.2584
1.00264
12.1357
1.24231
0.973778
13.8717
18.4553
1.18578
14.0764
0.962256
1.20139
0.345024
0.901048
0.729494
2.07539
0.889945
0.250421
1.96966
0.00267041
0.0010101
0.00210634
0.000931019
0.00241219
0.00103708
0.00234046
0.943648
13.6253
1.16091
17.6233
0.943278
13.3609
1.16513
0.875483
13.2543
16.7339
1.03759
13.4144
0.861534
1.05191
0.00207439
0.00204337
0.000814321
0.000889285
0.00191582
0.00224955
0.000826031
0.00228064
0.000901576
0.00271275
0.000834196
0.00250099
0.000834391
0.00250224
16.7241
16.0026
15.9501
16.554
0.00191313
0.000660078
0.000729088
0.00162357
0.000731911
0.00156589
0.0020534
0.796252
12.9418
0.970068
15.2179
0.80696
12.243
0.955638
0.777616
11.5221
13.8571
0.913179
11.5634
0.769643
0.921594
15.2437
15.7729
15.2132
15.7488
0.00137605
0.00061801
0.00144751
0.000600295
0.00141284
0.000600328
0.00142586
14.3113
14.0446
12.5761
14.3995
0.00125712
0.000546373
0.000570017
0.00121554
0.000567679
0.0011617
0.00131859
0.721153
11.3662
0.876631
13.2731
0.738655
11.2092
0.854771
0.563735
9.33397
9.39767
0.644432
9.37422
0.64868
0.560966
6.18458
13.8764
13.0614
11.1638
0.00120513
0.000590729
0.00135663
0.000574687
0.00128866
0.000571481
0.00124476
2.03445
1.87946
1.91429
1.99539
0.00110693
0.000501093
0.000548534
0.000893504
0.000545348
0.000876717
0.00113244
97.8318
5.5536
4.59583
17.9741
2.2961
2.60769
16.5133
0.391223
0.17712
0.297064
0.638066
0.17716
0.345204
0.793729
35.555
38.3125
8.86226
0.489993
0.25466
0.469772
0.133952
0.173509
0.319113
0.792317
0.0137732
0.0278909
0.0299737
0.0112725
0.037081
0.0113075
0.0126826
14.7809
2.40477
2.14192
17.3182
10.3462
5.18038
5.16895
10.3066
0.297927
0.140637
0.568691
0.207192
0.126977
0.53824
0.316245
9.32507
5.21979
4.90951
10.3536
4.96912
3.16262
3.15999
4.9714
4.7573
3.1383
3.12779
4.94511
3.84974
3.10769
3.05458
3.9342
3.76138
3.18943
3.19822
4.01114
0.0132812
0.00194285
0.00546123
0.00198171
0.0100126
0.00222431
0.00710309
2.80239
2.79077
2.6579
2.9416
2.98004
2.92792
2.90959
3.04003
0.00425661
0.00105619
0.00292382
0.00106275
0.00341369
0.0011018
0.00345709
2.58144
2.697
2.69133
2.57448
2.50968
2.72648
2.71184
2.61228
0.0047664
0.00143528
0.00401213
0.00141409
0.00426045
0.00155338
0.00448442
3.12265
46.0635
2.2501
2.22532
3.14725
3.05151
2.20718
45.6646
2.16897
3.11541
0.0010822
0.000514051
0.00085956
0.000517619
0.000994597
0.000529633
0.000923215
2.55688
41.0651
1.78885
1.88691
2.41451
18.8748
20.6491
2.16832
1.69984
37.2751
1.62438
2.29891
0.000590722
0.000475326
0.00053754
0.000483474
0.00057033
0.000487685
0.000552714
2.00365
35.5136
1.51212
1.53354
1.97394
77.3602
18.2297
15.8799
14.747
8.68606
13.9699
9.18452
0.00331032
0.000843811
0.000828279
0.00223103
0.000929349
0.00288993
0.00274564
1.95011
1.4783
34.0236
1.48968
1.92578
0.000547626
0.000460241
0.000504284
0.000468418
0.00053031
0.000471759
0.000518932
1.68499
32.0908
1.30291
1.31717
1.67213
0.000578945
0.000490831
0.000569972
0.000500346
0.000558186
0.000488821
0.000594817
0.000564535
0.000480595
0.000495495
0.000546915
0.000484038
0.00053346
0.000580099
43.0889
0.00258871
0.00288678
0.000817389
0.000847995
0.00263013
0.00295642
0.000780418
16.6122
16.0214
16.2922
16.5451
0.00196244
0.000714169
0.00164491
0.000636617
0.00208364
0.000686466
0.00159971
13.0669
8.45033
7.73167
13.6962
0.00225003
0.00078098
0.00195032
0.000661433
0.00264909
0.000724128
0.00168865
7.92629
4.6953
7.45124
4.99577
0.0017804
0.000617969
0.000615038
0.00132163
0.000652699
0.0015016
0.00146132
1.53276
1.2161
29.2879
1.19717
1.55705
1.45004
27.1619
1.13683
1.14559
1.44058
0.000504153
0.000477302
0.000522792
0.000487042
0.000509932
0.000475545
0.000516881
18.3226
32.7213
0.000499214
0.000472125
0.000485131
0.000506041
0.000473407
0.000493762
0.000511616
14.919
13.6907
14.3871
14.7072
0.00139421
0.00145637
0.000595038
0.000597819
0.0014345
0.00142385
0.000584968
15.5151
14.4552
15.1441
14.6961
0.00130782
0.000568011
0.00126169
0.000547921
0.00134377
0.000560667
0.00124157
6.10126
4.39375
3.08606
6.92984
0.00128544
0.000582309
0.00116274
0.000554747
0.00132921
0.000570847
0.00109667
4.16953
1.86824
4.01362
1.71182
0.0012002
0.000538882
0.000535182
0.000937679
0.000548934
0.00113794
0.00100631
1.34974
1.09243
26.178
1.06485
1.38515
0.982601
10.9595
0.778422
0.784678
0.973433
0.000482184
0.000470516
0.000498181
0.000481803
0.000486139
0.000469535
0.000494129
14.2109
12.8666
13.9889
13.5429
0.000480376
0.000467578
0.000480781
0.000493005
0.000468475
0.000480644
0.000492617
5.94666
7.7166
4.23963
8.39982
0.0013396
0.00144303
0.000576304
0.000596687
0.00129083
0.00149039
0.000575134
1.84231
1.85136
1.78943
1.89363
0.00116287
0.000549424
0.000887081
0.000511728
0.00114159
0.000549374
0.000877203
2.28218
1.79313
1.68677
3.66193
0.00129766
0.000584565
0.00124766
0.000550615
0.00143577
0.000566543
0.0011137
1.22819
1.40179
1.20895
1.42665
0.0011436
0.00051372
0.000536777
0.000811212
0.000545636
0.00085906
0.00102431
0.97966
0.771185
10.9651
0.964126
0.783358
0.74087
8.5733
0.557044
0.680734
0.606245
0.000474465
0.000466968
0.00048637
0.000479125
0.000473601
0.000466636
0.000487134
3.70554
7.52917
3.92446
7.96321
0.0004714
0.000466713
0.000479534
0.000482367
0.000466891
0.000469501
0.000484021
0.97676
0.517077
0.585804
0.812612
0.000730475
0.000806813
0.000484852
0.000498328
0.000747153
0.000790511
0.000489429
1.53176
1.43538
1.57818
1.47277
0.000783686
0.000489778
0.00070767
0.000483924
0.000792055
0.000494379
0.000703461
1.16877
1.38334
1.34607
1.19754
0.000709051
0.000501778
0.000742008
0.00049991
0.000769466
0.000494296
0.000686898
1.10222
1.18622
1.06362
1.23446
0.000763859
0.000489919
0.000503102
0.000664444
0.000498537
0.000685822
0.000739722
0.600507
0.507213
8.14005
0.619493
0.492145
0.45206
6.8057
0.412231
16.2006
16.6899
0.485888
0.385689
0.000467883
0.0004661
0.000481177
0.000478755
0.00046822
0.000465946
0.000480839
0.408063
0.297503
0.459869
0.247157
0.000467114
0.000465314
0.000478247
0.000479926
0.000465405
0.000466871
0.000480103
0.255794
0.439752
0.600352
0.153107
0.000683045
0.00069934
0.000473777
0.000483809
0.000675989
0.000699698
0.000481551
0.548895
0.434081
0.44518
0.485397
1.01422
1.16639
1.13163
1.04815
0.000669097
0.00048987
0.000656217
0.000495023
0.000681137
0.000488328
0.000644718
1.06877
2.18721
1.62666
1.16572
0.364129
0.343003
6.19657
15.5447
15.3174
0.403182
0.311469
0.25935
5.52006
0.22289
7.27426
6.50045
0.229326
0.251557
0.196025
0.190906
0.297174
0.121533
0.216113
0.193016
0.169205
0.264155
0.860411
0.812851
0.857913
0.81967
1.04993
1.40233
1.14111
1.25369
0.969788
0.0842554
0.381602
0.0921381
20.7753
15.3311
19.3258
26.9406
4.3435
399.8
10.7599
49.3162
7.06507
79.9249
6.16781
1.36879
0.431685
0.89442
0.538923
1.28292
0.948012
0.572972
1059.58
0.00639923
0.0118929
0.0107775
0.0610752
0.00515493
0.0152659
0.0144432
0.00451521
0.00749573
0.00306274
0.00852356
0.00374529
0.0100001
0.00348925
0.404696
0.0865189
0.108461
0.382667
0.117294
0.366657
0.539143
0.148411
0.52542
0.0402482
0.122451
0.0389135
0.154958
0.56496
0.101439
0.396983
0.0895801
0.0238302
0.0252032
0.37718
0.105344
0.163405
0.0462196
0.235076
0.0467358
0.0468952
0.198448
0.20651
0.101036
0.422246
0.0239306
0.098726
0.0246801
0.105418
0.414152
0.0717768
0.334938
0.0332856
0.00732347
0.0091016
0.321575
0.071877
0.0729556
0.362149
0.00568803
0.0169042
0.00537761
0.0735998
0.367731
0.0518315
0.251437
0.0129055
0.00340978
0.0039285
0.270783
0.0482789
0.0066538
0.0150101
0.00382797
0.00327167
0.0129151
0.00765539
0.00315683
134.066
0.00523159
0.00296612
0.0088873
0.00218056
0.0103952
0.00228624
0.00470571
0.0431163
0.248018
0.00279954
0.00721414
0.00241721
0.0460464
0.230239
0.019792
0.0912322
0.00593755
0.00149443
0.00168598
0.100696
0.0170607
0.00396969
0.00805722
0.00247542
0.00196688
0.00757578
0.00428947
0.00197268
23.2185
20.9634
0.00399614
0.00255484
0.00815173
0.0020365
0.00773295
0.00204557
0.00455686
0.0152013
0.0898262
0.00116665
0.00248797
0.0011768
0.0174428
0.0783837
0.00962656
0.0443272
0.00199441
0.00117147
0.00111953
0.0442537
0.0113404
0.00257436
0.00687204
0.00161657
0.00153729
0.00448181
0.00375658
0.00139847
8.81806
15.8197
7.94427
17.2205
0.00189876
0.00111057
0.00290095
0.000898973
0.0033893
0.000933815
0.00167995
0.00758425
0.0448716
0.00110419
0.00162509
0.000942095
0.0112856
0.0354787
0.000659323
0.000540961
0.000551445
0.000567029
0.000542891
0.000600161
0.000576593
0.0102278
0.0118485
0.00106769
0.0009773
0.0128962
0.00800585
0.0010247
0.00134594
0.00256117
0.000866198
0.000802779
0.00224618
0.00151994
0.00078489
3.60008
6.62134
3.40391
7.00836
0.00108905
0.000722284
0.00154527
0.000643736
0.00182454
0.000656231
0.000976898
0.000620107
0.000534184
0.000557407
0.000544774
0.000590389
0.000533004
0.000560734
0.00418971
0.010031
0.000896032
0.000902623
0.000855996
0.00624325
0.00820611
0.000608577
0.000528692
0.000541981
0.000549473
0.000529525
0.000569451
0.000553457
0.00161289
0.00268232
0.000731975
0.000705425
0.000717856
0.00295973
0.00146449
0.000819931
0.00136894
0.000616872
0.000599513
0.00120991
0.000884962
0.000593418
2.34161
2.8256
2.21582
3.01544
0.000765273
0.000583823
0.00100123
0.000564487
0.0010822
0.000567595
0.000731887
0.000530742
0.000497773
0.000517506
0.000509982
0.000522572
0.000510375
0.000527088
24.2948
13.4481
14.6355
12.7067
0.000637552
0.000876848
0.000540494
0.000540637
0.00081789
0.000664658
0.000538342
1.76536
1.90509
2.12397
1.69895
0.000602975
0.000524443
0.000711867
0.000523429
0.000753878
0.000524997
0.0005825
12.0292
12.4106
13.3005
10.478
0.00051584
0.000493979
0.000504536
0.000507018
0.000504541
0.000507261
0.000515127
6.37813
7.33967
7.99423
5.73007
1.59191
1.45742
1.55253
1.49101
6.49717
7.16568
7.94505
5.55068
0.000508803
0.000493196
0.000495405
0.00050707
0.000496514
0.000507063
0.000508377
0.928218
0.500986
0.786202
0.569449
0.379868
1.20829
0.36675
1.25744
264.252
0.123024
3.10348
204.291
0.43146
0.563624
0.138474
0.000878936
0.000827982
0.000685343
0.000671403
0.000876343
0.000841671
0.000678558
0.0047044
0.17114
0.04467
0.00360339
0.00319581
0.143612
0.00554564
0.00383308
0.0224884
0.0970082
0.00243508
0.00240764
0.0793277
0.00399344
0.00415266
0.0962576
0.0237806
0.00226295
0.00224648
0.10289
0.00396083
0.0025009
0.008673
0.358807
0.00208184
0.00202539
0.00255853
0.170169
0.0411612
0.272898
0.116391
0.044296
0.0194644
0.0312337
0.0209658
0.866376
2.46108
4.69779
3.85391
0.0414148
0.00408153
0.0107794
0.0116955
0.00644769
0.00412549
0.0872771
0.672762
3.02015
0.0608386
13.8341
0.100055
0.110149
0.0647808
0.466168
0.0463685
0.110231
0.0291251
0.124858
0.031002
0.0453346
0.0484634
0.0602359
0.0421822
0.0460189
0.0374507
0.0291516
0.0316996
0.00639474
0.00674011
0.0033901
0.00628269
0.0035194
0.00325502
0.0031373
0.047147
0.0319596
0.0192277
0.014455
0.0566484
0.0342809
0.0240858
0.149364
0.0391353
0.111994
0.0773843
0.0853652
0.0533909
0.192925
0.144864
0.748485
0.528745
0.212731
0.125782
0.114085
0.251298
0.0427501
0.1007
0.0398587
0.0307619
0.0756991
0.0324337
0.0807961
0.0882984
0.0288228
0.0326874
0.025009
0.0554466
0.0695015
0.0217211
0.834511
0.207317
1.15012
0.340251
0.157041
0.304667
0.163488
0.202836
6.55034
4.45185
0.585621
0.158751
0.151947
0.73179
0.0104589
0.0372905
0.0707692
0.0453028
0.00707374
0.0105847
0.0326413
0.026616
0.0827159
0.0265726
0.0207669
0.0539014
0.0201257
0.0636728
0.105603
0.0427402
0.0283806
0.0232134
0.11713
0.0855419
0.035219
7.40669
0.244886
13.2215
0.915242
0.173184
0.782193
0.179052
0.0294178
0.00466463
0.0180988
0.0171085
0.00470004
0.0210708
0.00436606
0.382985
14.3176
1.0197
0.321024
0.298161
1.05526
0.00396668
0.0137345
0.0139939
0.0182735
0.00400056
0.00388002
0.0177896
0.0586128
0.147693
0.0476489
0.039435
0.13603
0.0475663
0.117569
0.11807
0.0238018
0.0482995
0.0383816
0.0600834
0.0896149
0.0185776
10.7832
0.486266
6.01622
1.08845
0.359298
1.10267
0.367423
0.0188179
0.00726407
0.0206887
0.0230791
0.00591382
0.0215907
0.00743427
0.484193
2.4556
2.48541
0.969619
0.361721
0.337468
1.06295
0.00713393
0.0148297
0.0191933
0.0203978
0.00533155
0.00715792
0.0158357
0.00721811
0.0690223
0.00495175
0.0039852
0.0477424
0.00566799
0.0492352
0.0732907
0.00354652
0.00442614
0.00358269
0.0544104
0.0523024
0.00291673
2.37801
0.637912
1.87847
1.0912
0.396087
1.07167
0.432088
0.00259682
0.0777809
0.00242391
0.00208338
0.0517183
0.00220543
0.0560639
0.948962
0.0170028
0.0275735
0.0267368
0.370666
0.364172
0.0168864
0.0263502
0.649429
0.0303705
0.0298633
0.394647
0.0253767
0.389792
2.40074
3.39254
78.52
0.0917317
0.0421131
0.0984662
0.158126
0.0473728
0.238824
0.0783415
0.111915
0.403849
0.109347
0.0608644
0.055539
0.263168
0.123956
0.0970746
0.276385
0.0501534
0.0907857
0.048845
0.118545
0.214227
1.93682
5.06024
4.50786
10.0651
10.1426
1.23133
0.138888
0.0290187
0.0829437
0.033797
0.0397689
0.08589
0.103211
26.2599
7.52075
149.167
5.4165
0.191021
0.0299502
0.0565886
0.103922
0.242679
0.0477059
0.0919628
5.05693
1.62333
88.2819
2.27319
2.96971
0.181546
0.0764177
1.11175
0.148275
0.167854
0.0833356
1.32752
0.651297
17.5034
0.950848
0.446038
0.345452
6.05456
0.878991
0.022232
0.0616448
0.0198467
0.0538686
0.0216626
0.057831
0.0207309
0.0260486
0.126929
0.0326416
0.066821
0.0351954
0.0753135
0.0264454
5.17291
2.4048
1.01993
4.63434
0.384516
0.115804
0.214511
0.157533
0.225538
0.154119
0.767334
25.5119
3.87787
2.64962
4.32655
5.07957
5.54133
4.82408
7.93352
6.28409
27.1485
147.694
26.6332
3.03534
0.424369
0.467184
2.16743
0.441764
2.03601
2.27269
14.947
22.4161
0.886212
0.964918
12.2229
17.1837
0.871169
1.62651
0.611745
2.66718
0.822469
1.63149
0.619439
5.60381
4.03053
0.359203
0.337009
2.03435
3.69247
0.34069
2.2246
23.6079
0.773655
0.845231
26.0187
24.094
0.759641
23.3313
2.16768
8.43982
0.714429
0.920113
0.695631
2.26225
7.56425
6.44632
0.878035
18.6272
1.20951
5.75854
0.854337
19.9195
8.74071
41.814
1.08626
1.542
1.07925
8.78413
41.9854
18.8348
1.51212
2.2181
17.8385
1.58965
35.1126
1.72361
2.38577
1.69381
37.6419
2.24805
2.02082
2.30604
1.32667
2.10589
1.24969
0.0676909
0.067024
0.0127772
0.0147958
0.0630341
0.0746299
0.0139719
1.56496
2.91529
1.64352
0.0700147
0.013429
0.0127923
0.0790073
0.0680728
0.0137445
0.0733314
2.0946
3.36226
1.95814
0.0305343
0.00710622
0.00816583
0.0339826
0.0073916
0.0319574
0.0337867
0.191559
1.69008
0.72669
2.32959
0.692666
1.97791
0.952976
43.6477
2.5333
3.7239
2.59904
0.0319968
0.00878109
0.00808208
0.0401476
0.0346211
0.00781751
0.0370531
14.3341
15.4618
2.79349
4.20869
13.7488
2.74136
16.3287
0.00067157
1.56214
0.000629804
0.000714906
0.16682
0.000740684
1.34467
0.000725851
0.162195
0.000617146
0.616918
0.000745197
1.35427
0.000581125
9.22131
0.0267654
9.16974
0.0229267
0.024419
0.0210666
9.11246
8.48885
0.0139677
0.0187731
0.0163588
9.06496
9.19416
0.0121804
0.00284983
0.540585
0.00627569
4.51181
0.00550135
6.04907
0.00257664
0.0371417
0.037399
0.0382881
0.0346312
0.0282496
0.0283506
0.0215958
0.021534
0.000439644
0.000485424
0.15852
0.575738
0.000488155
0.000437465
0.604157
0.000434626
0.182988
0.000498025
0.694133
0.000496355
0.665249
0.000435335
0.00553528
7.92515
0.00537216
0.00513861
8.96549
0.00523184
8.65785
7.01609
0.00874857
0.00704444
0.00654078
7.29699
7.82759
0.00812616
0.00258431
0.375113
0.00337544
1.20847
0.00413399
1.77838
0.00240461
0.028593
0.025524
0.0210166
0.0220335
0.0184833
0.0187483
0.0613915
0.0687266
0.00686889
6.18286
0.00659127
0.00849668
7.11617
0.00678179
7.70767
5.78635
0.00792624
0.00790734
0.00822322
5.47976
0.00714695
8.63798
0.0169903
0.0675977
0.0638624
0.059972
0.051011
0.0543998
0.0461388
8.06373
0.0438068
11.3014
0.0430906
0.111814
0.0172068
0.0556585
0.0262567
0.0151055
0.0109032
0.0930386
0.521249
0.08442
0.15321
0.131863
0.245587
0.0772014
0.0929824
0.449764
0.19132
0.0895766
0.2555
0.0835324
0.133278
0.0280672
0.0100392
0.0307189
0.0187061
0.0073367
0.00565429
0.00666156
0.017781
0.00937939
0.0174349
0.00901373
0.0152503
0.00942548
0.00960719
5.54762
5.39024
190.222
6.48484
15.367
39.5119
9.92462
49.2572
14.1177
4.58522
0.94016
0.771237
1.96308
0.986172
4.51337
2.72599
3.33549
2.93251
3.78048
29.051
1.36833
3.06098
44.2607
410.881
1.49017
19.7394
12.6172
1.22361
1.47045
6.38587
46.9102
1.36133
4.99984
3.72166
3.28771
0.754222
0.756642
3.4294
3.36245
0.729535
0.0996015
0.0152674
0.0181859
0.0996326
0.0176131
0.0829028
0.111358
0.0841954
0.0667332
0.0151233
0.0166403
0.0699455
0.0801642
0.0168875
0.0845984
0.0147296
0.0147936
0.074111
0.0709958
0.016308
0.0794678
0.100976
0.0193582
0.018487
0.108597
0.0966906
0.0185694
0.112306
0.0324143
0.00723866
0.00725804
0.0356042
0.00708196
0.0335404
0.0343148
0.0280338
0.0239581
0.00612894
0.00662183
0.0242888
0.0276138
0.00656396
15.696
14.8464
14.8713
15.7001
17.5549
17.9269
18.2267
17.2605
0.0298419
0.00694411
0.00635463
0.0277517
0.0262005
0.00678176
0.0313011
0.0307254
0.0070953
0.0069633
0.0322176
0.030299
0.00688866
0.0326387
16.7258
15.8594
16.401
16.2558
0.0305829
0.00590294
0.00700729
0.0346197
0.0064825
0.0283619
0.0356062
0.0284367
0.0254097
0.00563067
0.00657349
0.0238394
0.0297583
0.00637025
5.09683
2.87585
3.20528
3.59003
14.3492
13.7763
14.7576
13.3858
0.0252646
0.00524598
0.00511452
0.0194008
0.0210525
0.00575637
0.0232949
0.0329439
0.00744951
0.00710358
0.0360935
0.0332271
0.00701183
0.0362844
13.0605
10.9727
12.2407
11.7836
0.00672386
0.00223175
0.00225538
0.00679869
0.00225543
0.00673058
0.00682097
0.00691443
0.00686844
0.00240017
0.00247638
0.00685687
0.00694687
0.00243138
1.79807
1.76584
1.79833
1.76461
1.66049
1.47965
1.6918
1.44419
0.00666617
0.00222891
0.00223806
0.00662397
0.00662214
0.00225153
0.00669498
0.00703841
0.00249112
0.00251904
0.00739567
0.00714043
0.00246148
0.0072091
1.55076
1.32468
1.49453
1.36977
1.18621
0.676809
0.783972
1.04839
1.3576
1.16623
1.3828
1.12785
0.0069968
0.00214365
0.00216321
0.00705398
0.0070347
0.00215009
0.0070703
1.34333
1.17181
1.31491
1.17835
0.365177
1.03911
0.366631
0.363225
0.934334
0.940891
0.966342
0.934965
0.586881
0.785884
0.540584
0.766635
0.00353613
0.00376893
0.00136801
0.0897185
0.0013343
0.0848812
0.00170736
0.00147838
0.0013047
0.0675261
0.00137757
0.0582514
0.00566738
0.00702591
0.0042971
0.0210109
0.00241861
0.027387
189.635
108.518
42.7437
22.7927
13.6701
282.214
38.387
41.3899
29.5777
5.94418
9.31798
302.194
4.50759
25.3125
28.2389
33.8466
192.678
4.28094
0.275273
0.64011
0.403093
0.797498
0.485979
2.28794
6.39573
3.04206
140.974
4.3222
2.45976
11.3475
37.9428
7.7226
11.2865
63.8074
4.29891
0.354838
0.246696
0.767264
0.374983
3.94524
0.703209
18.6382
17.867
4.39397
0.26535
0.499801
0.836744
7.05174
0.422852
0.759008
180.468
16.0474
170.951
16.1878
27.8396
48.3216
13.2703
359.132
4.81358
3.66751
15.2177
3.03111
6.23609
1.05107
0.465782
4.63662
0.399651
1.45566
0.305916
1.62756
2.21451
12.8295
4.4391
1.38515
1.61882
26.4232
1.88424
0.559513
0.509785
0.072505
0.17121
0.131025
0.344983
0.84647
1.09097
0.249678
0.1498
0.396824
0.28349
0.977137
0.420888
28.9805
11.7244
31.2009
11.4385
1.24636
0.172878
0.352448
0.479586
1.31141
0.333288
0.460747
26.5887
11.0146
25.5907
10.8553
0.00664554
0.0018033
0.00635565
0.00196204
0.00557528
0.00160636
0.00160243
1.439
7.45947
37.0592
1.37637
8.75991
1.05437
1.98978
3.98171
382.624
56.6507
8.03053
5.21926
28.4398
6.04457
0.483025
0.122145
0.0808841
0.223592
0.125727
0.474567
0.226148
32.3427
4.97167
34.7559
5.19021
0.562028
0.0885142
0.161222
0.25672
0.666735
0.143168
0.243764
29.8309
4.78354
28.8576
4.82895
0.0212192
0.0167097
0.163988
0.269745
0.0175011
0.0207591
0.236183
0.0205207
0.113323
0.125761
0.0117384
0.0166128
0.174589
0.0136329
0.299341
0.0740952
0.0513081
0.131513
0.0780449
0.297651
0.140919
10.8439
11.9978
8.82709
7.48667
0.313736
0.0559137
0.0882688
0.168877
0.353554
0.0834309
0.151945
8.32934
5.1347
7.98198
5.21585
0.00827046
0.0264517
0.0319498
0.00851325
0.0287763
0.00801906
0.00963448
0.00894013
0.0354933
0.0371188
0.0114998
0.0100332
0.0305587
0.010397
0.166918
0.0400045
0.0297156
0.0735071
0.0426803
0.160064
0.0790654
0.328315
0.638248
0.11202
0.076675
0.577068
0.348241
0.0725438
6.55189
4.34957
6.84487
4.26739
0.302659
0.0612766
0.101227
0.489679
0.533008
0.065498
0.285693
0.186462
0.0358493
0.0512846
0.099334
0.20479
0.048567
0.0915781
7.41913
3.8907
97.4882
7.15259
4.1022
0.18894
0.308564
0.0583436
0.0405064
0.300946
0.195387
0.0411026
35.2863
32.0777
6.36445
3.41525
61.743
6.36259
3.42218
0.173708
0.0348887
0.0535056
0.267545
0.278338
0.0375947
0.169967
3.17161
2.9429
54.6304
3.09207
2.98486
0.143603
0.239802
0.0433206
0.0401629
0.19736
0.176361
0.0336655
14.3943
26.3036
28.6458
12.5689
3.43475
2.95375
40.8336
3.8418
2.7199
0.118634
0.0216683
0.0318301
0.137897
0.153024
0.024468
0.107101
2.27983
2.00686
12.0032
2.23956
2.04619
0.056267
0.0923232
0.0168754
0.0136028
0.0880653
0.0646641
0.0126922
19.9428
10.9993
11.9979
11.7499
1.48257
1.5161
5.31918
1.57047
1.43456
0.0530738
0.010899
0.0157333
0.0813459
0.0844927
0.0114637
0.0503595
1.82131
0.684189
4.63687
1.7944
0.709917
0.0297965
0.0506223
0.00865899
0.0067765
0.0455888
0.0318029
0.00640808
2.9308
5.93131
16.4268
2.719
1.42727
0.456832
3.25852
0.438053
1.46055
0.0274584
0.00536654
0.0079389
0.0383829
0.0431999
0.00576296
0.0254012
1.3555
0.372294
2.86688
0.38849
1.32494
0.0168551
0.022998
0.00444529
0.00376628
0.0210817
0.018311
0.00349899
2.1397
2.0132
2.09107
2.10475
0.93282
0.299167
1.49106
0.287362
0.972011
0.0158078
0.00311205
0.004142
0.0189902
0.0198931
0.00322061
0.0153294
0.74223
0.201765
1.12589
0.210249
0.694377
1.76761
1.48429
1.57833
1.64117
0.496727
13.6935
0.0955263
0.583612
0.089869
0.519946
12.9556
0.408518
0.106011
8.34284
0.413002
0.0607415
11.102
0.370972
1.47836
1.36411
1.42297
1.41229
0.0671482
1.23238
0.0292502
0.718645
0.0282024
0.0689513
1.18517
0.0460665
0.0142995
0.814139
0.351956
0.0172618
0.895488
0.0422126
0.00106766
0.000858446
0.000982445
0.000778232
0.00138487
0.000944849
0.000843584
0.00120163
0.0050818
0.000540952
0.000531285
0.000529756
0.000546072
0.0028445
0.000540358
0.000528252
0.00147383
0.000544202
0.000539036
0.00262816
0.000527621
0.000539388
0.0207759
0.0304178
0.0133803
0.0121293
0.00164606
0.000539516
0.000537463
0.000534461
0.000544015
0.00109959
0.000539211
0.000531658
0.000815398
0.00054289
0.000538399
0.00099126
0.000529935
0.000538649
0.00363053
0.00312977
0.0034209
0.00417741
0.00271279
0.00258803
0.00207002
0.00168633
0.000525293
0.000723476
0.000538692
0.000541719
0.000526378
0.000644599
0.000538151
0.00798688
0.00945474
0.0102818
0.00885386
0.000527211
0.000655764
0.000538452
0.000541307
0.000528331
0.000610638
0.000538261
0.203134
0.333893
0.271323
0.476623
1.80138
0.166502
5.27781
0.400817
1.48144
0.813823
0.00123685
0.000715329
0.00113487
0.00102979
0.000721645
0.000708392
0.001162
0.0118176
0.00955204
0.00219968
0.00225642
0.0101425
0.0131759
0.00209786
1.12659
33.628
5.74175
0.643318
61.6214
0.590244
1.23061
2.59634
1.21074
15.5052
1.26379
1.36445
1.48511
13.8353
0.114472
0.890706
0.82758
0.333272
0.362158
0.0099146
0.00778819
0.00172967
0.00179259
0.00785979
0.0103267
0.00183961
2.80796
0.538667
2.52148
0.592382
17.5304
15.2657
57.1957
6.67578
4.41605
25.3912
3.78403
0.704217
0.723964
0.0125606
0.002483
0.00755626
0.00217762
0.0133024
0.00800407
0.00218832
0.0109998
0.00178607
0.00780522
0.00188337
0.00937344
0.0101513
0.00190421
0.00425008
0.00163761
0.000812703
0.00172032
0.000826466
0.000694933
0.000686142
0.00191334
0.000884695
0.000750804
0.000931261
0.000758148
0.000648314
0.000643204
0.263037
0.0059949
0.00176198
0.0966097
0.00217588
0.00208418
0.00173814
0.00461237
0.0527809
0.0509804
0.00147425
0.00139522
0.00141942
0.00142887
0.00121605
0.00073451
0.000753457
0.000616301
0.000679774
0.000685717
0.000613189
0.0496582
0.00343458
0.0319726
0.00122391
0.00124249
0.00120284
0.00128288
0.000668421
0.000892889
0.00100525
0.000640369
0.000605011
0.000608218
0.000630723
0.00281726
0.0135483
0.0152694
0.00121161
0.000921143
0.000931316
0.00121729
0.000880256
0.000646317
0.000655935
0.0005954
0.00063293
0.000637393
0.000593621
0.00483766
0.00191188
0.0033137
0.000970049
0.000861519
0.000845531
0.0010201
0.00138532
0.00149677
0.00156024
0.00081613
0.000767732
0.000773315
0.000804815
0.000741452
0.000609181
0.000614155
0.00058371
0.000607173
0.000609747
0.000582591
0.00130469
0.00118578
0.00117935
0.000741492
0.000736176
0.000729565
0.000762025
0.000690555
0.000604765
0.000614863
0.000586515
0.000595778
0.000599696
0.000584967
0.0896764
0.158541
0.0940335
0.03477
0.0452941
0.228677
0.0659318
0.107867
0.0602389
0.123182
2.22531
0.0575869
0.147714
0.934268
1.11219
1.12947
0.385208
0.335702
0.397133
1.91308
1.92923
0.15367
0.0342277
0.0930229
0.0698606
0.0719924
0.0576408
0.214435
3.64573
0.0639829
0.225201
0.145847
0.152802
0.111594
0.633354
1.5895
0.210821
0.493056
0.252547
0.620706
6.31708
1.16379
0.0497157
0.0893577
0.077468
0.527985
0.115451
0.0861652
20.9348
0.27566
0.475058
0.165891
0.467785
0.25437
4.26744
0.769998
1.95625
0.774992
6.37134
0.407484
0.7527
1.21172
6.13119
1.09447
0.439885
0.667987
0.0922938
0.107974
0.0768506
0.163938
0.0737536
0.160938
0.0981921
2.03734
0.0618248
0.0890467
0.4103
0.0823313
0.540501
0.780512
4.23337
2.9172
3.58093
0.371463
0.13369
0.192567
0.120871
0.560292
1.25469
4.70421
11.3286
1.7473
0.119817
0.141881
0.0866206
0.585133
0.0880603
0.467086
0.115939
0.493806
1.10821
1.84904
26.6035
0.867326
0.604159
2.41542
0.117398
0.145926
0.0825248
0.193701
0.0888786
0.105529
0.234947
0.900994
23.5793
2.16833
1.59284
8.30957
1.13543
0.844163
0.224361
0.474888
2.04878
0.608146
1.27135
0.359388
0.16586
0.0450389
0.285867
0.0432296
0.0431596
0.498105
0.17318
6.02793
7.12238
0.108973
0.031418
0.0261666
0.0795936
0.031595
0.0788217
0.105125
28.0639
10.4892
12.2463
21.7451
0.140091
0.0915181
0.192142
0.73132
0.0993797
0.125349
0.979074
2.01596
21.2222
2.88238
9.96499
0.156192
0.242762
0.11376
1.64862
0.164016
0.10899
1.27668
1.73599
45.5455
2.26148
1.29473
3.1485
0.142247
0.381957
0.492399
2.39059
0.301329
0.254058
4.32203
0.0425128
0.0188961
0.0199818
0.0537035
0.0182081
0.0530594
0.0448387
1.55294
0.986011
10.6793
0.956763
1.5213
0.228985
0.516305
0.129757
1.4465
0.152631
0.188765
5.56648
4.31619
4.1711
7.78056
4.61651
0.945395
36.2864
2.75015
2.20728
0.947665
2.57679
2.22356
0.936509
34.9769
2.73575
2.17086
0.948591
2.69677
2.12583
17.3744
33.9108
6.18951
3.65486
0.168844
0.0621825
0.116844
1.11536
0.141379
0.0654982
0.406949
0.142525
1.29353
0.0724329
0.183634
0.147622
0.0721809
1.96978
0.146281
0.307197
0.0566412
0.108272
0.131052
0.0605746
0.341493
19.3022
74.1692
9.20611
0.729778
2.72224
3.60718
1.78655
66.2095
0.845739
0.953208
4.66321
10.8539
1.47628
19.3513
15.9839
29.7614
8.28633
5.89828
13.5715
30.4089
2.53498
2.60047
17.7409
34.8726
3.72778
30.6014
24.0253
233.307
8.32027
8.11475
2.68192
0.530681
0.789138
2.68714
19.4846
0.664289
2.21057
4.4452
0.883847
1.40132
5.91978
26.5111
1.09707
3.66356
8.99238
16.5298
4.62353
2.14061
6.54342
3.03794
3.02963
88.8729
0.83511
0.87904
35.64
2.55107
1.18635
4.38656
0.601222
17.9918
1.15385
1.05137
256.989
4.03235
2.3851
18.321
0.917418
0.110912
0.0474434
0.391118
0.0645589
0.151355
0.0402519
0.219148
0.0486794
0.108015
0.229977
0.0449244
0.15035
0.0610307
0.0407112
0.06339
0.176611
0.337211
0.0689404
0.207148
0.0869671
0.0579726
0.0878526
0.205736
0.0602452
0.11274
0.0931736
0.0581591
0.206097
0.752562
43.5341
3.17935
1.3654
0.748925
3.16218
1.39699
0.0972807
0.0705659
0.122644
0.237467
0.0665793
0.103521
0.2173
0.238354
0.4724
0.288551
0.186565
0.182388
0.458205
0.247114
1.10441
50.379
3.93129
2.09386
1.09887
4.0111
2.10105
0.173664
0.127863
0.220434
0.341797
0.132204
0.167684
0.363685
5.90407
1.1923
1.94907
3.81482
16.2666
2.16181
0.782256
2.38883
0.416995
0.495315
4.28128
1.69208
2.63315
0.192409
0.089792
0.132029
0.109488
0.20265
0.132503
0.11298
2.45626
1.55747
19.0713
3.88774
1.27605
1.19777
22.3626
0.495201
3.40267
0.90949
0.613131
9.51714
9.18533
9.1045
10.3779
11.1287
0.262957
0.0662497
0.0848459
0.220957
0.335307
0.0778577
0.186916
0.292447
0.0705993
0.104722
0.336613
0.45043
0.0818642
0.228724
30.6739
5.69733
9.12898
9.46178
240.351
110.383
0.225461
0.467575
0.174829
0.283012
0.232297
0.170892
0.447763
1.13763
42.7921
4.75657
2.00341
1.13893
4.69178
2.01184
0.197537
0.147857
0.257347
0.415964
0.149729
0.193581
0.407363
0.218751
0.467098
0.294552
0.161331
0.166061
0.45742
0.211952
0.985608
37.1021
4.78229
1.93978
1.1234
4.28804
1.67046
0.204499
0.149324
0.273919
0.413025
0.154862
0.195842
0.425917
7.03865
3.44036
3.27941
5.7734
0.0939205
0.0317217
0.0778151
0.0280246
0.0321808
0.0992842
0.0754621
0.129154
0.0553887
0.163754
0.0424167
0.0440724
0.194641
0.121497
20.242
8.63957
21.5283
10.2072
61.6356
0.0892876
0.0704347
0.0292073
0.0321377
0.03284
0.0728027
0.0849079
29.2866
4.08989
4.67047
2.10787
2.79019
2.75345
3.09332
0.0504194
0.0203484
0.0534573
0.0225772
0.0477809
0.0529261
0.0219603
1.4507
1.0325
23.352
1.46917
1.08246
3.99455
8.03051
4.63752
8.3955
0.876937
23.0696
9.2663
0.674532
27.4973
0.822397
0.690408
13.3539
13.1647
1.92419
1.13396
0.418619
0.651334
1.04872
0.602689
2.0822
4.19139
3.29939
5.07074
2.457
0.108167
0.0495785
0.149138
0.0430211
0.133334
0.115465
0.0438884
5.58709
6.69841
6.97648
3.54613
25.4931
69.519
47.1896
0.0780163
0.0719158
0.0331609
0.0328631
0.0818211
0.073893
0.0345722
1.78268
27.6073
26.4269
1.28867
56.7183
1.36726
1.42069
6.92043
0.843058
0.549446
1.61869
0.81637
1.50118
8.05248
13.4232
12.2911
7.28375
7.3067
20.5418
2.17105
1.1702
0.446638
0.655738
0.641236
1.19732
2.13209
30.8261
238.136
35.4728
88.8799
2.51998
2.41175
2.88084
2.78202
0.482747
0.371192
1.33902
1.34633
2.04335
0.389673
0.399634
0.756188
18.4183
0.654486
3.78174
0.783003
21.3968
0.608108
1.00535
18.561
1.05297
5.29169
1.15239
18.8599
0.849875
0.100368
0.211319
0.24813
0.143579
0.123232
0.184824
0.115707
0.0718323
0.0882246
0.13484
0.204729
0.0679052
0.0917358
0.145828
0.178878
0.469422
0.133084
0.26615
0.181481
0.131142
0.81159
1.15403
47.8884
7.43014
1.84789
1.14948
6.72282
1.8696
1.1591
52.2363
7.55949
1.88544
1.16968
7.62779
1.86248
0.600516
0.783736
14.8412
20.7158
0.639198
13.3403
0.728349
0.288183
0.979202
1.21134
0.234093
0.283618
1.26781
0.230178
0.477763
3.38496
14.2897
0.506845
4.70451
0.561629
0.489873
3.62293
1.93319
2.75554
1.72786
1.22888
44.6986
1.74718
1.38025
0.53928
0.684848
2.39136
1.47887
0.514027
2.23382
4.62674
3.78753
3.80082
0.949581
1.50663
0.359849
0.489754
0.934142
0.359104
1.53125
1.69777
1.22377
26.893
27.1868
1.68566
77.6426
4.83765
3.14606
3.80316
10.2412
0.96544
1.9238
0.672739
2.11453
10.6861
1.04216
6.97
4.81413
4.9847
35.093
32.9803
26.6178
26.0151
13.8235
15.5161
3.8405
0.720191
1.09893
3.0184
1.0915
17.2288
3.03248
3.2434
54.0519
3.13263
0.503863
2.58207
0.48021
3.10637
0.498057
0.507378
2.42205
1.81475
2.16066
2.19735
40.4426
1.59505
0.982104
6.95907
1.50951
6.39131
43.0015
35.691
38.3145
9.437
4.14123
0.780191
0.730369
0.985535
8.42939
6.68947
16.5423
3.98424
0.713086
1.11287
1.09395
4.09592
17.1382
33.7751
1.3443
27.5742
0.841023
50.9257
1.00143
29.776
46.3434
2.86006
45.4409
1.23269
328.381
1.65672
32.9344
0.0484891
0.0462783
0.170067
0.180071
0.180948
0.0486766
0.0484508
0.137168
0.248679
0.171889
0.332998
0.254659
0.141054
0.165624
0.143506
0.189324
0.277349
0.347612
0.266413
0.153134
0.174019
0.107067
0.228265
0.307698
0.132614
0.133286
0.226302
0.105953
0.122111
0.172331
0.26573
0.328635
0.138327
0.149704
0.245999
1.34408
48.7582
8.71403
1.97215
1.37233
8.36468
1.94992
1.33566
48.7468
8.81518
1.99089
1.37862
8.6585
1.94319
0.044498
0.0989894
0.108261
0.0422901
0.111581
0.0461008
0.0467311
0.0480074
0.090866
0.0965883
0.0407792
0.0450478
0.102418
0.0430873
0.045087
0.128121
0.142474
0.0453801
0.126185
0.0479379
0.0471917
1.75253
0.428852
2.11605
0.40935
2.05018
0.402529
1.78678
4.3797
0.797221
1.06346
16.974
6.34281
0.753935
14.0536
1.76032
0.381357
1.88029
0.313616
1.63242
2.03134
0.330927
2.50557
8.75895
0.730459
0.997531
2.35664
0.738969
9.40559
0.0327443
0.0859576
0.0368615
0.070204
0.0394956
0.0730165
0.0345568
0.0234549
0.019499
0.0476273
0.0427027
0.0244406
0.0512252
0.0209885
0.0349858
0.0801925
0.0350226
0.0613212
0.0328002
0.0369162
0.0670306
0.0247563
0.0558842
0.0461945
0.0223363
0.0551782
0.0261013
0.0227018
2.51644
0.504738
2.30717
0.522974
2.44115
0.531748
2.40135
134.261
1.7547
7.34761
1.19388
7.48441
44.9117
1.83114
2.9801
3.155
0.687384
0.728726
3.16694
5.40087
0.680594
50.979
47.3878
15.2138
0.801003
26.7303
0.828332
22.1049
27.5669
0.829153
13.8696
1.31528
2.04496
10.0987
1.9757
1.2082
0.359676
0.372959
1.03818
1.08333
0.396698
1.01765
0.0442769
0.11149
0.0438576
0.113464
0.0493266
0.117575
0.0452024
0.0460307
0.0464079
0.149686
0.12613
0.0500784
0.130924
0.0472734
0.0503734
0.131099
0.0471313
0.153217
0.0485929
0.0491544
0.130502
0.0455254
0.112168
0.11227
0.0414861
0.124705
0.0462552
0.0462852
1.67426
2.12356
0.405017
0.482279
1.78618
2.11453
0.393259
2.60606
1.58229
37.3759
2.40902
21.6597
52.5556
52.0382
14.6105
1.45699
2.16025
2.2011
16.3049
0.03366
0.038202
0.0697273
0.089831
0.0366802
0.0396351
0.0720416
0.0358601
0.086585
0.0399432
0.0744036
0.0414857
0.0764576
0.038699
0.104443
0.225797
0.128626
0.319461
0.235095
0.102172
0.131031
0.111146
0.147297
0.267163
0.340703
0.252087
0.118146
0.138998
0.113952
0.202205
0.0917707
0.226337
0.107639
0.108573
0.250316
0.162034
0.385047
0.453089
0.222014
0.192167
0.359771
0.185048
0.135596
0.162444
0.293673
0.410166
0.131954
0.163693
0.319242
1.38943
51.0901
10.5701
1.94847
1.379
10.8865
1.9664
1.34853
49.2916
10.5717
1.86361
1.3466
10.6121
1.87097
13.2992
1.39561
1.81683
17.4698
1.32062
9.91537
41.7335
1.12018
1.60067
8.81055
1.13856
49.7147
2.90143
40.8742
1.7836
42.3802
1.9601
2.28363
2.3291
2.35487
2.97777
1.50827
2.79302
2.34158
2.3535
2.37162
0.174633
0.266829
0.134987
0.310947
0.148684
0.327632
0.158057
0.122439
0.191855
0.120373
0.285572
0.103115
0.1427
0.239195
1.47249
40.3009
14.7722
1.95381
1.48721
12.2923
1.93514
1.41822
23.7415
14.8361
1.91118
1.45666
14.2925
1.84366
1.39626
0.392176
1.03256
0.472747
1.0277
1.39538
0.472816
2.05775
1.74432
1.9859
37.3871
1.7202
2.55995
37.5546
1.77608
3.08362
1.75244
3.24358
1.81448
3.48334
3.46427
4.28703
2.15156
4.14162
1.87343
3.48643
3.47606
0.0500928
0.161828
0.041202
0.217914
0.0400013
0.212934
0.0515647
0.0516872
0.178617
0.0411979
0.22636
0.041425
0.0515321
0.233877
1.14503
21.8926
13.5845
1.49934
1.14779
13.5265
1.48832
0.374108
1.34139
1.07289
0.300475
0.310638
1.37741
0.361104
1.14214
22.4084
13.6581
1.47349
1.13575
13.9538
1.47702
1.5692
2.86328
1.5857
1.35988
2.52913
1.42213
4.34
2.5107
4.44365
2.62249
5.03372
4.90461
6.14936
3.41311
6.4119
3.09997
5.13184
5.26919
0.0465772
0.18483
0.0385926
0.247569
0.0377866
0.238392
0.0475988
0.341573
1.31025
0.284328
1.03268
0.341544
0.285068
1.3189
1.06345
19.7724
15.0401
1.32032
1.06147
14.9844
1.32453
0.376062
0.313962
1.16827
1.50352
0.313993
0.375907
1.49527
0.364974
1.55008
1.22076
0.304099
0.305948
1.55334
0.362432
1.00715
18.9271
14.8807
1.29182
1.03944
14.335
1.25307
0.360916
0.30796
1.16122
1.48682
0.301762
0.368773
1.48313
0.0524031
0.012517
0.069007
0.010972
0.0692259
0.0102912
0.0544259
0.379491
0.818687
1.31859
1.64666
1.00779
0.561421
1.74872
2.53953
3.69394
2.52202
2.13496
3.78794
2.26605
0.044525
0.0101362
0.008393
0.0450173
0.0387306
0.00917035
0.0504453
6.08415
3.43602
6.37622
3.90825
7.74291
7.73577
10.612
4.41175
10.7319
4.51559
7.69793
8.37026
0.215875
0.79922
0.2535
0.969112
0.797832
0.217427
0.251917
0.211689
0.25099
0.85606
1.02723
0.215166
0.839956
0.246913
0.354946
1.52775
0.299029
1.20426
0.356435
0.297636
1.52699
0.879661
16.9967
14.0787
1.09971
0.906515
13.2666
1.06845
0.347329
0.297331
1.29311
1.67465
0.292156
0.354157
1.65363
0.355164
1.70149
1.38459
0.295925
0.302368
1.70946
0.347579
0.908872
17.4684
14.1246
1.10651
0.912526
14.1347
1.0985
0.355485
0.297382
1.33414
1.69724
0.298928
0.3543
1.70261
0.0464413
0.00930526
0.0385437
0.00992963
0.0393908
0.0106933
0.045816
10.5243
4.50331
10.5587
0.0536102
0.057676
0.0121696
0.0136142
0.0601625
0.0518384
0.0123537
0.049111
0.010041
0.0466486
0.0112337
0.0432812
0.0486616
0.011246
16.5324
5.51357
12.2729
19.6717
12.8232
119.089
0.0534831
0.0114544
0.0133568
0.0644786
0.0609087
0.0120228
0.0549855
0.043405
0.0438986
0.00722521
0.00962708
0.0372437
0.0531737
0.0079842
14.538
12.0956
6.51889
13.137
13.2482
12.2843
14.231
0.0283904
0.0238853
0.00589573
0.0072652
0.00672304
0.0218173
0.0326883
19.4468
15.1516
5.47173
12.3232
15.1982
12.1911
38.3019
0.025172
0.00582035
0.0212113
0.00557319
0.0241946
0.00618869
0.0210457
0.0522965
0.0111703
0.0800442
0.0100979
0.0654991
0.00911884
0.063721
0.326805
1.64824
0.280053
1.32006
0.279762
0.328173
1.61813
0.788195
14.5253
12.0807
0.942717
0.794931
11.999
0.933381
0.337387
0.293359
1.45165
1.74183
0.292776
0.338425
1.72553
0.332829
2.86734
1.48355
0.28378
0.290114
1.73761
0.32541
0.80242
14.6067
12.0777
0.931625
0.787387
12.1001
0.951757
0.34017
0.291879
1.4798
1.75396
0.294213
0.336902
1.76573
0.0216208
0.00486367
0.0186901
0.00529324
0.0191383
0.00531446
0.0215993
13.9086
11.9285
13.0949
6.12438
12.8638
14.1539
11.3761
0.019822
0.0211262
0.00544187
0.00571644
0.0213249
0.019622
0.00540152
14.8067
14.7296
14.7996
14.8121
0.0198269
0.00481064
0.0196339
0.00519891
0.018592
0.0194823
0.00515192
12.8619
5.33452
8.86506
11.2078
6.11094
11.1029
10.1271
0.0220501
0.00571318
0.00593994
0.0247168
0.023234
0.00562105
0.0234984
0.0182961
0.0170802
0.00409909
0.00486451
0.0158504
0.0197316
0.00457346
3.13996
11.1418
10.4494
3.10732
3.20923
11.0824
3.08629
14.7064
14.6789
14.7507
14.6571
0.0200973
0.0223523
0.00467323
0.00535299
0.00477723
0.0190257
0.0235912
6.56815
4.227
9.1714
11.2902
4.24251
11.3906
8.77362
0.017234
0.00388581
0.0150519
0.00419229
0.0153418
0.00428261
0.0163698
0.0213167
0.00537704
0.024584
0.00565996
0.022662
0.00512526
0.0243712
0.305174
2.8614
0.270759
1.52056
0.266194
0.310749
2.90377
0.646562
12.0043
10.8262
0.731052
0.628451
10.5282
0.755656
0.285757
0.246447
1.53537
2.88933
0.251952
0.279515
2.96073
0.269761
3.36665
1.86901
0.241274
0.240064
0.272136
3.01596
0.599137
9.39762
10.2344
0.700245
0.606444
9.46285
0.690492
0.273128
0.243123
1.38252
2.79764
0.241287
0.275336
2.67399
0.0147213
0.00369192
0.01367
0.00384215
0.0139063
0.00392331
0.0148914
2.84444
11.2479
3.03083
10.4344
2.93279
2.91609
10.8887
0.0172479
0.0214055
0.00464646
0.00500551
0.0201474
0.0181928
0.00447144
2.81689
2.78985
2.96034
2.82285
0.0156217
0.00387064
0.0151153
0.0041841
0.0150941
0.0158481
0.00411779
2.59337
2.24046
10.1989
9.97627
2.37033
10.3115
2.54273
0.0156357
0.00403765
0.00456732
0.0167611
0.0177907
0.00418175
0.015575
1.78215
11.9732
10.1621
1.02842
1.28278
1.55322
9.94506
2.61691
2.71397
2.78687
2.47569
0.0100351
0.007073
0.00245904
0.00291866
0.00702459
0.00287513
0.00987898
2.44724
2.21108
8.72714
9.70408
2.12316
9.26244
2.52713
0.0150353
0.00392814
0.0165497
0.00380259
0.0160487
0.00371823
0.0151068
3.9693
0.873902
38.609
2.62253
1.13218
3.00231
64.565
2.58163
0.432966
0.118945
0.346847
0.232607
0.291591
6.68352
44.0088
3.5437
3.62636
40.7339
2.81655
0.250915
0.123379
0.281628
0.258113
0.305834
2.22988
13.9012
11.0335
3.23222
2.97015
15.7391
2.68817
1.10757
42.5418
1.8961
0.9198
3.21158
19.9109
34.9167
3.46289
3.31416
38.6978
1.88022
0.237482
0.121086
0.196467
0.255413
0.214367
1.24042
1.77787
0.269918
0.307826
0.117484
0.262021
2.85576
0.22165
0.414751
0.275406
0.107587
0.315839
0.184412
0.196182
0.760235
31.452
18.7823
6.04325
9.30769
18.2235
4.58911
61.5645
28.5222
0.3854
0.349822
0.250506
4.33321
0.198926
0.517902
1.52289
23.5332
10.3222
4.85019
26.5467
71.818
11.4893
2.05773
8.9511
3.33409
13.9671
4.80989
5.00568
1.48954
6.25349
0.859246
1.21833
32.3578
3.22091
1.65619
0.158795
0.145584
0.3934
0.518193
0.164002
0.615109
455.765
26.0295
61.9585
64.8567
40.0538
29.6864
15.676
113.336
64.9168
10.5142
5.12107
24.518
5.68287
770.219
18.0569
0.62801
1.19291
0.249925
0.170423
3.49133
0.528677
0.193065
49.8659
10.1085
6.03427
16.8747
16.6746
72.4715
18.8308
46.8876
648.494
39.3067
41.9156
0.222297
0.641509
0.133599
0.119759
0.408297
0.284473
0.107303
13.5152
9.57678
239.204
26.9149
7.31438
0.479813
0.282308
0.098838
0.184247
0.159511
0.23029
0.614762
10.728
1.65883
1.73324
8.77511
0.467063
0.190447
0.109913
0.270538
0.163751
0.240866
0.519565
9.53895
4.76477
4.76066
10.179
0.644422
0.453474
0.295552
0.375775
0.449102
0.376983
0.672481
0.560094
0.257314
0.328126
0.195822
0.34807
0.556259
0.26517
0.319186
0.418882
0.195328
1.45468
0.194992
2.4706
0.305662
5.27034
195.124
36.6943
8.88981
2.91885
22.4114
7.18416
6.36414
51.3464
3.45773
9.63147
0.658805
2.35141
1.32845
1.64668
1.06032
5.02019
61.6366
1.25303
8.7271
3.01367
5.39614
2.40573
0.412971
0.256435
0.497259
0.850817
0.291156
0.362196
0.80214
1.91798
2.50861
3.74332
17.6663
4.13238
1.83865
2.76452
0.555357
0.636816
0.410383
0.903998
0.414618
0.947208
0.543342
2.22963
20.6734
5.22354
2.66922
13.7831
3.96086
3.77498
2.30002
0.81328
1.54437
1.97054
4.88129
1.2257
8.89188
12.972
72.605
6.14442
507.695
93.1146
3.26184
5.23384
5.33197
0.292124
0.125583
0.350665
0.0764531
0.0858728
0.573465
0.240359
0.28848
0.110089
0.269957
0.0749656
0.0879581
0.396998
0.220806
362.509
32.7925
45.0995
13.0716
45.1469
11.9559
85.9025
29.0022
17.7606
38.3458
2.6258
270.144
2.50613
20.6942
4.62199
42.2928
1.96219
0.15682
0.0649165
0.237152
0.0630147
0.0605712
0.187772
0.171687
4.15364
6.90682
7.17957
5.20006
34.0519
49.7796
18.6061
1.29817
4.82365
4.94452
0.95921
4.94907
1.13743
1.21581
40.656
21.8185
242.385
46.0335
8.94137
3.0588
14.5189
7.03122
70.2788
2.43254
2.24999
6.60555
8.05565
3.05825
31.7709
1.76704
22.995
2.10506
5.94814
2.34249
6.56213
1.58034
4.92243
11.6097
178.909
6.46369
12.782
29.5344
0.240303
1.01459
0.681495
0.162492
2.29297
0.254008
0.194963
24.6225
25.9332
9.76969
11.3393
7.05018
5.34143
8.6451
2.48347
5.91663
1.67987
9.0787
2.36532
5.74709
1.11878
2.37249
5.98994
5.37169
1.56533
1.35492
4.0895
0.172851
0.144929
0.452031
0.335611
0.528619
0.159307
0.151365
0.188117
0.804638
0.136879
0.459471
0.208245
0.654145
0.144425
0.544125
0.40487
0.249835
0.337667
0.316159
0.387932
0.588451
6.10729
3.98614
4.03309
5.80982
0.479821
0.245077
0.196205
0.314091
0.259643
0.332363
0.45534
4.72515
3.74153
3.20627
5.7121
0.515564
0.348201
0.214558
0.271087
0.366207
0.27542
0.49055
0.460801
0.243372
0.314305
0.192119
0.333389
0.452071
0.2516
0.324834
0.440236
0.184675
0.541378
0.232802
0.647522
0.247005
1.48726
2.40751
3.88267
5.27454
2.02108
1.70252
3.13702
0.454684
0.534029
0.340631
0.810401
0.337214
0.455306
0.772136
9.06997
25.2341
6.20176
4.49178
8.79433
5.57007
95.5498
0.295523
0.395614
0.727596
1.08573
0.768477
0.2844
0.412082
0.287721
0.692231
0.41182
1.13539
0.282752
0.767642
0.40629
16.6616
85.9428
2.41848
4.18999
2.70326
12.8163
45.7356
4.43452
4.86506
84.6881
3.6425
3.77015
5.27339
86.2258
4.17628
4.05953
1.02813
4.14501
14.9618
1.1862
6.89137
1.28773
0.998033
4.65655
116.984
3.26338
5.04983
44.0793
6.33802
3.42231
5.75815
14.1733
25.3564
21.7697
24.8489
1.67355
1.70347
7.36016
14.0132
1.75812
23.1013
0.73792
3.65487
0.869475
3.68404
0.83203
0.840218
3.54516
0.121884
0.365132
0.413672
0.084523
0.541794
0.100055
0.101822
18.4719
4.33005
56.7767
2.49998
218.818
2.2803
43.6703
213.335
7.37761
6.2181
6.20537
0.118864
0.682843
0.141492
0.38268
0.165295
0.415277
0.113502
0.117432
0.115055
0.402685
0.213233
0.134223
0.325772
0.108095
10.8975
45.9942
2.10205
2.09222
26.5829
35.4678
1.85793
4.76825
1.33432
4.94055
1.14527
5.43362
1.1051
5.22657
0.0825196
0.110943
0.356988
0.306617
0.101192
0.0921801
0.270365
0.0719363
0.300997
0.0730639
0.183344
0.0877145
0.230183
0.0624742
0.396428
0.291442
0.132899
0.196819
0.177105
0.272939
0.427405
4.24695
3.1642
3.23099
4.08727
0.352486
0.13105
0.101561
0.233169
0.139219
0.240248
0.346376
4.09717
3.2209
3.17133
4.18574
0.353034
0.276805
0.103119
0.148625
0.256446
0.134522
0.381171
0.322737
0.112371
0.217332
0.0869885
0.222552
0.325295
0.119044
0.0898971
0.212179
0.513051
0.63854
0.120915
0.150911
0.419311
0.049353
0.258163
0.506889
0.0451416
0.0649792
0.329446
0.0333096
8.95718
68.7357
2.05624
2.67211
13.1261
1.84688
35.0272
3.96925
1.12586
1.69445
5.61884
1.21712
3.53597
6.76976
0.0202691
0.18304
0.0247282
0.317528
0.0193018
0.219706
0.0264571
2.94204
0.998789
5.34787
1.31329
3.34453
0.953931
4.53652
0.0643826
0.206572
0.192636
0.0601568
0.228422
0.0617362
0.060076
0.0708696
0.243602
0.397195
0.0712491
0.273357
0.0832001
0.06557
0.0732864
0.216272
0.306106
0.0752801
0.265272
0.0828916
0.0684917
2.06529
0.687836
1.63492
0.567928
2.66846
0.616898
1.65838
3.13056
3.32919
0.688574
0.768042
3.48472
5.21946
0.724058
39.2435
1.26106
39.9616
1.25199
16.8857
27.189
1.32116
0.0450812
0.171697
0.0473277
0.128629
0.0496259
0.151602
0.0438202
0.0437113
0.0456474
0.161426
0.144445
0.047137
0.149712
0.045375
0.0470072
0.199145
0.0555948
0.197171
0.0498815
0.0528679
0.16884
0.0421906
0.117083
0.132103
0.0426794
0.132702
0.0413185
0.0445379
2.60703
1.10606
4.69329
0.952378
4.85609
3.71755
0.827815
0.0732193
0.176047
0.0719579
0.150637
0.0750145
0.0677962
0.136985
0.526146
0.203017
0.254978
0.796306
0.188957
0.581258
0.770486
0.423332
0.295688
0.126966
0.15103
0.16445
0.319561
0.401646
3.29442
3.00167
2.96475
3.36586
0.412349
0.155585
0.115504
0.317385
0.144676
0.314166
0.417459
0.432542
0.172511
0.721008
0.183991
0.523242
0.136201
0.628115
3.25047
3.0447
2.96289
3.42422
0.290011
0.229554
0.068507
0.0934827
0.235579
0.086729
0.308429
0.34023
0.13043
0.280502
0.0824064
0.255606
0.372589
0.104493
0.403096
0.151471
0.123491
0.586681
0.112664
0.579667
0.425599
0.0443139
0.0467783
0.117943
0.120867
0.107163
0.0484367
0.0469076
0.043181
0.102807
0.106418
0.0422972
0.108238
0.0474861
0.0432422
0.371629
0.0712466
0.119363
0.506336
0.0913441
0.361091
0.517335
2.85876
2.84494
2.87052
2.6945
0.372524
0.122144
0.0993992
0.536551
0.0928419
0.388143
0.521765
62.9103
60.9936
0.300252
0.0565846
0.472336
0.0388504
0.338856
0.0327545
0.42017
2.53675
2.6611
2.66229
2.57119
29.9243
27.9165
56.8826
58.9429
0.321054
0.0405999
0.0433612
0.463994
0.0350036
0.443799
0.344725
0.345314
0.0485861
0.0573443
0.431363
0.0521844
0.336197
0.445184
2.50238
178.814
2.68434
2.63747
3.80698
23.1559
29.3983
0.371847
0.0652296
0.0566415
0.493386
0.0593209
0.375362
0.478333
23.1296
56.8888
21.8534
61.4863
0.419425
0.0743256
0.511025
0.0995465
0.402283
0.0864196
0.530578
3.58375
46.0009
2.60243
2.49892
3.72259
17.4169
27.9996
28.3935
16.9216
17.8254
56.307
21.202
53.4031
0.307129
0.0583156
0.0546209
0.293208
0.0681812
0.387884
0.22075
52.0756
55.1112
0.631261
0.0634151
0.375405
0.0636361
0.494437
0.0688877
0.48383
0.0606547
0.00457946
0.00562309
0.0833947
0.0048164
0.0632286
0.0789435
2.74844
42.3289
2.01809
1.99318
2.79437
12.0379
30.8039
16.0603
24.1544
0.0936771
0.0133882
0.0232381
0.17712
0.0103754
0.125984
0.124112
10.8264
20.5298
9.39521
21.2627
0.0448322
0.00457891
0.0754032
0.0044648
0.0577678
0.0039143
0.0574785
2.67384
43.2978
1.9661
1.96409
2.68881
8.14885
16.6344
19.0395
6.76811
8.84015
20.2932
11.3047
20.0482
0.0389183
0.00425928
0.00338353
0.0436374
0.00371175
0.0496101
0.034213
0.136501
0.0065368
0.108587
0.006762
0.103407
0.00761028
0.1423
50.5211
28.6552
0.221103
0.0165362
0.233769
0.038498
0.309385
0.165232
0.0205087
22.2149
22.8049
0.0963215
0.0981521
0.00516333
0.00678713
0.074194
0.128627
0.00599438
49.8494
20.4828
20.7428
44.4298
22.2298
22.0336
0.0821194
0.00494253
0.0559895
0.00512882
0.0636612
0.00576574
0.0721251
75.0444
83.739
0.232784
0.0395688
0.0400442
0.187402
0.202565
0.046947
0.192453
70.0392
28.9225
0.160477
0.146543
0.0286793
0.0275428
0.0304807
0.157954
0.157468
0.166963
0.0352035
0.176751
0.029816
0.174908
0.0328252
0.168331
0.0170052
0.0019208
0.00213794
0.0190503
0.0019499
0.0156591
0.020737
2.25759
38.0171
1.69948
1.70721
2.24369
5.85957
15.3234
6.23602
14.3412
0.019715
0.00297013
0.00278384
0.0253359
0.00263795
0.0202661
0.0242928
5.4585
10.3674
5.30901
10.7285
0.0144011
0.00173617
0.0165354
0.00205295
0.0136405
0.00186604
0.0176241
2.13232
36.4882
1.66077
1.61421
2.18747
4.48326
7.409
7.7952
4.26781
5.11882
10.255
5.24357
10.318
0.0134276
0.00162937
0.00116195
0.0124445
0.00150529
0.016394
0.010388
0.0310134
0.00234676
0.0232488
0.00254022
0.025366
0.00257321
0.0283732
23.1642
18.7461
27.5475
17.446
0.0371756
0.00336306
0.0319343
0.00414257
0.0404363
0.0300449
0.00381345
20.8756
15.1576
15.4309
21.0622
0.0268136
0.0201214
0.00226423
0.00222481
0.0216949
0.0245033
0.00249735
19.0087
9.48165
9.96602
18.2873
22.7281
15.0091
15.3783
20.7164
0.0248138
0.00176639
0.0149725
0.00133366
0.0201248
0.00191287
0.0180801
0.0881355
0.0193422
0.0179043
0.103999
0.091875
0.0178787
0.100741
0.134223
0.0236414
0.112376
0.024708
0.111132
0.0251317
0.136734
0.153883
0.131035
0.0271125
0.0221185
0.125359
0.154671
0.0261149
26.4392
13.2179
14.0885
24.1974
0.155336
0.024456
0.0205778
0.104167
0.115513
0.0253362
0.153976
0.132975
0.111268
0.0210344
0.0235616
0.111241
0.136147
0.0217415
17.9385
12.5354
22.9303
11.34
0.0885434
0.0634896
0.014204
0.0131252
0.0161281
0.0746377
0.0691261
0.129545
0.0202132
0.115775
0.0186146
0.113912
0.0200427
0.121365
0.113766
0.0223481
0.0903539
0.0148885
0.141805
0.0191431
0.0775815
0.00847864
0.00179324
0.00155986
0.00939553
0.00146059
0.0079536
0.0100087
1.73637
32.6269
1.38776
1.34725
1.79129
4.21767
7.14386
4.15188
7.07687
0.00995601
0.0016167
0.00141709
0.012188
0.00149331
0.0101147
0.0119867
3.46041
5.14945
3.60363
5.19213
0.00775468
0.00176084
0.00871856
0.00203924
0.00731097
0.00186073
0.00926827
1.78312
33.4724
1.39786
1.38347
1.80821
3.10865
4.27115
4.48311
3.02829
3.45488
5.7838
3.86526
4.78835
0.0141181
0.00166719
0.0111434
0.00233694
0.0118616
0.00177944
0.0132843
16.6389
9.13293
17.7053
9.23719
0.0216337
0.0268572
0.0019196
0.00223535
0.0219744
0.0020664
0.0265039
0.0176897
0.00175421
0.0147657
0.00177953
0.0179839
0.0145175
0.0019038
15.38
6.41791
6.71199
15.2586
0.0168121
0.00255537
0.0020141
0.0189606
0.00189712
0.0158512
0.020023
0.0135921
0.0104637
0.00223946
0.00230755
0.0111614
0.0126704
0.0024612
12.6192
4.86398
5.27689
9.48329
0.0150499
0.0134081
0.00144357
0.00246333
0.0022651
0.0107627
0.0185876
13.6442
7.27638
5.69625
15.4716
0.0122988
0.00190782
0.00721957
0.00136688
0.010109
0.00207984
0.00877768
0.0166032
0.00253175
0.018952
0.00297068
0.0154308
0.00270554
0.0204865
0.0396335
0.0120152
0.0724795
0.00962295
0.0595182
0.00925532
0.044186
66.0961
0.0318119
0.0264822
0.00752589
0.00712422
0.029774
0.0323709
0.00765787
19.1077
18.3078
18.5428
19.0328
0.0434617
0.012363
0.0887791
0.0101269
0.0706741
0.0623516
0.00935086
41.2997
0.0331681
0.00815469
0.00746445
0.0344368
0.0324114
0.00787173
0.0354311
0.0705805
0.0169732
0.0995338
0.0117781
0.111139
0.0132588
0.0613075
0.0612312
0.0609035
0.0131687
0.0106437
0.0581232
0.0669573
0.0121348
11.1644
19.8437
5.89212
10.6275
0.0882695
0.0185908
0.117915
0.0172517
0.117366
0.106328
0.0153122
28.2327
24.3112
0.0571921
0.0103545
0.0099198
0.0538316
0.0562487
0.0111646
0.0545774
0.0481042
0.0779672
0.0098701
0.0104177
0.0496181
0.0539227
0.00954567
16.6541
17.8199
18.5697
15.9858
9.8239
17.6903
10.1861
16.9303
0.0487527
0.0459242
0.00832139
0.00781566
0.00861049
0.048217
0.0478786
19.5266
22.4618
0.0442543
0.00846535
0.0375577
0.00834792
0.0389649
0.00868296
0.0434836
0.0502234
0.0095179
0.0503166
0.00836647
0.0513374
0.00920243
0.0501551
1.47123
28.0934
1.17309
1.15929
1.49149
2.74627
3.94372
2.81573
3.80556
2.50195
3.29154
2.29847
3.36984
1.50324
28.426
1.15594
1.18406
1.46348
2.01069
2.87311
2.94145
1.95088
2.29786
3.23077
2.22203
3.4615
0.00375815
0.000718807
0.00335727
0.000731705
0.00338387
0.000733791
0.00370961
8.23371
4.46053
8.66673
4.27333
0.0044335
0.00490072
0.000782612
0.000799399
0.00436147
0.000785754
0.00494299
13.5818
27.7824
15.0708
34.4309
0.00398707
0.000751797
0.00348483
0.000766903
0.00390019
0.00357759
0.000769668
6.02809
3.58745
3.63989
5.93602
0.00416859
0.000744599
0.000757608
0.0044996
0.000747056
0.00409216
0.00462531
0.00407016
0.0033481
0.000769505
0.000738865
0.00363119
0.00371856
0.000790245
3.72314
2.97977
3.07061
3.44705
13.663
16.0249
13.3381
14.6244
0.00485988
0.00608852
0.000851907
0.000834473
0.000816891
0.005366
0.0054417
5.84842
3.51619
3.76552
5.75155
0.0043165
0.000774924
0.00414681
0.00082395
0.00384713
0.000796247
0.00470388
0.00457394
0.000752258
0.00456991
0.00082687
0.00413084
0.000809993
0.00511915
0.0333538
0.00694909
0.0344441
0.00709291
0.0328769
0.00690923
0.0352664
15.8102
14.8155
15.7237
14.8466
0.0309377
0.02639
0.00590389
0.00644631
0.0302272
0.0275449
0.00635544
15.5437
14.0266
14.975
14.6328
0.0311422
0.00667039
0.0276518
0.00616462
0.0309222
0.027816
0.00661043
16.329
15.7211
16.2984
15.5937
0.0332067
0.00678317
0.00683771
0.0355931
0.0330661
0.00663817
0.0350962
0.0416143
0.00739976
0.0384483
0.00759351
0.0367884
0.00749253
0.0435691
15.0642
17.4272
16.7964
15.6272
0.0432817
0.0396499
0.00755244
0.00605882
0.0355211
0.0444892
0.00720662
27.0727
2.12718
2.35173
15.4876
0.0403094
0.00728702
0.0350328
0.00768037
0.0352656
0.0404369
0.00745534
14.0994
15.3669
15.7803
13.5376
0.0437021
0.00705897
0.00575994
0.0317472
0.0340147
0.00709993
0.0450421
0.0426752
0.0371195
0.00719397
0.0072661
0.0380861
0.0419677
0.00714156
12.1741
13.4718
14.0802
11.5801
15.3154
2.10113
15.3439
2.06546
0.0392821
0.0229298
0.00618693
0.0040377
0.00576578
0.0405711
0.0212178
13.339
15.2213
15.1142
13.4495
0.041404
0.00680752
0.0386591
0.00705942
0.0376258
0.00663192
0.0426956
0.0426193
0.00669209
0.0292614
0.00473643
0.0429788
0.00643192
0.0268553
1.16854
23.0997
0.893786
0.928964
1.10995
1.71741
2.71384
1.8547
2.51953
1.22184
1.75141
1.09389
1.962
1.04659
10.9373
0.849149
0.835775
1.06141
0.862464
1.36656
1.44047
0.819777
1.09841
1.69191
1.06121
1.7227
0.00090798
0.00054147
0.000893432
0.000545469
0.000890606
0.000549263
0.00090839
3.00474
2.81355
3.23473
2.6117
0.00188266
0.0046033
0.000673979
0.00058825
0.00409658
0.000581072
0.00199384
10.7857
9.89564
10.2174
10.3178
0.00176288
0.000563525
0.00322493
0.000659346
0.003624
0.00165313
0.000572359
2.48499
1.87648
2.11179
2.16612
0.000923493
0.000553019
0.000564013
0.00092771
0.000557184
0.000921238
0.000932197
0.00110581
0.00111184
0.000527895
0.000543331
0.00106375
0.00115325
0.000533746
1.87912
1.51849
1.60231
1.77167
8.56906
9.68615
9.97222
8.73691
0.000729258
0.0012248
0.000543643
0.000541295
0.000536504
0.00117803
0.000727588
2.03778
1.80988
1.83661
2.08581
0.000728654
0.000525766
0.00109338
0.000538247
0.000726693
0.000531084
0.00113532
0.00114947
0.000550043
0.00123597
0.000545056
0.00119555
0.000539725
0.00119403
0.0203954
0.00521434
0.0316655
0.00490066
0.0257784
0.00448531
0.0246545
2.577
2.75801
3.24989
2.46491
0.0099069
0.00703895
0.00295843
0.00264062
0.00716602
0.0096923
0.00303111
2.04803
1.48512
1.68152
2.4662
0.0171952
0.00467639
0.0180046
0.00392079
0.0212644
0.0155052
0.00413701
9.10882
10.3942
11.7436
9.55508
0.0107801
0.00329534
0.00272149
0.00804268
0.00750387
0.00315119
0.0122266
0.040632
0.00717014
0.0388863
0.00608939
0.0392789
0.00682285
0.0365636
10.8427
13.2105
12.8393
11.2243
0.0351401
0.0188787
0.00679023
0.0052
0.016891
0.0382122
0.00653484
1.46074
1.4378
1.52296
1.33266
0.0417741
0.0076373
0.0391799
0.00760605
0.0392416
0.0426617
0.00747802
8.98506
10.3996
11.2048
8.08869
0.0285932
0.00484612
0.00457707
0.0127654
0.014435
0.00563347
0.0192491
0.0184203
0.0363621
0.00507408
0.00524114
0.028828
0.027921
0.00455785
1.60843
1.39816
2.69191
1.36508
1.24946
1.41351
1.30413
1.36344
0.00942519
0.00895151
0.00293442
0.00308294
0.00311982
0.00866263
0.00938511
5.83748
9.75464
8.94405
7.09943
0.0105456
0.00337172
0.00862457
0.00291566
0.013942
0.00321584
0.00861787
0.0127527
0.00434705
0.0115884
0.00422241
0.013677
0.0042327
0.0121454
0.858395
9.97064
0.69784
0.697227
0.856696
0.805497
1.33389
0.800654
1.3441
0.632735
1.04411
0.651714
1.01039
0.850413
9.14336
0.687526
0.694139
0.840707
0.46309
0.384769
0.660396
0.287321
0.59851
0.98773
0.624394
0.898571
0.0015107
0.00053521
0.00147169
0.000537754
0.00142534
0.000540644
0.00156107
1.80543
1.48063
1.71917
1.50934
0.00113458
0.00120061
0.00052149
0.000522652
0.00115029
0.000519778
0.00117669
1.784
3.34609
1.92018
3.24967
0.00109663
0.000512433
0.00105861
0.000517132
0.00110425
0.00105784
0.000516163
1.45579
1.22197
1.1807
1.52283
0.00159724
0.000544247
0.000550328
0.00175054
0.000545819
0.0016493
0.0016977
1.06519
0.449913
0.783861
0.626986
1.49713
2.55606
1.5863
2.09902
0.00141239
0.000793599
0.000502249
0.000511476
0.000506318
0.000783293
0.00147224
1.38489
1.15245
1.04835
1.42271
0.00205889
0.000522733
0.00156194
0.00053279
0.00148726
0.000526917
0.00220388
0.0073551
0.00252349
0.00767701
0.00253671
0.00746981
0.00250258
0.00749164
1.76507
1.75812
1.75874
1.76158
1.31454
1.17327
1.38008
1.15652
0.00719582
0.00247821
0.00704471
0.0023802
0.00687422
0.00729532
0.00245646
1.49183
1.34573
1.50337
1.34457
0.0062593
0.00213102
0.00212913
0.00668646
0.00663067
0.00212884
0.00635176
0.00718772
0.00225719
0.00691704
0.00223336
0.00695305
0.00226033
0.00713628
1.32703
1.38586
1.3486
1.35969
0.00801839
0.00855651
0.00265253
0.00259681
0.00830475
0.0082336
0.00258578
1.20329
1.32403
1.37966
1.16597
0.0077179
0.00252331
0.00766639
0.00263172
0.0074099
0.00795584
0.00255593
1.29124
1.24752
1.2882
1.25538
0.0073958
0.00223257
0.00223559
0.00744618
0.00755391
0.00225901
0.00732045
0.0080628
0.00798424
0.00257283
0.00265481
0.00771496
0.0084417
0.00261331
1.13525
1.12395
1.10947
1.1276
1.23523
1.45109
1.25873
1.3926
0.00690406
0.00697407
0.00208526
0.00206537
0.00210838
0.00702391
0.006969
1.29693
1.27291
1.2754
1.29279
0.00671689
0.00212766
0.00675753
0.00210604
0.00649057
0.00212291
0.00691395
0.0083864
0.00269945
0.00935028
0.00265696
0.00890638
0.00264839
0.00862856
0.566292
7.62782
0.463922
23.1607
0.472455
0.553377
0.222391
0.328852
0.247912
0.288081
0.226072
0.229173
0.200992
0.265284
0.473551
7.26597
0.416433
19.2037
0.403055
0.492063
17.6182
0.139206
0.244716
0.148302
0.225686
0.160445
0.195636
0.174432
0.1745
0.521921
0.388223
0.570585
0.340716
0.000521576
0.000530575
0.000497857
0.00050226
0.000526396
0.000526206
0.000496839
0.396604
0.209654
0.238135
0.342073
0.488552
0.254676
0.300745
0.396415
0.000529973
0.000494371
0.000500355
0.000528056
0.000533242
0.000494914
0.000523478
0.217015
0.25944
0.155619
0.373328
0.226266
0.174815
0.13814
0.287174
0.283904
0.215135
0.188423
0.336625
0.000514039
0.000492937
0.000521657
0.000498419
0.000518893
0.000516225
0.0004929
0.875536
0.646764
0.589039
0.995924
1.20932
1.0238
1.06813
1.093
1.26704
1.14467
1.29077
1.12218
1.06193
1.11662
1.07194
1.11508
1.11002
1.3464
1.24767
1.17918
0.00706342
0.0021108
0.00703773
0.00208438
0.0070373
0.00710088
0.00207106
1.03369
1.10361
1.10331
1.04683
0.959285
0.969186
1.0174
0.989147
1.02525
1.22842
1.14556
1.09407
0.975026
1.07502
1.04844
1.00926
0.366694
6.16336
0.306758
14.3224
0.315538
15.2964
0.354641
0.10446
0.158842
0.149789
0.10619
0.124477
0.103817
0.100697
0.130096
0.328777
6.18411
0.287905
14.1194
0.288905
0.329462
7.55686
0.456279
0.419369
0.435129
0.0804968
0.566893
0.0933499
0.543924
0.107377
0.131512
0.165436
0.220396
0.108673
0.333279
0.187058
0.284559
0.215218
0.146862
0.103056
0.130373
0.109742
0.0866791
0.076658
0.0803223
0.0821525
0.261041
0.173509
0.269942
0.197343
0.116142
0.0942187
0.109455
0.0995319
0.373303
1.01665
1.01933
0.360867
0.339937
0.543879
0.397434
0.453671
0.443493
0.737879
0.506525
0.662267
0.858797
0.887424
0.87911
0.892111
1.00995
0.199721
0.272964
1.71057
0.814345
0.832511
0.784981
0.967503
0.727513
0.644334
0.786874
0.523551
1.04425
0.160661
0.138742
1.21981
0.832585
0.781451
0.71853
0.892815
0.55097
0.614198
0.222484
1.03258
0.276418
4.90532
0.403851
257.602
7.85622
12.1059
25.2625
208.732
5.09574
24.3156
0.690168
0.417114
0.416902
12.4933
0.230463
1.53136
1.14559
0.214465
0.331213
0.170937
0.763991
0.128796
0.307653
0.625536
0.224662
0.731898
6.08913
0.2606
0.394728
0.838793
0.159869
3.12426
7.21526
19.6961
47.9627
3.46395
5.96681
8.7235
0.187249
0.396493
1.05081
1.09131
0.293383
0.588135
0.241835
0.117508
0.200746
0.0921721
0.584613
0.0774201
0.335589
0.146093
148.201
16.4156
24.056
606.776
10.4639
14.1047
44.5789
156.45
0.376521
0.44033
0.0783244
0.179239
0.221045
0.784842
0.11892
0.405319
0.407932
0.0970725
0.206605
0.661415
0.136877
0.262162
24.5864
12.4835
268.564
13.1076
78.9167
38.9163
3.35291
10.345
309.962
12.7715
5.00937
60.4762
19.5753
15.3481
85.7878
39.7767
37.5281
60.4776
4.70234
9.56985
5.65713
35.3217
32.0371
33.0061
22.3035
4.46123
4.01277
30.2842
14.4394
101.54
27.4613
27.7718
10.7198
10.7975
31.9438
31.0808
5.48622
66.1824
5.89294
5.66411
10.2043
3.95073
1.78123
2.04727
4.27461
15.7742
19.1558
19.8156
14.9985
4.89182
239.902
6.7504
4.12027
20.8245
77.9997
24.0598
15.8223
7.08098
21.8663
21.8969
22.387
21.4558
7.17953
6.41367
19.4146
18.8837
20.0171
19.2825
6.27646
5.13293
15.0595
8.78711
15.4349
9.06568
4.99251
6.04838
18.2925
18.5321
18.1733
17.9139
6.17215
0.133805
0.0748057
0.40955
0.405232
0.0899476
0.108791
0.700558
0.1747
0.734495
0.514689
0.200377
0.230196
0.164132
0.599031
0.174937
0.0888289
0.320224
0.336459
0.136128
0.11745
0.42466
1.17561
0.312316
0.686524
0.400171
1.15766
0.80126
0.439968
7.37114
4.06264
43.1456
7.2233
4.56884
22.6897
6.68256
39.7945
4.26641
25.9559
8.5363
59.1855
17.51
14.1108
7.48179
228.356
11.5035
194.211
29.0486
34.3517
11.1477
14.0852
46.638
46.868
34.3411
32.3257
37.1366
5.15158
3.89189
77.3077
4.13768
136.714
63.4698
20.7752
21.2756
46.0106
45.1364
39.8804
4.75617
0.338281
0.739381
0.24378
3.46372
0.336392
0.72084
71.9489
12.3352
34.3907
12.8853
162.045
15.797
167.759
15.5252
2.2433
0.234889
0.456088
0.621648
1.82177
0.52111
0.681575
4.84134
16.1823
8.66295
8.34001
5.08496
16.1171
4.78719
7.83353
16.7783
7.8084
16.6098
4.86446
4.97799
18.0654
7.13698
18.3191
7.35721
4.90554
4.71518
7.65499
16.3649
16.2108
7.57953
4.77504
74.5847
70.8316
14.4683
297.886
9.13389
39.958
12.6303
26.5696
1.6178
6.30629
1.28152
3.08448
1.75621
1.261
5.04691
0.190901
0.284908
0.0656166
0.0701848
0.248639
0.0775422
0.239636
6.94177
67.4562
11.0107
7.21818
319.163
9.1945
7.3321
7.39474
9.76263
50.7468
6.94233
23.0571
127.841
19.816
19.6838
18.3224
18.2185
92.0744
37.7615
0.356227
0.0707254
0.0740303
0.199659
0.0902935
0.263967
0.264327
406.977
92.5317
26.7404
74.1319
0.453213
0.416308
0.0854144
0.112719
0.107352
0.31894
0.643654
39.8098
10.6387
12.4471
24.0611
17.3848
18.3371
18.1536
17.93
0.82384
0.22986
0.363325
0.124738
0.89631
0.21341
0.332552
42.2389
5.25505
35.8521
8.75415
21.2777
10.8719
24.9696
10.7001
0.76891
0.112064
0.167948
0.282763
0.618473
0.19524
0.303774
4.48811
17.0391
6.66494
6.59931
4.56035
16.9424
0.11109
0.0993653
0.387628
0.0281213
0.0299403
0.39996
0.108315
4.24993
6.28685
7.89782
6.12546
15.8799
2.87378
2.68031
7.33865
5.04028
7.67168
5.52528
2.56087
0.100975
0.0884379
0.365465
0.025354
0.0252653
0.372625
0.102607
2.78565
6.17839
7.79532
7.75225
6.1342
2.80628
31.5454
469.826
37.2175
4.21905
7.10123
5.00691
83.8978
119.366
3.41726
2.52392
13.9476
3.93786
23.4201
68.2303
0.47491
5.82068
0.773681
7.51174
0.592462
5.0601
0.605336
0.0401114
0.0268492
0.318963
0.380166
0.0345588
0.0305129
0.491212
0.0472905
1.74373
0.0336424
0.489823
0.0462407
0.035306
0.772297
23.4091
45.0221
15.8452
13.8264
4.02377
1.21639
1.6131
4.19391
1.65104
6.23228
34.1117
3.09577
15.8784
1.89759
10.1885
50.3632
2.83435
15.5768
5.89645
6.67857
3.84729
42.9185
1.90037
119.635
2.82007
592.71
2.59236
0.127475
0.036624
0.104175
0.0271383
0.0353271
0.0903965
0.143163
41.0034
33.5581
9.47274
55.8727
8.39821
8.50107
9.62231
20.643
6.44294
323.579
6.87652
5.02642
6.01522
17.3849
16.412
16.0959
16.3261
1.02565
1.03536
20.2571
84.9346
0.770692
1.42934
46.8503
0.637248
0.65251
3.23093
1.09201
0.366944
2.53591
0.871758
0.419048
2.92091
0.432818
3.55556
0.393396
3.79853
0.536987
3.04251
2.19217
21.808
1.98961
6.61451
51.0825
69.5662
14.7885
14.8072
15.6181
4.07264
26.1356
15.9634
15.7761
21.6741
31.3072
48.0061
60.6725
0.38637
0.109008
0.195836
0.0670176
0.429176
0.0994914
0.172296
9.74308
13.0287
9.30682
13.331
11.9731
4.67149
27.4845
4.59351
0.364076
0.0622991
0.0946215
0.184606
0.375131
0.0937691
0.163316
2.31663
7.23885
4.7395
410.578
5.47267
2.46588
6.87171
0.0955571
0.0977514
0.386147
0.0246227
0.0240706
0.389963
0.0949194
1.93824
4.96349
94.6432
6.46701
4.98612
6.49612
1.93855
1.81407
6.05625
83.479
4.54555
6.06866
4.66811
1.77516
0.079774
0.0836169
0.353782
0.0214909
0.019336
0.337729
0.0840146
1.85984
4.83974
89.7895
6.32914
6.30895
4.81776
1.86099
55.0353
2.382
4.01537
408.978
3.08882
45.9921
4.96967
3.94191
0.988876
1.46084
1.32281
3.44921
6.02773
6.84301
5.37522
8.21781
0.0174452
0.111863
0.0217547
0.132658
0.0169891
0.092324
0.0228786
0.0159258
0.0807645
0.0115189
0.0493181
0.0136811
0.0127709
0.0663634
0.013806
0.0794055
0.0525714
0.016637
0.0133349
0.056214
0.0176094
32.602
2.07002
140.11
2.04917
43.6226
1.6916
69.5581
12.0766
0.633865
0.54846
22.5977
0.591798
23.5194
7.18641
0.66979
0.354966
5.43007
0.568311
0.199013
0.888904
3.9188
0.310096
1.2319
0.294932
2.42463
0.28647
0.372659
1.6156
5.72343
2.27211
3.48883
14.9373
16.293
18.5266
1.32072
25.6678
8.52604
35.2147
14.2754
19.4214
19.9053
2.11314
1.62252
0.941336
2.5037
4.9319
0.0316808
0.0155126
0.133135
0.0994312
0.0190013
0.220301
0.0246028
2.69782
4.34438
130.951
3.56031
15.4443
16.1134
4.92292
0.391748
0.657439
0.215929
0.659477
0.701682
33.2365
19.2092
18.6744
56.0296
0.768347
30.1432
0.847245
35.989
0.920264
50.2103
1.31224
0.787846
0.356161
0.475049
2.97711
0.270341
0.0702843
0.124071
0.0453158
0.286543
0.0680614
0.12054
7.07987
4.46728
6.97546
4.48969
7.74433
5.03388
7.87946
4.97547
0.234124
0.0411993
0.0546145
0.105511
0.215868
0.0594289
0.111583
1.71843
5.95828
4.4672
77.2124
4.33626
1.73013
6.24224
0.0700045
0.0150729
0.339685
0.00452438
0.00491875
0.354612
0.0672953
1.6269
4.03092
72.6303
5.85717
4.09596
5.94026
1.61865
1.39638
4.74323
60.3919
3.51241
5.03559
3.53103
1.35659
0.0558465
0.014215
0.318741
0.00410266
0.00439381
0.29019
0.0618729
1.54756
3.95061
67.9369
5.75608
5.63888
3.92268
1.57588
1.45343
0.235695
0.304988
1.44208
0.285892
1.23568
1.82771
4.77909
0.411626
0.401604
16.5284
0.377535
5.97133
6.45093
0.010959
0.0419551
0.0097708
0.0624066
0.0111733
0.0555891
0.0109657
0.0112687
0.00895932
0.117676
0.025018
0.00581298
0.0172454
0.0631252
0.0131384
0.0465816
0.0138656
0.0962768
0.0119907
0.0164303
0.0613426
0.0102322
0.0651639
0.0271034
0.00394462
0.00559408
0.0572894
0.00980427
2.74988
0.375672
1.78416
0.386513
2.29091
0.465437
2.22561
15.431
14.9394
1.88257
0.307699
0.41392
0.0802122
0.253067
12.4829
0.45831
19.522
0.497832
20.8444
0.656411
43.5059
14.7897
0.628083
11.3398
12.3699
0.00723991
0.00631586
0.0290296
0.0388655
0.0066958
0.00654444
0.0349175
0.0045491
0.0207058
0.00534383
0.0271905
0.00467712
0.0234637
0.00530706
0.00660849
0.036402
0.00204647
0.0266946
0.00399046
0.00539541
0.0365718
1.18745
1.49743
0.193438
0.32633
0.980705
1.80135
0.234876
10.3372
10.1031
11.1292
10.8441
0.140556
0.0356264
0.0665026
0.0236897
0.148316
0.0341694
0.0642921
0.231065
0.318582
0.0685788
0.0434111
0.212769
0.34816
0.0479734
6.56267
65.7249
3.45923
6.36687
3.5151
0.243143
0.0557232
0.434883
0.0734929
0.267166
0.364915
0.0512576
6.90666
3.76729
71.1955
7.01787
3.72762
0.132714
0.0215126
0.0292661
0.0572258
0.121909
0.0315723
0.0602175
1.29471
4.67381
3.42538
55.7922
3.38204
1.31523
4.58009
0.0376234
0.0046132
0.147966
0.00157779
0.00191296
0.199127
0.0285635
1.03971
1.62606
18.7598
3.58625
1.77877
3.87024
0.985273
0.837367
3.21563
14.3018
1.42583
3.13512
1.44588
0.840048
0.0261458
0.00704686
0.137709
0.00134872
0.00187712
0.142611
0.0249229
0.919912
1.5539
15.4915
3.46666
3.39547
1.54354
0.933299
9.98507
10.1562
6.70517
6.84272
0.131827
0.00968368
0.00732249
0.0109083
0.125888
7.9566
6.25835
1.89153
0.0137117
0.0499808
0.00548875
0.0140977
0.0542055
1.93927
6.66292
6.5921
2.90783
0.1297
0.00612421
0.00859481
0.00675876
321.896
0.0879159
30.5082
32.1081
0.18881
0.263804
0.0606035
0.0427156
0.188061
0.286058
0.04521
3.9292
50.8325
3.06297
4.01061
3.10857
0.176992
0.0358887
0.277408
0.057061
0.176097
0.292809
0.0394841
3.14732
2.92858
52.4754
3.11335
2.9677
0.791734
3.02097
1.40115
13.5831
1.43414
0.794236
3.05773
0.0130024
0.00228315
0.0575585
0.00109077
0.00111838
0.0666572
0.0117828
0.727181
1.27959
11.7491
2.75413
1.30984
2.78778
0.732161
0.780366
3.30992
11.2188
1.43016
2.85203
1.47774
0.831936
0.00974608
0.001883
0.0498677
0.00103976
0.00106899
0.0466691
0.0108785
0.731879
1.28158
11.3658
2.75258
2.77286
1.34403
0.726283
6.83304
7.65019
0.920083
0.0108723
0.0634396
0.00215973
0.00566708
1.77075
0.0373484
5.41855
5.72036
0.434853
0.00597885
0.00128249
0.00245355
0.0029871
0.0108634
0.252649
3.23187
3.3792
0.0949801
0.00121781
0.00153059
0.000822273
0.00129943
0.00233797
0.0324286
5.10758
4.25179
0.164866
0.00795965
0.0020411
0.000900047
0.0015339
0.681511
0.00435904
11.5641
26.0281
13.2347
21.1681
0.0803159
0.101215
0.0210594
0.0146403
0.0716129
0.109207
0.0161372
1.85235
9.36522
1.65334
1.7676
1.68717
0.0868378
0.0191423
0.127377
0.0229381
0.0946907
0.116626
0.0177411
2.12439
1.94463
10.7008
2.17767
1.89318
0.730809
2.61037
1.34568
10.3886
1.34561
0.74792
2.62191
0.004996
0.00141848
0.0185645
0.000824652
0.000844526
0.0240398
0.00384903
0.433109
0.674863
6.65992
1.66783
0.693291
1.74455
0.420973
0.344214
1.36189
5.0967
0.539402
1.39332
0.547484
0.339216
0.375122
0.644226
5.83813
1.57678
1.43008
0.615927
0.400138
2.97855
2.72235
0.0404662
0.00112748
0.00693504
0.000728367
0.00101583
0.0623376
0.00474155
1.78543
1.96159
5.30336
10.2125
6.45741
9.12919
0.0368511
0.0542178
0.0109396
0.00727126
0.0339887
0.0612932
0.00778106
1.54269
3.6038
0.483001
0.502631
1.51171
0.040783
0.0095993
0.0733775
0.0123388
0.044442
0.0688877
0.00877107
1.642
0.625048
3.94273
0.58776
1.6977
0.590806
3.12341
0.716564
2.60514
0.704159
0.600025
3.00152
0.202891
0.426289
2.85878
0.802202
0.190379
0.449972
0.853581
2.57513
5.28638
2.66398
5.0412
0.0231191
0.0269596
0.00593723
0.00445943
0.0218389
0.0291618
0.00469524
1.11629
1.7692
0.346402
0.350739
1.08849
0.0238767
0.00501234
0.032585
0.006435
0.0236464
0.0318592
0.0050264
1.25359
0.351182
2.46427
0.331782
1.28678
0.00608995
0.00551567
0.000812598
0.000813374
0.000821414
0.00553138
0.00600082
121.934
0.0057068
0.000772256
0.000767989
0.00498235
0.000774851
0.0051666
0.00548219
0.0072884
0.00078792
0.00475189
0.000861806
0.00580984
0.000872039
0.00663689
33.0757
26.7329
0.00693456
0.00690347
0.000851218
0.00092154
0.00611562
0.000866807
0.0079183
0.00655452
0.000781134
0.0050927
0.000843622
0.00577288
0.00567847
0.000858973
0.00782915
0.000886417
0.000941381
0.00949536
0.000880467
0.00786679
0.00913236
2.11255
1.99613
2.10962
1.97163
0.596332
14.3436
0.669255
0.107882
0.117333
0.56734
14.7021
0.0138221
0.00293139
0.0179696
0.00346034
0.0149308
0.0168576
0.00269282
0.789813
0.175267
0.980889
0.146864
0.977426
19.8014
0.000899002
0.000561772
0.000561249
0.000803604
0.000565857
0.000842763
0.00088033
0.00213178
0.00512898
0.000593103
0.000702509
0.000594617
0.00207185
0.00575034
8.07772
9.37387
9.85517
7.63758
1.67003
0.000909163
0.000564498
0.000568469
0.000917291
0.000568684
0.000922393
0.000896156
0.00221541
0.000590008
0.000707385
0.00696347
0.000593825
0.0065005
0.00211562
1.97929
0.523767
0.619764
1.76004
0.00102876
0.000557609
0.000938705
0.000552117
0.00104436
0.00055244
0.000920296
6.90656
9.13924
8.34425
7.31935
0.000704534
0.00126217
0.000546041
0.00055878
0.000719498
0.000549298
0.00125782
1.50371
2.34212
0.210026
0.457476
1.001
0.0011698
0.000560105
0.00125581
0.000549641
0.00122092
0.0011882
0.000551912
1.86432
0.463812
0.585195
1.62894
0.00068675
0.000552762
0.00056278
0.001029
0.000551552
0.000676325
0.00113147
1.52662
1.45837
1.60888
1.40375
0.0760037
1.28234
0.810986
0.0315972
0.0333001
0.0732345
1.36022
0.327165
0.103671
8.15049
0.134065
0.0876244
0.356711
7.37597
0.00187067
0.000571042
0.000573054
0.00138417
0.00056764
0.00194383
0.00152137
0.00122889
0.00124275
0.000526612
0.000534217
0.000530693
0.00121423
0.00124794
4.54747
3.71939
4.57227
5.27586
1.67186
0.178939
2.10217
4.62964
0.901264
0.00189602
0.000563995
0.000555877
0.00186684
0.000561316
0.00180784
0.00196803
0.00117614
0.000540089
0.000539145
0.00102008
0.000535855
0.00112196
0.0010522
0.525278
0.0401616
0.838261
0.0552658
1.01419
0.00262598
0.000545028
0.00107144
0.000546023
0.00171122
0.000550886
0.00112329
3.93815
3.11331
2.6592
4.73524
0.00161764
0.000803848
0.000516863
0.000518143
0.000814776
0.00154166
0.000521907
0.0459943
0.085949
0.00891677
0.00912867
0.0295227
0.00256798
0.000539094
0.00164797
0.000539114
0.00237885
0.00172652
0.000545038
0.336443
0.0302014
0.143687
0.0244046
0.62665
0.00167131
0.000529689
0.000523723
0.000547676
0.000817984
0.000527147
0.000588914
1.53138
1.50771
1.64377
1.43847
0.0368518
0.169431
0.145023
0.022749
0.036483
0.0228545
0.17791
0.0505106
0.0362734
1.47296
0.0450539
0.0177212
0.102185
0.630109
0.0146893
0.295424
2.68758
0.0271946
0.0291349
0.323822
0.0142074
0.0137365
0.00792152
0.00216054
0.00222386
0.0130388
0.00837203
0.00219324
2.29477
0.572389
2.54285
0.429466
1.42114
1.14013
31.8549
1.23879
1.2946
0.0150907
0.00222876
0.00858786
0.0022844
0.0157763
0.00803153
0.00223134
0.330355
3.98725
29.0671
0.741578
3.54328
0.74459
0.341919
0.281131
0.535026
2.53279
6.46132
2.54269
0.260314
0.592125
0.376114
4.76651
0.764619
0.835505
4.76962
0.343356
0.407009
0.363993
9.71451
0.334845
9.20527
0.391997
0.00636651
0.00714286
0.00167002
0.00157545
0.0085529
0.00547906
0.00159217
8.56153
5.55537
36.0812
2.67216
3.03938
6.7538
22.9562
0.389492
28.0308
0.387193
0.554738
0.541922
0.00596904
0.00158515
0.00754058
0.00133971
0.00688653
0.00758879
0.00148637
0.00615869
0.00148763
0.00517697
0.00142288
0.00672727
0.00508457
0.00146528
0.53542
14.0784
0.703081
13.5921
0.753575
0.618272
0.379212
0.291653
9.20325
10.5569
0.353612
0.307789
0.509287
15.2577
0.602474
0.524713
20.9534
0.588245
0.00448172
0.0329969
0.09181
0.00279633
0.00280342
0.108457
0.00488829
0.199842
1.12074
0.490525
0.0715116
0.00404327
0.0220586
0.0799589
0.00254505
0.00248467
0.0743242
0.00434797
0.066561
0.196075
0.244238
0.0618849
0.0766603
1.23667
0.997601
0.0666947
0.101336
0.177651
0.14334
0.0759944
0.00394186
0.0227759
0.14009
0.00222434
0.00218427
0.107122
0.00417353
0.199314
0.994841
0.816002
0.275709
0.00314856
0.0113653
0.224614
0.00200255
0.00198856
0.0474729
0.00272239
0.13402
3.03561
0.884889
0.0858497
0.0864082
0.120423
3.41375
0.295167
0.507293
4.44436
0.350157
0.365852
3.34307
72.8753
5.14209
12.908
49.9257
18.2398
2.74807
19.2517
11.9349
11.2096
10.7772
0.36779
1.28045
1.96085
0.568116
1.09905
0.393207
0.52636
0.352896
1.68573
0.925353
0.523978
0.360235
0.957459
0.507012
1.09074
12.4663
1.86074
8.09537
1.17655
1.69423
0.699694
0.480451
1.45215
4.46553
0.645958
0.516619
5.63551
0.740932
7.19471
1.58886
0.569325
0.542039
5.96819
0.785766
1.0252
7.29029
1.42573
0.937193
7.79467
1.58013
1.64439
4.19558
1.76163
3.87865
1.79176
1.1262
15.5594
1.68573
1.18446
1.97314
16.9835
1.33357
1.29816
2.05261
1.57499
3.27184
1.43495
3.68265
5.67901
12.9383
24.7081
16.4104
15.0361
5.89026
15.7375
3.92858
1.70876
10.7818
151.589
3.46892
1.87196
15.713
1.58436
0.586933
2.14833
0.722853
1.53643
0.597767
2.23574
4.16026
12.3074
8.79791
2.01806
1.91824
13.657
4.29955
5.22981
67.1798
12.5324
4.50847
17.8641
14.4263
1.71741
2.50166
0.614876
0.74208
0.609741
1.74058
2.48135
20.7662
1.9053
3.20498
2.58992
34.3914
12.1981
3.42663
2.94459
2.99136
10.9026
3.7264
2.55595
2.21926
0.451876
1.67074
0.570735
0.563986
1.58115
2.38666
4.40823
0.666833
8.50913
0.910307
3.88373
0.69628
10.5056
13.792
1.70942
2.7936
4.42625
3.93234
2.33935
19.4307
17.6696
3.31867
3.19172
14.4704
2.81304
4.78436
11.8172
0.726712
0.939877
0.719507
5.76908
11.2244
9.24033
0.681055
0.755835
20.4849
0.670862
7.67936
23.7813
8.78858
1.01361
62.2888
1.33654
9.25745
1.01936
69.2368
9.83424
0.772225
0.792148
112.224
11.7643
0.6833
26.0732
7.93617
72.8169
1.05937
1.3916
1.05537
7.74964
64.9754
0.149948
5.57579
0.124438
0.0911374
3.42244
0.112637
3.72694
0.110374
6.88782
0.122294
0.0902473
3.44867
3.88227
0.0853979
0.0937876
9.58077
0.0879573
0.232856
3.57541
0.254844
3.95423
0.0728285
9.75399
0.0782351
0.187712
2.53779
2.61621
0.165876
0.000443451
0.728871
0.000824001
0.00043055
0.000432757
0.00042177
0.000980816
0.00279449
1.00194
0.00062019
0.00299887
0.000479941
0.000484606
0.000647738
0.199712
0.150082
0.641525
0.25638
0.191901
0.101706
0.0868816
1.49162
0.541252
0.39658
0.243561
0.190249
0.103241
0.175853
20.86
17.4228
24.9948
28.446
29.1808
27.4547
23.3466
28.1239
26.8061
18.9489
27.6935
25.7314
4.54309
5.13254
3.91501
3.74708
3.51267
3.64423
4.1826
3.72784
3.76339
4.66153
3.49332
3.71573
2.28019
2.52393
2.11029
1.64421
1.6128
1.6972
1.96988
1.73493
1.84819
2.21405
1.67708
1.87125
17.9025
0.497986
0.557696
17.0507
0.486894
17.4608
17.6285
18.155
18.6319
0.38765
0.412926
18.2607
18.6483
0.418135
17.9669
0.438927
0.397
17.8024
18.096
0.430706
17.5541
18.0986
0.539677
0.463981
18.5011
18.6114
0.471572
17.8433
2.53438
0.16482
0.172076
2.41073
0.160568
2.48703
2.46829
2.41161
2.21446
0.128874
0.144956
2.10647
2.51749
0.142283
15.538
14.9612
15.1357
15.4672
15.9273
17.5712
16.4011
16.9979
2.41418
0.14962
0.131584
2.1174
2.10372
0.145491
2.42798
2.52926
0.168777
0.159506
2.64566
2.63846
0.157218
2.4696
15.8994
16.7309
15.8578
16.9271
1.21614
0.178039
0.207506
1.22143
0.189311
1.14193
1.25594
1.18339
1.09843
0.15834
0.180932
1.09547
1.16922
0.177746
14.5937
7.26755
13.4855
13.3855
14.7587
15.2777
15.0991
14.9025
1.13704
0.158454
0.150551
0.887857
1.01857
0.16973
1.01885
1.22902
0.210091
0.195369
1.2284
1.20178
0.195528
1.26032
14.6933
14.5395
14.1428
14.8089
0.183606
0.0364409
0.0363722
0.1787
0.0364132
0.184492
0.177447
0.188766
0.18961
0.0371575
0.0358826
0.183527
0.194708
0.0367015
1.84061
1.83025
1.87283
1.81783
1.80647
1.77324
1.78288
1.74222
0.189723
0.0365429
0.0371469
0.193701
0.195314
0.0366662
0.189307
0.182569
0.0367038
0.0358595
0.175812
0.177753
0.0365507
0.178227
1.81052
1.68604
1.79715
1.7286
1.4414
1.03861
1.19696
1.37342
1.51596
1.57365
1.58242
1.52365
1.48213
1.49593
1.42735
1.49858
0.392308
0.387075
0.40354
0.389243
0.397598
0.622263
0.434089
0.513839
0.393669
0.432829
0.382033
0.491711
0.00724276
0.00875462
0.0182001
0.0388513
0.0470575
0.0127653
45.8981
2.28531
4.86029
3.4608
10.316
5.63364
44.7356
64.3574
17.963
11.2662
34.3446
4.91836
13.1303
1.48133
2.71804
9.78386
1.63592
4.50731
1.07377
2.49233
1.53373
26.1138
7.16391
4.4187
2.34691
4.25041
2.56335
79.5577
25.7858
52.3366
12.8841
75.6522
131.943
45.2493
28.4817
33.2905
13.1673
29.9583
20.8409
7.60849
6.42156
38.0955
14.003
109.549
16.7457
10.3986
9.59161
11.4982
68.6145
9.54234
6.57666
11.529
165.741
10.7206
134.752
130.271
5.14041
2.65621
41.3469
5.112
124.156
64.4353
12.5379
6.62659
6.09422
5.31824
10.2586
5.35764
142.526
2.42049
5.42953
15.5532
165.941
5.22608
12.3588
153.849
556.446
16.7563
2.11353
1.74664
6.15666
1.97997
13.9115
8.13674
26.383
5.249
3.06894
30.6589
2.49117
33.972
28.564
24.5214
2.42131
4.95062
2.38044
20.5536
18.2474
1.7076
2.09471
8.07377
19.8861
2.02418
7.53481
20.839
27.16
8.28977
1.18518
1.01775
3.69561
1.22275
7.98586
3.79097
31.3249
23.5528
1.9233
1.8068
22.536
32.6983
1.82215
104.493
100.288
33.4015
11.706
35.1702
11.4
31.1159
1.74917
1.84727
20.371
21.8526
1.80866
29.9236
8.39546
1.03521
1.2268
3.86452
8.71642
1.23898
3.86351
33.0925
10.891
31.8851
11.2998
3.20492
0.849523
0.749095
3.08201
0.874933
3.10791
3.22446
3.78637
46.6029
1.36632
1.07307
27.1106
4.12406
1.01825
16.4521
50.0286
84.2185
15.5795
13.5598
20.3
15.2423
7.02051
3.54552
0.887184
1.21462
15.365
25.8701
0.896024
3.06091
3.42862
0.844634
1.03534
3.84278
3.61627
0.989994
3.42036
12.8948
6.60908
12.1874
7.56251
1.54723
0.321814
0.254008
0.80173
0.368537
1.19803
0.826031
2.40799
2.33476
0.579409
0.620338
2.21062
2.61302
0.581187
37.2216
12.5961
13.9096
20.4856
17.3159
3.69568
20.7169
3.46375
3.38842
0.563067
0.63235
2.63738
2.84527
0.613054
2.93638
2.37583
0.261885
0.510004
0.898813
2.62791
0.470837
0.857098
12.0755
3.4154
5.90986
3.46051
0.88349
2.473
0.44017
0.245682
2.61424
1.00006
0.226018
2.84803
17.6572
20.5795
2.67922
2.72533
3.09977
2.87986
3.0092
0.731756
0.193814
0.397054
2.22896
2.32304
0.20216
0.690804
2.67258
2.89556
2.56901
2.9841
0.485889
0.569327
0.13458
0.127033
0.522077
0.502751
0.119821
2.31684
2.26395
2.344
2.24826
2.43087
2.16576
2.07515
1.01098
0.467562
0.115033
0.126732
0.480245
0.483315
0.115019
0.467722
2.36894
0.954745
2.30453
0.975564
1.90267
1.66123
1.7133
1.85134
1.97895
0.620401
2.07643
0.591932
1.95479
0.555241
1.89755
0.57506
1.36801
1.67298
1.33633
1.77221
1.50427
0.405603
1.56773
0.396262
1.4081
0.361493
0.557915
0.381412
0.0470733
0.0371031
0.0187079
0.0248966
0.00394114
0.0245934
0.022783
0.100686
0.00347506
0.0197479
0.0772555
0.00242046
0.0261458
0.00248102
0.0132977
0.0194848
0.0207219
0.0141063
0.00982187
0.00127555
0.00198485
0.012637
0.00128428
0.0125093
3.08436
0.000764582
0.00154287
37.6727
0.00767467
0.000904053
0.000497567
0.000665539
0.00114009
0.000494873
0.000516432
0.000508048
0.000523233
2.21665
0.110122
1.37949
0.0712561
0.766516
4.97467
0.0948057
4.54996
5.16035
5.19959
0.226415
0.151219
0.158513
2.30188
5.70401
0.204829
0.203702
0.199492
12.105
4.86673
1.92361
0.071883
0.427059
0.0823683
0.45734
0.0887413
1.40608
0.127344
20.9936
0.176727
9.97225
0.193687
206.004
8.32076
10.9119
26.513
16.6504
0.188138
0.284244
6.4588
0.255643
20.2577
0.102656
2.64927
0.130731
4.53315
6.97316
0.167591
0.231718
55.8272
0.297081
0.266839
0.0252404
0.0247892
0.00198356
0.00704732
0.00119887
0.0011682
0.000866023
0.0362751
126.227
0.0938627
0.0161265
0.0284728
0.265379
2.23739
5.99223
0.0566363
0.0120282
0.0358678
0.0215656
0.0149287
7.29353
43.3192
0.0141034
0.0177045
0.00854271
0.704057
0.00677398
0.667192
0.0201383
0.00967476
0.00917103
0.0156718
120.744
0.24997
0.304428
0.0138814
0.00669593
0.00612539
0.0187722
0.0369811
0.00279094
0.0122961
0.00135844
0.00151171
0.00230796
0.000592301
0.000623141
0.000595011
0.00058968
0.000580817
0.000579215
0.000586624
0.000609535
0.000579894
0.000585336
0.000576486
0.000581494
0.000583254
0.000575861
0.112971
0.0823955
0.0703612
0.0389371
0.0759812
0.0448729
0.0578643
0.525008
0.974496
0.434426
0.175359
5.95615
0.20935
0.380731
1.7247
4.88236
0.923632
0.654999
0.707769
13.2473
0.359977
1.96702
0.985022
0.554799
0.997356
12.4277
0.406124
1.73498
11.4376
1.3112
6.83024
20.8979
1.66002
4.21524
4.62727
6.17673
59.6963
5.10636
8.07308
3.87933
1.50892
43.0553
18.7187
0.115868
0.189552
0.177087
0.105096
0.0876696
0.0813643
0.114013
0.0610773
0.0655964
0.154407
0.0659784
0.0798909
0.04228
0.0398487
0.113031
0.1992
0.0899331
0.0740292
0.0991183
0.056851
0.0484197
19.5593
9.66591
17.7467
20.1612
2.53262
1.34553
1.27616
18.3605
17.7357
0.705288
0.492818
3.0309
15.7364
0.814796
4.26194
16.6583
3.60922
1.02505
0.49864
0.92144
12.5646
4.34908
9.19223
16.3027
17.8658
0.319011
0.443651
1.29196
2.06359
0.322889
0.444928
1.21696
0.266768
1.05333
0.211214
0.747276
0.205975
0.271291
1.05344
0.317233
1.96635
0.393055
1.25739
0.311869
0.425781
1.19073
1.00923
40.7229
2.63924
2.51096
2.64439
2.5563
1.0006
0.872102
31.2133
2.70874
2.14
2.56565
1.89948
0.953214
5.11913
2.87749
6.71598
35.0163
30.5188
1.62062
54.7144
32.1098
7.32273
14.3227
4.96709
2.03792
3.12073
51.1195
2.70706
8.33941
2.86194
3.75926
12.7553
13.301
2.81318
1.12857
3.97021
2.80212
5.21375
66.155
5.95286
5.30036
5.92054
1.15291
3.57591
2.87139
5.58828
11.3437
13.5194
42.1553
28.007
188.783
18.5464
26.644
45.0919
3.12743
1.64481
9.07211
4.58337
9.70426
7.98579
7.60676
7.55835
1.7941
4.79752
4.96464
10.7783
43.4271
43.1139
3.42828
16.4553
4.76234
5.39531
3.36471
1.60321
33.1907
22.1862
2.03931
1.8828
321.337
3.67763
3.43922
55.4016
3.27585
4.17932
4.28597
4.9277
46.9182
4.00348
5.98249
0.330304
1.37815
0.572402
1.93693
1.28344
0.356668
0.475661
4.11804
32.0672
65.9886
4.66176
7.45283
1.63452
4.46261
0.763917
3.97619
1.05754
8.77731
0.979391
2.35288
2.13215
7.36304
19.6071
4.10202
1.41848
0.753088
45.6933
3.13457
1.42123
3.14452
1.4895
0.729041
1.24952
49.7132
4.58108
2.22522
4.55977
2.23469
1.24498
36.4184
6.06963
8.76259
13.9591
6.27802
0.637566
0.415678
2.15351
0.618414
12.3121
1.73031
11.3982
1.5482
0.719425
30.1427
0.755409
70.7167
5.43034
3.00794
1.40433
0.375689
0.491845
0.59451
1.50504
2.05519
66.7989
14.2986
9.64821
115.295
29.036
0.271077
1.4071
0.365405
1.19841
0.297567
0.342505
1.03323
3.65144
10.4023
1.42221
4.00319
11.1688
9.09011
9.11902
75.3695
11.575
1.5428
4.101
4.08244
11.4361
1.10918
20.7481
0.88743
3.19352
1.15671
5.58623
0.742473
1.41724
1.46646
13.7125
4.13076
1.5112
0.992822
7.40422
1.44769
23.2532
3.16604
33.4903
1.87518
1.73226
17.6774
0.859182
2.50397
3.33149
0.50382
0.757186
3.47813
0.630213
8.46063
4.27455
8.7366
15.0134
14.8734
52.273
4.25313
8.50781
8.8614
1.30777
46.8918
4.7018
2.16547
4.52155
2.34052
1.2094
0.71002
1.94685
1.14693
0.51064
1.91468
0.711751
0.509878
1.05311
38.0491
5.18193
1.76529
5.16699
1.71487
1.07346
8.69806
1.95588
8.44191
13.1173
14.1017
1.97337
7.65482
8.49229
10.2595
2.51939
10.1291
19.4471
19.3955
2.46362
9.90443
9.99163
0.701558
1.98631
0.492746
1.21358
0.696865
2.01319
0.496555
1.06819
38.0393
5.51283
1.71041
5.44807
1.74228
1.0585
0.705298
0.499968
1.23174
2.04038
2.02615
0.501469
0.699801
0.85516
2.81761
1.68118
0.645605
2.71036
0.871236
0.633348
1.1687
47.3551
7.56258
1.7961
7.58534
1.81081
1.1608
0.8105
0.581938
1.61998
2.60806
2.63591
0.594161
0.795603
0.742121
3.10287
27.7673
0.970967
0.639996
4.48903
1.14233
0.56204
0.429836
1.09507
1.88341
0.586937
0.414474
1.7802
0.514612
1.22808
0.336357
0.956287
0.378881
0.448483
1.54269
0.81612
31.3705
5.70962
1.34224
0.857849
5.0093
1.26566
10.5605
3.06806
10.644
20.2143
20.1677
3.09475
10.6642
10.6243
18.5348
4.69349
17.9099
44.9339
45.092
4.59138
17.5847
17.7375
0.945416
2.95092
0.695931
1.88644
0.927822
2.99507
0.709124
1.35328
50.0143
7.97504
1.96722
8.40187
2.0333
1.3256
0.96983
0.71059
1.91562
2.93425
3.0249
0.729802
0.939496
0.866762
7.80689
1.90147
0.679082
5.65732
0.90409
0.655117
1.22919
44.0188
8.23651
1.81749
8.05086
1.79191
1.24784
0.878377
0.668703
1.88694
5.77896
5.6628
0.663285
0.886787
2.00016
2.11572
1.86556
2.49787
1.32018
1.00144
7.6978
1.50673
0.892895
1.25711
34.2748
0.810848
6.98678
0.845687
1.20001
1.14765
3.03068
1.33392
2.51577
19.2332
5.24553
19.1386
45.7297
48.2404
5.29206
18.2251
19.1248
35.1329
7.11958
23.3494
50.436
49.6952
7.06159
23.4482
23.2656
0.955861
7.05292
0.709264
2.31199
0.949884
7.85031
0.714176
1.3477
50.9155
10.5546
1.91269
10.5758
1.93501
1.33685
0.96303
0.725189
2.3679
7.91068
7.85908
0.723931
0.960665
1.09835
8.14475
2.67571
0.882135
8.00512
1.10353
0.87499
1.39127
47.8354
10.4297
1.88675
10.4962
1.89424
1.39908
1.06672
0.831246
2.6122
7.89682
7.95272
0.844326
1.05179
3.89291
7.90954
3.25633
8.81883
2.86803
1.61343
3.29339
1.4074
1.3267
0.544226
1.966
0.625361
1.41399
0.525272
1.84762
2.89157
1.24439
1.35222
2.48295
3.68927
11.9821
4.28318
10.0468
1.23803
1.65878
0.50146
0.606545
0.508106
1.1973
1.7107
41.9037
10.9237
45.8851
8.42647
48.0719
46.7694
47.1563
9.95068
46.3704
34.4979
118.656
9.77866
46.2248
46.1309
57.3213
1.15267
8.13371
0.921565
2.88338
1.14103
8.1312
0.932887
1.51354
46.3655
10.7638
2.02647
10.6441
2.01022
1.52991
1.18318
0.960739
2.92601
8.26562
8.16397
0.961732
1.18316
0.957079
10.1015
4.60534
0.749298
9.87742
0.962487
0.747118
1.26967
23.6531
13.9599
1.65522
14.2978
1.654
1.25534
0.966651
0.760347
4.55453
9.54985
9.79892
0.759273
0.967946
11.5786
3.85441
3.56364
36.48
10.9632
3.63619
1.6587
0.380748
1.09659
0.458346
0.472172
1.19293
1.5177
9.48994
3.49898
2.91771
3.18275
10.9029
3.29904
3.59836
3.48786
0.634608
8.27686
0.798858
3.78024
0.613939
7.42324
8.18631
3.88906
2.80481
3.60697
4.99614
7.42921
3.44967
12.629
3.57528
3.33899
14.2368
3.67287
2.39224
6.14196
0.578908
0.769833
0.597905
2.16035
6.70753
24.0797
31.1266
25.2417
47.5814
14.4527
47.315
28.084
28.998
26.0782
24.9245
27.8402
25.8581
55.9495
32.8975
25.7328
14.4986
47.6317
47.3508
5.29653
5.79525
4.38729
17.9924
3.91687
4.04864
4.14693
17.7605
4.04466
3.90251
4.15854
5.02578
4.22591
4.33349
0.915485
10.0021
0.711913
4.69799
0.923318
9.98455
0.707368
1.20528
23.5103
14.3085
1.57618
14.4729
1.58617
1.1972
0.915411
0.705691
4.6907
9.84155
9.94973
0.708033
0.911351
0.863584
8.7701
4.5728
0.65748
9.2368
0.826009
0.68553
1.133
21.6304
13.8122
1.46939
13.5227
1.45785
1.14047
0.880858
0.700526
4.6483
9.59803
9.40414
0.698349
0.885478
1.44544
1.48704
1.28066
7.4598
0.982867
45.136
1.23697
8.92838
0.959624
18.0448
1.34713
0.979798
16.2437
1.13177
7.00987
16.6938
0.921282
1.23879
0.95253
7.24163
17.2848
3.50102
3.43781
3.71901
18.3931
3.7731
3.91207
3.78855
3.51876
3.73605
3.73435
3.45932
3.89181
3.77107
18.3013
0.759124
0.810226
0.812614
17.0264
1.11932
1.01969
0.859513
17.341
0.753389
1.02926
0.820496
0.835123
0.968005
0.844764
0.766816
8.58615
0.621385
4.26334
0.781443
8.48052
0.613274
0.987996
19.2183
13.0072
1.26301
12.1502
1.25134
1.00137
0.778937
0.634455
4.29302
9.66294
8.51382
0.624099
0.79313
0.785626
11.4979
5.00499
0.625712
11.654
0.777067
0.631967
0.979189
18.5039
13.9876
1.21651
14.0995
1.20766
0.984788
0.790262
0.638401
5.00641
11.5657
11.6682
0.636204
0.793823
1.5063
1.49256
1.49224
15.6352
1.59753
1.56778
1.54096
1.59421
1.65189
1.57166
1.48236
1.51054
1.47594
15.7025
18.293
17.572
0.340303
0.338824
17.5259
18.3674
0.33891
17.4448
18.3037
18.7322
0.349714
0.357162
18.2092
18.8927
0.343104
17.4501
18.1768
0.335636
17.3867
0.34096
18.1093
17.4326
0.334934
18.4322
0.346707
19.2121
0.359704
19.0608
18.5289
0.346806
1.07839
0.0471287
0.0520173
0.0424338
0.628699
0.615023
0.0384749
0.0529765
0.593906
1.0609
0.0430704
0.0532893
0.0434428
0.606825
0.760635
11.2992
0.614145
4.8011
0.762353
11.0701
0.611701
0.909962
17.5072
13.0729
1.07983
13.3178
1.11898
0.880248
0.735882
0.576578
4.78832
10.8406
11.0361
0.593415
0.713357
0.72814
12.2941
5.86615
0.581721
12.4517
0.715074
0.593208
0.874605
16.7652
13.5
1.04866
13.4512
1.05078
0.872562
0.727647
0.59137
5.87356
12.5453
12.488
0.593216
0.725792
4.55841
0.155584
0.192392
0.155094
1.88017
0.120115
1.65711
0.229774
1.58591
5.04521
0.22754
0.204094
0.178078
1.68337
17.5517
0.344824
0.338897
16.8292
16.9277
0.343666
17.4074
16.6155
17.7485
18.4715
0.366819
0.349546
18.1335
17.9912
0.349131
17.6197
0.356487
0.373904
17.716
17.9757
0.354504
17.4636
17.679
0.336825
17.2035
0.340517
17.9027
17.0279
0.339593
16.5719
2.68931
4.6943
0.141667
0.274316
2.44945
4.75628
0.152014
16.7008
30.234
15.8381
15.8974
16.3855
17.8772
41.2871
16.9671
2.39788
2.22709
0.119072
0.134338
2.15457
2.38284
0.12794
17.9475
33.2688
30.3098
16.7884
2.3987
0.116013
2.26129
0.113236
2.17357
2.32027
0.120745
2.75678
0.309452
11.2736
0.162651
2.51911
4.83874
0.163971
0.039527
1.12872
0.0391053
0.0323785
0.624758
0.660276
0.03259
0.0389005
1.14124
0.0389058
0.0322985
0.663968
0.665828
0.0322889
1.18633
0.0322852
0.0347986
0.0291682
0.43841
0.431097
0.0269953
0.0378212
1.17749
0.0364932
0.0305178
0.658937
0.0313729
0.429102
0.663313
12.0103
0.546449
5.4431
0.67099
11.3909
0.54127
0.788836
15.0856
12.2174
0.943676
12.1647
0.943847
0.790057
0.659623
0.545032
5.4488
11.5771
11.3394
0.54017
0.663222
0.66226
11.4443
6.49374
0.544763
11.4658
0.655095
0.550736
0.768839
13.8758
11.7059
0.919982
11.5758
0.911137
0.775321
0.654686
0.547461
6.48662
11.595
11.4753
0.544428
0.659356
6.79721
0.0941187
0.0973815
0.308619
3.64725
0.274209
3.86062
0.102734
6.70414
0.0910806
0.319534
3.2916
0.0811883
3.64399
1.95543
0.108351
0.102434
2.15169
2.12702
0.104826
1.92076
15.2164
15.6818
28.0596
15.7039
15.2804
1.95283
2.16361
0.1177
0.113303
2.04253
2.08551
0.109191
15.181
14.9961
15.1576
15.0331
1.94621
0.11425
0.119861
2.03631
2.03762
0.110887
1.92047
1.96437
0.101524
2.21334
0.107788
2.10324
2.12369
0.103461
15.1509
14.9345
28.1815
15.1962
15.0102
1.01138
0.985863
0.12149
0.142404
0.887487
1.097
0.136211
14.0227
5.26303
10.5872
6.496
14.4473
14.4062
14.4513
14.4835
0.970749
0.997943
0.131339
0.15678
0.902554
1.06449
0.140932
14.3224
12.1211
7.91096
14.5369
0.878873
0.112003
0.677159
0.116893
0.794008
0.756331
0.126354
1.05148
0.155908
1.15421
0.16706
1.13816
1.06975
0.150751
0.0261142
1.28269
0.0213237
0.0180712
0.432727
0.448338
0.021908
0.0171334
1.29952
0.0185427
0.0159282
0.451752
0.455785
0.0148943
1.41038
0.0152936
0.0123412
0.0111129
0.518623
0.495637
0.0134934
0.0182586
1.28003
0.0167582
0.0145283
0.426152
0.0158246
0.443306
0.616903
11.3096
0.524348
7.88343
0.629522
11.236
0.516805
0.704371
13.1485
10.7937
0.81235
11.1344
0.832611
0.68855
0.605607
0.502902
8.39066
10.8822
11.1933
0.510655
0.594023
0.497402
9.51289
0.434643
8.94748
9.56511
0.496027
0.434124
0.540318
9.48053
9.68288
0.620255
9.46538
0.622707
0.536356
0.475424
0.404068
8.65606
9.89801
9.66493
0.412286
0.469709
9.14891
0.0257936
0.0546212
0.11325
2.33353
0.0702118
2.69403
0.0749526
8.64516
0.0683168
0.152012
2.14585
0.163365
2.26815
0.64342
0.0978453
0.0937929
0.532002
0.565369
0.103767
0.577514
5.09379
4.03774
8.79183
3.27619
0.826965
0.984398
0.140583
0.127784
0.96818
0.86603
0.123742
6.56517
7.00037
12.3023
4.30951
0.754119
0.109303
0.133095
0.76519
0.886892
0.117148
0.664088
0.709591
0.0972871
0.631327
0.112737
0.738783
0.607368
0.108942
5.16086
3.17876
3.41696
3.76466
2.05245
1.99581
2.01126
2.05409
2.13353
2.29899
2.03288
2.41518
0.232229
0.195174
0.03734
0.0398919
0.221147
0.207458
0.0413211
2.1483
2.41708
2.14605
2.42865
0.333583
0.0763589
0.416115
0.0564742
0.334364
0.408758
0.0576269
46.9975
4.64166
34.5169
5.97416
42.8775
19.6088
2.49593
0.872721
2.3037
1.95004
2.1177
22.9388
97.1758
4.76564
4.96156
86.8892
7.70792
1.57656
0.764264
2.28154
2.40319
1.86616
7.21342
53.7314
39.4221
7.72973
7.12515
85.9755
0.19697
0.159598
0.329036
0.171453
0.137024
0.0864783
0.0947202
15.6985
2.32065
4.14021
19.1015
1.61451
21.5912
3.3255
2.66832
32.7678
63.4737
57.4306
120.652
13.0242
4.43666
1.94034
12.5375
1.69674
5.86758
58.1463
18.078
29.0326
12.1597
3.17952
9.91896
7.87787
12.0651
27.4624
2.82256
2.23841
2.7175
1.63704
50.6538
1.09125
7.71496
3.92637
33.7739
343.562
94.0673
25.4587
4.82783
10.3864
58.4825
12.3276
3.94031
221.756
8.09103
29.069
377.069
6.98804
2.26371
1.79667
4.10052
37.2291
21.0081
315.713
1.03112
1.43833
31.5819
3.60894
1.33765
0.89619
4.12574
1.79821
24.5278
3.70908
16.5807
2.10997
1.705
9.47587
9.84449
1.19701
3.37256
1.47263
8.0326
14.7313
1.92225
2.14046
12.218
50.7031
61.6202
50.1722
41.0433
10.0601
4.23029
1.95871
13.3794
1.76377
5.54005
1.26917
53.9078
2.18575
5.46346
1.30095
53.6406
9.52747
4.78609
4.7963
9.50211
17.3934
17.2265
16.32
16.3468
5.23242
2.28209
1.54144
58.2825
5.52183
1.38179
54.752
4.0892
17.4462
1.0876
1.75619
1.12352
3.59783
25.6782
9.5277
4.50387
4.9689
8.07979
15.2853
17.2468
15.5643
12.6905
4.40743
1.8839
1.37509
56.6887
5.385
1.17156
30.2086
2.43731
1.01333
13.1
1.33284
2.8543
0.913811
10.8833
4.84092
3.19285
3.07318
5.23312
8.41503
65.3962
8.40164
66.8474
8.21271
9.02024
66.702
2.43873
1.28006
0.85882
10.5921
2.39506
0.889248
10.9262
126.342
154.694
2.15489
8.52491
0.737637
1.09633
0.76802
2.11451
9.16027
4.64671
3.01665
3.09391
4.19373
7.90856
64.9091
8.33201
58.6746
7.61734
43.7406
6.50724
55.749
2.27246
1.15194
0.827431
10.4086
2.31549
0.806618
9.5612
1.98156
0.708128
3.20899
0.925298
1.99092
0.708519
3.17449
3.82743
2.98859
3.00371
3.84227
5.57634
19.3389
5.62751
20.5285
5.57752
21.5577
5.63151
21.0462
1.9615
0.969375
0.763019
3.10567
1.9995
0.754771
3.06468
31.9018
24.0957
49.4146
36.9112
18.7192
11.0157
22.7019
27.6229
33.1956
30.8635
11.6345
25.4969
1.90806
2.71633
0.778918
0.979143
0.795981
1.84158
2.85637
3.8209
3.14009
3.24776
3.45915
5.1333
18.0889
5.64009
13.5879
5.19823
13.0365
4.6262
13.8399
1.87718
0.966296
0.799552
2.9738
1.99366
0.776446
2.81665
1.61276
0.640297
2.39058
0.781152
1.65775
0.634656
2.3188
2.87203
2.77177
2.72598
2.94005
3.67547
9.40789
3.85351
9.10763
3.76704
9.55755
3.86458
9.2582
1.54903
0.772471
0.61864
2.19011
1.55038
0.627757
2.22461
21.6143
20.3687
73.3869
259.157
14.5119
52.7764
18.4382
10.1711
18.1418
65.6063
37.5652
9.13439
47.3066
56.94
26.7299
18.5655
40.3897
7.93967
7.20915
7.90162
4.33552
8.96745
36.7157
7.63266
8.18932
7.59873
4.70377
7.03344
2.95479
2.82702
2.87314
2.86255
3.89126
9.66723
3.98255
9.39369
3.85033
8.85981
3.71369
9.27612
2.55774
2.65202
2.65567
2.56453
3.19472
6.45132
3.16511
6.71214
3.16301
6.77941
3.18548
6.67362
13.1789
30.8039
35.6404
82.1511
17.5699
73.2969
39.8763
42.0398
73.6406
5.15327
11.7871
9.85894
12.3479
31.3041
12.4895
4.9685
9.33996
9.37861
15.385
33.3378
13.3292
29.5889
313.711
39.3835
29.7252
103.848
38.2744
28.1849
28.2224
33.3257
70.2392
7.13664
7.52723
8.18398
5.76067
7.53915
11.4231
8.06758
4.93398
9.38773
7.88444
7.24311
9.12711
7.95249
3.56639
3.44427
36.3047
4.07902
4.56451
93.0575
4.17222
7.26296
3.46651
3.54243
4.11177
111.894
4.41023
102.513
4.01199
2.55108
2.7791
2.75274
2.58512
3.04575
6.35902
3.2016
5.68479
3.08331
5.79813
3.13236
5.70039
3.11726
45.8883
2.22888
2.22616
3.10564
2.29485
4.38516
2.29957
4.37511
2.30133
4.35987
2.30627
4.37847
4.01097
6.26843
7.38183
9.94832
20.8245
8.52244
3.94379
8.06965
7.14495
7.55801
18.2114
9.31434
4.07387
3.9528
3.51096
3.58179
7.25071
3.93701
3.73553
3.01208
3.25313
4.75072
7.54707
4.18138
4.05493
3.7589
3.58187
3.44133
3.97564
3.50449
4.00278
3.4177
3.43599
3.82335
4.15587
3.65429
4.15272
3.38689
4.37694
35.004
3.97761
4.12218
32.8032
3.94968
4.68162
2.79602
26.4218
30.3601
5.21896
3.11656
3.78657
3.69955
39.7513
4.20974
4.11032
95.9187
4.72387
26.2151
11.6246
1.54305
1.64975
22.7531
13.8848
1.6586
36.3505
3.83386
3.14871
29.4722
3.94824
27.4758
2.08931
15.3449
1.70545
14.1728
33.678
1.83717
3.02067
45.4299
2.13897
2.15368
2.99545
2.15081
4.33178
2.25927
4.04142
2.14562
3.96006
2.12084
4.01234
2.61798
41.7809
1.94745
1.93029
2.64349
1.81172
2.80117
1.6458
3.15865
1.83064
3.25376
1.84722
3.21042
2.81621
56.9596
3.57399
225.367
3.80816
3.1903
5.32375
2.78124
3.01417
4.4471
4.05864
2.18846
4.78242
2.59661
26.4191
1.75564
2.47882
23.8015
2.29869
2.67512
1.65706
2.85722
1.66743
25.1908
2.00814
202.644
23.3014
2.16136
3.33293
1.76801
3.06313
1.76428
1.24811
1.38484
1.71048
1.09439
1.44352
1.81869
1.74455
1.63976
1.14874
1.02259
1.26245
22.3986
1.24059
3.49757
37.5529
112.243
1.31086
19.9595
19.853
11.3391
1.54788
1.50486
9.82492
21.811
1.41896
319.294
18.9678
1.32781
1.39334
44.3485
9.27941
1.27668
16.8813
23.595
4.22572
1.96554
26.8524
338.591
1.64977
12.0833
19.736
1.03756
1.07065
18.3644
13.7523
1.20088
26.383
21.7655
8.56657
3.16855
1.13166
0.7494
7.63062
3.43835
1.16664
11.5368
1.02368
16.6522
1.15146
10.3447
17.842
1.16336
9.01455
1.1385
6.17636
0.837933
3.75001
10.6681
1.25399
2.16705
37.1888
1.64089
1.62968
2.17915
1.4826
2.60466
1.56379
2.38932
1.48945
2.42722
1.5056
2.391
2.01108
35.6286
1.55502
1.54074
2.0353
1.33535
1.87379
2.46962
1.97
1.33726
2.06994
1.38084
1.97256
43.8283
1.06632
20.3433
1.20028
19.5661
1.34226
28.1228
2.01659
2.26837
1.79803
45.7163
1.1006
21.6698
1.53718
58.4226
19.7495
1.39023
1.52167
2.20886
1.73607
58.0946
22.8654
16.0809
0.591954
0.764941
15.7277
21.5062
0.709512
20.4724
23.2161
0.538076
0.823645
19.3466
47.7343
0.682133
20.3199
0.482337
10.7804
0.457736
19.4214
13.9057
0.578023
24.0833
0.915888
1.03076
177.389
22.8053
0.843526
19.4789
0.492903
0.430511
19.9747
19.7645
0.436743
19.5731
19.2505
18.9074
0.407345
0.37325
18.9691
19.09
0.395516
19.2394
0.501298
0.455261
18.877
18.9423
0.441502
19.2986
19.4796
0.389314
19.4428
0.374199
19.2719
19.7562
0.393884
8.19067
1.15273
1.05666
14.1553
14.7587
1.15295
7.82675
24.1935
2.93501
0.60731
1.06035
2.46169
6.66071
0.936302
74.5401
14.9092
16.1779
70.3791
23.4351
0.935427
0.652838
2.74625
2.89024
0.94792
22.3655
8.48638
1.0684
15.788
1.18521
9.3485
15.2112
1.16004
2.14098
14.8329
0.55256
0.443331
6.3127
1.97963
0.456885
16.7886
20.7794
15.845
24.2764
15.1818
10.4739
9.63937
15.8112
2.10209
2.28248
0.443841
0.482783
2.01687
2.33884
0.45499
17.2491
45.4098
26.4553
18.1208
2.03192
0.48407
3.48917
0.413697
1.90663
5.23152
0.430364
2.22315
0.445377
1.94227
0.513536
2.55296
1.87331
0.479145
1.85124
33.7335
1.37073
1.42368
1.77702
2.44049
1.8347
2.4011
1.78835
2.29218
1.56239
2.19132
1.68393
1.68328
32.153
1.31299
1.31556
1.68024
2.03415
1.33205
2.02618
1.38978
2.03481
1.41526
2.03216
1.40937
18.5127
0.315261
8.00865
0.328884
9.68534
0.377935
16.2567
18.4105
19.9724
0.575043
0.620782
18.17
18.183
0.524496
18.7223
0.368415
10.3211
0.486817
18.4304
10.1184
0.445315
48.6504
18.2822
0.384367
0.511942
15.5386
17.4998
0.440781
16.6681
7.54602
4.69768
0.147833
0.171057
4.27936
8.86652
0.173922
36.3241
16.4114
20.7976
16.3885
8.57793
15.4978
0.179233
0.225832
7.17814
16.5658
0.186658
45.1601
17.429
17.403
6.87754
0.128436
3.67983
0.145918
5.54258
4.04699
0.152865
9.37857
0.202098
17.4682
0.243379
17.102
12.8401
0.207978
2.82605
0.179779
0.177742
3.02238
2.95223
0.170855
2.9564
16.6934
24.7676
16.8513
17.8298
2.67724
2.27224
0.150349
0.142267
2.58626
2.38681
0.153575
16.7827
17.7894
16.5705
18.0964
2.81338
0.178417
0.165379
2.75825
2.71497
0.167554
2.93604
2.6916
0.187515
5.35599
0.158408
2.45901
3.01074
0.161576
16.8151
18.5254
17.5226
18.112
1.83776
0.394464
0.38842
2.32812
2.53644
0.401022
1.78431
14.7031
19.9713
15.4799
18.336
1.96023
2.2249
0.491588
0.425593
2.40253
1.82266
0.437129
12.7174
6.43831
7.06683
11.9121
1.93515
0.422887
0.47331
2.23223
2.3066
0.428339
1.88393
1.84986
0.402855
3.11122
0.404797
1.75935
2.59761
0.40899
14.3864
17.1133
18.0018
13.5373
1.82168
1.99573
0.368308
0.39933
2.03574
1.8255
0.396234
9.76332
12.8223
9.20268
13.4491
8.09775
14.3948
5.14586
8.5809
2.07924
2.0258
0.412028
0.339175
2.02546
2.07707
0.418131
9.95755
13.8874
13.5684
10.3055
1.76858
0.365456
1.60816
0.394832
1.72543
1.66086
0.397389
2.15831
0.439252
2.4336
0.352265
2.17506
2.23538
0.425268
1.50519
29.047
1.1783
1.17925
1.50312
1.84795
1.22792
1.87772
1.21689
1.80877
1.1694
1.80524
1.19245
1.43364
27.1803
1.14493
1.13241
1.45228
1.72021
0.967108
1.71118
1.00764
1.70144
1.0331
1.72768
0.997264
3.70271
0.0495105
2.59298
0.0465115
2.8231
0.0554709
3.25407
15.3254
14.9931
17.2427
14.8065
4.80924
14.3293
0.0513735
0.0903813
6.09692
11.0219
0.0765559
15.8082
14.5947
4.04175
0.0575963
3.20848
0.044372
4.74218
3.00816
0.0655162
13.8977
14.489
14.1082
14.0379
4.336
0.0526336
0.0744336
6.89439
9.99918
0.0637188
3.65339
1.1918
1.18342
0.0422456
0.0501528
1.06973
1.32523
0.0454535
15.0335
11.2352
14.5492
13.5071
13.6937
13.5808
12.5362
14.406
2.28587
2.01954
0.0574041
0.0527637
1.16433
2.32572
0.0481497
14.0372
14.5275
13.4395
14.6923
1.22158
0.0429355
0.972444
0.0528423
1.10883
1.07793
0.0470194
2.16008
0.0501636
2.63562
0.0482862
2.13959
2.39072
0.0442655
1.35313
0.22321
0.220132
1.39947
1.3838
0.214341
1.36691
15.5666
14.6008
14.7104
15.5736
1.24192
1.10068
0.181144
0.173646
1.16147
1.17392
0.191067
15.6647
15.4608
15.2636
15.9312
1.25786
0.21169
0.193329
1.20209
1.18286
0.202183
1.27309
1.33919
0.20897
1.27831
0.185469
1.2595
1.36852
0.203507
15.7238
16.1396
15.7612
16.016
1.92759
0.37806
0.361602
1.70642
1.7374
0.376669
1.89566
7.91514
12.3559
8.65961
11.8312
2.51063
1.79134
0.21801
0.37376
1.129
1.82576
0.386098
5.72728
2.70799
2.8373
5.455
2.14171
0.346672
0.17986
0.79917
0.820003
0.347704
2.10811
2.13223
0.376047
1.51343
0.36736
1.61424
1.86165
0.400962
7.47792
10.9803
11.4342
7.13127
2.05272
2.04658
0.381077
0.341109
1.95931
2.16028
0.326481
14.8872
7.45076
13.8772
8.04427
4.23268
1.88502
1.73565
5.15152
0.698836
0.392963
0.149818
0.110869
0.679608
0.394399
0.152786
15.0704
8.87693
8.13648
17.8597
2.01392
0.377087
1.84915
0.314289
1.92797
1.90966
0.324602
0.705653
0.1649
0.411005
0.103273
0.388348
0.796011
0.14969
1.3106
25.9474
1.00932
1.03566
1.27613
1.60158
0.921331
1.64379
0.849624
1.55037
0.75868
1.50814
0.821727
0.944609
11.0531
0.753369
0.754221
0.945905
1.19517
1.35695
1.18222
1.37439
1.14744
1.32665
1.1525
1.31651
0.760916
0.0252199
0.504731
0.0242977
0.641952
0.0286929
0.606136
14.2247
10.3348
14.2277
7.44216
0.967704
1.75081
0.0478703
0.046822
1.0385
1.72395
0.04571
13.7249
12.2447
12.7004
12.7775
0.87685
0.0346141
0.833836
0.0434794
0.96193
0.745468
0.0402025
13.7582
6.28875
6.95245
12.2477
0.838063
0.0270112
0.0329324
0.706182
1.44466
0.0317858
0.670977
0.164245
0.127935
0.00611277
0.00606616
0.145816
0.145966
0.00646388
3.97092
2.07422
3.38164
2.3125
6.23458
8.16097
8.05885
6.70192
0.338408
0.330492
0.0154372
0.0185643
0.290698
0.385228
0.0166483
4.16215
2.29891
2.23659
4.46145
0.283418
0.0132601
0.213725
0.013859
0.247877
0.240617
0.0147709
0.182647
0.00646279
0.160648
0.00719043
0.180389
0.164058
0.00686052
0.384639
0.0595544
0.0846422
0.577372
0.51079
0.0572288
0.424234
2.04239
2.28604
2.02599
2.27582
0.207946
0.184218
0.0350166
0.0388202
0.177857
0.21213
0.0382525
1.8441
1.76125
1.75419
1.92518
0.206579
0.0389144
0.0351502
0.172914
0.172715
0.038338
0.210755
0.357529
0.0795552
0.432449
0.0558358
0.341079
0.462808
0.0559219
2.09604
2.43793
2.31627
2.36742
1.70076
0.234801
0.359787
1.65174
1.80163
0.261353
1.52308
4.13854
6.86968
12.2246
6.44858
0.441275
0.367552
0.0992833
0.13262
0.348585
0.566883
0.116599
2.20479
1.61212
1.66636
2.00361
0.403519
0.102395
0.0945151
0.326321
0.335212
0.108249
0.379359
1.80654
0.372511
1.99479
0.309129
2.03286
1.89824
0.2773
3.99791
5.36952
6.2714
3.50993
0.215519
0.214088
0.0540484
0.0596788
0.204653
0.223121
0.0568302
1.17186
1.21944
1.15332
1.25072
1.23659
1.55812
1.43796
1.33014
1.17981
1.36485
1.2627
1.2679
0.2121
0.052272
0.199507
0.055201
0.21158
0.200355
0.0554459
0.242788
0.0641358
0.287525
0.0668362
0.277643
0.250986
0.0616142
0.981171
10.997
0.754345
0.783864
0.94206
1.18989
1.34303
1.17067
1.36642
1.19306
1.31486
1.1444
1.37066
0.766545
8.61901
0.629238
0.626893
0.768284
0.919603
0.981932
0.844284
1.07212
0.952242
1.11099
0.952847
1.11254
0.193088
0.010712
0.170745
0.0120683
0.171237
0.0116162
0.189538
2.84987
1.97769
3.12662
2.03376
0.309903
0.317047
0.0111678
0.0176114
0.275401
0.366758
0.0156299
3.28354
5.47793
7.43429
2.42223
0.258857
0.0125627
0.20386
0.0102487
0.234876
0.223625
0.0138544
2.55699
1.69828
1.89123
2.03419
0.226547
0.0132931
0.014374
0.253194
0.266756
0.0128982
0.220997
0.137647
0.115335
0.0135193
0.0149372
0.131125
0.120285
0.0148692
1.02193
0.625948
0.600324
1.11718
0.988732
1.0367
0.844682
0.987633
0.151423
0.0743016
0.00547936
0.0147009
0.0742352
0.163662
0.0132826
1.03281
1.07329
1.12703
1.00862
0.142807
0.0115658
0.0717568
0.00563954
0.0736683
0.135067
0.0124373
0.144927
0.016301
0.137839
0.0184682
0.157455
0.126631
0.0164924
1.50092
1.62528
1.46088
1.64342
1.54057
1.57884
1.59136
1.5234
1.50695
1.6134
1.64705
1.48305
0.201521
0.0560319
0.0485976
0.220025
0.190584
0.0517495
0.239612
1.11574
1.20945
1.14309
1.16861
1.14302
1.60924
1.30499
1.36125
0.207642
0.050609
0.19689
0.054141
0.208598
0.19578
0.0540783
1.09293
1.26582
1.14631
1.28411
0.201407
0.192621
0.0435894
0.0484917
0.183258
0.211681
0.0467123
1.04979
0.962844
1.01881
0.988398
1.11389
1.47835
1.26832
1.28762
1.05348
1.1227
0.983472
1.21222
0.566071
8.05184
0.478606
0.466467
0.580855
0.742956
0.890365
0.76742
0.860982
0.69591
0.82203
0.714199
0.80072
0.442021
6.83174
0.386999
17.1661
16.7409
0.376363
0.455549
0.550197
0.712637
0.596603
0.651075
0.539112
0.662658
0.557299
0.639015
0.450641
0.577681
0.499272
0.543001
0.00797022
0.0107478
0.000921025
0.00123904
0.0133672
0.00542135
0.00100056
0.340714
0.169464
0.201538
0.302075
0.0056909
0.000983544
0.000874908
0.00496661
0.00411977
0.000929174
0.0066867
0.376798
0.412407
0.450256
0.337838
0.283625
0.700414
0.645673
0.318775
0.266147
0.166261
0.163849
0.267861
0.293496
0.337098
0.327897
0.29519
0.574705
0.495172
0.493413
0.640074
0.618561
0.713929
0.482137
0.959712
0.655348
1.06375
0.743988
0.997856
0.972187
0.950837
1.00514
0.916758
0.99652
1.79217
1.10922
1.41516
0.954914
1.12358
0.900986
1.31076
1.01302
1.20666
1.47277
0.963752
1.09763
1.90754
1.2071
1.46148
1.03799
1.12197
0.979963
1.32811
0.366625
6.3144
0.337521
15.9981
0.31261
0.39653
0.441498
0.586434
0.493109
0.519902
0.443223
0.557183
0.478844
0.519885
0.252486
5.51975
0.228195
6.60102
6.49735
0.223907
0.257068
0.31176
16.3279
0.360025
13.5352
0.301066
0.377067
0.302772
0.371333
13.7465
13.5332
0.307898
0.365688
0.214344
0.363279
0.328014
0.226558
0.158479
0.301397
0.0961975
0.410055
0.172612
0.386763
0.190989
0.434695
0.196034
0.102481
0.153141
0.125554
0.144752
0.183776
0.152052
0.17678
0.137387
0.122184
0.0985444
0.172216
0.900086
0.898449
0.872041
0.91726
0.351095
0.378333
0.441928
0.337754
0.35036
0.323951
0.341522
0.337351
0.995414
1.03351
1.17155
0.920895
1.01258
0.617244
1.09301
1.63045
0.963846
1.21833
0.900353
1.49391
0.950429
0.673706
0.514962
0.887233
1.01342
0.107492
0.0960264
1.20083
0.993929
1.07533
0.933092
1.17359
2.17244
22.572
90.4758
12.0779
7.94807
4.46385
4.5351
1.70791
2.08785
3.06697
46.5011
4.51514
1.14636
3.59096
16.89
909.457
7.68969
12.2563
12.3963
37.5307
530.184
82.3131
178.373
8.21117
2.85301
49.8624
3.14286
12.3385
18.0371
2.30258
27.1912
32.1898
10.8107
90.294
3.76731
44.7252
13.014
4.39494
20.8798
9.08444
2.8374
8.20806
3.76294
2.05306
15.7913
6.03573
1.83414
8.11191
1.19459
2.35326
1.05353
2.12678
5.27097
3.24377
12.2757
7.67288
104.002
9.9031
7.66533
3.19944
3.19078
104.529
9.03825
7.21373
9.43051
7.30811
3.20245
5.52054
19.7656
17.9095
21.9566
5.63938
20.0681
5.83264
29.6739
22.2787
6.1602
24.9499
18.5742
0.654924
4.45729
1.01316
0.921717
0.475024
0.330553
0.360847
0.545003
2.30868
0.430472
0.676846
0.586283
0.250556
0.21792
102.724
95.8033
0.217105
0.813167
0.411367
0.242438
0.499582
0.162774
0.147297
0.414739
0.32902
0.839123
0.25364
0.344988
0.146417
0.165283
0.426917
0.129494
0.470311
0.275588
0.0830228
0.103443
0.0689528
3.05776
166.864
2.9673
17.4824
4.53181
55.6902
2.2591
2.90036
48.6935
3.2307
8.71463
18.5559
4.32065
2.37913
1.96646
1.19856
7.29259
5.98883
11.4281
1.37963
1.67338
72.678
258.292
525.656
50.4787
209.864
63.7998
36.4056
122.8
5.84591
30.3349
25.6158
29.4455
20.6176
6.66366
5.897
29.0007
20.2527
5.93469
29.5385
20.7874
15.1158
16.2251
17.2951
27.2098
16.5908
16.9972
14.3462
20.9295
17.4903
7.79014
1113.66
10.4389
12.839
19.3711
29.4716
28.4853
32.2934
9.24348
43.2755
28.067
43.8424
9.48387
27.2834
9.11396
44.6972
27.3996
9.20403
43.5948
26.8924
14.468
167.568
61.9132
142.039
231.384
12.8547
31.1581
50.4151
287.524
3.76276
14.5453
31.279
2.57229
3.59238
65.3807
3.2386
6.80562
10.5176
161.43
535.14
7.84806
10.022
89.0052
4.85744
22.1464
65.7665
3.94572
5.43573
46.2097
3.95502
6.16204
50.8103
5.37259
236.831
7.2346
4.76434
84.4911
5.3856
124.664
114.719
5.65676
4.63455
44.4449
27.8092
9.55857
91.8031
2.79337
15.5127
3.99596
1.04601
1.08964
15.2913
2.82074
2.72302
27.3535
1.97107
0.727724
0.762193
23.24
2.74346
5.68242
5.19858
2.68045
0.938249
2.01592
23.6422
0.928752
2.8008
11.8356
2.68578
0.746461
2.30679
1.85555
0.724161
248.091
2.71413
11.9511
2.03191
0.932078
0.955721
11.9153
2.67466
5.82968
6.31502
2.71723
33.6719
0.665194
2.51003
0.747006
2.64313
65.778
6.88055
10.7188
9.77356
10.4803
31.9127
10.605
7.89109
11.5977
184.197
8.42699
650.999
14.0113
39.2751
12.5158
3.30697
3.29684
2.62101
0.973798
24.5396
2.76785
2.9292
0.911017
26.0135
3.4141
0.693046
2.22657
2.30664
0.681961
3.12656
6.76361
2.70648
24.4472
2.7311
0.917888
0.929551
25.5444
2.69958
3.66051
2.19737
0.650155
0.676748
3.60546
8.24312
6.10536
2.21343
0.997031
2.43268
31.2883
0.665478
3.5885
23.8991
3.55437
0.415665
1.33242
5.43731
0.385842
2.16336
23.4599
2.41285
0.685194
0.655691
23.7091
2.01676
8.18443
10.844
3.5954
0.395479
1.24382
0.383069
4.46792
2.99097
6.00586
17.5266
5.77352
17.0465
6.82142
9.38313
6.79182
2.92245
6.09987
15.9765
194.8
5.36697
16.858
5.43287
9.42952
4.88201
11.8129
11.9275
4.41673
1.08323
37.0007
2.77824
4.16991
1.12158
42.8171
1.54889
0.377659
1.22951
1.49454
0.325234
1.52988
0.711117
0.253986
0.282625
1.47629
11.6729
10.0096
4.41685
40.7131
2.75605
1.09433
1.11007
42.1627
4.37202
2.50356
2.57505
3.79963
0.820205
1.91951
28.7355
0.80835
3.86798
27.9408
2.0408
0.118784
0.217812
2.03119
0.095362
2.0845
0.0985295
0.239556
0.0966121
2.26394
3.85298
32.6699
2.08482
0.858772
0.834908
29.6859
3.90974
2.462
2.57227
22.2818
1.89378
2.54002
19.0418
25.9516
2.3385
8.74811
36.3449
4.35423
4.71887
33.5079
4.71356
34.6683
36.1437
21.6664
1.81443
2.18776
8.24868
20.7089
2.24164
8.48234
37.5818
5.54686
5.01136
68.8755
4.9167
65.0263
36.8204
39.8027
44.3249
2.12435
6.22379
3.65187
0.804873
28.3023
1.96557
3.84332
0.763327
27.9951
1.90215
0.134161
0.244281
2.00286
0.146358
1.64407
0.281426
0.0831323
0.125336
0.501647
2.34826
2.56557
2.96752
26.0044
1.82883
0.661468
0.647777
26.9383
2.98373
2.85781
3.30961
1.25335
0.301074
0.630631
0.295187
1.24654
1.24882
0.104712
0.276809
103.049
1.10212
0.12896
1.94393
0.225277
0.483963
0.190805
2.22852
1.41245
0.680194
0.376241
0.342355
1.50177
2.08435
2.18499
30.2577
1.10968
1.58013
4.05138
31.2428
1.56667
3.99045
10.3185
24.4908
1.87791
1.97356
36.127
30.8765
1.73608
97.7741
12.0367
38.153
13.5926
28.608
1.12326
1.30949
4.0126
9.77472
1.51958
4.19672
11.0587
1.83729
34.6757
2.15475
33.018
11.4858
1.82195
105.385
15.9946
110.038
14.7739
280.715
28.154
90.7773
64.8933
25.8732
78.4202
31.261
37.3823
27.8106
8.72478
15.5385
17.9858
24.1633
9.07418
18.9561
38.8998
20.051
26.7332
0.892324
0.661593
1.01531
0.27369
0.648934
1.20109
0.229869
0.221824
0.0363815
0.0358103
6.66206
0.540246
0.02115
0.867415
0.135093
0.281732
0.0243001
0.0182593
0.0191314
0.449037
0.123348
1.67916
2.93198
0.818791
0.5936
0.175678
0.196548
0.719029
0.181316
0.481947
0.13374
0.425787
0.202602
0.0574936
0.367454
0.0635609
0.194375
0.027722
0.00609024
0.0067395
0.0465493
0.0311757
0.00620908
0.0465606
0.0244288
0.0425189
0.00574059
0.00669582
0.00603108
0.0226241
0.0429363
0.205222
0.370702
0.0593426
0.0624859
0.209322
0.229842
0.416716
0.305614
0.426785
3.59639
0.971577
1.12776
3.81812
3.7344
1.1142
3.80788
23.4593
24.6617
4.44912
8.34792
1.13454
1.68978
4.20062
10.3214
1.1906
18.3699
22.7778
16.6705
25.0408
3.54728
0.966332
1.05571
3.56031
3.4629
1.09613
3.75815
4.60272
1.26528
11.4282
1.73464
10.511
4.97084
1.2178
18.4989
25.5211
18.983
25.1582
9.02684
31.1734
12.9453
6.66804
14.0163
12.7031
7.44349
5.88418
9.85238
31.8104
18.3246
16.8237
4.65028
5.42127
4.23135
1.91411
2.57247
3.34104
4.09623
2.06254
3.67244
4.7434
3.0632
3.83651
0.198047
0.193195
6.24957
0.306142
0.117043
0.19124
0.0560888
0.360492
0.182762
0.0604039
0.0357429
0.00518482
0.00463096
0.0408966
0.028425
0.00487856
0.0434779
0.0237033
0.0174504
0.00337087
0.00320778
0.00362947
0.0271608
0.0166166
0.368456
15.0972
0.349693
0.309854
0.416683
0.135244
0.300493
0.0363867
0.0438724
0.115939
0.0233789
0.0462182
0.310079
0.0229795
0.0448678
0.0357058
0.228661
0.0204584
0.0301357
0.0238118
3.26611
0.329795
0.61387
1.20158
3.06464
0.610528
1.07787
9.784
19.6108
17.9838
10.8529
2.83992
2.48237
0.653664
0.66165
2.75993
2.56201
0.661319
25.4335
3.94755
21.4656
3.43628
2.88814
0.303344
0.542151
0.981582
2.78807
0.554069
1.00417
2.97737
0.667502
3.56482
0.698258
2.68437
2.77438
0.690159
40.9652
4.02143
8.11213
3.64699
1.23353
2.50776
1.58495
0.980327
2.06047
1.50478
1.0649
0.90863
1.32092
2.87398
2.49462
1.8361
1.82498
0.587724
1.72812
47.6192
1.0223
0.979691
1.23865
1.63699
1.29247
1.53739
1.55459
1.12757
1.39906
0.0180696
0.411773
0.0171513
0.0210293
0.0144294
0.159603
0.00441138
0.00232372
0.324496
0.064001
0.0298666
0.00245178
0.169576
1.30848
0.106634
0.251718
0.293116
0.0602998
0.023436
0.00122656
0.0323476
0.0139394
0.0011811
0.0166838
0.00115108
1.21057
0.068218
1.56779
0.0736504
0.153699
0.376987
0.00282776
0.0305074
0.218715
0.0194622
0.000973954
0.00140786
0.00951622
3.82527
8.36314
7.40206
5.25735
1.08993
2.59259
0.256713
0.47383
1.04493
2.6547
0.268302
3.07002
3.16369
2.93649
3.25305
1.43653
0.408965
2.20504
0.523928
3.07412
2.19059
0.318055
3.14988
3.33449
3.50606
3.27901
2.15639
0.0302938
0.0329847
0.00565888
0.0444956
0.0538947
0.00505761
0.0405589
2.21618
0.0420781
0.0364958
0.00741079
0.00673181
0.0681177
0.813653
1.08991
0.942081
37.4759
0.767318
1.08854
21.2982
0.950039
0.650623
0.616037
15.5543
19.4226
0.760582
1.35065
1.30468
1.16299
15.0441
0.278316
13.8652
0.334796
15.1089
0.299433
13.0559
15.2406
16.4052
0.265147
0.291373
16.7029
15.4428
0.300737
15.7996
0.261686
17.3147
0.274167
17.1119
15.9038
0.283477
14.4701
0.412865
0.323207
12.6977
14.8057
0.345107
12.2914
0.00224732
0.034573
0.0329121
0.0156393
0.00205816
0.00174042
0.0199786
0.301618
0.350376
0.0765874
0.214747
0.213392
0.14275
0.00330108
0.000849143
0.00451941
0.000808567
0.000831743
0.00291374
0.00642559
0.00251797
0.0365106
0.0458262
0.0216395
0.00179569
0.0216612
0.00188766
0.542155
0.292094
0.0380307
0.0419451
0.0192261
0.0823011
0.0553796
0.00392297
0.0582689
0.00476015
0.00143601
0.0118936
0.000987773
93.6407
0.0538433
0.580109
0.0044618
0.0150793
0.0155684
0.00363097
0.00221263
0.000764042
0.00412588
0.000769218
0.000754596
0.00258022
0.00348827
0.436696
0.816001
0.0088955
0.0387594
0.0150816
0.0223573
0.00295365
0.0104274
0.0450012
0.00248828
0.000708501
0.000767492
0.00161644
2.37109
4.52678
3.10064
2.48154
0.513559
0.591139
0.1379
0.162796
0.502522
0.608916
0.140823
2.39625
2.55333
2.24955
2.77321
0.531124
0.152122
0.799345
0.171999
0.653165
0.557615
0.146046
2.42651
2.94781
2.53338
2.8113
0.0269343
1.65123
0.0247433
0.00375758
0.0373863
0.00428318
0.0250527
0.0222046
1.60549
0.0224968
0.00313185
0.00859154
0.0160161
0.00316455
13.1535
0.01517
0.0177375
0.00108446
0.00315888
0.00322995
0.00101688
0.0197738
1.0335
0.0236946
0.00154897
0.0077899
0.00428245
0.00262279
11.4816
8.57154
0.0828902
0.099349
0.100154
10.8662
9.22114
12.7011
15.5969
0.104131
0.073447
13.1524
14.9088
0.11592
12.1689
0.0775182
0.0855784
9.91771
12.3231
0.0951758
11.4862
12.0162
0.120519
0.0786863
12.9243
14.423
0.119413
9.78222
3.63139
0.0888615
8.41834
0.0801085
6.69398
0.069953
6.35814
23.1269
13.7907
12.0672
3.26089
1.95461
0.0589094
0.0534528
2.35634
1.99136
0.0679204
97.548
13.9141
3.09704
0.0747496
2.85378
0.0534545
2.17254
4.73069
0.0604536
3.98107
0.0976808
0.0612624
3.16196
2.20762
0.0810843
6.47811
0.0160265
10.1357
0.0446565
0.00174582
0.00906336
0.00209915
0.00769402
0.043225
9.83742
0.0352083
0.00143235
0.00413811
0.00114057
0.00484216
7.24669
0.0432363
0.0987766
0.000878997
0.00192123
0.00262928
0.00190105
0.0375266
7.96062
0.0974307
0.000950607
0.00386831
0.00106191
0.00353179
1.83558
1.85273
1.72349
1.98528
1.78747
0.674953
2.18549
0.825986
1.91389
0.83673
2.09179
0.864665
0.0120288
3.41454
0.0106952
0.000918106
0.00234853
0.000889536
0.00220873
0.00819093
3.22529
0.00907023
0.00135315
0.00492238
0.00590237
0.0012505
2.35395
0.00528589
0.00428623
0.000818336
0.00155743
0.00206861
0.000753499
0.00678187
2.57389
0.00584132
0.00104313
0.00433443
0.00383217
0.00111451
1.21951
1.95147
0.0248315
0.0547232
0.0463641
1.43518
1.39906
1.70803
1.66743
0.0541748
0.0531541
1.69858
1.55601
0.0627197
10.3298
11.9032
12.2907
10.556
11.7644
10.3004
20.1063
9.66445
9.01207
10.1243
9.71575
1.2086
0.0231856
0.0361683
1.20326
1.37532
0.0401034
1.33549
1.80004
0.0948552
0.0615616
2.40961
1.65172
0.0760965
2.49294
0.126721
0.00604107
0.143158
0.0059388
0.205005
0.00725425
0.131839
5.9345
7.72342
7.62443
6.03253
0.377388
0.338837
0.0202595
0.0191817
0.399223
0.309288
0.0219344
5.81699
3.4488
5.16676
4.11647
0.144554
0.00664807
0.146293
0.00733983
0.163733
0.131632
0.00741999
5.31567
3.76435
5.41915
3.50361
0.343351
0.0169336
0.0179644
0.218095
0.26595
0.0212086
0.354231
0.0219468
3.21945
0.00550456
0.0014862
0.00176925
0.00170398
0.00162218
0.00450878
3.03479
0.00445773
0.00113924
0.00130678
0.00105719
0.00143357
0.171148
0.00505212
0.00311403
0.000778182
0.000947052
0.00109432
0.000742989
0.00387466
0.257405
0.00496843
0.000982986
0.00122964
0.0010095
0.00121982
1.61138
1.63745
1.50428
1.78072
1.64183
0.421173
1.60188
0.430155
1.66269
0.492765
1.83678
0.443849
0.00438966
1.16716
0.00379308
0.000706802
0.00138487
0.000716416
0.0013323
0.00430316
1.0985
0.00283392
0.000673467
0.00110631
0.0011375
0.000671125
0.034628
0.000907882
0.00107117
0.000590897
0.000699235
0.00072396
0.000585958
0.00532649
0.0710187
0.0027772
0.000648254
0.00104675
0.00102065
0.000657899
0.282693
0.206903
0.0181412
0.0186778
0.0178808
0.259779
0.237471
0.409389
0.338725
0.0194437
0.0130604
0.411148
0.316551
0.0211475
6.11489
6.20373
7.58717
4.96181
5.9682
3.27609
4.98753
4.297
5.54968
2.75463
4.40446
3.79801
0.304088
0.0172366
0.0157369
0.285759
0.294248
0.016902
0.294044
0.376643
0.0230827
0.0132872
0.205392
0.27426
0.0228457
0.319165
0.25776
0.0345615
0.0266201
0.249137
0.217749
0.0293034
0.310693
1.12594
1.15078
0.862889
2.18895
0.228017
0.0762345
0.00587181
0.0166075
0.187023
0.0839444
0.019045
1.09001
0.984898
0.62819
1.63921
0.287853
0.0260544
0.00628349
0.114058
0.0975755
0.0222694
0.369338
0.216395
0.023232
0.158253
0.0211984
0.181015
0.185235
0.0247452
1.39158
1.90646
2.55535
1.32203
0.00372713
0.26095
0.0011365
0.000640899
0.000859375
0.000659726
0.000821197
0.00195304
0.128729
0.00233208
0.00063868
0.00070171
0.000628052
0.000722708
0.0188365
0.000706601
0.000737885
0.000594313
0.000657391
0.000667378
0.000590546
0.00142883
0.0379689
0.00114437
0.00060484
0.000677487
0.000611508
0.000664015
0.410215
1.51905
1.2975
0.486932
0.265158
0.261478
0.257165
0.267321
0.296454
0.315098
0.320333
0.308404
0.000828984
0.021001
0.000811782
0.000572208
0.000664074
0.000574051
0.000654683
0.000753314
0.0169103
0.000781515
0.000567584
0.000625132
0.00063231
0.000566089
0.00431289
0.000696481
0.000619519
0.000556727
0.000627715
0.000606552
0.000556417
0.000682012
0.00603709
0.000649517
0.000559784
0.000613906
0.000608683
0.00056164
0.313354
0.302321
5.59966
8.92867
0.384269
15.0162
0.381557
0.411708
31.3978
0.423884
0.429079
0.474611
162.268
0.472436
0.301504
18.6122
0.422003
9.86104
0.383728
1.14373
0.00731229
2.90293
0.00887047
0.0211157
0.0157898
0.0133601
7.0231
2.83414
0.00996383
0.0240629
0.0306988
0.041951
1.09864
0.00416532
0.0430094
0.00416662
0.00223134
0.00216655
0.00799949
0.123973
1.85383
0.0855946
0.00561438
0.00293495
0.00377849
0.283156
0.0957749
1.6224
4.27042
0.141744
0.29385
0.0993669
1.12966
1.27764
0.283237
0.111606
0.444529
3.19124
3.88109
4.43414
0.539999
0.103687
1.71982
4.6038
0.448743
0.485843
0.548831
0.055813
0.119622
0.480738
0.780527
0.0366521
0.055588
0.139285
0.868641
0.15927
0.0385795
0.068947
0.344267
0.0566834
0.144807
1.47729
0.189175
0.317913
0.132786
0.533993
0.120312
0.743966
0.462332
13.5078
0.117786
0.0782395
0.130988
0.0682683
5.88013
0.303241
15.5946
0.188892
0.218417
0.38628
0.314485
16.9404
0.172963
0.449655
0.241074
0.409444
0.527561
0.147371
0.133353
0.0325802
0.0517685
0.0344299
0.0435508
0.0667762
0.049877
0.0189908
0.0215177
0.0721285
0.0217726
0.0182686
0.592666
7.10097
15.7207
0.769451
0.198245
0.236079
6.49085
15.1592
1.06983
0.881113
0.254989
2.68367
7.37531
0.297898
0.110506
5.4447
3.94304
0.109935
0.0801098
0.0780953
2.74628
3.33589
0.0523121
0.0646201
0.0618186
1.04543
2.756
0.0501735
2.51031
1.40937
1.31578
0.439306
1.01792
1.8758
0.630385
1.22277
1.50714
1.87715
0.423524
2.98103
0.318519
1.96523
0.448165
0.867454
0.497951
0.321008
0.267316
1.39532
0.564829
0.0411074
0.312077
0.0349255
0.031555
0.137677
0.351188
0.037486
0.0398638
0.390741
0.034264
0.0316069
0.900024
0.0379412
0.389251
2.61862
0.674425
5.37882
0.971582
0.804446
0.792454
0.59028
0.228779
1.47636
1.29927
0.451094
0.179449
0.178221
0.501028
0.543253
8.85991
5.86795
1.04654
0.29341
0.476296
1.15775
0.676594
0.763907
0.499632
0.368018
0.377557
0.658237
0.785979
0.044609
0.116592
0.0437603
0.0411347
0.127383
0.0410008
0.111717
0.215109
1.63151
4.05483
0.45507
0.173061
0.166134
0.521688
0.181567
26.6723
1.3785
0.312645
0.398773
1.33147
9.57461
0.204059
24.8997
1.30365
0.258581
1.25838
0.181691
0.0806427
1.36968
0.226642
1.41729
0.181811
0.256445
27.6335
13.583
0.963401
0.207352
0.190676
1.15044
0.147466
61.182
1.42374
0.101712
0.136804
1.38205
0.344959
30.2439
1.01296
0.238075
0.262423
0.952225
4.93124
0.084411
9.88424
0.964207
0.0666161
0.0743598
0.7929
26.6427
0.0883827
9.7494
0.973935
0.0792285
1.06774
0.0805405
4.16256
0.0976053
1.74978
0.588756
0.0773914
0.659869
0.0927824
0.4839
3.90035
5.73372
1.11913
0.356941
0.359809
1.15036
0.100599
1.0637
1.55359
0.52444
0.0908039
0.0937675
0.430896
0.465829
5.88616
3.1089
1.09654
0.34206
0.334635
1.27349
0.279989
0.0550804
0.329025
0.278546
0.0372171
0.0526889
0.24421
0.452412
0.0739691
0.361569
0.299885
0.0807447
0.361275
0.0691678
1.45149
1.72818
0.693802
0.607833
25.8756
1.65811
1.25412
22.5511
0.655927
1.41598
0.594086
1.55016
12.3571
2.13137
31.2699
23.5381
4.19583
39.8454
1.08161
0.518499
1.42476
10.169
0.487855
1.24929
22.7418
1.99774
27.7802
19.3052
3.50315
12.1036
10.6125
0.671606
2.42834
8.69991
95.8704
4.28621
0.841051
2.17431
0.646091
2.0218
63.1309
1.11486
2.91176
0.519786
1.70086
8.07898
1.85654
30.4276
0.74222
114.778
0.795245
3.60986
54.9506
2.82354
1.53822
0.654338
0.364744
13.0218
0.596817
1.42151
18.3728
2.9935
13.6951
4.07086
8.73658
1.91911
1.24036
16.3382
0.958362
49.3373
10.5881
49.4947
1.28161
5.38813
17.5292
3.40663
20.7686
55.477
221.697
2.61402
18.7671
4.24779
43.1438
159.892
208.583
0.914657
3.59467
1.22654
12.2806
2.2657
19.1499
6.80243
24.2088
3.70759
1.92341
14.0588
0.568907
0.901794
0.472511
2.32633
4.42401
4.44853
159.786
2.99724
13.8949
3.57924
4.34394
14.9938
17.3222
3.37308
6.48053
14.7473
43.939
0.343755
1.64329
1.00205
2.63838
0.440706
1.02063
0.660584
23.9254
1.35012
0.49078
1.1304
1.71955
10.516
0.970157
10.5048
7.16913
1.94573
10.6724
1.54954
3.57172
7.9924
29.7857
0.569631
3.65717
1.33556
2.28078
1.11166
3.02251
11.1271
65.5555
1.53541
0.534792
1.47244
0.930867
1.134
0.454931
2.22189
0.66761
2.20933
8.12603
0.895283
1.53596
2.9988
1.53037
5.29447
3.85756
20.3523
2.06731
0.495863
0.890542
0.227545
1.62332
0.275032
0.389802
2.38386
1.03992
1.83052
5.88282
3.31752
0.785692
15.1235
6.29131
0.339182
1.17148
0.938777
9.04644
0.824353
0.656097
28.4329
1.42627
2.0572
15.0579
14.9979
1.28732
5.30496
1.56273
8.15207
2.61279
0.346768
0.852123
0.577591
0.987732
0.66945
2.10518
29.0976
3.33074
1.97733
15.3236
2.35351
5.07667
34.0417
1.60851
3.466
11.9386
27.8537
3.69437
38.9612
30.946
38.1853
4.40329
0.932176
1.56136
0.842593
6.05663
7.66755
1.81653
9.31755
1.26638
8.7692
7.66053
2.89205
1.07537
0.729738
26.075
0.59442
65.5205
2.64858
12.9916
31.1169
0.738336
1.61699
3.67867
37.1005
3.98377
0.872238
1.2863
0.7794
6.96516
77.7657
1.83865
4.25508
0.996533
1.36917
10.4123
1.04417
3.02406
7.80268
1.46691
28.6046
2.08818
12.4967
3.15972
5.27654
1.05612
0.42281
0.647412
0.677396
1.0118
5.80847
3.08363
0.594587
1.05296
0.48675
2.13618
0.798285
1.45365
65.3715
8.97809
2.21614
1.19037
1.2454
17.1936
1.71504
11.3463
7.56839
10.9038
13.253
1.31592
6.24662
8.11951
36.392
22.8734
0.634789
0.409427
1.26366
2.0419
2.47493
0.420548
0.620338
1.14089
2.60204
11.9132
8.21834
1.35211
2.1247
0.6811
1.47009
7.29512
0.484432
2.98387
0.448615
0.760267
1.06097
7.14538
1.96419
7.57528
1.04763
1.98552
4.47797
6.65344
5.66009
5.46856
5.8737
6.111
9.0465
8.34723
6.48196
3.67654
13.74
2.83748
7.23626
1.2444
1.92221
2.38112
12.0995
20.6343
124.087
2.28699
1.16629
27.7396
1.81377
13.2335
11.9419
2.00797
2.55905
20.6446
37.5184
0.458741
1.22693
0.618064
6.63599
0.422991
1.39535
0.681306
0.496322
7.09213
1.65206
0.720901
1.56409
0.745649
0.486878
1.34471
6.1362
0.884469
0.812549
1.49226
1.35955
3.62245
2.66689
4.51366
1.3191
5.39256
0.825989
36.5322
0.788111
98.0444
1.41313
1.33101
5.56107
1.55562
5.05116
4.4716
40.7426
5.26279
4.88182
8.7712
4.763
11.9403
18.7146
11.3396
2.27134
4.37751
3.31547
2.56018
33.2547
1.98651
3.15841
11.0777
19.0536
9.57689
45.4662
7.73576
5.45145
36.8428
23.9464
11.8808
24.6995
42.6042
26.7373
31.6585
14.579
26.0549
23.9197
1.89428
0.994091
9.79267
1.1065
1.70733
2.05301
9.30095
2.05853
6.9973
2.12523
10.4139
1.17531
1.22839
2.00961
1.88607
5.92362
1.69459
6.39522
23.0289
39.3185
3.31376
0.393149
0.393579
2.8723
4.50351
0.413289
2.36356
4.32626
0.420991
0.552935
6.57982
15.2101
0.419174
3.90973
21.5389
21.6967
20.7125
23.5074
4.61162
12.1297
0.46882
0.576923
9.03785
5.26678
0.438683
21.3788
19.4793
23.7598
19.9904
22.4869
32.0786
151.637
23.0597
5.73464
18.5047
35.0289
15.2946
0.787836
11.6157
0.659624
12.4575
13.7489
0.78455
16.5637
1.00286
49.2121
0.803696
21.156
23.1222
0.854438
7.31713
39.5201
86.9033
16.9218
18.491
0.648926
0.707165
15.2796
21.4808
0.767338
1.36777
13.7809
1.96881
1.26433
16.5932
2.15955
0.95387
0.679382
3.24103
13.0834
0.671336
10.9955
0.95695
0.909773
7.89926
0.616633
3.15175
0.848993
0.644831
10.3904
1.45069
30.5695
1.65889
17.8025
2.25555
1.42844
4.17868
1.70974
1.56882
4.427
6.05555
17.8769
5.73071
35.1554
1.72682
0.819443
0.643681
6.7433
1.81443
0.619056
6.20895
3.99348
1.34799
1.50532
3.58455
6.35508
40.4514
6.65313
38.079
19.4372
54.0348
4.23706
0.331252
0.374208
3.12136
4.68318
0.353609
3.7891
4.24718
0.394206
9.04345
0.493547
4.00781
10.623
0.377338
15.2205
12.2564
11.9489
12.7287
14.5729
16.5803
11.6498
13.756
4.72423
14.3858
0.44517
0.500554
7.83601
12.0664
0.396391
17.4251
19.616
25.3293
15.9469
22.6589
0.723447
0.638821
11.0317
7.62326
0.711104
19.1903
23.0689
0.921511
36.9411
0.767961
21.3055
24.0913
0.753513
22.6964
16.9155
0.627651
0.681072
10.1381
21.577
0.692248
75.2888
5.60711
1.75445
1.96717
4.68338
8.01045
8.5587
51.6136
1.98669
0.89072
0.663491
6.78652
1.8943
0.670873
7.12596
5.78362
2.19319
1.99841
6.18496
7.70168
40.8367
7.05074
44.9661
1.55039
1.0983
1.10944
1.3051
1.82308
1.86641
1.78865
1.99922
1.67032
1.67684
1.7106
1.65861
1.83333
2.02366
1.46633
2.00654
1.51025
1.1428
1.21998
1.9537
1.64992
3.03423
1.66163
3.3931
1.43616
1.22997
1.43202
1.22616
1.72058
3.90321
2.02131
3.58219
2.23428
4.52795
1.87216
5.6381
1.77451
1.76424
100.937
1.66495
1.87304
1.71545
1.38594
37.5642
1.44845
1.56199
2.32053
6.04829
5.90919
2.45362
18.7134
5.98623
5.57496
20.5295
2.39538
0.641792
1.51593
0.481862
1.55095
2.30104
0.629377
39.0385
33.7681
6.52425
1.24959
0.916364
21.8557
6.99062
0.885248
20.1444
17.0094
4.46602
5.17422
14.4144
4.62409
1.55985
0.494256
0.664493
1.52051
4.90516
0.645005
40.6348
47.2518
2.00556
1.09696
1.98065
1.12811
1.68815
1.19502
1.51546
1.33577
1.91623
1.916
1.70152
2.14943
1.8093
1.65711
1.83059
1.50642
2.33463
1.12202
1.06137
2.15939
2.41122
2.99375
3.55744
1.67165
2.82542
3.77197
2.16292
3.62405
1.79494
1.08193
1.05529
1.42349
39.1743
6.50115
7.61687
27.6547
6.55977
0.788152
0.594919
2.02772
2.00359
0.780829
6.6037
8.60064
1.50172
0.998696
30.428
9.21811
1.04855
41.3373
6.45072
1.79026
0.574216
0.72541
1.93069
6.17078
0.756521
40.1709
8.10511
7.99609
40.1177
130.973
0.284669
0.283072
3.39591
3.28447
0.265642
0.294575
3.05031
0.357201
0.393074
1.74793
1.97072
2.21291
0.357019
0.386915
0.324989
1.86287
0.335243
1.70161
0.332367
2.29477
0.341507
0.305408
3.3486
0.344368
3.55733
0.314551
3.12088
0.332969
0.309225
3.61008
4.78923
0.286719
3.84348
0.277016
0.330865
0.328018
0.346258
3.42977
9.66369
4.32168
0.302927
0.373895
0.293822
3.60254
3.04615
0.264184
3.77262
0.279517
0.276002
0.35375
7.72021
8.33172
0.442931
4.62153
0.390454
0.404648
7.89266
13.2326
16.5517
15.658
5.88681
13.749
17.7697
4.93066
2.52623
6.29115
11.1014
2.31615
13.0808
5.76046
1.78466
0.598595
0.73701
5.02363
4.65887
0.594445
1.85343
5.54618
12.6614
2.05625
6.49768
4.30907
2.34998
13.0897
1.7323
2.57515
0.604835
0.740521
1.77091
4.6361
0.600934
6.34374
15.7902
12.64
20.4807
13.778
18.124
7.38898
37.5367
34.4937
18.7314
21.7537
13.2679
1.12987
4.65849
0.904305
4.92418
12.7227
1.17406
46.4251
19.1975
2.23436
1.64663
20.279
1.61383
145.575
18.0826
19.6326
13.6842
6.0764
0.928019
1.22338
5.22509
15.727
1.20109
18.1559
23.8796
131.13
0.281222
3.59706
0.268347
3.43723
0.257934
0.264013
1.99992
0.288067
0.237156
1.38459
1.44018
0.25156
1.6016
0.262812
0.263932
2.03844
0.261711
1.57255
0.244826
0.279045
1.81835
0.320022
1.84441
0.316485
1.61737
0.331697
1.77126
0.291194
0.411135
5.40368
0.298676
3.65527
0.319697
0.3655
4.50679
0.539247
0.573439
17.0442
11.4327
5.5253
0.548882
0.522539
0.492638
8.43271
0.481011
17.4118
0.436006
6.87079
0.51306
0.438597
3.71649
0.34951
5.48844
0.338293
15.4439
0.400894
35.8551
16.3393
18.0809
17.7092
36.6934
17.4144
18.7896
17.3218
17.4524
1.26345
0.946519
6.8242
6.32369
1.24531
18.1804
34.3486
2.34134
1.65942
20.8361
1.66726
17.3469
6.2597
0.946825
1.22964
6.32305
16.2092
1.23686
16.4083
17.497
44.5836
17.5348
36.9751
17.733
18.505
17.4655
43.9244
1.72826
1.59361
35.3484
1.486
5.71944
0.777059
0.962055
14.0912
13.6089
0.742409
6.1699
7.30156
11.758
0.731096
0.953885
5.83085
12.6773
0.735441
42.1677
1.46296
1.31396
1.48187
40.806
3.31216
3.18479
3.35587
1.61405
12.7143
1.21254
13.9939
47.2332
1.64605
3.39825
3.60222
3.35319
2.05207
2.39115
2.38866
3.38167
3.43097
3.38093
14.7712
1.24965
1.70145
14.6034
1.69981
3.20644
3.56982
3.33388
1.71
3.02718
2.19164
1.26192
2.77395
2.10761
1.83577
1.26157
17.4332
17.42
1.68577
2.08445
2.3882
2.35898
14.6266
1.2551
1.69983
15.7638
1.69603
1.50875
1.18803
1.92495
3.10986
3.03263
2.41638
4.65596
0.652412
18.8897
0.676124
7.28261
0.625688
14.0023
9.19516
1.24603
1.543
1.17969
12.3835
5.26331
237.038
1.09179
1.49045
7.85283
1.13249
4.55312
0.64425
0.578434
12.6559
0.586962
13.5964
4.49877
39.111
0.812443
18.9592
0.769964
21.1932
0.847538
19.7508
2.26295
1.75473
1.3939
1.36724
1.29853
1.14638
3.18852
1.8545
1.7635
119.923
0.869629
224.892
1.20822
24.4
0.991463
1.85098
1.53718
1.47769
0.895071
1.15806
0.987221
31.492
16.3265
17.883
0.735961
0.72686
0.712661
14.9648
17.2289
17.308
20.4375
0.665843
0.763868
0.692983
16.5262
34.072
1.73081
2.08056
1.62668
3.32709
1.88262
1.92347
2.00543
1.56121
1.59715
16.3623
0.708611
0.68721
13.7096
0.695067
14.6694
15.6214
17.1662
0.80231
0.873486
0.747256
20.4885
43.053
5.27651
0.217777
3.60406
0.221555
4.11146
0.237188
4.4756
26.2925
2.17438
22.828
1.4089
18.633
210.115
2.25067
6.0097
14.0742
0.322897
0.325102
0.289118
8.24552
12.3597
31.5371
4.24711
2.68469
15.7519
2.78037
5.18737
0.233696
4.85833
0.287331
4.04624
0.258526
8.98242
23.1333
10.2375
1.43084
2.34689
16.5943
15.6333
2.3974
6.12291
0.236504
0.295072
7.07809
0.262086
4.33814
11.1676
4.44937
3.62359
0.198181
0.215403
0.212044
3.57823
4.62531
3.98498
4.18867
0.209763
0.195983
3.78064
0.197433
4.49588
14.6795
2.48912
1.41802
8.49915
13.672
9.15465
2.39591
14.9305
4.14917
2.67763
109.482
16.0304
2.70433
20.3189
15.0551
9.90733
1.38722
2.33821
9.45646
15.7912
2.36035
4.25261
0.197325
0.211993
2.11692
3.90889
0.207381
2.25458
4.24226
0.214386
0.209112
7.81306
0.201172
4.51803
5.3741
7.7609
0.0166625
0.0195232
0.0180548
2.67177
0.01546
7.78851
9.02755
0.0233417
0.0220657
0.0192325
9.05134
0.0203037
9.0482
0.0166288
2.66376
7.90309
0.0150211
0.014331
0.0175023
7.78255
8.59223
0.0228512
0.0210916
0.0183345
9.05347
0.0199672
9.27414
0.0140641
8.63287
1.62653
0.00892438
0.0119907
8.76729
0.0104655
0.0157533
7.95914
0.0147897
2.47951
0.01344
0.0172427
8.84576
0.0272378
0.0358062
0.0319005
9.18675
0.0239431
0.0364647
0.0367421
0.0331071
0.029975
0.0303898
8.97541
0.0211252
0.0228844
0.0273463
0.0372156
0.0344134
0.0261603
0.0295808
0.0199673
7.15774
0.0181027
0.0164065
0.0209423
0.0240161
0.0209833
7.53565
0.0193093
0.0269591
7.86427
0.00746265
0.009564
0.00858915
8.55937
0.00685329
8.55493
0.00477425
8.54075
0.00433569
1.3822
0.00480497
0.00435544
8.24396
0.00756808
8.13683
0.00546789
1.39498
0.00661146
0.00615568
8.15015
7.06739
0.00547325
0.0079041
0.00722907
8.37011
0.00521669
7.84976
0.00651476
8.01728
0.00443922
1.74018
0.00580182
0.00485148
7.78563
0.0233384
0.0239127
0.020134
0.0201008
0.0217854
0.0688986
4.78052
0.0805831
0.0221523
0.0209462
0.0734403
5.33273
0.0763831
0.0856285
0.0222018
0.0206646
0.0192866
0.0197656
0.0612934
0.0670237
2.78791
0.053289
0.0780228
6.24426
0.00767543
0.00705246
0.00992579
11.2581
0.010585
7.9726
5.90146
0.00932263
0.00949292
0.0116264
11.7596
0.0124708
8.9035
0.05773
0.0643737
0.0550202
34.221
0.0491392
0.0577694
0.0573968
0.0485316
19.9827
11.6601
0.0489806
4.64073
7.68532
7.10877
5.60801
7.24962
6.57469
9.7673
7.90313
8.20804
97.0351
341.766
53.8595
40.0195
11.6385
23.9459
49.7217
22.6112
157.38
28.5371
9.45688
8.23473
11.95
19.9832
44.6598
36.1807
8.83445
31.8195
26.2246
30.9528
399.687
60.6834
41.4695
4.19909
1.00423
0.99574
4.10542
8.25953
1.00782
4.12053
4.31663
0.941241
1.07146
4.82474
4.49005
1.05087
4.39023
16.8929
7.95684
40.8544
10.5103
4.43093
42.2328
1.20789
1.05855
11.343
6.10416
1.08821
24.5846
36.8392
49.1696
14.7491
22.7085
42.5188
33.2935
12.814
2.64812
3.57607
152.659
3.34746
3.43822
93.3684
2.4908
41.5661
3.78954
359.118
19.4844
2.28712
1.72569
53.7313
32.7343
3.53356
164.815
20.4766
1.4172
1.27544
6.23929
21.5468
1.37933
13.0445
36.549
3.61124
3.35558
83.998
2.19998
27.1625
13.8616
1.49697
1.60985
33.7224
42.0608
1.5233
44.0827
92.0077
101.198
45.0183
9.20043
1.1097
1.13766
4.64096
4.65366
1.1089
4.54339
37.4298
1.58519
47.3438
1.70241
30.7907
15.3782
1.67233
65.7514
36.5905
454.508
24.6351
185.32
23.6731
12.228
1.24428
1.53939
6.78795
22.8517
1.42429
52.0524
55.6802
35.9964
18.7876
3.99037
8.27794
4.03469
3.54282
4.23828
3.54638
90.7464
4.50969
4.73322
3.8104
2.79773
3.49061
3.91167
4.15481
4.75607
140.118
4.22243
4.48012
9.13467
5.9847
6.03764
6.22715
33.6466
29.9561
20.6524
13.874
2.93671
0.686409
2.09535
0.449121
1.36647
3.19287
0.607157
2.21978
0.696926
1.52598
0.474309
1.38901
3.58691
0.571973
21.5275
11.2319
6.36694
14.1798
11.6308
7.15091
6.28423
44.5793
5.90626
6.82394
7.40878
5.84016
1.13782
0.400852
1.2627
0.418495
1.12167
1.12383
0.422699
5.6538
5.7092
6.28213
5.6441
5.7437
8.29814
5.8961
6.36733
5.67079
2.77914
6.54889
5.76341
4.10107
6.11228
3.60075
6.40968
3.68148
3.83675
7.44852
4.17008
5.88877
6.53763
6.62593
6.47497
3.41792
4.43673
4.17444
4.45382
1.26441
1.27896
16.0524
10.6928
1.31008
1.38076
20.757
0.804872
0.821268
4.24794
4.04767
6.30407
0.78063
0.837189
1.064
14.5419
1.24096
5.18624
1.33886
10.6198
0.833706
0.869168
33.3116
0.854627
3.89923
1.10673
7.7521
0.831417
2.03748
35.9647
33.9525
1.14078
77.5024
1.23522
1.16748
3.25087
3.02001
3.06956
3.16333
3.51599
41.059
2.71703
343.81
2.03872
3.16069
3.52799
35.7205
2.85842
135.916
1.47969
3.45115
53.1123
382.875
46.1491
0.974291
33.523
1.10395
20.2192
1.14187
0.988232
28.8467
0.915189
0.889339
32.4469
26.5849
30.3568
0.88544
0.949225
0.880565
36.0452
1.1917
32.8604
1.01131
30.9441
0.90189
1.04826
18.6364
1.28041
23.5406
1.23531
28.0885
1.10148
1.35593
31.3957
1.28824
12.8229
1.46266
1.19697
20.1914
1.50921
1.51004
22.728
11.2758
17.7121
1.43233
1.40465
1.34067
32.9728
1.31148
27.4587
1.22049
22.812
1.26537
1.45442
48.2014
1.00367
9.07309
1.42153
15.2395
1.17987
77.2358
32.2755
27.8439
38.6202
35.1701
49.4648
139.084
27.9557
42.1818
0.441151
0.643981
1.55264
1.26337
0.533904
0.487513
1.10537
0.431321
1.17002
0.437016
1.03897
0.479249
1.03225
0.446889
0.448768
1.1488
0.455038
1.20016
0.479701
1.13138
0.472992
0.679291
2.78465
3.11845
0.779503
2.57839
0.751657
0.769209
0.579709
0.500226
3.73544
2.99838
2.66357
0.558053
0.544702
0.646895
2.47094
3.67384
0.630188
2.72669
0.680238
0.58355
0.638281
2.90766
2.8802
0.659765
2.459
0.732274
0.610843
19.9786
18.9572
15.1209
23.5739
12.9776
17.9342
22.69
23.8269
18.4976
10.5442
9.60364
14.4526
14.0302
6.15742
10.9479
31.9744
5.27486
8.81122
15.6125
10.8398
20.2433
5.54039
5.13571
7.18017
0.779809
3.08257
0.8126
3.6325
0.738358
0.789205
3.25734
0.734922
0.715841
2.60759
3.13397
2.80114
0.717732
0.754242
0.765593
2.66688
0.67256
2.59226
0.726001
2.79518
0.706687
0.747945
3.10784
0.548582
3.46783
0.660637
3.05828
0.71868
0.626484
3.62376
0.736574
1.63904
0.527924
0.798952
2.88384
0.512754
0.457756
3.03439
1.17617
1.72775
0.651622
0.456134
0.76302
3.46501
0.756107
3.76335
0.805096
3.86374
0.785378
0.464536
1.17968
0.446836
1.12775
0.477838
1.29524
0.453395
7.89705
5.77017
5.09148
4.97164
5.17128
5.008
6.55853
4.90768
5.03953
5.42079
5.21659
5.04199
4.41267
1.89657
5.48946
3.81145
1.98842
4.31774
4.18104
3.90027
4.9552
1.54091
1.62708
4.48764
5.55536
1.40837
2.12277
5.89912
1.83012
1.91997
4.87636
5.2936
2.75692
1.43033
1.79981
1.685
1.43896
1.45349
1.4229
1.81181
2.24083
1.57403
1.32604
1.63064
1.44031
1.5275
2.14134
1.54004
2.66412
207.425
1.99502
2.50697
26.7401
234.233
2.30194
1.88784
2.66614
39.4643
2.25024
2.04249
2.30532
209.807
0.887455
0.957379
21.5797
2.19654
23.9924
25.1173
49.1327
2.8457
83.7778
1.05859
2.46008
24.4712
36.3113
2.41901
0.999954
1.71411
27.8011
89.37
2.62693
2.3328
2.97755
29.5625
0.706111
0.667261
24.4229
0.96599
23.9631
25.8166
22.5615
46.9239
0.777562
0.733749
0.62545
23.6817
23.6548
22.8573
22.6858
0.614103
0.597931
0.614136
22.4968
23.4382
22.4033
0.617764
0.59759
21.5789
0.601566
22.7425
21.9737
22.9675
0.641959
0.594428
24.2224
0.616021
23.5784
23.6815
16.4511
0.507881
16.9454
0.574426
17.3493
0.506809
15.7707
15.8597
13.6599
0.430732
0.662172
0.471256
16.7294
10.6821
41.2002
16.697
0.447292
17.7252
0.408145
17.4479
0.448827
17.2331
15.3932
0.527069
0.662617
7.30528
0.509578
14.2321
9.22721
17.4704
0.632355
17.0613
0.704309
17.6004
0.68439
16.6307
17.3223
16.547
0.69578
0.767942
0.710903
18.3253
15.266
17.7221
0.613387
18.3991
0.656577
17.7897
0.6672
18.6148
17.05
0.760468
0.788446
13.7835
0.73063
16.1232
14.9275
15.4468
16.9758
0.644695
0.714426
0.714498
15.883
16.4549
14.5804
9.85531
0.698188
0.871277
0.77597
11.351
11.8501
50.5492
15.0255
0.575477
0.590195
7.1944
0.668177
14.5353
10.0527
14.9072
0.774561
0.876602
13.4489
0.792711
15.9231
12.2384
1.48289
0.171967
2.35519
0.184946
2.47535
0.187018
2.29826
15.6679
14.8475
15.5197
14.7961
1.39626
1.27192
0.170494
0.204539
0.189979
1.24322
1.41483
16.0513
16.4746
16.5576
15.9968
1.38645
0.159601
1.49017
0.159453
1.40979
0.17495
1.44482
16.036
16.6893
15.8672
16.5683
1.47693
0.204163
0.216162
1.476
0.202233
1.48341
1.47215
2.2452
0.181701
2.3737
0.195507
2.42871
0.191187
2.19802
17.5506
17.8122
17.2077
18.2126
2.14757
1.76966
0.193803
0.209541
0.19779
2.3037
1.63924
17.4381
16.6947
17.1078
17.1063
2.24797
0.178215
2.60192
0.18551
2.42934
0.187572
2.40927
17.4448
16.9026
17.1294
17.1393
2.14274
0.2058
0.212471
1.61008
0.201245
2.09993
1.62641
2.07689
2.31579
0.195275
0.204224
0.205592
2.24738
2.12931
2.01558
1.55036
0.226619
0.236699
0.223362
2.00274
1.55664
16.7819
16.537
16.6294
16.4782
16.7853
16.639
17.0497
16.2588
16.8503
16.8566
16.7074
17.0827
2.10672
0.199075
0.214555
1.48223
0.210906
2.282
2.1042
1.97804
0.214983
0.226942
1.51769
0.215997
2.02625
1.48687
0.836163
0.162789
1.08484
0.173266
0.966959
0.150277
0.962165
7.08082
6.54131
11.7569
3.84551
0.623435
0.508231
0.10875
0.120837
0.124129
0.535333
0.580385
6.23388
6.70692
12.9314
4.14814
0.716914
0.142474
0.724463
0.113566
0.8397
0.130066
0.610516
7.87718
14.5262
13.3677
13.8062
0.735676
0.168109
0.140074
0.801927
0.144208
0.868942
0.684496
1.28353
0.221336
1.25412
0.232022
1.27672
0.23403
1.2647
14.5643
15.2685
14.8815
14.9693
1.28445
1.22681
0.242128
0.259468
0.245761
1.25821
1.24872
14.1947
12.6492
13.7685
13.1953
1.2922
0.222196
1.24945
0.230413
1.28168
0.234091
1.26216
14.4187
14.481
14.776
14.0303
1.27142
0.244665
0.259536
1.21732
0.245918
1.25426
1.23273
1.14018
1.16052
0.197818
0.231448
0.225877
1.0702
1.20113
1.20047
1.34609
0.260395
0.28443
0.255827
1.24627
1.26727
13.369
8.84818
13.5685
12.4419
13.3089
12.8561
13.8538
12.1536
13.5907
14.4833
13.9956
14.0879
1.11521
0.194716
0.224468
0.951076
0.22522
0.997013
1.10579
1.18507
0.250728
0.272606
1.2394
0.249112
1.22647
1.21706
0.186097
0.0358317
0.177196
0.0360852
0.183421
0.0362177
0.17987
1.79903
1.81614
1.8081
1.80169
1.78646
1.66941
1.6817
1.7568
0.190147
0.0359918
0.191901
0.0365797
0.187877
0.19388
0.0363793
1.78525
1.6708
1.78939
1.674
0.187457
0.036287
0.0364329
0.180499
0.0364525
0.181497
0.18603
0.175672
0.0367781
0.177149
0.0377085
0.176416
0.0372857
0.177889
1.69795
1.77694
1.74603
1.72736
0.174958
0.169902
0.0388685
0.0395937
0.0387719
0.174729
0.169248
1.6471
1.44626
1.63096
1.43135
0.178019
0.0373075
0.177214
0.0378303
0.178547
0.0379736
0.17715
1.68463
1.687
1.73195
1.66029
0.172551
0.038582
0.0385446
0.173918
0.03791
0.176979
0.16681
0.17301
0.173344
0.0361967
0.0365228
0.0366212
0.174113
0.173205
0.170629
0.164385
0.036963
0.0378595
0.0371685
0.167227
0.167479
1.57916
1.61896
1.63109
1.51998
1.55724
1.41321
1.6022
1.37319
1.58674
1.66328
1.62805
1.6327
0.172012
0.0362779
0.0364111
0.173254
0.036579
0.17464
0.168802
0.171689
0.0372054
0.0379851
0.168376
0.0372657
0.171899
0.168323
1.22879
0.97954
1.33622
0.829943
1.27799
1.35104
1.42305
1.16174
1.30889
1.47923
1.39407
1.43886
1.41036
1.55445
1.50728
1.44266
0.166234
0.158809
0.0379373
0.0383267
0.0382421
0.166307
0.158578
1.34216
1.2128
1.39178
1.11742
1.39234
1.48959
1.48366
1.42876
1.37705
1.36747
1.42567
1.34222
1.34545
1.2073
1.38291
1.17172
1.38159
1.47489
1.43764
1.41852
0.385352
0.393723
0.396912
0.384785
0.352252
0.335547
0.341976
0.357926
0.371797
0.426967
0.387334
0.368595
0.881915
0.711816
0.59927
0.934945
0.915262
0.956866
0.84144
0.930789
0.854563
0.486749
0.569056
0.753182
0.509083
0.353037
0.364169
0.463782
0.650441
0.95934
0.815381
0.83267
0.570216
0.474645
0.396458
0.720545
0.00412691
0.00401172
0.00136263
0.0639707
0.0804767
0.00131238
0.00128574
0.00141487
0.0012897
0.0631302
0.00128415
0.0610023
0.00759665
0.00750466
0.00654017
0.0366003
0.00911252
0.029466
165.242
26.0307
3.5002
85.3901
5.61422
9.37876
16.7732
1.90353
7.16593
188.351
2.94628
7.98104
28.6159
7.96437
184.186
213.528
10.3931
26.239
7.82338
9.47804
176.889
4.05428
63.3929
21.8386
33.6965
13.2637
19.9197
2.67424
5.02277
26.2497
8.02491
6.80932
7.2
2.90753
128.27
23.5307
75.6888
29.0111
77.5884
30.0852
9.3018
12.2072
82.1419
24.0444
5.28599
2.27831
7.64821
6.26126
5.44169
35.8265
790.906
148.669
17.6378
13.3234
20.1138
25.5074
39.4309
41.191
20.8937
6.84706
21.445
15.6763
20.9502
12.43
19.2494
6.58097
1032.75
12.3333
20.2856
24.085
26.8723
67.2036
19.2246
101.304
18.8136
39.607
42.4929
18.4646
7.21323
5.55485
68.997
83.0414
33.8917
133.244
298.266
46.4657
87.4698
10.6479
11.9436
35.5778
218.934
20.8536
17.1594
152.588
8.5975
10.1259
3.94464
10.4757
134.173
9.78555
38.6693
34.7375
141.582
14.9326
16.4408
169.673
12.933
5.2302
18.2868
11.3221
404.861
15.0688
3.52211
5.96615
8.86736
110.331
3.25164
7.88489
9.8431
3.62948
118.446
9.90612
11.5573
8.57554
9.75629
4.12516
26.5847
111.558
16.2831
37.2965
304.716
4.8209
98.2341
9.41744
49.7445
3.4548
10.3037
7.59155
24.9379
22.1561
80.8945
3.88161
2.8273
7.33081
6.13123
168.277
16.3487
203.421
20.7933
8.41836
9.7361
42.9359
2.77153
260.906
4.68251
5.0309
15.5156
35.0329
309.04
8.54941
47.9407
9.62707
4.98685
21.4032
14.1306
33.1448
6.15589
126.412
79.7524
8.92368
13.6369
6.65225
26.2834
13.3865
20.7177
3.81917
1.41933
2.29364
2.36392
3.41458
7.86238
24.7674
4.03975
7.52847
1.70352
90.7331
3.0833
4.60255
62.301
9.39768
4.22309
4.52692
23.9288
3.92612
2.84528
7.19674
134.34
30.8245
2.30614
5.283
5.90271
6.83847
21.7736
57.2518
3.86027
11.5151
3.22885
5.07171
7.43379
1.49601
33.9322
1.941
2.30233
7.59469
24.7946
88.7554
11.0849
12.7245
8.07469
132.697
18.7758
4.22264
217.571
7.2737
4.56748
9.06246
39.6591
58.8655
14.9861
7.92614
31.6997
21.7795
55.7486
9.75606
21.0501
5.48365
260.81
5.11246
8.2739
46.3302
45.9959
187.736
26.6535
8.54901
10.0686
99.7036
29.4615
7.39495
4.36971
2.60371
4.18382
32.2864
7.23679
16.5702
249.32
17.6409
207.452
32.2642
13.4453
10.8934
229.625
26.8178
4.01992
2.45245
6.28622
3.85465
60.656
6.88708
4.4564
68.836
3.33165
9.1432
2.67316
5.49196
35.2831
9.64462
15.1877
158.586
198.231
14.1592
8.04252
10.0535
693.518
15.8526
12.8171
201.839
15.0054
4.41273
8.92001
2.36193
29.6528
2.67291
34.9249
3.9038
61.0188
13.3467
8.55367
9.04062
94.3575
21.2549
5.85264
4.99159
2.13663
5.15843
20.8744
5.86243
191.308
16.7966
222.624
16.4279
24.6522
13.3552
8.37463
9.33109
20.9618
50.3188
3.87307
2.20431
6.15336
3.62184
57.7545
6.03242
5.79023
4.04867
1.6516
2.46878
3.80464
6.25877
2.24866
17.0701
4.24927
5.79655
9.50385
25.5495
52.8208
7.57412
10.0751
1.97446
3.64617
2.63084
6.11363
35.6002
18.819
9.37758
6.72111
27.9909
9.67039
3.63513
84.2102
4.59222
15.9844
3.22905
33.6986
4.7893
13.2236
2.38027
53.1388
3.58489
2.98262
274.746
4.69591
25.7406
14.7108
7.43357
8.67141
7.0596
285.029
5.96285
12.6268
3.43618
19.0554
4.22997
5.5847
34.459
2.78847
2.81853
5.35266
2.10381
41.1782
3.1102
1.97765
21.8785
4.62107
6.89421
112.192
7.85506
5.16033
42.5595
10.5021
2.5153
4.81679
3.23523
7.76281
6.18279
3.49552
70.6472
260.098
46.8578
24.8918
33.6604
7.65574
11.091
6.79108
130.739
26.6444
2.99998
9.21898
4.83556
6.6337
4.29882
48.9027
115.719
10.2583
31.7207
19.5096
28.2728
4.86257
129.025
8.27814
20.3212
5.23962
2.94242
6.26009
131.546
34.2562
13.0786
5.81257
3.18301
2.64785
15.3421
84.4462
4.05378
11.2463
3.55772
4.15578
2.1236
3.34629
7.89237
1.45491
6.97259
1.41929
2.34184
49.2866
6.97647
37.1578
50.1031
70.9972
26.6432
19.0002
6.75142
15.2617
27.9701
40.4731
8.42241
3.88586
3.96756
39.5562
149.196
165.391
8.09899
3.26753
2.64086
1.42464
2.5707
8.35622
3.21949
28.9179
11.3313
28.1236
11.5045
40.6288
8.61759
4.17013
4.04316
43.2539
148.683
144.063
2.17597
2.84387
18.6412
7.67757
8.232
2.84863
2.07044
2.24098
8.22665
3.54182
21.7238
2.42203
7.36082
3.23576
38.1173
7.05148
3.8068
3.69631
39.345
134.543
125.612
26.9031
11.1918
27.8641
10.9958
136.668
142.741
37.4103
7.21343
3.22461
215.309
3.46257
35.262
1.11048
4.8821
3.65959
0.587398
0.818559
5.58707
0.781786
1.7637
30.8761
19.1121
3.22389
2.33227
12.8929
2.48871
1.38351
1.17443
3.87413
6.57795
1.01584
1.63165
5.87695
1.09933
3.39019
1.66142
4.178
1.44738
1.32008
2.89484
3.71978
141.446
17.726
5.00809
3.38796
24.252
5.69929
2.79113
37.1833
2.32621
6.5331
1.9826
3.40523
25.6857
2.58803
1.61778
7.74197
5.43667
2.29734
1.81218
18.6731
0.998776
1.65406
5.89812
3.16631
3.01792
1.57487
1.03552
7.2405
36.6998
5.70995
7.05915
35.2043
25.184
6.05211
10.4441
11.3319
35.2707
10.93
5.60158
5.96226
32.9961
6.73579
34.686
12.1961
3.43061
18.7467
2.04464
20.7652
2.95289
6.84505
20.6901
22.392
32.3565
4.98249
31.1245
5.1476
15.3603
3.6306
29.311
3.57607
24.6566
3.47739
16.0532
20.3196
17.7571
6.36983
18.1899
2.85638
1.93593
1.91312
17.5952
6.45517
16.8426
16.1463
29.9391
4.88502
30.7324
4.8298
16.9205
17.4606
6.29128
2.83336
1.89197
16.8452
1.90518
17.3971
6.21667
68.1665
4.98969
40.4286
2.55956
121.006
4.22614
34.4732
171.376
7.20154
5.66131
5.8479
139.081
118.476
125.167
519.19
5.17752
8.52149
5.74508
149.734
128.396
42.4147
2.49827
2.90944
33.0228
3.0552
34.1987
37.7713
5.07901
1.76666
10.7375
1.38122
22.3117
1.43607
4.98063
28.4649
132.9
110.307
31.0665
9.97581
5.48897
9.78667
5.53545
5.28942
2.03734
36.8334
1.53484
31.0202
1.51355
5.35592
27.2418
41.6546
74.3933
26.4149
5.23169
10.4467
1.85498
1.33835
1.3751
6.41846
4.7663
10.9699
29.5245
31.9773
9.8825
8.74141
5.38984
9.62862
5.29377
17.3412
40.4276
33.4088
25.8036
4.85387
1.83971
1.24524
6.12829
1.29518
6.3305
4.69618
12.4808
2.01541
5.86734
1.31185
13.3594
1.95443
5.60341
17.8222
113.723
4.31022
1.9596
2.00405
120.597
16.2067
18.198
18.8598
18.1335
2.2265
449.496
4.43667
19.6247
2.0712
123.113
20.1379
18.9683
12.322
1.28482
1.84859
5.39417
1.90855
5.53897
11.2386
2.52979
1.29459
4.67391
0.702325
5.41199
0.77624
2.29423
7.62669
20.2644
16.6137
8.29818
6.22375
3.66542
8.25651
4.09819
3.58678
1.2032
4.2554
0.992302
3.99498
0.945699
3.87762
6.95375
13.1465
16.0179
7.6038
2.13661
4.521
1.10625
0.663846
0.671892
4.4084
2.1585
6.86505
11.8163
12.1049
6.63945
7.42573
338.527
3.33863
7.70695
4.09148
6.87346
12.8633
12.12
7.22909
2.12054
1.08347
0.634128
4.25676
0.649681
4.33366
2.0905
5.46666
1.14339
3.57647
0.964474
7.68289
1.09415
3.58202
38.003
94.4417
8.65868
14.8148
1.7519
1.51574
1.48234
16.2131
7.26257
24.78
8.19147
9.99048
22.3286
9.81448
1.64336
19.5026
1.79916
28.4937
1.58551
16.8435
25.6274
10.6452
31.0492
10.1376
5.16791
0.95679
1.10278
3.29015
1.07645
3.50865
3.66886
5.98574
29.124
28.3452
5.9373
6.31665
60.8711
3.28734
6.11523
3.37543
5.93405
27.0286
28.0921
5.75766
6.87894
19.9621
23.8725
6.63718
3.37563
55.4958
3.18406
5.83492
3.08402
7.27469
26.1939
24.4729
5.50376
2.90401
0.782003
2.92626
0.636628
2.9718
0.758554
2.85088
14.5692
32.7218
15.2289
28.9864
2.65035
6.06131
0.818583
0.708178
0.73338
6.56081
2.56882
11.2637
5.54417
6.03085
9.6153
2.72408
0.794557
7.95777
0.847528
2.82064
0.761133
6.66875
11.4054
6.38016
11.9096
6.10437
2.81946
0.606415
0.688931
2.53358
0.728025
2.76391
2.63137
5.30965
6.64005
4.95606
6.27933
3.31291
27.1456
2.43787
2.72584
3.14895
4.30513
5.0391
6.12258
2.74179
2.33491
4.38789
4.56238
2.2856
2.35176
12.2745
2.21087
2.45949
2.11585
2.39594
4.83328
4.62428
2.51423
1.16754
0.318141
0.809185
0.24635
1.18265
0.313593
0.798116
20.1691
12.4901
20.367
12.1722
2.77672
2.69763
0.582318
0.536994
0.53322
2.51132
2.944
5.73331
3.30331
3.36895
4.46807
2.89464
0.562092
2.60577
0.594086
2.91114
0.556973
2.57688
5.80236
3.46283
5.89995
3.40269
1.12055
0.236383
0.291362
0.803794
0.299352
0.774464
1.02742
1.38007
3.73958
3.51954
1.45655
2.02044
5.23385
0.762019
1.85988
1.21084
1.7654
3.52801
3.55861
1.68213
1.65984
3.49311
3.48608
2.29678
1.8711
4.73294
0.853467
1.98369
0.73861
1.69939
3.58974
3.52269
1.78352
3.08376
17.4235
2.61194
17.3441
0.710058
1.30373
0.354092
0.173962
0.185306
2.02996
0.649633
2.90831
3.13296
3.28146
2.74654
0.77104
0.186739
2.19053
0.388539
0.669584
0.198436
2.26558
3.07441
2.74887
2.50054
3.5521
1.46288
3.35497
3.25686
1.49199
1.40732
3.21067
0.412957
0.424678
1.39215
1.44658
3.13498
3.2283
1.43301
1.3219
1.32568
1.38196
1.29302
1.357
2.90376
0.396099
0.387171
1.36975
1.34613
2.97189
1.49531
1.39894
2.14606
2.21998
2.19744
2.12508
0.438926
0.42702
0.114479
0.106852
0.107087
0.435108
0.437594
2.21276
0.864322
0.877896
2.18578
0.444172
0.111352
0.465157
0.118491
0.452643
0.109235
0.450795
2.2153
0.901883
2.25295
0.881965
0.936617
1.00416
0.82973
0.981036
0.896521
1.43725
0.259069
0.273047
0.858742
0.904521
0.780705
0.80272
0.87636
0.774061
0.682171
0.700094
0.742501
0.759571
1.14587
0.222484
0.215481
0.780459
0.785762
0.725892
0.707059
0.803883
1.78551
1.635
1.82215
1.5949
1.80588
0.455274
0.504997
1.67098
1.82494
0.528253
1.86434
0.514932
0.586359
0.639138
0.612541
0.611929
0.477404
0.564293
11.8794
0.0770898
0.0845743
0.45587
12.6936
0.566064
0.573259
0.593257
0.543996
0.490296
0.466184
0.519049
0.433916
0.41677
0.424063
11.5815
0.0655636
0.0623948
0.425764
11.2686
0.500744
0.542695
0.52997
0.512311
1.49398
1.51463
1.56712
1.43705
0.446594
0.296996
0.318652
0.424252
0.454344
0.339493
0.481198
0.328507
0.384091
8.60243
0.431452
0.421686
0.393332
8.33521
0.0625882
0.687393
1.0647
0.0237418
0.0256196
0.058244
1.15045
0.368608
0.385684
7.78373
0.405015
0.351284
8.18306
0.308887
5.86668
0.314488
0.339072
7.02512
0.280846
0.0488314
0.368569
0.988605
0.0201261
0.0186151
0.0516479
0.920897
0.319053
0.36135
7.46986
0.350243
0.329244
7.14934
0.000972641
0.00131392
0.00101344
0.000831076
0.000723511
0.000947378
0.000755575
0.0532628
0.000696179
0.000989068
0.0604226
0.000678381
0.000812514
0.000749937
0.000900722
0.00105075
0.000892676
0.000802327
0.000820678
0.00836165
0.000599378
0.000602701
0.00118516
0.000869554
0.000662595
0.00908524
0.000783532
0.000619219
0.0388252
0.0318745
0.015066
0.0174986
0.0134828
0.00599252
0.000952806
0.0123198
0.00106683
0.0153001
0.00158799
0.00824064
0.0176608
0.00130259
0.00219176
0.00159949
0.00152103
0.00218317
0.00353075
0.00480913
0.00341866
0.0044157
0.00295026
0.00147844
0.000693888
0.00226698
0.00196005
0.000962939
0.00190609
0.0034023
0.00300122
0.0018394
0.0117588
0.0125726
0.013965
0.0125089
6.29408
0.855176
0.583075
0.253706
0.455144
162.123
0.164647
0.296487
1.05328
0.345566
0.0473613
0.00318118
0.0649358
0.0613108
0.00355573
0.00314846
0.0847762
2.71045
20.9969
0.713936
0.553995
1.81826
0.204081
0.04346
0.0029178
0.0536803
0.050845
0.00277878
0.0250325
0.00276186
83.9434
0.133294
9.49967
0.459354
0.131294
0.271868
0.791271
218.947
2.69374
3.53529
2.49946
1.48141
7.7792
0.765534
1.5204
79.0626
0.746659
0.82307
4.75824
3.45429
1.15807
0.111111
1.1224
0.0875292
5.29267
1.58022
0.125453
56.6189
0.160086
0.19438
0.170715
0.179751
0.176252
0.182069
12.2963
19.8456
0.0985224
1.22324
0.157396
2.62454
0.135955
0.242524
0.345304
0.0277917
0.0435631
0.0308264
0.203529
0.408076
2.35547
14.0735
0.830172
1.67551
1.13418
1.65299
14.1864
10.0213
2.47551
1.44925
4.16523
1.05855
6.83736
0.263192
0.0576918
0.0439386
1.13872
0.0399035
0.431336
0.284463
6.66945
0.314647
0.161317
0.33351
0.386023
0.126864
0.0749241
0.782637
0.232719
0.249562
0.240865
0.272167
0.089547
0.0854515
1.86487
9.3265
0.127459
0.0695931
14.4019
0.667504
0.0685809
9.26836
7.96644
3.76716
0.78294
5.18244
0.661369
0.348257
0.163967
0.0359344
0.0296205
0.0370313
0.29269
0.179817
19.8887
1.45705
0.14226
6.29648
0.0670894
13.8565
0.0698721
0.981408
0.3897
0.0458474
0.246573
0.0335653
0.42565
0.0415933
0.212953
4.36448
0.0994131
4.95676
0.0831506
5.83965
2.64294
0.081272
50.5746
25.6166
26.9175
235.589
8.36703
32.7389
15.3119
204.114
2.50609
0.0752868
1.89357
0.0589863
2.16438
0.0608778
1.43828
0.95585
3.21024
0.0633261
0.0713439
0.0557188
0.792707
2.27761
1.02077
0.244434
0.0407735
0.0444014
0.0467644
0.297337
0.192189
5.55044
0.810449
5.67701
0.823742
1.27863
0.048004
0.0455855
0.275089
0.0437643
0.56931
0.329217
0.701068
0.0723098
0.0522236
1.66203
0.0590587
1.91431
0.330711
1.28465
0.154132
0.00488934
0.480842
0.00466093
0.00374727
0.00399071
0.00538142
0.0667832
0.0822893
0.00189302
0.00163611
0.00166299
0.00178345
0.126109
0.110788
0.352954
0.00305934
0.00265342
0.00311401
0.00262729
0.00465308
0.0534816
0.0460324
0.00152691
0.00148682
0.00158702
0.00146543
0.0792515
0.0191486
0.0905983
0.00198094
0.00175773
0.0019778
0.0017989
0.0961455
0.0207678
0.0861624
0.00204951
0.00216197
0.00221353
0.001936
0.0806038
0.0096191
0.0594677
0.00138885
0.00143888
0.00130348
0.0015203
0.00303116
0.0127398
0.0254739
0.00114157
0.0010915
0.00113673
0.00142703
0.0061326
0.0178076
0.04334
0.00125479
0.00111681
0.00115913
0.00129199
0.00304209
0.0113523
0.0132866
0.00128346
0.00100535
0.0013128
0.000970998
0.0150745
0.00384509
0.0103223
0.00117824
0.00100657
0.00116406
0.00098725
0.001785
0.00250133
0.00285649
0.000928835
0.000813923
0.000823223
0.000898368
0.001424
0.00203026
0.00178786
0.000822908
0.000783176
0.000846726
0.000778435
0.00115335
0.00102882
0.00108191
0.00071787
0.000714405
0.000718323
0.000707604
29.3628
5.4111
9.68373
10.8633
1.54262
1.97193
6.49943
2.66018
5.63435
1.28374
41.1392
6.27063
0.520299
7.90737
1.82904
0.850824
6.14611
0.851866
5.31615
2.39086
0.928201
0.764093
1.96057
0.283496
0.659955
13.7328
0.61391
0.304446
2.8487
1.92849
3.40808
5.41539
6.75859
0.707976
0.339132
0.43158
0.233477
0.295726
1.81642
0.50304
1.82319
15.2346
9.06854
6.03076
0.854573
1.41847
0.980806
0.640472
32.4057
0.421847
2.4423
6.88554
0.852388
5.42942
2.70328
2.85214
1.93032
6.45623
1.13935
3.88866
8.13002
0.614744
0.943293
0.817613
13.2579
2.43426
1.67491
14.6358
5.75148
1.68878
10.6179
17.4664
2.96484
4.83744
0.63847
0.785138
18.5136
0.40882
6.981
0.306204
0.963764
1.21044
5.46428
2.23632
13.8803
0.892824
4.40459
0.547558
1.09279
1.19069
3.13513
0.41941
2.2702
0.736384
11.3108
16.6795
3.2584
1.71642
3.07024
0.385575
0.805907
0.751356
25.2922
0.352074
1.27576
0.871792
0.562369
4.40822
59.7316
2.22705
2.38716
0.832548
1.33756
8.01808
18.1928
3.77019
0.819993
1.14639
30.1225
1.69587
1.5012
30.1053
1.62426
4.05355
6.12586
3.25136
1.06466
0.572669
13.5838
1.04251
3.18955
4.65067
3.40599
0.500652
2.17895
0.703437
1.73494
2.72316
0.672011
0.656075
2.38211
1.71763
12.9181
1.15593
40.8318
0.963373
0.731084
0.355163
21.3975
0.355523
1.332
7.01947
1.15469
2.74291
20.669
0.354321
0.74697
0.489105
2.35493
5.88149
4.38687
12.9571
13.6115
3.99051
1.10729
0.264666
0.378545
1.38908
1.52162
0.290288
1.00506
3.51795
2.41297
1.65893
2.20575
1.09233
1.87499
0.40912
0.309313
1.71713
0.301834
1.08515
3.84326
1.51376
3.95945
1.56703
4.6069
8.65732
13.0973
4.03238
5.04262
0.92898
1.35477
2.64104
0.986569
0.37271
0.204816
0.584681
0.362196
0.442317
1.37408
3.33142
1.41034
0.425732
39.8398
0.599459
1.90184
16.2977
4.47655
1.35907
0.732092
17.1092
11.8509
5.11889
0.329284
5.84441
0.971181
0.573052
0.350824
0.78248
0.53279
0.877027
1.74966
3.40803
0.735691
1.16018
2.27715
0.598104
1.49033
1.22377
0.526086
1.76224
1.65865
0.755159
0.489165
11.9157
4.50606
0.477855
0.853518
14.2718
1.06786
1.35657
18.531
1.38547
16.2618
0.971751
1.06386
14.0154
1.63556
1.48342
1.05465
14.9562
0.677138
4.531
0.460404
12.0183
0.470191
14.8296
0.601216
11.1751
4.96393
15.5805
4.45139
2.35132
5.24244
4.88262
2.15957
0.756922
14.3942
1.49934
5.2178
45.5097
1.7175
2.0563
2.80687
0.789578
1.30285
1.69513
5.39958
3.93349
2.70293
4.66193
15.8388
5.76457
4.7078
1.14992
2.25068
5.20097
5.62681
0.701232
2.12011
11.6
0.509264
0.295915
0.425178
0.921398
0.311442
0.747833
0.477431
0.666621
0.295844
0.412752
4.45269
0.263757
1.49546
0.647507
1.07139
3.70676
1.91297
1.60832
14.8426
1.16002
6.65021
17.7842
5.35083
13.2395
0.563409
0.696939
0.403495
4.92865
0.763515
1.05824
6.89677
1.35963
0.908684
1.43865
30.9447
3.499
15.8967
2.43651
0.397159
0.938841
0.716891
1.42909
18.2432
0.634138
55.5252
1.45335
5.0816
1.15505
0.765704
2.95692
0.497933
7.40929
0.831246
0.372593
0.318187
4.79688
0.605388
1.01975
1.99096
6.14062
1.88876
0.971433
7.33853
0.551853
0.33707
0.781113
1.70296
0.345031
0.534906
4.156
1.41682
9.62249
1.03503
1.37093
14.6043
1.96596
2.14018
2.2669
2.83528
16.763
1.7789
4.12154
25.3615
9.01697
1.3248
1.86107
1.78573
0.942928
7.57021
5.55404
1.06838
1.21685
19.4258
1.29214
16.0473
1.20815
0.350166
5.0048
0.816126
0.755053
0.444795
16.5835
0.794554
1.23236
1.70955
1.09531
1.45422
3.67791
9.84072
0.557134
0.843925
6.11436
14.6219
0.542717
31.6442
2.01236
8.37989
35.9499
23.688
11.5908
73.9034
46.8536
38.4072
6.00923
1.74078
0.388563
0.408023
0.417347
1.83606
4.07964
1.79086
9.45382
20.078
5.25375
0.406167
1.70948
0.394836
3.67351
0.422716
1.85147
7.04832
0.782339
18.1517
0.478178
15.8892
0.50032
6.16039
0.872867
1.96535
0.351757
0.476578
0.325623
1.03728
1.62773
1.3048
1.02326
5.81719
1.7596
0.863035
1.76005
4.40873
1.2273
7.84581
1.55105
0.659558
6.51781
0.808023
1.19818
0.692256
0.280832
0.425026
1.03599
0.29306
0.601391
1.22585
0.863934
9.66431
0.403286
2.0581
0.665466
0.48491
22.2027
0.97066
5.65545
1.10166
3.99209
0.850591
0.544958
2.28732
0.486111
0.953676
41.1987
1.52903
9.90342
0.87889
0.927703
1.46103
2.06907
1.49324
1.55427
2.07081
2.04093
1.55001
1.952
1.56862
4.09126
6.106
6.0436
7.75556
3.37538
0.954584
1.12796
0.27284
0.224777
1.11292
0.231362
0.919983
4.27461
1.72163
1.60687
4.29601
0.978922
0.234931
1.0742
0.27175
1.11818
0.968218
0.235643
4.11622
1.52552
7.49627
3.47766
1.5892
0.918083
36.5312
2.60075
2.39323
0.975918
2.5297
2.14526
0.930955
34.1028
2.61743
2.05821
0.918233
2.64312
2.10352
4.08733
3.30504
56.1652
1.53649
42.28
3.09762
28.5019
1.14968
21.296
0.511732
1.113
0.465682
1.30899
3.9418
0.848489
60.5564
0.923843
0.544861
8.39006
0.378079
1.43432
3.04506
6.82323
6.47111
22.9737
21.5184
1.18247
17.207
15.1366
8.46763
3.40841
4.07925
1.25835
2.75491
0.997599
7.43858
3.85913
1.55317
6.13367
1.16956
7.95158
2.82208
22.573
1.60143
0.491237
0.63109
1.51035
3.88265
0.764399
5.80927
1.15302
2.09473
10.7644
22.5528
73.8018
6.17571
1.68009
7.11525
11.4688
17.3529
33.1075
3.52464
13.2683
23.1974
19.8437
3.57843
0.903684
5.95042
2.29424
1.21847
2.07987
24.3049
0.655624
1.67372
1.79678
0.699868
35.2405
7.45577
12.2428
4.25445
1.32765
7.11544
1.38439
4.70782
2.68318
0.905857
1.73341
0.74233
3.78815
45.4467
0.429148
1.42914
1.18883
8.19074
0.518103
0.921008
1.08334
0.432945
0.706541
1.00418
3.80795
0.354835
0.908671
1.27435
20.7857
11.3727
7.76471
3.44048
32.4846
12.1107
2.51825
5.62225
1.34308
3.95873
10.9165
1.35945
8.33806
1.72509
25.8539
5.59111
2.32579
6.17055
1.21836
3.69961
4.93806
1.32734
19.1238
21.1536
34.2472
22.4756
159.878
60.4218
10.5712
0.603875
1.75817
1.04788
2.74913
1.36141
21.7949
4.17584
2.55239
4.78497
8.6632
1.63897
59.4228
2.40253
92.585
1.04864
2.05492
34.619
1.91632
9.58123
169.009
2.09224
3.81948
27.8986
2.405
23.3397
207.129
2.95549
3.83295
3.71867
17.0383
1.26167
7.17183
7.35516
1.65233
27.4099
2.43187
1.65634
9.20557
8.60006
0.374815
1.20355
1.07765
0.923536
0.796353
17.4723
55.9908
3.70696
1.93391
25.4965
21.9894
7.73225
3.41661
2.17925
56.5815
9.08548
4.2232
13.54
85.5946
6.33376
24.6389
33.0588
56.9091
4.60172
28.8064
34.487
19.0247
11.1832
3.80979
21.8879
28.8723
14.476
109.501
1.92859
12.8248
6.25828
6.04437
2.03837
7.41267
1.97983
5.90792
6.75844
6.15556
7.16211
1.93033
12.346
13.4034
6.07864
5.94374
4.81169
1.46156
6.22057
3.89978
5.5825
5.88843
4.1666
1.53355
4.0747
5.76525
16.2623
13.3604
1.75429
10.1875
4.85417
12.6509
1.46728
5.42184
1.72423
17.0822
7.86191
15.3383
5.33412
2.17869
38.6083
20.2148
32.9391
6.0812
1.73852
6.51255
10.6817
7.43804
12.7357
15.7627
2.2666
11.5563
8.21322
14.1709
21.0118
4.91525
17.834
7.52779
94.8529
3.58006
12.1664
77.3569
5.7274
76.5551
25.7031
21.0912
5.84498
16.9607
18.3008
54.5283
14.4851
210.726
3.27948
29.8883
53.9215
3.01561
56.416
4.35109
10.7981
59.1102
12.3956
3.59032
1.13848
0.588467
2.14581
45.8394
0.54424
25.7089
1.21963
1.5538
15.3217
0.601341
2.12488
0.680538
1.31499
26.5004
1.69351
12.4212
12.34
1.77523
26.2126
24.4029
7.79746
7.93719
4.74257
1.61778
5.49018
4.69265
6.98391
7.51864
4.57751
1.6014
4.59281
7.29094
15.4105
23.9811
2.8803
10.6523
54.0592
29.1384
3.46411
9.3544
0.900645
0.412896
1.57885
4.0074
0.440022
0.830374
4.77285
1.08507
14.7299
1.30679
0.595638
0.51299
11.4714
1.28659
2.23042
18.1649
7.22146
2.02205
27.763
9.04278
6.39914
6.37034
12.0805
20.5764
4.7965
214.16
5.82761
1.17809
233.474
1.16517
12.4822
13.0963
0.873934
12.2853
11.88
223.947
7.24621
26.9612
2.8934
2.72
0.529945
0.844844
1.95742
19.176
0.72631
21.1461
2.95563
4.71184
4.52641
19.0331
19.695
8.39493
161.223
8.37087
1.97745
1.68539
20.7653
15.6485
1.22294
18.5069
25.0862
328.064
12.0398
37.5913
4.00737
2.70705
0.660564
1.43987
2.32482
7.64389
1.02864
37.7229
4.634
6.24929
9.12329
13.8551
5.19829
2.30784
32.4691
4.97268
6.35398
2.77494
54.7515
4.92
4.07669
1.22313
2.01297
13.754
15.6668
3.12395
1.31396
0.700481
7.43025
0.593369
1.43699
39.1944
1.8
3.37397
19.6955
2.83556
55.3876
1.66843
0.98053
0.513045
4.86515
14.8645
0.549552
27.8213
0.785684
0.885285
72.5567
2.38982
10.8083
2.09265
10.4143
1.15593
0.672727
0.44818
11.0748
1.66229
2.9946
0.725469
0.397493
21.9286
21.6231
5.41786
28.8325
13.6704
84.1066
4.98005
5.21244
1.5717
3.105
15.0967
0.93022
70.4757
2.97867
0.412664
2.31625
1.07279
4.97274
1.28175
0.739968
18.6796
3.53484
8.35122
5.53645
3.31605
0.56567
5.72477
1.59723
1.88182
0.809377
18.1955
0.53499
1.36273
3.12634
2.84005
0.790039
1.71151
0.711242
2.52946
6.16736
4.05434
17.0922
4.78322
0.922328
2.72209
2.56619
0.460494
3.99109
0.647237
0.65575
1.24382
1.93321
264.754
5.14052
20.8235
3.13713
1.0533
0.695807
42.6673
3.09831
1.35427
0.713616
3.04479
1.29234
1.11787
50.3317
4.26966
2.04108
1.10082
4.17628
2.10949
170.51
1.84066
9.33607
4.31004
40.1287
4.18999
7.09756
52.9869
8.58996
2.46554
3.76399
7.46697
2.30063
0.694026
0.239385
0.310522
1.37841
1.28192
0.219278
0.850957
2.3459
2.22938
103.285
2.31777
1.75384
2.46972
5.87594
9.35516
3.44603
2.48734
63.2374
1.48076
1.96147
1.56356
13.8155
4.96471
8.32922
3.23431
2.45896
0.822069
0.694646
18.7512
3.63317
0.561958
9.47627
14.6886
11.4416
60.1558
6.05785
1.71102
1.09839
0.442837
0.253259
1.8264
0.399381
0.842409
15.5658
22.2805
103.489
10.3753
2.3853
3.24916
4.0739
2.03907
12.6878
38.8764
2.24046
3.06352
151.963
2.87416
3.31907
1.40211
0.744113
15.5592
18.0564
52.6591
0.792851
1.02874
1.798
8.06795
1.19269
68.656
1.85153
0.922123
1.9763
28.2623
2.59381
94.46
3.57217
1.7274
1.13632
9.06486
2.56626
9.11644
2.54455
17.598
32.106
2.242
35.1285
3.13447
1.12486
4.24185
1.78461
6.61161
2.50746
65.7477
4.62594
33.92
2.8426
1.33322
0.806012
0.457264
5.99224
0.483985
1.07888
8.5265
2.28165
10.1575
1.0799
1.02802
2.35607
4.59659
8.1771
1.42745
0.899482
0.746692
20.9781
0.531896
2.07268
8.69286
4.0758
29.9533
2.55825
0.80601
1.6868
3.36708
12.9436
0.931443
2.29411
1.43367
0.612266
1.71596
1.00492
11.1407
0.606469
1.75443
1.02312
0.928829
0.590975
0.358944
2.41168
2.04742
0.359634
1.0848
1.60712
8.42745
1.09368
9.34491
1.31091
3.67726
0.921816
0.662897
2.0133
1.67486
27.9852
11.7223
2.60725
0.449216
0.648383
1.21776
3.08751
0.405207
1.34289
0.744732
0.485768
1.49321
6.76235
0.893373
1.17569
0.527297
0.819691
1.5884
11.7531
2.95986
27.4133
3.29619
11.2877
7.19272
1.8748
6.64871
28.2627
3.60364
5.57425
6.31621
17.3129
4.51756
16.1117
53.0853
9.17313
14.2887
25.7003
88.6974
7.86629
3.51392
6.60599
13.5173
0.511713
1.70115
2.29926
0.379578
0.410726
8.00511
0.493168
0.703967
1.43591
18.0892
48.6841
0.879092
1.39077
6.3129
0.54253
2.12292
0.455521
9.60975
0.453475
0.562691
8.68809
0.593853
5.8682
38.3794
0.856318
1.10799
11.2826
0.555887
11.9618
2.63538
4.34409
5.19028
2.14966
3.61447
5.90858
5.91802
4.97205
2.45092
1.90229
2.81257
6.2119
21.8805
44.5121
14.9473
10.9639
71.049
31.3055
121.103
0.412566
1.88662
1.14678
0.355605
1.7785
0.446346
0.314551
0.464412
0.578532
4.14054
1.85973
0.7242
1.91569
0.434065
0.516491
4.67164
7.77274
0.744197
0.737559
2.34674
0.529981
2.9969
2.96329
2.6377
32.9333
1.96575
1.84912
2.04192
167.868
53.8526
3.19189
2.74656
3.31197
2.4015
1.86044
2.48825
74.8667
39.8202
40.308
2.26888
36.8931
25.6659
2.973
1.08776
0.356514
2.17655
0.677573
2.62813
0.928156
0.381831
1.42248
0.651768
3.36746
42.8113
0.691288
1.32969
1.66208
3.70897
0.85528
0.756749
1.9795
2.09308
14.2727
20.9586
1.81481
1.21329
3.08042
0.73086
0.41049
2.94919
0.408152
1.28012
9.12788
8.91039
4.31765
1.81009
33.4978
4.22254
20.3517
11.748
4.14103
1.70327
4.10812
19.0102
10.8104
10.8141
3.18501
33.6705
2.82543
39.0054
2.79371
1.03144
8.52211
1.20133
2.02815
1.19934
0.500741
0.850303
10.0809
0.47358
8.60603
1.4324
2.76991
8.94612
1.04696
1.17577
2.41799
1.14944
6.45893
0.412433
0.798859
0.442657
0.994225
8.24667
3.1258
41.5868
3.77194
225.761
17.761
20.9292
14.9902
21.8541
33.3992
11.4764
8.37855
11.8253
2.38404
13.1627
11.1013
0.984513
1.35696
243.151
1.19585
2.92156
24.2539
4.60906
4.3343
3.32579
40.6485
3.57639
2.93696
4.62522
3.07036
25.7104
2.793
4.29173
2.16345
266.49
22.8246
42.5861
37.956
50.0898
90.9796
14.5721
22.5248
26.2726
0.457042
2.10186
0.691652
2.32254
0.588026
0.543122
1.40517
0.758848
19.0576
2.7
0.826502
3.27866
0.919681
0.635548
0.747429
0.676122
8.74144
2.30318
0.859833
3.2547
0.550892
0.851953
10.9027
13.3449
2.19911
1.09735
5.98387
1.13605
0.604406
1.903
1.69667
0.394469
2.55869
0.50725
0.463394
10.8906
14.3386
5.03245
42.9489
3.56884
4.15124
7.39466
8.07558
4.77812
6.35863
10.5903
6.93339
6.00183
11.2482
7.54178
3.67283
1.07948
1.94336
42.8552
36.5246
1.07166
3.93194
6.04986
3.6673
42.3853
3.10963
7.65086
2.99601
14.6601
1.926
0.972794
28.6027
1.04665
2.33782
5.26906
1.97467
35.8497
2.05343
3.98073
10.4591
12.9266
13.9631
14.2927
4.94067
2.26935
37.5406
5.20794
38.7002
42.1028
7.60114
2.47247
6.25505
38.7504
6.56842
7.00676
3.25568
1.20807
11.8256
1.44315
2.38286
1.84138
0.637507
1.10918
11.3201
0.648247
1.70834
11.9354
1.90956
12.7495
0.734639
1.17454
0.677742
1.98199
11.9944
3.42513
13.4481
1.78317
1.63115
3.68574
6.26066
4.77759
2.60308
2.79639
47.8183
3.70025
7.17622
8.44347
4.21857
3.51527
5.02886
3.78774
3.99943
5.7089
3.8191
4.15293
20.7921
1.01364
1.15531
0.936794
15.092
16.578
12.1763
10.7484
43.5506
11.6765
12.2289
15.3967
54.9173
11.5445
21.0452
77.6819
93.4436
2.95948
0.855937
0.651535
2.86723
0.733694
3.79177
2.78963
3.27168
1.06882
0.726873
3.67038
0.810601
4.80118
3.17552
0.333894
0.495723
1.41792
1.51316
0.383247
0.411424
0.961459
29.8671
2.38355
33.2322
1.07295
251.561
1.3489
22.4209
29.8375
27.2632
1.81919
0.951938
109.881
1.24828
20.9884
18.5861
75.3967
71.8773
43.3972
2.52664
2.34457
2.18301
250.977
18.2689
0.934213
0.898346
3.63827
1.00218
13.2442
13.7047
38.3771
2.66858
33.4368
1.22882
285.942
1.64374
26.53
30.5953
28.5824
3.2407
1.51402
363.597
1.81824
20.6021
17.1987
91.7136
56.6147
49.7178
2.99661
3.36519
2.90458
300.564
23.8607
1.17009
1.07624
4.67117
1.26283
17.9001
9.65104
1.106
42.1811
4.77563
2.18223
1.20324
4.60838
1.9569
0.996759
37.4503
4.98257
1.70449
1.03153
4.40842
1.63901
1.69212
4.59302
0.408002
0.452553
1.71895
2.00021
0.389227
7.63084
5.28678
11.6528
3.79951
8.0995
15.4614
14.7495
6.64386
10.5821
28.129
9.03408
18.2761
1.30528
0.352917
1.03203
0.251621
1.54478
0.320635
0.875713
1.54478
0.42593
1.77286
0.325475
1.79863
0.362481
1.28452
39.9952
13.252
0.71166
0.838769
1.08344
14.1657
22.0528
1.93667
1.74281
1.63437
138.452
51.4337
0.818451
1.25625
20.7571
1.22385
18.235
112.854
1.32486
2.00004
1.5057
28.0808
3.47662
8.34344
0.521734
0.433892
2.01709
5.64486
0.439252
17.7306
5.84059
6.07775
8.48493
25.0046
32.4667
2.01319
1.5774
0.416356
0.339043
3.72289
0.415037
1.4617
22.4349
42.2466
12.9549
4.31554
0.56183
17.7642
0.473299
7.01304
9.49762
0.452664
1.73692
0.37099
1.27542
0.324343
1.57294
0.392433
1.38035
13.626
9.62795
0.722751
0.596211
3.8508
17.5847
0.675166
75.5151
15.6131
23.6862
38.1721
6.76007
23.4605
1.14141
0.754392
35.8565
0.77146
12.1712
146.974
48.0673
25.5062
11.167
1.06933
1.46851
38.8736
25.4139
0.870463
10.2677
0.580583
2.5786
0.619319
2.83874
0.636967
5.34479
5.21885
5.10463
41.5412
6.18708
1.22044
1.43394
5.90731
1.55867
0.762366
1.34115
5.03504
10.6396
23.2008
7.60246
1.79955
1.47134
1.0866
0.676317
3.12592
1.18667
4.34722
25.1096
0.945283
2.5842
0.591599
10.923
0.604287
0.933912
15.7522
1.89878
3.41612
2.149
96.6045
2.99887
1.05713
3.14724
0.710003
32.54
0.646127
1.18213
18.6205
1.68309
31.0827
2.58369
1.68182
45.0442
2.66017
54.6765
2.91751
2.23368
1.70032
8.37209
1.25624
0.733861
0.478845
6.70722
1.41403
0.785862
8.16976
6.27446
26.5689
2.84062
1.35374
20.1855
1.48861
11.119
1.12141
0.522865
2.73209
1.85102
0.868548
24.3086
0.763175
1.54339
0.550038
9.84228
7.29108
0.492842
0.871672
1.26152
2.93748
11.4312
1.4766
14.5346
1.99922
0.719827
1.4187
7.15068
0.503743
0.806353
7.16606
0.467166
1.32448
29.1084
2.4602
17.3823
1.54935
2.0205
9.68853
10.3773
1.98008
3.96175
2.50819
2.83911
2.60876
1.86973
1.84214
2.48296
2.74145
2.22142
2.45495
2.06703
1.90414
1.4841
1.99734
1.36094
1.48817
23.5564
36.7225
0.833638
1.28423
1.03057
1.69979
1.81655
112.053
1.38873
1.5726
3.55232
4.50965
6.31314
2.51015
0.774468
1.18868
0.21664
0.248739
0.86643
1.07435
0.206214
3.1162
1.82478
4.19397
1.67444
2.70598
1.80432
2.45632
1.58689
1.06594
28.7033
63.6467
1.38116
28.677
1.51963
0.964722
0.945439
12.8898
26.4148
0.773634
26.7916
1.0652
0.729333
1.31134
1.61699
117.149
40.4326
27.9574
1.67314
1.53947
12.7058
29.1149
4.19299
0.949188
40.2146
1.6375
40.7324
4.11751
0.951054
7.05199
3.46877
1.53419
6.9794
7.41536
2.16842
1.56424
9.69965
12.0886
11.9541
4.3308
106.868
1.64479
0.927224
42.0024
0.951823
5.63652
13.3672
12.9684
8.35037
1.86502
7.7859
7.78653
1.81998
7.61934
34.996
34.7845
10.9955
2.70342
2.36135
11.8858
6.69663
1.04588
1.70338
0.964808
7.17383
10.9908
2.31551
2.33375
11.0061
6.77281
0.948453
1.64808
0.949256
6.77087
34.774
36.7979
3.67695
13.4082
5.99128
8.0602
3.51178
2.61687
3.18342
2.97948
0.908599
0.350406
1.64596
0.298961
1.06042
1.35794
0.284013
4.21758
4.51119
5.87958
2.69329
4.71906
24.7842
8.48846
7.71096
4.62283
3.57201
4.01327
4.44507
1.20901
0.429917
0.445831
2.40047
0.389213
1.53323
1.49137
5.30105
4.69278
6.22994
3.22468
2.47154
0.435888
0.406088
1.08186
1.60489
0.53235
1.70878
17.2892
12.3399
37.4902
15.5562
3.34298
16.2599
0.797361
0.733951
11.962
7.67961
0.693075
17.4138
10.3289
39.1824
10.7596
2.64007
0.548975
0.726483
2.57602
3.35428
0.614442
2.5626
2.55784
0.475617
2.24301
0.618814
3.07446
2.23946
0.571963
10.1126
4.06001
8.29995
8.37088
2.75587
34.9298
2.5068
89.263
2.8095
1.62739
2.97723
36.5459
3.20383
97.6404
3.24242
1.77421
2.99299
3.83682
293.563
3.27855
3.55713
10.9192
1.40458
2.39882
1.35324
12.0817
6.63323
0.524661
0.756222
1.58331
0.771065
1.36935
3.0305
36.8447
5.8102
5.30386
51.5045
10.5668
2.24254
1.19755
1.26625
9.1042
33.8321
4.03867
4.32438
30.334
18.2371
12.8136
8.45143
1.9442
7.87348
9.29
1.97175
8.2486
8.32176
20.9521
29.6251
8.2892
25.1839
31.0107
26.5539
30.7797
10.4239
48.0661
16.4347
2.92026
3.1894
12.9397
2.38553
0.456296
0.716592
1.51563
0.651023
1.26792
2.85117
7.24996
1.0502
1.77889
1.01593
7.09395
7.51512
1.13529
1.77568
1.02073
8.73089
16.8634
3.89502
3.20595
29.2008
44.2447
37.9408
25.5503
25.9196
66.8213
30.6718
239.5
289.137
32.2544
32.5249
52.8577
36.1341
85.9689
2.27807
1.90633
31.2867
2.24455
248.32
1.41344
2.44863
2.28701
30.1911
2.50295
255.031
1.4105
1.58541
0.965648
23.2109
22.7046
73.3551
1.05037
1.07982
0.587524
1.95756
2.68946
0.554118
2.85899
0.617004
0.461184
0.627918
2.11705
3.05595
0.654011
3.09602
0.687972
0.514101
0.655863
0.708047
3.00114
3.18931
2.88513
0.676096
0.704679
0.838778
25.7359
1.09621
24.7777
0.891838
7.96102
0.937719
0.668135
2.67177
2.82515
0.577501
12.8277
0.638468
0.590932
0.811531
0.832748
16.6616
4.19706
22.0582
0.892305
0.708881
1.07945
26.2822
1.42112
22.8985
1.19917
27.674
1.1138
0.833241
3.77094
3.69218
0.755115
9.11503
0.79748
0.820601
0.955601
0.899465
15.3771
4.97281
17.8142
1.0118
0.80124
1.17298
43.6118
5.82892
1.93233
1.18444
7.26204
1.91018
0.760286
2.42626
0.531336
1.42942
0.534509
0.755304
2.38039
0.769783
0.541882
2.20972
1.37339
0.770919
0.541258
2.30737
1.14268
50.9394
7.6343
1.78821
1.13129
7.64286
1.82358
0.764386
2.48996
0.535818
1.50391
0.766195
0.53597
2.54472
0.760885
0.541076
2.60228
1.54135
0.758182
0.538575
2.58235
0.235685
0.777133
1.03936
0.211626
0.913241
0.250523
0.211846
0.274634
0.967801
1.64418
0.321204
1.11829
0.349782
0.257517
0.302601
0.36626
1.50178
1.64201
1.368
0.324904
0.362833
0.481648
9.94703
0.363414
3.69685
0.479491
7.07923
0.366984
0.582461
21.1505
12.9638
0.637059
10.9787
0.679911
0.573052
0.493655
0.395427
3.42761
8.35502
4.95747
0.378791
0.477644
0.286825
0.933319
1.23723
0.21569
1.333
0.272094
0.224002
0.336529
1.70026
0.335254
2.40663
0.338218
1.66071
0.347543
0.333833
0.364921
1.49198
1.77895
1.54973
0.332689
0.357506
0.472677
2.36431
1.89912
0.394336
2.41439
0.401845
0.469818
0.499242
5.7418
9.51942
0.611559
5.0942
0.592459
0.547889
0.460294
0.408661
2.00006
5.23273
3.1763
0.408913
0.456589
3.87776
2.79763
3.0134
1.71892
1.71507
1.98532
2.49146
1.54027
2.41414
0.541668
2.97893
9.43077
0.835992
0.550888
2.15478
0.807102
0.51386
7.78478
1.72103
0.787047
0.51566
1.75628
0.772016
11.2657
25.3119
2.97732
13.8154
11.5158
2.03485
1.38949
2.08304
1.24716
1.69946
105.128
1.77376
6.08526
2.62196
10.0775
36.3941
28.8055
1.39369
1.95941
2.09735
2.5576
1.61586
1.88562
2.04998
1.29665
0.635771
0.457905
1.94044
0.472555
1.19516
2.10547
3.95333
16.4877
4.50468
15.0502
2.68507
2.26702
2.10449
3.02369
3.77305
9.99053
3.0639
14.5403
10.6237
7.37647
4.64635
3.0196
3.71407
1.39074
4.01588
4.76199
3.35765
1.57865
3.17128
5.72915
1.49335
5.30243
5.8064
6.69768
2.45699
1.60156
3.04876
1.72658
24.6521
1.36452
1.31669
1.80065
2.43773
7.09232
2.13851
8.19013
0.965555
0.513275
0.395432
1.58497
0.377075
0.987979
1.54878
1.69188
17.9656
1.33286
2.37508
1.26887
2.48719
8.60679
2.60242
8.25263
1.78151
2.18704
1.83205
1.49961
120.159
1.6635
29.3346
1.60703
2.18381
1.92904
1.90892
5.23726
5.63646
4.14149
2.24222
2.58164
3.77426
5.16038
3.74236
3.9298
19.7201
1.65302
3.3464
13.8587
1.79795
6.03595
7.5779
117.147
9.18384
0.603843
2.12573
0.944185
1.95522
0.90755
10.3065
8.36313
9.0952
17.6593
2.10181
1.57009
1.51249
28.3733
7.56276
6.78107
5.25345
3.03733
2.94673
4.80757
5.9753
4.17863
4.78777
21.1772
26.2562
11.5601
3.40134
11.5185
11.1271
3.24308
10.7796
21.6771
6.9959
8.47382
20.6472
8.29674
8.77008
5.96073
6.79469
23.5575
11.9551
10.0645
13.1033
0.682954
2.36959
1.02452
2.67532
1.03799
10.8607
40.1471
1.82206
2.36925
1.82157
43.6218
8.81736
9.11875
35.8738
1.71509
2.26333
1.73321
30.3471
2.95519
2.37581
3.10342
3.54873
2.66178
3.49429
2.71432
2.91457
2.80972
0.253004
0.88345
0.286418
0.936308
0.251648
0.850531
0.269116
0.327676
1.25144
0.42612
1.19377
0.359129
1.06696
0.340955
0.439193
2.20534
0.376033
1.5194
0.456606
2.09704
0.337591
0.481867
2.421
0.512123
2.09303
0.525598
2.33515
0.42642
0.398627
0.286588
1.09976
1.22089
1.98983
0.299556
0.327014
1.82821
2.4644
2.5078
2.02847
2.80047
2.69745
74.5192
2.46078
2.57505
2.48858
2.63831
3.20529
2.49468
39.5419
0.920515
1.36756
5.69092
1.4287
6.20146
29.9727
41.3612
38.0965
3.12234
2.27671
2.38367
22.1912
36.7445
45.2029
41.4727
11.7564
3.8595
13.4215
17.5958
3.73177
15.5457
34.506
44.9088
41.2224
13.7539
0.945087
0.958549
12.6692
26.7757
1.01911
17.2937
10.7987
0.939682
1.08381
10.087
25.5095
1.07344
9.7256
15.6916
36.8038
0.943358
1.028
27.7777
29.4792
1.01431
77.2621
49.6308
13.8175
15.4861
16.6691
0.747154
1.24095
4.36188
1.14935
4.115
22.0934
41.7054
1.84287
2.53853
1.81126
43.3224
42.2139
2.11343
2.55369
1.91793
118.159
16.5665
15.5848
38.8427
1.91554
2.1376
173.996
1.56746
33.275
0.82878
0.897605
17.2735
29.1867
0.897429
28.5151
36.2989
42.5199
2.38239
0.978629
29.699
1.31749
78.523
3.04907
2.8831
3.11947
41.2318
1.14286
1.14582
16.0825
31.0838
1.20576
30.2756
48.0948
44.4786
2.8234
1.2164
33.8831
1.87615
1.29173
47.8915
8.12028
1.92204
1.31707
8.18985
1.88318
0.987552
3.27022
0.759066
2.0235
0.756635
0.993742
3.13625
0.946529
0.721308
2.98502
1.94304
0.944871
0.725078
3.01347
1.26065
47.2984
8.26986
1.8066
1.25201
8.44862
1.83851
0.979159
3.3761
0.751861
2.12714
0.991976
0.74312
3.34669
0.923188
0.682242
5.79813
2.04305
0.89559
0.701435
3.20503
9.39141
4.82348
15.4199
6.25644
1.70502
0.400011
1.87501
0.35722
1.95547
1.65716
0.38002
10.4882
19.9413
20.5024
14.9676
1.66099
0.332953
0.270336
0.917988
1.13224
0.358862
1.62659
12.7523
19.6278
20.1624
17.4023
1.56122
1.45732
0.342381
0.295283
1.54432
1.46638
0.355449
7.3592
4.91437
5.66599
11.4086
1.712
2.02208
1.78133
1.95078
1.06044
0.704347
4.78598
13.6994
0.735751
1.00576
21.4373
1.11693
31.5136
0.77145
5.21163
1.1395
0.762496
28.1621
1.61586
32.1419
1.71932
1.5271
100.932
1.94683
4.39927
7.13732
4.29724
4.35411
4.20827
3.31518
3.67514
3.81435
0.816799
0.178058
0.811341
0.198957
0.796653
0.836122
0.182405
4.26377
3.46756
3.71513
4.0079
4.32737
4.06744
3.99488
4.22188
0.79923
0.93978
0.207569
0.183303
0.867346
0.747067
0.182926
9.36866
2.88504
3.58829
7.93043
1.83574
0.588399
1.40083
0.430889
1.22536
2.15987
0.557589
4.25671
1.01196
0.694627
11.5271
0.72431
3.72807
13.6702
17.1478
28.5031
10.8479
4.18202
3.47007
14.0986
1.72392
1.0677
0.418864
0.516855
1.15234
0.539155
1.58396
15.8711
13.9982
11.9166
5.17887
16.3031
5.14081
1.84707
0.385165
2.00023
0.348062
2.11182
1.78341
0.342781
12.4174
11.8502
28.3365
9.86632
14.1529
1.28175
0.256841
0.893572
0.228691
1.21128
0.951758
0.272215
10.1814
31.1947
3.69492
7.62727
4.52714
14.147
19.6046
15.6491
17.9813
1.36831
1.19934
0.318166
0.249126
1.47125
1.07267
0.294031
6.90181
2.70677
2.63907
7.55868
10.1179
8.53714
2.53199
0.973446
0.702337
10.3291
0.715358
3.92365
9.32413
9.00946
2.27875
6.21369
2.68525
1.60081
1.04643
0.425352
0.528963
0.538609
1.07711
1.55489
11.465
13.1817
4.15055
8.19007
5.13603
4.18881
0.676307
0.204116
0.218609
0.763646
0.784347
0.19488
0.702103
4.06434
3.61612
3.80726
4.26779
4.01629
3.89699
3.80987
4.04417
0.673142
1.03791
0.224226
0.184607
0.891991
0.695746
0.187865
4.19976
4.82537
4.87806
4.43346
26.6996
26.4396
30.0306
18.4503
3.05927
0.448776
5.89625
0.486186
3.83086
4.24764
0.486066
27.4377
21.5769
24.2601
19.5808
2.37557
0.540952
0.575885
2.49512
2.53717
0.554736
2.38521
26.9083
29.2329
23.5811
30.1707
2.24096
2.34212
0.511319
0.55918
3.46266
2.39778
0.522599
26.6914
28.0731
17.1134
16.6202
2.87252
3.65614
2.96952
44.1721
1.17747
9.41479
1.85367
8.51593
1.77779
3.71786
1.69647
1.62653
30.4957
26.8229
34.1886
17.9936
31.8606
31.9667
24.4586
36.8348
3.69414
0.743987
8.20065
0.706966
7.73938
7.51165
0.654416
2.7776
0.70112
3.14749
0.651948
2.92721
2.79976
0.665246
28.8666
20.2897
18.0138
13.8504
32.4373
42.6968
40.6409
2.66507
2.46461
0.599878
0.620671
4.77747
2.61177
0.620755
46.364
46.4456
22.1144
5.75816
19.0092
18.4749
5.58902
18.5481
27.8523
32.2633
39.484
9.60468
0.736876
11.1573
0.560835
16.7625
5.45558
0.743434
11.5885
0.851474
12.1635
0.852034
25.3338
15.5879
0.8553
48.5914
33.2659
69.5894
7.22358
3.02392
0.536387
0.650229
4.50697
6.92756
0.724923
1.27963
9.44653
1.91565
9.72617
1.93438
1.93357
4.2157
1.80897
1.73741
4.10909
1.769
18.58
24.5602
14.3702
13.5499
2.36816
0.376594
0.575538
2.31881
2.71097
0.499212
1.24289
1.87485
0.416983
1.97492
0.605191
1.23716
3.00053
0.477577
7.76804
5.76621
6.44369
5.69871
9.77442
10.5611
6.58834
9.71097
2.97698
2.53018
0.602182
0.621925
2.68636
2.70333
0.58815
10.663
16.6917
13.2251
5.94382
6.79528
3.95634
4.47066
5.27331
9.47928
19.019
11.0862
15.6332
0.954872
0.292039
0.821819
0.239148
1.12982
0.766702
0.276149
1.84485
0.492752
2.50113
0.347084
2.25461
1.43706
0.388585
6.52835
4.96657
7.62525
4.79914
12.0024
16.9055
12.9837
6.07485
0.886175
0.708947
0.246576
0.270653
0.707359
0.813195
0.27554
2.24754
4.99829
2.0786
1.49021
2.24259
17.78
2.27338
20.2642
4.92473
1.89863
2.03451
50.5543
51.095
23.4832
7.30574
23.6425
23.4744
7.15859
23.2042
3.6337
4.21531
4.04634
4.4527
1.90479
2.99373
2.12017
1.89728
2.31131
3.26323
4.17597
1.90455
2.43318
2.41745
4.60038
1.80699
1.43108
2.13583
17.0547
2.17085
16.2561
1.97043
4.91862
1.9679
1.88375
4.81764
1.92662
4.14741
4.17298
4.5903
3.96371
4.23627
3.58372
4.36827
3.60444
4.41265
4.95787
4.55096
4.89684
4.02323
4.73692
4.0074
3.6557
4.88915
3.9615
5.06385
4.38782
0.892173
0.334257
1.20042
0.313512
0.948279
0.924244
0.324692
5.15846
5.58423
5.40179
5.3244
5.15355
8.69593
5.4914
5.48407
4.86621
2.96781
4.75049
4.85808
1.3708
50.2987
10.6283
1.93723
1.3608
10.7266
1.9476
1.00806
7.95995
0.762278
2.54923
0.766464
1.00069
8.1788
0.990476
0.745533
7.97728
2.49928
0.983047
0.751779
8.06301
0.59305
1.46733
1.92279
0.731966
0.70971
1.42507
0.610414
0.56889
0.68577
1.8713
1.36144
0.681571
0.569331
1.3851
1.35037
48.7991
10.3986
1.84539
1.35487
10.5292
1.86372
1.00395
7.97066
0.764403
2.54602
0.990462
0.776146
8.00181
1.01605
0.791667
7.86487
2.54014
1.00981
0.791952
7.94878
0.496785
1.2608
0.607813
1.77779
0.492599
0.611239
1.27944
0.514867
0.643864
1.31367
1.7867
0.528625
0.628189
1.29626
1.00361
47.4472
0.677581
18.1604
0.91765
36.8337
0.654697
1.47579
1.58834
21.7434
1.56568
60.7748
1.16343
1.4445
1.36498
1.4737
1.20477
138.25
0.883564
18.2344
20.2364
0.684733
24.6697
0.662443
0.794074
2.92227
7.77666
3.22164
7.05383
2.08874
1.80115
1.97114
1.89912
1.06533
0.410259
1.43397
0.509767
1.01979
0.419102
1.51073
2.22961
2.28717
2.44909
2.15375
2.69155
6.12292
2.48387
6.31571
1.13215
1.68417
0.464699
0.537471
1.19271
0.445316
1.59177
0.667752
13.4184
16.4031
0.666776
13.6512
0.700737
0.639824
0.553524
0.40709
8.60042
9.10116
12.6019
0.507182
0.443319
0.666029
12.526
9.6983
0.693749
12.7594
0.623692
0.716768
0.583828
16.3271
10.8285
0.517238
13.5534
0.481477
0.575431
12.5403
13.2531
8.74474
1.04269
4.41283
0.773223
3.76965
12.1563
0.990703
13.1299
1.86642
1.3177
1.33245
13.0914
17.18
14.3756
8.55186
3.53456
0.756943
0.971261
3.61881
0.98223
8.45359
0.742963
13.3077
25.6038
0.695425
0.805211
14.3051
0.721161
0.803331
0.901737
14.4716
130.291
0.784087
0.999487
16.5562
0.729375
12.3744
11.8497
0.727526
0.716122
13.2092
0.740083
0.885533
131.866
1.23463
1.10114
1.02562
18.8888
12.1536
10.9778
8.93262
0.820009
2.07702
0.644978
6.63571
0.834941
2.25388
11.0997
1.64897
1.2629
1.18259
12.954
140.113
129.774
8.16434
40.2144
10.1181
6.9677
2.50026
0.675981
0.921535
0.870903
2.34336
8.354
0.563943
17.2965
0.621934
18.0098
0.587126
0.596345
18.2693
0.537154
0.583071
17.9938
19.3787
0.535368
18.2474
0.583259
0.512784
17.2092
0.517278
18.1428
0.507047
0.541804
18.2026
0.59048
18.1429
0.658031
19.6911
0.613309
18.3682
0.63866
2.09636
1.94499
2.00244
2.14458
2.22999
1.85322
2.18147
1.94854
2.19415
2.18174
2.16766
2.17778
2.22121
2.48438
2.30628
2.2285
2.39267
7.28625
2.58061
1.8377
50.0751
2.11842
42.8518
1.96046
6.31818
2.76273
2.53559
2.45581
2.00365
2.23944
2.27952
2.66277
2.97129
2.94325
2.6769
2.68888
2.43324
2.92115
2.48338
2.43139
2.14945
2.23653
1.78585
47.5453
10.0186
49.0634
48.4618
9.91736
48.5806
1.43806
1.68269
1.21973
1.89269
1.48497
2.8982
1.57831
3.0541
1.40693
1.11746
1.40937
1.17262
1.4679
3.16439
3.26019
1.61859
2.2271
145.104
2.18844
2.32063
3.03133
7.46574
3.07682
2.86243
7.394
3.03637
2.81063
2.21867
2.50197
2.48116
65.3038
1.07389
0.878039
31.8665
27.9129
0.918917
31.9449
0.892908
1.70884
1.53847
32.3461
1.05242
2.72849
36.7969
2.14045
2.21375
28.2651
2.50905
39.09
1.11205
0.669329
25.5363
26.6032
0.611166
26.2972
0.635256
0.631024
0.879942
1.51556
22.1084
0.91924
1.45322
27.0813
0.718476
24.4547
21.0262
0.70516
0.75894
25.1335
0.67871
0.878153
27.6899
1.90204
1.74715
28.4353
0.820635
3.80459
7.56448
3.54075
2.77571
2.66895
2.74671
7.40145
3.38557
3.48129
47.5741
9.77403
47.3056
46.1485
9.72252
46.9191
0.789547
0.685098
21.8762
24.7879
16.6536
0.70189
0.782249
0.788109
0.503605
7.77748
15.561
8.51099
0.601134
0.726525
0.783351
18.0859
14.7818
0.795841
10.7185
0.711657
0.769084
0.874039
24.4652
9.43603
0.977383
14.6096
0.890397
0.930139
2.42375
2.57167
2.3942
3.05568
7.30129
3.06854
3.27006
7.27162
3.0847
0.640097
25.3697
0.627625
23.2179
0.641259
24.2997
0.637737
0.619643
0.624228
20.3033
19.5414
0.618753
22.5675
0.653254
0.664677
24.3541
0.691363
20.7299
0.673917
0.674678
23.6896
0.618138
20.1643
18.9446
0.739487
22.813
0.639849
0.687242
0.736489
26.3505
0.664142
25.7378
0.665888
26.5133
0.75407
0.812252
0.88659
27.819
28.581
0.851648
27.2761
0.870561
0.746752
27.0465
1.13063
27.7768
0.846707
0.745252
27.0327
0.826875
25.6341
27.3708
0.950038
26.686
0.858784
0.902847
0.645399
1.5237
0.7685
2.0762
0.766178
0.64542
1.54906
0.66747
0.797338
2.11173
1.5968
0.791213
0.669883
1.58207
1.4923
42.83
10.7756
2.02499
1.52404
11.1386
1.97277
1.13757
10.0492
0.918545
3.17691
0.91465
1.14764
11.0384
1.15835
0.951479
8.28383
2.98579
1.1762
0.936072
8.71761
0.620968
1.6366
0.742853
2.2213
0.743972
0.616983
1.63142
0.642807
0.782987
1.59728
2.13979
0.656029
0.765838
1.5971
0.482641
1.65201
2.21221
0.59042
0.595726
1.62316
0.477348
0.495596
0.598657
2.17155
1.55423
0.608583
0.489201
1.5939
1.36627
23.383
13.8653
1.68527
1.28807
14.0163
1.78228
1.08995
10.1201
0.900556
3.10912
1.12657
0.871701
9.77543
1.03902
0.795302
9.49069
4.22881
1.00261
0.818589
9.57221
0.584762
1.62494
0.720184
2.16794
0.596746
0.704365
1.58726
0.545072
0.63207
1.51065
1.99776
0.524201
0.659631
1.47353
0.259492
1.17201
0.206906
1.14693
0.2227
1.30296
0.232749
0.332475
0.386857
1.75017
1.85033
0.348292
1.65829
0.365538
0.298682
1.49559
0.313987
1.71069
0.329651
0.267757
1.59397
0.292005
1.30757
1.53739
0.298327
1.411
0.263747
0.322138
8.24475
4.59525
8.55715
34.7657
10.5672
7.06328
32.7181
1.38087
0.370082
1.05317
0.457804
1.44562
1.01462
0.44841
6.8399
2.63513
3.89434
9.53805
2.7233
6.03319
7.56112
1.92354
0.580891
6.01124
0.740419
1.93095
0.583735
5.67033
8.79354
4.69901
2.74985
3.51809
7.18822
2.79213
5.97231
7.76445
11.6441
11.4684
27.9103
7.49561
9.50566
32.49
1.93518
5.97291
0.570846
0.702428
2.04236
0.55515
5.6768
0.137521
0.720932
0.622689
0.156374
0.663622
0.144834
0.137037
0.128076
0.693577
0.642531
0.124616
0.643435
0.119392
0.136275
3.5995
7.8599
3.586
37.0132
1.48592
12.2923
1.06136
11.0561
40.1886
1.43275
1.71395
1.86489
1.92649
3.42276
3.87413
3.51278
3.59997
3.45758
3.5369
36.3902
7.91139
1.0232
1.34117
10.1794
1.38592
33.0876
8.68589
3.92308
3.56594
0.180793
0.854999
1.0393
0.177059
0.200039
0.931429
0.161213
0.196587
0.207984
0.910757
1.24256
0.171743
0.229185
1.05197
0.156591
0.819474
0.743033
0.13511
0.144009
0.825513
0.147726
0.217354
1.3446
0.281558
1.44524
0.254109
0.240952
1.17893
11.1867
7.82952
16.8712
17.4541
18.6667
17.4854
18.6139
1.2587
8.42674
0.965778
18.2793
1.28613
7.40656
37.9241
1.52309
1.76541
1.67219
13.8588
17.5092
127.406
17.4868
18.7682
7.74265
0.914752
1.27817
1.21334
7.42083
31.7226
7.76903
17.6515
16.8979
0.152674
0.608028
0.172033
0.881873
0.192949
0.139804
0.61753
0.131806
0.12608
0.506932
0.5602
0.119032
0.534197
0.136284
0.125991
0.574502
0.119925
0.525958
0.118618
0.126318
0.549359
0.1609
1.00434
0.238706
0.670237
0.214586
0.630422
0.169448
0.419023
3.43343
0.449493
2.44424
0.426874
3.20885
0.452913
0.427459
0.420232
2.12749
2.08727
0.415195
2.16773
0.437151
0.390567
3.57709
0.370885
3.56968
0.362198
0.39657
3.35548
0.428529
2.15001
2.02742
0.463364
3.11632
0.460155
0.452396
23.3472
52.651
42.7673
3.95872
9.55499
4.12225
42.4117
109.562
1.77365
3.51295
3.34946
22.4626
25.2413
33.0898
222.218
214.7
9.60659
4.3507
4.20952
0.465208
3.27591
6.34917
0.466911
4.2313
0.48284
0.510624
0.489145
0.495308
3.96499
5.76026
4.39024
0.514483
0.500202
0.493061
3.17742
3.88785
0.613976
4.23325
0.531918
0.564462
0.519701
14.2563
7.46347
0.808408
4.50092
0.603889
0.666316
24.6241
23.2469
24.1255
14.779
168.072
24.3906
23.6883
24.7738
25.4384
24.5718
24.7391
47.8245
14.7109
56.9306
23.6141
23.4815
24.1931
0.458748
3.8354
12.8774
0.444856
0.411377
7.77133
0.49695
0.573623
0.59901
7.96835
17.6252
0.516037
0.661897
10.3454
0.425549
3.93131
0.364536
5.1523
0.399183
0.384194
6.60115
0.65481
26.1519
16.9673
0.809149
0.734997
10.135
0.735491
23.0138
23.8077
22.6185
19.7914
22.3786
22.0681
1.82069
3.53126
3.48493
4.29511
9.55113
4.28657
22.2165
19.4916
21.8898
4.37231
9.63062
4.31482
23.999
23.0647
22.6503
0.532708
2.21696
0.490002
2.40779
0.497546
0.536499
2.19107
0.608102
0.684631
2.50775
2.42333
0.662368
2.42549
0.625294
0.597125
2.44704
0.651568
2.49975
0.650065
0.598793
2.41397
0.565874
1.96815
0.502988
2.23297
0.499172
2.23733
0.563358
0.421141
1.77556
1.80366
0.466941
1.73208
0.413031
0.456461
0.420993
0.414305
1.94974
2.09391
0.392931
0.433888
1.9636
0.380868
1.50895
1.58001
0.321931
0.348651
1.66363
0.364432
0.444066
1.84154
2.05298
0.472516
0.452565
1.93104
0.471915
8.37938
5.20461
4.44163
5.36853
13.9063
5.19377
2.114
3.87316
4.07687
3.9399
3.83556
4.06007
13.7238
4.80982
5.11584
10.297
3.99121
4.23958
4.0901
3.8284
4.10035
13.8929
7.13714
7.90056
13.9177
22.7928
7.44941
11.6571
14.2988
18.2283
22.7978
13.0829
5.72599
14.612
6.61342
0.227825
0.375381
1.03284
1.15013
0.749352
0.237218
0.293123
0.201168
0.209357
0.569465
0.608942
0.594609
0.187881
0.214571
0.184756
0.577357
0.544269
0.161122
0.589367
0.176863
0.173892
0.227122
0.775033
0.656698
0.264559
0.666293
0.260832
0.236553
12.1349
16.1912
19.1513
19.4423
22.3281
20.9693
1.85421
3.7424
3.48165
4.29917
9.11008
4.2411
4.57296
9.19907
4.22842
11.5048
18.2955
19.3203
19.83
22.9922
21.1434
0.214461
1.43525
0.362061
0.954436
0.323507
0.83601
0.230488
0.151981
0.130479
0.569569
0.527214
0.141009
0.568321
0.13469
0.191023
1.23209
0.254712
0.692373
0.178127
0.285899
0.745596
0.159711
0.566851
0.514593
0.146564
0.567147
0.168259
0.139938
0.4926
1.97202
0.482298
2.05859
0.486345
2.14225
0.415937
0.585643
0.662281
2.43536
2.37776
0.629468
2.24136
0.608461
0.557221
1.88769
0.512509
2.26271
0.571439
0.51029
2.10386
0.468315
1.09787
1.68319
0.319786
2.03248
0.336553
0.434576
0.44723
1.6396
0.558119
2.24213
0.557751
0.446711
1.65218
0.448907
0.557405
2.24441
1.66032
0.559113
0.448116
1.65966
1.1457
22.0009
14.1156
1.54333
1.17397
13.601
1.49791
0.881011
9.39169
0.690059
4.50603
0.690829
0.881336
9.33552
0.877148
0.69453
9.71364
4.50972
0.895071
0.684462
9.38134
0.448045
1.69266
0.552535
2.25762
0.554048
0.446743
1.67444
0.440726
0.550527
1.66909
2.23122
0.443034
0.546317
1.65042
0.456852
1.74787
2.34112
0.536115
0.557718
1.79843
0.440187
0.379753
1.08949
0.314096
1.38728
0.315037
0.378791
1.4035
0.463983
0.567151
2.39618
1.81234
0.567068
0.463058
1.83492
1.14914
22.4275
13.8966
1.478
1.14463
13.9765
1.48538
0.882182
9.45104
0.689182
4.71398
0.876679
0.694325
9.67217
0.888529
0.699493
9.65051
4.73
0.88668
0.699688
9.69006
0.373577
1.04941
0.310903
1.35992
0.309168
0.375159
1.34903
0.453223
1.72505
0.553612
2.35753
0.448789
0.558567
1.75525
0.457427
0.563995
1.78562
2.37367
0.458984
0.563288
1.77064
146.164
1.70511
1.97112
1.88923
7.06024
0.81346
14.4403
1.09297
6.32247
0.835703
14.9364
48.6557
0.93909
1.22822
41.3607
2.0953
9.09389
16.666
0.886206
1.12068
7.57084
0.860332
15.3181
1.65937
1.90229
1.80445
2.22475
172.827
1.63072
34.4612
2.21971
2.83192
1.538
1.57885
1.68495
0.698038
1.84416
1.54336
1.52509
1.72791
32.0774
1.64965
2.16924
33.8127
2.26331
0.817828
0.718024
1.88599
0.893746
0.856627
0.882372
1.04467
0.801459
0.849017
1.89932
17.8534
1.45083
1.96828
18.3837
2.55073
1.48551
1.43627
0.91399
1.01695
0.868071
31.4726
1.48442
2.07289
2.00893
18.8787
0.856694
0.789611
0.864379
3.54963
3.51327
3.68936
5.41741
14.2576
5.47443
3.64955
3.8007
3.72297
2.5504
4.48482
4.46583
3.5551
3.61717
3.69286
3.53421
3.79576
3.71851
14.1991
5.51882
5.48403
0.163606
0.498735
0.538569
0.151002
0.541545
0.163755
0.147159
3.51081
3.25027
3.37654
17.7631
3.68947
3.05115
3.43284
3.53579
3.71686
3.4203
17.7984
3.26877
2.94739
3.38793
0.127506
0.124611
0.512214
0.514721
0.121493
0.128398
0.509632
0.132206
0.491725
0.503949
0.138539
0.132957
0.501798
0.138295
3.54091
3.3142
3.40169
2.92536
1.98456
3.28204
2.59739
4.58618
4.81
6.69756
15.8556
6.53026
3.54126
3.17505
3.38863
5.68466
15.6208
6.34664
3.31886
2.10208
3.33187
0.773308
0.754263
0.744739
7.91652
15.8751
8.28054
3.40788
6.78235
6.45845
0.699612
0.732226
0.721938
16.1221
9.11252
8.33174
0.770827
0.721062
0.739634
0.745479
0.757167
0.729492
0.98191
0.826181
0.961428
18.0116
3.21231
1.00128
1.11868
17.9953
1.28948
2.88353
1.18392
0.849981
0.938584
0.948512
0.786345
0.948266
0.837416
0.816597
1.61591
0.909263
3.12533
5.57868
5.29901
6.80189
16.0474
6.95369
7.37942
16.0307
6.98279
0.783205
0.790783
0.817397
1.20249
1.72113
0.970759
0.414711
1.7053
0.506803
2.21142
0.502596
0.416129
1.7122
0.349815
1.06259
0.296545
1.43386
0.292021
0.355634
1.3541
0.424105
0.520355
2.24981
1.88204
0.512386
0.431126
1.76248
1.04432
19.6194
13.7195
1.28043
1.02169
14.8368
1.30565
0.850939
12.4172
0.67859
5.23194
0.679276
0.849976
12.3559
0.833505
0.65051
10.7716
5.17362
0.8136
0.66486
12.2211
0.367686
1.1456
0.301663
1.44015
0.306765
0.361462
1.46722
0.455623
1.96078
0.549467
4.31594
0.55005
0.455321
1.95117
0.445718
0.528007
1.87484
4.26959
0.437733
0.538324
1.91479
0.435632
1.95176
4.15408
0.512946
0.517622
1.95833
0.432215
0.367499
1.21575
0.30784
1.53304
0.308129
0.367566
1.54862
0.438653
0.522495
4.15365
1.9364
0.521205
0.439183
1.95434
0.965038
18.6215
13.9798
1.19928
0.97113
14.142
1.19257
0.806521
12.2862
0.664582
5.02031
0.832564
0.644413
11.8278
0.777425
0.629448
11.5533
4.963
0.782864
0.624479
11.6753
0.356243
1.16609
0.302584
1.51197
0.298341
0.361404
1.48775
0.435075
1.93431
0.53823
4.1472
0.44632
0.522908
1.90407
0.42696
0.514774
1.91315
4.10319
0.432208
0.509781
1.89513
11.8017
0.347828
9.2068
0.429029
8.09754
12.3747
0.39154
2.17574
25.959
1.36817
53.8455
2.1427
3.68368
2.2832
2.48004
12.5783
14.3534
0.355197
0.416573
9.8477
0.39288
14.566
11.1279
0.31077
5.31
0.316951
5.72631
7.53186
0.353272
1.34851
1.90385
184.041
2.10043
12.8504
0.449969
14.6459
0.432264
12.9642
0.427925
14.6401
12.3703
0.447452
9.73034
0.458413
0.474008
10.2014
12.3501
13.2258
18.5875
0.596134
0.49696
15.5475
0.51297
15.1311
1.75867
2.26173
1.84668
3.44769
2.23692
2.17141
12.5884
0.511312
0.612883
12.8645
14.7071
0.52575
10.6908
2.24335
1.85235
1.79081
12.9912
0.458857
0.43505
14.6317
0.462937
12.9322
14.8413
1.45383
1.49793
1.46459
7.82183
14.6939
7.99773
1.33712
1.46203
1.4143
3.82615
7.63466
7.8902
1.34512
1.27467
1.38452
1.49692
1.51522
1.47507
14.7712
11.2441
8.68762
1.51595
1.50659
1.5372
18.3104
2.00996
1.79073
1.77907
1.63131
1.82864
1.66402
18.1383
1.50268
1.59404
1.59709
1.40599
1.46999
1.35896
24.2484
0.902774
0.896976
135.321
1.07611
152.105
3.87318
7.63454
7.68263
11.293
15.6644
11.2809
1.27156
1.02226
1.20712
11.1285
15.5402
11.2049
1.39732
1.04356
1.24117
16.6032
17.2534
0.339197
0.338726
17.2292
16.4815
0.340714
12.8547
14.9169
13.0163
4.4057
10.6366
10.735
16.4604
14.9627
0.401016
0.371898
15.0958
0.366257
16.5086
14.9261
12.9146
13.0216
16.4962
0.362024
15.1829
0.405646
15.1678
16.4175
0.367201
16.5777
0.333685
17.1195
0.341249
17.1469
0.336866
16.6661
20.2492
17.6132
0.390078
0.347476
18.4126
19.3386
0.411275
17.5939
23.3445
83.837
1.86157
0.613502
0.890578
20.5569
17.4202
25.1466
0.753542
1.557
22.1671
0.875972
19.9782
0.354305
19.2552
0.38623
18.5752
0.411664
19.7584
17.0027
17.2801
0.339135
0.369448
0.357341
16.4509
18.5809
17.0646
20.1777
0.487572
0.725404
15.7536
37.2224
0.500558
4.03564
10.5734
9.31817
11.2129
15.0348
11.4678
12.8518
14.8957
12.0011
16.7502
0.356953
0.398958
15.1735
15.4468
0.363336
16.3896
17.3912
0.639633
0.865732
75.2395
0.557191
20.0113
0.211779
0.974637
0.799147
0.242752
0.802001
0.207872
0.247272
0.205361
0.983378
0.792698
0.237932
0.805485
0.203806
0.239552
0.422711
1.91934
0.503757
3.99806
0.501247
0.424811
1.91059
0.34841
1.21331
0.287268
1.55181
0.292457
0.341914
1.54268
0.413045
0.475057
3.98905
1.89464
0.487831
0.403581
1.90803
0.853258
16.8539
12.9383
1.04577
0.853971
13.0153
1.04109
0.722283
13.0532
0.605326
5.84748
0.586309
0.747098
11.4299
0.696236
0.561444
10.7338
4.90539
0.693647
0.564541
10.9609
0.336655
1.23399
0.281511
1.54385
0.283345
0.334733
1.571
0.409133
2.05489
0.495409
4.62798
0.482044
0.418454
2.02679
0.396065
0.463108
1.87699
4.06556
0.394105
0.465452
1.91055
0.412523
3.02441
4.59408
0.477673
0.487725
3.0508
0.403833
0.354778
1.37547
0.298976
1.67834
0.302091
0.351697
1.70021
0.412459
0.485934
4.59682
3.0265
0.487841
0.410056
3.04843
0.90586
17.348
13.5825
1.07584
0.891395
14.0009
1.09198
0.752084
13.1533
0.609276
6.0976
0.752988
0.609577
13.1607
0.751249
0.599872
12.6199
6.04732
0.73873
0.609941
13.0262
0.355568
1.32121
0.297987
1.66327
0.300024
0.352025
1.67761
0.41975
2.08739
0.497281
4.74203
0.419019
0.497828
2.08874
0.418358
0.491203
3.02956
4.71185
0.412733
0.499017
3.11379
16.3332
0.335551
0.333394
16.6315
16.7052
0.341032
16.2124
12.7406
14.2096
12.5763
16.0773
14.7572
0.358646
0.371171
14.1219
16.3168
0.364894
5.40229
12.2425
10.9333
15.9449
0.328674
0.329069
10.1425
13.493
0.353478
15.6306
16.4129
0.33298
16.9478
0.342012
16.7998
16.516
0.340892
14.1777
13.044
12.6965
17.122
0.345983
16.8051
0.329522
17.3696
16.6419
0.341757
28.4722
16.8637
14.1431
0.39854
0.473429
16.7787
0.370059
15.2035
17.1468
0.358961
17.6476
0.379896
17.4215
17.2141
0.356073
18.5007
16.8726
0.331225
15.5364
0.429568
16.4742
0.35084
15.4433
14.941
0.319781
16.6155
0.312872
0.290093
16.1008
16.4759
10.8801
4.57959
0.216276
0.256735
5.16402
0.243768
8.19804
5.43803
12.2651
33.8051
12.5745
12.9477
17.5595
13.8041
12.4721
0.296078
0.233168
8.5823
6.60205
0.26187
15.4089
13.0093
15.0977
13.4078
13.8306
0.304741
0.296728
15.25
0.274301
16.3205
9.03432
2.74802
4.08255
0.190591
0.134835
2.52451
3.21609
0.133823
14.9824
12.1708
15.4239
15.6864
16.2545
12.3541
14.6257
14.6847
6.51351
12.0841
14.273
13.2349
12.3056
15.9555
2.75674
1.59694
0.154894
0.119855
1.60598
0.122208
2.69978
15.158
24.1211
15.4642
12.3871
16.5782
12.3818
16.6753
2.77181
0.179286
3.12056
0.13651
2.80434
3.17153
0.135307
2.72727
0.116256
2.40446
0.11686
2.45217
0.119894
2.65774
12.8329
6.1117
0.443122
0.423341
6.96356
11.7117
0.525045
185.31
31.6883
13.1791
13.487
0.589256
0.753385
14.7731
0.65229
11.1072
128.867
31.4053
13.6354
0.479769
15.1786
0.519331
15.0598
13.1742
0.564552
12.3485
0.495293
23.177
0.692532
6.818
0.609308
10.0708
4.78728
5.70087
0.260031
0.372143
0.31413
3.76799
9.57814
5.12719
4.04145
0.259506
0.281351
3.90323
6.23478
0.291185
16.1496
5.43136
11.922
14.5554
14.6066
12.0348
16.2219
30.9903
13.0073
16.179
12.8645
19.0904
71.4305
12.3769
16.0304
12.6713
17.1485
4.2119
0.230885
0.247031
3.28554
3.61905
0.271473
3.54475
6.23089
0.405413
0.329363
14.6773
7.461
0.341014
11.3197
0.377964
2.96753
0.449193
4.27681
0.44557
0.380342
2.86274
0.327611
1.32989
0.283913
1.69474
0.28146
0.329651
1.6228
0.378052
0.448897
4.28222
3.16847
0.445299
0.380176
2.86383
0.786194
14.5523
12.1774
0.944641
0.792214
12.0053
0.934103
0.671154
11.8799
0.56115
6.53434
0.557489
0.676152
11.776
0.667053
0.551613
11.6805
6.50089
0.668401
0.552666
11.7596
0.333575
1.43207
0.287058
1.67764
0.289121
0.332274
1.70633
0.387763
3.1189
0.461543
5.26211
0.45908
0.389424
3.07529
0.383815
0.453533
2.97091
5.23521
0.383035
0.454671
3.06002
0.382627
3.16774
5.25511
0.4478
0.453062
3.11076
0.377505
0.329507
1.46669
0.286114
1.72582
0.286862
0.329829
1.72913
0.378672
0.450006
5.24583
3.09723
0.448052
0.37976
3.09307
0.796124
14.5713
11.8435
0.928861
0.7836
12.0805
0.944162
0.682372
11.898
0.557773
6.70202
0.671058
0.566246
11.9607
0.677119
0.553727
11.7264
6.70205
0.666719
0.561962
11.9514
0.33749
1.4765
0.288486
1.74536
0.291804
0.33321
1.76336
0.392219
3.13713
0.459183
5.40789
0.387663
0.465297
3.1692
0.389223
0.455228
3.12198
5.40832
0.38402
0.461761
3.17113
1.42928
0.149318
0.102692
1.34835
2.24687
0.133138
1.38463
14.2004
11.998
15.5034
14.2955
14.9968
14.468
11.456
1.43399
1.48256
0.151638
0.143107
1.36793
1.52598
0.150437
13.8306
6.14706
11.7315
12.1489
12.7826
11.3642
13.6482
1.40641
0.150971
0.137044
1.20808
1.29817
0.144386
1.34274
1.42969
0.101653
2.3541
0.110356
2.25047
2.62794
0.13437
14.1211
14.7331
14.3397
12.5686
14.8946
11.452
13.979
1.48291
0.12347
1.95407
0.1513
1.61012
1.2131
0.133512
14.8582
14.8766
14.9517
14.7958
14.8063
14.6295
14.7496
14.8894
1.36232
1.15044
0.157783
0.159799
1.28876
0.148789
1.07925
1.45467
0.127604
1.50296
0.146732
1.56786
1.43246
0.13832
14.8474
14.8506
14.9397
14.8211
1.39914
0.160423
1.21543
0.160399
1.23439
0.144533
1.08648
1.29817
0.158022
1.34357
0.163618
0.164385
1.35379
1.29992
1.09494
0.854404
0.128946
0.137305
0.92853
0.144401
1.00997
13.2681
8.75169
10.9426
11.2629
7.37165
11.073
13.5851
13.5959
11.2655
27.0057
14.3727
11.1755
14.557
12.3187
1.17911
0.150336
0.134506
1.1203
1.02164
0.149824
1.26828
13.7275
14.6676
11.3597
26.8935
11.145
13.9253
14.6309
1.23684
0.167705
0.152608
1.26098
0.159358
1.29091
1.1666
0.644928
0.840264
0.101844
0.10784
0.752936
0.71408
0.0968505
3.31788
11.2493
26.6495
4.24849
5.27136
11.1001
3.20498
3.45052
10.2378
11.1313
3.69939
3.40512
11.066
3.55266
0.540198
0.551037
0.0883971
0.082199
0.576557
0.0835698
0.515327
3.80056
9.35159
26.6445
11.161
6.92779
11.0802
4.12267
0.592846
0.092503
0.669604
0.0921539
0.632307
0.626506
0.0887339
0.565949
0.0994915
0.581337
0.0845408
0.647045
0.0900899
0.52505
1.08068
1.05368
0.140659
0.146452
1.09225
1.11441
0.149817
14.6821
14.4519
14.5287
14.6445
14.8289
14.5637
14.852
14.3739
1.04567
1.1377
0.16069
0.167538
1.07131
0.158032
1.11281
14.7954
13.0378
14.5982
14.2784
1.08948
0.154947
1.20904
0.160189
1.10007
1.17523
0.156533
1.02652
0.153451
1.11179
0.163567
1.03763
0.153236
1.09465
0.848739
0.918765
0.106547
0.12775
0.114318
0.775957
0.99766
0.815482
0.773597
0.103118
0.126098
0.708
0.905
0.113937
5.01938
9.17969
11.2114
3.94774
3.82838
11.3928
4.21621
7.43111
11.3408
27.5377
14.2967
11.4322
11.3966
13.9682
6.14159
10.7618
11.2513
27.5384
11.435
5.2139
13.6901
0.723237
0.0960554
0.0940039
0.676729
0.681869
0.102653
0.665562
0.965219
0.141611
0.140786
1.2012
1.06657
0.127289
1.11162
0.35594
3.16294
0.430694
5.49235
0.425417
0.361595
3.23031
0.30065
1.51266
0.260218
2.9553
0.262672
0.296828
2.95364
0.351133
0.415476
5.93788
3.33512
0.421009
0.346398
3.3183
0.676286
12.3217
10.6987
0.799014
0.679186
10.5525
0.796938
0.562166
10.854
0.467259
8.52311
0.478974
0.547597
10.6582
0.584362
0.498714
10.7896
8.48543
0.587708
0.495404
10.6531
0.292486
1.53084
0.25941
2.94291
0.25726
0.295092
2.94545
0.332234
3.26294
0.388042
6.07932
0.397273
0.324865
3.33642
0.341055
0.412391
3.31982
6.05116
0.343921
0.409258
3.31936
0.311732
3.71339
0.371688
7.33646
0.369585
0.314193
3.45103
0.254224
1.78238
0.219461
2.80997
0.226931
0.246198
2.90357
0.293652
0.338624
6.89529
3.15642
0.348675
0.284738
3.28605
0.59052
9.39052
9.72333
0.657036
0.568898
9.46496
0.68166
0.525409
10.3004
0.455277
7.65834
0.531172
0.45085
9.59338
0.517135
0.427422
9.93368
7.69505
0.498064
0.443399
9.62309
0.268391
1.41407
0.229864
2.79486
0.237315
0.259211
2.69379
0.316367
3.15541
0.379607
5.46237
0.319049
0.37614
3.00699
0.310861
0.356885
3.14001
5.48915
0.300076
0.369741
3.02738
0.520713
0.087505
0.0861715
0.515714
0.53182
0.0858534
0.509229
2.87818
11.3818
3.48718
3.06654
2.96819
11.2286
0.524316
0.546286
0.0915269
0.0830795
0.548187
0.513608
0.0867328
2.87082
10.2683
2.83868
10.4558
2.91828
10.5975
2.85816
0.520286
0.0897154
0.0922245
0.520046
0.539229
0.0885029
0.508501
0.52574
0.0883065
0.550373
0.0825996
0.546725
0.515383
0.0847837
2.9267
3.093
10.8784
3.21511
10.9557
2.90804
0.465561
0.0883475
0.476672
0.0823943
0.493952
0.457426
0.0841359
2.98612
5.20685
3.4534
3.41982
2.79781
2.73417
2.73891
2.81644
0.464644
0.475514
0.0966741
0.0916823
0.483968
0.0892946
0.467359
0.484816
0.0976471
0.621879
0.100178
0.541855
0.529217
0.0904669
2.93262
2.996
3.19656
2.82009
0.455782
0.0856031
0.455276
0.0902079
0.449467
0.0862576
0.461795
0.448777
0.084119
0.471826
0.0824604
0.0830818
0.47046
0.452578
2.64072
10.2481
2.7447
10.3886
2.43324
10.3054
2.81483
2.62707
10.4192
2.69906
10.7409
2.71245
2.58671
2.67773
2.95811
10.81
10.7271
2.85192
2.78283
0.438215
0.0856137
0.0888697
0.44827
0.085468
0.443884
0.440392
1.87711
12.4488
1.96667
2.03915
1.70116
11.0715
1.91304
10.1538
9.8331
1.90094
1.45638
9.94164
2.23883
1.9959
2.40076
10.2506
2.13222
11.0841
2.29867
0.466529
0.439463
0.0995862
0.0931843
0.447163
0.459614
0.100245
2.60895
2.35221
2.46592
2.49103
2.63804
2.72032
2.7911
2.62991
0.469543
0.472671
0.096415
0.101495
0.468103
0.0997039
0.475016
2.62415
2.46348
2.47819
2.61297
0.465829
0.0984773
0.458657
0.0955519
0.464782
0.459923
0.0989851
0.472653
0.0935747
0.464179
0.102187
0.454648
0.100886
0.480825
2.42429
8.82096
9.66798
1.96659
2.099
9.31822
2.28297
2.49277
10.1277
2.68555
9.65085
2.57241
2.60165
2.47178
2.44629
10.0587
9.70242
2.3375
2.58676
8.18298
2.42794
14.0897
2.71182
8.25217
12.3276
8.7489
5.49438
3.32674
1.98601
1.38686
8.31369
94.3762
6.99899
11.4154
2.02422
2.32458
5.72575
14.7143
20.9598
36.4402
4.49649
13.6554
44.8632
3.41855
43.4118
4.83751
81.5048
3.51256
6.26148
1.99196
0.590236
1.1887
2.0377
1.24833
6.00187
6.11695
1.67303
2.38326
0.598114
7.45059
1.96744
1.27735
37.4094
12.7105
2.96475
3.19835
34.0658
39.1904
35.5986
10.8625
2.2238
18.4066
7.43641
2.4887
8.92602
6.84176
1.91524
2.06729
7.26246
39.9652
50.6493
30.2647
20.5405
13.6725
23.9595
4.23454
3.20152
19.8014
3.05721
6.15533
1.21141
79.5906
1.34604
2.72032
5.97128
8.10056
2.05134
1.42082
0.692107
6.27228
0.719745
2.31671
22.3425
3.81584
6.89975
2.10177
5.25132
1.56324
4.90208
49.5
4.15441
174.476
19.2623
2.16203
6.77039
18.3447
2.30108
34.3625
3.1724
32.0585
3.28676
4.63058
1.89786
0.552605
1.248
1.73518
5.39532
1.07005
19.6322
7.94414
3.05521
33.3124
2.53362
8.70345
9.24196
16.3371
20.5904
2.03364
1.19809
74.939
3.18995
2.55492
0.985702
33.5929
7.23379
15.5178
158.069
19.9367
5.59255
2.85559
38.5748
3.91077
20.9267
2.59173
3.26512
1.00223
22.3671
1.15256
36.3925
2.13003
3.63406
16.5807
7.14401
13.5321
40.5158
2.56299
1.89063
2.91529
1.23247
46.5639
0.889441
3.0268
9.07894
5.04373
43.321
17.0997
9.76542
46.181
11.0564
39.9859
6.96405
28.1468
148.033
24.6736
174.092
4.08235
49.4112
1.06933
1.55302
22.6055
2.05146
2.1809
2.6609
0.840806
1.47821
7.87261
4.35725
29.9697
1.87451
3.3598
3.83261
11.1823
28.6283
2.54529
12.8308
6.88821
17.0419
31.8951
3.26719
6.90825
28.9949
8.60601
45.4664
1.62625
5.61611
2.36924
11.2159
3.9191
76.6706
2.9154
0.771793
7.51647
2.34727
2.51302
1.04626
23.7723
22.1952
10.6968
1.24743
52.5684
4.62034
2.92043
45.5157
22.2534
51.9153
4.24996
7.29815
2.67779
1.89623
1.27282
38.6904
42.8055
70.4234
5.59269
91.5289
13.7162
2.00919
19.2827
7.79507
2.86739
4.87698
9.36848
1.53816
2.56574
5.06242
1.26638
3.42962
6.78574
4.94356
19.1949
1.20123
2.87856
1.49786
3.25699
66.6293
10.0811
60.0126
2.7363
3.44826
5.53868
19.8804
65.0396
11.094
7.86736
71.7657
5.20841
19.6044
6.08289
1.93154
2.85479
1.50861
12.6144
72.1067
0.856016
2.32086
17.6329
1.33335
1.5748
2.43406
0.758894
1.0714
2.86811
3.99562
19.4978
1.3146
2.13734
2.77758
5.86279
0.769136
1.58661
1.09921
2.39698
1.38914
3.62817
162.525
13.4584
5.91039
47.2895
6.80602
10.0641
3.87195
66.7868
21.2169
0.866909
4.13442
2.64871
62.5698
2.48281
1.63108
80.2506
3.29679
5.95932
20.4111
28.471
2.23717
8.50135
2.9602
13.0183
3.43761
25.8798
7.02998
52.896
10.6032
65.1737
24.6461
15.4996
20.5969
2.17324
21.8811
6.04671
16.1766
5.28551
35.4765
68.701
4.2729
6.47799
77.1667
12.6052
6.48733
204.352
25.1999
11.0907
32.2481
40.2509
95.7615
13.3439
63.0746
33.5166
20.14
146.394
7.09705
11.0816
2.97042
3.06213
17.669
2.0754
23.4799
47.6871
23.3894
331.001
7.9012
4.28951
3.86458
2.10676
0.813567
10.099
1.17149
1.81175
23.2924
24.3287
4.71779
9.47839
7.09413
9.27632
10.3352
404.197
28.2027
10.1903
4.87217
2.19962
2.34957
39.3445
11.0934
1.3548
8.51837
13.308
9.52408
36.7217
5.76856
19.0663
6.87529
93.8708
2.3943
42.298
4.41858
3.79989
11.4736
57.5287
47.7784
2.86809
12.5022
102.048
34.0358
6.63058
4.90486
1.93539
347.375
7.28632
2.23337
22.3947
3.87141
1.83191
1.98357
25.7348
4.73032
2.10951
8.47803
2.50124
1.21783
446.816
34.7448
9.25096
8.68766
12.3746
6.58799
7.69392
100.71
199.496
31.2481
28.8304
8.87272
5.61343
4.27216
38.5194
6.83636
492.103
36.0137
2.06533
10.9431
6.52593
1.1591
2.10364
29.4505
1.54983
7.06906
40.5899
7.04469
7.80948
363.961
4.94635
29.609
5.20331
3.06089
12.3942
185.146
3.65704
12.2026
3.14077
7.02269
86.0487
1.54224
27.5643
7.13253
27.362
347.059
8.65274
36.3931
133.856
17.9957
4.38224
7.37334
388.904
18.9391
71.8872
22.8204
318.045
42.5001
0.875255
4.33907
4.92534
2.08833
1.27479
2.82592
1.17517
53.6702
5.95368
7.56859
477.86
4.98019
164.952
22.9802
216.082
43.0617
5.65061
1.75363
2.25946
2.11616
6.92347
10.4318
21.1267
3.89428
34.4389
2.0499
145.376
2.49274
8.88847
26.9354
4.70293
115.338
2.42172
3.05859
35.6715
77.4993
172.525
19.486
184.602
42.2619
4.09168
10.2121
1.87829
2.51576
6.64238
73.0902
19.5543
403.861
14.4764
2.72673
5.26103
19.2217
166.903
11.1606
13.1596
48.6331
39.8694
9.4435
10.2846
5.50665
484.838
203.38
60.1892
17.3761
13.9302
1.73809
1.96929
3.09888
3.25694
4.90817
6.57212
1.86009
4.13205
43.89
8.23872
2.60982
6.68773
2.34189
8.83453
18.8895
74.8378
3.18329
4.49834
312.916
6.05508
14.1201
83.3518
15.8107
13.0415
48.7053
588.631
19.1254
43.0834
5.68001
3.98985
2.6552
41.2167
2.1395
16.339
7.94421
6.59495
43.3473
9.37785
22.6963
17.4945
4.40725
5.34337
6.86266
34.3486
2.82179
2.48856
22.7893
4.06877
9.31175
26.8569
240.726
61.1859
15.0194
12.0107
7.45914
19.5202
3.43068
202.521
9.33194
43.8069
202.553
53.6898
13.1129
462.401
18.8015
77.6102
11.64
35.5987
214.013
6.37537
15.8341
225.504
17.2018
47.7318
219.045
14.5665
44.9568
12.0532
8.35853
10.917
79.7981
14.9618
25.2165
46.6459
33.2783
16.0473
195.528
211.608
114.465
41.3683
12.4258
15.4931
156.413
32.1591
275.766
50.0145
26.1434
7.08953
189.873
2.8831
3.2329
22.9076
14.9242
1.95211
27.6681
41.9532
395.232
10.2852
13.3085
17.4536
609.55
50.7501
11.0702
5.68965
1.39564
2.06182
9.99434
42.065
1.54249
4.86604
10.5709
6.46073
240.062
15.0138
7.53095
1.83461
2.3496
11.8905
7.13535
6.49146
2.97498
1.83573
5.85541
33.2841
35.4148
9.49319
5.65837
56.8778
41.0586
2.4236
259.095
2.98632
3.92122
6.59006
4.02488
41.895
526.897
8.73959
3.48656
3.00131
31.6735
7.11378
115.836
3.24118
13.6938
5.92461
3.10694
3.43065
41.3829
8.90493
12.12
3.91783
2.50667
0.786358
0.596599
1.62998
4.50738
0.489424
1.03066
3.80586
2.07384
4.69759
12.5241
17.5057
2.1565
4.54457
1.07994
1.98259
0.656784
3.63215
0.641793
4.50241
1.11205
1.45256
18.2601
4.7466
2.06447
14.833
2.6575
7.04097
1.23574
2.22323
8.12964
1.08795
10.1513
1.92953
11.3254
1.60321
25.2725
17.6856
24.0204
38.3102
7.52235
2.60224
1.19872
1.27488
6.47867
4.37973
52.1609
126.152
5.39263
1.23828
0.616495
1.76027
5.11147
1.0978
0.659497
16.5203
4.31129
12.5301
78.1051
4.76963
51.8604
9.39481
1.78153
2.32243
0.952442
20.01
1.9319
0.893394
14.927
2.78217
20.087
4.86537
2.259
37.4565
8.29003
3.01224
49.6113
25.077
63.4565
3.51613
17.8487
26.4107
1.79275
3.69026
12.3135
1.80241
12.1446
3.47223
1.85587
7.18383
2.61232
12.3706
1.46126
3.53833
5.80736
1.10365
2.54855
50.5092
5.07266
1.33402
70.8563
9.9919
4.51672
9.0144
4.72935
16.5271
18.6091
5.57406
2.68921
1.41052
6.45505
1.39038
154.718
17.5167
15.497
11.6984
2.58534
11.2675
16.1499
19.5758
20.3576
19.3726
2.72697
10.0311
11.7288
3.54015
14.2092
19.5386
64.6537
63.6355
3.52755
19.2942
19.3975
22.9687
64.0368
1.69012
2.22864
62.5817
4.71448
6.03312
2.81252
1.42558
1.83867
6.67144
2.60964
64.2493
1.57066
6.82296
3.28038
2.73227
23.8671
1.76966
1.13876
1.04748
5.96715
2.74529
4.95672
2.84953
12.966
6.54114
2.26546
4.56396
13.0066
24.8711
2.57837
3.44878
1.21174
11.5296
70.2818
1.73125
2.20961
1.56909
13.2185
2.59025
1.08415
0.97685
16.9533
1.79925
3.90378
15.4715
7.10223
6.92488
60.5532
1.86928
1.65933
3.26133
65.51
1.08315
3.13243
19.5447
10.4407
0.783484
2.52335
1.52487
1.90408
1.32525
16.5445
51.0865
5.28575
4.75521
46.6698
16.9181
2.54092
4.92404
2.0394
16.4303
53.4127
9.08569
4.6494
20.8396
3.20458
5.5142
2.62133
53.9085
58.3968
45.4154
55.0405
1.18596
2.74029
1.90332
4.37096
2.36272
17.9238
25.2384
16.8563
4.519
17.2673
3.12124
9.5395
19.2231
4.43039
20.955
5.68718
62.4468
65.7231
8.87626
10.4891
1.92816
22.3766
6.29149
3.53507
2.28115
4.92335
2.83679
1.3871
5.83962
1.00285
2.29057
1.53378
0.946886
4.31631
2.20496
209.457
8.6848
3.70639
2.20789
10.5723
3.85858
69.681
25.8385
21.4076
4.99697
4.2177
33.2601
13.5957
2.85771
4.0737
24.5444
2.10836
21.8613
2.79947
4.3847
15.9793
69.083
205.757
13.728
168.312
1.68385
3.68097
2.03761
8.33463
5.71274
4.36509
57.3397
7.64483
200.312
23.0439
15.2403
5.60124
14.4596
8.6785
20.2762
23.4386
10.437
4.21998
5.53751
6.97402
4.92884
1.50114
2.52002
19.8721
1.67546
37.6192
3.85737
12.4917
3.04752
6.87048
13.596
6.6854
83.637
1.92841
2.98416
1.86377
8.03445
58.0801
16.4854
12.4043
65.4522
4.86172
23.8453
25.7618
57.882
4.41944
15.3111
19.7036
7.52714
7.34528
12.9973
8.8414
5.87189
152.609
6.6178
7.90689
6.02497
9.06094
19.0733
24.7283
10.9338
361.351
19.1331
2.59747
1.91691
3.82559
39.9145
16.4502
19.4206
7.44453
5.27079
87.9257
4.40473
8.23057
6.54435
155.634
3.01718
9.71321
193.328
4.6374
21.5869
27.2982
7.27241
1.80847
1.18785
4.64155
18.0925
1.43214
85.7818
9.80124
34.2826
16.085
26.0667
18.7714
3.15202
1.28845
191.707
1.64403
7.38172
157.25
40.4426
38.5414
13.4975
3.75745
3.87438
400.94
75.1744
2.13503
7.03506
1.01448
3.42899
1.09384
4.15156
1.48424
4.23808
5.0733
5.383
1.48982
1.07155
4.38744
31.7091
1.26694
31.4482
4.79133
9.11406
9.42066
21.8127
112.365
370.841
5.63748
4.13567
1.46881
0.939689
5.69442
1.35008
2.97782
48.6344
35.5167
13.5065
186.795
8.38946
2.04971
54.6044
1.80939
23.7948
35.3253
1.89124
52.0978
41.4367
490.167
56.3102
30.6307
64.3176
120.76
4.89642
8.53426
5.90259
112.066
8.24476
2.20695
11.6691
15.2518
1.75651
35.0868
2.0798
1.77585
3.94854
4.72435
30.0365
66.3993
4.99335
2.62876
5.98163
35.8254
7.89532
6.28279
4.24365
398.348
55.4689
2.16709
3.37418
4.08667
5.52592
4.85289
98.1539
7.09671
4.34654
12.8653
7.72081
35.6237
8.19949
4.09234
12.4408
1.38263
1.12435
6.97504
4.59814
0.968726
21.121
37.2725
30.5953
6.63622
3.04423
0.626322
0.907878
3.69291
3.67431
0.74941
1.98607
8.81679
5.93412
5.94401
7.44183
1.7964
4.93197
45.9581
1.5437
8.73408
1.91645
1.25144
1.50495
6.16427
28.7976
1.73506
11.2194
1.8155
1.48468
1.92866
3.87447
19.0604
36.289
23.5504
2.12654
2.32452
91.8421
28.8482
13.2803
10.0035
42.4544
29.5407
13.5184
49.3563
190.283
44.3739
13.8051
17.3226
6.39114
200.796
4.60199
17.2074
5.38675
21.6524
40.5201
7.38479
84.4497
41.0659
13.5913
9.5123
241.075
13.4304
147.908
49.8749
462.982
31.5817
33.103
168.83
33.9174
3.42921
7.88244
4.57082
65.317
22.1814
2.49828
9.11394
3.74377
8.74275
35.8732
3.46897
680.632
16.0342
42.0822
115.2
55.2187
46.2607
53.7755
11.5756
7.59308
191.31
6.95603
662.719
2.71857
25.3254
4.09847
22.9444
3.11532
13.0853
2.25576
3.81929
5.55733
30.9179
7.10395
14.5748
2.62694
2.43235
30.284
2.6642
6.90159
3.28179
48.6373
1.85209
2.97281
1.41092
7.31271
6.8368
13.9732
1.97444
1.80733
23.8188
12.1199
9.89343
10.03
7.0039
553.212
10.2581
96.5317
14.1722
6.83317
260.65
10.447
19.6562
589.191
29.7107
31.0399
6.36459
14.6808
7.38679
7.35598
1.72991
2.35069
28.4955
44.8887
1.94699
6.39739
7.21851
23.1708
2.71585
2.35538
56.3751
8.55474
2.11753
66.1816
111.742
233.659
45.6041
40.1822
13.4775
70.7059
10.1104
13.5088
10.2041
6.02675
5.61939
3.03055
58.0807
22.6893
5.72572
226.837
55.0134
7.21879
4.00253
24.7769
6.65946
592.658
73.4604
43.7356
29.2798
3.34486
595.555
5.09253
52.5902
101.233
2.98089
35.4276
13.7583
71.3287
13.191
7.7027
1.51632
2.01031
3.42772
6.86419
2.14162
3.44212
114.626
288.084
17.0755
28.6078
3.60609
2.4278
63.7171
11.487
2.66455
34.6099
14.5192
22.0233
11.4716
0.932195
5.49559
1.33923
2.81129
1.40076
2.89303
0.929721
0.909698
1.22846
2.60633
11.3118
2.34664
0.881393
1.32474
0.991386
3.02655
1.71651
11.682
1.12928
2.58824
1.48389
2.99413
17.1856
1.05623
1.52171
3.29782
0.975633
15.7255
6.2251
4.54199
8.06361
3.9584
10.3324
9.72958
10.72
12.5071
2.82842
1.49116
0.95959
15.0247
0.952891
15.6103
2.82657
52.225
3.24268
5.47785
74.5476
5.96685
12.6953
10.7153
3.62935
8.21075
151.001
6.01951
9.60523
10.6573
1.25202
2.13317
3.96346
18.1007
1.37474
3.39846
1.90838
1.19439
2.94482
1.7127
18.3528
1.15126
3.27735
1.82223
51.7009
2.73825
5.43591
4.47525
47.5968
6.31994
56.8536
6.90945
2.67534
4.03331
44.8161
4.31753
47.2362
9.31495
58.9399
7.28995
0.856214
1.27508
2.39725
3.81328
0.907369
2.20438
1.19429
0.858651
1.99401
3.40142
1.20718
2.00727
0.883997
1.18388
2.52024
0.998509
1.2942
13.302
2.75638
0.881301
12.304
4.70262
3.10044
5.03222
2.97757
8.14821
9.56598
2.52212
1.39045
0.937467
14.7876
2.77879
0.913453
12.6862
8.12309
8.69482
4.53855
25.3602
2.20324
16.463
3.97918
13.2125
3.27997
3.67581
4.31759
13.4811
3.71707
2.05699
15.839
3.2606
16.5306
3.51977
2.13939
4.85899
25.534
3.20419
24.0539
5.88002
23.9044
5.24582
2.38667
3.77707
42.8197
3.45416
25.7439
4.4622
19.04
5.00434
0.844096
1.92614
1.1849
2.8107
0.886613
1.76907
1.12862
4.50646
26.3784
6.13863
18.1912
3.75786
1.89659
18.2412
2.1588
3.24136
4.66082
2.97914
18.9391
2.52315
5.59038
2.18081
4.37529
1.08375
1.41391
1.03964
2.49123
3.70481
4.09557
13.5084
15.6948
3.50116
200.785
5.89742
56.0131
3.48614
6.3717
25.2268
21.6889
4.27395
5.74383
19.4057
2.88454
3.93748
5.18569
22.5656
8.57249
37.6068
6.48561
72.848
5.65416
3.88765
54.7556
7.08817
3.36801
3.32524
1.48906
19.6965
2.11602
3.71358
1.44178
15.5318
10.0809
12.4669
83.8413
5.29143
2.94551
54.0997
3.1887
4.283
2.86665
5.36446
1.17456
1.79536
1.24861
2.93882
14.0724
81.6536
52.8222
69.2802
2.6182
1.86678
6.96256
3.06035
10.6595
33.837
9.91417
4.43739
6.58718
92.7728
14.6664
2.1617
3.85035
3.59153
10.6433
20.814
38.5406
3.13307
7.55151
5.39663
11.4661
2.96583
1.9883
11.5439
1.81866
3.39009
2.85242
68.1877
10.1442
1.82022
1.77463
199.767
2.97319
3.06485
13.4098
3.70812
9.91288
25.1515
25.5568
47.7427
11.4235
9.2
83.9198
101.27
65.4858
5.33874
1.68555
1.35075
3.0191
1.83716
3.26119
4.85464
22.0316
4.22104
3.06535
2.72609
21.2303
6.53469
3.5132
1.36813
1.99047
1.86092
3.79427
14.3826
36.5625
7.16029
8.52439
24.5602
255.686
64.6987
53.7409
4.2543
7.11271
4.6976
206.139
6.06016
2.34306
1.43974
7.0373
24.6833
1.57243
31.6543
2.14629
2.51723
62.336
1.74158
6.93322
1.63295
2.73767
37.9231
3.88524
63.4257
4.79671
87.7179
5.71871
3.55063
12.3396
20.2195
102.783
19.2866
2.60287
5.76028
1.5212
31.8642
2.25416
4.54292
41.8896
7.15297
3.25339
4.02766
23.9704
20.1009
14.5481
21.3825
3.95507
1.62414
2.05349
2.42306
4.59987
16.2802
2.44779
13.66
3.30268
46.2763
3.75865
1.64337
1.98854
181.832
19.8591
1.73934
31.6958
3.24809
1.57603
1.56307
1.20027
32.4826
9.34488
25.0639
1.41649
1.28559
0.932272
3.69226
2.99982
0.649638
3.79149
0.777393
0.849187
1.27542
23.0139
11.5648
1.72137
8.9623
1.39922
1.31842
1.08881
0.975912
3.90166
28.693
4.57524
0.890516
1.14472
1.05693
4.73841
5.60993
1.44731
4.42003
1.25065
1.33121
0.967064
0.98457
2.69084
4.13791
4.04627
0.807742
1.09893
5.99464
5.75745
5.13787
463.987
2.22745
3.12042
17.684
66.5615
4.5604
32.8417
3.93674
4.66001
191.981
4.30892
6.74765
5.87491
6.77171
3.92781
172.035
3.71588
3.42491
5.37377
4.27928
5.02006
35.8574
7.44735
8.99928
22.5117
6.29474
11.77
6.33731
5.91999
7.63543
34.1257
1.84042
2.13086
16.0561
55.4984
1.8961
38.3146
36.2716
1.73759
61.3853
3.95552
22.353
388.765
1.95931
44.4182
106.02
46.2451
4.3753
4.24081
109.423
2.82803
188.222
0.621443
3.4692
0.685855
1.70124
0.759302
2.77901
0.495273
230.651
25.4631
18.3086
21.6478
5.27822
3.5721
535.447
36.9132
2.73155
221.6
39.4368
2.22273
1.62711
5.42923
6.49254
1.98266
10.2086
46.7719
7.07643
2.35785
1.70629
17.9042
6.05917
2.23383
178.383
40.5347
64.0866
61.6458
11.7513
19.5617
26.3113
10.9708
11.2872
15.015
8.0816
11.8444
5.87426
1.70786
7.92154
2.03156
6.63198
7.0805
1.59197
9.24494
651.135
7.46696
8.13005
12.2602
14.7298
60.5213
31.2953
39.6189
3.92376
6.19954
1.68293
1.12231
6.58704
3.36842
1.21899
35.5723
54.6025
171.627
6.92302
5.06077
45.0603
5.41511
52.363
4.9948
42.9117
2.61235
193.123
26.552
3.78702
233.282
107.959
42.1853
11.1394
2.87243
2.03976
21.1056
12.6076
2.58351
12.4843
65.6062
41.5717
9.92336
7.73428
5.42843
42.7519
5.78592
6.55872
8.70173
6.34889
50.2056
6.90051
11.33
11.7336
13.4504
29.9407
6.66901
29.5293
9.01815
17.2399
12.842
56.5134
170.863
9.46822
1.99102
51.4346
1.66018
18.7784
6.65164
1.60039
5.59473
1.69979
5.71111
1.2388
6.51711
4.98284
1.49946
48.1292
521.043
28.3792
33.2404
29.658
46.6286
13.1027
5.66705
2.89633
1.32991
1.16739
5.51368
4.41094
1.45195
5.84259
11.8443
9.96141
6.5851
3.61525
2.23337
40.1911
31.5895
91.2663
2.98684
2.35451
6.32354
157.614
7.26796
625.257
7.51479
5.66912
5.49787
230.524
37.7448
2.92974
157.04
5.96863
2.78521
29.6635
9.67907
57.4076
8.62429
5.54237
1.50938
38.4864
1.38975
12.1419
5.26433
1.37961
43.5641
30.0355
46.7346
15.726
60.8461
192.625
56.7101
19.759
4.44505
2.51675
1.21981
0.801321
5.3163
2.3552
1.12087
14.8183
10.2913
11.133
10.222
8.74643
8.25221
10.4457
7.30327
6.93066
4.75476
20.7728
6.67246
3.41734
5.97692
12.3402
6.35839
10.4139
6.35729
636.782
19.1174
3.31972
6.21956
3.01479
2.48192
4.63775
0.754117
1.06985
2.5768
0.759319
4.42399
4.32993
3.4177
4.48719
3.34207
6.36448
23.5144
26.6671
6.06268
6.49505
39.6006
6.7876
33.5632
2.17976
1.0479
0.754721
3.56757
0.7446
3.70405
2.14057
12.8166
1.73401
2.58222
13.2247
2.92368
3.27655
10.1653
3.07812
1.81104
15.373
3.21966
13.8321
3.0227
2.57098
9.84853
3.04383
13.2122
1.62829
2.59655
2.64077
15.617
4.84477
7.26698
2.55407
59.854
74.2508
188.222
1.59246
2.69929
10.2343
2.55601
11.6754
67.1458
2.50436
7.31695
2.56598
2.07528
0.6675
0.962938
3.28074
2.00203
0.69173
3.42483
4.02441
3.01358
3.86253
3.08832
6.05893
24.1267
6.20561
23.4951
2.15133
1.00091
0.722215
3.62452
2.18019
0.710807
3.56932
5.94503
21.8328
5.68269
23.0275
50.0153
2.05176
9.29702
1.30304
8.82613
57.7809
1.93546
31.1625
49.5127
187.765
3.64465
2.99593
3.0455
62.1342
3.32407
3.53747
3.03035
54.6678
52.8085
39.4897
1.34919
7.45304
1.95086
8.26827
1.9784
26.0253
63.0115
1.42588
2.05593
9.40875
2.2385
9.98154
58.8519
4.24059
5.08217
4.01942
61.3879
59.7159
65.0689
1.49973
2.47359
10.4799
67.2599
2.37921
10.2399
3.36843
4.82356
3.73854
55.3947
58.4724
2.20149
18.0403
3.85957
2.33542
17.131
3.52998
1.36633
0.977482
2.99033
5.32195
0.977558
11.8591
1.40652
1.44982
12.6501
1.0161
3.06274
1.01322
1.47735
12.0636
2.07271
17.9357
3.49705
16.7961
3.26011
2.15303
14.8654
222.133
14.5504
20.4799
4.21327
5.04313
12.9525
30.8963
49.553
3.73428
1.41314
2.55542
0.975948
4.15891
1.30388
2.4119
6.26562
2.42773
1.55981
18.089
1.6724
5.16059
29.4067
16.3973
5.97375
20.4086
5.27653
24.2083
18.6972
2.75258
22.0638
4.41674
2.68662
31.4781
4.65746
2.03711
1.30866
21.4764
4.15805
1.911
1.3718
17.6675
3.39021
56.0524
4.18586
3.06598
33.7511
5.86244
1.73111
18.0054
1.16935
3.93185
1.18497
1.69698
17.1137
11.1732
41.5463
71.3433
81.7188
11.2721
72.7167
219.188
9.02243
3.87413
3.38002
11.0483
3.8916
1.82552
1.38353
22.142
1.31262
4.52109
12.7192
12.3603
34.4965
9.76509
57.3767
8.47945
6.09148
3.28864
6.7965
13.5177
286.343
15.586
76.3505
1.72963
8.7997
62.9964
2.36739
11.1057
1.59808
2.65087
1.23277
0.93043
2.69648
4.79487
0.881571
1.32863
4.40666
1.1871
3.61971
2.44155
0.818713
0.854408
3.8834
1.11669
1.82355
71.1335
14.2954
3.15486
2.00122
12.196
2.82554
30.2722
25.9119
5.00719
13.0813
14.8587
16.5003
4.84944
14.2977
22.093
26.8257
4.91087
3.45592
51.8507
3.13969
4.11688
4.24253
9.1932
3.93718
10.5049
4.4899
39.5923
2.85151
2.93239
4.46279
4.4547
14.7342
5.4948
13.0573
32.9935
63.6848
7.44473
33.0091
28.1731
18.1564
7.02741
26.1509
88.8321
70.6239
1.42034
8.35434
2.23692
25.9309
1.51978
7.27261
2.05655
1.01162
0.783565
2.01708
3.19009
0.820532
3.02408
1.01213
1.05101
3.26366
0.805872
1.99974
0.793671
1.07822
3.04331
1.37343
24.9564
5.30238
1.93192
7.41059
1.95146
1.37521
5.20794
3.74336
4.30241
4.3998
7.48001
33.1095
9.3611
21.0954
2.79325
1.30904
0.923472
4.03882
0.973793
2.67533
4.24456
5.40309
5.26497
6.55072
4.60174
7.02762
16.0922
5.91601
19.5559
13.0537
13.5987
20.136
8.58465
4.52473
0.90916
3.9995
0.95517
4.50991
4.15318
0.892653
11.0567
7.44541
25.8491
7.2583
26.0964
31.1691
49.763
23.0651
3.30044
4.25712
0.864583
0.610023
4.04634
2.19872
0.716583
8.6176
7.05669
7.56021
7.73594
24.7612
14.5086
33.713
35.1029
26.3863
33.3182
18.2405
38.0215
4.05686
0.743097
36.226
0.8129
6.99483
5.04326
0.739662
3.32349
0.753387
2.2846
0.702199
3.80008
3.59251
0.756463
19.782
7.8848
12.3057
22.5083
30.3949
376.148
42.6777
39.4916
3.53256
3.60006
0.806824
0.780155
3.43155
3.93177
0.789195
54.7862
19.8909
27.3591
38.3445
20.1563
1.23485
5.31742
0.983871
10.6707
4.19115
1.16668
371.986
30.7672
1.20518
11.0451
1.03332
24.1067
7.94701
1.16673
88.0067
37.997
30.4414
152.372
47.0059
9.76844
3.96622
0.864304
0.867489
3.73446
5.61579
0.89419
6.97962
46.344
7.52168
12.6075
7.49976
3.82166
9.18523
4.22798
6.86804
6.76756
7.46373
9.46109
1.56166
3.91277
0.525174
0.605684
1.69753
2.41566
0.504804
6.94923
9.40591
7.01548
4.28454
4.82556
5.84975
8.89335
5.05869
8.76904
7.48568
7.94662
5.19404
9.2373
13.9613
8.96458
7.61024
6.39857
578.884
5.42512
6.04147
5.62723
4.49685
29.0341
5.85278
34.987
5.77182
3.11128
2.5264
2.21783
9.53919
36.2819
26.2542
2.09846
2.75882
2.77176
16.7905
9.39792
1.94369
16.3011
2.29284
2.55659
5.54089
101.456
6.33479
48.9531
6.16374
5.89077
66.8079
140.601
175.451
15.3468
221.352
8.74122
6.47109
10.1839
4.86313
2.12557
1.0198
3.68931
0.703113
4.81092
2.08915
0.703604
9.49578
24.3865
15.251
12.2232
8.98029
26.173
56.8695
8.68877
9.54658
7.8902
9.00923
5.34426
2.54784
26.4834
6.22583
168.514
5.04274
2.68296
19.519
2.12283
1.51473
6.52764
35.9092
1.6366
42.5192
1.98656
2.27213
15.6137
1.84048
5.45624
1.64254
2.39606
49.3682
2.36148
106.665
2.75323
14.008
3.52774
17.6989
2.22327
5.4941
42.6747
2.61278
5.08443
3.21837
4.09126
7.82898
7.13399
4.40808
5.48069
8.20265
9.59979
5.17301
4.78028
53.0922
5.40719
5.00568
4.78027
51.9928
101.292
95.1751
37.1718
48.7407
628.224
164.749
31.9446
33.6843
41.4236
1.48964
2.13694
16.2165
9.98647
7.02264
2.08436
1.76632
1.40791
0.92386
5.77656
4.14698
5.61985
1.36048
1.11277
1.47747
13.6912
5.84543
1.9509
7.12513
1.9892
1.53936
1.36222
5.21485
4.72502
1.17856
4.94539
1.41882
1.16531
4.43423
538.459
2.29154
24.0441
5.18592
148.636
2.17314
5.23618
4.545
146.588
4.72706
520.063
4.71305
4.41476
6.11544
3.53054
4.78633
3.05765
21.027
49.7764
2.1154
95.4546
2.08389
2.45416
2.12523
27.7503
2.20163
10.9582
2.26479
25.7021
1.98396
1.50743
1.41329
25.7858
5.36108
1.6929
11.2624
1.3523
2.13071
34.727
2.47312
67.3248
2.31407
2.29908
40.8212
1.59173
5.649
5.41851
1.2279
5.95743
1.50882
1.29882
1.7978
2.74593
0.78118
0.931029
1.86797
0.769671
2.66227
3.18986
2.97944
3.39529
2.87961
4.45211
12.9791
12.8597
4.55235
4.30987
13.2377
4.60099
12.4144
1.81086
0.957407
0.79711
2.62996
0.798139
2.62769
1.84039
24.7148
6.59234
1.32177
1.78577
6.96399
1.86488
22.2031
28.8692
24.3517
57.8712
2.97504
3.13716
61.4306
2.85393
23.6003
24.9319
24.362
1.3217
7.2907
1.9693
6.7919
25.6594
1.89598
56.9955
2.67224
4.38997
2.80164
34.4403
16.3554
6.66985
1.23332
1.75604
1.70032
6.45897
21.8426
26.2534
2.4301
3.68179
2.48957
25.3999
21.1797
21.6762
23.8748
21.7188
15.5261
1.25659
1.67977
5.72854
1.71443
5.8912
14.9116
26.6104
2.58955
3.80074
2.50007
32.6983
1.6813
0.654593
0.818759
2.34653
1.63573
0.677976
2.44487
3.12191
2.74775
2.90649
2.80744
4.35817
13.0844
4.63646
11.7721
1.81785
0.900955
0.767972
2.76701
1.90666
0.745857
2.66726
4.16574
9.52639
3.81981
10.5021
11.0978
1.39949
3.62772
1.02286
3.46872
13.1013
1.37048
203.403
12.6649
12.4272
62.4667
15.3483
68.0537
2.66442
1.85685
1.86248
14.0336
17.6931
1.99231
2.81508
20.7774
1.94087
12.9263
12.5106
13.8563
1.00135
3.19438
1.31896
3.33585
1.32999
10.4806
13.4409
1.07257
1.34814
3.55628
1.43947
3.75626
12.7942
23.2872
2.36289
3.32925
25.3347
2.28947
21.0671
18.9146
14.3532
1.18409
1.63381
4.2837
14.9593
1.5949
4.13514
21.4342
1.89432
3.01442
2.05896
20.2716
12.8257
16.9675
1.12401
3.51527
1.55327
8.78962
1.22962
3.15961
1.47199
1.14558
4.95654
3.27838
1.43373
3.33935
1.47261
1.1943
93.73
16.1839
15.3575
16.7602
4.093
11.1884
258.526
18.734
15.5623
10.6674
4.02846
11.0446
3.61476
18.927
2.30559
81.0244
2.51067
3.39206
3.3934
9.70411
3.8832
7.38347
3.74919
20.3311
2.67091
4.06183
2.51424
5.68712
5.78391
5.27712
6.67128
74.6139
74.7615
1.29447
14.1562
3.60868
1.68124
1.25177
3.96377
1.75065
1.2587
18.1238
4.57259
1.86082
1.34371
4.3046
1.72003
12.618
34.6186
10.616
3.31312
6.72516
7.49003
8.74176
3.27071
7.41122
33.862
9.11035
10.6893
2.81498
2.17525
12.4635
78.5581
2.04282
3.14877
55.1264
3.89417
5.7179
70.3372
96.146
3.91465
4.21782
2.75909
12.79
1.92383
34.1329
1.97783
42.5609
2.68729
4.19613
5.34405
4.76424
262.282
4.49529
0.912621
2.41329
3.78472
1.06042
2.6691
0.881514
1.18052
0.997856
4.21691
3.06303
1.29224
1.07812
2.95091
1.27468
6.50372
13.8766
5.92046
4.05217
4.04025
4.40441
4.92505
4.35153
4.56023
12.749
5.21216
5.71581
35.6047
38.4046
1.6914
1.31874
4.64637
17.3022
14.0721
1.30871
1.8107
2.35428
3.18755
17.1891
81.794
19.469
2.33896
3.33055
1.75611
4.58246
12.9919
1.282
17.5771
1.31937
1.6999
2.37131
26.7054
95.6639
3.66264
22.1229
2.57534
3.40258
6.52545
24.0436
7.83349
2.94128
6.48557
6.25312
4.90926
2.77018
5.82969
26.0531
8.70899
8.45926
0.766582
2.28943
1.03178
3.17
0.795321
2.24035
0.986559
0.790432
3.11979
2.16773
1.02036
2.2134
1.0067
0.7975
2.11579
8.91244
1.39549
17.6002
1.58574
25.0863
1.90126
3.2696
5.02856
61.5123
3.50653
38.6939
4.8057
2.34836
9.53375
1.72387
32.7868
2.40451
1.69447
27.2279
3.05646
27.1305
3.81439
35.9842
2.69143
4.52107
4.54936
3.83035
84.2575
3.83359
428.156
4.25687
4.33419
2.18461
33.464
4.29805
152.328
1.85838
3.93409
3.53428
3.94045
3.50121
2.58495
44.7713
31.4225
1.57493
87.9737
1.86689
1.57395
3.0859
3.37626
3.06554
3.60985
2.83898
2.9934
3.04187
2.0755
3.30813
3.94002
3.51349
3.89009
2.54614
2.18946
1.85298
2.56656
2.64925
3.35915
3.1056
2.37813
6.24375
5.60685
6.411
5.30308
3.26603
3.04877
7.73786
2.92369
4.36166
2.51456
4.89973
2.16081
2.31755
3.65507
55.0846
3.70979
4.10174
39.1698
1.41829
1.49604
26.1384
16.3546
1.37288
31.6436
1.58582
1.54121
386.234
1.75335
30.6359
1.28371
3.47883
36.4069
1.45094
41.0451
1.47864
18.4952
1.53593
33.4594
1.58183
1.99045
20.5814
1.77708
7.05435
1.93107
15.8606
1.53681
1.83103
1.73587
46.1236
17.7193
1.9838
21.9629
1.76848
1.91816
29.0324
3.75387
51.0848
2.34974
1.913
22.8968
1.88277
6.31513
11.9847
1.34512
15.2062
1.36703
1.80202
155.4
183.743
1.35848
4.82833
11.115
1.51422
5.07579
1.45458
1.34317
1.29625
0.899567
2.60297
5.59348
5.63686
0.86671
1.34883
1.20403
4.82662
2.35385
0.784565
5.17596
0.799551
1.17134
1.43979
12.4691
5.59595
1.89397
5.2968
1.50777
1.60181
67.8582
32.4209
42.5208
11.8711
9.47012
11.936
27.0504
7.44697
12.2769
29.884
14.5335
38.6557
1.96526
22.9352
38.721
2.01072
2.09604
30.7354
1.92868
4.14489
4.67996
94.8346
4.15959
5.16236
47.6067
2.90953
31.7429
4.93806
4.98231
2.18106
43.1874
2.04839
42.0227
44.4496
2.08647
2.23151
32.6324
2.06397
41.4895
38.2502
1.25381
6.17218
1.45984
5.1475
1.37085
1.37359
5.59548
1.16719
4.69134
1.30561
5.57604
1.28275
4.95729
1.20915
1.28557
7.28935
4.65871
1.19343
11.6789
1.22831
1.22322
1.9041
1.71221
27.5293
15.4008
1.7872
1.85827
56.2905
1.71777
12.8796
25.63
1.75471
1.66216
39.071
1.67235
1.58707
4.56906
57.0063
1.27865
1.75453
24.1592
1.2868
39.2109
16.0063
33.9464
31.571
37.4494
52.4494
40.4491
14.4372
26.8307
31.8447
16.6541
8.51581
10.0243
9.01057
9.17546
8.05204
19.764
13.1463
11.0349
8.0773
7.31823
8.71563
0.678344
1.05345
4.57577
2.08088
1.86426
1.00582
0.720149
0.655752
4.09937
1.81959
0.777838
1.90133
0.927861
0.638515
42.5143
23.3635
55.6262
482.295
58.5648
164.856
26.8247
487.845
91.9407
1.11783
6.46576
1.11772
4.47629
1.09334
4.25102
1.11315
1.08969
1.35157
11.3144
4.93184
1.55483
5.44405
1.05564
1.28454
10.8354
1.59285
13.2886
1.70535
1.419
6.22433
1.04025
4.0984
4.47527
1.08998
3.93456
1.04854
1.08787
0.904544
5.47374
1.16599
2.45941
1.22813
3.0429
0.831392
1.07509
4.51618
1.26517
4.95099
1.13136
1.24307
4.59814
2.9502
2.8493
2.88508
2.8625
3.66926
7.08802
7.72612
3.38965
3.86243
8.87258
3.73764
9.56386
10.1449
3.05166
0.962201
1.1969
3.17132
1.26255
8.90396
61.043
13.016
12.6298
63.6482
13.8422
67.404
1.83455
2.53393
14.3102
1.78473
64.3628
60.0434
11.8719
12.4713
53.1777
10.3591
0.968632
3.32569
1.31119
3.26859
10.696
1.28372
13.5223
1.61839
2.44404
49.7709
1.7379
11.4662
62.3292
7.95032
3.06793
0.930764
1.20582
1.19514
2.88895
10.256
10.8127
29.2692
1.50009
2.10515
1.54283
10.5473
31.1049
30.5314
9.78046
10.6642
29.4324
63.3958
217.052
30.8771
11.9426
13.7014
48.2633
7.87106
0.886917
1.12175
2.74609
1.14253
2.79656
7.6651
10.9228
1.61844
2.1874
35.5246
1.60533
14.682
31.6241
2.53246
2.60684
2.52441
2.64022
3.16451
6.84701
3.22036
6.74205
3.15068
6.72405
3.14118
6.69887
3.39521
1.06153
2.501
0.832741
2.46752
3.51989
1.0265
23.8713
8.7142
9.23248
22.3605
29.9945
31.9761
7.18545
15.6681
1.61205
1.2825
1.30002
18.022
6.61031
7.20685
1.35946
19.9694
1.65546
7.65745
1.30565
18.1798
23.9178
9.3685
9.18903
25.0971
3.38118
0.844178
2.37437
1.02433
2.46845
1.03197
3.25099
3.76794
0.810972
1.0237
2.59682
1.01845
2.63306
3.77587
9.75063
30.0298
1.44802
1.85704
10.3316
1.4102
24.9928
26.607
9.4547
28.4004
9.28594
54.1188
34.2409
4.01028
0.844372
1.08576
2.65242
7.48528
1.0745
2.75008
9.24486
1.3166
1.71687
20.9031
1.31913
7.88092
23.6777
26.1266
9.30166
9.22122
25.6327
9.56742
3.93661
4.50021
4.03454
3.73563
3.80812
12.2919
5.23047
4.97345
3.16508
3.57286
229.911
3.56011
1.2775
3.59448
0.980126
4.98504
5.24854
1.03775
1.26491
1.9159
2.92418
15.8269
42.274
14.4126
2.12689
2.65497
1.45199
3.8338
12.3631
1.15108
10.4633
1.53459
1.09985
1.70258
10.4048
35.2461
2.15065
13.103
1.67285
2.33852
9.3453
29.8635
26.4887
28.9783
34.1974
9.17439
21.2988
25.7107
40.3034
37.4844
4.01894
7.29298
3.62451
57.4861
3.02405
4.09003
63.8174
4.49686
3.23407
3.1317
78.3656
64.8856
4.56376
7.14112
3.29232
3.56409
1.15245
0.970257
3.10694
4.60524
0.960959
1.24547
4.40052
1.31613
1.64439
7.67019
19.1139
8.60115
1.31251
1.76057
1.06748
2.87274
0.79218
3.84209
0.831863
4.01323
1.01095
1.50338
10.284
2.08848
21.2249
1.63621
9.9854
2.00774
4.72064
4.22361
4.54267
20.7222
2.13883
2.82066
22.9454
2.90189
69.8523
3.29908
26.6638
2.24877
23.3815
3.14793
4.09563
3.94708
4.11941
6.37664
12.0127
13.1298
27.1985
71.7117
22.3453
6.74299
18.5136
14.7747
15.714
68.811
20.2461
0.679508
0.584
2.08004
2.87511
2.81716
0.616959
0.726954
0.832863
0.965964
3.42762
4.90048
3.60089
0.872682
1.04909
0.852154
3.95758
5.46964
1.07233
3.91761
0.921659
1.08272
2.69349
5.12883
2.74115
52.1607
2.58868
3.80173
31.7301
3.69698
3.19369
2.36442
29.2817
30.2548
3.32623
5.42559
3.22663
2.91174
0.697318
2.21191
0.569742
2.8934
0.609886
3.04978
0.712609
0.995146
1.47193
5.24858
12.8289
1.20602
4.56626
1.28563
0.85643
2.38436
0.732496
3.70662
0.930784
0.67742
3.29307
0.892674
4.02823
12.0827
1.07885
4.34405
0.908314
1.1561
0.714132
7.1855
0.706585
3.0347
0.72835
3.60561
0.735326
0.744683
0.809249
4.09733
3.58004
0.753174
3.12464
0.823757
0.717542
9.48598
1.06882
4.73137
0.74182
0.848321
3.56218
0.775629
3.4148
3.80312
0.886532
3.25949
0.821955
0.858068
70.7613
121.79
0.720229
3.14668
40.0007
0.673463
7.15846
0.992671
0.649433
0.572798
0.491706
3.00634
15.3347
6.18794
0.51413
0.650222
0.564831
2.94313
2.82422
0.606181
4.54191
0.564245
0.603637
0.924512
10.8555
7.88224
1.06578
17.0428
0.979967
1.1226
28.478
26.8684
22.4427
45.5515
22.4638
16.6909
27.0387
12.4081
20.222
24.4715
34.9029
19.1758
1.17903
18.9372
9.38826
0.836474
1.05988
14.8372
1.16878
1.01492
0.918082
26.1897
28.0227
0.987526
0.924463
21.3825
1.15871
29.2926
1.24236
23.0135
1.12988
1.20191
17.2863
1.08301
13.1746
26.54
1.04668
0.978068
19.0622
1.15403
39.5635
27.6315
29.9153
31.6955
18.5867
28.4594
45.5042
34.0091
30.2924
25.3934
18.5069
28.2649
0.759417
2.75535
0.660743
2.90272
0.713241
0.686632
3.14741
0.799875
0.530374
4.15081
4.05478
0.759969
3.60514
0.729414
0.766862
2.6421
0.702744
3.53677
0.780677
0.670899
3.12061
0.839645
3.29088
0.822242
4.34309
0.798827
3.76584
0.821418
0.745747
4.56361
0.563119
1.63691
0.873767
3.40899
0.547071
0.894464
0.898244
3.9405
4.46918
0.903406
4.56558
0.85505
0.938619
4.08707
0.877665
3.73705
0.888594
0.947514
4.45342
0.610851
1.55666
1.84308
0.513344
2.17027
0.527489
0.563061
12.2924
9.7369
15.7673
39.0938
29.3136
23.3838
17.1955
35.5838
21.0824
11.2013
24.0923
17.9449
6.58096
6.93322
8.76815
4.29181
3.59979
4.09594
7.49928
4.44163
4.24784
6.84264
6.08298
8.58934
1.02709
4.47233
2.82811
0.627651
0.92978
5.21499
0.732783
0.980938
1.14725
6.24953
3.97463
1.00215
1.02241
3.81747
1.01328
4.10839
0.945094
5.55562
0.968636
0.980185
4.2863
1.01193
4.27185
4.3788
0.975817
1.04347
4.14488
0.901313
54.8141
6.71333
23.2537
24.2707
22.3183
40.1587
15.0504
24.3494
54.518
6.60281
8.87758
13.0997
0.670407
0.873512
4.16893
3.99244
0.85543
0.778049
3.15705
0.568383
1.69693
4.26665
0.820234
0.836586
1.98486
0.534023
6.12638
7.13584
5.92165
8.76941
5.67381
5.54367
6.10194
11.4635
5.72108
6.51278
6.09392
5.78136
7.86385
3.63257
3.85846
3.22473
5.1519
4.58388
141.887
8.48034
4.16196
4.18316
4.16282
112.317
4.68445
4.29908
119.899
5.91003
7.23698
6.30885
13.9493
12.5289
8.39099
6.32318
13.8225
7.47293
7.39689
7.7695
6.37837
0.441182
0.431228
1.45105
1.25121
0.479211
1.25323
0.440578
0.46592
1.42889
0.713717
2.30739
0.585323
0.49064
1.32198
2.51724
2.77643
2.59475
2.69156
3.05993
5.50742
5.75105
2.94331
3.06526
5.84327
3.14792
5.72881
2.96038
2.29455
0.895915
1.0538
2.29727
1.05273
3.00581
18.0818
8.36483
7.10314
22.4717
5.85486
14.1591
1.29729
1.51968
7.19759
1.27749
12.4916
23.0962
23.5056
18.0624
7.19806
7.08514
18.423
3.01496
0.871171
2.38653
1.04866
2.30317
3.24838
1.0408
5.81769
1.27524
1.50281
12.2916
1.27501
5.91228
12.232
2.95779
2.30602
0.855753
1.04383
1.00935
2.27691
3.01446
5.48357
9.98675
1.17106
1.39976
1.18819
5.22118
10.5688
18.5425
6.82114
7.1502
17.5482
23.3815
23.5882
70.2044
18.5561
7.2517
7.12423
18.5603
2.85618
0.822578
0.965854
2.14251
0.978017
2.20902
2.77732
5.54493
1.26561
1.43531
12.066
1.21987
5.91954
10.9003
3.46562
45.4021
2.25712
3.13695
2.41789
2.68467
5.40133
2.90856
4.86529
2.5555
4.37671
2.3407
4.63893
2.3152
0.7752
1.77986
0.617004
1.74374
2.32722
0.739983
11.6823
5.36018
5.37693
11.3406
17.4331
29.1207
17.348
28.437
3.03248
7.01713
1.02194
0.769511
0.810185
7.42771
2.95634
3.08116
0.941446
7.50129
1.11985
3.09627
0.899506
7.41987
11.7178
5.3519
5.38232
11.639
2.24888
0.543237
1.67528
0.625008
1.70285
0.659827
2.20377
2.52676
0.795937
0.887101
1.87544
0.938738
1.92221
2.44885
3.53664
9.87523
1.2008
1.38676
3.64341
1.16524
9.43703
12.2619
6.63747
16.7782
5.82885
17.2211
31.2929
17.3692
50.4127
2.65471
0.816433
0.992945
2.12738
2.76115
0.965324
2.04643
3.35779
1.06471
1.36934
7.65114
1.12709
3.27561
9.05646
11.7403
5.3623
5.5679
11.6501
67.8505
4.84668
3.27138
3.46332
57.237
47.8455
19.6026
2.68439
1.96157
59.7855
18.4388
2.56738
207.914
3.4361
3.69638
3.47892
32.285
2.43623
1.93042
17.7828
17.8424
2.52596
29.7017
0.678955
0.903505
3.20629
3.87689
3.01851
0.851355
0.817067
0.662936
2.8511
3.62893
0.728943
2.91753
0.768501
0.773406
3.39318
6.29372
5.75675
6.42915
13.0842
6.90505
3.3262
5.35984
5.78745
7.54611
13.8228
7.06142
35.0478
3.26034
4.296
3.18302
55.9124
27.0614
12.7962
1.77522
2.22009
13.4901
2.28227
25.5669
28.1243
2.43693
1.83029
17.4741
13.7741
2.37194
29.7538
32.5336
4.06726
2.92573
3.02643
30.4294
0.449919
0.532228
2.39236
2.93179
2.39863
0.57431
0.517928
0.513208
2.72671
0.653492
3.21536
0.701366
2.59576
0.592648
24.7617
2.39211
2.98256
25.1094
2.28569
57.1218
55.1943
22.4985
8.95421
1.29435
1.56791
9.82337
1.65335
21.1554
22.163
1.87043
9.94769
1.40802
9.80607
22.3271
1.78612
25.0809
2.74576
61.4445
2.01172
2.11497
24.2487
4.73254
4.12779
4.70666
6.12825
9.80547
5.72281
5.0065
5.14411
4.74999
4.94376
10.4741
5.76052
30.5001
2.5667
3.52087
2.70246
24.9244
24.4275
12.6771
1.73335
2.24985
12.1566
25.3171
2.18337
65.2831
25.4922
2.0191
1.7031
10.1925
11.6589
2.1283
22.1881
28.5547
3.72449
2.94206
30.1478
2.81231
0.433856
0.983545
0.426457
1.0658
0.447419
0.437408
1.08658
4.32271
3.79822
5.17659
11.1628
30.3628
17.3413
4.54085
40.2223
7.81791
3.88464
16.1703
6.60857
0.302787
0.836078
0.739176
0.346563
0.724933
0.321076
0.337431
0.257549
0.229162
0.663415
0.623989
0.650157
0.253111
0.232064
0.273895
0.694543
0.658963
0.276311
0.672572
0.252412
0.294716
4.24957
4.98233
5.00212
7.66055
4.91052
6.01225
4.24863
6.42839
5.38633
5.3242
7.45581
5.39141
0.375099
0.869718
0.774116
0.370948
0.392229
0.894552
0.356992
0.562745
0.701243
3.05381
2.68635
0.715277
0.61863
2.68381
0.467308
0.99317
0.46468
3.26505
0.641211
0.418684
1.67032
0.389857
0.759818
1.43696
0.321856
0.410926
1.05705
0.333444
4.43668
4.97349
4.86098
4.98253
5.8112
5.03664
4.59919
4.91901
4.89124
5.35895
6.66725
5.10063
7.08163
3.75988
6.16688
5.28026
5.64629
6.14599
6.68761
5.16967
5.97188
3.78625
5.99556
6.58287
4.06223
3.45787
3.83763
381.304
19.5738
1.98753
4.16088
21.5642
4.73576
104.781
4.55111
25.4638
2.16691
22.4877
4.09151
3.7143
4.12928
4.34258
6.83994
3.14822
7.90375
5.4778
7.79539
6.6582
6.5376
5.55865
7.155
3.31501
3.85108
7.35727
2.58912
3.51295
2.60685
2.79231
2.64954
2.56836
2.43863
4.38807
2.35221
3.36984
3.09233
2.96037
377.275
4.23337
4.51065
101.659
5.09632
88.4089
18.9973
4.03873
1.79726
102.058
3.79985
18.5278
3.48411
4.00721
3.82909
60.6049
2.20677
15.7932
1.75611
34.5268
2.70772
18.1132
2.64946
3.5541
2.80928
6.0517
6.90778
3.24565
2.55013
7.52997
3.07459
3.11474
3.36007
2.5912
2.81838
42.5255
2.09203
2.92848
2.02145
1.98868
3.39151
3.65971
1.90992
2.01188
3.91246
2.09554
3.74006
1.9385
1.45586
0.377934
0.446366
1.47815
0.467232
1.89806
9.27326
5.26706
4.84013
10.4836
2.62728
7.58232
0.650117
0.782507
2.82663
0.615626
6.2486
11.7951
23.0902
11.5496
23.7976
9.07058
4.71991
4.79258
8.88709
1.9726
0.400312
1.57642
0.519118
1.50284
2.08688
0.493222
2.57296
0.557801
0.7404
5.93438
0.585026
2.51387
6.25233
1.79096
1.41274
0.318634
0.400081
0.392416
1.36874
1.84177
2.27962
2.9602
0.50436
0.619845
0.497406
2.26145
2.97382
8.32123
4.14255
4.37903
7.4934
11.0319
22.2605
11.3385
22.0096
8.4685
4.66037
4.4638
8.74357
1.73272
0.326957
0.406573
1.3351
0.401407
1.3372
1.72715
2.3797
0.500955
0.611167
3.22245
0.488247
2.43991
3.14934
2.68739
43.3196
1.96226
2.66703
1.9745
1.85796
3.51244
1.91969
3.27124
1.87224
3.2728
1.8549
3.3064
6.3008
3.405
3.83957
5.52554
8.52011
20.2536
8.76928
19.6933
1.98279
2.47233
0.519408
0.380463
0.419083
2.59844
1.89614
2.05641
0.44191
2.7527
0.536961
2.08471
0.43259
2.70398
6.52144
3.9764
3.91294
6.68065
1.67215
0.299209
0.36478
1.27519
0.36763
1.29684
1.63441
2.19116
2.94306
0.491736
0.599938
2.22795
0.47918
2.91183
6.7345
4.38265
8.46287
4.00104
8.97029
20.5457
8.85486
20.6264
1.67102
0.314381
0.395364
1.31647
1.70062
0.386202
1.29996
2.19302
0.451751
0.569531
2.8273
0.456003
2.13147
2.92708
6.82719
4.00204
4.04849
6.73871
24.2082
2.09011
1.51108
29.5741
52.265
1.60716
21.7488
18.6842
9.91245
1.39442
1.00406
19.9024
7.69404
1.3032
27.2392
28.2464
22.8019
2.22271
58.5304
1.82333
53.3406
23.5027
1.6985
19.3177
1.16617
0.951012
7.28202
7.71605
1.2356
17.7113
2.16238
55.5976
3.23582
47.9285
2.9124
3.76452
2.92087
1.76707
2.12399
28.3837
2.85498
47.5131
2.84472
1.90715
2.85752
1.75278
17.0289
1.35153
1.63266
28.8037
1.26827
20.8301
25.6936
11.8686
5.82782
0.770462
0.998087
5.8465
0.98223
11.8827
26.2598
24.1125
12.0766
1.03852
0.764575
6.95708
5.9624
0.980616
16.7023
16.9438
1.62125
1.28728
24.1899
1.26711
25.7979
17.1215
12.0441
1.12232
24.2285
1.37611
22.5059
12.6061
1.07481
189.148
51.0089
21.7475
21.1743
52.7014
9.28653
4.99772
0.641469
0.737566
5.11105
0.805722
9.17996
9.50674
0.867293
5.3606
0.663633
5.20036
9.92404
0.83613
11.7412
1.31568
22.5744
0.946766
22.0439
1.03151
12.1045
1.95429
31.3787
2.49472
27.1891
2.59791
3.88615
2.28453
3.61432
2.05978
28.1125
2.91339
27.6445
2.74265
3.30136
2.16373
3.41456
15.2254
1.14459
1.50398
26.8059
1.16967
13.1886
23.4636
11.3773
5.84459
0.749419
0.991864
5.74127
11.9115
0.956655
22.1762
22.6505
55.3264
10.4206
0.886708
0.710048
5.49463
5.64325
0.904464
10.3539
16.4041
1.58247
1.2869
24.1008
17.1698
1.23591
23.7993
1.4364
1.25656
1.09708
1.34886
0.988887
0.999131
1.27151
1.23175
1.03592
1.15703
0.950585
1.03369
1.93144
2.18553
2.13496
2.66235
3.22336
2.70538
2.02278
2.36936
2.29952
2.47358
2.72853
2.40974
1.60613
2.16352
2.09516
2.17342
2.42499
2.19423
1.38776
1.88484
1.90824
2.41024
2.63674
2.32999
3.62239
3.42834
113.955
3.05393
2.03826
2.61618
2.70589
2.87682
2.00034
2.603
3.79835
3.05418
3.18493
18.3663
1.1769
34.4303
1.31476
19.5285
27.5079
1.12569
106.823
84.6236
15.1031
23.2321
1.27084
1.20529
25.4071
1.22952
13.9335
15.3389
1.29335
29.8561
1.30284
16.4265
25.7028
1.25868
18.0893
1.1209
23.5166
1.06654
26.1432
1.08563
16.919
3.33784
92.6395
3.98556
3.60459
37.0645
2.61121
3.30417
3.24473
2.81139
2.47427
3.01032
2.78663
3.76922
26.6753
3.85496
33.3749
25.4558
21.3688
1.2369
0.914632
19.9333
31.8153
0.99875
28.7919
250.542
3.63215
1.15072
1.78027
24.3057
31.777
3.54121
2.88705
78.2363
2.89744
24.3521
0.898059
18.2712
0.828841
19.4241
0.887137
22.4207
14.9766
20.234
0.986339
1.09231
14.3536
21.116
1.10271
27.0355
28.1899
12.1195
21.131
1.24497
1.08165
12.803
1.23881
6.96497
15.2876
1.00357
22.5064
1.08966
15.8563
21.5292
1.11268
11.8317
1.19812
6.43
1.04363
11.2615
1.21692
6.70989
79.2956
21.8672
1.5324
1.01673
2.58949
33.6224
22.9905
2.72301
3.32009
3.18795
3.54863
3.04831
3.61492
86.7016
87.885
1.11711
3.68961
25.3633
3.28292
23.5087
2.2424
37.7415
1.65715
2.19643
1.6892
1.52745
2.40942
2.44148
1.51657
1.53988
2.43847
1.50988
2.51427
4.85886
3.1479
2.92586
5.14412
1.62084
2.18151
0.305998
0.360553
1.6661
0.292243
2.11657
5.85536
14.6736
5.97017
14.2902
4.85876
2.97479
2.92696
4.95376
1.62358
0.276731
0.353544
2.1174
0.287335
1.62688
2.11789
1.56522
2.03854
0.26186
0.322176
0.265972
1.58331
2.01351
4.73946
2.92749
2.97517
4.63898
6.2196
15.1229
6.02041
11.4952
5.22132
2.99151
3.09923
4.99357
1.56311
0.269836
0.324447
2.10456
0.266837
1.61539
2.00933
1.99404
35.8621
1.53202
2.00301
1.52431
1.40234
2.35701
1.49193
2.13575
1.35139
2.01111
1.35912
2.03139
3.96603
2.24832
2.35987
3.78187
4.45578
9.78596
5.06255
7.7355
1.29331
1.51332
0.192951
0.133513
0.162645
1.63433
1.20356
1.34443
0.207142
1.74962
0.230063
1.37667
0.192952
1.70021
3.94299
2.49495
2.35806
4.3652
1.47421
1.96857
0.247559
0.278492
1.53046
0.230117
1.90225
4.39706
2.86095
4.57369
2.57479
4.88573
8.28178
4.6253
9.76532
1.34881
0.211723
0.254521
1.74709
0.211503
1.36807
1.72781
4.20021
2.40511
2.44272
4.0491
8.36423
0.851171
0.623205
17.9829
18.269
0.669459
7.75658
44.7702
57.079
6.48091
2.83039
0.579839
0.443544
7.15222
2.73997
0.544839
22.9904
17.8958
17.3665
23.0704
8.42184
0.8777
20.0306
0.739645
18.4313
9.37126
0.689473
6.44773
0.499585
0.433744
2.72769
2.73727
0.530801
6.18303
44.4244
42.7332
24.8775
0.920717
19.5838
1.16948
25.6371
19.1319
1.13071
47.4604
1.35602
1.73949
1.37545
47.4518
24.7947
0.902387
21.6194
1.09005
19.2417
1.10061
29.552
47.9601
1.48755
1.8152
49.912
1.42602
6.92224
0.603831
0.740287
16.8271
0.58955
8.5793
15.932
5.80342
2.67146
0.391492
0.467102
2.6219
0.471965
6.06729
20.7628
18.8941
15.8247
26.2673
24.3584
24.6945
5.75006
0.485432
0.394361
2.72153
2.60027
0.476105
6.74816
6.9764
0.728736
0.576803
17.5227
0.582355
16.0341
7.33135
24.2513
42.4631
5.53955
0.42368
11.1723
0.481526
10.7806
5.67522
0.394139
19.8764
45.1902
18.6951
18.5462
11.0598
9.86139
18.7608
2.71455
1.95211
0.231282
0.221504
2.1189
0.275266
2.48441
2.81764
0.355821
2.24616
0.277005
2.20047
2.86269
0.3314
19.4895
19.8248
5.2737
0.393635
8.58136
0.259343
9.50088
0.32459
4.78917
20.0856
0.682764
16.6604
0.799614
24.2241
15.4465
0.828119
24.3723
1.28351
1.43735
29.3372
1.14483
21.2035
0.766516
20.2497
1.03344
24.3023
16.7134
0.930327
22.9911
0.966805
1.26898
27.8478
1.01428
5.72012
0.43754
0.551409
11.4456
0.446532
5.74434
11.0444
5.7613
2.57505
0.338407
0.44291
2.49377
5.88086
0.406883
19.8944
12.3241
14.4383
18.7795
26.42
24.1461
4.9442
0.366221
0.307525
2.27425
2.24546
0.367541
2.86234
6.86466
0.619219
0.546429
16.5762
7.06951
0.498222
12.4416
21.4717
19.8632
20.1076
0.451134
0.421188
20.1076
19.859
0.406126
20.3912
20.4092
50.3839
0.709773
0.480745
24.582
20.4376
0.429712
20.348
0.462742
0.561363
21.2165
22.3738
0.432814
20.5913
20.1175
0.384056
19.4942
0.374604
19.8436
19.8792
0.376748
19.9818
0.557442
20.0196
0.612109
19.5464
20.6085
0.612999
19.5755
16.8582
0.662435
0.698513
18.7272
0.658654
18.1948
19.699
0.569952
18.765
0.635813
19.2557
19.0174
0.627162
19.8676
0.639616
19.7013
0.661662
20.6699
0.635939
18.4127
21.0927
0.507491
20.1714
0.59116
0.564634
20.4965
20.761
21.6817
22.2977
0.610515
0.595463
22.2648
0.588104
21.3581
21.2965
0.511046
0.591889
21.2866
21.7338
0.563488
20.7062
21.4019
0.614527
0.609587
19.9225
0.592061
20.8652
20.9105
20.3098
0.780236
0.902682
15.8022
16.4222
0.769728
19.6589
21.8372
88.1964
0.809982
0.845512
26.0611
23.1823
0.722806
21.3341
0.668302
0.612655
23.6827
24.7515
0.66651
20.658
20.788
0.919
17.479
0.8059
16.8872
21.6422
0.794931
27.1236
1.10702
13.7087
1.20121
7.4216
13.2069
1.22429
28.3494
14.7544
66.7161
14.2405
77.1426
66.656
6.03275
2.32492
0.576887
0.664774
2.21287
0.667412
5.44096
7.17339
0.885448
2.70567
0.601053
21.3812
2.59428
0.732914
91.4791
24.1898
1.15579
11.2066
1.10221
12.5326
1.13767
21.3201
18.8974
0.784834
15.4015
1.01832
0.8473
19.3634
14.9633
19.514
21.8611
0.617146
0.710896
22.6786
0.71098
18.4474
19.9128
0.672681
0.612587
23.4736
22.9544
0.708924
20.3892
18.4412
1.00013
0.840445
13.0046
0.842682
14.3295
17.2987
10.7401
37.7657
1.05493
0.96606
20.1892
12.9816
0.987734
25.3949
42.9631
12.5839
15.574
0.774645
0.883982
17.059
0.924551
10.4738
254.027
64.1378
12.5572
0.881383
18.6395
0.721584
17.2133
14.508
0.85156
10.7535
0.903187
6.14688
0.955225
14.121
1.05955
8.52831
3.3114
21.7959
1.03397
0.488038
2.13883
7.25984
0.572106
17.3665
10.9144
16.2537
11.3652
23.3863
60.9818
2.65104
2.23742
0.610377
0.521335
4.97679
0.537571
2.09926
21.2403
70.1159
18.7094
4.52698
1.15016
10.2982
1.03101
19.0927
8.85171
0.79734
2.32764
0.469002
2.01677
0.506674
1.96
0.494924
2.06974
14.9181
6.89875
0.958427
1.11747
0.960824
13.0442
9.46609
17.0433
21.4442
0.639151
0.732318
20.4415
17.9198
0.755399
16.2604
0.806555
0.663573
18.8392
19.9427
0.791371
14.6036
15.8254
1.08604
0.874133
12.2
16.7199
0.913556
10.8399
1.70085
32.3644
1.32561
1.71645
1.31638
2.12614
1.57472
1.50711
2.19793
2.08774
1.5128
2.11155
1.48871
3.64795
2.19622
2.1176
3.68156
1.14006
1.46337
0.136009
0.149021
1.16872
0.12624
1.42134
3.8421
5.51487
3.62886
5.88554
3.3528
1.82013
1.96989
3.1484
1.08634
0.102038
0.133602
1.26715
0.114119
1.01966
1.34838
0.964478
1.19524
0.084116
0.103293
0.0892759
0.972999
1.18915
3.0132
1.83315
1.75123
3.1562
3.42895
5.31903
3.51218
5.16335
2.98342
1.76131
1.73082
3.04903
0.95712
0.0926359
0.108225
1.18016
0.0931736
0.953894
1.1831
1.76028
33.2557
1.3539
1.74372
1.37104
2.18275
1.59358
2.22435
1.51183
2.14161
1.43832
2.12662
1.50137
2.61041
1.50566
1.56645
2.53945
3.17623
4.63654
3.18229
4.64422
2.6612
1.60293
1.59128
2.67488
0.90454
1.16396
0.0728604
0.0790913
0.945563
0.069016
1.10315
3.02319
1.86862
3.33515
1.75581
3.41427
4.71405
3.24639
4.75453
2.9755
1.6367
1.73735
2.74013
4.48406
0.259816
0.191339
6.22063
7.71469
0.217674
4.01662
17.3958
42.6163
40.8371
18.0471
2.33108
1.87764
0.229729
0.177759
2.38169
1.81674
0.211465
16.4401
7.16875
7.66548
16.5167
4.57663
0.300289
8.21566
0.270716
8.0279
4.66268
0.248871
2.21879
0.164821
0.157931
1.62004
1.72211
0.186577
2.10078
17.2808
23.5612
39.0124
17.5185
16.9391
0.237038
7.63915
0.290581
16.0745
7.5914
0.284497
38.085
38.6534
18.0018
18.6359
0.294026
0.348065
0.307202
18.1734
18.4813
16.7983
0.221101
6.98679
0.251095
7.53146
0.264516
16.1349
41.0333
38.8301
18.1087
0.338961
15.5785
0.377961
16.6299
0.331349
18.6617
2.38119
0.170731
0.19767
5.95242
0.171837
3.88412
5.87781
1.94163
1.50535
0.120521
0.132507
1.50667
0.140912
1.93465
15.3553
6.9101
6.689
15.8702
16.2646
20.607
19.9163
17.0324
1.9403
0.147843
0.126822
1.50092
1.50343
0.14886
1.93631
2.38818
0.18526
0.152846
5.61803
0.162064
5.83893
2.38965
16.2381
21.0745
16.7395
19.9927
1.98595
0.113767
4.16005
0.127958
3.8713
1.97723
0.114358
15.6326
16.6571
16.7213
13.6832
13.4143
5.51517
5.51277
13.3515
1.44581
1.09834
0.0724033
0.0779206
1.15659
0.0842394
1.37394
1.60473
0.100206
1.26835
0.0863786
1.26729
1.60302
0.100019
16.3629
17.0385
17.5474
16.1354
1.77546
0.110038
3.37837
0.0910956
3.679
0.0971978
1.70917
13.0665
0.142201
4.96236
0.190662
9.6113
5.59639
0.167342
39.1584
21.1013
17.2543
19.0788
0.238241
0.267731
17.9597
0.233634
18.9319
14.0341
0.16424
7.63749
0.204233
15.2971
5.93379
0.197381
18.9224
20.3236
16.3019
0.226223
18.0596
0.219565
13.7749
0.194845
17.909
2.08109
0.122524
0.122424
4.35218
0.110137
2.12333
4.73796
1.75487
1.46725
0.0912508
0.111878
1.37422
1.87482
0.105995
13.5368
5.6136
5.64813
13.6521
16.4602
24.2982
18.3928
18.1787
1.67571
0.107148
0.0849656
1.3361
1.32049
0.0972586
1.70306
2.19728
0.138433
0.1282
6.09532
2.35906
0.122019
4.97682
16.3136
17.9565
16.5659
17.7155
5.71325
0.279555
0.214834
3.07494
3.13996
0.336261
3.97607
37.4141
69.8038
18.9058
19.5097
12.8791
0.820303
0.839969
9.33778
10.0243
0.813363
26.329
27.4713
20.0142
7.71961
0.386281
0.723815
6.06715
7.65369
0.528332
4.28516
12.5018
0.305912
11.5489
0.725534
3.57228
8.91005
0.592032
21.9721
18.7681
17.995
19.1378
2.73758
0.186349
2.96383
0.190677
2.91525
2.7498
0.192834
19.0229
18.052
18.4121
18.5099
19.1774
20.1197
19.9791
19.1124
2.61033
1.91774
0.200377
0.211529
2.43675
0.200917
2.04899
2.71484
0.185814
2.71758
0.191748
2.89602
2.53744
0.192606
19.0842
18.923
18.4419
19.7958
2.6374
0.200748
2.14528
0.212591
2.6476
0.201405
2.10101
4.30952
0.277191
3.01005
0.204699
0.300311
3.918
2.79056
5.55426
9.94087
0.672853
0.614388
9.62469
0.516829
6.46862
26.1219
28.9889
20.4299
25.2451
21.5104
20.7602
4.89298
0.381409
0.554823
5.88588
7.78781
0.435663
4.17675
21.7736
19.225
19.5026
20.4011
4.68102
0.219655
0.394121
2.46235
0.342328
2.70059
5.08882
24.2189
0.630923
0.425226
2.6635
3.0569
0.754657
13.3749
225.467
23.283
19.6951
8.45849
15.3348
0.850734
0.970544
13.9843
10.3402
0.964719
226.49
7.86537
0.944394
0.863215
12.3656
13.6139
0.940243
34.7472
34.6058
0.477964
5.04517
0.995725
3.28213
8.4016
0.871398
81.4545
18.0436
19.1492
41.0732
1.76577
0.390382
2.27062
0.365572
1.75727
2.16657
0.393625
11.5147
6.35015
11.7766
6.24851
12.7149
15.7278
16.2191
12.2713
1.7852
2.81971
0.439229
0.448159
2.05057
0.411945
2.34308
1.87124
0.41974
2.19233
0.468243
1.85173
2.22708
0.426672
13.0482
16.9333
13.3798
16.492
1.69831
0.355982
2.28179
0.416961
2.09833
0.383391
2.14252
4.83356
0.479237
2.56471
0.356503
0.419828
7.44001
2.38965
7.3638
8.12044
0.901737
0.632869
10.0402
0.698781
5.66057
41.0989
81.187
21.3986
16.5077
17.0345
19.6931
13.3455
0.881149
0.929779
11.9553
10.5181
0.809172
24.1287
22.9683
17.8202
28.1456
17.2961
3.90796
0.342079
0.366849
2.41931
0.372212
2.30996
3.30855
2.17399
2.08075
0.295369
0.33417
2.11766
2.12629
0.296673
16.0597
13.6407
14.2798
15.4519
16.7665
19.5526
18.6403
17.21
1.98157
1.71348
0.229115
0.258125
1.81669
0.258657
1.86646
16.19
14.7388
14.4131
16.5525
2.07367
0.259917
1.89203
0.230494
1.88278
2.03511
0.259346
2.06922
0.334616
1.77483
0.295635
1.85817
0.29707
1.94792
1.72947
1.93708
0.36073
0.382402
1.68732
2.02066
0.386388
9.79039
15.8868
9.15357
16.9277
11.368
15.3578
11.8315
14.84
2.11407
2.43249
0.423576
0.406901
2.14042
0.425147
2.38936
11.3185
14.1856
10.721
14.7522
1.75294
0.362449
2.20224
0.399101
1.99474
2.04924
0.385957
2.09994
0.421652
2.28792
0.407345
2.04739
0.428757
2.3773
2.41253
2.0492
0.295781
0.332196
0.309429
2.14376
2.15469
3.08197
8.24723
0.658037
0.482317
5.50413
4.70654
0.384622
18.9245
20.6566
170.305
17.5225
17.8783
16.1675
19.0609
15.6539
17.6153
15.0101
16.7949
15.5618
2.7509
0.272092
0.420739
2.19379
25.8039
0.315638
2.06983
2.52631
0.33735
0.344711
2.34796
3.05558
0.325633
2.18904
1.48349
28.137
1.17981
1.50644
1.16405
1.75642
1.10432
1.1299
1.78193
1.78023
1.16194
1.81192
1.14019
2.3055
1.38781
1.37055
2.35804
2.68941
3.60678
2.63974
3.71489
2.2572
1.31583
1.34182
2.21635
2.1021
1.22386
1.26464
1.93264
2.54589
3.51376
2.61667
3.42146
2.1385
1.30693
1.27896
2.1998
1.48893
28.37
1.15448
1.46229
1.17414
1.79165
1.07845
1.73838
1.10848
1.77139
1.04091
1.7368
1.07947
1.66138
1.05806
1.10077
1.60807
1.99875
3.04885
2.08587
2.93296
1.64978
1.13184
1.09021
1.72026
1.88349
1.18943
1.84693
1.22021
2.19051
3.07782
2.09752
3.23012
1.80486
1.14032
1.18429
1.73108
1.21932
0.0465543
0.0370303
1.35194
1.41317
0.0428544
1.1587
12.1778
15.433
15.1324
12.728
1.10028
0.842779
0.0320845
0.0384112
1.04398
0.888032
0.0432831
8.00177
4.01241
4.16393
7.52034
1.37867
0.053466
1.51441
0.035163
1.62001
1.2995
0.0487198
0.984913
0.033521
0.0345113
0.764441
0.804472
0.0384623
0.934248
11.8168
14.7673
14.5111
11.1547
3.3683
0.0474587
2.47779
0.0375839
3.08303
1.50209
0.0503397
15.9666
13.3823
124.575
13.6789
14.9966
14.3829
14.954
3.18306
4.77372
0.0461195
0.0551614
0.0487691
3.15079
5.30592
2.93131
0.0421472
1.39684
0.0418549
1.40807
0.0439189
2.92733
15.412
13.9787
13.1874
15.225
3.73045
0.0415502
6.43073
0.0657227
3.43878
0.0569401
6.69765
1.09885
0.0314306
0.0442459
1.24029
0.0401184
1.05386
1.31924
0.841161
0.693832
0.0299132
0.0315792
0.70345
0.032835
0.829805
6.24879
3.85848
3.71278
6.69577
7.63875
14.8136
14.3849
7.54402
0.891974
0.0289447
0.0323436
0.711308
0.740461
0.0358695
0.857082
1.03321
0.0397691
0.0349502
1.23
0.0363799
1.24072
1.021
7.91828
14.2839
9.97207
15.0397
0.738988
0.0366217
1.00274
0.0382391
0.902637
0.810864
0.0341288
4.39965
7.67681
10.736
3.91367
3.78569
3.21313
3.07014
4.19898
0.610403
0.495175
0.0278462
0.0326622
0.534456
0.0305161
0.55918
0.618213
0.0325865
0.576085
0.0280924
0.537642
0.67038
0.030721
4.52116
12.9039
11.0064
5.2557
0.727317
0.0383305
0.802942
0.0366333
0.89316
0.0339872
0.658278
1.45286
0.0439768
1.25292
0.0482083
1.38731
1.32042
0.0468131
15.3672
15.7156
15.3004
17.7431
13.9845
14.3479
13.6006
14.6702
2.80578
3.8524
0.0405088
0.0522967
2.7658
0.0465411
3.59909
2.70527
0.0398594
1.30405
0.0370885
2.62234
1.34509
0.0419059
15.4103
15.1075
15.3982
15.3451
2.95898
0.0468877
3.17037
0.0509382
2.65681
0.0457239
3.8724
0.926177
0.0356495
0.0403434
1.0789
0.0360455
0.872181
1.1427
0.78791
0.656565
0.0274438
0.028552
0.665751
0.781409
0.0301614
4.96467
3.26868
3.45965
4.46485
7.56374
14.2902
7.29351
14.1652
0.755593
0.0316724
0.0291182
0.610704
0.641091
0.0321685
0.715447
0.962251
0.0371102
0.0314303
1.15108
0.956619
0.0335542
1.17492
6.46753
13.865
5.74172
14.5018
1.33047
0.216927
0.213287
1.34942
1.33976
0.209847
1.33361
15.8103
14.6515
15.616
14.8481
1.34761
1.24905
0.205845
0.183822
1.38404
1.21943
0.203643
16.0498
16.4774
16.0013
16.497
1.36279
0.220598
0.216616
1.41283
1.41256
0.214184
1.36401
1.31885
0.2024
1.22437
0.180395
1.32748
1.19892
0.199439
16.039
16.1961
15.8107
16.4689
1.37856
0.230959
1.4139
0.244161
1.37781
1.41854
0.238571
15.733
15.4563
15.9499
15.1803
15.6591
15.1986
15.9651
14.7575
1.27333
1.17507
0.234042
0.248968
1.21536
0.237895
1.22399
1.28912
0.220241
1.21774
0.223756
1.28548
1.22542
0.228905
15.8418
16.1973
16.0419
16.1075
1.35716
0.251744
1.34164
0.256064
1.40022
0.246342
1.29805
1.32933
0.222698
1.35963
0.236206
0.227959
1.33698
1.36118
1.33217
1.50638
0.221696
0.23406
1.95455
0.232788
1.3835
16.4811
16.5462
16.4455
16.5669
16.3008
15.2757
16.0279
15.5035
1.36262
0.225424
0.225238
1.41668
1.41038
0.22943
1.36773
16.4508
16.2557
16.535
16.1689
1.29494
0.24381
0.239841
1.27869
0.233173
1.34024
1.2109
1.51987
0.299523
0.333011
1.59706
1.62921
0.295041
1.48831
14.6088
13.2468
12.7118
15.1105
1.53249
1.55924
0.227589
0.24726
1.43801
1.63093
0.259043
14.8338
16.2094
16.631
14.4157
1.49723
0.263002
0.229427
1.41838
1.4217
0.2591
1.4921
1.56666
0.340685
1.46937
0.282275
1.70665
1.67176
0.297694
14.35
11.8771
12.3424
13.9401
1.7846
0.380545
1.68623
0.360475
1.87441
1.63408
0.365418
4.52722
2.66295
5.4004
2.47994
6.58997
9.76452
10.651
5.52415
2.25356
0.519881
0.14309
0.298081
0.589777
0.332302
1.89329
1.88448
0.34476
0.779631
0.161149
2.08376
0.724761
0.316683
6.14365
10.8992
7.06017
10.1491
2.1428
0.401237
1.79301
0.38301
1.91706
0.407264
1.93639
1.44493
0.309003
1.57455
0.336816
0.306419
1.48028
1.53032
1.41905
1.36993
0.255022
0.2854
1.37893
0.284847
1.39893
13.9906
16.1601
15.7505
14.4225
13.6175
10.6999
11.5194
13.016
1.28905
0.267937
0.242085
1.31818
1.29465
0.266943
1.30445
13.4362
11.7959
13.9009
11.1061
1.60428
0.369393
0.327863
1.65941
0.331072
1.73888
1.55515
1.5814
1.82685
0.34656
0.368972
1.75259
1.64869
0.33816
11.5016
8.4711
9.05733
10.9021
12.2827
14.6886
14.2052
12.8579
1.35663
1.15422
0.265878
0.295362
1.19538
0.297533
1.30718
11.6116
9.89133
9.15658
12.2479
1.42712
0.310492
1.30288
0.271939
1.25925
1.48228
0.303819
1.51652
0.363789
1.64745
0.329523
1.69592
0.332099
1.46809
1.82479
2.0126
0.373145
0.373441
2.20099
1.69647
0.363706
15.0964
1.94736
9.26799
2.03474
5.38454
9.66965
5.45832
9.53597
1.86645
0.506252
0.289778
0.12688
1.8669
0.288732
0.502306
5.28283
9.29077
27.165
9.401
1.89375
0.378264
1.7539
0.374771
1.90205
1.73989
0.373998
1.79007
0.233039
0.458358
0.121926
1.41214
0.276459
0.483761
1.43316
1.77812
0.342994
0.350323
0.318592
1.594
1.55307
1.33102
1.33623
0.25115
0.28024
1.17502
1.35429
0.283983
13.2371
14.7707
14.9654
13.0052
12.7729
10.5989
12.9158
10.4543
12.6556
10.2263
12.4346
10.3225
1.29288
0.30457
0.254497
1.23996
1.15434
0.284382
1.41421
1.47542
0.353182
0.320785
1.61477
1.50512
0.32017
1.59333
1.25288
24.3963
0.99009
1.24785
0.989881
1.39124
1.54643
1.5887
1.34184
1.48435
0.730343
1.46758
0.732454
1.41516
1.00712
0.929143
1.52913
1.64979
2.21858
1.5106
2.41062
1.36057
0.826038
0.896886
1.24539
1.01998
0.67072
0.732794
0.916215
1.25555
2.05272
1.40749
1.94914
1.05195
0.79105
0.758156
1.16739
1.03671
10.9082
0.796422
0.998218
0.826213
1.27493
1.48542
1.28925
1.47104
1.26587
1.40145
1.21564
1.46429
0.751899
0.573161
0.594195
0.717567
0.801703
1.33361
0.818119
1.3354
0.696887
0.519205
0.549148
0.69284
0.929033
0.656523
0.890481
0.696202
1.10381
1.50944
0.937044
1.74073
0.931952
0.585486
0.694981
0.789524
0.440903
0.0220171
0.0167165
0.416779
0.526178
0.0195584
0.354113
3.30515
6.9498
5.89281
3.63123
0.441609
0.425638
0.0261585
0.0204139
0.481196
0.389048
0.0227389
2.88411
2.34645
2.50185
2.76886
0.51215
0.0295897
0.680174
0.0293512
0.617474
0.560763
0.0256859
0.383423
0.0152079
0.0161584
0.275942
0.338707
0.0176891
0.310802
3.15635
4.79976
5.46469
3.00738
0.54654
0.0156038
0.444248
0.015956
0.540181
0.44404
0.0172405
11.1109
11.7513
12.3539
10.4586
9.3193
3.38797
4.4218
8.43688
0.522039
0.426274
0.0130226
0.0152382
0.0146888
0.411879
0.540471
0.447109
0.0125775
0.297977
0.0121549
0.374034
0.0137285
0.356719
10.0598
5.09599
11.7681
4.07264
0.63178
0.0169748
0.611411
0.0194546
0.608074
0.0185771
0.642692
0.313931
0.0123156
0.014145
0.364918
0.0130974
0.31203
0.365626
2.36475
2.1624
2.07715
2.48444
2.62672
2.8467
3.54201
2.26362
0.269911
0.0115722
0.00976378
0.25256
0.0108701
0.311264
0.222887
2.47026
3.87662
2.6571
3.25451
0.124339
0.00524706
0.115983
0.00586154
0.13326
0.107724
0.00570048
1.92575
1.94207
2.1304
1.80841
1.7181
1.44908
1.47973
1.672
1.7737
2.05967
2.0313
1.74128
0.194595
0.0121296
0.193329
0.0110099
0.212451
0.0112791
0.180937
0.44448
0.0185131
0.245958
0.0161003
0.294884
0.36802
0.0206382
8.00626
8.41213
7.10039
8.48038
6.8657
3.26405
8.2002
2.8467
0.517111
0.345523
0.0104335
0.0297647
0.33754
0.0271949
0.555672
0.44281
0.02147
0.258164
0.0100467
0.301052
0.369961
0.0242716
6.16789
2.49844
4.78498
2.72074
0.533919
0.0177825
0.389022
0.0246965
0.352554
0.0228585
0.599904
0.28389
0.0125
0.0168606
0.213754
0.0156881
0.194755
0.314828
2.05888
1.6264
1.85795
1.86905
2.08412
2.74534
2.18351
2.45407
0.28545
0.0192714
0.0088158
0.223935
0.201619
0.0177108
0.316873
2.09777
2.23906
1.92779
2.39573
0.602633
0.144592
0.110919
0.656418
0.577828
0.126723
0.692107
2.61277
2.34248
2.35677
2.48901
0.537512
0.494739
0.118888
0.106695
0.546566
0.49402
0.116915
2.67289
6.09927
3.60055
3.25033
0.606761
0.153669
0.13662
0.753607
0.633847
0.133214
0.711972
0.540267
0.101784
0.484187
0.106006
0.520718
0.500736
0.113314
2.70368
2.55734
2.40375
3.22494
0.54343
0.0638024
0.669439
0.120609
0.475
0.804613
0.070422
2.00106
1.76456
1.94955
1.71515
3.48261
4.82991
3.36115
5.8703
0.226789
0.174321
0.0395922
0.0481518
0.174821
0.0444842
0.241783
0.219837
0.0401162
0.17487
0.0379628
0.215586
0.175414
0.0417259
3.09994
2.50897
2.49547
2.98705
0.645266
0.14104
1.28019
0.0880677
1.00425
0.0787004
0.790375
1.01515
0.169169
0.771843
0.170457
0.20049
0.82844
0.942123
1.25838
1.43583
0.260465
0.303413
1.27136
0.256103
1.49304
7.4848
6.57239
11.6379
3.74072
7.18832
6.27025
4.01621
8.77944
1.03631
0.181277
0.221802
0.89362
1.07537
0.215556
0.859189
5.56519
2.67686
3.63139
3.42401
1.25242
0.20327
0.28498
1.47554
0.239171
1.17513
1.54596
1.48611
0.33108
0.366062
1.57673
1.65479
0.339762
1.43253
10.1561
7.97139
7.65011
10.5181
1.38318
1.21346
0.278138
0.309115
1.22617
1.38297
0.309829
10.6361
12.0713
12.6394
9.97828
1.34054
0.302517
0.277555
1.18693
1.20535
0.30742
1.30089
1.54277
0.373768
1.77005
0.346188
1.72762
1.56081
0.344337
9.94659
6.53656
7.45574
9.24713
0.530753
0.162051
2.33043
0.296942
0.897108
2.0798
0.115818
1.52661
1.58555
1.84783
1.54048
1.59853
3.35885
15.3909
1.32178
0.276368
0.282123
0.0797163
0.0747274
0.293322
0.0794758
0.259452
0.30025
0.0925665
0.312164
0.0829915
0.33386
0.303029
0.085404
1.79798
5.90297
2.90606
25.2339
0.348662
0.212658
0.605855
0.0784122
1.42899
0.0911081
0.272225
1.71466
0.369374
2.05519
0.372423
0.365118
1.7312
1.97695
1.59165
1.46378
0.313172
0.359087
1.35747
0.347874
1.7188
9.63901
12.3389
11.6178
10.4464
8.14017
9.61247
4.60787
7.01577
1.45458
0.331786
0.298189
1.27348
1.26647
0.332392
1.4676
8.91263
7.14796
9.79107
5.74532
1.90408
0.34949
0.368384
2.1354
0.373562
2.15162
2.00855
0.229658
0.223873
0.0713623
0.0531172
0.203985
0.326456
0.0559058
1.47937
1.30767
1.32976
1.3735
1.92171
5.24956
7.11065
4.90205
0.221858
0.174833
0.0522124
0.0452824
0.26228
0.050932
0.177535
1.58294
1.44653
1.33923
2.5857
0.466591
0.153398
1.62993
0.0982059
0.963732
1.27226
0.0744768
0.194546
0.0502403
0.193527
0.047069
0.195488
0.0495097
0.184853
0.230003
0.258148
0.0704267
0.0738533
0.266148
0.242006
0.0688232
1.25892
1.77511
1.49806
1.37039
1.20679
2.45665
1.27829
1.57059
0.242257
0.273477
0.0708467
0.0723898
0.248281
0.0688622
0.268437
1.21495
1.50434
1.41894
1.49818
0.226349
0.0731964
0.349549
0.0711515
0.240402
0.263882
0.0672917
0.250496
0.0793214
0.349813
0.0767424
0.30269
0.0720575
0.278141
1.4349
0.294328
0.117925
0.0868931
0.206007
0.630294
0.363609
1.99224
1.60176
0.343732
0.365896
1.71721
1.89031
0.357272
4.69245
6.50508
8.12538
9.75624
24.5654
4.83032
5.961
2.07109
15.2943
1.59975
3.63398
1.81311
2.11133
0.261441
0.335131
1.84191
1.86254
0.327303
2.0296
2.11695
0.117854
0.342916
1.43596
2.13643
0.291419
0.61615
0.873687
12.3256
0.721348
0.895098
0.708168
1.06254
1.25073
1.23964
1.06652
1.07274
1.24631
1.0858
1.24357
0.707528
0.559661
0.565125
0.700922
0.758617
1.10924
0.68792
1.24576
0.671841
0.514719
0.543817
0.622117
0.575509
1.40715
1.38156
0.592208
0.635164
1.04058
0.648115
1.02424
0.576957
0.490464
0.508098
0.588448
0.821762
9.06869
0.648566
0.792373
0.671867
1.05906
1.22099
1.0443
1.24062
1.02152
1.14802
0.98353
1.19411
0.433117
1.09001
1.19167
0.271621
0.474617
0.680597
0.478954
0.678244
0.443812
1.23843
1.24093
0.448725
0.552239
1.36836
0.569673
1.39153
0.573432
0.722963
0.504955
0.843997
0.531958
1.28037
1.33354
0.471977
0.147946
0.0100161
0.00998356
0.162657
0.159023
0.00942975
0.155329
1.84744
1.86251
1.9524
1.75161
1.69839
1.2969
1.41318
1.61518
0.186754
0.0115805
0.184634
0.00860303
0.202834
0.170508
0.0107811
1.74006
1.68292
1.82528
1.65229
0.141442
0.0126849
0.148521
0.0142463
0.164113
0.13113
0.0137832
2.1591
5.28992
2.28387
3.72359
1.61101
1.57416
1.44311
1.76898
0.146576
0.214692
0.0184908
0.0151576
0.0136998
0.182301
0.169033
0.131375
0.0117605
0.149899
0.0164408
0.124629
0.0125557
0.16081
1.89239
1.61784
1.9362
1.60967
0.160138
0.0160816
0.22272
0.0173979
0.190126
0.0153702
0.184612
0.120345
0.0110611
0.011794
0.139898
0.010998
0.131027
0.126526
1.49831
1.21759
1.20139
1.50972
1.48079
1.5577
1.45413
1.55761
1.54395
1.59559
1.55211
1.59071
1.09246
0.634005
1.13134
0.64111
1.08512
0.805281
0.804675
1.06689
1.10926
1.08462
1.14145
1.08145
0.147693
0.016384
0.138475
0.0180182
0.146626
0.140521
0.0180769
1.36098
1.29206
1.1411
1.77635
1.43789
1.39899
1.49048
1.40288
0.135656
0.180041
0.0161491
0.0162787
0.155802
0.0148375
0.152603
0.127544
0.0128892
0.13263
0.0146548
0.140484
0.124354
0.0137223
1.33212
1.17673
1.14508
1.33486
0.160083
0.0201721
0.181239
0.023172
0.159243
0.0202862
0.183449
1.33369
0.857657
0.996186
1.1518
1.4236
1.39516
1.44478
1.39474
1.36939
1.18036
1.17625
1.33464
1.75873
1.71329
1.72914
1.75151
1.76368
1.68048
1.75668
1.70524
0.192115
0.0396039
0.0385024
0.185898
0.189721
0.039335
0.188894
1.75814
1.69552
1.73226
1.70331
0.146201
0.0317522
0.160526
0.0337579
0.150311
0.155169
0.0321224
1.37816
1.55877
1.50259
1.44203
1.26552
1.25682
1.37503
1.12678
0.153808
0.156342
0.0367602
0.0357975
0.162526
0.035177
0.150175
1.32919
1.58518
1.46003
1.43298
0.141457
0.0342098
0.149409
0.0334552
0.150102
0.0326135
0.140286
0.174496
0.039053
0.184694
0.039376
0.0392383
0.181686
0.178243
0.175741
0.174529
0.040402
0.0422807
0.175067
0.0410995
0.175111
1.51501
1.63359
1.52561
1.66483
1.47369
1.33874
1.46051
1.32554
0.177248
0.0398364
0.0394442
0.180021
0.17537
0.0402347
0.183255
1.50019
1.66545
1.66431
1.50736
0.170624
0.0399765
0.0407632
0.173098
0.0398211
0.173677
0.169151
0.178017
0.0460291
0.0461286
0.21063
0.187111
0.0437482
0.196388
1.34029
1.29976
1.25791
1.3706
0.169382
0.165479
0.040868
0.043284
0.164149
0.170572
0.0427658
1.3134
1.36293
1.33605
1.37483
0.166665
0.0431284
0.0396315
0.171839
0.161674
0.0413774
0.180429
0.181107
0.0478631
0.191567
0.0456381
0.190991
0.181771
0.0452882
1.32631
1.33825
1.23632
1.40127
0.216344
0.0514667
0.203184
0.0481667
0.218289
0.201334
0.0513434
1.20908
1.46614
1.26142
1.39258
1.1412
1.08764
1.13111
1.1072
1.14646
1.19396
1.19573
1.13832
0.213705
0.0476498
0.194503
0.050229
0.198868
0.0507205
0.209111
0.185985
0.0434079
0.19722
0.0457426
0.0433868
0.186426
0.195748
0.171807
0.162121
0.0389726
0.0405264
0.164922
0.040749
0.168951
1.29249
1.32838
1.29061
1.33065
1.31278
1.15547
1.20316
1.27737
0.172596
0.040945
0.0391338
0.165554
0.165607
0.0409595
0.172687
1.31396
1.2694
1.35275
1.21078
0.184876
0.0453323
0.0428118
0.189489
0.0430949
0.193658
0.181614
0.164655
0.183353
0.0406118
0.0411495
0.173826
0.174097
0.0389401
1.12709
1.00548
1.02879
1.11265
1.10638
1.20446
1.08234
1.2403
0.159459
0.155752
0.0369654
0.0396253
0.151136
0.0387066
0.162928
1.10339
1.16068
1.01833
1.25033
0.151991
0.0382883
0.151107
0.0347888
0.142525
0.160617
0.0366772
0.170224
0.0427801
0.178669
0.0415214
0.177645
0.0407832
0.17215
0.220848
0.21978
0.0520775
0.0574108
0.241413
0.204189
0.0556463
1.18756
1.89296
1.52203
1.32467
1.17106
1.14506
1.18954
1.12871
1.12762
1.2482
1.40578
1.09199
0.236862
0.0557473
0.22133
0.0601765
0.241946
0.217765
0.0600759
0.189977
0.209464
0.0476991
0.0493557
0.0468806
0.199346
0.197452
0.184682
0.174873
0.0439734
0.0458408
0.175364
0.184588
0.0464014
1.27379
1.28291
1.25624
1.3359
1.32061
1.20653
1.31896
1.18924
1.29264
1.27914
1.35435
1.15332
0.176882
0.0448852
0.0421904
0.17437
0.168747
0.0442792
0.184426
0.199784
0.0524367
0.0489979
0.211754
0.200574
0.0494471
0.209361
0.603967
7.73287
0.515846
0.627036
0.498972
0.693989
0.79707
0.807413
0.673049
0.743447
0.896259
0.773879
0.860743
0.211604
0.982273
0.947393
0.234873
0.200692
0.23889
0.199475
0.255651
0.191782
0.896527
0.877898
0.192783
0.218526
0.882059
0.879477
0.195134
0.24728
0.318503
0.260777
0.293666
0.238306
0.971323
0.932476
0.249938
0.498583
7.17487
0.417153
17.2547
0.490849
0.423984
17.4454
0.578068
0.715652
0.602277
0.685996
0.61021
0.715522
0.600948
0.726767
0.745659
0.791934
0.717339
0.821928
0.141023
0.164681
0.151872
0.151176
0.73815
0.732901
0.704607
0.774195
0.164665
0.791826
0.169923
0.757693
0.198685
0.212913
0.190524
0.22433
0.848649
0.793763
0.807514
0.833663
0.542672
0.587972
0.559862
0.587277
0.452646
0.272817
0.30053
0.404887
0.466481
0.423293
0.460877
0.428169
0.45274
0.34326
0.518712
0.278948
0.445811
0.494053
0.558344
0.389132
0.0178109
0.0116999
0.00111846
0.00124345
0.0131123
0.00130186
0.0157951
0.024959
0.00192803
0.0253758
0.00133932
0.0319929
0.0186013
0.00162457
0.504883
0.679518
0.567904
0.626702
0.549108
0.366119
0.334551
0.590469
0.534612
0.506155
0.579132
0.449545
0.602362
0.701251
0.64443
0.651535
0.253933
0.663939
0.321276
0.450218
0.223916
0.175304
0.159127
0.254046
0.262164
0.343679
0.330628
0.288214
0.387052
0.275606
0.412874
0.266666
0.251771
0.420654
0.328994
0.32525
0.0081159
0.00903254
0.000938935
0.00106335
0.00654396
0.0116764
0.00100394
0.420569
0.526412
0.45093
0.511666
0.384227
0.230473
0.244672
0.357812
0.322404
0.426723
0.384601
0.339036
0.444483
0.521984
0.418534
0.517473
0.838983
0.538392
0.721203
0.575487
1.01086
1.32288
1.1187
1.26364
0.972242
1.18953
0.842461
1.25293
1.21512
0.819556
1.05834
1.03475
1.20959
1.07006
1.17392
1.09549
1.2186
1.1179
1.08714
1.18771
1.29462
1.34334
1.31887
1.30452
1.26827
1.13856
1.27757
1.12352
1.29554
1.24716
1.29718
1.30093
1.04836
0.993162
0.954696
1.09937
0.16096
0.156769
0.0389339
0.0402168
0.155284
0.163077
0.0402243
1.0384
1.13894
1.05341
1.13218
0.168629
0.0435243
0.177246
0.0419295
0.174846
0.171174
0.0418631
1.02624
1.12789
0.937419
1.14012
1.06579
1.37183
1.18911
1.20859
1.05427
1.02772
0.975331
1.11512
1.01425
1.03643
1.14503
0.941468
1.01749
1.13131
1.09367
1.09486
1.03522
1.04012
0.995124
1.05587
1.0156
1.05575
1.09686
0.964633
0.97113
1.16314
0.974828
1.0342
0.967353
1.0025
1.0208
0.986833
0.980968
1.0993
0.989819
1.01873
1.00924
0.962709
0.944959
1.12322
0.97532
0.974143
1.0388
0.932594
0.96118
0.911557
0.911923
0.925602
0.971975
1.05816
1.04786
0.975973
0.979333
0.990364
1.01542
0.951368
0.975611
0.938844
0.977213
0.945974
0.37775
6.22918
0.337944
0.397308
0.323136
15.7816
0.442837
0.504024
0.520403
0.427562
0.456446
0.562344
0.482002
0.535614
0.600442
0.647722
0.568188
0.685245
0.0985024
0.156989
0.149314
0.0989849
0.599606
0.607936
0.567369
0.635936
0.596402
0.551565
0.568245
0.580487
0.125534
0.141916
0.137042
0.128084
0.607426
0.61507
0.585172
0.64139
0.322557
6.05659
0.257905
6.78046
0.291783
0.284303
7.31752
0.395826
0.469884
0.394785
0.476394
15.7858
0.3878
0.424229
14.1231
0.350529
0.469099
15.186
0.453578
0.398006
0.421261
0.425755
0.42454
0.0778124
0.430119
0.0706583
0.428188
0.411377
0.406493
0.431928
0.562548
0.517733
0.544157
0.531439
0.55922
0.0890532
0.502657
0.100311
0.555776
0.473148
0.524563
0.500456
0.151615
0.358394
0.220008
0.258736
0.117502
0.158863
0.100695
0.187848
0.133093
0.344901
0.185479
0.213156
0.283951
0.217254
0.327889
0.196423
0.34305
0.185536
0.290346
0.218059
0.306862
0.318314
0.355104
0.269817
0.139787
0.142685
0.126682
0.163794
0.160963
0.165968
0.251461
0.116942
0.152756
0.282159
0.182876
0.235597
0.0902065
0.0927544
0.109932
0.0821773
0.0725941
0.0787407
0.0713299
0.0823786
0.0744225
0.105576
0.0872291
0.0851959
0.223355
0.236612
0.219171
0.227118
0.257352
0.168183
0.200603
0.197202
0.221868
0.148083
0.211703
0.169776
0.105407
0.0905561
0.101656
0.0955222
0.122557
0.147335
0.10527
0.169299
0.110208
0.127026
0.0995432
0.147062
0.374437
0.963865
0.389452
0.987848
0.367323
0.328485
0.355768
0.328786
0.369084
0.342945
0.366789
0.331965
0.322839
0.372752
0.380516
0.326009
0.351756
0.561949
0.382333
0.482276
0.331517
0.317409
0.326525
0.351884
0.393241
0.343372
0.437751
0.328687
0.43276
0.654972
0.42837
0.647937
0.386892
0.338994
0.329817
0.388308
0.880159
1.01357
0.916083
0.928213
0.850558
0.92805
0.875763
0.974449
0.869427
1.16334
0.897575
1.02218
1.0539
0.463688
0.292547
1.38985
0.978387
1.2788
0.904251
1.58361
1.01778
1.15586
1.31872
0.936988
0.847703
0.935118
0.829682
0.97526
0.840003
1.2052
0.889292
1.02657
0.872805
1.12128
1.01679
0.921937
0.769708
0.692232
0.858177
0.736902
0.766065
0.644775
0.558275
0.845924
0.80889
1.02946
0.902884
0.894254
1.03744
0.137399
1.91199
0.150097
1.03318
1.07411
1.19534
0.956891
1.02736
1.39551
1.731
0.957078
0.831651
0.754083
0.708872
0.996784
0.864349
1.03716
0.93466
0.932221
0.864275
1.30108
1.06879
0.93284
47.9501
23.1126
6.13671
106.961
21.2989
46.9961
15.3097
21.1544
7.0286
43.39
4.60336
285.548
9.29444
10.4914
28.8995
2.66468
50.5271
10.862
8.5676
4.62229
12.0311
1.68181
8.03406
7.42324
4.37187
3.10628
92.2535
3.42356
7.07246
4.08052
1.43945
36.1967
1.79577
2.4976
14.0073
298.645
16.3726
33.0051
5.21703
3.74902
7.8646
78.9885
2.49273
8.71975
1.8367
13.0474
2.95356
3.56245
1.7412
3.20805
5.57487
1.57629
10.8317
4.84341
9.89125
5.32892
2.45449
2.74889
64.0566
31.7463
30.1458
249.568
20.9795
390.086
220.156
21.9261
23.6799
47.116
108.331
7.101
15.9508
3.22162
166.797
4.52358
10.3733
94.0523
20.34
4.02132
224.6
6.38442
25.6521
930.817
89.227
36.6601
763.199
71.2415
80.648
81.3262
918.896
66.6959
50.1434
287.034
52.0369
45.5971
11.5792
349.842
6.2387
3.83758
4.38961
12.7361
7.57242
32.585
62.8792
24.9938
5.1545
113.185
21.8247
10.7548
40.0151
8.64979
17.0669
57.8275
6.20988
9.17927
22.7452
3.95036
16.7686
73.9888
4.44231
4.55642
133.845
13.4025
6.75639
111.727
3.04548
9.6088
25.2667
581.378
14.7671
16.3971
154.914
3.03091
11.6597
1.42995
9.13414
2.08004
21.8976
2.06416
10.7031
24.5576
10.6259
5.55649
138.329
27.0942
10.5719
8.66595
14.9229
4.64674
88.139
20.6997
5.54743
2.9298
2.42573
94.0415
1.52037
10.9548
11.7054
31.8136
460.333
57.5084
38.3878
4.3135
14.7447
4.64117
7.17737
48.7206
2.96847
3.67946
6.23728
3.45806
362.429
2.199
6.30387
31.9679
6.85265
20.453
12.8275
12.3012
40.346
189.184
3.40089
3.56955
18.5147
33.7497
59.4827
5.37201
942.825
23.3617
38.1644
10.0746
878.66
4.67551
51.9042
12.1071
81.304
7.97744
744.821
7.6226
25.6942
76.1291
12.4315
66.6654
207.03
624.035
7.27014
1.18895
2.33827
10.3642
1.54843
6.02285
13.9319
15.2508
58.8143
5.59177
6.28389
10.7674
46.4354
425.038
12.1283
4.41499
5.26967
54.2474
2.71901
45.7987
27.7622
42.112
10.4336
233.08
5.87422
58.5362
15.3266
6.27585
47.8188
4.90804
3.78147
9.00862
10.1191
2.22731
215.039
4.15907
1.7944
84.0581
2.36634
5.75502
1.34722
11.2411
6.81832
16.9025
79.9443
3.58846
23.744
1.34791
5.84913
2.60334
1.77095
96.5754
84.6416
61.7046
12.5256
6.80748
26.2935
28.6633
58.4052
86.215
3.90133
22.9339
90.8973
28.5721
8.94963
26.8329
8.77499
9.28674
4.95648
245.982
288.784
33.5761
54.6682
4.28529
8.30398
20.1062
16.1556
5.75866
1.50747
4.14981
3.42847
2.53037
47.303
25.0674
163.154
18.9612
29.2039
303.087
30.0971
4.88007
10.4327
38.9245
282.233
4.9546
14.862
8.70699
3.90024
4.12889
8.69513
40.9202
87.6827
17.9003
68.4191
25.0973
22.3864
19.5068
5.82829
11.4508
14.9425
19.206
35.0611
36.4983
16.905
5.95149
18.8217
16.0617
19.1862
17.1134
24.6054
141.471
12.2576
11.2783
13.6048
2.21333
1.24796
5.33185
5.63682
2.55363
12.4201
69.9011
11.0944
7.70654
104.425
6.62176
31.1667
5.12201
1.34772
3.35317
4.89216
30.2321
2.83593
100.022
8.5496
10.5232
53.6738
4.89096
15.4849
9.33317
3.72839
16.0118
12.4787
4.8765
16.9
14.1591
16.7336
12.8976
5.06415
27.6204
30.8777
34.3789
33.4917
17.6433
16.9427
5.85566
16.977
17.8465
30.6834
30.9622
16.7365
18.3436
5.94221
17.1202
18.2203
13.0771
18.6713
18.9996
9.53051
123.758
9.93794
57.0874
3.57696
7.65837
1.54465
6.70384
72.9535
3.40799
23.6541
16.0684
51.0239
6.00231
3.86408
1.71639
34.2207
6.07069
3.91046
47.0077
458.404
16.222
332.342
30.2074
24.4755
18.8974
4.18455
25.8235
18.122
17.1636
28.1241
28.0644
16.4784
5.88536
15.686
20.5828
16.4255
68.7404
43.5611
4.66419
16.352
13.4037
4.63239
16.1777
13.2863
4.78489
16.4269
13.0967
4.75903
16.3286
13.4701
22.2772
40.1554
7.85102
20.3258
2.96343
12.6617
8.05598
7.56925
9.01113
53.2017
40.0204
10.517
2.83563
5.96002
12.315
7.53665
30.225
29.9237
29.6463
30.5976
17.6003
16.7987
5.73806
16.6289
17.3979
30.3152
29.9638
16.2256
16.7587
5.59022
16.3336
17.0286
21.6075
20.6693
348.662
4.14476
8.25261
1.79504
86.756
10.1237
4.20319
248.423
7.01735
7.12818
18.8194
20.8444
10.6494
1.86312
5.28184
9.72877
4.50333
703.122
19.4319
35.068
6.62495
23.582
5.13997
19.0737
43.9445
16.2125
147.204
6.96977
5.18754
71.6894
2.77549
2.49631
23.2809
8.37335
13.7064
33.2689
4.37363
9.58708
4.36053
13.7416
657.384
192.793
19.3928
790.551
62.6025
25.7285
21.8063
12.1375
20.1176
39.5074
7.76573
4.72109
2.87084
34.5702
4.97347
7.91261
304.786
61.2267
19.4179
248.865
20.6479
62.5468
7.24334
8.36287
3.07328
96.9134
6.44185
8.26773
14.1767
68.8249
7.64246
8.01054
18.2769
66.5525
91.9355
10.1372
4.83973
26.1904
2.76484
3.01083
47.1818
9.46795
17.6315
20.6107
10.243
30.6619
9.62861
58.0126
31.255
67.9743
27.8065
8.8304
108.435
10.7909
8.75229
3.72173
116.029
8.45576
10.0919
14.3267
15.5863
86.0811
13.1507
9.12016
106.091
8.01381
3.60679
9.54275
8.16548
101.037
9.79465
6.90816
21.609
20.5859
22.0067
20.8872
6.8104
6.50536
21.0206
19.9658
20.4814
19.683
6.59815
5.29311
16.1368
13.7961
15.9564
9.47099
5.39449
5.93454
17.3059
16.9208
17.7552
17.6076
5.78869
1.13394
8.13406
1.9371
10.2786
1.59921
1.31328
6.10699
8.68259
104.303
8.83145
17.2044
86.796
25.512
4.98121
29.3825
16.9603
13.0548
31.2835
5.05133
2.96305
2.5369
31.4352
2.24016
6.18675
17.2589
7.76843
63.4768
6.65889
4.84658
11.6763
11.3122
26.3761
7.31687
69.9261
4.5774
2.7836
2.06406
5.67598
2.18503
3.63632
7.87081
12.2369
20.0411
105.901
9.69133
4.61565
2.32175
34.2392
109.627
2.8041
6.82498
36.6438
227.683
20.581
7.24882
4.82888
12.9357
12.3348
4.65527
3.41389
25.8739
252.575
2.68547
33.9113
24.412
2.61804
6.2161
18.1423
35.8303
3.62044
8.54482
4.12038
2.57361
6.19032
35.0473
3.4456
7.26117
2.52638
3.83442
4.60391
77.2367
10.4415
25.4834
7.62932
49.193
335.719
9.53522
23.3422
328.648
7.38667
4.06263
12.6948
5.64507
66.8079
30.3294
6.31602
11.7432
25.6411
8.19344
46.934
47.9355
15.6627
5.0269
15.2896
6.14721
40.8088
9.28931
91.1491
51.6805
43.2105
11.2884
10.9072
444.982
22.5463
33.04
11.2876
4.96969
6.15734
45.4112
8.45468
322.102
128.815
24.8957
11.5501
18.2235
487.687
51.9987
7.04018
13.597
25.651
15.4991
1.7766
10.6055
3.92965
8.06265
2.74572
55.7347
31.6819
1.71416
4.10708
47.7771
2.6662
146.63
11.2446
102.102
39.905
21.672
48.2474
6.89762
7.14723
4.36568
132.64
760.35
119.763
724.461
45.5796
67.8161
70.8996
20.4755
26.6457
5.53405
27.4953
16.4065
42.4525
34.2592
69.4889
71.2839
26.4121
5.51471
9.84624
27.2928
16.3596
59.9909
51.8561
8.74776
16.7773
2.86109
18.6382
6.49746
25.6466
18.975
48.7698
51.8115
19.5745
3.38822
11.3789
19.2097
9.15498
9.70653
34.6229
18.7435
7.36987
46.3586
23.292
9.84764
19.6983
32.2618
49.9255
26.1712
10.372
70.3109
81.2833
45.9638
47.9306
11.4319
40.0993
6.15114
31.3196
11.2689
147.114
85.5487
27.2736
10.9552
6.41356
30.6742
11.6037
73.4106
29.5329
31.7283
13.6461
36.3772
3.57561
33.0712
12.4486
20.2628
12.2929
3.38113
20.0698
12.3139
7.98666
13.6265
530.967
11.8327
10.7199
85.5104
4.43068
2.79259
9.90309
13.4568
3.62965
47.8395
3.53851
5.62592
115.356
4.56196
12.6511
3.96732
6.91284
46.2086
6.27628
956.808
6.35699
33.295
9.09608
59.7146
4.64731
117.331
17.1046
34.7405
52.4102
12.4071
4.01321
3.60528
13.134
10.0266
3.57957
15.6291
30.1408
2.84586
2.14208
50.1221
2.91052
106.493
11.234
208.87
248.968
9.8007
5.05293
2.76983
1.97817
6.96751
2.59466
7.29167
140.418
328.151
49.2092
153.552
64.3049
47.6977
95.9405
11.563
13.9723
14.4707
35.048
9.70246
11.6891
83.0126
7.2142
20.6169
4.9615
1.37208
1.79678
13.4541
1.33742
7.98333
7.62758
10.4599
437.685
66.8517
5.28108
6.2572
8.49049
13.9698
155.02
32.7301
51.4522
39.4724
63.893
507.913
37.287
138.35
22.2787
6.96901
13.9025
12.8601
22.3902
49.4858
20.2268
12.2141
6.95902
12.4567
13.0085
21.7446
9.82715
40.6633
28.5136
9.71325
20.9011
29.5917
9.92182
20.7132
30.7224
10.0593
20.656
30.0495
24.5671
32.9912
5.71513
32.4674
18.8618
33.9651
5.8422
19.1236
33.0132
19.1107
157.873
46.3226
44.666
11.3307
40.9788
6.36514
40.905
11.17
155.261
154.318
10.7806
11.7252
6.34862
41.4332
11.1468
17.5314
34.2955
6.15656
36.4766
14.6198
33.9194
6.01894
19.1649
35.7887
15.9159
15.3863
180.928
200.428
15.6205
228.382
3.39281
5.98255
20.2842
2.35132
12.0044
4.55652
2.27416
3.9328
7.28131
37.2608
52.3355
3.33007
7.20094
2.76928
4.89226
8.21982
1.68809
9.07745
2.48179
1.94801
4.39383
16.3495
9.97193
58.1626
8.34402
5.27896
16.8216
20.8658
7.1796
17.7137
7.10078
197.598
75.0067
13.0016
80.9188
12.9855
15.6625
3.5645
3.27677
1.65089
10.8031
4.24691
3.73727
15.0942
17.7593
5.0483
49.0181
6.38486
16.8466
4.48361
3.88321
1.68937
17.0082
4.49843
3.86556
3.20895
7.21476
48.0322
2.24374
2.1383
51.5832
3.18038
6.8941
12.6757
96.0125
7.89473
19.7238
37.155
3.3861
7.66391
2.50568
23.1222
3.39906
2.23693
54.9892
6.8818
31.2273
9.04221
16.5571
35.3643
6.373
19.3175
14.2577
7.15417
7.51012
17.5047
20.1146
5.75685
4.89199
2.09134
20.3462
4.83522
5.71113
158.36
13.8189
88.2289
15.4109
19.6925
14.389
7.84862
20.3765
7.64716
19.3703
4.52402
2.05923
5.02755
4.77369
17.7168
5.55453
4.72753
7.87231
15.825
8.13848
15.7872
4.62391
4.94234
8.11546
17.1767
8.00991
17.1913
4.97815
4.88176
17.0315
7.08013
17.4815
7.38976
4.77577
4.68205
16.0328
7.31115
15.9617
7.50641
4.68158
62.8507
16.6913
6.95712
6.4219
309.613
8.84775
5.37178
4.80836
8.41167
1.4961
1.61487
5.27772
1.3678
7.72404
7.98025
17.1943
6.76241
21.1865
7.45057
4.17804
124.129
4.71824
6.37923
1.76952
4.06913
2.28081
7.18257
1.81361
2.33741
4.5759
1.79463
2.74977
6.02846
15.0096
2.0913
2.39517
4.71128
2.31061
23.4614
4.00785
64.8733
2.57308
3.47007
14.0801
2.12273
2.87873
49.8089
6.99236
3.06282
2.06793
12.1782
7.72597
14.7919
10.4564
9.55366
4.7018
43.5513
3.20151
23.5111
4.67431
3.24776
75.1273
5.11109
4.08458
20.1798
6.34161
3.43382
121.848
4.2097
15.0468
10.9051
10.5003
69.4385
14.4974
21.1436
101.603
16.6251
269.003
53.8171
6.88208
16.6118
23.0728
23.2664
44.7799
314.521
15.0924
16.738
9.10395
22.7939
5.6325
5.41319
46.1997
8.89061
121.064
11.5214
422.622
7.32652
63.346
11.6644
13.3306
8.10526
7.72934
549.026
2.25509
6.01571
11.6586
2.5038
2.82104
8.21927
1.98448
2.95956
37.2498
4.62137
25.0612
3.70517
3.44595
12.8156
127.049
127.086
1095.77
1621.25
130.541
261.581
252.972
1.46343
7.38932
1.63657
3.85703
2.0893
1.39413
5.28112
1.76316
10.2837
2.81038
5.81555
1.74842
2.70892
6.98019
21.3537
97.0265
35.3749
10.6722
55.2666
33.7321
15.3973
9.5827
24.5784
148.563
99.9638
54.5555
86.784
20.523
32.9018
16.8348
15.3824
23.4824
86.8595
13.3846
33.9752
15.9353
12.744
23.8387
21.3685
23.1147
5.26094
32.6861
22.2086
19.3546
19.9278
35.051
5.91717
22.188
35.9096
22.6991
107.807
33.7023
3.45027
3.41029
5.15635
126.229
5.38505
131.406
2.53731
0.959627
11.3095
2.42784
39.3871
2.73213
0.920731
2.40551
0.567437
24.633
1.64486
24.5238
2.43204
0.556247
5.115
151.401
5.23582
2.52948
35.4063
0.930362
2.29759
2.59154
36.7093
0.923169
2.46947
26.4722
0.624165
1.71366
2.56047
25.1193
0.587884
19.1394
18.6379
21.4043
84.5107
5.68086
54.4846
21.1382
50.5791
21.9811
5.79254
52.3666
21.5897
2.4493
2.58567
49.0763
2.80764
3.31778
79.6809
2.8249
34.1831
121.827
40.6729
25.5632
2.16677
3.76208
13.0193
89.8605
2.92633
512.672
26.7778
29.5468
88.9441
42.778
2.19147
1.60356
8.66104
8.99008
2.08278
13.9456
69.6633
5.25274
5.5526
219.35
4.12054
368.206
221.361
29.88
77.2938
2.23865
3.40571
2.85174
29.2813
96.8743
45.7666
7.9597
2.45248
2.41567
2.97105
8.59211
14.6284
414.446
87.523
102.291
96.4381
29.6757
137.48
39.2699
2.08105
2.26978
11.706
2.58538
19.8057
18.0269
26.3104
4.09256
2.80937
7.77641
3.5563
10.3388
78.4827
10.231
2.04322
63.6102
2.22251
34.1789
1.81015
24.9384
33.8295
21.2316
12.7264
79.8529
44.8879
73.8937
88.9965
32.813
7.36401
1.64924
7.04982
1.23573
5.16513
10.9462
1.48445
55.2484
168.687
107.525
7.19837
2.03857
1.57633
9.32577
1.63764
9.93813
6.80198
4.47543
96.2254
4.89444
184.248
5.9854
142.145
12.5957
9.00702
1039.51
9.99993
7.12187
10.5969
825.071
9.17184
6.14078
8.42791
22.2646
142.963
8.74846
133.129
24.1573
10.793
101.884
24.9653
18.6245
18.6551
98.9274
10.7266
24.2517
100.403
25.3398
5.01376
5.33401
2.66472
0.938396
11.8258
1.96948
2.69346
11.8966
0.950298
2.35887
0.537146
24.2284
1.60002
2.37066
24.8053
0.523784
5.05952
5.12698
2.64297
12.1056
0.941029
1.96284
2.71518
11.7751
0.942913
2.44438
30.2851
0.468352
1.63958
2.62763
25.3532
0.524414
2.49518
2.63312
18.2935
17.8881
21.2384
89.7817
5.97826
90.8734
21.1566
97.6813
22.5674
6.08227
89.9175
21.2079
2.24896
3.20393
8.30971
10.7999
12.6992
49.3225
169.403
35.4462
14.4997
14.958
13.1672
14.2698
147.071
33.4999
1.23348
1.67374
3.27079
6.30675
4.32854
1.06677
1.74816
1.49486
5.7803
7.00964
2.11933
5.55172
2.03909
1.54372
9.83742
5.30656
118.315
2.62259
102.886
10.2623
2.56937
25.4412
22.9257
45.3477
10.0318
52.3991
9.42972
9.38527
3.91256
40.1123
2.30284
73.3714
8.89213
2.34477
26.3832
28.6858
1.83451
2.6432
7.13821
41.4831
1.91943
2.46478
6.48218
1.77724
6.09951
38.2722
2.56556
2.28023
6.61045
1.64052
11.885
5.95418
117.227
2.63515
2.76655
129.088
10.0447
48.3259
117.422
20.4034
10.1523
70.3592
10.6037
13.1982
6.062
3.00958
197.905
33.2956
2.99618
135.572
44.423
28.9428
4.56434
6.50244
16.8878
6.60875
17.0653
4.53001
4.35522
6.36089
16.5539
6.28169
16.3672
4.42139
2.75332
7.81796
5.97205
7.81251
5.86067
2.79272
2.76339
7.81073
5.93408
7.72575
6.05001
2.76074
20.9553
9.63134
22.9148
84.3723
44.8838
10.4414
43.0887
27.1784
3.92885
5.58683
31.9434
6.61278
61.5473
10.3571
23.3424
6.91075
4.82672
16.0999
6.05457
5.36407
7.26413
6.42169
341.022
328.892
2.78631
4.59431
26.5133
4.42703
17.8402
81.2778
296.574
7.75631
4.33962
7.58346
109.184
25.1962
334.305
49.563
20.9402
126.052
0.527382
7.13568
4.38994
0.607575
0.508862
4.92181
0.658386
16.5678
5.56736
12.0913
40.5673
13.0243
16.9921
5.51126
9.72168
12.5287
80.8291
12.9416
15.3446
41.9401
14.9457
1.26975
5.57093
2.00152
4.486
1.74593
19.4146
18.38
2.27361
3.27672
48.3865
2.34018
94.7622
15.2595
86.9043
20.1923
20.0878
20.329
2.96
3.63453
2.52217
32.5389
112.292
92.1337
70.5715
4.89377
6.8991
124.831
4.40704
68.2066
36.8175
29.7597
1.84103
6.28263
2.42071
10.818
2.66502
22.0123
21.6251
34.3301
51.115
6.07771
3.60843
4.00326
38.1016
15.2802
10.1569
7.13061
7.39904
4.84647
88.2632
5.30334
7.88972
5.45253
5.69587
4.87045
49.4982
4.82342
3.58329
7.24607
5.23782
231.24
4.47201
7.03328
3.46692
7.10854
7.08984
4.64467
4.14123
6.81671
8.89443
1.22303
2.09208
4.42088
1.56891
8.35212
40.7412
61.5487
74.4987
20.1079
14.5635
7.34663
5.51519
13.5113
5.181
1.01917
1.82796
5.66091
1.30918
7.24485
3.66966
19.2808
10.4883
18.5246
14.1473
8.47928
7.91457
9.01026
12.7232
10.4149
47.9493
29.6396
17.3632
2.03149
0.919681
1.07599
4.87258
3.7888
0.717638
2.69532
10.4007
9.72867
6.16387
17.0639
5.6329
5.67956
4.21351
6.21159
7.18262
3.56672
3.17825
14.4693
8.08535
8.07932
4.83798
13.2127
24.2974
11.432
23.8707
15.357
15.9928
11.2116
22.7665
23.4841
2.68089
2.76545
5.74144
3.3543
1.81015
0.738697
25.2469
2.56692
25.1287
1.83695
0.7319
3.6507
0.659287
2.1107
3.72961
0.633691
6.01818
6.15419
1.69833
24.1097
0.988319
2.53241
3.22164
24.9397
0.703831
3.6199
0.621354
2.05999
3.52781
0.610111
15.0866
16.4103
24.8876
2.72019
25.162
22.3081
2.70931
25.3294
3.21021
2.99287
1.03574
17.9802
0.76072
26.4953
0.818688
0.937734
42.304
1.34974
118.216
2.732
94.4337
1.98541
1.75875
67.9551
1.31031
1.50441
32.1313
83.344
1.20446
1.6185
62.9813
0.692347
4.87484
10.1614
0.944414
0.660639
5.51869
0.857596
1.11365
2.1327
14.4494
1.73996
0.637494
2.44362
19.2681
1.2575
1.65446
15.9741
24.7245
1.06173
2.19012
22.4511
0.545782
3.8122
0.571863
24.4858
0.48541
0.722567
5.21777
0.497596
4.69917
10.469
0.841024
0.582396
4.91868
0.673219
0.673541
1.26
32.224
13.9109
0.954884
0.847508
9.63061
2.99002
3.53219
101.694
4.87329
2.31779
83.9754
1.66246
14.5165
22.316
1.68125
1.36093
2.0954
35.8066
1.77033
1.87913
83.8739
35.9562
1.84691
2.07167
57.4438
63.5097
198.016
25.4932
2.57958
23.2981
15.1039
14.871
2.55853
23.5875
23.3443
5.82315
5.71064
1.80604
0.704643
24.716
2.45872
1.78254
24.5787
0.705978
4.31904
0.608578
0.943136
4.14768
0.412666
6.30756
6.19808
1.68733
23.2248
0.652001
2.37993
1.66482
23.9852
0.658811
3.4965
0.440377
1.63426
3.46812
0.456268
3.85118
28.6436
77.3729
52.1472
5.34578
66.1085
105.985
221.649
3.62167
15.1739
15.5547
24.7253
2.5836
24.5159
23.6565
2.52433
24.1525
20.4957
142.233
54.6858
45.984
72.7087
58.1534
346.825
87.4982
62.7559
2.58718
34.2516
2.19075
3.09997
6.11081
17.7296
6.04301
18.8891
5.88918
11.5131
5.79153
3.05742
6.28722
31.5295
6.31924
21.3793
5.5729
10.8234
5.55795
5.68858
2.218
39.2445
1.52229
38.6131
5.74091
1.51472
34.4203
135.415
141.729
32.6316
10.3038
4.46369
10.4822
4.48317
5.65524
2.2382
37.4796
1.57327
38.5072
5.56469
1.59289
36.9576
145.672
142.914
37.745
6.23475
2.44088
39.6764
1.54102
1.65052
61.5274
5.83834
44.5675
15.1799
11.0997
4.47607
10.5255
4.54454
7.38094
2.48693
1.77896
16.3654
5.77856
1.88988
11.8955
40.6574
147.813
537.928
38.0478
2.09939
124.68
5.13516
6.42903
5.3169
6.65659
2.03143
1.92868
95.4509
5.01773
6.27892
4.98727
6.51619
1.96984
1.81222
84.1288
6.11341
4.68008
6.07859
4.66364
1.82087
1.84396
88.6456
6.13221
4.71161
6.22998
4.76449
1.82659
113.279
42.3822
1.76314
1.62739
12.5846
2.21437
15.7379
32.9608
64.1291
5.9288
5.19126
4.38056
138.799
48.2356
24.2813
2.18678
3.58584
3.05752
18.089
67.1394
50.0211
94.9231
40.8072
353.834
25.3425
25.6297
14.4564
10.4472
39.945
4.69016
1.00762
1.29744
3.01695
1.31992
3.29483
4.34141
11.2438
2.05473
2.48589
43.1246
1.82977
17.2569
31.3588
12.0021
24.1553
1.75203
2.33247
1.78459
6.53875
27.8135
23.6296
7.69098
8.98668
22.4769
42.0205
78.768
22.2282
121.938
53.7291
23.4111
4.30284
0.93779
1.37825
5.80978
1.04828
6.46231
4.07976
11.9263
4.85236
5.36045
10.9486
4.88047
18.7363
1.71569
1.42833
1.27447
13.2548
5.62147
15.1777
6.9927
5.8298
17.5355
16.6933
36.2163
46.002
15.6518
6.17065
6.40983
7.03553
407.928
6.58004
3.65644
61.6487
5.47084
44.1021
26.4098
4.55226
3.33127
4.85409
94.323
40.807
134.291
22.9153
35.5196
62.0897
29.4025
1.55839
13.7323
0.989044
30.0643
1.28508
11.7734
28.4148
1.74261
1.24761
53.6195
1.4442
19.9701
71.029
425.284
49.8773
40.3641
21.9956
6.04533
0.862686
0.969839
1.10104
6.77638
15.3146
125.552
6.29006
14.9167
6.948
12.6016
4.84965
4.56566
4.86337
4.40904
5.0644
5.5869
4.99762
5.58048
6.09902
10.3022
11.7594
5.40151
10.1005
17.4665
23.1421
7.88086
3.59044
0.840386
5.56334
0.881354
3.91822
0.694412
5.16911
8.87425
4.48301
4.20365
9.25745
7.94421
3.32506
4.01232
6.27657
11.9848
34.9431
12.2797
26.627
3.31135
4.30769
0.7626
0.548222
0.601042
4.73913
3.01352
43.4671
19.7114
55.2471
17.1084
12.825
0.676776
0.733887
41.1236
0.611113
18.8569
27.0721
5.62955
0.459563
0.418331
3.82877
0.49713
4.12279
5.33562
48.5366
112.287
44.6276
6.00799
4.55038
0.575659
0.418825
0.504948
14.2401
4.34861
51.388
91.1098
40.6928
12.8472
15.4273
32.6814
0.836471
4.98205
0.801674
3.51302
0.922651
0.704099
5.03686
0.486599
0.474909
2.27443
1.72018
0.471693
0.50726
3.08443
0.398551
3.04221
0.624958
2.69133
0.480067
0.522442
2.11559
0.296346
0.447706
1.40999
1.80625
0.362226
0.371641
1.38922
3.5472
7.66241
4.80017
2.45138
5.51714
4.03141
8.84831
6.91849
5.42755
25.8132
4.37008
31.6803
20.3873
17.4953
4.38588
9.56814
50.7111
3.02187
30.14
31.1351
85.1424
0.988219
23.0894
4.78955
7.29942
1.43886
19.7202
5.69898
40.2423
11.997
11.8573
4.15706
0.996678
36.9023
2.55861
37.9078
4.07435
1.02453
1.34513
0.166047
0.278154
0.182915
1.23858
1.38742
0.226453
0.324145
1.42938
0.208401
11.9611
11.3774
4.2494
39.9254
1.06663
2.62954
4.29644
38.7606
1.05322
7.68804
9.18875
12.2686
36.3132
29.9141
16.9024
10.4002
18.5287
13.6739
20.5029
20.1221
9.15004
4.16228
9.34768
9.60737
4.24362
9.45039
2.18753
6.39399
10.9857
1.68808
4.22568
3.74697
4.33511
8.40395
1.1291
0.391771
3.02134
0.476429
6.39483
7.6744
4.78821
7.78115
2.27389
68.7358
2.33764
116.937
2.84888
537.235
2.30031
4.89325
4.44717
2.91467
3.98844
3.58614
7.15695
2.9035
7.48663
17.433
16.2789
3.13765
8.16728
7.48951
2.34392
2.58287
4.57689
0.95423
36.1444
2.44947
3.96694
35.4159
1.03213
2.03987
0.136963
0.14757
0.108399
1.15596
1.96829
0.102073
0.139802
2.32014
0.102256
21.7875
10.996
3.67054
33.3738
0.876479
2.27405
3.90441
34.1843
0.862574
0.214888
0.526785
0.296279
192.525
10.0277
0.946206
1.01391
32.5957
0.914883
39.7256
8.97749
7.4329
0.315327
0.776998
0.542824
1.04774
1.06962
4.87414
0.94335
0.302894
0.416255
14.3451
1.66319
3.20355
1.65356
55.5875
36.6585
17.7498
18.4049
9.04666
3.91211
8.8056
8.33319
3.76741
8.65691
61.666
0.834727
53.791
1.34561
41.1354
1.01906
118.136
451.148
53.612
1.0355
1.12588
38.374
1.07165
45.1263
49.6652
60.6443
1.71863
1.4155
1.18209
242.304
58.8783
1.41086
2.68978
3.17597
0.937178
0.469813
0.499305
0.357654
1.28336
1.49642
0.383902
3.06385
9.10622
0.424785
0.318042
0.37873
3.71436
4.50402
3.1417
100.797
35.8167
2.34292
2.61304
27.0094
29.442
2.77301
31.8665
134.707
5.58408
6.46736
137.311
5.52655
117.255
114.548
36.4334
2.39063
2.86179
32.6853
37.2717
2.829
32.1605
132.767
4.92732
5.70514
105.769
5.42244
96.006
113.687
4.1678
1.36322
4.95823
1.10953
4.64691
4.25614
1.088
8.66589
20.7084
21.513
8.4662
7.25289
4.72836
7.41084
4.65643
4.01812
1.29477
4.37303
1.0189
4.44542
3.98973
1.0353
8.86355
24.4802
21.8814
9.09389
4.47344
1.72535
5.56758
1.15336
1.19908
5.8654
4.38377
9.5559
29.1798
9.7518
28.4777
7.70604
4.83212
7.52352
4.92577
4.54874
1.76303
1.21975
6.01554
4.60302
1.2221
5.98431
9.49927
26.2625
28.2678
9.23419
1.71545
75.728
4.2226
6.06219
4.20701
6.37107
1.68403
1.64126
73.4126
4.16366
6.06712
4.13276
6.00102
1.66273
1.41519
62.1122
5.26025
3.71365
4.98801
3.66548
1.45686
1.52642
67.1977
5.39741
3.79894
5.55249
3.88401
1.50346
10.3828
6.43038
5.53684
11.5463
1.9966
0.333499
0.288079
2.91415
0.345323
2.43498
2.51448
10.4979
12.6662
8.52038
18.5046
9.04103
3.94334
4.80698
7.24985
12.501
28.4967
14.2482
26.051
3.62191
5.36413
3.30032
6.78103
5.42065
4.26067
73.1689
3.77833
6.39991
4.69216
46.8379
2.97475
3.3131
4.18015
4.07922
10.4985
5.166
7.6592
5.33919
5.32492
4.65702
5.56012
3.23192
2.22802
28.4496
77.1981
2.41148
102.001
3.06082
3.82651
2.86138
31.0777
2.74873
3.9984
319.593
4.56444
5.83407
4.07279
4.28309
17.3534
6.57062
10.8065
8.53624
3.01012
0.306562
0.280259
3.1133
0.298035
2.6374
4.08095
3.68636
0.335168
0.259096
3.19099
0.311536
4.43058
2.70495
23.1673
72.8733
39.8249
60.9344
18.103
13.504
27.4012
9.38972
23.8562
32.1939
13.0193
51.3368
3.23622
4.75247
4.98882
2.76293
4.35553
13.4717
8.52433
6.1797
3.86617
3.76984
7.10685
2.46293
3.92298
5.10818
3.25474
5.69724
2.31286
40.9812
3.17107
94.6736
35.9675
2.46495
3.13018
1.59686
1.2171
10.7968
19.7227
26.9009
1.34157
1.56956
1.85031
34.7592
11.5084
1.39913
28.8537
1.39757
1.84834
2.09454
80.0115
29.058
2.48457
34.2352
2.77914
2.05765
2.71836
46.3072
3.52018
3.73811
71.4646
2.5573
2.15368
1.97848
16.5703
71.6436
1.71503
2.69173
39.6916
2.08392
36.8768
15.3429
1.4197
1.54266
42.6878
1.89177
2.94707
5.07483
319.071
3.72988
4.13516
74.2931
5.53607
4.39227
2.41148
4.29207
2.28462
2.88171
3.09044
2.36741
2.55023
4.21895
2.77534
3.54483
5.00097
3.3469
3.79117
4.59512
40.9466
36.9005
47.107
25.6617
3.60747
0.39043
3.78378
0.39036
3.19658
0.456768
6.79191
44.9353
15.5506
22.9441
32.2425
3.28067
0.479793
0.637617
2.81068
0.581408
3.41498
2.65933
44.9019
41.2266
28.7938
49.7967
3.85125
5.39764
0.456201
0.412846
0.525974
6.86092
4.07302
43.3139
21.9801
30.702
33.3183
7.19632
3.09225
6.99626
14.0951
14.6935
2.97983
6.55948
6.85963
11.4858
29.4014
4.27643
7.47172
0.233126
0.375597
0.208924
36.4742
12.5707
0.979038
26.2461
1.18876
5.59098
1.03583
18.2416
3.39845
0.354335
0.295137
0.493538
1.64816
37.0834
3.33522
4.39296
0.723616
0.250429
0.528545
10.3513
1.17856
4.22659
4.88398
1.86561
0.409114
18.4423
1.2077
19.7236
1.82166
0.420183
0.401787
0.114072
0.275316
0.105917
0.499277
0.34549
0.0603216
0.101766
0.381791
0.0619486
3.9704
3.89277
2.07954
24.9905
0.534857
1.48602
2.25396
21.6189
0.49487
287.632
36.8683
48.1826
19.4173
0.363801
3.96352
0.341387
11.1732
0.444286
7.16717
142.852
74.8719
22.6637
0.82657
32.6789
1.02331
45.0219
0.803579
21.837
246.355
43.2067
61.505
50.6159
20.3257
5.81251
0.382518
0.675828
0.54901
7.17309
12.3924
13.8039
13.0598
5.10349
1.45468
5.65196
6.38677
2.17789
6.06966
2.88609
31.4374
19.2605
7.89298
3.54928
0.464721
0.674285
2.75999
0.609244
3.36994
2.74301
4.52461
0.0865933
0.13614
0.157569
1.17195
4.14806
0.170598
0.112295
0.146596
31.4136
1.23558
4.43922
0.391683
0.489685
0.338773
3.17081
2.21738
43.4286
16.1419
24.6195
6.98245
5.00052
2.64544
4.36848
4.59901
8.66042
16.5419
6.62116
25.6978
0.483991
0.124869
0.523142
0.134437
0.488832
0.142868
0.512739
1.44945
0.408893
2.68027
0.321473
2.21962
0.287506
1.76348
5.10754
5.61064
5.99604
4.73654
10.1405
16.6617
26.741
17.0438
0.515739
0.443874
0.144215
0.178372
0.159954
0.490661
0.550596
4.79369
0.817091
4.56558
10.3752
10.203
0.842026
4.67326
4.61337
3.50196
3.33384
1.87793
0.403175
18.1924
1.11986
1.84216
18.0035
0.393296
0.796441
0.120319
0.198741
0.143131
0.572313
1.56396
0.217535
0.335229
2.1501
0.179727
3.89031
3.98374
1.53165
115.31
0.366739
1.04453
1.49691
17.1255
0.351065
1.59842
3.65128
2.28949
5.21836
1.2222
6.43728
4.85922
1.0067
10.7452
10.6704
4.99722
1.19788
4.87631
4.91152
1.12714
4.78642
4.50003
3.79711
4.43554
2.95611
4.30629
3.32307
3.51083
4.54643
4.84128
4.59754
4.01653
4.48574
0.578815
0.654701
0.141352
0.13475
0.138252
0.61786
0.537545
4.56791
6.02408
4.78212
4.97358
1.86748
1.99591
3.48814
1.47938
0.682321
0.292583
3.05396
0.313176
1.60086
0.154872
2.01048
3.13608
0.102866
0.153119
0.132437
0.932107
2.27435
0.30317
0.139506
0.116793
1.78947
2.87707
11.6355
2.43501
15.3931
0.388428
0.372887
0.184197
0.17057
0.17819
0.487975
0.320296
32.2827
1.15833
1.58389
4.08615
31.2879
1.62091
4.17751
12.2645
102.892
2.03539
2.79061
13.6383
39.9818
1.95694
119.595
17.8604
16.8043
33.3146
1.21337
1.88179
4.93245
8.97067
1.68934
4.36642
11.9182
1.83938
34.8163
2.27672
11.5193
36.6731
1.88279
114.846
16.0858
110.468
16.6224
1.91164
0.931443
3.93318
0.572644
3.84243
1.9366
0.569576
6.11386
30.2227
8.94907
5.88311
6.59522
66.4299
3.56644
6.65893
3.54429
1.79489
0.931037
3.80713
0.493156
4.21534
1.64263
0.537966
6.13969
10.7976
9.98205
6.18867
1.97727
0.983466
3.95961
0.579479
0.594754
4.03655
1.94946
6.41561
11.6358
6.52103
11.2938
6.84799
70.2533
3.61695
6.69005
3.67572
2.01242
1.00862
0.609344
4.15468
2.03057
0.608626
4.11672
6.35104
10.858
11.1975
6.19892
1.2752
55.0339
3.22853
4.37066
3.32981
4.50362
1.25319
1.15476
30.7335
3.07011
4.25189
2.60736
4.11758
1.20358
0.848896
14.4525
3.20449
1.45829
3.16832
1.4539
0.859222
0.902007
15.2799
3.33907
1.49247
3.32781
1.51587
0.895912
1.32565
1.349
33.5037
46.1626
1.2614
1.65616
41.3188
1.24362
1.51154
41.7384
45.7903
1.45431
1.50318
1.18017
32.7916
1.02574
40.0812
0.97909
40.5893
1.22031
1.63039
90.4598
2.37107
2.11912
49.4038
1.97559
1.11273
1.31312
18.0947
32.6524
17.6251
1.27161
1.36176
1.02933
1.1223
7.53851
17.9362
14.5992
1.00485
1.4274
1.10577
13.7616
4.94225
0.860313
13.9827
0.918291
1.03079
1.28206
33.2708
26.4704
2.15121
18.3111
1.85246
1.6175
90.7007
73.4822
16.9144
35.6225
38.137
44.6046
18.0622
44.8833
40.7474
48.155
0.840175
1.32746
14.7374
28.2786
1.02795
1.0782
14.3797
0.578092
0.61063
3.90504
5.25146
0.608687
5.24603
0.709514
0.835868
11.4595
0.759419
4.35934
0.697993
0.891661
11.594
0.675077
26.64
1.01515
9.97802
0.809975
11.6375
0.837779
1.84252
1.62237
34.6142
71.97
2.05233
1.70016
3.42019
2.57032
4.66484
1.68531
2.82271
36.0898
2.84506
3.82235
2.10079
2.36667
301.326
3.16892
2.68648
2.95333
1.17189
19.357
1.29068
29.4861
1.34346
35.1648
1.47571
1.51088
1.52839
45.0278
81.9263
1.51287
43.7114
1.74215
1.60706
17.6274
1.05621
41.75
1.26133
1.34547
39.9384
1.2763
35.4014
53.1392
1.39974
39.4984
1.68906
1.37003
32.6596
69.3667
34.7363
12.4463
34.0935
30.67
25.9392
13.5346
28.9061
78.9532
38.162
35.1129
0.682636
4.74483
0.784815
8.91539
4.40847
0.897757
0.751254
0.563689
0.525212
2.50217
3.03622
3.15815
0.587438
0.612622
0.746799
3.75955
2.70469
0.695415
3.41881
0.646528
0.787783
0.624615
9.22479
3.81971
0.686406
4.03456
0.685201
0.719747
40.2847
304.844
42.2803
79.5017
321.031
1.02368
8.07768
14.8879
1.4164
1.15972
8.61273
1.22058
0.859417
0.67109
3.71162
4.86794
0.932815
0.767876
4.83099
1.13957
4.44261
3.60912
0.945394
0.987242
4.56147
1.07159
0.976053
14.4428
1.07456
9.28432
0.893685
1.13311
8.61075
285.901
0.731771
0.870124
26.9326
10.1537
0.978703
0.848231
17.7176
0.762958
0.849219
36.297
20.71
22.709
0.8383
0.968379
0.797371
33.4291
0.927911
34.8493
1.10634
25.5502
0.863871
0.866603
10.6571
0.755945
16.1138
0.764831
20.6827
0.84826
2.11736
1.18199
1.35129
1.02419
1.92447
1.83087
1.83182
2.11724
2.45055
1.45541
2.37238
1.59492
2.02728
1.939
1.85867
2.30099
4.51967
1.94194
4.6174
8.93724
10.0152
1.86289
3.98529
4.53014
0.582722
2.10112
0.740355
5.14432
0.898439
0.403085
1.08791
3.60616
46.2642
1.08528
2.22626
0.495903
0.586824
0.525061
0.110095
0.459844
0.451758
0.126419
0.066077
0.0108891
0.0130335
0.153879
0.0119318
0.13098
0.0497382
0.0860012
0.231832
0.0150261
0.0159209
0.0985435
0.0141787
0.163328
0.435935
2.71257
0.365704
0.584712
0.155877
0.49073
0.64456
0.141285
1.33596
0.844618
1.19325
1.20447
2.04102
2.92314
3.72987
1.80387
2.26196
3.97448
3.96718
2.93594
1.5543
1.48714
1.38211
1.48837
8.1086
7.10274
12.0958
1.50978
12.3642
3.5189
1.56087
12.9207
1.57506
22.38
53.3102
1.02841
222.052
1.33314
1.69148
2.01911
1.81395
323.421
2.07459
2.1621
1.74239
27.7925
81.5024
1.30817
1.5227
198.712
1.31049
2.2917
257.449
2.42439
2.53747
2.34605
26.2361
1.50432
12.3007
6.40146
6.26726
1.50731
12.2561
12.2222
0.15066
0.803452
0.138974
0.801884
0.281085
0.0912303
0.395749
0.370557
0.0771642
0.0210997
0.00760347
0.00740903
0.351001
0.00663381
0.0116553
0.160224
0.0216041
0.197324
0.00597506
0.00733205
0.0242506
0.00590046
0.189172
0.168451
6.43274
0.351229
0.966529
0.246462
0.0633921
0.386923
0.225856
0.0687746
6.47075
6.56505
12.11
1.51121
12.2111
12.2757
1.52537
12.2448
0.594357
17.7818
0.549594
3.98576
0.757105
16.0632
0.508297
0.716454
0.905731
34.7068
20.7447
0.891004
23.1175
0.921182
0.783439
22.7809
0.825085
32.9153
0.824762
0.773365
20.8885
0.728038
6.81008
16.6772
0.640408
19.4378
0.668418
0.924542
4.0896
0.977058
1.16317
3.98075
3.98831
1.22719
4.12297
30.2695
26.3461
7.36392
14.4792
1.5926
1.82437
7.60774
14.2186
1.62137
21.041
48.7526
22.562
27.5553
4.14718
0.970593
1.21335
4.65197
4.39904
1.21774
4.1751
7.38703
1.46626
11.9826
1.81996
5.85868
13.9278
1.61816
20.9243
25.7177
19.3817
27.3361
6.71166
7.09056
7.59304
6.46945
3.90401
50.939
3.01198
4.0068
3.07452
6.6937
7.66263
7.622
6.65209
6.53359
14.921
6.59645
8.23126
3.21608
52.3639
2.98619
3.95548
3.00219
6.59635
7.69462
8.22373
6.6376
0.776321
13.3916
1.35115
2.78281
1.40932
2.99762
0.758182
0.751718
11.9957
1.33836
2.91251
1.34073
2.8988
0.779316
0.762531
11.1705
2.80564
1.35496
2.81865
1.44349
0.762365
0.74256
11.3761
2.79979
1.33653
2.79901
1.3765
0.756192
0.132548
0.126862
1.82375
1.98651
0.119712
0.143375
2.17934
0.121603
0.116123
2.14404
2.68405
3.56879
0.153409
0.118919
0.114668
1.57186
0.122141
1.90635
0.10291
1.8955
0.138334
0.142631
4.32354
0.184619
3.33428
0.160342
4.18775
0.149166
0.30175
0.246802
1.78942
2.92398
2.18644
0.192252
0.36789
0.359724
0.337317
1.53915
2.36786
1.94282
0.293453
0.403923
0.436871
3.25072
3.02768
0.513722
2.46106
0.487231
0.528943
7.28783
10.5985
5.8461
3.61556
5.34838
5.7464
6.21051
3.49854
5.2774
12.5051
5.9106
6.40428
34.5874
34.3066
40.2747
96.1314
41.0956
33.8522
49.6221
36.3449
35.9075
46.0343
0.0901798
0.107941
1.07364
1.43613
0.103811
0.0930037
1.13765
0.0806496
1.28323
0.109635
1.02038
0.0908854
1.03593
0.0963796
0.524306
0.295533
3.56875
5.84821
0.34833
0.443944
8.96341
0.812956
0.725939
15.0047
20.7996
0.787785
9.88193
0.988774
0.768184
3.90113
0.581584
11.9159
0.66995
0.636039
8.28643
0.628388
6.30046
0.520142
17.6089
0.420204
10.5283
0.760988
16.3064
30.2901
26.0851
23.659
23.1883
24.9364
13.8667
23.5861
25.1056
30.9763
25.6029
26.1783
0.10929
0.963931
0.0996681
0.859348
0.0980478
1.17885
0.118013
0.144615
0.146275
1.90033
1.75874
0.157804
1.47928
0.1575
0.13282
1.07753
0.118887
1.65234
0.137494
0.115013
1.28419
0.123586
1.04291
1.44813
0.165923
1.43413
0.140814
0.136381
4.44847
6.04646
4.72618
2.75327
4.94652
4.53378
4.00724
2.61336
4.33255
6.49222
5.39264
4.93845
12.4031
5.75933
8.78154
13.6813
4.04687
7.84109
13.4162
15.8155
11.2861
4.86085
3.78084
6.24997
0.0760026
0.51382
0.805353
0.0853727
0.0860663
0.677625
0.0734027
0.0875311
0.900023
0.112036
0.903249
0.0972683
0.0997757
0.75802
7.01027
10.8493
16.3605
24.4549
20.0544
22.4777
7.74261
23.6506
18.7603
16.0642
18.9108
20.7032
0.123788
0.093445
0.773444
0.619394
0.10747
0.103363
0.732968
0.133125
0.124574
1.01573
0.68706
0.817875
0.161938
0.106681
0.151285
0.885057
0.143169
1.06353
0.124554
0.880193
0.185208
0.110321
0.566421
0.0796296
0.585585
0.0930815
0.668937
0.0916739
0.154825
10.063
0.178283
0.836209
0.248896
1.70041
0.141993
0.104627
0.111217
2.12812
1.36074
0.112929
1.52201
0.106597
0.160118
9.65264
0.211924
2.72334
0.154375
0.239471
2.07038
0.097529
0.534147
1.02481
0.0881448
1.23258
0.0861702
0.100714
60.2465
3.12302
1.5537
3.60226
6.8117
7.30317
291.282
1.37032
3.2456
3.45325
0.0596467
0.122053
1.38901
0.0857674
0.296161
0.0116937
0.0116771
0.00293899
0.00243803
0.0120431
0.00282799
0.0126996
0.0621401
0.989763
0.16273
0.190928
0.0589744
0.0714507
0.0273048
0.189877
0.0896624
0.0220993
1.0721
18.9908
6.39167
0.630254
0.873525
13.5566
0.909823
1.18797
0.808117
20.0147
24.4681
0.904338
1.21345
18.9292
1.37773
37.9393
15.966
0.742685
0.984712
15.3388
1.38687
1.10962
7.81319
0.638164
21.9501
0.924872
0.773034
17.7853
109.495
2.93574
11.7116
20.8039
10.1322
12.4682
6.3527
5.89279
2.52403
0.896554
2.6905
129.615
23.3579
14.6758
2.18012
7.72448
9.78122
3.00941
0.95556
2.78274
0.130915
1.26414
0.465457
0.183107
0.686124
0.222721
0.103073
0.161847
0.151445
1.61312
1.50857
0.163778
0.158168
1.3598
0.146193
1.25625
1.15366
0.194343
0.145586
0.963838
0.218376
0.162877
0.725628
1.24871
0.158553
0.1643
1.16764
0.151398
5.586
0.94026
5.36895
6.47506
0.41605
6.70037
3.59801
3.4846
12.4249
2.70931
5.91011
7.75029
14.2332
7.52993
0.445294
7.11032
6.90551
0.62305
1.98428
3.99452
0.0414717
0.0516279
1.97502
0.025981
0.0599799
0.0548046
3.62071
0.100597
0.0757646
0.0993219
6.95496
1.14591
6.40752
17.579
10.2445
10.2049
3.70451
5.45683
2.34198
0.654637
1.91941
9.23814
16.2992
8.72698
1.78707
7.76347
7.88708
7.31528
0.547722
19.5359
0.260254
0.828349
0.107081
1.43279
0.155146
1.44165
0.190249
0.226346
0.144621
1.2263
0.95619
0.196092
1.42883
0.149342
0.260015
0.980531
0.161736
1.22953
0.225356
0.170142
1.38893
0.204229
0.533241
0.922056
0.0260441
1.51802
0.0806461
0.116341
3.22403
0.373722
0.637942
1.25011
3.19208
0.646995
1.27319
11.4288
20.0096
11.0831
20.7762
2.97986
5.91457
0.771438
0.75404
3.25808
3.95921
0.717064
8.62796
5.00955
10.2494
4.25295
3.30911
0.392828
0.737918
1.70357
3.86372
0.668691
1.32721
2.89643
0.684002
3.67971
0.722817
2.8573
3.81715
0.693315
8.52508
4.08383
8.28123
4.20775
1.85692
4.01673
3.34296
1.62653
1.94473
9.57213
1.76777
1.98442
1.74068
1.97062
3.84696
3.57701
2.04006
2.17623
4.2597
2.23199
4.04911
2.11876
11.1289
1.82315
2.04313
1.90777
2.16561
3.9019
4.01522
2.09029
0.62866
9.30011
0.893033
2.18847
1.0573
2.38153
0.579287
0.457961
6.83261
0.772198
1.96413
0.728797
1.8192
0.491289
0.3609
5.21456
1.48159
0.578102
1.44592
0.569462
0.366694
0.449233
6.20812
1.5406
0.605465
2.05467
0.667948
0.38744
0.0296302
0.192656
0.0310576
0.146256
0.031701
0.176652
0.0291674
1.15941
1.46423
0.944024
2.04528
0.72207
0.786846
1.01349
2.13702
0.852956
1.29808
0.778277
0.861984
2.70539
2.66104
2.59498
4.22929
1.49417
2.50053
3.07416
3.9292
2.79582
2.47767
1.27571
2.3322
0.046017
0.0886606
0.561614
0.184821
0.0755639
0.195316
0.0501393
0.042648
0.217674
0.0556389
0.45237
0.0646447
0.0383173
0.221196
0.0418786
0.226055
0.0498339
0.157934
0.0491158
0.198966
0.042289
1.7063
2.54365
2.2092
1.92897
1.15595
1.93691
1.5334
1.84308
2.04663
2.33511
1.22203
2.05072
0.56409
0.697248
0.56854
1.75176
0.646619
1.99505
1.70626
1.5527
1.77674
0.779808
0.689535
0.613868
0.867958
0.618985
0.804271
2.25176
0.252167
1.22749
0.972214
1.22405
0.918296
0.641109
0.247677
0.990533
0.774863
1.00667
1.1655
1.58988
1.69854
1.53298
0.884295
1.52013
1.39666
1.14862
1.44454
1.27739
0.0272077
0.152614
0.0307338
0.139248
0.0285945
0.0297804
0.132516
0.433917
1.37421
0.606468
6.05583
0.211107
5.31531
6.62561
1.48622
0.791454
2.38436
3.17438
0.387806
4.74641
0.600821
1.47314
1.24751
0.763732
0.176054
4.48241
6.34453
0.0560446
0.104024
0.582579
0.195186
0.0988825
0.0545304
0.159354
0.0573313
0.108235
0.391028
0.0666071
0.0853439
0.126768
0.0592022
0.0438552
0.195894
0.0514997
0.143472
0.0434407
0.0527754
0.131887
0.922091
0.388221
0.640807
1.11792
1.30457
0.716325
2.22061
1.99345
3.83953
0.05038
4.27445
1.07312
1.18858
0.786985
0.331432
1.21556
0.57689
4.36416
0.0519761
4.32975
0.886938
0.211577
0.234283
0.727204
0.833328
0.245854
0.795416
5.86885
8.80508
5.41872
9.19124
2.39846
2.53842
0.474035
0.545137
2.55431
2.40771
0.449916
3.31443
3.19083
3.79064
2.83647
0.786844
0.215207
0.256114
0.749773
0.846425
0.241499
0.706732
2.47561
0.443737
2.37427
0.545253
2.40558
2.4315
0.456834
4.02529
3.38089
3.58443
4.4933
1.5675
3.42981
3.52686
1.53743
1.56183
3.65488
0.532059
0.518712
1.57547
1.58559
3.61326
3.55695
1.60028
2.04641
3.37002
2.18129
2.90005
1.61277
3.87868
0.553286
0.567205
1.59741
1.78137
3.66416
5.35115
1.63933
0.624311
2.65729
0.606153
2.52745
0.723729
3.12507
0.512363
0.216245
2.92537
0.608872
1.3775
0.473815
0.899534
0.306501
131.52
0.675705
0.767514
0.629861
22.4363
18.3465
0.394915
0.425398
18.5104
0.456722
16.9518
33.339
0.546953
15.4453
0.435064
18.7916
0.514945
36.4044
0.661148
0.510829
0.555031
17.1181
1.09718
0.329053
0.240975
0.318252
0.201913
0.242573
1.34442
0.330173
0.27279
0.306448
0.169526
0.211357
0.878422
0.762477
0.802238
0.68118
0.453849
0.397807
0.779124
0.872399
0.771358
0.253892
0.380862
0.330621
14.8899
0.31897
0.320159
18.6564
16.753
0.277871
16.8646
17.7077
18.94
0.299
0.328946
18.7718
18.1965
0.325883
15.6818
0.293886
18.0244
0.240273
17.2034
17.5621
0.252313
17.3754
0.452415
0.38162
145.737
18.4838
0.375831
30.9965
0.441804
16.0534
0.395424
13.1504
0.477622
4.01296
1.14316
0.786803
181.424
0.909129
0.518375
0.658298
0.574881
0.51915
12.0441
0.589521
12.0574
0.678614
21.231
0.384862
0.547022
29.8857
0.458017
34.6522
0.541523
0.828309
0.763726
0.562556
0.61958
0.69429
140.076
0.647293
0.513764
0.50285
2.59014
4.79029
2.48326
5.04832
0.587968
0.978275
0.163334
0.2169
0.606607
0.941366
0.158341
2.61687
3.08218
2.69996
3.00374
0.588727
0.155033
0.90187
0.216694
0.569797
0.937633
0.159432
2.63683
2.9074
2.52477
3.04975
1.12112
1.13545
1.18356
1.09703
1.15946
1.80627
0.447028
0.362141
1.3093
1.15689
1.29099
1.20803
1.2692
1.22996
1.29811
1.25943
1.26936
1.33902
2.84417
0.332061
0.411694
1.20582
1.29692
1.23966
1.31884
1.19477
11.1412
8.37592
0.0619546
0.102912
10.6513
0.097094
9.1814
11.1236
6.07583
0.0636034
0.0675393
6.50919
0.0720914
10.0476
11.5737
0.0580663
9.37458
0.0769201
11.2202
7.43893
0.0878775
10.7612
0.0827556
0.0741437
8.13288
0.0787134
8.74075
10.0662
5.85432
7.7293
0.0912707
0.05897
8.40102
0.071627
5.24223
5.22333
3.06067
0.110886
0.0910637
2.16014
27.1798
0.0901672
6.42442
0.11552
12.4501
0.0997243
8.97716
15.8161
0.100229
4.70825
0.0451721
0.0549818
1.61648
1.88773
0.0554207
4.15799
6.10658
7.50127
0.0987877
0.0469726
0.0820549
8.41024
4.96022
4.50904
1.62754
0.04619
0.0495856
1.93514
0.0486138
3.95862
5.57249
0.0778882
0.0581347
7.32843
0.0618252
7.94234
4.95383
5.01821
0.035988
0.0707664
1.47696
2.30218
0.0675706
3.88524
9.81665
0.0848677
0.086217
8.84697
7.9018
0.0774435
8.51651
17.477
28.0497
9.59595
4.88783
0.0607238
0.0576115
4.37117
9.72315
0.0711713
8.65002
0.0717798
3.56787
0.0583162
5.87956
4.68544
0.0677056
10.4588
0.0911948
0.0631453
7.93727
9.84709
0.0815171
9.0653
3.63732
0.120424
7.70236
0.0891865
5.94618
5.34647
0.0908293
3.83366
0.668854
0.146133
0.0953427
1.68238
0.142547
2.09317
2.76174
0.12147
1.95647
0.0870196
0.909565
4.36077
0.0886674
4.72736
0.115927
3.86895
0.092361
6.62716
0.132169
2.81704
5.23366
0.088771
0.10751
8.11729
0.0797457
7.69958
5.7838
4.94082
1.51449
0.0409653
0.0843314
2.43622
3.76495
0.0790701
5.96133
0.093642
0.0508663
7.12584
4.73969
0.0851903
8.29651
4.22667
0.107916
0.0753581
2.31271
1.8481
0.0728141
4.78315
2.07111
1.89468
2.02698
1.94155
0.44614
0.426885
0.105669
0.109624
0.446261
0.425691
0.106142
2.22075
0.970724
2.20288
0.943999
0.431801
0.101749
0.410597
0.105614
0.431621
0.412758
0.101921
2.1762
0.876421
2.13483
0.896815
0.691614
0.69884
0.765842
0.66297
0.57554
0.671871
16.2277
0.111773
0.0963693
14.8227
0.627634
0.675239
0.666884
0.783186
0.726338
0.8776
0.82812
0.981336
0.777295
0.701223
0.944134
16.9656
0.130654
0.133481
18.3383
0.681643
0.795928
0.706499
0.723367
0.778113
0.706889
0.582504
0.00863382
0.00901525
0.70854
0.00990338
0.486802
8.25592
11.3841
9.8844
10.0055
0.680063
0.527267
0.0102436
0.00926033
0.832381
0.0095197
0.472575
7.43806
5.01592
5.42007
7.00501
7.61655
7.48847
9.31671
5.59494
0.753892
0.00927777
0.88265
0.0116006
0.729795
0.940671
0.0107352
0.639556
0.00787099
0.0085338
0.315825
0.00876575
0.436571
0.45898
1.7653
2.28255
0.0664397
0.0354378
1.5862
0.0805826
3.73691
82.7091
2.64519
0.539887
0.109487
0.0728881
0.351958
1.85407
0.172558
1.05108
1.1151
3.98371
9.34418
18.4426
12.598
3.29371
0.121771
3.16692
0.101291
2.99486
2.56219
0.156035
1.30779
0.021369
0.00968919
0.143566
0.128825
0.0748573
0.806871
0.15729
0.578342
0.00820421
0.00804739
0.0074662
0.395215
0.548419
0.115092
0.046704
0.00553368
0.00541879
0.0538348
0.00573376
0.0817932
2.61581
4.34795
4.72977
2.33233
2.07485
0.924534
0.662149
2.90505
2.74033
6.89205
4.89911
4.33211
0.130642
0.00694137
0.0059216
0.245758
0.00613321
0.349639
0.0891605
0.136689
0.00698605
0.00632139
0.116916
0.0626889
0.00691139
0.331714
0.83512
0.0119554
0.0141954
0.260655
0.361683
0.0160987
0.569249
6.64128
7.95265
6.25771
8.08398
0.853335
0.280829
0.0289643
0.00821401
0.508793
0.331515
0.0218798
6.41876
4.76569
6.74698
4.81853
0.884087
0.0174649
0.379065
0.0255338
0.33906
0.568142
0.017787
0.816022
0.0189411
0.00767772
0.218852
0.309423
0.0206886
0.586676
6.14933
3.93306
5.67091
4.53315
0.0644494
0.00446234
0.110012
0.00508635
0.110021
0.0593783
0.0044521
1.93897
2.89803
3.55713
1.38527
1.01831
2.44833
0.246814
0.20386
1.13725
0.175979
0.0809882
0.0160278
0.0122999
0.140762
0.0174571
0.112427
0.0543628
0.00431786
0.0406754
0.00388042
0.0365511
0.0536677
0.00419754
1.39723
3.17507
2.92519
1.54863
0.201633
0.0161156
0.19167
0.012045
0.30445
0.0162545
0.133089
0.22002
0.0122497
0.00814109
0.200791
0.0108114
0.46041
0.100506
0.242453
0.0399551
0.00487486
0.0135647
0.147674
0.0573916
0.0145314
2.40761
4.1008
2.15076
4.25482
1.62174
0.281931
0.446505
1.21942
0.27211
0.0169997
0.00525881
0.169836
0.066035
0.0153667
0.488415
0.180517
0.00766237
0.0098606
0.0619434
0.0953689
0.0103609
0.0914592
2.1415
3.34877
3.96502
1.66225
1.49952
1.87697
2.11808
1.40809
1.54941
0.438887
1.63695
0.411538
1.51343
0.643901
2.22419
0.467475
0.422429
8.88923
0.449425
0.459036
0.411538
9.27321
0.081509
0.851055
1.74095
0.039974
0.0364275
1.41487
0.095315
0.440697
0.526125
14.2805
0.474974
9.51788
0.498602
0.386078
0.447876
0.415857
0.419675
0.397897
0.163088
4.01911
0.069753
0.114157
7.33404
0.2705
0.45586
0.701464
74.9378
0.485285
0.720424
0.221826
0.245646
0.0258853
0.0256653
0.270008
0.0238373
0.203305
4.82584
6.13927
5.03501
4.99256
0.208426
0.255549
0.0168054
0.0284377
0.193565
0.0183668
0.29426
4.01514
3.29497
2.45533
4.7964
4.28872
2.76308
4.46631
2.67893
0.225286
0.0234702
0.254576
0.0196653
0.274408
0.211252
0.0218677
0.199139
0.020861
0.032142
0.297392
0.0196324
0.171802
0.306412
0.177242
0.159023
0.0190607
0.0164642
0.197104
0.0196787
0.130738
2.13454
2.72832
3.75014
1.26774
0.23161
0.0614616
0.0095647
0.0191054
0.220237
0.0853461
0.0241716
1.23642
2.01417
0.569149
1.68769
0.66116
1.66397
2.26375
3.24054
0.975189
0.232604
0.0229778
0.166918
0.00945378
0.263329
0.113938
0.0236091
0.176235
0.0152167
0.0142902
0.0921029
0.153155
0.0196516
0.117988
0.175717
0.220877
0.0263916
0.0304292
0.0268663
0.180383
0.217504
0.117341
0.0490979
0.0311124
0.0100822
0.0880991
0.0180342
0.311167
0.81345
2.82226
2.00125
1.40376
0.620886
0.880991
0.310466
0.0635802
0.600652
0.939157
2.25457
2.20538
0.921138
0.127945
0.0208088
0.0380568
0.283565
0.0204677
0.140412
0.298212
0.17457
0.0298306
0.014816
0.206451
0.139924
0.0249865
0.225283
0.303237
0.0376598
0.0438855
0.352148
0.309756
0.0377486
0.32353
4.33024
1.49288
3.07742
2.23215
0.200356
0.210589
0.0181877
0.0235361
0.175026
0.242007
0.0202473
3.55223
2.69725
4.23403
2.06968
0.261842
0.0318734
0.216366
0.027196
0.258535
0.218311
0.0322085
0.215536
0.0237825
0.0261611
0.240696
0.252667
0.0220915
0.197198
4.17338
2.57464
3.46125
2.85885
0.326208
0.0398647
0.0232223
0.259321
0.340562
0.240966
0.0266236
0.138228
1.01997
1.36444
0.0500886
0.058926
0.0974415
0.0238538
0.00892818
0.237442
0.00410877
0.0015686
0.000847269
0.000762658
0.00163748
0.00279457
0.000979963
0.0697473
0.0296992
0.127889
0.00161222
0.452026
0.0155772
0.00619521
0.00845443
0.00284659
0.00265403
0.000807495
0.00175275
0.0224072
0.00144999
0.234605
1.4959
1.00811
2.90973
0.341648
0.0477356
0.0400112
0.37752
0.0462017
0.32419
0.405211
0.122371
0.0124469
0.0212164
0.00202813
0.00826799
0.204047
0.0139338
0.543214
2.22817
0.936316
1.62789
7.35872
0.133222
0.0148192
0.0215502
0.671445
0.151549
0.0235756
0.0287945
0.21825
0.218002
0.0214623
0.165652
0.335206
0.010147
0.00157674
0.00339006
0.0058095
0.0299589
0.093985
1.11269
2.1362
2.41599
8.40694
1.43359
2.03788
0.854959
1.36279
0.566894
0.600297
0.654234
0.476719
0.50911
0.38154
0.409205
0.410958
0.207315
0.480748
0.245166
0.204455
0.250492
0.508186
0.0252911
0.0275743
0.404759
0.00935818
0.00870255
0.383664
0.0265164
0.245242
0.301167
0.926739
0.296929
0.885535
0.247492
0.37193
6.84738
0.602724
0.579766
1.33833
0.445174
0.0423706
0.0422826
0.484892
0.0131745
0.015381
0.59431
0.0368843
0.314694
0.356389
1.06696
1.25536
0.380717
0.294765
0.213686
0.155477
4.05437
2.25446
0.183911
0.132404
0.125981
0.139045
0.173822
0.16009
0.15143
0.137614
1.43289
0.144701
1.9324
0.159459
0.736603
0.138567
2.32647
0.090932
2.13406
0.69931
0.0769399
3.64026
7.82095
2.16328
1.86279
2.06329
1.89259
0.713012
0.129131
2.99221
0.079987
2.0036
0.9652
0.0739958
3.43173
3.18414
0.401473
0.0769737
1.9791
0.0721251
0.0601642
1.3121
0.516676
2.55846
17.4428
2.18488
1.5136
37.7176
1.76471
2.01692
1.67923
0.342354
0.0674017
0.0486774
1.31527
0.320382
0.054764
1.17441
2.76408
3.04432
0.364493
25.7986
2.61738
0.798071
2.67235
0.808472
0.362603
0.326336
18.8957
2.31033
0.776369
2.26654
0.706754
0.364508
0.409924
1.10129
7.10392
0.943003
5.15445
0.467611
0.57922
1.2871
10.3719
1.32161
8.99089
0.559917
10.7409
10.2003
80.1549
2.04396
0.0460569
1.78983
0.0461877
1.39455
2.40939
0.0571063
9.02153
16.814
25.4944
16.9339
50.7383
1.34795
0.119036
6.79813
0.0788052
8.45928
1.00972
0.0990173
20.0483
52.7276
20.7735
0.782122
0.361727
0.679568
0.421316
0.0790513
0.0409719
3.68585
0.0782693
0.419577
1.70249
0.128683
3.77258
0.112338
6.79014
7.66121
0.114875
201.03
44.1281
0.630745
0.0532619
0.25051
0.035703
0.355879
0.0679587
0.344445
0.568469
0.053089
2.7358
0.0581929
0.0404791
2.20661
0.874496
0.104723
0.107094
0.0301479
0.0230065
0.108668
0.0278351
0.0664284
0.680679
0.583568
0.493167
0.0427993
0.0349449
1.68299
0.288757
0.0352692
2.10768
0.130662
0.0393659
0.0188979
0.164549
0.028809
0.287176
0.0981394
0.52595
15.0267
0.516112
13.9717
0.707687
0.549983
0.4191
15.1946
0.44374
18.6544
0.336043
0.499755
0.37045
0.352422
22.1495
0.465958
20.1051
0.266917
0.151229
0.0535593
0.933349
5.80075
0.0758156
5.8278
0.104589
0.190849
0.305643
76.2245
0.373865
0.211227
0.0794337
5.84692
0.604173
0.0438599
6.48119
0.0457225
0.0710809
0.0749351
0.0464961
8.1697
0.646833
6.70305
0.0853439
0.0405851
0.0485954
8.07895
0.643127
0.0401442
0.0369583
6.63348
0.0507903
0.0695161
0.237447
0.261465
0.0684817
0.046876
0.0321706
0.626962
5.33734
0.0338516
6.94985
0.0471512
0.0748793
5.80419
0.519504
0.0468866
6.07325
0.0748121
0.0507032
0.0668951
0.234501
0.318276
0.0728584
0.0609633
0.0388134
0.491037
5.64862
5.95906
0.0416474
0.0578582
0.0961505
29.4855
0.697214
0.0617598
0.0783731
0.0741173
0.127871
0.128329
0.162062
0.145291
0.13497
0.137617
0.788358
0.104753
0.167763
0.180621
0.117348
0.145538
0.1364
0.251104
1.37596
0.225267
0.181582
0.342986
0.219917
0.136287
1.13256
0.172131
0.167658
0.133556
3.61981
0.192185
1.44161
0.149434
0.146915
3.2385
0.125572
1.11483
62.0173
0.0833792
0.0876685
3.53014
0.124965
0.112701
0.0777668
1.27924
7.0317
0.109438
3.04976
0.112516
0.185716
0.988679
0.122623
15.9519
0.241546
0.0833554
0.214342
12.7252
0.13582
0.200444
0.161589
0.126587
0.0628485
0.651391
7.58598
9.57128
0.0629086
0.111508
0.0574394
0.0441346
0.0973632
0.116922
0.0333803
0.0674625
0.0469134
0.000494736
0.000758286
0.000415336
0.000891115
0.000488377
0.000649936
0.000420043
0.0374651
0.000371204
0.0381203
0.000385095
0.0593769
0.000384222
0.0605431
0.00221643
0.0532279
0.00247899
0.0862112
0.00179028
0.0841505
0.00197852
1.16697
0.867473
0.430778
0.493474
1.13303
0.500857
0.890402
3.57265
2.44239
0.639613
0.794937
3.62281
0.798854
2.42161
0.295525
0.285411
1.83868
2.52144
0.239928
0.357187
3.038
0.000401137
0.000409564
0.00040092
0.000427036
0.000421907
0.000425972
0.000421743
0.00256984
0.00256701
0.344682
1.20227
0.00309037
0.00242656
0.538342
0.00661271
0.0115568
0.0120372
0.0059009
0.00990482
0.00628718
0.00665697
0.000490956
0.000483099
0.000452792
0.000465407
0.000478129
0.000496433
0.000463647
0.000470093
0.000461863
0.000445667
0.000458153
0.000458228
0.000473962
0.000457123
0.000461848
0.000449526
0.000442763
0.000454528
0.000450287
0.000460923
0.000454212
0.000455493
0.00044393
0.000441365
0.000453371
0.000443624
0.000455811
0.000453201
0.00044448
0.000443276
0.000444335
0.000467663
0.000469096
0.000467646
0.000468972
0.000453816
0.000442234
0.000440243
0.000452363
0.000441732
0.000454314
0.000452178
8.79344
9.4069
9.40673
8.90272
0.00044463
0.000445532
0.000444515
0.000470082
0.000469118
0.000469651
0.000469047
0.923403
0.933799
0.922515
0.961876
0.832887
0.740945
0.194301
0.345532
0.599086
1.06322
0.240708
0.00049466
0.000496325
0.000494603
0.000523849
0.000523359
0.000523609
0.000523354
0.000495104
0.000495884
0.000495079
0.000523975
0.000523892
0.000523901
0.000523892
0.000496042
0.000495155
0.000495933
0.00052391
0.000524826
0.000523912
0.000524788
0.00049448
0.000492543
0.000506582
0.000494204
0.000507774
0.00050762
0.000506523
1.18728
1.15234
0.358413
0.347739
0.381967
0.297563
0.163256
0.193609
0.0057615
0.0189938
0.00150946
0.00623557
0.00111981
0.0100784
0.00352982
0.00912833
0.00106272
0.00327916
0.00100414
0.000789847
0.000810645
0.000569835
0.000558384
0.000565505
0.000590121
0.000593136
0.000589698
0.000591986
0.000749122
0.00060493
0.000716786
0.000607684
0.000594121
0.000614026
0.000591365
0.000575552
0.000613417
0.000570577
0.000572292
0.000585176
0.000573601
0.000582389
0.000647154
0.000637333
0.000646738
0.00066488
0.000665425
0.000663602
0.000664649
0.000636942
0.000634321
0.0006341
0.000663282
0.000663388
0.00066236
0.000663107
0.000631003
0.000632885
0.000637303
0.000661817
0.000662024
0.000661346
0.000662048
19.6266
5.93051
1.88006
1.98521
4.87583
5.06323
6.0095
1.91933
0.0312456
0.017019
0.0178364
0.0345649
0.0167903
0.035154
0.0319498
5.5714
14.9135
13.5971
44.0641
15.0191
13.7731
5.56914
3.9712
13.3309
29.9098
7.79183
11.614
3.72583
9.01202
6.05742
2.11105
4.53944
1.9791
6.18568
2.2332
3.79959
45.2637
44.1859
325.391
97.2828
53.8559
0.212862
0.785277
0.187387
0.521686
0.184398
0.632944
0.231823
0.00635259
0.0033133
0.00504822
0.00356882
0.00634439
0.00378395
0.00491664
8.79383
82.506
8.89165
28.2234
8.68762
22.563
24.6159
0.0434643
0.0933039
0.0862855
0.0433209
0.109957
0.0402888
0.0439414
4.28468
11.3165
8.56914
44.8776
4.13129
12.4243
8.83328
5.17471
15.0939
48.3625
9.2844
15.1081
5.15905
9.34735
5.22568
15.3128
9.41408
47.9988
5.2726
15.2175
9.30053
4.55728
13.2987
38.6525
7.60431
13.2655
4.5677
7.59625
0.0321131
0.0200848
0.0338055
0.0231292
0.0326224
0.0231753
0.0318453
0.00419113
0.00690368
0.00736157
0.00459238
0.00764019
0.00402077
0.00470875
4.57361
13.331
7.61916
38.2287
4.59764
13.2708
7.5582
5.33317
20.1403
48.6242
8.1551
19.8156
5.41463
8.03685
0.091129
0.134202
0.0709701
0.171558
0.0754551
0.171162
0.08545
5.45431
20.5423
8.29103
49.2521
5.53985
20.3473
8.12403
5.4299
21.0175
45.9471
8.11988
19.7282
5.62757
7.88569
0.0863251
0.0674858
0.138179
0.170118
0.0709158
0.177472
0.08184
5.99177
22.7952
8.39224
51.1132
5.8951
23.9279
8.45706
5.85984
23.4554
48.2807
7.99265
23.4913
5.84496
8.01949
0.982345
0.382841
0.803006
0.457404
1.04638
0.44257
0.755113
5.74783
23.1282
7.92189
46.6674
5.81027
22.8305
7.83174
5.05755
20.4169
24.1396
6.16768
20.3903
5.0494
6.1629
4.97717
20.1635
6.087
23.656
4.99247
20.0632
6.05957
4.4911
17.1465
20.4196
5.37072
17.362
4.46526
5.39536
3.41619
0.61067
2.34355
0.774514
3.44874
0.758696
2.33063
0.0451155
0.205951
0.0341718
0.267488
0.0368938
0.263385
0.0416405
4.3399
16.7663
5.32741
19.512
4.41633
16.5913
5.22038
4.24226
15.7058
18.3336
4.93759
15.8503
4.20261
4.98456
0.0374028
0.0324532
0.202275
0.261519
0.0308279
0.258579
0.0395078
4.11842
15.4003
4.85734
17.6851
4.13757
15.2787
4.8354
3.94739
14.2195
16.6566
4.5821
14.3014
3.91963
4.60967
0.46259
1.48277
0.331073
2.25809
0.417055
2.31917
0.372043
0.00179207
0.000726984
0.00145617
0.000656027
0.00185841
0.000728861
0.00148329
3.73087
13.8441
4.44955
15.7611
3.80755
13.5593
4.35709
3.54486
12.0316
13.8333
4.12614
12.0924
3.53173
4.13752
0.00129936
0.00129412
0.000591786
0.000614192
0.00129161
0.00133594
0.00059605
0.290761
1.42479
0.229161
2.14047
0.257718
0.256024
2.17089
0.00119875
0.000561889
0.00121853
0.000541956
0.00127504
0.000563527
0.00112038
3.45659
11.8177
4.06197
13.4336
3.47765
11.7227
4.0401
2.58064
9.08499
9.3392
2.86554
9.08726
2.86502
2.58052
38.957
41.23
17.7468
23.7774
122.39
1.90216
1.11098
7.86451
1.78125
4.40836
0.914952
3.05564
79.5312
68.5722
25.0193
60.0269
16.9776
16.7713
65.3146
47.9878
15.6445
15.8071
47.2073
0.111025
0.0633109
0.132262
0.0663402
0.0656721
0.141394
0.120206
46.4127
15.7827
15.5386
47.3999
22.5573
11.8381
11.8391
22.5123
0.0749344
0.0995277
0.0451603
0.0493201
0.0472859
0.0970207
0.0880021
22.1448
11.832
11.7035
22.4861
20.2956
11.5578
11.3821
20.643
20.1367
11.7229
11.4107
20.9128
17.639
11.1836
10.8995
18.0565
18.4843
11.4851
11.5124
18.4961
16.2328
10.616
10.6586
16.1792
15.7289
10.5133
10.3759
15.9983
10.595
46.7533
8.20616
8.19329
10.6124
10.3951
8.08816
45.6955
8.05021
10.449
8.99714
39.4923
7.03679
7.05852
8.98047
8.75528
7.01226
37.8039
6.84525
9.02294
8.09081
35.2643
6.35854
6.41765
8.01475
7.84232
6.25055
34.0146
6.2246
7.87709
7.48929
31.961
5.9088
5.93815
7.45491
7.0866
5.74027
30.2662
5.61811
7.24874
0.000486413
0.000450154
0.00046886
0.000459814
0.000473807
0.000461374
0.000481216
6.70437
27.1687
5.31942
5.33075
6.69072
6.55409
5.23619
26.4473
5.20903
6.58897
0.000467885
0.0004446
0.000455823
0.000455118
0.000456085
0.000456111
0.000467859
4.31813
10.8866
3.39358
21.7733
3.39069
21.7693
4.32092
4.31914
3.37688
10.8239
21.5726
21.6531
4.29571
3.39454
0.000459054
0.000442639
0.000445405
0.000454037
0.000447589
0.00045433
0.000457089
3.19376
8.53777
2.76603
9.99229
9.94791
3.23182
2.73994
3.08604
2.68678
8.25998
9.73477
9.61472
3.13554
2.6454
0.000454677
0.000440759
0.000442262
0.000452505
0.000442741
0.00045264
0.000454318
2.25902
6.70406
2.01649
6.74234
6.87972
2.21571
2.05604
9.67134
9.05109
8.93944
9.62897
0.000634868
0.000466107
0.000586338
0.000470081
0.00062526
0.000474895
0.000595487
77.3891
0.000627274
0.000479288
0.000490975
0.000579281
0.000483019
0.000594757
0.000607067
2.05623
1.92009
6.19184
6.46928
6.34333
2.11168
1.87039
0.000453451
0.000439929
0.0004415
0.000452027
0.000441342
0.000451884
0.000453606
1.60998
5.54865
1.51406
5.63255
5.43182
1.51488
1.60744
0.00046641
0.000465205
0.000479933
0.000477964
0.000466892
0.000465037
0.000479462
0.00046606
0.000464914
0.000477713
0.00047918
0.000464762
0.000466203
0.000479107
0.000566716
0.000575712
0.000457458
0.000468974
0.000564472
0.000581417
0.000466885
7.72365
7.76936
7.77034
7.76695
0.000534855
0.000452849
0.000511239
0.000459459
0.000535314
0.000462618
0.000509041
21.1913
17.0934
0.000571994
0.000478487
0.000571013
0.00048646
0.000584866
0.000476759
0.000559985
2.45735
1.90966
2.29683
2.00547
0.00053941
0.000470417
0.00048378
0.000511412
0.000473094
0.00051169
0.000533359
1.12952
1.03407
1.53175
4.97672
3.21503
0.704495
1.97797
0.143466
0.253781
0.0692064
0.393007
0.0904837
0.450875
0.101289
569.513
98.4856
147.036
333.672
0.16672
0.512517
0.129655
0.0519822
0.0514875
0.459048
0.179931
74.0669
153.973
330.311
48.0808
631.834
76.4966
0.190399
0.692614
0.703547
0.241888
0.234456
0.631779
0.2359
4.78819
2.72865
3.08923
4.60656
2.80569
4.04804
5.12529
0.144173
0.471753
0.0428256
0.109598
0.0401613
0.157225
0.445048
0.17778
0.590603
0.140503
0.0466451
0.0482132
0.597094
0.183509
0.56669
0.192307
0.0279902
0.0848438
0.164304
0.689287
0.082095
0.370216
0.121219
0.0811703
0.0228583
0.373643
0.11852
0.0707677
0.320693
0.0853788
0.00961509
0.024744
0.0856977
0.32271
0.0225455
0.306448
0.0802382
0.0250962
0.00887648
0.314298
0.0721034
0.0257407
0.00299186
0.0136542
0.00109554
0.00073217
0.000736999
0.0157645
0.002619
0.00125254
0.00820556
0.000688223
0.000912409
0.000674675
0.00177228
0.00446693
0.000539521
0.000525947
0.000544816
0.000539126
0.000544546
0.000525307
0.000543123
0.00101322
0.0017844
0.000675369
0.000753425
0.000666073
0.00111678
0.00156199
0.00053597
0.000523812
0.000538083
0.000540506
0.000524029
0.000533587
0.00054126
0.000741898
0.000854925
0.000647125
0.000607098
0.000609555
0.0008838
0.000780473
0.000527691
0.000522566
0.000539067
0.000536781
0.000529459
0.000522199
0.000538513
0.00072092
0.00081086
0.000596395
0.000619815
0.000592267
0.000745757
0.000784525
0.000526262
0.00052147
0.000536276
0.000537644
0.000521575
0.000525639
0.000537797
0.000763726
0.00102379
0.000537203
0.000532018
0.000943604
0.000809875
0.000529236
0.000749054
0.000529301
0.000749797
0.000518884
0.000910936
0.000524175
0.000651353
0.00059356
0.000698595
0.00050605
0.000514443
0.000652074
0.000620966
0.000512965
0.000618792
0.000507832
0.000630136
0.000511313
0.000695972
0.000513202
0.000579681
0.00689703
0.0619728
0.208517
0.00406986
0.00481124
0.165628
0.00687925
0.0075959
0.134754
0.0498481
0.00417659
0.00428088
0.140487
0.00711461
0.00705842
0.0566751
0.168807
0.00426326
0.00439823
0.179916
0.00695621
0.000870093
0.000872504
0.000676489
0.000674217
0.00103101
0.000861699
0.000667532
0.000847395
0.000830327
0.000668937
0.000662501
0.000839684
0.000830388
0.000665052
0.0762815
0.20297
0.330723
0.0145365
0.00504429
0.00715217
0.0102653
0.00078559
0.000827884
0.00065927
0.000655199
0.000815281
0.000783436
0.000654242
0.000790847
0.00079955
0.000656612
0.000656197
0.000809024
0.000787252
0.000653278
0.000754541
0.000714389
0.000646902
0.000642805
0.000741332
0.000731585
0.000646291
0.000767594
0.000756558
0.000649739
0.000643872
0.000766541
0.000750834
0.000646374
0.000720438
0.000732615
0.000639083
0.000639128
0.000732496
0.00072637
0.000635683
18.756
0.572931
0.945535
0.191135
1.10108
0.259846
0.296461
0.196259
0.00296151
0.00508305
0.00602923
0.00611749
0.0024846
0.00275679
0.00532938
0.0546684
0.0494496
0.062875
0.0482265
0.0412794
0.0328695
0.03795
0.0355389
0.0261735
0.0463409
0.0203532
0.0153202
0.01907
0.033096
0.0857737
0.0185501
0.13896
0.124909
0.0151627
0.0813325
0.0151583
0.0732736
0.205891
0.0955021
0.201458
0.13548
0.135065
0.0735099
0.199769
0.0716002
0.12096
0.0944533
0.123516
0.101891
0.192104
0.00775203
0.00192382
0.00461528
0.00562245
0.00299895
0.00870329
0.00187092
0.847964
1.1821
1.14095
0.798921
0.58975
0.576422
0.80401
0.079125
0.00205078
0.00221823
0.00192493
0.0607799
0.0573761
0.00179937
1.07414
0.899621
1.02845
0.731097
0.606242
0.750815
0.603584
0.00185118
0.0816956
0.00172619
0.00153456
0.0584214
0.00163454
0.0597562
0.64972
0.0132418
0.0245768
0.0242782
0.348108
0.388178
0.0136033
0.100313
0.0538928
0.109809
0.211347
0.0565218
0.224358
0.0936798
21.3749
73.7002
59.9382
10.6274
16.4652
4.18486
15.474
31.9694
70.5761
4.9378
8.00874
0.279204
0.154005
0.396564
0.617628
0.169766
0.24428
0.844246
0.119703
0.0415422
0.0809559
0.0597388
0.0716076
0.0573731
0.13491
0.0236081
0.0244451
0.0470741
0.0518859
0.0562963
0.0218127
0.025861
21.7785
8.29866
7.27622
16.0115
22.2293
3.87153
4.14164
13.5625
4.44259
17.1675
19.4627
0.748599
0.31748
1.1041
0.456131
0.33163
0.702672
1.20859
15.6178
4.55912
4.67107
13.3111
4.92305
14.5953
13.9809
31.7615
53.3034
32.8405
0.995575
1.46626
0.357254
0.495402
0.360701
0.901628
1.66938
0.351103
0.486173
0.103537
0.126655
0.357514
0.481852
0.108106
0.706361
0.253847
0.554122
0.309748
0.538089
0.302778
0.722311
0.46919
0.149407
0.165326
0.537851
0.544263
0.147034
0.41748
1.30368
0.413428
1.00983
0.490772
0.9813
0.489596
1.34931
4.23957
0.464511
1.61401
0.600777
1.57527
0.578063
4.41036
5.24187
1.55151
5.71732
1.9311
4.53534
1.60083
7.01051
5.37227
8.84027
1.87092
2.1796
1.79753
6.58424
7.08225
7.83744
2.30693
11.2247
2.80692
7.78997
2.30993
11.2679
12.078
14.3822
2.96876
3.40375
2.93496
12.6997
14.1449
0.0291703
0.0320181
0.00681947
0.00726011
0.0354054
0.0303213
0.00714035
13.3969
3.21862
13.9298
3.62467
13.3937
3.20373
13.8937
0.0286403
0.00667471
0.00664097
0.0428824
0.0368553
0.0068336
0.0358333
13.035
15.1143
3.54857
4.18151
3.52838
15.0578
13.0825
9.27504
0.638503
9.39686
0.555853
0.648493
0.564429
9.38033
8.34659
0.478054
0.520511
0.465413
8.7519
8.77922
0.42678
1.89988
1.90826
2.00874
2.00677
0.000484428
0.000809487
0.000479118
0.000789321
0.000745745
0.00072636
0.000471858
1.35879
1.42608
1.08595
0.946267
0.435679
7.94329
0.423183
0.378344
8.61527
0.389105
8.43823
6.89727
0.367171
0.343992
0.321151
7.03075
7.36003
0.343371
1.31137
1.12602
0.732882
0.878966
0.440738
0.492401
1.33697
1.31978
0.000524992
0.000503406
0.21994
0.687044
0.000579872
0.000442922
0.32433
0.000526936
0.219607
0.000561487
0.287016
0.00058196
0.324345
0.000511534
0.305803
6.27569
0.279351
0.26534
6.80864
0.286912
6.68763
5.72922
0.236799
0.234311
0.304225
8.81211
8.00439
0.308406
0.00391267
0.304921
0.00613261
0.389743
0.00470106
0.444437
0.00475485
0.413658
0.416716
1.22973
1.24094
0.752514
0.758762
0.665256
0.660236
0.270367
0.268191
0.413367
0.211636
0.187508
0.1159
0.146972
0.0188934
0.0076344
0.0132879
0.0078744
0.019517
0.00753908
0.00704803
44.2702
410.639
87.667
38.4642
9.02356
13.5019
30.4323
54.9644
10.47
20.4275
19.2462
10.8643
6.71072
5.66379
38.9623
28.8083
4.47465
1.15047
0.405847
0.388363
1.1174
1.10296
0.411519
1.2067
0.943096
0.513003
0.48793
0.783
1.11917
0.467483
0.789355
0.00660577
0.0021132
0.00201941
0.00731805
0.00202023
0.0069869
0.00672509
0.00656335
0.00612749
0.00200476
0.00213484
0.00589664
0.00675796
0.00210581
25.0356
10.2941
20.4015
11.6053
0.00608935
0.00202836
0.00186796
0.00561635
0.00548523
0.00196551
0.00628428
0.00515537
0.00136172
0.00154593
0.00526185
0.00148567
0.00476137
0.00576585
0.00467727
0.00432489
0.00142165
0.0014658
0.00438359
0.00468359
0.00143581
8.62816
8.3917
8.28018
8.67994
0.00466344
0.00134263
0.00142972
0.00427807
0.00441406
0.00144118
0.00441625
0.00514375
0.00154822
0.00152356
0.00573445
0.00517462
0.00149064
0.00569248
0.197322
11.8577
0.222533
0.153068
3.48353
6.24347
0.138032
0.163785
0.140542
0.055604
0.0662037
0.0679191
0.125949
0.0807008
0.0833961
3.63103
0.801694
1.45696
1.03329
1.69489
1.40344
3.05845
30.2395
319.405
70.0831
19.9308
261.969
17.7641
37.776
3.35374
8.97567
2.2087
1.55434
1.42255
7.77046
3.75398
222.82
216.661
2.40597
0.879709
1.32472
3.29386
0.959913
3.74101
2.06329
180.878
184.026
10.9064
8.32965
24.2368
49.4513
7.23325
14.1635
34.266
0.468871
0.083079
0.187825
0.0599295
0.337943
0.102854
0.247482
127.968
125.032
113.614
114.653
6.80419
18.5734
26.1489
7.73918
18.8662
6.04438
9.00127
0.916794
0.771613
1.47466
2.33801
0.726375
0.98968
2.01355
27.8417
42.1592
25.3452
354.634
30.8047
152.792
32.3745
165.137
29.7653
92.4806
19.1735
91.381
19.3566
0.1893
1.03235
1.10984
0.268915
0.217855
0.821969
0.230051
64.5651
16.246
70.2033
15.7909
24.9883
12.6848
24.8512
12.807
0.00854254
0.00708419
0.0194483
0.0277041
0.00732844
0.00838093
0.0237627
0.00810061
0.0202457
0.018703
0.00608162
0.00695605
0.0226131
0.00695279
19.8618
10.4722
20.2349
10.3277
10.7874
23.6416
76.1287
10.6084
24.0934
0.103212
0.0242876
0.0174258
0.0443158
0.025573
0.102627
0.0474504
9.03904
20.6438
62.2999
9.1367
20.575
0.110003
0.0194862
0.0277435
0.0546555
0.114656
0.0278354
0.0532008
7.65185
18.0503
53.8348
7.66316
18.1668
0.0717621
0.0152915
0.0117593
0.0414854
0.0169554
0.0650101
0.0450833
7.16147
17.1826
47.7755
7.46084
16.8377
0.0928675
0.0187492
0.0297584
0.0771297
0.118175
0.0250824
0.0614662
15.7804
3.88824
48.2138
11.7262
48.6632
15.6533
3.93106
0.0384108
0.00823925
0.00607157
0.0239435
0.0085766
0.0369397
0.0251722
10.2245
31.0678
2.61554
5.58913
10.6344
29.8113
2.54609
0.0400243
0.00773354
0.0100395
0.0275723
0.0406972
0.00988503
0.0271976
2.91022
2.01447
7.87361
4.51497
7.96375
2.87267
2.04753
0.0203932
0.00401452
0.00293213
0.0126071
0.00428024
0.0186298
0.0134052
2.13237
6.31368
1.35689
3.33247
2.16289
6.23226
1.33516
0.0226853
0.00332986
0.00505065
0.0155152
0.0238802
0.00483345
0.0147571
1.85817
1.12223
5.66147
2.8048
5.72021
1.82637
1.14321
0.0114105
0.00225493
0.00159565
0.00717341
0.00234032
0.0108872
0.00763899
1.3816
3.3444
1.01621
1.53738
1.41964
3.26279
0.993932
0.012521
0.0017904
0.00277955
0.00933558
0.0137515
0.00259206
0.00855451
0.988301
0.708637
2.18009
1.10614
2.23599
0.962908
0.716237
0.00999863
0.0142805
0.00493205
0.00484767
0.0134196
0.0104965
0.00485442
0.458616
1.14724
0.400533
0.615411
0.472788
1.11389
0.388494
0.00896677
0.00421839
0.00436606
0.0114133
0.0120454
0.00425392
0.0086916
0.34376
0.364545
0.379917
0.176125
0.397641
0.345584
0.360062
0.0050192
0.00820898
0.002544
0.00244217
0.00775946
0.00553964
0.00240192
0.17361
0.282999
0.158974
0.731873
0.17576
0.281197
0.157094
0.00410965
0.00196452
0.00214583
0.00663198
0.00680039
0.00198025
0.0039683
0.0862607
0.0597815
0.173192
0.289077
0.155562
0.0824247
0.0722968
0.23981
0.1928
0.188477
0.13811
0.000492072
0.000493398
0.000493526
0.000507074
0.00050611
0.000506097
0.00050702
0.40225
0.136088
0.0962521
0.304761
0.679436
1.19839
0.183751
0.1732
0.173189
0.113015
0.0964983
0.13546
0.195602
0.280506
0.326045
0.185893
0.000524263
0.000615923
0.000540922
0.000537586
0.000627898
0.000524171
0.000537654
0.084566
0.0904087
0.100726
0.0948913
0.00052586
0.000581617
0.000540454
0.000537558
0.000601081
0.00052455
0.000537818
0.0207393
0.0395276
0.0899715
0.00364738
0.00140597
0.0019407
0.00243114
20.4772
61.0152
27.5611
292.712
23.1265
14.2736
0.00101922
0.000705409
0.00109303
0.00100375
0.000681672
0.000912403
0.00069194
8.76012
5.92863
16.0876
65.7603
52.3878
4.91226
11.4544
0.0118118
0.00235008
0.00965977
0.00205231
0.0102141
0.00212269
0.0115896
0.0222427
0.00482011
0.00114481
0.00787547
0.00117192
0.000909482
0.000874191
10.9857
147.039
28.6407
16.0084
7.37716
5.49587
6.26699
0.000940718
0.000679293
0.000911584
0.000805879
0.000676495
0.000862611
0.000665077
18.2859
22.3713
0.010145
0.00436468
0.000946861
0.00420069
0.000970492
0.000769809
0.000755136
0.000593132
0.00068194
0.000676815
0.000599009
0.000585015
0.000586181
0.000596295
0.000972289
0.00088229
0.000851891
0.00066424
0.000672779
0.000676103
0.000658725
0.000666073
0.000581916
0.000586543
0.00057621
0.000589975
0.000592387
0.00057537
0.11194
0.0446938
0.0300506
0.0411586
0.0556195
0.088303
0.0499965
0.460438
1.4921
0.233749
0.345759
0.195971
0.630865
1.0131
0.228647
0.102983
0.21615
0.332185
0.121311
0.502277
0.183143
0.395908
1.2105
0.278144
0.881508
0.381862
1.27055
1.18965
0.579099
0.185673
0.171105
0.467201
0.188267
0.489286
0.510594
2.47746
1.19931
1.78246
5.77277
3.10934
5.91501
1.0192
0.0800191
0.0598281
0.0890958
0.110838
0.0636023
0.0732757
0.129196
1.4811
2.71808
4.75858
7.44283
4.2766
1.5846
2.47516
0.231391
0.458147
0.298149
0.869128
0.204258
0.470713
0.352421
24.1031
20.4099
6.9437
1.6035
8.71958
3.73826
4.2062
2.00067
15.8264
2.46883
3.83227
6.70534
21.6447
4.36776
2.07512
6.90767
0.1064
0.0907543
0.0757686
0.143691
0.0750039
0.147379
0.105133
18.5996
21.3831
51.5409
0.109713
0.0858108
0.0316652
0.025266
0.0311718
0.121306
0.0763765
0.113624
0.0926069
0.07405
0.145259
0.0755906
0.106334
0.157514
48.1676
23.1
4.646
4.45541
13.5005
25.8371
22.6086
4.98262
4.17861
4.83363
37.1206
14.0436
11.3777
4.82545
13.79
11.4373
0.0816416
0.0462148
0.093608
0.211158
0.0470083
0.0801147
0.202464
0.093055
0.175048
0.115987
0.0537588
0.0577487
0.23447
0.0836831
4.70066
35.8959
13.7919
11.0632
4.72829
13.7283
10.9765
0.089485
0.0538264
0.109984
0.22481
0.0545242
0.0891974
0.226325
1.21152
0.484259
0.219705
0.534301
0.41874
0.480075
1.31616
2.54237
0.502726
0.588344
0.302433
0.884902
1.47083
0.631404
241.041
27.8222
62.5249
63.8942
59.1281
46.8461
207.67
64.7746
64.5713
213.119
13.8089
16.7997
22.4145
88.9873
0.0336393
0.0224018
0.0502071
0.0187662
0.0395208
0.0417835
0.0212633
3.77715
3.61764
21.3938
6.02389
4.47444
13.636
2.77562
0.0637293
0.058859
0.0255026
0.0301912
0.0787474
0.0291058
0.0426976
0.0957508
0.108496
0.0354025
0.0502822
0.0631705
0.0374009
0.142826
4.268
4.00396
12.8619
10.5027
4.65508
16.7126
3.79905
0.357767
0.728759
1.95694
2.328
1.14694
0.489725
0.541089
3.98226
42.448
12.5811
7.72818
3.99295
12.3543
7.82566
4.98462
50.7891
14.7908
9.30336
4.90493
15.1314
9.4177
0.381697
0.192755
0.418099
0.205558
0.210833
0.462563
0.334549
9.55199
3.58287
20.8739
6.6958
13.8645
7.98611
5.43648
23.7423
10.0423
4.72283
16.4189
50.8744
6.82665
22.3742
0.626543
0.41152
0.193364
0.300622
0.367693
0.283824
0.715536
0.886643
0.357015
2.12049
0.333967
0.301384
1.15337
1.08078
1.75957
0.660244
0.453475
1.01559
0.655264
0.980681
1.83963
0.944228
0.522113
0.293095
0.40287
0.41017
0.557905
0.880153
4.79344
42.8594
13.9821
8.28845
4.77628
13.9978
8.34346
4.6117
41.1724
13.9567
8.22532
4.76358
13.5396
7.91965
175.37
0.587201
0.30068
0.38734
0.9553
0.294682
0.619694
0.896299
0.471452
0.721895
0.251787
0.322365
0.250159
0.480682
0.71448
166.426
34.8195
56.545
70.4414
34.6472
5.84472
4.77239
30.1793
20.1154
5.39826
33.7497
4.99684
0.0538919
0.0534636
0.024158
0.0242297
0.0533836
0.0556902
0.0237202
2.9501
6.46515
15.6984
2.91116
9.94169
2.91227
3.13762
1.48104
0.601131
0.865266
0.427528
0.852216
1.45845
0.603286
249.044
97.5148
66.7318
345.691
431.092
107.913
0.0766884
0.0394756
0.0353712
0.0600164
0.0731372
0.0366753
0.0711796
5.91256
11.4494
11.8261
6.5224
20.2844
5.31582
5.58029
35.0335
20.9684
6.11606
6.12681
6.77756
29.1018
27.5296
197.533
42.8271
102.55
376.659
55.4326
99.2245
30.8227
42.41
33.3001
38.0848
0.044046
0.054457
0.0261253
0.0299861
0.0514316
0.0511935
0.0292164
3.10022
17.6601
2.76578
7.01308
3.40998
12.571
2.20985
4.73873
34.8958
5.00524
10.1174
6.31972
20.9258
3.22168
5.49335
52.0642
20.8332
8.54536
5.52249
20.5271
8.53287
5.58405
53.2178
21.1424
8.63692
5.60155
21.1871
8.59448
0.229954
0.768483
0.815264
0.219116
0.846802
0.215311
0.230046
4.22216
4.61223
17.0064
18.5421
18.4771
4.65849
4.25016
1.82098
5.53638
11.2532
2.06323
6.34021
2.57396
1.65573
6.23661
3.17858
6.68828
3.59504
10.2367
3.06598
18.9462
15.2515
4.46287
13.645
4.20685
14.848
4.29917
14.0484
0.176692
0.642312
0.194572
0.519946
0.190544
0.577623
0.177866
0.165657
0.75951
0.183928
0.690955
0.165515
0.180677
0.66805
11.5331
3.83243
9.86934
3.4433
15.6759
3.62144
6.9445
17.3451
17.3624
5.90696
5.44604
11.1268
24.7827
5.41135
30.9871
33.7908
29.7731
0.236146
0.799432
0.220795
0.71491
0.233309
0.782155
0.219768
0.331981
0.34771
1.12258
1.02423
0.346276
1.06046
0.335264
1.56403
4.91795
1.8522
4.94023
1.71712
1.57539
4.23191
7.38769
18.357
2.95271
3.19429
12.9367
12.9926
2.19549
0.198256
0.196885
0.452951
0.471152
0.183283
0.203612
0.424636
0.129746
0.171676
0.105315
0.217041
0.109222
0.210258
0.125121
0.108957
0.150498
0.0937099
0.205272
0.0902614
0.112003
0.188829
5.7675
49.5598
20.7994
8.57613
5.80635
20.6527
8.5266
5.81562
49.828
20.9137
8.62465
5.85007
20.8856
8.5721
0.743973
0.647024
0.159354
0.150649
0.723422
0.666405
0.163526
0.612672
0.18924
0.176564
0.646979
0.616257
0.177546
0.649921
0.441039
0.48401
0.227567
0.247553
0.228406
0.473644
0.424474
0.726602
0.202064
0.6861
0.210462
0.695821
0.214193
0.729397
0.966672
0.350836
1.04519
0.364056
0.96252
0.349994
1.07459
0.0287555
0.02872
0.0595122
0.0652463
0.0675079
0.0283214
0.0306227
0.0293981
0.0595404
0.0240257
0.0571078
0.0276417
0.0637451
0.0259302
0.0928295
0.148644
0.0802955
0.204664
0.0765678
0.19103
0.0962709
0.343504
0.795059
0.281958
0.607565
0.341646
0.283519
0.801333
6.06533
50.5527
23.6962
8.35917
6.01056
24.2043
8.41561
0.383952
0.323319
0.696269
0.912872
0.321717
0.386799
0.91221
0.517706
1.12053
0.853533
0.449366
0.447638
1.08643
0.517827
5.96168
49.3602
23.6469
8.27683
5.96859
23.6792
8.25741
0.418878
0.343584
0.737541
0.934972
0.354405
0.405663
0.951016
0.0198954
0.0299257
0.0291721
0.0235753
0.028089
0.020184
0.0234248
0.015034
0.0152346
0.0279629
0.034742
0.0142882
0.0309897
0.0165807
0.0180424
0.0286153
0.0269037
0.0155134
0.0158661
0.0264728
0.0175643
0.0166559
0.0373827
0.0383558
0.018978
0.0346261
0.0181458
0.0185505
0.781556
0.29403
0.580602
0.33849
0.601983
0.751448
0.346141
0.367537
0.155603
0.533811
0.193588
0.380204
0.556616
0.166542
0.0261567
0.0309956
0.0474427
0.0456956
0.0264326
0.0464404
0.0309282
0.0235726
0.0409262
0.0208666
0.0462286
0.0232085
0.020825
0.0444435
5.13161
1.92342
1.58249
4.10299
1.91177
3.96436
5.27896
0.225227
0.571599
0.713718
0.264697
0.266635
0.563564
0.219658
0.562632
1.16784
0.479982
0.938595
0.550187
0.488501
1.18832
5.1526
25.5634
20.9413
6.24029
5.09277
21.0698
6.33417
0.524596
0.444872
0.95914
1.23906
0.450411
0.518397
1.23477
0.3881
1.23543
0.923358
0.319973
0.321126
1.21438
0.387772
4.99649
24.4109
20.7846
6.16179
5.03805
20.5494
6.08101
0.480598
0.423688
0.92512
1.22455
0.408417
0.497866
1.19836
4.21853
1.51744
1.79388
5.42124
4.32147
1.49843
5.27814
5.53785
1.99065
4.23689
1.68276
4.35146
5.41042
2.0167
7.01179
5.25468
1.8304
2.23047
5.22824
2.22551
7.04267
9.04631
2.79269
2.21455
7.2469
2.75611
7.05169
9.25304
7.13014
5.26622
1.828
2.2259
2.22927
5.31007
7.05904
0.20225
0.566405
0.241465
0.732122
0.578715
0.20013
0.242441
0.207648
0.247425
0.60559
0.753236
0.595137
0.207359
0.247707
0.217615
0.65739
0.843908
0.250904
0.258719
0.668564
0.211551
0.212241
0.25021
0.623285
0.808537
0.209529
0.253193
0.637536
0.359848
1.2276
0.294499
0.949838
0.360032
0.295127
1.24366
4.83986
22.0262
18.6552
5.83903
4.80938
18.6049
5.8929
0.364005
0.299344
0.97074
1.28027
0.299899
0.363108
1.26448
4.82162
22.1769
18.6964
5.80689
4.79668
18.832
5.83696
0.369333
0.302302
1.03724
1.30946
0.305669
0.365789
1.33545
2.70734
0.521176
1.67882
0.630263
1.89117
4.51535
0.6519
7.8121
2.31571
2.83858
11.2616
7.80942
2.32677
11.2814
6.38884
7.36511
1.93551
2.44509
5.91836
1.99066
8.10689
10.4388
2.85405
7.6573
2.3853
9.57014
9.59602
2.92633
12.5778
9.6391
2.69575
3.39388
8.81283
3.31858
13.1777
15.4637
3.90288
3.35974
13.8034
3.93911
13.8528
15.3838
14.8361
10.8981
2.99938
3.51268
3.59187
11.7898
14.092
0.201794
0.645219
0.237739
0.819291
0.653403
0.200417
0.238888
0.223591
0.264299
0.755829
0.933053
0.746598
0.223971
0.264063
0.0447103
0.195762
0.0373638
0.246539
0.036551
0.0459273
0.250803
0.222202
0.808789
0.983193
0.257959
0.259313
0.806501
0.221325
0.216201
0.259382
0.751536
0.930945
0.219935
0.254458
0.749931
4.54437
19.8608
17.1192
5.34104
4.52524
17.1787
5.36413
4.48161
19.4485
16.9362
5.29466
4.48786
16.7997
5.29389
0.0385411
0.0325549
0.00742525
0.00744893
0.0346799
0.03364
0.00812098
13.4856
3.23459
3.67823
14.0504
13.4532
3.24893
14.1424
0.0452053
0.0113973
0.0583167
0.00851969
0.0407534
0.0591175
0.00925528
13.5385
14.5671
2.99405
3.42034
13.218
3.01007
14.7818
15.3727
3.87627
13.7507
3.31396
13.7963
15.3148
3.86911
18.1233
15.5413
3.93519
4.67882
15.4495
4.68938
18.2
31.1334
5.65865
4.39366
16.1051
5.67964
16.1856
31.0251
18.6835
15.6065
3.92322
4.66162
4.66896
15.8461
18.2693
0.0362779
0.201421
0.0303207
0.273574
0.030062
0.25705
0.0366009
4.0625
17.3592
15.0668
4.78178
4.08696
14.9943
4.75295
4.11559
17.4841
15.0621
4.79087
4.09892
15.1101
4.81151
30.9058
5.62227
15.9855
4.34289
15.9822
30.8467
5.60858
29.4841
5.44711
6.93647
29.3639
6.89514
9.41974
6.48121
9.47838
29.5398
5.50974
6.96089
6.96982
29.5181
3.60368
14.6027
12.8155
4.2582
3.64775
12.756
4.19699
3.63114
14.5882
12.7858
4.23427
3.63352
12.7874
4.23142
9.27882
6.2552
9.1218
8.94159
10.6368
10.5809
11.1407
10.5546
11.1079
9.11005
10.7147
10.77
3.25913
14.1434
10.7105
3.26512
2.90804
12.3697
3.74685
2.69914
9.83661
9.96169
3.11425
2.78808
9.55757
3.0045
11.2256
10.8646
11.4561
9.79857
9.83489
10.0621
0.0145182
0.0139508
0.00334977
0.00378463
0.0129898
0.0154766
0.00358679
14.3604
11.0432
33.7977
12.9892
33.7675
175.323
8.88526
9.56472
9.33265
0.00961377
0.00260015
0.00592658
0.0023472
0.00654377
0.00859955
0.00277623
32.0598
32.4297
12.587
13.9965
6.92159
39.0541
34.9359
6.23269
13.8848
31.0151
30.7169
1.46156
1.00269
0.470075
2.5141
0.571363
3.12957
1.21197
1.47561
0.573959
3.69848
2.3428
0.720105
6.58293
1.09594
0.327318
0.153278
0.0983042
0.137367
0.164291
0.168546
0.284242
31.6849
9.90658
17.952
12.7517
45.3713
22.8088
7.2258
4.82713
2.91704
8.81989
5.6704
17.0851
43.2271
0.958141
0.643372
1.26562
3.71103
0.540399
1.24015
2.69022
2.83393
1.15927
0.634992
2.17025
0.909261
1.43416
3.44378
1.41437
0.631522
3.48508
0.609202
0.583465
1.82214
1.54701
130.443
30.3548
18.7736
13.0258
29.0691
35.7026
14.292
73.0502
16.4955
15.7305
39.6834
50.1259
35.3802
14.5284
20.7572
0.354689
0.104054
0.131247
0.196074
0.392099
0.131144
0.242207
3.80734
8.67537
4.74293
1.57837
1.83915
15.0798
2.68499
56.5002
17.6081
17.5797
8.08048
63.0252
16.1023
15.3725
0.223045
0.0836856
0.106122
0.253075
0.303594
0.0910698
0.187058
176.797
154.189
2.14495
8.1364
1.2944
3.96214
1.41245
2.28841
7.20477
45.7403
13.4456
13.8526
43.4508
1.15412
0.701381
0.4789
2.08525
0.446287
1.06543
2.31618
50.56
15.9488
16.1033
50.3182
0.258247
0.168029
0.11095
0.388996
0.105478
0.440976
0.244254
25.7959
66.5712
81.6589
22.7728
4.36756
5.57395
8.93367
17.125
9.85319
4.14161
6.1569
20.558
44.4823
18.4233
200.26
29.1977
25.1661
89.8171
28.8208
2.67553
0.937088
1.49451
1.10396
1.72256
1.19701
2.23268
26.7495
53.036
26.7225
9.45329
102.862
14.2491
10.159
0.199271
0.157215
0.0694137
0.0678439
0.0717366
0.182026
0.138237
434.786
119.195
11.7383
16.5442
36.9767
70.6373
29.0976
43.137
8.80597
30.8179
8.21155
39.444
10.1123
18.8426
10.7983
169.997
392.25
84.5725
0.144925
0.115616
0.0593966
0.0533564
0.057619
0.138782
0.0986326
459.352
47.0837
83.5031
7.31677
45.3693
9.69663
12.2638
10.0514
21.4381
5.77895
0.116514
0.0617932
0.181363
0.0670366
0.0575831
0.135796
0.193906
36.2461
512.486
86.9824
177.306
79.4109
28.7724
25.6736
4.34067
2.13852
1.19484
1.08188
1.42068
3.23589
2.41595
39.0752
8.76334
18.313
9.66417
19.6761
9.68328
37.2514
0.706949
2.23888
0.764752
1.523
0.798928
1.49632
0.709016
39.9469
13.5437
13.6922
39.0868
35.1393
13.3352
12.7315
37.1529
0.88672
1.64809
2.71102
1.07995
1.15921
1.82088
0.842153
23.5446
45.4634
19.3364
2.00747
0.822029
1.47303
1.07508
2.20338
1.37192
1.04412
13.2433
4.79328
7.59654
20.2329
5.04846
13.2342
20.1903
0.244175
0.150697
0.366951
0.492447
0.179953
0.200905
0.51604
0.257026
0.387433
0.161214
0.511567
0.191535
0.53191
0.210237
1.59704
0.996581
2.0614
0.770205
1.45704
0.943061
0.746565
13.2231
4.69911
19.2199
6.10039
12.8431
4.4176
23.0775
29.6438
110.211
51.619
47.0898
5.0721
7.61305
36.7627
5.09351
18.098
6.83437
3.70905
0.84094
1.99929
4.73108
0.797549
3.02932
1.10833
0.679872
10.5652
12.989
5.5049
6.74457
37.4162
18.5432
5.06348
36.8769
39.6842
25.662
0.357537
0.364286
1.19675
0.999341
0.377474
1.08216
0.345337
2.9607
5.80548
3.36246
6.70608
2.80319
3.10428
4.89528
3.02513
2.95041
1.21517
0.930574
2.01762
3.38982
1.10119
24.5004
10.8338
15.3211
9.19472
52.8004
34.7963
7.85414
0.59956
1.64715
0.695534
1.34928
0.621743
0.626706
1.27285
0.093711
0.270423
0.173071
0.086799
0.274259
0.0945314
0.0815846
0.0627503
0.0532508
0.148778
0.145505
0.180967
0.0561086
0.0573268
0.0716597
0.223621
0.0703033
0.164154
0.0774022
0.204562
0.0668744
22.3907
12.2615
12.3024
22.188
22.1848
12.364
12.2801
22.3402
0.0852037
0.199227
0.0835096
0.353339
0.06546
0.110363
0.283285
0.0186245
0.0252535
0.151486
0.241817
0.166141
0.0201905
0.0234652
1.96607
2.76646
0.740735
0.972173
0.746034
1.93328
2.84214
0.367215
0.351362
0.796166
0.616402
0.6408
0.336666
0.365846
1.46142
0.548943
0.526236
0.871993
1.38606
0.535031
0.997907
1.52597
0.674847
1.68798
0.711651
1.70356
0.721503
1.4207
0.0618501
0.148068
0.0604436
0.144179
0.0580109
0.118032
0.0643484
0.987561
1.58277
0.57173
0.593215
0.580751
1.55875
1.07577
19.3866
12.008
11.9455
19.4824
19.4495
12.0707
11.9843
19.6092
1.70479
2.68893
0.686719
0.821369
0.639395
1.86906
2.38891
1.30983
0.542481
0.542954
1.61194
0.540515
1.37286
1.69242
0.0446884
0.0989171
0.0914674
0.047397
0.104285
0.0443003
0.0477283
0.0472291
0.0873331
0.109097
0.0535184
0.101331
0.0483921
0.0528949
0.431897
0.484073
0.285504
0.342265
0.466904
0.432736
0.340684
1.12845
0.410036
1.14521
0.385041
1.19253
1.16334
0.391811
0.036819
0.0319624
0.0638416
0.0600343
0.0331743
0.0593004
0.0365216
0.0473632
0.0750156
0.0431499
0.0732342
0.042408
0.048085
0.068949
0.291566
0.207345
0.0579396
0.0758999
0.0725609
0.220642
0.278978
17.9108
11.3173
11.3289
18.0684
0.295016
0.057167
0.057843
0.202276
0.0717189
0.225071
0.265921
17.1892
11.1556
11.1007
17.4576
0.275365
0.213078
0.0290002
0.0392707
0.215135
0.0312649
0.266422
0.251384
0.0464906
0.192907
0.0256909
0.192093
0.250758
0.0285826
0.353975
0.242152
0.0511686
0.0518986
0.0547953
0.28894
0.295345
10.8432
50.3474
8.30891
8.46313
10.6628
0.328784
0.0453427
0.045464
0.225171
0.0482244
0.268631
0.270989
10.3727
47.293
8.18724
8.07455
10.5195
0.242477
0.137901
0.0511883
0.0455074
0.195893
0.0587508
0.173221
0.348448
0.0665837
0.268532
0.0672761
0.282866
0.32395
0.0759901
0.0679878
0.0745142
0.00705163
0.0184069
0.00850563
0.0523754
0.0964569
10.1855
42.8547
7.73231
7.83711
9.98096
0.0456454
0.00399527
0.00361117
0.0386102
0.00415886
0.0358434
0.0490521
9.91067
42.8874
7.66525
7.703
9.86868
0.0307179
0.0216267
0.00283742
0.00296867
0.024649
0.00323638
0.0269495
0.0351793
0.00396203
0.0353089
0.00299739
0.0280536
0.0448172
0.00341553
0.0160639
0.0134288
0.00209032
0.00246058
0.00234513
0.0133877
0.0162906
8.7672
38.1799
6.90139
6.93154
8.7242
0.0139869
0.00175357
0.00162379
0.0109378
0.0017802
0.0117951
0.0129154
8.67522
37.4515
6.83928
6.8495
8.64594
0.0110723
0.00755472
0.00128432
0.00110519
0.00939828
0.00139202
0.00871932
0.0118476
0.00159974
0.00964284
0.00154686
0.0100209
0.0113046
0.00169969
0.00833105
0.00728982
0.00127693
0.00131622
0.00138198
0.00718703
0.00845141
7.71215
33.2963
6.16063
6.11875
7.76911
0.00722475
0.00164765
0.00127816
0.00595835
0.001368
0.00634577
0.00677512
7.81112
33.5033
6.16562
6.19587
7.77231
0.00589856
0.00381907
0.00136018
0.00107505
0.00514852
0.00147944
0.00429784
0.0065339
0.0016173
0.00543435
0.00155761
0.00570444
0.00619271
0.00170278
0.00699544
0.00174983
0.00114279
0.00600677
0.00160727
0.00837613
0.00505144
0.00275523
0.000683258
0.000701827
0.00304133
0.00068395
0.00275632
0.0030522
0.00260931
0.00238729
0.000665365
0.000688878
0.000690297
0.00246376
0.00252087
6.80949
28.3153
5.50418
5.40766
6.95848
0.00249459
0.000665225
0.000643003
0.00237606
0.000665468
0.00236366
0.00250419
0.00289223
0.000731997
0.000709605
0.00312035
0.000711402
0.00279967
0.00321541
0.00291544
0.00068948
0.00301993
0.000747574
0.00272913
0.000725437
0.0032487
6.8787
28.3436
5.46278
5.45754
6.89109
0.00276903
0.00265404
0.000681868
0.000713571
0.00257436
0.000707401
0.00289233
0.00262799
0.000671319
0.00234063
0.000677727
0.002461
0.00247443
0.000703328
0.00307832
0.000752503
0.000740323
0.00366512
0.000729929
0.00343726
0.00324741
0.000845424
0.000522844
0.000533213
0.000873962
0.000525103
0.000851047
0.000868974
0.00134223
0.00212031
0.000522204
0.000597135
0.000534505
0.00129796
0.00229627
6.01458
22.9988
3.92439
29.6183
98.2877
4.66596
5.03841
0.000819673
0.000515879
0.000506303
0.000871807
0.000516608
0.000834531
0.000862086
0.00143899
0.000554018
0.000612954
0.00287247
0.000544466
0.00256183
0.0015441
0.000977411
0.000519377
0.00106638
0.000521319
0.00102477
0.000512444
0.00101798
4.53414
11.5102
3.71032
24.4381
3.56315
4.73542
22.9612
0.000718042
0.000519628
0.0005197
0.00104808
0.000512285
0.000721673
0.00100772
0.00126657
0.00051465
0.000528571
0.00138194
0.000520578
0.00130453
0.00134005
3.38164
9.17053
2.88938
10.5951
10.6949
3.36369
2.90087
0.00098087
0.000507502
0.00050029
0.00101073
0.000501036
0.000968865
0.00101658
23.0237
22.9978
0.0015435
0.000497009
0.00127808
0.000506311
0.00121628
0.000497529
0.00165688
3.3581
9.0354
2.87831
10.5177
3.34736
10.5204
2.88645
10.3034
19.6467
19.5405
12.1399
21.1786
22.3399
0.00114886
0.000488047
0.000475692
0.000730468
0.000480283
0.0012103
0.000712822
0.00192604
0.00134947
0.000513805
0.000517202
0.00178926
0.00141993
0.000520519
83.7705
0.00135145
0.000494652
0.000751121
0.000496413
0.00128139
0.000500618
0.000769916
0.00608888
0.0058994
0.00204715
0.00210189
0.00570182
0.00641883
0.00210638
0.000509127
0.000467321
0.000475457
0.000507071
0.000468009
0.000502215
0.000514104
2.94717
9.39083
2.39874
8.64655
10.6813
2.66884
2.59866
8.66954
11.3986
9.38824
10.138
0.000503204
0.000477265
0.000471549
0.000512738
0.0004701
0.000507844
0.000507864
7.52227
9.13661
8.92141
7.51476
0.000503006
0.000466129
0.000501088
0.000473341
0.000495858
0.000466192
0.000500237
2.47749
7.49927
2.30179
7.94864
2.54349
7.69446
2.24857
6.60787
6.55458
6.36762
6.77007
7.22005
7.54624
7.67593
7.03296
0.000499323
0.00047189
0.000463812
0.00050022
0.00046463
0.000497699
0.00050424
0.000524983
0.000482348
0.00051259
0.000488169
0.000519595
0.000488781
0.000518113
24.4774
20.4684
0.00051725
0.000484245
0.000517709
0.00049185
0.000522185
0.000512726
0.000490713
15.901
10.2026
8.37603
16.3608
0.000509635
0.000506138
0.000480226
0.000486728
0.000505194
0.00051121
0.000486686
6.05778
6.31756
6.11253
6.24611
0.000511822
0.000519882
0.000490982
0.000497131
0.000516933
0.000491496
0.000514653
8.15645
7.74735
7.07749
9.28331
0.000507207
0.000478732
0.000505402
0.000484556
0.000502638
0.000485198
0.000509957
0.00611495
0.00190107
0.00687251
0.00183995
0.00649615
0.00180757
0.00657592
19.1222
10.1579
19.5596
11.849
0.00517619
0.0044891
0.00152021
0.0015148
0.00467836
0.00493543
0.00158394
0.00551813
0.00182117
0.00525589
0.00165128
0.00498812
0.00584226
0.00172739
0.00575693
0.00169341
0.00157617
0.00607111
0.0054729
0.00165054
0.00631599
0.00661732
0.00198483
0.00739346
0.00206977
0.00665926
0.00194009
0.00747551
0.00704204
0.0069408
0.00203786
0.00193388
0.00677712
0.00711706
0.00201863
0.00652123
0.00200463
0.00179344
0.00715925
0.00613692
0.00188228
0.00749633
0.00659047
0.00690511
0.0018147
0.00182392
0.00662877
0.00689311
0.00176003
0.00630241
0.00518736
0.00148007
0.00137466
0.00553951
0.00151908
0.00613392
0.0065049
0.00167431
0.00637781
0.00157845
0.00649766
0.00161529
0.00640067
0.0064221
0.00173905
0.0062939
0.00155407
0.00584249
0.00678325
0.00167772
0.000504201
0.000459701
0.000467578
0.000510322
0.000460545
0.000509208
0.00050449
2.07013
6.12479
1.86286
6.19959
6.26598
2.03026
1.89129
6.27267
7.13348
7.22577
6.03771
0.000537207
0.000469452
0.000462826
0.000556217
0.000462399
0.000553615
0.000538954
6.42318
6.85593
6.98995
6.19661
0.000521265
0.000458531
0.000514356
0.000464634
0.000513601
0.00045763
0.000522865
2.10912
7.27859
1.79602
6.34507
1.93541
7.53156
1.94593
5.62525
5.35298
5.40813
5.56566
6.32825
6.34993
6.55646
6.11362
0.000511036
0.000463689
0.000458015
0.000519089
0.000517585
0.00045684
0.00051395
0.000517705
0.000474309
0.000517182
0.000479958
0.000511042
0.000480748
0.000524151
5.56755
7.02882
7.11162
5.7651
0.000565168
0.000595604
0.000489702
0.000494961
0.000574029
0.000586114
0.000489077
0.000555852
0.000476208
0.000565563
0.000483271
0.000575693
0.000547122
0.000482633
5.64553
6.69866
5.93708
6.51772
0.000524853
0.000486567
0.000493263
0.000539277
0.000531971
0.000487265
0.00053168
0.000538796
0.000521686
0.000471312
0.000478657
0.000530754
0.000529112
0.000477779
4.92852
5.1281
5.1801
4.88857
0.000537263
0.000550361
0.00048514
0.000490006
0.000542012
0.000545782
0.00048359
5.58702
6.1092
5.86873
5.82856
0.000528956
0.000470358
0.000526364
0.000478374
0.000533861
0.000521411
0.000476852
0.000547714
0.000485241
0.000545419
0.000490741
0.000556797
0.00053723
0.000484445
0.00449029
0.00120393
0.00483009
0.00124742
0.00441025
0.00123013
0.00493104
8.18621
8.22409
8.0881
8.30365
0.0037479
0.00465269
0.00115296
0.000991051
0.00497151
0.00316902
0.00108715
5.13684
6.18219
5.84087
5.68212
0.00437608
0.00120876
0.00414073
0.00127872
0.00439305
0.00419381
0.00125072
0.00370391
0.00104123
0.000950017
0.00297385
0.00298574
0.00105088
0.00392474
0.00688679
0.00159888
0.00582759
0.0014498
0.00645833
0.00157692
0.00623775
0.00605422
0.00510746
0.00145596
0.0012532
0.00477304
0.006104
0.00143064
11.0829
3.21015
7.20903
3.51007
0.00639737
0.001578
0.00619627
0.00155695
0.00623131
0.00633014
0.00154002
0.00665001
0.0013386
0.00125138
0.0042287
0.00524211
0.00146024
0.00586314
0.00597577
0.00531451
0.00128921
0.00126841
0.00545654
0.00570535
0.00128347
11.2797
11.5
4.10991
2.92571
4.47903
2.80367
0.00422767
0.00189633
0.000833647
0.000801856
0.00295414
0.00246956
0.000952708
0.00468464
0.00105607
0.0031854
0.000898209
0.003372
0.00428516
0.00104443
0.00552194
0.00116116
0.0034704
0.000967116
0.00347558
0.00526061
0.00116927
0.382492
0.070823
0.495026
0.188595
0.112464
0.269801
0.738283
42.3603
86.4852
254.29
38.116
219.018
15.7512
46.0102
104.343
254.727
24.234
32.3061
45.165
3.72418
3.53459
2.43858
0.9925
1.61763
1.40934
1.13547
0.112686
0.166769
0.476681
0.0938337
0.17005
0.292669
0.0661554
58.9296
167.887
17.4034
37.4259
12.913
75.3499
167.632
2.6922
7.89326
5.44947
1.2721
1.72065
10.4785
1.90913
290.019
269.924
56.8164
0.246276
0.0622478
0.111859
0.067893
0.157851
0.0913425
0.168822
23.388
18.9388
70.8847
35.4355
92.1513
16.8779
4.95659
9.71501
23.4164
27.7102
5.53713
14.8
72.2855
27.1865
15.0088
88.6452
14.1391
47.0361
11.3801
8.94632
19.0631
14.6067
22.7621
33.5116
20.2148
48.2471
301.58
14.9423
232.105
238.282
40.7109
87.815
101.906
113.392
98.1009
38.2575
37.2296
96.0514
87.7248
99.1139
88.8515
36.7274
26.9859
61.4494
32.1553
62.369
32.9529
26.6634
35.4905
92.2546
85.3827
84.4012
90.1581
35.8836
0.807688
4.5779
0.619488
2.35105
0.583203
0.887838
3.75219
0.201667
0.513123
0.38277
0.162004
0.164108
0.479095
0.191968
15.701
8.29136
28.0176
68.2237
13.2116
9.46173
81.4707
219.953
92.3135
8.76643
3.76768
1.22121
1.21357
5.01861
1.78003
6.43611
3.41843
3.14059
0.813336
1.04257
1.02432
2.38077
4.86574
134.68
138.192
1.7221
0.765526
2.71736
1.18229
0.74233
1.8469
4.04965
176.662
174.586
26.4968
60.9134
31.6352
30.8391
26.8076
60.0375
0.167091
0.120028
0.518342
0.0471678
0.0424274
0.526834
0.164152
24.6578
26.1522
52.6964
26.5554
53.1573
24.4875
23.7394
48.1075
21.7052
48.8468
22.2491
23.4811
0.167635
0.143085
0.497248
0.0468864
0.0481917
0.542425
0.161285
23.8245
25.5591
51.368
50.9879
25.2856
23.9645
240.51
260.705
17.396
12.963
39.7874
22.9143
48.1715
110.906
1.45745
1.08542
2.19999
2.78975
1.36998
1.15536
3.05636
0.170094
0.0562227
0.0810735
0.202309
0.160476
0.0668706
0.207096
36.458
52.8306
31.6118
58.7214
77.856
15.5589
36.7439
8.86614
29.9937
93.4473
13.5118
107.113
137.513
486.335
210.057
34.4954
178.205
37.8685
111.748
110.674
21.8848
45.0999
20.4821
20.0875
22.1559
44.3572
23.913
19.8681
55.1769
19.9036
54.9665
23.9904
21.0726
46.1917
14.465
47.0325
15.0862
20.7285
23.4488
19.5394
54.1384
53.6736
19.3716
23.6281
57.9261
144.326
67.4627
0.2723
2.25983
1.58047
0.389422
0.314992
1.67507
0.325881
49.5917
62.3076
41.1827
32.7844
13.8042
9.67776
47.3208
10.5777
49.8682
30.1327
16.5614
35.2363
10.2652
48.1061
12.2309
58.166
13.6888
0.0673016
0.0289778
0.0279895
0.103499
0.0266372
0.0731398
0.0935889
102.508
69.6042
51.1009
165.051
0.0525001
0.0454023
0.0169748
0.0221764
0.0212868
0.0385196
0.0645153
95.3809
126.178
23.1955
6.79165
720.423
38.9509
12.1953
7.17191
7.30902
25.7111
35.413
5.69476
9.62926
37.3725
5.63693
46.4057
3.27883
4.01786
17.3768
14.7647
2.98375
116.822
502.348
219.351
1.75971
13.1135
2.18454
37.3244
34.3596
3.59978
127.033
18.2443
67.2723
19.597
71.7121
24.8221
92.8312
76.6692
16.5449
74.6136
16.8656
88.8027
18.8779
90.0286
18.7036
19.23
44.4821
13.8235
12.8678
20.1221
42.03
9.11779
30.3935
93.3351
17.334
30.6002
17.4144
9.08859
8.50432
15.5397
81.8275
27.4552
15.6858
27.8049
8.43853
8.92022
30.0039
90.4687
17.0892
17.0293
29.8588
8.94749
3.12219
0.750799
0.661172
2.11447
0.819613
2.27249
2.87952
27.2757
9.77592
8.96303
41.3869
7.80444
36.1223
35.94
0.0123302
0.0089607
0.0312932
0.0395519
0.010803
0.0100427
0.0411726
1.63596
1.22141
0.248402
0.282867
1.35968
0.289872
1.59264
2.66204
0.670563
1.99871
0.457468
1.94987
2.73869
0.557939
0.16184
0.48432
0.131093
0.470988
0.166078
0.584071
0.151499
0.201782
0.560293
0.42221
0.0738562
0.102203
0.78165
0.148396
8.22536
14.9276
10.9659
2.3931
23.5113
4.32268
5.83732
0.283767
0.0152595
0.0834551
0.0394907
0.0436695
0.266489
0.0906186
73.9946
12.3647
63.0487
19.4583
88.0903
55.4275
15.102
0.282072
0.01164
0.0737594
0.033301
0.0294452
0.235186
0.0865332
20.9429
10.7111
20.7221
10.8223
24.1366
12.4938
24.4758
12.398
8.41931
15.4276
27.2156
78.53
27.0075
8.43379
15.4117
8.29478
24.8679
71.4956
14.8037
25.0698
14.8816
8.28207
7.10956
12.4534
59.6649
21.2699
12.5385
21.4479
7.07685
8.09741
24.4905
69.0994
14.5611
14.4633
24.3701
8.16368
0.00558686
0.0184645
0.00654443
0.0224654
0.0060035
0.0182142
0.00615547
0.00441266
0.0171894
0.014528
0.00554532
0.00522197
0.0143764
0.00458403
0.638374
0.195977
1.26716
0.178865
1.02351
0.14891
0.792587
0.33602
0.0923513
0.106954
0.454265
0.0861327
0.410151
0.413832
0.822525
0.0977021
0.0203894
0.0273635
0.056095
0.206555
0.353877
0.00374132
0.00204781
0.0236206
0.00969763
0.00198803
0.0206043
0.00418229
0.603009
0.111453
0.560043
0.162045
0.5078
0.135274
0.698901
0.291427
0.0603672
0.0232974
0.00879561
0.0246825
0.221012
0.0649863
9.32622
64.7729
20.8467
9.22565
21.094
10.2736
23.1976
72.2722
10.3977
23.001
6.89308
12.1942
20.8237
56.8482
20.6248
6.96034
12.0762
4.93573
6.46746
16.5578
8.23438
6.62278
8.36421
4.87472
4.40439
7.19994
14.1306
5.74784
7.25565
5.83512
4.38816
4.70181
6.31533
15.7176
8.05426
7.97572
6.28072
4.75161
0.257364
0.0774809
0.0969444
0.378483
0.0859533
0.373686
0.294911
0.00874683
0.0133155
0.00818347
0.016377
0.00825724
0.0141175
0.00881535
0.00198653
0.00137702
0.0142598
0.0031841
0.00111369
0.00278572
0.00825462
0.00314997
0.0118092
0.00387658
0.0183506
0.00382601
0.00367945
0.0120834
0.372533
0.0878064
0.460062
0.127151
0.568364
0.354351
0.101435
0.0947484
0.024257
0.0445306
0.0176754
0.0949561
0.0259219
0.0469047
7.60242
50.7573
17.6835
7.6298
17.8235
7.53701
17.9276
52.7023
7.61361
17.928
0.125044
0.0222415
0.0320026
0.0823325
0.127292
0.0325922
0.0806505
4.33349
7.07136
5.72711
13.6449
5.79979
4.35635
7.02715
3.85178
5.07856
11.5703
5.87422
5.20092
5.89096
3.87733
4.14308
6.00485
11.3139
5.4369
5.81383
5.60897
4.26877
3.84802
5.08807
11.3657
5.82241
5.78947
5.223
3.88097
0.0555048
0.0135472
0.0383996
0.00943974
0.0592059
0.0128278
0.0368309
13.101
38.7709
9.15816
3.09428
12.8502
39.6708
3.14771
15.2041
3.78651
47.2747
11.1398
15.3729
46.7566
3.7411
0.0511897
0.00832706
0.0105925
0.0300778
0.0451704
0.0115381
0.0337053
3.84171
5.67708
5.173
10.7796
5.20014
3.96534
5.58692
2.48289
2.70702
6.49513
3.90635
2.73907
3.95519
2.45737
1.90676
3.00303
5.02408
2.13303
3.06925
2.15754
1.89391
0.00346976
0.00115082
0.0256385
0.000784364
0.000759963
0.0184025
0.00459519
2.34725
2.62451
6.13875
3.76494
3.72082
2.59835
2.37426
22.2223
22.7002
0.0106131
0.00140827
0.00068346
0.000839218
0.000872614
0.00175779
0.00736176
0.0293176
0.00714156
0.0210811
0.00461341
0.0331752
0.00653437
0.0191817
2.26599
6.51582
3.52058
1.41187
2.23579
6.59761
1.43362
2.68159
1.89122
7.5833
4.1713
2.73286
7.47527
1.84926
0.0266085
0.00395475
0.00547476
0.0165983
0.0252725
0.00573527
0.017388
2.40533
1.45109
2.16328
2.68945
2.15681
2.39067
1.41606
0.0010397
0.000856679
0.00282468
0.000650921
0.000655133
0.00310363
0.000985629
1.93113
1.82592
2.77517
7.08179
1.85735
7.22576
1.89969
0.018019
0.0037617
0.0117491
0.00270306
0.0173925
0.0038164
0.0123127
1.57816
3.62984
1.73584
1.12342
1.55699
3.69295
1.13252
1.74233
1.08244
5.54582
2.59326
1.77339
5.48703
1.06157
0.0177496
0.00238038
0.00335507
0.011322
0.0166759
0.00351732
0.0121029
0.00930884
0.00208458
0.00680325
0.00128211
0.0105645
0.00189883
0.0057407
0.0123275
0.0180146
0.0030519
0.00266456
0.0152844
0.0151776
0.00234768
0.54879
1.2216
0.73528
0.43093
0.506833
1.31456
0.468192
0.83152
0.680261
2.06342
1.04013
0.900793
1.94571
0.667065
0.00803287
0.00110419
0.00178666
0.00475135
0.0106496
0.00163155
0.00485669
2.23596
0.00635706
0.00870509
0.0030226
0.00281417
0.0060809
0.00906399
0.00286328
0.186261
0.295098
0.772191
0.167082
0.184132
0.297319
0.168998
0.00892726
0.00419607
0.0108605
0.00425909
0.00836355
0.0118106
0.00422145
0.331452
0.350741
0.365118
0.163547
0.333283
0.360085
0.350046
2.12965
0.679833
0.698265
0.0858337
0.112684
0.719247
0.118294
28.6592
0.199813
4.3945
0.00351498
0.0057551
0.0019492
0.00176794
0.00336595
0.00590611
0.00178904
0.00479018
0.0024758
0.00866728
0.0025844
0.00550807
0.00768407
0.00244338
0.282398
0.058159
4.35146
0.0696319
0.645028
1.47547
0.0233974
1.09649
2.70619
0.330007
0.305607
1.3364
0.165654
0.178678
0.307702
0.561008
4.2759
2.30716
0.612401
1.90746
0.27401
16.0362
14.4606
8.54236
6.52313
210.905
26.1451
12.4327
5.2734
3.46186
15.3529
42.3076
7.50437
12.2864
6.88589
3.72261
0.0037639
0.00503888
0.00143181
0.00130479
0.00616985
0.00373898
0.0013922
3.79346
23.0579
9.67152
6.23239
19.6766
4.89932
0.00780948
0.0513461
0.132532
0.003858
0.00416868
0.146103
0.00677019
7.07339
95.0297
25.9856
10.7171
0.00650086
0.00679679
0.00123637
0.00128239
0.00713678
0.00657166
0.00136414
0.00333723
0.00478884
0.00126921
0.00131114
0.00356324
0.00405214
0.00128018
0.00673476
0.0608427
0.148304
0.00367158
0.00426952
0.1966
0.00590578
20.2694
63.3895
8.68674
8.6414
0.0030136
0.00128745
0.00373552
0.00124279
0.0037235
0.00123019
0.00301961
0.00292443
0.00380602
0.00121858
0.00115161
0.00373187
0.00298749
0.00115075
0.00300072
0.0012537
0.00349474
0.00119776
0.00356688
0.002846
0.00120511
0.00271033
0.00353655
0.00109669
0.00111883
0.00278434
0.00322938
0.00109508
0.00245327
0.00107494
0.00277262
0.00104241
0.00292231
0.00104513
0.00238397
0.00204843
0.00212171
0.000994441
0.000950951
0.00220837
0.00202955
0.000954734
4.27889
2.96322
73.443
3.81622
3.20311
0.00219643
0.000986384
0.00256978
0.00098651
0.00251549
0.00222412
0.000985266
1.99996
1.79776
9.50346
2.13222
1.64301
0.00808579
0.521766
0.0107155
0.326513
0.00734639
0.0104642
0.337586
0.490593
0.0173186
0.0172681
0.0183666
0.311841
0.31822
0.0187508
19.272
2.4747
6.99431
9.85983
26.0564
5.14378
8.07205
38.3847
72.7006
0.264967
0.749628
0.433543
0.212495
0.203045
0.660957
0.280455
8.15458
11.0724
97.5968
6.25091
9.70713
4.92438
18.2417
7.94656
4.81732
27.7435
6.86874
4.93106
3.21869
13.3463
27.6009
3.45305
4.50236
29.7478
0.74929
0.302348
1.03224
0.373951
0.733926
0.301023
1.05687
5.81463
28.1276
4.81635
4.47799
6.39946
0.75035
1.07605
0.316203
0.383949
0.309378
0.77125
1.04872
14.6529
16.1105
14.8792
189.209
22.511
19.1647
39.7218
27.3045
73.5842
25.115
1.23963
0.436042
0.954778
0.511444
0.509079
0.931839
1.26569
11.2087
8.43169
21.1394
20.581
11.1277
9.63024
2.31423
2.82493
9.87744
2.58218
7.81821
11.465
12.4592
3.43064
3.43095
13.1094
12.4575
3.37553
13.1145
4.10816
3.05375
0.557785
0.704439
4.41076
2.92332
0.617157
3.47496
0.660035
2.29485
0.828918
0.825338
2.37749
3.34993
3.8975
0.616352
0.543136
2.69631
2.82388
0.603068
3.67298
0.00437232
0.0162946
0.0167175
0.0147451
0.00390233
0.00394982
0.0143701
0.263212
1.73015
0.202388
2.43463
0.216612
2.68585
0.244039
12.7392
4.86644
12.5194
8.43225
2.90051
10.8513
3.1851
0.00435516
0.01772
0.0163003
0.0144204
0.00410328
0.0156849
0.00391929
4.64769
6.53156
5.47002
3.73907
3.6558
3.7287
3.74285
3.35252
8.96708
3.1239
2.54796
3.91663
2.90236
4.1908
2.06246
9.64992
2.22946
1.63325
4.00355
4.18621
1.53543
0.00374448
5.46991
0.110245
0.00359238
0.00134983
0.0013618
0.17158
0.0587506
8.80025
0.0582732
0.035491
0.0486894
0.0310194
0.0703512
4.99124
1.96313
2.74248
2.04109
3.14175
1.27966
1.13031
0.549498
2.5733
0.578505
1.05345
0.735422
1.70064
0.446149
0.619124
2.42389
0.973773
0.558326
1.89087
0.44024
0.778638
0.163654
0.242439
0.134134
0.152467
0.123166
0.0859274
0.0961425
0.235743
0.165131
0.127867
0.140035
0.112243
0.0764378
0.083625
14.8344
13.5297
16.8758
28.9828
29.8295
29.2585
25.9945
27.2462
26.9325
21.7057
25.1929
23.8148
11.0138
5.71265
4.95024
37.1097
4.76559
9.61515
8.43584
24.1034
24.7147
3.77828
3.73504
24.2396
24.691
3.70388
20.4224
3.77583
3.69239
20.36
21.1777
3.7343
19.481
18.4435
4.53292
3.96711
18.1792
19.7861
4.13804
16.6102
0.167404
0.0340782
0.0363239
0.174633
0.0344629
0.165586
0.172661
0.16574
0.155904
0.0305748
0.0341443
0.171078
0.149793
0.0334088
0.154797
0.0312502
0.0290493
0.133307
0.139014
0.031865
0.150005
0.175932
0.037552
0.0363456
0.180899
0.179352
0.0360968
0.178944
0.078714
0.0201843
0.0218504
0.0864783
0.0200582
0.0797896
0.0869323
0.0743327
0.0717878
0.0176804
0.0183732
0.0729806
0.0744119
0.018352
8.42417
8.48287
8.51431
8.39204
10.2734
66.6404
17.4098
21.1349
0.0763077
0.0190669
0.0179988
0.0782632
0.0764927
0.018688
0.0782498
0.0785669
0.0218125
0.0200366
0.0900845
0.0795377
0.0198766
0.0879769
7.63449
7.62814
7.55199
7.89358
0.389378
0.326122
0.25363
0.203888
232.685
19.3093
87.0916
35.0362
77.5048
0.957465
0.841066
1.32061
3.32674
0.658116
1.33508
2.24271
8.66706
45.2325
36.9793
19.4009
10.8576
22.0842
16.0678
76.4873
57.3264
205.451
83.2084
217.367
34.1282
216.475
200.949
21.8554
10.8336
12.308
36.2584
11.3359
20.2533
38.0248
621.572
28.3003
13.5681
14.1868
42.1412
28.8399
14.022
41.4667
166.019
21.0381
44.1732
169.858
43.6514
37.1131
12.5437
42.7229
155.145
162.999
12.7409
35.8537
33.2812
14.1968
8.46613
10.1044
13.5421
34.5514
9.89078
9.84608
5.21911
10.0352
39.6826
39.9904
5.2338
9.7908
0.0123186
0.0119456
0.00459188
0.00452414
0.0104283
0.00409368
0.00422304
0.606036
0.169769
0.163079
0.607613
0.173454
0.592956
0.617523
0.632629
0.16878
0.18727
0.644463
0.656068
0.181455
0.631925
0.462116
0.105907
0.0868904
0.337856
0.105758
0.462952
0.337607
148.811
27.198
18.0548
0.480101
0.0925543
0.1184
0.424316
0.50811
0.110529
0.356678
32.8225
9.5187
32.401
9.67805
0.335096
0.0822839
0.0657393
0.123395
0.0832913
0.32929
0.125609
0.383439
0.374001
0.097511
0.0978462
0.363817
0.392689
0.0962865
7.87895
5.46927
8.11171
5.31721
0.373362
0.0906818
0.0933919
0.34707
0.353733
0.0921222
0.367162
0.345231
0.0706996
0.0889875
0.135864
0.353185
0.0878057
0.132246
7.35899
4.82217
7.20327
4.94814
0.16028
0.0388397
0.0358427
0.0569072
0.0437833
0.111017
0.061405
0.280297
0.292018
0.0656154
0.0625421
0.288207
0.286209
0.0617328
3.51787
2.67248
3.58106
2.62641
0.253042
0.0571646
0.0611551
0.35029
0.271464
0.0560706
0.310143
0.183675
0.0397062
0.0497388
0.0687123
0.188085
0.049077
0.067689
3.11904
2.36638
3.04704
2.38222
1.36561
1.25353
0.238684
0.389201
0.160288
0.0212487
0.0340524
0.032207
0.121917
0.020121
0.152311
0.0330301
0.173068
0.031084
0.00318624
0.00559914
0.339253
0.0172873
0.134594
0.148834
0.142806
0.138897
0.00173742
0.0730237
0.00140228
0.00117712
0.00128807
0.0280383
0.450977
0.191239
1.01289
0.206205
0.99589
0.451097
0.18729
303.501
167.804
23.9085
272.074
85.5569
1754.42
72.1518
0.0159721
0.00265532
0.000846936
0.00408307
0.00096305
0.000745263
0.00070734
0.00395932
0.0012739
0.00397571
0.0034884
0.00115415
0.00325153
0.00120846
0.325597
5.35293
0.234001
2.99477
0.282626
0.183358
0.725015
0.757604
0.00133479
0.0045371
0.00124492
0.00543862
0.00394247
0.00407408
0.00116415
5.52893
0.22597
12.5895
0.373424
0.299465
0.55767
0.404786
7.86479
2.28781
0.919902
0.356403
0.141167
0.157492
0.0217268
0.00375887
0.0070741
0.00115385
0.00159838
0.00184401
0.00106612
0.000574453
0.000587215
0.000570374
0.000573261
0.000579122
0.000574074
0.000577745
0.000576639
0.000564585
0.000566877
0.000572143
0.000574817
0.000575569
0.000571833
0.000561421
0.000565127
0.000559671
0.000570309
0.000573187
0.00057079
0.000572532
0.0382284
0.0942069
0.0517875
0.0294898
0.0352371
0.0235416
0.0469456
0.632114
1.25534
0.76604
0.226497
2.24758
0.29744
0.443066
1.7696
0.983762
1.69033
5.10393
4.14907
0.902411
2.08503
0.0493688
0.0633866
0.111786
0.0578226
0.0487105
0.0310462
0.0314414
7.65783
1.46797
2.99167
3.11154
2.7805
4.27699
7.91682
18.2818
33.4233
18.9264
52.286
32.9272
43.234
2.61542
11.2876
7.48126
6.66665
6.61283
0.0828334
0.265376
0.0964718
0.053526
0.107245
0.134752
0.0472852
0.165742
0.299905
0.130739
0.0693005
0.172902
0.176243
0.0877518
0.117948
0.0918453
0.146421
0.0915617
0.0607169
0.0777352
0.0673032
0.326166
0.480007
0.250248
0.201542
0.27025
0.159184
0.134263
3.04519
2.22786
1.88524
4.40401
2.03535
4.28747
3.33488
4.9824
12.3147
9.99742
26.9078
14.3067
1.60633
1.46332
2.85647
2.82494
1.37483
1.65221
2.52011
0.252181
0.190309
0.676422
0.899746
0.197779
0.235858
0.977266
0.173634
0.234493
0.26917
0.160143
0.0994161
0.107904
0.137074
0.14686
0.157266
0.452674
0.389602
0.154355
0.152218
0.425239
0.142398
0.425749
0.150269
0.478194
0.152485
0.137915
0.434345
5.09856
39.5867
13.528
12.4652
13.4758
12.4662
5.108
0.429344
0.989781
0.537581
0.242104
1.0707
0.397336
0.257548
4.61101
33.692
13.178
10.616
13.1409
10.5894
4.62
27.2069
10.8694
2.66575
9.77601
8.2079
7.37596
74.1806
15.4725
25.0127
11.8654
32.2432
48.6257
10.6237
6.29999
7.86087
63.631
25.813
39.9545
39.1838
99.6485
9.84524
8.81547
27.6386
25.5215
22.8637
23.5422
233.457
61.0206
60.6653
0.708258
0.31874
0.339977
0.811593
0.331101
0.649342
0.882869
0.979564
0.360173
0.417172
0.948007
0.36423
0.792258
1.1865
6.16212
6.83029
34.442
28.0965
7.34355
6.97878
14.6884
1.04439
1.95488
0.406885
0.450723
0.376272
1.18333
1.33662
14.2391
13.5447
279.862
26.6988
27.1087
19.1604
21.5052
396.836
36.7376
47.3654
0.209908
0.442964
0.201137
0.486528
0.185405
0.570219
0.216887
0.288571
0.383039
1.66579
0.807933
1.03677
0.426967
0.251972
7.31135
6.44337
81.3172
20.1218
18.2634
20.7601
5.76815
0.930557
0.449806
3.14737
0.530242
1.14558
0.43996
1.40271
0.419516
1.27678
0.265258
0.641056
0.42732
1.29787
0.262669
4.14456
45.2172
12.6515
8.34726
12.6209
8.41557
4.1248
0.412655
0.253002
0.645899
1.30411
1.30499
0.256856
0.403121
0.82132
2.14137
1.19357
0.568333
2.14283
0.8227
0.567126
5.17332
50.7705
15.6583
9.48228
15.7004
9.48113
5.16397
0.778395
0.534729
1.1809
2.12558
2.13197
0.540992
0.769051
0.250558
1.40978
0.280245
0.730094
0.322805
0.866038
0.237392
0.204477
0.186689
0.782228
0.552366
0.219093
0.185481
0.666044
0.197568
0.52323
0.514775
0.185958
0.185055
0.571478
0.198114
11.6219
98.1283
31.3396
115.809
24.5148
20.9967
52.7864
0.0619624
0.0313168
0.0618419
0.0281938
0.032788
0.0560816
0.031773
0.153264
0.205867
0.126437
0.127078
0.153316
0.103113
0.101785
0.117528
0.138482
0.191584
0.118414
0.142947
0.0962501
0.0953088
0.807579
2.21041
0.566722
1.19735
0.828624
2.17476
0.556751
4.91072
44.1235
14.1787
8.57558
14.2139
8.63857
4.88824
0.808321
0.524254
1.20374
1.72661
2.18441
0.555125
0.752484
4.46246
38.3986
13.1773
7.60608
13.0702
7.47546
4.51775
0.697039
0.508411
1.11938
1.87305
1.87021
0.503864
0.706759
0.18333
0.16594
0.34195
0.300733
0.16288
0.185134
0.28471
0.29446
1.33432
0.687237
0.395067
0.286247
0.757023
0.406989
0.304015
1.20866
0.807775
0.459289
0.323533
0.712533
0.425145
8.65589
2.94322
4.76925
1.97516
8.68696
2.94431
4.75869
7.84313
4.49709
1.79341
2.64604
2.65068
4.40961
7.89588
12.2665
4.04591
2.58424
8.55951
3.95581
12.8574
8.06309
11.5069
7.07073
2.42432
3.74391
3.7686
7.14293
11.4442
0.13867
0.101493
0.183929
0.133248
0.0974736
0.0767352
0.0792224
0.0936388
0.138245
0.19086
0.135676
0.0720078
0.0931467
0.0719557
4.47105
36.9647
13.2884
7.58738
12.9423
7.30806
4.6256
5.12263
47.4934
19.2595
7.83127
19.1656
7.7941
5.14452
2.47944
6.85737
13.8731
3.44567
2.31928
7.3458
3.73176
3.77524
35.5812
14.7204
6.15852
3.95354
13.9635
5.7963
17.1222
4.29531
11.4343
2.92142
14.532
4.49125
8.85251
18.3639
10.0355
3.11518
4.77225
4.70357
9.85729
18.583
45.8382
7.44953
4.86341
19.2262
7.31984
46.8288
18.7432
43.1783
16.6941
4.48996
6.78867
6.86238
17.3706
41.9342
5.47859
48.4491
19.451
8.04535
20.0186
8.15628
5.40479
5.30254
45.0502
19.0826
7.82926
18.9699
7.80279
5.32287
29.6959
28.4028
3.80261
3.22523
9.73031
21.3235
2.73153
4.84864
15.4826
0.607863
0.286581
0.946568
0.338601
0.671014
0.275458
0.845425
2.77067
9.90403
1.94768
6.27629
2.01884
2.64829
10.4323
113.385
0.586571
0.749754
0.2639
0.331265
0.270585
0.555921
0.799834
49.2699
7.76429
20.1539
5.21617
48.9426
7.77488
20.4084
49.5987
23.1348
5.33592
7.6716
7.70053
22.2375
50.356
10.2819
7.44461
46.8942
10.0259
45.9527
41.4404
6.98792
9.57277
9.56212
42.0413
5.91822
50.3235
23.9512
8.2294
23.9825
8.25135
5.90809
5.80048
47.8331
23.0966
7.97726
23.1201
7.96267
5.81349
0.924642
0.367162
0.689283
0.420168
0.426102
0.713667
0.892895
49.6539
20.6399
188.082
175.794
17.8933
61.2235
17.5505
11.4547
11.5591
16.6486
10.7637
50.0798
8.17189
10.8904
51.9198
9.53039
15.4351
15.2643
17.3573
11.2094
16.3534
30.4069
33.6329
35.5851
9.69685
15.1331
15.1135
5.86881
46.4526
22.6932
8.02864
22.7
8.00226
5.88505
1.91724
5.89496
4.70052
1.60479
5.87052
1.91171
1.60569
4.85104
23.3599
19.5396
5.88327
19.6581
5.91989
4.80018
1.84203
1.53285
4.4485
5.51528
5.57719
1.5382
1.82429
12.7445
3.71003
3.60742
15.1716
14.2092
3.5347
13.7311
6.36992
3.14988
5.28082
2.69595
4.17034
8.07278
2.97515
12.5169
3.54193
3.48717
13.2267
12.5731
3.52828
13.1618
23.6456
24.5874
24.1458
18.3169
14.2869
18.6414
28.5452
28.6781
28.0224
26.4391
27.2223
26.9106
229.901
89.1958
14.5954
18.9219
18.8824
45.3092
24.4437
20.7783
185.978
79.9137
13.2547
23.1697
18.3394
23.036
25.0373
25.0398
3.89447
3.9535
24.7401
25.414
3.99184
17.2644
21.4566
21.8243
22.3017
3.61321
22.4262
3.6821
22.1953
22.5567
3.76412
26.4861
4.63182
27.2938
4.42415
27.0059
26.8646
4.49304
1.87967
5.85724
1.58009
4.69255
1.88415
5.851
1.57474
4.97011
23.3594
19.7025
6.00708
19.8177
6.0391
4.94261
1.89015
1.58345
4.66898
5.77539
5.80677
1.5888
1.88299
1.80953
5.30063
4.41716
1.53487
5.36965
1.7925
1.5508
4.81975
21.9837
18.7852
5.82859
18.7074
5.80667
4.83648
1.91548
1.63461
4.71295
5.76689
5.75158
1.63439
1.91824
3.2022
0.599181
2.20672
0.721885
0.747356
2.21799
3.22142
3.44245
3.78873
0.837888
0.851109
6.06717
2.75176
0.968763
3.33597
1.25949
2.89618
0.946268
2.43681
9.16656
1.10385
21.5579
3.39766
3.3692
21.5256
21.6764
3.4696
21.4002
23.254
18.5229
23.1978
24.048
24.59
3.82373
3.90458
24.2115
24.3377
3.85297
22.0206
3.56628
3.66624
20.9972
21.7023
3.64588
21.4273
21.9235
3.48722
22.1677
3.6664
21.965
22.1167
3.63755
18.1241
22.1643
22.3756
2.95247
3.06183
0.761208
0.776289
3.0169
2.99717
0.764801
19.212
16.3674
19.5006
2.18881
2.01798
1.35459
1.50204
2.20334
2.01564
1.34018
17.6605
21.2076
21.0874
2.54316
0.850827
2.70381
0.899738
2.6056
2.63577
0.889577
2.94728
0.891794
2.95074
0.919517
2.90927
2.99027
0.884568
1.74054
5.20676
1.50333
4.26898
1.75631
5.17881
1.49085
4.32876
19.3331
16.6127
5.18751
16.5092
5.17133
4.35012
1.81274
1.59829
4.52921
6.62222
5.50796
1.55058
1.88402
1.98456
6.3969
4.98586
1.6557
6.44163
1.96899
1.66818
4.26775
18.4569
15.8975
5.00326
15.9588
5.02421
4.25079
1.98355
1.66096
4.97664
6.40794
6.43857
1.6666
1.97615
18.9283
15.7817
18.7897
17.0106
31.6297
21.2288
33.5926
17.3151
33.8256
17.3934
33.8944
34.0035
1.10489
0.250525
0.256023
0.219297
0.897943
0.901244
0.214519
0.251135
0.868145
1.06267
0.215542
0.252768
0.217281
0.874401
1.93496
6.29941
1.63498
4.84769
1.9435
6.24989
1.62791
3.99965
17.224
14.7682
4.6604
14.8604
4.70021
3.96488
1.87566
1.56619
4.73621
6.06046
6.09476
1.57816
1.86082
2.12625
7.24178
5.84643
1.75052
7.28316
2.10515
1.7683
3.94792
16.754
14.4451
4.62483
14.4187
4.612
3.95869
2.12653
1.7686
5.86697
7.32442
7.31975
1.76738
2.1289
0.0070532
0.0393189
0.00677513
0.0363068
0.0347539
0.0308424
0.00625855
0.683963
2.50656
0.892765
0.609122
1.59636
2.34546
0.492041
5.12308
12.7679
12.8252
11.527
2.91462
11.2306
2.94388
14.6222
2.82652
4.20867
13.3513
14.6297
13.0019
2.82634
0.00549736
0.0200874
0.0236372
0.0209856
0.00451585
0.0177818
0.00505726
33.2326
16.8618
32.9258
16.4109
31.8767
32.0481
30.0183
30.3917
0.237763
1.06479
0.238414
0.205315
0.879608
0.880892
0.204078
0.251446
1.17739
0.251459
0.215175
0.956496
0.954766
0.214638
1.22075
0.244079
0.249279
0.211669
0.995413
0.989272
0.207326
0.249759
1.19032
0.251177
0.213808
0.956237
0.212859
0.959661
2.0156
7.08018
1.70156
5.58458
2.04781
6.94515
1.6771
3.61225
15.0494
13.0291
4.21877
13.0272
4.21152
3.61702
2.00979
1.74404
5.70999
7.56295
7.01752
1.68847
2.05153
2.16662
9.14773
6.52688
1.83248
9.14464
2.15718
1.83886
3.53453
13.9692
12.3578
4.14567
12.2712
4.12481
3.55356
2.15394
1.83193
6.499
9.18269
9.14009
1.82423
2.16398
0.0148981
0.00375959
0.0142343
0.0150989
0.00364498
0.0134592
0.00352203
0.305051
1.42838
0.23983
2.27349
0.270583
0.277493
2.18232
8.82065
3.42793
3.55697
3.05797
3.90803
2.95263
3.85695
4.3274
6.71958
4.66484
3.47559
3.63118
3.61907
3.58411
0.00361186
0.014328
0.0143874
0.0147873
0.00338711
0.0138533
0.00340229
28.8321
34.1851
0.2328
1.25495
0.229393
0.194932
0.99175
1.01333
0.197492
0.215659
1.30219
0.220823
0.190884
1.03505
1.07293
0.187065
0.212753
1.1566
0.211035
0.183849
0.979255
0.185192
0.963372
2.13393
9.09359
1.8152
6.6708
2.13401
9.19059
1.82307
3.31439
12.8374
11.0359
3.83131
11.167
3.87242
3.27959
2.17802
1.91741
8.64192
10.2734
10.3413
1.92486
2.16712
1.89992
9.72863
1.76
9.20126
1.89385
9.70386
1.76364
2.65736
9.69859
9.41119
2.94706
9.41945
2.96918
2.64249
1.86098
1.66054
8.10843
9.48532
9.52026
1.671
1.85666
6.58723
0.901723
1.11822
1.87663
5.54407
1.6488
6.60783
2.03001
7.27332
1.94643
3.07959
3.47346
3.19628
3.28107
0.332693
0.0587402
0.396552
0.0766008
0.329955
0.402926
0.0585632
0.240567
0.0430323
0.219968
0.0382499
0.216418
0.244682
0.0425592
31.1384
145.765
6.82835
16.7625
8.10943
21.0503
37.4329
37.6057
47.4267
44.8255
15.8805
16.0451
44.7588
0.28897
0.170523
0.131552
0.165197
0.136587
0.0902223
0.0886015
8.36953
3.41198
18.5466
5.92144
3.23922
9.29007
16.2599
29.3955
29.3127
2.66664
1.15944
0.440074
0.862637
1.15167
2.67153
0.791342
3.15457
1.05726
1.75967
0.429419
1.29386
4.45335
0.758767
1.32455
0.639372
2.75831
1.69094
0.68587
4.15701
1.20844
1.43434
1.06753
0.529096
2.03799
3.40836
0.606934
1.01171
28.4452
70.8981
49.5238
78.5063
183.908
19.7983
0.966845
4.62866
0.783653
1.91098
1.19964
3.83648
0.646806
9.14404
76.8214
41.7166
93.3591
22.2857
21.3581
26.5821
0.679708
1.12121
1.67351
0.551486
0.605017
2.14036
0.535628
0.165431
0.0583467
0.130562
0.0527211
0.053969
0.0907034
0.0456873
2.42324
1.29326
0.484776
0.926141
1.11996
2.93589
0.850368
53.3626
15.1173
15.3169
52.436
2.33743
0.608747
0.42596
0.95775
1.09073
0.736647
2.02127
49.1668
16.0056
15.9863
49.3452
2.52158
1.49608
0.665675
0.979271
1.4433
2.63931
0.909191
2.01006
0.831393
1.19985
0.625364
1.23199
1.97227
0.852111
0.623567
1.01568
2.96622
2.11251
0.793426
0.760162
1.28982
0.456783
0.909052
1.69065
0.441625
0.538331
1.1942
0.407096
2.20482
1.47249
0.585668
0.892864
1.29433
2.59736
0.788217
42.5922
14.1981
14.333
42.1483
2.13511
0.742223
0.568215
1.15009
1.27702
0.764434
1.89241
22.2839
11.9373
11.6638
22.9704
1.4777
0.970212
0.503016
0.627914
0.985756
1.4544
0.64601
1.46289
0.713281
1.07
0.507453
0.972651
1.65244
0.65574
176.133
45.0881
197.915
180.099
1.39665
0.936404
0.446523
0.592831
0.93273
1.41006
0.581514
20.9168
11.6908
11.2035
21.9901
1.33918
0.535528
0.421993
0.890531
0.901293
0.550672
1.31632
19.9541
11.1446
11.0846
20.0798
1.33481
0.974805
0.478435
0.59697
0.971349
1.34295
0.587039
1.31552
0.53591
0.913628
0.433661
0.935645
1.2968
0.541883
39.8706
167.767
162.908
38.7805
20.4753
40.3735
548.406
48.255
24.6367
12.6797
9.1282
44.955
25.1279
13.7646
196.491
56.807
60.9675
143.715
43.1429
41.0836
12.0691
35.6489
160.972
39.1553
0.0474308
0.120802
0.114379
0.0448507
0.0490792
0.104537
0.0475122
0.107501
0.0418233
0.0828627
0.0414663
0.0929204
0.0430279
0.0419087
1.34187
1.02081
0.511519
0.631983
1.01086
1.37653
0.616631
19.9471
11.3667
11.4676
19.7913
1.36883
0.61996
0.521535
0.986798
1.03242
0.629992
1.30194
17.7453
10.9235
10.8886
17.7997
1.12894
0.861952
0.416818
0.496291
0.859302
1.13127
0.503896
1.17583
0.5107
0.898731
0.417477
0.891671
1.18991
0.506872
0.0174072
0.111197
0.151419
0.0149497
0.0146543
0.113592
0.013272
0.0722219
0.117375
0.0134696
0.0139448
0.0896143
0.0122347
0.0123536
24.6369
38.0533
35.4295
16.722
25.3987
25.9731
29.8349
45.7983
33.3188
40.5128
23.9972
8.68959
12.3633
22.6542
43.0035
11.876
25.4139
9.03014
8.96337
15.7994
16.0517
9.22153
24.7554
147.999
54.2074
51.1724
83.7342
60.1879
34.9994
492.388
126.638
24.4331
10.0004
5.84311
4.27827
3.90588
9.64376
5.88349
4.3381
39.0994
24.1464
53.4201
8.50661
36.275
82.4361
9.64514
34.7823
8.9314
9.03049
4.9603
9.04654
34.9597
8.88568
1.56491
2.13782
0.595429
0.754481
0.601572
1.53424
2.19846
1.15687
0.885625
0.391771
0.481955
0.88168
1.16993
0.475453
17.7826
11.1001
11.1413
17.693
1.15121
0.481354
0.400256
0.871674
0.881606
0.483896
1.133
1.58801
0.750209
0.60447
2.28218
1.60816
0.593046
2.24809
1.38193
0.625888
1.86762
0.724448
1.41371
0.60715
1.81934
16.2637
10.6389
10.6141
16.3299
1.1056
0.932432
0.4725
0.552601
0.949081
1.12527
0.535859
1.11967
0.525461
0.898826
0.44873
0.91773
1.10277
0.51666
1.40102
0.739558
0.644656
1.82118
1.40796
0.621174
1.83166
11.8395
64.8681
14.6373
68.9812
15.7063
16.1955
25.7929
25.852
26.9345
21.8053
5.66401
7.23521
20.0909
28.587
6.95147
18.7455
30.0428
21.6496
19.5486
4.64528
16.119
5.78706
18.1264
13.0428
5.70204
30.8353
37.208
29.0063
31.9067
38.8363
35.0232
30.5985
32.9188
32.5233
25.4969
25.8163
27.0178
24.1893
6.61804
6.82162
28.2442
29.8473
6.79749
22.7755
9.54707
6.54207
4.71788
4.63055
6.64034
9.55606
4.64604
31.6182
9.60611
46.7766
7.6533
33.3399
42.0312
7.26409
11.7471
55.0132
8.74788
6.02472
39.3834
21.8128
4.28952
6.41675
3.99164
9.85671
2.98147
5.97634
11.2334
3.09216
1.42249
1.82384
0.723535
0.820011
0.70769
1.4524
1.7863
1.13362
0.970449
0.519288
0.591245
0.989161
1.16268
0.582945
16.0311
10.6633
10.6243
16.1042
1.19419
0.625621
0.546917
0.99702
1.01126
0.615673
1.18128
1.40046
0.781396
0.684692
1.84952
1.44276
0.66703
1.77206
1.05983
0.440165
1.35897
0.497217
1.06991
0.421694
1.35003
10.2313
45.3676
7.8388
7.89124
10.1584
1.0185
0.433201
0.340143
1.27602
0.990132
0.363517
1.30884
12.1879
3.72366
9.09934
4.36886
9.33478
4.4251
11.8662
17.0005
24.3173
16.2469
15.4225
4.19206
12.8787
5.31871
16.3935
12.0339
5.12218
69.9697
11.9797
15.884
12.4764
64.6288
17.4797
23.7118
5.35379
7.42536
16.1233
25.9689
5.87557
24.6039
7.024
30.7577
8.95231
32.4557
24.3704
7.26833
26.3125
4.1839
4.00216
25.9555
26.5966
3.99889
25.5949
25.8371
25.2302
3.69293
3.89125
25.2843
25.6894
3.78198
22.0873
4.14523
3.90568
19.519
20.9396
3.84979
20.7922
27.9305
4.25313
27.7439
4.34852
27.5015
28.1514
4.20313
4.48301
3.62925
3.25288
4.78438
4.94511
3.63872
4.43554
4.77917
3.4594
8.62848
3.37563
5.06002
7.3718
3.35431
0.880174
1.12037
0.236717
0.303057
0.247353
0.866582
1.13886
10.3081
45.1448
7.95975
8.00152
10.251
0.891624
0.318861
0.269879
1.19422
0.916676
0.262031
1.15506
0.770269
0.193787
0.980518
0.23448
0.771347
0.1923
0.976089
9.73818
42.4328
7.64863
7.61758
9.78255
40.4481
39.2347
45.7632
45.8875
0.75403
0.227952
0.169296
0.896708
0.707194
0.187095
0.953222
16.648
21.1036
4.79895
5.65636
14.1659
18.6778
4.54286
12.1801
3.12965
4.54431
13.5327
15.7358
3.59549
10.7987
6.61228
1.73498
9.03894
1.8731
7.74132
7.46871
1.6399
2.25032
1.70119
1.52663
2.12538
2.22612
1.51108
2.1353
2.75701
1.01368
2.88727
0.961108
2.84824
2.79156
1.00921
0.626944
0.788494
0.130123
0.159869
0.132943
0.629974
0.784988
8.5678
37.3601
6.75341
6.7367
8.58296
24.0396
161.996
37.6706
50.0151
20.7343
40.4873
20.7321
40.4133
0.622165
0.161332
0.137991
0.797682
0.632813
0.133618
0.780967
0.558715
0.104013
0.698282
0.114503
0.568407
0.0970981
0.686051
8.19011
35.5528
6.45308
6.48173
8.15521
16.1442
18.3858
15.8661
18.7277
16.631
19.7945
16.6617
19.6371
0.53532
0.0976162
0.0701453
0.618015
0.508229
0.0830265
0.657865
0.471164
0.529423
0.0555725
0.0709133
0.0612056
0.440587
0.566799
7.66012
33.13
6.0149
6.06381
7.59681
15.2756
17.8876
15.4831
17.5051
14.7296
15.191
14.5191
15.4459
0.490451
0.0769278
0.0701149
0.604733
0.498871
0.0659469
0.592232
0.384938
0.0391982
0.457403
0.0425843
0.388156
0.0374561
0.453633
7.49955
32.1292
5.95992
5.9438
7.52241
14.189
14.2321
14.0489
14.4021
14.1595
14.5295
14.2861
14.3568
0.3661
0.0354382
0.0272412
0.404264
0.34364
0.0311754
0.429325
0.278089
0.307355
0.0164384
0.0199319
0.0179631
0.265179
0.32268
6.83056
29.0109
5.43852
5.42431
6.85225
13.3636
13.8388
13.6879
13.5039
12.771
12.9528
12.8293
12.8883
0.293482
0.0212144
0.0158895
0.325294
0.279013
0.0189757
0.342619
0.213953
0.015673
0.251884
0.0168963
0.221784
0.015357
0.241921
6.70473
27.323
5.34909
5.32308
6.73757
12.5762
12.4754
12.4894
12.5745
12.6279
12.6831
12.6782
12.6404
0.211083
0.0165835
0.0151739
0.222397
0.196719
0.0150474
0.238809
0.137014
0.12834
0.00762189
0.00953224
0.00861943
0.115115
0.153873
6.27531
25.3706
4.93511
4.98941
6.2036
12.2539
12.298
12.3289
12.2289
11.7019
11.4746
11.5415
11.6447
0.15519
0.0114021
0.0120197
0.192816
0.17096
0.0102471
0.174954
4.54984
11.3216
3.50595
22.5213
3.54169
22.671
4.48749
10.3335
10.1647
10.3052
10.2036
11.4921
10.6603
10.8368
11.5062
0.239148
0.271965
0.0601182
0.0653253
0.238649
0.273041
0.0602685
4.39492
10.8381
3.39146
21.4543
3.45198
21.7543
4.31047
10.3352
10.1333
10.2836
10.1899
10.7992
10.3714
10.463
10.7416
3.24046
8.67874
2.79668
10.1634
2.78204
10.1137
3.25629
9.72897
10.2695
10.1072
9.79069
9.75234
9.85845
9.79439
9.81778
0.152171
0.0327125
0.0313009
0.16391
0.164876
0.0305806
0.152416
0.161417
0.159028
0.0295143
0.0334969
0.170809
0.153006
0.0319141
0.14958
0.0319087
0.161669
0.027696
0.144933
0.163642
0.0295125
0.165406
0.0341412
0.0352139
0.177152
0.176311
0.0332961
0.166173
0.233919
0.266951
0.0634363
0.0588752
0.265123
0.235018
0.058801
0.225984
0.0612792
0.0599791
0.320964
0.254102
0.0560118
0.27701
0.227269
0.244077
0.0508597
0.0518829
0.22513
0.247504
0.0507989
0.2019
0.0449766
0.185645
0.048077
0.201411
0.185321
0.0477871
0.228544
0.0521513
0.26688
0.0519425
0.252236
0.240911
0.0502026
3.02543
8.07416
2.65406
9.51455
2.59607
9.40288
3.09854
9.43074
9.76386
9.69478
9.46563
9.19109
9.83787
9.70861
9.21156
2.32468
6.88975
2.13733
7.14383
2.10807
7.06557
2.356
7.44659
7.80915
7.35399
7.88763
7.84671
8.56011
8.02582
8.3198
0.00663737
0.00105025
0.00098461
0.0089729
0.00713022
0.000975328
0.00801708
0.00987063
0.00110343
0.0158886
0.0013443
0.0152075
0.0106944
0.00107625
0.0102556
0.00108932
0.0104512
0.00107869
0.0103211
0.0103079
0.00108697
0.00805038
0.0210854
0.000973637
0.00170906
0.0259537
0.00640553
0.00102693
0.00914522
0.00106882
0.00749745
0.00100231
0.00730624
0.00923024
0.00106776
0.00903561
0.00102758
0.0290152
0.00170597
0.0293891
0.00914946
0.00103385
0.106369
0.0246789
0.0271379
0.122561
0.106968
0.0243115
0.121885
9.00478
10.1536
9.01251
10.5542
0.0928001
0.0823145
0.0197961
0.0205219
0.0854925
0.0877534
0.0213575
68.3026
21.8336
0.0940708
0.0221542
0.0843188
0.0202008
0.0866353
0.0937623
0.021942
0.104056
0.0261957
0.0225689
0.109085
0.095349
0.0235237
0.119097
0.191019
0.0498243
0.0440511
0.201968
0.176849
0.0462578
0.222035
0.217779
0.238761
0.0505049
0.0504189
0.234943
0.221029
0.0500925
0.211074
0.0521609
0.0484194
0.271349
0.226472
0.0483554
0.249879
0.196464
0.0453745
0.183843
0.0479433
0.198881
0.181621
0.0477452
0.217745
0.0494146
0.22011
0.0452407
0.204458
0.240764
0.0462684
0.227129
0.248897
0.0386674
0.0470979
0.266632
0.221767
0.044438
0.237504
0.0502558
0.281489
0.0410374
0.236855
0.27083
0.0461197
0.21045
0.0443671
0.225673
0.0483308
0.243633
0.199236
0.0450821
2.37664
7.44449
1.87526
6.9996
2.10412
8.43187
2.10058
6.91916
7.71531
7.21723
7.34998
7.09655
7.53788
7.23854
7.42751
1.62337
5.53557
1.55308
5.4892
1.52269
5.42248
1.65673
4.94952
6.02246
4.96616
6.07093
5.05435
6.37819
5.17009
6.25393
0.0111614
0.00282614
0.00245617
0.0178799
0.0105947
0.0025879
0.0196304
0.0136029
0.0127049
0.0037265
0.00336832
0.0145558
0.012038
0.00358311
0.0109852
0.00295053
0.002745
0.0196969
0.00990903
0.00267498
0.0204587
0.0141416
0.00322011
0.0147561
0.00321864
0.0154459
0.013326
0.00342542
0.0143259
0.00187939
0.00225536
0.0142124
0.0125932
0.0163106
0.00201338
7.45348
3.76074
7.09905
3.86324
0.0260251
0.0241161
0.00246049
0.00312619
0.02153
0.0299759
0.00289674
0.0222332
0.00243712
0.0162977
0.00229444
0.0187917
0.0188684
0.00266221
0.0159996
0.00239526
0.0201232
0.00224325
0.0174765
0.0183074
0.00213685
8.79352
7.91042
0.0809264
0.0189423
0.0193627
0.0797869
0.0790222
0.0192066
0.0808283
7.95232
8.02985
8.00471
7.95156
7.06528
7.24159
7.35587
6.88721
0.0779339
0.0176518
0.0149892
0.0679738
0.073848
0.0177286
0.0763464
7.5412
7.16652
7.32788
7.46121
0.197851
0.0456591
0.042419
0.217053
0.18833
0.0421323
0.231126
0.218986
0.207479
0.0328871
0.0430348
0.18877
0.235785
0.0414984
7.38285
11.1704
69.5424
0.205751
0.0413578
0.0298148
0.167753
0.171928
0.0392373
0.236986
0.206085
0.0431281
0.20252
0.0445387
0.217972
0.193753
0.0434728
0.187184
0.0360251
0.0329534
0.208421
0.195562
0.201159
0.030677
35.2114
28.9445
2.80859
2.34867
2.23834
2.99215
0.0927863
0.014943
0.0109316
0.00834966
0.0526821
0.0178338
0.0153343
0.1602
0.0298091
0.102683
0.01564
0.0910193
0.168035
0.0252039
0.108014
0.0200728
0.0236452
0.00966902
0.0208473
0.118419
0.0184698
25.9558
345.878
90.9126
95.9465
53.1107
44.7778
5.28729
1.94475
6.64197
1.12035
3.47403
10.8385
1.5896
48.4784
125.62
151.019
24.7295
287.163
36.1142
31.9487
4.18539
4.4474
2.08906
1.20187
3.23083
6.18216
1.55641
2.90002
0.807849
1.56823
0.878011
2.22275
2.08808
1.11076
58.1529
85.1558
1.5087
0.789439
3.56138
1.99662
1.1952
0.921718
3.98957
13.4328
259.579
26.9952
19.663
9.71557
37.5787
30.4949
1.17896
2.82979
0.819288
0.951374
0.662865
1.58456
1.92109
16.7634
42.3501
41.1481
121.442
55.631
38.0074
18.1572
15.6147
101.867
38.6763
33.6307
39.6537
35.6133
15.16
60.9392
92.8221
77.9962
258.15
32.3234
326.744
2.14322
0.93853
2.25722
6.46289
0.929047
2.21519
5.94656
1.68797
0.504732
4.42447
1.1632
1.82975
0.530078
3.81098
2.08146
5.44247
2.02211
0.853148
0.909408
4.97087
1.96741
71.3698
72.7429
1.83425
3.87832
0.484099
1.11901
0.501167
1.62217
4.53827
3.30277
7.90536
5.30791
3.88864
2.58205
1.52311
1.79693
132.133
67.6791
281.998
728.541
0.0607316
0.121341
0.248605
0.154589
0.0603188
0.0419323
0.0445028
15.1468
73.4425
14.8031
45.8623
19.9107
66.1448
11.4835
318.826
786.671
56.1694
1484.55
40.5617
89.662
103.803
46.6727
21.9157
20.0915
30.7161
75.7003
66.79
77.5554
103.576
2.07508
0.883328
6.50461
2.35704
2.11034
0.861824
6.56384
1.74923
0.492451
4.30646
1.08854
1.7467
0.46356
4.54348
70.5326
69.4916
2.01747
6.44316
2.31759
0.83992
0.833736
6.4999
2.13043
1.71648
4.503
1.2392
0.500254
0.515441
4.4442
1.71753
401.753
807.593
192.778
6.69258
3.19187
3.05964
8.13163
3.36223
8.53492
7.19741
81.3495
160.655
50.2451
49.061
5.66553
4.06389
2.21472
2.43707
2.69517
4.32143
5.29212
63.1697
181.921
30.135
155.992
39.9096
44.1456
387.689
3.04896
1.17126
3.30904
10.4728
1.19307
3.03155
10.3147
2.46546
0.704446
7.36789
1.81254
2.51345
0.676739
7.2521
3.11978
10.3382
3.34092
1.23075
1.22323
10.4177
3.16473
2.51502
7.55511
0.757665
1.86655
0.696705
2.65168
7.3827
0.165124
0.453092
0.330778
0.283046
0.145302
0.102498
0.114046
0.200526
0.356944
0.108555
0.227037
0.121628
0.0863196
0.0797564
150.084
15.0045
45.7806
20.0928
154.237
44.6568
19.7066
30.1654
14.5543
14.8181
46.2996
30.5349
14.4937
54.4735
0.17158
0.0939878
0.360329
0.109686
0.164219
0.0701749
0.0721243
34.7047
62.1343
76.4242
544.178
29.4991
71.1565
140.024
23.5525
74.4396
20.7614
108.287
25.8154
20.1629
100.301
2.48393
1.10008
10.707
3.42256
2.93695
0.979492
12.6114
2.40772
0.720754
7.95853
1.75028
2.50562
0.728485
18.4207
201.945
45.2721
22.2786
177.999
47.4207
23.2071
44.3547
22.4651
0.589719
0.0292795
0.298942
0.10102
0.172647
0.0870015
1.10188
2.07955
0.420296
4.15073
1.37779
0.432947
2.04348
4.1937
35.0171
14.4461
10.193
8.66969
35.4017
14.4087
10.1209
62.9011
7.85187
22.3854
10.2281
19.0757
13.062
12.4259
1.88825
0.349602
1.30958
4.67401
0.450223
2.21225
3.98753
0.357209
0.0211493
0.0603578
0.107632
0.113715
0.0654396
0.342053
1.494
3.11345
0.507806
0.201287
0.216815
3.2587
1.42643
0.341975
0.0100351
0.0254512
0.0988242
0.0933269
0.023935
0.363089
0.465482
0.180338
0.197143
0.635162
0.156893
0.525268
0.565906
0.434707
0.704844
0.0987641
0.191061
0.101553
0.447549
0.670403
39.7516
44.5261
67.2457
71.6015
0.684853
0.187701
0.238566
0.705556
0.198706
0.595677
0.771304
0.235885
0.00762235
0.0157003
0.0408823
0.0583574
0.0207635
0.137766
0.43492
0.797758
0.176746
0.0927589
0.10103
0.992517
0.324982
31.2481
40.1106
38.434
31.1124
23.7208
30.2807
36.2669
37.1741
35.3024
42.0317
30.3644
9.06353
9.53798
33.7742
35.6583
11.0714
67.0554
12.7746
37.4387
11.0102
40.8697
69.8612
14.1777
36.6944
34.9216
34.4018
9.71529
13.3375
15.1131
25.0469
17.6595
31.0632
27.5425
6.91573
8.69859
25.6156
32.4849
8.28463
30.778
5.64876
5.65365
20.034
23.481
6.80499
26.2692
36.17
33.1245
32.2495
27.5308
5.57705
30.2885
5.26169
29.5427
5.0207
27.5019
10.32
6.44517
1.7968
1.76979
8.21698
7.74248
2.10606
12.2685
2.86861
11.5442
2.19783
9.42659
15.0987
2.63277
26.4314
4.81667
3.77871
25.1585
24.4887
4.5199
27.1887
1.23979
4.54513
1.46408
156.59
6.79163
6.28101
0.431256
0.196321
0.880121
0.412775
0.186202
0.77349
0.452468
0.0187226
0.00899856
0.143601
1.77027
0.00870722
0.0196118
1.91611
0.00498165
0.00453079
0.00166623
0.00137941
0.00166781
0.00490764
0.0045267
0.0203309
2.10102
0.154556
0.00861831
0.00881206
2.00196
0.019272
9.86532
13.2383
1.7659
1.89703
1.6347
8.89809
14.4016
6.45737
5.47975
1.01797
1.40281
5.4329
6.44413
1.15979
4.14937
0.872605
0.756028
3.82391
3.8318
0.821155
4.14166
20.5894
2.97105
3.22857
24.791
23.119
2.72545
22.7143
3.43686
0.561137
4.08662
0.563909
3.88623
0.537993
3.48617
0.0163474
0.00974638
0.471663
0.955755
0.0128275
0.0123153
0.0132147
0.00666959
1.3957
0.0779189
0.0135897
0.00643549
1.04173
0.0113111
0.272449
0.0528732
0.00512253
0.00573802
0.918411
0.00791783
0.967569
1.02423
1.66908
1.29362
0.74418
0.188344
0.223636
0.708607
0.796852
0.212303
0.696287
0.699956
0.181301
0.194387
0.663666
0.678711
0.2003
0.677345
2.03218
0.274138
0.286939
0.1211
0.476628
0.497169
0.11569
0.380035
2.36271
0.71753
0.351288
0.16803
0.154472
0.626015
0.916079
0.857355
0.678715
0.656326
13.0765
1.52492
1.53427
0.640721
0.545667
0.541842
0.127922
0.142911
0.536302
0.559543
0.139131
0.519333
30.9491
33.2974
0.527177
0.122879
0.131518
0.484852
0.51322
0.134434
0.505088
37.3786
36.8263
0.256763
1.73928
0.244718
0.101377
0.443554
0.106984
0.42176
0.211777
1.55259
0.220834
0.0859527
0.339476
0.360872
0.0810814
4.45317
0.153985
0.15492
0.0437657
0.236712
0.238127
0.0429475
0.198779
1.34316
0.186498
0.0659262
0.30486
0.272715
0.073282
0.000706185
0.00313831
0.00353968
0.00121426
0.000606425
0.000619036
0.000858838
11.7426
1.35348
1.22757
0.000906615
0.000718028
0.00108899
0.000643734
0.000649895
0.000857955
0.00118111
0.0007507
0.0039452
0.00372018
0.00189104
0.000667332
0.00203072
0.000661535
9.65099
1.81169
0.382314
1.34966
0.405219
0.00382633
0.000744898
0.00457513
0.000714923
0.000590399
0.000799136
0.000586503
5.50592
6.00866
71.5961
0.168881
0.0552942
0.0746252
0.107948
0.000781737
0.000662847
0.00100831
0.000626297
0.00062088
0.000812389
0.000955154
9.13924
0.708826
0.368862
1.21191
0.34857
0.000734285
0.00396196
0.00454943
0.000652064
0.000575885
0.00057458
0.00068245
0.416758
0.0685826
0.090553
0.317414
0.429992
0.0880748
0.309653
0.424327
0.39475
0.10593
0.107101
0.417408
0.395694
0.107504
9.50984
5.73054
8.55408
6.09802
0.411669
0.0877058
0.0988768
0.157
0.381438
0.102925
0.216881
0.405915
0.0964756
0.393347
0.0963613
0.381793
0.416202
0.0942139
27.9909
7.82431
28.3523
7.69836
0.129232
3.94853
0.12376
0.0310358
0.194203
0.0335781
0.182163
0.0797711
3.15188
0.08257
0.0161514
0.0686636
0.0721143
0.0154245
1.86011
0.0515721
0.0586362
0.0154123
0.0623401
0.0957356
0.0112333
0.0726621
2.93419
0.066986
0.0130972
0.0633923
0.0600426
0.013808
0.000557656
0.000729488
0.000754549
0.000591526
0.000553828
0.0005544
0.000586828
4.58329
4.09812
0.642306
0.078143
0.0517752
0.093352
0.0540442
0.000688207
0.000609069
0.00072088
0.000582616
0.000585076
0.000673245
0.000742454
0.000568465
0.00138027
0.000828327
0.000617285
0.000563281
0.000641061
0.000561061
0.263561
2.77298
0.314372
0.0210523
0.0169558
0.0189283
0.0171778
0.000780878
0.000551693
0.000744404
0.000576507
0.000550508
0.000581402
0.000550024
0.126889
0.421898
2.01465
0.00502961
0.0046823
0.00523892
0.00392003
0.229097
1.73989
0.322549
0.076246
0.0153229
0.0166863
0.0116832
0.202412
0.0457557
0.0569982
0.0807109
0.21348
0.0552113
0.0765442
0.298407
0.299443
0.0649822
0.0684089
0.295016
0.301964
0.0653635
3.73907
2.74895
3.67855
2.79441
0.196528
0.0426143
0.0522621
0.0722771
0.194647
0.052515
0.0726686
0.306094
0.070093
0.320527
0.0702935
0.308143
0.320739
0.067718
4.17218
3.52921
4.65128
3.13395
0.0452597
1.46598
0.0424406
0.00907943
0.0525643
0.00961987
0.0493639
0.0745226
1.00587
0.0250478
0.00335812
0.0153612
0.014506
0.00356505
0.0244757
0.00437757
0.00485769
0.000952547
0.00216745
0.00218228
0.000948486
0.0725815
0.3502
0.0599292
0.00277204
0.0135903
0.0109264
0.00322251
0.356493
0.0978839
0.274737
0.00317966
0.00387192
0.00345314
0.00362664
0.0259344
0.0970508
0.0282621
0.00190286
0.00269531
0.00186939
0.00284374
0.00540424
0.00326982
0.00323606
0.00107737
0.00196406
0.0010751
0.00198341
0.0216859
0.0590288
0.0192955
0.00166639
0.00237315
0.00171739
0.00224107
0.0562023
0.0266448
0.027298
0.0410176
0.0600314
0.0265451
0.0395168
0.150542
0.237949
0.034235
0.0474489
0.148497
0.241891
0.0344319
1.66086
1.24011
1.6436
1.25134
0.0519321
0.0246632
0.0247206
0.0361497
0.05137
0.0248351
0.0364113
0.157067
0.0375168
0.265115
0.0482522
0.24949
0.168165
0.0358163
2.04368
1.5946
2.08039
1.5728
0.00385723
0.0179683
0.00365189
0.000877002
0.00193695
0.000884071
0.00192089
0.00280515
0.0146974
0.00308202
0.000773309
0.00136975
0.00140607
0.000763906
0.00217123
0.00727317
0.00169895
0.000717202
0.0012459
0.00119737
0.000730157
0.00366438
0.0010981
0.00310147
0.0026061
0.00107052
0.00315134
0.00101767
0.104668
0.825678
0.458016
0.0169811
0.00969774
0.0088293
0.0194531
12.1707
0.286544
57.9471
0.382555
1.10073
0.830771
0.278039
6.71025
0.888897
1.28686
0.210589
1.05669
1.59796
0.547282
0.160512
0.0633052
0.0823778
7.96287
11.0502
0.201474
0.759892
0.446608
0.566049
0.290339
0.273464
0.422729
7.82287
2.17543
1.78784
5.91943
0.265983
0.814511
1.78583
1.2165
0.330177
0.464961
2.0625
0.0485344
0.090642
0.022682
0.0186319
0.0571189
0.0739774
0.0174528
0.0885117
0.0500598
0.0768287
0.0223267
0.0192738
0.0238077
0.0178793
24.4724
3.29748
4.39202
0.0998551
0.24662
0.222348
0.146695
0.0787737
0.0753772
0.160334
0.120014
1.78072
0.18099
0.205298
0.298625
0.132959
1.94697
7.84042
19.9195
3.86974
7.02966
29.9344
0.237916
0.352787
1.36118
0.172223
0.150565
2.10985
0.281534
0.827726
10.7689
14.006
0.863972
0.679545
0.71872
11.1762
0.101302
1.85362
0.111941
0.0762237
0.445507
0.0713591
1.34361
1.17946
0.236537
0.277801
0.272421
1.03055
1.16482
0.239218
0.060939
0.417944
0.492876
0.0589699
0.0607606
1.38996
0.0591918
0.107277
0.256382
0.28763
0.186242
0.076302
0.0823232
0.165684
1.65387
1.21404
1.53833
3.72301
3.91876
67.7073
3.47997
0.373206
1.64987
0.190496
0.471341
0.21946
0.316246
1.33725
20.5316
0.893561
11.5277
10.7168
0.953863
24.1127
0.903577
0.334361
2.16705
3.63475
3.37426
0.328424
0.330209
2.21729
0.67368
0.579839
0.437254
0.362758
0.326802
0.639134
0.744876
0.0949955
0.0433182
0.0422203
0.0397619
0.07874
0.0892904
0.0403478
1.7263
0.288608
1.50763
1.37831
0.303329
0.259784
1.58764
0.657537
0.472967
0.446653
0.290243
0.37998
0.771299
0.371473
0.728698
0.264433
0.261302
0.506689
0.429601
0.323266
0.843848
0.217958
0.0200449
0.169085
0.154181
0.025625
0.194413
0.0195972
0.652944
1.50507
1.91173
1.16663
0.444605
0.440842
0.974044
0.815708
1.54253
1.34868
0.88153
0.488796
0.552518
0.974935
0.874352
1.00814
0.979616
0.703463
0.692052
0.583249
0.708304
1.37259
0.46025
1.26827
3.97905
0.536652
1.31777
4.38918
0.70175
1.30872
0.670366
0.253272
0.32701
1.77427
0.489388
0.767743
1.67146
0.682371
0.340568
0.337736
1.95302
0.634079
0.711809
0.499046
4.17332
0.845268
1.17008
0.340773
2.26558
0.82905
0.404891
2.71076
0.833293
0.998868
0.391783
2.20475
0.375152
0.670632
0.275888
0.862685
1.36425
0.255819
0.330078
10.2188
19.5219
56.9038
54.7025
10.2363
11.4988
0.414905
0.739332
1.86191
0.285694
1.59193
0.47687
0.2551
3.91112
9.80475
13.0779
4.65703
11.9008
4.00004
4.92196
62.3092
108.236
1.961
0.449474
0.324128
0.82995
0.496601
1.83163
1.14071
13.4102
24.5453
4.08773
6.2982
4.5453
9.60804
15.2292
156.011
15.0216
29.8667
17.767
83.5906
42.8017
162.574
25.7638
0.755865
0.382697
0.314571
0.731551
0.329374
1.36058
0.65317
1.327
0.654932
0.315176
2.03494
0.382022
2.68813
0.954676
0.32316
0.379026
0.605295
1.81422
0.884905
0.315506
0.50394
34.1774
7.89864
15.8212
7.31872
38.8885
16.856
4.41146
84.1948
9.1233
12.0136
4.7651
0.335028
0.4424
0.234581
1.37135
0.197648
0.422856
0.909745
2.3968
6.76617
4.13668
25.3917
5.55325
1.99208
6.51846
9.00166
28.1678
8.00666
20.6153
62.2342
0.382628
0.179548
0.618523
0.273874
0.743425
0.331638
0.176226
8.89789
25.8887
50.8258
7.21789
0.475857
0.318771
0.946016
0.22084
0.956534
0.203928
0.491008
9.18307
13.8666
58.8935
5.30954
10.636
1.9687
4.407
2.1093
5.12914
12.2307
8.50029
3.49709
39.608
7.147
3.17474
10.0198
31.6683
0.327567
0.536762
1.01657
1.93988
0.838556
0.317983
0.580057
0.32015
0.751774
1.80679
0.520952
0.807466
0.300805
0.568526
15.5764
7.08955
2.62929
3.89145
9.61189
12.0593
4.73092
36.6005
3.70236
13.1918
8.50987
10.9314
6.81356
76.3521
0.945265
0.689257
0.261206
0.438824
0.370777
0.530622
1.25444
28.6484
24.605
1.38515
0.542851
0.335663
0.85062
0.502591
1.61892
0.744168
0.490959
0.827051
0.400602
1.92241
0.344391
1.50145
0.599214
3.78582
6.78275
11.3293
35.7069
11.3748
3.76873
6.84119
0.466087
0.67319
0.358515
1.26838
0.328699
1.20911
0.526651
6.1867
35.2105
10.433
33.203
6.52886
9.76163
59.5342
3.46258
2.18778
7.86016
1.49207
1.42197
6.41825
3.93755
10.955
2.17446
6.71955
3.71306
11.4015
6.46342
3.59292
8.89592
29.0532
10.4727
20.5124
6.75146
35.8921
10.7013
36.6475
6.69422
10.6815
22.4525
4.65041
5.05555
21.6106
21.6661
4.9929
22.3015
35.2278
7.28966
11.7928
52.6008
74.0714
7.97738
33.4501
10.3536
13.7308
7.71406
9.13031
18.6689
8.19804
18.9905
18.4846
21.1776
34.8852
9.23805
5.48993
6.05188
28.8325
18.8666
19.8308
20.6501
1.2525
3.22198
1.66082
5.61135
1.20035
3.47035
1.76202
0.344679
0.252518
0.583378
0.969664
0.254751
0.909102
0.339823
0.321877
0.746454
0.225316
0.541701
0.298989
0.239531
0.835043
1.60806
6.87067
5.09513
2.37161
4.73228
2.30637
1.65039
3.35257
8.7432
2.27956
13.0415
2.21499
11.1041
3.51733
105.289
0.711352
0.420108
0.32051
1.23015
0.311275
0.759896
1.13833
2.594
5.38387
1.6514
7.08768
1.75536
8.17466
2.4026
10.6379
33.05
12.6313
20.8202
4.75693
5.11395
20.8642
21.0508
5.25718
20.2307
15.3906
17.0769
16.3115
4.75069
3.01862
1.12965
1.67804
2.90327
1.57978
4.89057
12.5897
17.5375
14.6924
26.6605
24.786
94.5282
9.84984
6.20864
156.467
13.2912
27.3518
18.2015
20.1831
20.5357
4.09752
2.43633
8.25335
14.3306
16.1526
2.62738
3.72394
0.885591
0.470726
0.340259
1.35898
0.344143
0.83113
1.47633
5.57394
13.0922
36.1564
3.60583
33.9365
3.51424
5.66032
22.3828
4.85695
5.35118
6.84376
28.1145
13.0764
6.76862
11.6699
7.62785
12.698
7.21045
13.4921
1.75039
1.37259
3.57445
5.65436
1.33366
5.32494
1.80419
0.536762
0.31029
0.355346
0.72569
0.699779
0.306129
0.554692
10.9409
19.1986
17.5689
11.8285
46.5334
23.1303
17.7858
115.276
1.08074
0.470065
0.751017
0.382799
0.762611
1.07209
0.474838
30.8487
9.63893
12.7667
20.93
1.14239
0.834799
0.386159
0.494123
0.80154
1.19469
0.476795
13.441
37.3166
32.5395
14.0839
8.76521
15.2712
30.7136
32.8115
1.40261
0.54893
0.433346
1.0092
0.956595
0.536517
1.47528
1.31537
0.867638
0.416523
0.509889
0.909723
1.24869
0.516389
46.6756
40.8526
18.6571
19.0678
18.5326
19.1321
0.228192
0.193474
0.164058
0.237351
0.236267
0.165504
0.237081
18.3667
13.9959
14.9238
17.986
0.224888
0.229786
0.127475
0.142583
0.223378
0.23183
0.143856
19.13
18.2506
18.7235
18.5859
19.6718
20.2777
19.6879
20.3378
18.9541
18.9681
17.4297
21.6339
49.4149
44.0682
0.293613
0.0927489
0.267618
0.0886199
0.294212
0.265204
0.0972773
0.380167
0.133711
0.531637
0.126952
0.421057
0.508169
0.116198
10.7267
10.3531
10.2272
10.8365
0.30967
0.258346
0.0935122
0.113293
0.259218
0.34297
0.10416
0.679372
0.240413
0.486006
0.280108
0.633522
0.516307
0.288207
10.5956
6.98843
6.60408
11.0866
0.966956
0.379229
0.462159
1.39293
1.3711
0.371696
0.985845
6.95343
4.98828
31.3309
6.69968
5.17195
0.931309
1.22153
0.344763
0.443793
0.863926
1.32081
0.35547
16.5755
18.0597
17.6035
16.9058
8.21211
7.51014
63.3101
7.53789
8.45922
11.3617
10.6275
10.7442
11.1667
0.288162
0.23468
0.116471
0.104223
0.260845
0.242071
0.107613
16.4284
17.1592
17.7185
15.5183
24.3803
20.2827
20.3341
24.4786
0.334956
0.140043
0.122745
0.253529
0.253274
0.132834
0.305624
0.496606
0.157549
0.5326
0.137084
0.471268
0.538802
0.144127
128.523
0.398688
0.262645
0.114023
0.122428
0.261447
0.388245
0.129025
20.3633
20.2385
19.7891
20.7898
0.891268
0.956074
3.47926
3.52059
0.913349
0.932878
3.39312
0.979083
3.57728
1.04916
3.59828
1.00623
3.43633
1.02245
1.06085
3.7064
3.7809
1.01553
3.70848
1.03135
1.06036
1.76177
1.78982
4.6671
6.79598
5.5413
1.64113
1.97333
2.47435
12.1837
12.8003
3.02164
10.2431
2.63748
2.87538
14.8027
15.6974
14.9297
1.26584
0.42266
0.961564
0.500398
1.27903
0.959657
0.497831
5.58556
7.25403
8.48508
10.7886
34.9617
6.97067
10.3117
15.5234
14.6004
14.8178
17.6522
17.7916
19.8201
18.011
19.1178
18.6509
0.945703
3.60996
0.973476
3.51365
0.933911
0.992406
3.51844
1.13588
3.88209
1.00555
3.72929
1.00154
1.08366
4.06833
3.02916
3.20517
16.4101
13.0468
13.5698
3.2274
2.8025
2.88233
14.0593
3.14033
17.0697
2.77256
15.5746
3.16612
1.15088
3.83653
1.07758
4.19877
1.05543
4.12483
1.13374
16.4499
17.2949
17.1723
18.0361
18.8806
18.0392
16.1705
16.6794
16.7744
17.9404
18.569
17.9054
0.0835874
0.0822608
0.299678
0.383871
0.0759945
0.0901842
0.33009
0.0852303
0.0840041
0.252127
0.34772
0.311895
0.0759843
0.0943487
0.0772973
0.258504
0.0650095
0.230383
0.0705674
0.281447
0.0691863
0.0921538
0.415162
0.108685
0.405322
0.0993597
0.365044
0.102108
0.0876728
0.350774
0.452518
0.084648
0.414998
0.0773816
0.0956511
0.0902767
0.0915431
0.416043
0.496913
0.444966
0.0827241
0.0992737
0.0803187
0.322187
0.359032
0.0661026
0.381414
0.0742947
0.0713648
0.0983798
0.515556
0.532041
0.114591
0.482114
0.106931
0.108265
7.40456
2.10377
7.90318
2.02967
9.59822
1.86513
8.86785
2.56978
0.465696
1.68281
0.575445
2.41978
1.74239
0.578963
15.1962
3.9329
1.96442
1.24835
3.98607
1.39602
13.001
17.6281
1.56923
5.44743
1.96183
19.4767
5.06748
1.39477
4.71109
1.32074
1.32662
4.11878
1.4174
4.48829
4.34103
14.093
3.00555
11.8526
2.97266
13.0238
3.16382
13.5446
16.3159
17.0071
3.61908
3.6559
3.59105
16.2889
17.021
5.17274
2.06313
1.6973
6.8637
5.16062
1.69753
6.87894
14.3445
3.46009
13.7344
3.48968
13.7384
3.46273
14.3447
16.5806
3.36232
3.48288
17.2241
3.41668
16.6269
17.1899
0.0639981
0.292829
0.0751576
0.275442
0.0695815
0.0691204
0.256775
0.0624794
0.258729
0.0633394
0.249313
0.0661916
0.255931
0.061184
0.108179
0.483387
0.0926035
0.450302
0.100633
0.103107
0.486882
0.114248
0.118529
0.496327
0.503774
0.491494
0.115457
0.11773
0.111732
0.520841
0.115272
0.51371
0.110483
0.50602
0.114878
0.11126
0.459616
0.112964
0.491147
0.106358
0.47866
0.115638
10.2327
10.099
2.1952
2.72527
2.41751
7.9639
12.2687
9.52072
8.7675
1.46217
1.93411
1.8092
7.13608
8.68366
5.15139
2.14471
1.70911
6.8488
5.14586
1.74868
6.86206
4.69643
1.26907
1.13999
4.09646
1.26312
4.49821
4.2005
16.7493
3.3121
3.32563
17.3449
3.21625
16.744
17.3779
3.20268
0.784768
2.16553
0.851008
3.13042
2.14246
0.925992
3.33174
0.611628
2.52682
0.564265
3.37038
2.47231
0.600099
10.2784
3.17704
2.75185
13.1927
10.7521
2.68389
12.788
11.1094
3.29307
2.78715
13.4445
11.0034
2.79594
13.5493
5.71443
1.58403
4.62044
1.36833
4.65825
5.64769
1.58313
12.9844
3.98528
3.43527
14.9284
13.0447
3.38652
14.7208
5.89918
4.40135
1.38365
1.63846
4.45455
5.8838
1.64462
7.73828
1.82247
1.49977
5.06653
5.66221
6.45409
1.77636
12.9674
4.08757
3.43575
14.9294
12.9981
3.43663
14.9273
5.84668
4.35973
1.36548
1.62753
4.35386
5.85239
1.62454
3.5669
0.239295
0.271349
0.27662
3.12985
0.240299
3.96901
9.44241
0.595649
0.59289
0.525287
9.23402
0.529438
9.62969
0.26645
2.71962
4.00997
0.230831
0.230364
0.267503
4.08403
8.86811
0.58932
0.594242
0.530127
9.19157
0.525972
9.21974
0.231803
3.65625
1.5479
0.182902
0.199912
3.80119
0.211528
0.267116
4.01307
0.229464
2.51652
0.228855
0.266672
4.05112
13.0734
0.980705
1.48424
1.29466
13.445
0.871999
17.0895
0.00685816
0.00232597
0.00235491
0.00679392
0.00663587
0.00638716
0.00226781
1.80018
1.83473
1.88614
1.82216
0.884164
8.88541
24.4988
0.652454
0.687936
24.9971
0.816384
1.78996
1.78509
1.70146
1.79213
0.872953
16.7284
5.70603
1.5796
1.52335
19.4407
1.83083
0.826844
24.8358
0.646382
7.33114
0.668871
22.7772
0.80387
7.4995
0.406635
0.412981
0.376949
8.50786
0.372163
8.00516
0.187612
3.60328
0.166891
1.4186
0.162729
0.192644
3.52068
7.3618
0.368335
0.358563
0.331372
8.1962
0.339525
7.7708
0.00598726
7.0733
1.75
0.00651237
0.00541075
7.76354
0.00731195
0.604742
0.680577
0.549252
0.525758
1.74442
16.476
1.50857
5.71278
1.46349
1.79136
15.7447
0.583096
0.546261
0.508759
0.515143
0.0533236
2.71211
0.0501691
0.0460643
0.0588235
6.24377
0.283213
0.288374
0.289151
6.82836
0.292838
6.70861
0.00765532
6.91915
0.00554787
2.14976
0.00616557
0.00679459
7.76027
0.00886723
8.99433
0.0088726
1.04576
0.00852678
0.00935156
7.75148
6.32937
0.270198
0.273699
0.313012
7.11302
0.295918
7.51513
0.00733382
2.71112
0.900661
0.00629563
0.00639386
0.00713196
5.51859
0.0101426
9.21085
0.0101193
1.00419
0.00949367
0.0108741
5.72146
1.01083
1.05319
1.03496
0.955102
0.054037
0.0436348
2.86482
0.0458733
0.0511863
0.0466251
16.4739
0.0372972
2.12224
0.0410603
0.0418219
0.97993
0.968941
0.870219
0.896575
0.0396144
3.75341
1.21541
0.034308
0.0380359
7.19731
0.0353623
0.0414299
13.0519
0.0372763
1.3015
7.45591
0.0369439
0.0417665
39.7353
8.00486
7.09939
15.6674
15.9751
8.36105
35.9955
11.6797
4.68425
5.20996
8.31121
13.9292
4.71473
7.94791
45.231
185.725
23.0407
14.1007
97.1789
63.5887
10.2411
398.245
31.1684
27.3455
49.6159
50.825
9.92559
7.86812
26.2334
28.9245
11.7961
42.5431
38.2422
26.3803
368.066
15.9733
42.6779
5.65702
7.73145
10.5025
28.6942
9.43063
13.1143
58.8526
102.267
46.4962
427.389
379.194
24.3876
15.0914
109.687
42.2128
53.3213
395.094
148.345
88.0196
0.661961
0.462317
0.414061
0.710637
0.77883
0.463876
0.667169
35.8294
9.91811
89.9166
52.1737
140.28
24.8081
11.6089
0.726111
1.15062
0.45256
0.493022
0.954414
0.747856
0.491649
34.4872
35.6509
39.6383
31.2856
16.4603
13.9161
477.391
20.2263
56.6503
1.44342
1.34124
0.448249
0.449874
1.253
1.31591
0.479512
1.24284
0.415509
0.435987
0.898431
1.1673
0.433929
1.23225
1.28096
1.30062
0.47452
0.446846
1.34566
1.20306
0.455354
97.6777
41.729
49.8225
54.6406
384.395
151.972
0.851948
0.472427
0.436489
0.806734
0.889972
0.432216
0.766363
1.40544
0.493035
1.37842
0.483007
1.45552
1.42105
0.481763
39.45
33.0411
41.328
32.5366
1.21732
1.39461
0.430036
0.45752
1.0581
1.387
0.44263
23.3753
16.2471
22.7498
16.5632
6.10513
5.40037
20.6671
19.3032
5.58633
5.65857
16.3765
6.57959
10.4127
8.01443
20.3734
5.8233
31.8773
4.85945
2.66532
5.65732
2.97772
3.94003
2.8156
4.8585
2.94548
5.57798
30.884
30.6681
5.31821
33.044
5.26099
5.43628
24.6743
29.5076
27.0845
27.8294
38.3264
80.626
17.0821
366.363
19.2264
9.39802
20.8261
42.7969
135.545
11.4279
76.2519
8.71004
32.5803
142.274
42.8715
38.5254
50.5819
4.94398
29.3342
5.19715
24.276
5.1959
5.09791
27.1572
4.95288
4.95763
31.415
30.141
31.3697
5.17979
4.75864
5.92043
42.8634
8.76832
36.5948
8.14688
36.3567
6.46576
5.39095
14.4436
6.66176
16.131
5.63475
18.5466
5.90476
5.66666
27.905
5.55088
21.6609
5.9446
5.49578
24.4099
6.24881
8.85552
12.7169
33.405
10.9053
7.23491
7.15114
5.76641
36.3353
7.33755
34.6215
6.48386
32.9029
6.02725
3.77606
7.52087
3.19264
5.45177
3.27151
10.1354
3.27042
27.3901
25.8054
29.487
75.3508
131.926
37.7123
30.9764
35.061
0.449534
0.471264
1.14614
1.15788
1.09088
0.47686
0.479745
1.48085
1.43611
3.98436
3.78385
3.70647
1.42909
1.48971
13.5638
41.4944
11.6005
302.053
21.5473
18.5706
19.8398
25.6754
25.4806
24.627
61.0815
7.29274
9.68507
32.443
17.939
35.0082
40.68
112.103
10.0959
299.7
19.2215
29.2807
65.708
34.9114
33.9419
7.56368
5.43585
6.34877
38.0185
32.2947
19.0158
17.9513
15.5792
29.9128
5.19853
5.14794
28.0648
5.2109
29.5993
28.4436
37.4346
112.524
19.2646
10.5085
8.14439
65.8132
43.1399
24.6665
22.0521
5.29023
5.5365
5.22862
24.3225
22.5314
29.0745
5.37816
4.84245
29.8712
4.90252
30.606
28.7761
28.5077
5.19695
5.1314
27.6511
5.14433
29.27
26.7783
0.210119
0.203865
0.356897
0.343858
0.190744
0.212733
0.315946
0.244259
0.28955
0.320786
0.34009
0.319724
0.243486
0.290067
0.209571
0.308911
0.182902
0.302906
0.185847
0.303336
0.208773
0.242399
0.330621
0.286216
0.337956
0.242367
0.321298
0.286757
0.258182
0.933819
1.04405
0.24952
0.904587
0.247404
0.27227
0.239693
0.214925
0.663346
0.682975
0.726519
0.213371
0.236508
0.234598
0.824171
0.701306
0.21479
0.785619
0.233438
0.213967
0.264577
0.979546
0.768084
0.295382
0.826437
0.289628
0.262397
36.8858
4.86576
25.8993
3.89179
8.25857
6.66468
16.8348
7.0444
28.2873
3.75918
3.45765
4.1822
8.41864
15.5373
17.9151
3.83034
19.8548
3.79464
18.8428
3.99036
19.043
4.48437
1.28436
1.24592
3.37218
1.41189
3.6492
3.70289
9.21335
5.44308
17.0227
1.99373
26.6075
2.61812
6.74982
4.70107
4.17608
2.0024
1.72205
1.76768
5.70908
3.79627
11.9689
4.9183
16.3352
4.83905
14.4366
5.31456
13.9602
3.14823
1.65557
1.85427
2.94891
1.6635
3.1039
2.95831
0.226345
0.957464
0.22966
0.630442
0.202002
0.243466
0.911832
0.207014
0.172753
0.785296
0.562648
0.812207
0.205669
0.16663
0.230028
0.87573
0.22008
0.808199
0.236676
0.901802
0.219438
0.195352
0.40309
0.165689
0.406483
0.177804
0.719745
0.161219
0.234458
0.979161
0.222696
0.41192
0.208751
0.260818
0.58246
0.2693
0.30029
0.782516
0.439103
0.524448
0.304195
0.288748
0.286406
1.06889
0.319262
1.07511
0.30058
0.907699
0.323118
0.236688
0.370544
0.25981
0.391607
0.226165
0.410683
0.263905
4.49338
8.893
1.99702
1.69005
1.52207
6.66302
5.24256
3.16614
1.29215
1.36863
3.2114
1.35911
3.32641
3.10741
2.83606
1.83191
2.07408
2.62092
1.84676
2.86381
2.60314
0.191042
0.192408
0.0367211
0.0365207
0.19453
0.0365952
0.18915
0.151489
0.0321124
0.168665
0.0341671
0.157786
0.0313477
0.164622
0.130795
0.111908
0.0256675
0.0286093
0.114647
0.0285134
0.127767
0.13559
0.0293393
0.125297
0.0257358
0.142022
0.119206
0.0285353
0.147132
0.0344861
0.0317761
0.160809
0.0314847
0.162303
0.144796
0.168894
0.037116
0.176789
0.0386152
0.172339
0.0374242
0.175551
0.173031
0.0381129
0.178659
0.0379766
0.177449
0.0382791
0.173614
0.162998
0.0389419
0.0375169
0.166757
0.0374515
0.171887
0.155797
0.170417
0.172574
0.0360634
0.037284
0.0370425
0.17017
0.172346
0.171819
0.175374
0.0412782
0.0397089
0.0391767
0.176581
0.168637
0.172973
0.0369975
0.0400986
0.171423
0.0384248
0.170868
0.175785
0.16766
0.037619
0.0376595
0.164684
0.037439
0.16943
0.162905
0.0776699
0.0201465
0.0871838
0.0209858
0.0817022
0.0195453
0.0810503
8.42246
8.87713
8.8729
8.50447
0.075104
0.0970334
0.0179843
0.01917
0.0760589
0.0185384
0.0766622
8.32016
7.31013
8.15659
7.59044
0.0780073
0.0191921
0.0804042
0.0182544
0.0807145
0.0783074
0.0189112
7.59548
8.88491
8.68782
7.44317
0.0747376
0.0200323
0.019593
0.0798683
0.019001
0.0767136
0.0779106
0.113719
0.0242994
0.0982848
0.0274807
0.0989134
0.0271861
0.113708
0.130307
0.14259
0.0306775
0.0332624
0.0302556
0.132592
0.141454
0.115646
0.0243733
0.103651
0.0277693
0.100794
0.0272853
0.118364
20.0895
8.76958
9.52039
17.1409
0.128849
0.0308585
0.0332888
0.147475
0.0302232
0.130724
0.142139
0.103429
0.0985689
0.0231447
0.0274393
0.0258567
0.0903944
0.114055
0.109452
0.132823
0.0280648
0.0305831
0.0272687
0.114143
0.125169
8.31701
7.05823
8.08746
6.97412
9.32002
10.0739
7.72686
16.276
0.0949899
0.0218962
0.0248172
0.0864544
0.0242625
0.0838297
0.0982009
0.119612
0.0310517
0.0327613
0.150639
0.0291833
0.132244
0.13634
0.360939
0.35715
0.218021
0.221394
0.0666368
0.070126
0.0337339
0.0320218
0.439412
0.354351
0.156752
0.191157
5.9934
0.99236
3.94626
3.0412
12.4514
2.4932
1.81485
23.4796
7.92209
25.4144
67.902
170.1
9.49462
18.3786
187.005
58.9827
34.0365
269.535
15.2854
20.5405
9.95822
41.6644
85.2162
36.7641
8.54123
6.34229
13.0347
18.0056
12.5001
30.8936
46.07
277.928
9.13559
22.5103
73.4093
27.6552
21.9162
17.8291
11.8118
2.29581
22.0146
5.76247
4.91801
5.78148
5.71961
2.08218
161.259
70.7228
767.669
138.141
89.6906
33.3381
21.8087
65.0873
9.28261
13.3474
17.6832
83.8309
21.3778
5.76302
4.88175
2.33566
5.90303
16.2308
6.65658
125.505
125.039
97.3045
110.752
156.171
161.277
107.132
50.072
141.871
48.3865
110.695
8.27721
2.4411
1.49682
3.10683
2.74915
3.5785
7.39964
10.8838
4.99799
1.84291
3.49644
3.48724
4.98879
10.8211
33.1263
73.3873
26.1048
836.985
30.7121
95.5508
333.276
75.8945
49.8796
288.775
121.56
67.0682
70.8954
261.759
14.6987
17.0118
32.9082
70.4637
13.1776
28.9539
37.553
20.0306
133.274
48.6976
50.9814
49.2672
52.4696
19.6482
35.1146
288.733
110.22
107.167
10.1896
23.1656
14.6754
34.2288
17.3022
57.6885
87.2905
13.9128
37.1322
19.2666
55.6158
277.284
90.7578
10.9046
26.7572
5.01222
22.3323
6.78668
39.7436
7.79349
3.42525
1.75072
2.94821
0.947445
2.01831
1.4644
5.46329
5.87818
2.88429
1.32197
6.18765
1.75373
3.38027
11.7894
56.3066
282.128
35.2972
33.5085
110.383
28.3405
13.3774
240.938
19.4951
10.4431
94.3893
36.5954
237.113
6.36897
5.53851
10.3708
30.5168
4.4387
17.5447
8.40128
31.771
30.1232
108.534
292.35
20.0084
45.1845
2.62669
1.18112
0.965756
5.49273
0.807993
3.10046
4.44344
302.297
2.95912
2.09408
6.76536
1.53411
1.25161
4.52052
7.19821
60.1819
199.564
51.8303
40.2612
194.064
33.8024
23.6905
81.7362
27.0027
92.3305
45.9874
16.1929
34.2154
14.4064
14.4036
35.1163
46.4654
196.068
198.554
64.018
37.0028
104.793
19.3833
20.5985
99.2105
70.3655
2.56532
1.4428
4.19378
1.1312
1.05366
2.96016
4.10645
105.242
277.605
701.314
59.1739
229.425
586.782
44.8846
34.0328
15.5152
14.6056
14.3751
33.256
46.5432
196.016
192.895
23.4041
20.0317
8.18723
59.1661
10.4508
77.6888
14.8232
113.591
33.8194
45.4652
67.0567
4.84098
1.33469
2.61328
1.43633
3.22805
1.83302
3.85832
2.71833
1.46732
1.95688
3.27366
1.51215
2.34793
3.90961
6.33813
10.641
4.10294
14.3093
5.65825
4.59666
18.0416
2.87546
2.25905
1.90075
5.42497
1.73008
4.25109
3.49024
116.837
84.5383
1.89227
1.10128
2.8274
1.33951
2.61326
2.03492
1.03883
17.5925
88.4481
18.9577
24.5425
114.142
14.019
46.2013
326.3
123.704
61.2965
17.0848
36.4408
8.83777
10.3877
8.09306
21.6156
26.0827
2.08667
6.6925
3.0602
1.28205
7.56727
1.94956
1.33011
13.8906
51.0398
158.731
41.9428
30.6954
42.2227
14.2505
10.6178
59.5948
32.5326
13.8378
11.1526
16.4496
13.2543
74.357
9.98439
33.5761
9.80911
17.2867
16.368
25.7373
80.4886
116.182
246.681
209.101
42.2483
6.47077
12.0553
11.3676
12.1203
11.4525
41.3722
118.832
119.905
7.98679
2.48053
1.38723
3.15222
2.5155
7.92621
3.17295
1.6556
5.99047
1.14789
2.535
1.10978
1.73419
5.633
10.2872
13.9148
15.1464
23.7055
31.3495
8.90697
9.02309
12.9024
50.486
13.1434
24.9568
13.4777
46.033
12.4603
1.34436
2.27534
0.978298
3.4561
0.985306
4.10784
1.22133
7.51257
2.99426
2.25113
1.25627
2.29676
7.43002
2.9658
117.094
115.531
7.72613
2.42305
1.31601
3.08381
2.38415
7.82332
3.0591
9.79172
39.9555
32.6197
14.5652
11.0034
24.8494
13.4058
0.958778
1.23173
2.33474
3.65949
0.909847
1.29608
2.50885
0.458698
1.55222
2.51541
0.472811
0.606871
1.76655
0.360851
0.576084
0.930486
2.68958
2.02009
0.754431
0.691631
1.9129
13.9119
72.3337
37.4035
18.1347
12.9573
47.2473
18.9246
5.39742
17.4006
4.8496
11.0948
4.44052
6.09896
16.3935
1.15827
2.43671
5.86606
1.50374
2.43351
1.15993
1.57404
0.792194
1.53114
2.32642
0.673221
2.25252
0.66488
0.810547
19.3058
37.1436
12.775
10.1057
10.4943
37.7983
19.5254
34.7116
12.453
153.551
40.6892
35.3727
12.26
149.933
5.16825
2.03598
1.55545
0.860214
1.52032
5.33131
2.03245
100.995
20.5579
99.6914
20.8592
5.01731
1.4158
0.832535
1.99693
1.46543
4.86643
2.01606
0.93975
1.02532
3.33937
2.00916
2.04522
1.12237
0.925433
1.01904
2.31611
1.43071
4.71919
1.03625
2.25112
1.35163
4.63877
1.90846
1.33728
0.794991
1.35161
4.58821
1.921
96.4542
20.178
97.8804
19.9296
4.69247
1.37549
0.797507
1.94808
1.35948
4.74705
1.93442
0.17026
0.707806
0.720532
0.208197
0.219581
0.689275
0.196916
0.648655
0.768027
2.12879
1.47974
1.37669
0.747216
0.666423
0.615054
1.19836
1.86183
0.682509
1.20926
0.612128
0.69009
7.26117
10.9154
5.19647
4.89643
4.92033
11.2199
7.17299
9.51245
5.13227
39.3697
9.81176
9.661
5.11153
38.4311
2.99905
2.52837
1.00399
0.694021
0.979195
2.86681
1.7975
27.1576
13.6082
27.0955
13.6711
2.72256
0.880237
0.605842
1.39159
0.898321
2.70847
1.40981
0.533482
0.577089
1.57321
1.1694
1.19325
0.602175
0.528903
0.586963
1.15707
0.661076
1.75667
0.583822
1.21544
0.651846
2.26806
1.26927
0.747103
0.561335
0.775815
2.20377
1.28959
26.2375
13.4358
26.7022
13.3034
2.47534
0.858666
0.578218
1.36091
0.827466
2.63235
1.33126
1.80813
1.064
0.605712
0.448765
0.594794
1.85772
1.04663
17.134
9.38562
16.0561
9.60955
1.64458
0.522862
0.42567
0.87476
0.553906
1.60151
0.982823
1.46556
0.845705
0.449285
0.318883
0.457836
1.44404
0.860125
14.1338
9.08767
15.2737
8.49515
1.46869
0.476155
0.377491
0.784266
0.490005
1.40996
0.885082
1.60115
0.821418
3.51742
0.472556
3.62806
0.495503
1.5765
1.2579
0.73443
0.372111
0.259391
0.383522
1.24709
0.742035
8.68434
59.4318
19.5458
8.60414
19.8338
1.66284
0.835809
3.6752
0.495137
3.69543
0.502984
1.62928
1.23593
0.360382
0.251251
0.70968
0.373896
1.21126
0.725137
1.71159
3.40429
0.80681
0.452603
0.477353
3.57883
1.49761
0.867272
0.604052
0.288219
0.220999
0.30073
0.855171
0.612799
8.30315
57.4101
19.1053
8.36366
19.1909
1.63004
0.796686
0.443522
3.18489
0.458402
3.4768
1.57469
0.960811
0.339613
0.229279
0.675899
0.318161
1.13102
0.643341
1.03571
0.49096
1.27385
0.42407
1.39609
0.442285
0.906633
18.9726
14.4544
55.8977
4.73814
18.1199
59.1403
4.95323
1.12336
0.575103
1.54605
0.56059
1.36496
0.548839
1.21288
0.778221
1.16651
0.386923
0.342894
0.337308
1.13225
0.799325
16.8139
12.7366
53.2211
4.4105
17.2335
51.9635
4.27199
0.741807
0.363238
0.310248
1.0554
0.313262
1.08864
0.729442
0.383438
0.227464
0.736725
0.197426
0.738117
0.196931
0.384793
51.1327
53.1884
2.90033
3.96082
7.48818
1.90215
2.69159
8.0681
1.88216
0.345358
0.226922
0.734195
0.198034
0.714075
0.196746
0.352858
46.4788
44.9887
0.387903
0.751686
0.224941
0.192961
0.192089
0.741179
0.395022
43.1817
42.6213
3.47154
5.43756
9.24098
2.74501
3.48206
9.28998
2.58957
45.6415
45.386
0.37333
0.215143
0.189106
0.778751
0.181195
0.720905
0.446644
0.681648
0.162125
0.567376
0.15053
0.570988
0.169607
0.650885
40.7351
41.3313
0.62666
0.138681
0.153857
0.562162
0.158427
0.576525
0.606138
0.245663
0.140273
0.472118
0.11823
0.479997
0.118778
0.243591
11.2604
41.2103
40.528
11.4615
1.99645
3.11588
5.91445
1.22363
1.23101
1.98225
5.93095
0.251728
0.145376
0.498075
0.124396
0.490526
0.124005
0.253289
10.6808
37.8119
38.5823
10.5561
0.213496
0.432091
0.117707
0.11156
0.109423
0.34017
0.229495
8.1271
11.8862
12.0582
8.01147
1.92647
2.98138
5.81999
1.1895
1.18505
1.93759
5.81359
9.93474
35.3563
31.8717
10.3159
0.199129
0.108278
0.103023
0.284203
0.103728
0.293403
0.194757
0.442757
0.101893
0.324118
0.0811312
0.448001
0.100634
0.321313
30.9737
8.58384
8.85895
30.3757
31.7114
9.30645
31.975
9.20066
0.440457
0.079239
0.0993716
0.321536
0.098958
0.319975
0.441276
0.129401
0.0705864
0.169354
0.0702348
0.170799
0.0705471
0.128253
5.83305
8.72207
7.99793
6.09825
1.22514
1.32495
2.68631
0.846819
0.882317
1.17573
2.81158
0.13877
0.0761871
0.208251
0.0778713
0.183575
0.0764839
0.14753
5.23726
6.6346
6.7605
5.12493
0.116494
0.15738
0.0637165
0.0633079
0.0629889
0.155111
0.117713
4.56579
5.76954
6.01078
4.34222
1.05298
1.16916
2.4999
0.76012
0.752039
1.06895
2.45977
4.86263
6.43842
6.34575
4.94116
0.112979
0.0609999
0.059473
0.152722
0.0594225
0.152279
0.113582
0.313418
0.077219
0.115504
0.0596837
0.317832
0.076353
0.113882
0.342989
0.30989
0.0821811
0.0799747
0.0822163
0.322196
0.328306
6.23705
3.91392
4.08406
6.00139
0.350862
0.0858772
0.335705
0.0847009
0.355798
0.0845669
0.330002
6.98953
4.72372
7.07232
4.66557
0.305911
0.057243
0.0722704
0.105267
0.0739651
0.110157
0.291384
3.1328
4.18092
4.06892
3.21674
0.404041
0.542789
0.895655
0.297951
0.337422
0.36148
0.990995
2.90166
3.66595
3.77782
2.80246
2.26468
2.90283
3.03681
2.16062
0.329551
0.441224
0.850823
0.275356
0.267896
0.337839
0.831871
2.69822
3.583
3.53754
2.73287
0.0815715
0.0329528
0.0493202
0.03071
0.0843329
0.0324425
0.0483435
0.240561
0.276771
0.0565291
0.046124
0.0467553
0.285362
0.233442
2.60141
1.98821
2.0264
2.56513
0.245702
0.0488339
0.296699
0.0578797
0.250284
0.0482487
0.291404
2.86773
2.28961
2.93428
2.24698
0.0790343
0.0288433
0.0306578
0.0453029
0.0308246
0.0461748
0.0768692
1.44717
2.02468
1.9952
1.46819
0.136585
0.521953
0.243527
0.124247
0.12091
0.141586
0.228297
1.32388
1.83145
1.83275
1.32878
1.10569
1.50591
1.54752
1.06686
0.116092
0.40174
0.216461
0.10366
0.0985884
0.121512
0.209438
1.25396
1.76807
1.73517
1.27766
0.000535508
0.000507586
0.000513638
0.000531172
0.000540566
0.000536407
0.000512798
0.180277
0.20373
0.146099
0.126139
0.0081969
0.0245224
0.0203484
0.0799584
0.00768205
0.000505732
0.000530751
0.000533402
0.000536595
0.000510813
0.000511061
0.000534703
0.000519353
0.00053629
0.00054242
0.000538499
0.000524762
0.000518693
0.000534571
0.000537359
0.000516919
0.000523234
0.000531392
0.00051708
0.000535643
0.000532346
0.0397002
0.0195869
0.0299847
0.036576
0.0320735
0.150593
0.122162
0.0907759
0.107967
0.000525695
0.000502693
0.000522754
0.000528122
0.000508328
0.000508241
0.000530692
0.000526693
0.000503825
0.00052442
0.000529657
0.000509251
0.000531458
0.000509212
0.000531723
0.000515326
0.000529365
0.000521532
0.000532791
0.000515246
0.000529221
0.0263815
0.0261841
0.0128358
0.0202727
0.0286356
1.23449
1.15031
0.249631
0.275933
0.18687
0.291295
0.295731
0.173619
0.172889
0.276974
0.279997
0.155944
0.00115182
0.00144636
0.000567395
0.000631261
0.000574049
0.00168085
0.000638706
0.0017821
0.00158338
0.000603835
0.125232
0.116502
0.126667
0.133465
0.00574343
2.01039
0.000858166
0.000568949
0.00488875
2.49726
0.000579589
0.00777051
2.99049
0.000703984
0.000926502
0.00676479
3.03843
0.000634432
20.7863
677.919
147.237
20.2548
20.5588
0.0360289
0.0337221
0.00312852
0.0026049
0.0266833
0.00303155
0.0824336
0.53511
0.270234
0.907491
0.505766
0.100246
0.170143
0.288843
0.0192769
0.00259867
0.0233705
0.0180755
0.0019418
0.00218239
0.013783
9.53397
0.448411
1.98572
0.544471
0.441477
1.20805
0.197951
0.0360129
0.00280912
0.0242497
0.0179623
0.00260033
0.0197863
0.00239527
0.17568
0.370142
0.0275285
0.0374977
0.297101
0.209071
0.0261874
154.176
3.68805
8.43889
21.0916
2.51193
2.30764
4.15142
16.1173
0.166431
0.0361055
0.248648
0.0251186
0.271567
0.0262663
0.163841
0.291582
0.442086
0.167295
0.176371
0.414942
0.16964
0.311297
0.382801
0.165935
0.882906
0.187456
0.380271
0.878625
0.168114
0.0133172
0.0344349
0.0538689
0.011955
0.033463
0.0124771
0.0131479
0.157772
0.0973171
0.0211765
0.0260018
0.0248286
0.104536
0.147436
5.1496
12.0451
16.3323
2.75
4.56839
20.0736
3.03929
0.0128708
0.0116226
0.0427151
0.0307864
0.0115437
0.0296063
0.0132607
0.0124922
0.0302471
0.0451922
0.0112572
0.0111814
0.0305598
0.012246
0.0124694
0.00178937
0.0105555
0.0070919
0.00168073
0.00877238
0.0014901
94.1849
145.235
22.7577
19.5953
66.5294
24.3463
33.1405
35.9624
0.970588
0.625506
0.0362339
0.043395
0.637771
0.0474377
1.02877
1.59237
0.0895102
1.61752
0.0532994
2.63441
0.953248
0.0692308
1.627
0.261305
0.0386516
0.982716
0.0612943
0.0447698
0.0236075
0.0484787
0.0831747
0.0946596
0.0122891
0.00756979
0.00790628
0.0112855
0.00274562
0.00555859
0.00226274
0.000887579
0.00133832
0.00093258
0.00122419
0.0686361
0.0274443
0.0583237
0.00846778
0.00607229
0.00922205
0.00540917
0.00718544
0.00314685
0.00889234
0.00109526
0.000891823
0.000920389
0.00105487
0.0032031
0.00138082
0.00236365
0.000888076
0.00081178
0.000782004
0.000933371
0.00124832
0.00183154
0.00206199
0.000848803
0.000740327
0.000752292
0.000826817
0.00154619
0.00101431
0.00143702
0.000773288
0.000707436
0.000783978
0.000695651
0.00100895
0.000951769
0.00090105
0.000677067
0.000693834
0.000686276
0.000687026
0.0951894
0.261514
0.242125
0.22312
0.16193
0.126465
0.132736
0.912066
0.27098
0.177643
0.320775
0.676378
0.35639
0.359482
13.6636
7.74627
14.8533
6.28288
12.2935
4.82838
20.9291
3.10828
0.633458
4.06262
3.07013
1.32294
9.62684
1.22185
1.65336
0.231339
0.612529
0.776665
0.586158
0.476504
6.83839
0.252258
0.750089
1.78381
0.693011
0.529717
0.597466
0.29354
0.147631
0.212899
0.203839
0.979729
0.354203
0.11477
0.307611
7.64849
1.94581
2.91357
4.74819
7.73284
2.79488
5.58503
0.519565
0.265558
0.124987
0.283731
0.243018
0.208277
0.565869
30.1087
6.9862
39.7406
11.5825
0.504359
0.207683
0.751852
1.1999
2.09935
0.252391
0.390841
0.433094
0.296073
0.153665
0.7029
0.17164
0.338386
0.985017
14.3957
50.6843
8.33027
0.319574
1.22045
0.206578
0.330838
0.16921
0.478788
0.75403
0.287119
0.259783
1.21206
0.229833
0.150473
0.676961
0.533355
3.7963
7.37104
5.91825
11.6674
2.5095
11.5479
0.266448
0.357781
0.19136
0.950191
0.151632
0.833393
0.364886
1.48123
2.47625
2.61465
8.60779
1.22282
3.67141
3.19136
7.34388
63.8678
27.6892
27.0479
10.0631
18.4658
13.351
8.61693
4.39047
3.42746
25.7318
3.68504
1.93283
1.83177
4.36103
3.53565
1.86514
4.29853
0.65434
0.219541
0.229189
0.15552
0.280307
0.492055
0.291456
1.02984
0.788223
0.559386
0.539092
0.45243
0.923511
1.05822
2.07719
1.90459
4.40058
0.808081
0.919234
4.65051
1.71711
1.3935
0.436708
0.197089
0.282467
0.251934
0.406505
0.541945
3.16157
4.15293
1.99582
32.8355
1.48061
15.3923
4.94492
0.449157
0.27421
0.1206
0.192998
0.192119
0.239184
0.551915
0.663176
0.16935
0.209533
0.493723
0.196108
0.755788
0.49414
18.099
15.0743
15.3825
19.5112
25.0711
13.0462
24.0795
13.4786
6.45443
2.37133
12.585
3.04749
4.50811
0.77407
0.328281
0.171635
0.229622
0.295605
0.375932
0.70323
29.5699
12.1156
0.266414
0.628165
0.354457
0.201495
0.193717
0.583671
0.281821
0.251416
1.08919
0.681178
0.490848
0.302185
0.557719
0.380991
21.0859
0.302056
0.172922
0.269784
0.505517
0.18663
0.273121
0.511933
0.284572
0.141775
0.37182
0.240095
0.227342
0.163356
0.500298
0.402729
0.666167
0.321596
0.277699
0.234468
0.561444
0.502419
4.04276
25.6138
10.3779
4.28554
14.7028
0.344514
0.642194
0.190031
0.242959
0.169676
0.356069
0.64224
1.58858
1.51865
5.18013
4.31749
1.77469
1.60997
3.50497
5.19415
8.04141
33.2676
9.3967
28.7893
6.1135
6.22745
10.5771
6.93159
10.6987
1.81727
4.43262
1.46906
4.88777
1.50492
6.49861
1.65304
13.8586
15.9331
13.336
13.5095
7.97861
1.85044
3.17325
3.65532
4.3082
12.0358
21.1233
7.52827
6.64396
54.0976
12.0822
3.61804
3.00956
9.53272
3.84611
10.6939
10.43
16.0504
7.35166
9.39321
14.956
13.7823
12.5354
0.617052
0.801716
0.297358
0.453295
0.33811
0.517682
0.855233
0.636577
0.869293
0.227374
0.427938
0.268285
0.451413
1.35746
6.47306
3.26751
2.58684
7.8088
2.92686
8.7191
5.74348
23.2565
18.8075
7.17957
4.97724
4.09581
24.3309
19.9606
25.5362
31.1391
0.310088
0.887707
0.244379
0.462911
0.363306
0.218329
0.801222
4.89406
8.68938
29.6629
7.89466
5.38598
24.9969
0.384893
0.297287
0.565852
1.35074
0.2624
0.450648
1.0458
6.52403
11.5136
57.8087
18.878
6.98004
0.3663
0.597417
0.281699
0.202521
0.574264
0.206155
0.380035
0.459118
0.196234
0.59847
0.316153
0.769158
0.375705
0.225372
4.74159
6.63111
1.98384
1.63307
1.7236
5.9271
4.6292
4.08621
1.6251
2.21583
6.78299
1.71604
6.60289
3.68643
6.56069
4.01533
1.3642
2.36337
2.26368
3.78626
7.00464
0.8021
1.36544
0.810803
8.40914
1.19681
1.21925
0.591316
0.305274
0.983861
0.624217
0.352183
0.490745
0.93936
2.50558
1.51226
2.43099
6.08836
1.45366
4.6721
3.29084
1.24797
0.546083
0.840167
0.461192
1.47462
18.3686
7.53108
3.16819
34.2314
14.9182
5.34931
14.9852
4.62296
1.76856
2.63424
4.71671
3.1515
7.86607
4.34656
3.06827
7.41551
2.52584
5.56044
0.515516
0.178377
0.247436
0.384332
0.232436
0.598358
0.338276
2.89591
1.50939
5.11469
8.63561
1.72376
2.65019
15.3926
0.460093
0.687561
0.217192
0.313113
0.426542
0.225016
0.75068
1.88223
1.27284
3.39789
6.50523
1.1755
2.08902
5.67489
0.544586
0.270854
0.339094
0.968174
0.242017
0.561853
0.953924
0.395563
0.11569
0.404591
0.120134
0.119064
0.401469
0.381589
3.53851
9.86095
2.42364
7.49466
2.74887
2.9494
21.0362
16.3362
20.3773
18.4578
17.7979
11.1011
11.3653
10.1982
12.0406
0.381877
0.121201
0.124049
0.337569
0.121018
0.356796
0.365154
0.792042
0.190035
0.518312
0.146273
0.787313
0.190238
0.512795
13.3304
5.13643
15.5929
36.8694
33.0098
21.969
16.2588
20.6004
0.746915
0.146638
0.1813
0.466547
0.185853
0.485638
0.690631
4.75127
37.0488
13.5985
12.7216
5.16338
12.8579
11.2412
4.46851
33.3546
12.8379
10.2842
4.46532
12.8534
10.3115
24.103
7.58537
31.845
19.9739
23.6325
20.5367
4.55066
2.45043
3.49037
5.79964
7.2722
10.4498
0.940664
0.209486
0.961377
1.36974
3.126
0.378344
0.424369
0.773473
0.248354
0.59209
1.34568
0.276374
2.22108
0.504783
44.3458
18.9681
14.5209
16.4687
6.95671
22.3949
21.5218
9.57963
4.73085
9.15746
3.51487
61.7165
11.0476
1.03819
0.209085
0.553603
0.416584
0.477439
0.357861
1.28551
7.13701
3.32256
9.88524
37.9009
3.03555
7.9719
26.574
2.29838
7.19799
4.91349
16.874
2.40905
4.5174
6.58501
1.49266
0.30077
0.678763
0.550131
1.62294
0.678994
0.573632
33.4733
9.9512
38.6657
8.98474
4.94152
11.2696
2.13407
3.72106
1.948
5.56278
12.5281
1.45332
0.285883
0.768286
0.58038
1.82308
0.640224
0.561143
10.0838
4.28064
78.7826
17.4725
11.0198
4.98408
34.1935
69.9766
11.3231
65.395
59.7069
51.1544
107.24
8.18277
17.4754
25.5262
30.0536
22.2912
67.9608
7.74611
25.8768
10.0753
33.5976
9.66087
37.5157
4.65497
7.47364
17.313
30.5275
3.4364
6.88205
1.93965
10.8719
5.05556
2.41209
4.75395
18.5064
25.4179
6.3658
50.7265
8.62736
17.3255
17.1779
10.4867
6.56127
4.81255
23.929
17.8011
3.38143
6.66235
3.60507
12.6608
9.71487
3.92597
140.568
68.394
10.2468
11.5345
52.3746
14.8285
21.5573
72.617
57.552
18.5551
150.671
0.764501
0.371482
0.812653
2.06479
0.376077
2.1044
0.750059
0.759968
2.26258
0.397568
0.782764
0.383139
0.800284
1.86013
15.0683
42.6229
41.7684
43.3105
44.2729
14.7317
40.4994
39.1167
17.5027
60.8112
15.4234
111.883
0.717774
0.424866
1.099
3.69646
0.3686
2.8461
0.868586
0.733674
0.358788
0.630579
2.03781
0.333451
1.77233
0.831504
0.719779
1.89618
0.890515
0.319253
0.365164
2.18282
0.61037
0.759226
1.84411
0.345289
0.653943
0.339819
0.754167
1.82954
33.1585
34.6273
20.8215
4.43836
7.83134
19.9436
34.4083
6.28566
8.32879
60.6596
61.6516
18.8121
39.011
4.88842
17.9972
5.98696
13.4297
12.1064
10.5337
256.339
14.8656
6.32757
2.47745
4.77059
6.82762
13.2334
5.03214
29.4622
9.49165
3.82314
14.2465
10.9381
9.00947
36.822
0.862088
0.303591
0.694146
1.8277
2.02177
0.358644
0.787769
0.967611
1.79035
0.766663
0.380077
2.20714
0.401629
0.81579
59.3435
59.5118
0.733038
0.357002
0.686228
1.48265
0.360679
0.676107
1.63417
0.801845
1.78941
0.366581
0.688239
0.365275
0.81926
1.77274
47.9689
37.5431
42.8418
8.60409
21.7483
31.1596
20.5303
57.7299
10.3514
12.3818
4.53851
13.8908
48.9432
10.9753
2.00085
0.392138
0.382558
0.942582
1.1282
0.514857
1.22784
113.98
26.7381
42.9945
56.8271
3.58388
0.722931
0.58335
1.23266
1.59292
0.895614
1.8449
375.536
45.3094
107.448
97.1164
404.1
380.631
3.64121
17.9494
2.14761
7.68417
2.19325
4.68823
14.0141
0.498372
0.893042
0.194846
0.234088
0.600422
0.708737
0.182896
9.82398
26.9456
133.301
37.8571
14.3403
0.422536
0.195995
0.222543
0.523088
0.62498
0.181775
0.356116
0.200491
0.406056
0.69758
0.219842
0.526582
0.235545
0.200392
0.219999
0.314831
0.754455
0.850022
0.236752
0.704883
0.260593
13.653
19.7186
80.6264
11.9401
81.9011
13.2663
0.558084
1.72923
1.07889
0.275643
2.39532
0.316643
0.440171
1.91809
0.370682
0.721211
0.418816
1.25487
1.1087
0.54016
20.4235
16.9449
302.898
253.251
32.6579
26.9694
0.481506
0.999073
0.483977
1.99797
0.594834
0.443572
1.46767
0.411948
0.751059
1.5593
0.398696
1.04842
0.489105
0.358127
55.2675
199.624
229.538
0.544574
0.314323
0.287611
1.16441
0.842893
0.260479
0.856024
5.46256
7.16646
73.2534
21.4109
14.4615
18.8494
5.884
0.299829
1.0253
0.487325
0.2598
0.811677
0.329741
0.250185
0.312445
1.13652
0.56827
0.33354
0.933174
0.370262
0.283341
3.8348
42.9016
12.7229
8.36166
4.12937
12.1444
7.5906
0.434147
1.37669
0.285281
0.694784
0.281362
0.436208
1.35673
0.401346
0.261041
1.30528
0.657852
0.405548
0.260513
1.29445
4.89383
48.9712
15.0304
9.08462
4.90388
14.9637
9.10882
0.643466
1.73804
0.416149
0.938282
0.633824
0.422604
1.77492
0.658895
0.43644
1.93735
0.98589
0.65357
0.435659
1.87507
60.4582
71.1191
217.832
5.80326
1.03062
2.11252
3.04881
1.79287
2.54574
7.51668
44.5568
127.064
18.5399
13.4
19.8245
9.76075
0.619391
0.740852
0.268722
0.21336
0.979991
0.212339
0.582458
10.0888
48.0324
35.7794
6.95117
63.5448
10.7761
7.94517
1.26316
0.276823
0.237471
0.668937
0.330007
0.735766
0.905393
106.395
24.0982
39.664
57.2371
8.47085
1.40251
2.33963
3.34347
2.84975
4.02228
6.37934
52.2271
72.2024
154.827
3.64128
2.64167
11.7695
11.7254
17.9617
3.10807
3.24659
0.42343
0.623495
0.223231
0.258058
0.247681
0.536865
0.514741
7.74533
38.156
21.1887
5.89002
34.7325
8.70171
4.71934
10.5531
249.992
12.0699
23.3798
23.6878
10.3908
29.1749
78.4549
8.96658
25.636
19.7689
0.746532
0.566967
0.449657
0.251448
0.344688
0.992497
0.453078
4.901
7.84739
2.40991
22.34
2.60143
4.37512
25.3693
0.70825
0.301507
0.230327
0.380983
0.31637
0.430349
0.60364
0.398952
0.547389
0.288
0.898351
0.290516
0.395185
0.911416
3.54185
6.84075
11.5967
32.761
3.81011
10.8168
6.14502
0.49868
0.655327
0.382397
1.58838
0.347426
0.563056
1.13364
2.14692
6.14656
3.54154
10.708
2.12068
6.3094
3.57301
3.01004
5.00486
2.07654
12.7832
1.71692
4.02115
8.92213
0.776582
0.584682
1.27423
0.29487
0.643629
1.59279
0.354392
0.313908
0.399051
0.239093
0.782025
0.64544
0.226355
0.335929
1.87118
5.59848
8.6461
3.31295
4.89986
1.97445
3.11312
30.4359
32.3556
47.7562
10.3345
32.6553
6.54189
63.3909
10.9349
29.3661
30.1785
9.45251
15.596
148.986
78.6581
13.6885
3.37817
3.41653
11.9957
3.84483
15.1426
7.77473
8.86847
5.62873
41.7838
102.72
7.49158
10.8226
39.4071
1.76219
2.96607
1.51695
4.30028
1.68561
1.64462
3.5698
3.22615
7.24219
29.4832
4.91519
6.25132
12.6615
2.6739
25.4659
7.40984
28.3788
4.91699
5.75043
31.5406
21.7019
8.28449
6.52757
2.78904
2.01771
2.43993
10.5455
6.61882
85.6373
11.6851
4.94848
9.03244
0.237154
0.68362
0.255252
0.677501
0.236127
0.245463
0.638088
0.248043
0.598818
0.276154
0.471648
0.252041
0.588561
0.273205
0.222718
0.468149
0.195262
0.349365
0.205285
0.398525
0.217149
9.32547
11.5464
42.123
105.641
6.45746
57.5782
24.7287
17.9272
24.8945
25.1043
2.88299
13.3757
7.44142
3.60489
2.9187
10.1679
2.89361
0.371143
0.895028
1.06764
0.280968
1.50556
0.287345
0.321784
11.2597
24.9606
4.58188
4.10519
20.0316
16.8792
3.24947
6.172
3.0192
5.95472
2.61451
10.5925
2.45623
4.83428
32.2227
3.1484
10.8502
4.83364
1.87998
1.75649
9.27337
3.43109
41.8114
11.122
21.0627
82.1614
26.3694
17.5477
5.58681
2.96281
8.40279
31.6753
2.83599
28.5817
5.83371
4.18148
12.472
6.90506
2.16491
2.23348
13.1499
4.00853
39.3541
11.9906
22.6992
38.0385
10.2283
21.5311
22.0284
4.29298
4.30436
21.3803
5.87477
10.4369
10.527
4.39771
12.7064
14.1843
3.31137
3.96347
19.3177
3.9537
0.753188
0.313901
0.671321
0.287495
0.576492
0.286209
0.866224
0.55121
0.253065
0.59124
0.22218
0.240498
0.737467
0.432167
13.5194
275.897
14.8491
26.9469
29.5761
12.1291
230.569
11.8096
26.6961
22.3142
40.0657
13.2653
25.3831
112.6
23.3508
49.6767
42.3347
8.27625
7.0757
15.6091
10.0727
31.3452
20.1375
0.45901
1.15791
0.400993
0.854763
0.430914
0.933257
0.450947
0.454297
1.46741
0.48444
1.15209
0.48672
1.25508
0.489883
71.5315
72.2654
225.741
6.84057
71.1986
70.7288
25.079
15.6785
27.4522
15.8031
93.0734
24.9426
28.138
253.339
283.536
19.9166
14.0177
4.71648
15.4299
3.92247
20.4151
4.52418
8.17053
33.2655
6.04872
29.4906
6.80449
13.2207
7.27426
20.7124
1.42134
0.438671
0.599531
0.72017
0.63542
0.807083
1.201
29.4655
11.347
10.0006
34.3752
11.3558
6.71795
34.3299
6.75689
11.3732
6.68669
3.14853
10.6559
33.9898
3.37393
6.11174
36.2245
0.97959
0.305464
0.454378
0.602369
0.427394
0.580422
1.01578
10.1397
27.4702
6.31352
5.89733
10.7829
70.0237
21.8768
21.7293
231.17
219.878
14.9991
12.121
2.97568
3.97705
12.1588
18.4875
3.63256
6.26602
14.8737
3.66236
4.66294
13.723
20.3441
4.19989
7.64799
2.85528
1.44556
0.54106
0.532678
0.666857
1.81117
1.74967
0.323321
0.605084
0.814986
0.293001
0.307187
0.63785
0.319587
0.335002
0.695832
0.948906
0.370942
0.355717
0.831524
0.365444
4.91128
43.9401
14.3624
8.69848
4.96165
14.2433
8.59123
0.708868
1.75648
0.490889
1.01227
0.488798
0.71088
1.72709
0.691222
0.501277
1.73267
0.983479
0.735029
0.479458
1.67849
4.32324
37.5495
12.8509
7.39614
4.38327
12.665
7.29958
0.635777
1.76296
0.494245
0.960486
0.710339
0.452483
1.61081
0.65403
0.484071
1.7741
1.00648
0.675765
0.470141
1.69365
1.0738
0.758512
0.24311
0.274368
0.290483
0.791506
0.956096
3.96731
5.13316
1.56177
1.6942
1.51684
4.31767
4.72682
7.68792
12.6746
74.5609
10.5061
4.37645
19.7639
6.45225
22.1172
6.82119
0.249082
0.851425
0.602186
0.366995
0.266615
0.52788
0.336808
0.237295
0.798649
0.478571
0.335425
0.244243
0.499729
0.320196
9.47788
5.44428
2.82921
25.0317
3.14381
8.51186
28.7843
23.9678
7.25562
4.8616
4.70384
25.7189
0.547672
0.372694
0.286308
0.911125
0.285912
0.586325
0.823711
41.6134
46.7926
2.0948
4.01111
1.51952
8.83278
1.43651
2.23629
6.86423
27.3329
105.499
20.2268
5.77414
4.04569
2.49457
22.2116
14.235
2.2749
7.62966
4.59679
2.50585
6.69494
1.53733
4.19131
7.46082
1.59339
10.183
28.6489
10.1531
29.5358
0.488938
0.330161
0.270921
0.878686
0.256791
0.565232
0.746135
16.1874
50.3204
17.2878
44.6722
8.65445
17.264
23.5466
14.8417
93.4401
42.9974
0.373055
0.198044
0.37683
0.219733
0.440015
0.222562
0.333685
0.54117
0.526347
0.198314
0.200675
0.563065
0.193031
0.532715
10.5005
150.271
13.1167
15.5393
7.20798
0.564263
0.193161
0.65742
0.196735
0.594037
0.620869
0.190419
20.2228
18.2066
20.8866
16.1526
0.300367
0.151788
0.267751
0.171299
0.151141
0.293864
0.261003
19.208
21.5434
18.6823
22.2168
5.27549
21.4621
22.4036
4.2603
22.9728
4.97291
4.47737
0.329663
0.138545
0.129622
0.323734
0.138276
0.347675
0.309942
14.4751
15.6125
17.8343
11.384
0.539231
0.163408
0.186412
0.40184
0.497776
0.18065
0.428836
38.4625
41.5929
0.578564
0.157323
0.179074
0.46387
0.639276
0.177941
0.455717
0.694503
0.19512
0.74607
0.226481
0.881227
0.644436
0.19924
24.8585
19.4301
21.7822
20.9844
7.73923
36.2505
53.6654
8.75615
36.4419
12.1492
7.1545
4.72494
18.308
22.2358
4.0838
22.3024
4.84069
3.84711
5.53555
12.7092
9.22186
8.15269
35.3704
11.3237
11.4545
34.7753
1.54951
0.425315
0.951035
0.593004
0.870312
0.602924
1.67245
32.9318
29.8808
8.7007
3.0654
2.00133
6.17073
2.97576
5.76446
9.49268
8.35881
4.73285
2.6936
1.8294
8.1981
2.70082
4.86776
98.888
1.93674
0.413964
1.05951
0.597554
1.04945
0.595814
1.95594
34.0574
33.9302
0.828408
0.31096
0.85251
0.273425
0.978992
0.277284
0.717865
0.762632
0.731382
0.266026
0.244387
0.854525
0.262003
0.640203
16.6686
25.1709
10.1076
9.60864
242.77
250.065
74.3239
0.626386
0.286344
0.255557
0.473955
0.264631
0.517682
0.573714
1.02816
0.364328
0.970316
0.321321
0.350386
1.129
0.863218
1.15323
1.1686
0.406854
0.358557
0.377466
1.25491
1.01225
23.4803
39.2828
12.8768
14.4348
266.628
254.264
78.7322
0.881587
0.329896
0.362771
0.64758
0.347041
0.797404
0.737286
0.546523
0.712819
0.284725
0.322815
0.652133
0.5986
0.315775
18.9364
48.7748
264.884
17.7646
84.4509
26.5289
10.2516
23.3643
59.8278
393.374
25.8342
107.46
37.3028
12.0349
33.9776
76.2047
43.347
45.0113
9.67803
3.12013
2.05672
6.26965
3.07965
9.75561
6.20859
10.7672
6.90367
3.58926
2.22704
11.1467
3.39178
6.70205
260.486
17.7957
9.41429
249.304
26.824
78.2275
354.843
22.5953
11.9722
412.772
34.6147
103.56
35.5875
36.7909
32.009
13.9832
14.2861
19.8817
235.996
44.9683
116.632
20.677
19.2159
28.6017
242.045
44.5944
75.0686
0.409861
0.480429
0.215398
0.242957
0.490778
0.42134
0.241345
15.3298
192.872
13.8255
46.998
19.0053
111.004
8.96204
17.1667
248.289
17.347
45.9818
24.8526
78.3293
9.43936
4.28542
4.57206
8.84667
8.79962
14.9584
3.96124
4.00466
2.57317
2.70478
5.52528
4.94755
4.29252
2.37867
2.67044
5.92719
35.7567
7.87112
37.1854
6.62276
33.9261
6.62573
4.22131
3.57324
23.1671
8.18151
21.1836
4.47155
2.66708
6.21385
39.2374
9.99205
37.5005
7.76299
31.197
7.33306
3.94132
3.75916
23.3895
8.33641
15.7063
4.68089
2.8768
5.06128
40.5211
14.047
8.14996
4.98792
14.3084
8.25798
0.294714
0.634497
0.387174
0.921595
0.386023
0.295239
0.634054
0.298337
0.394409
0.601633
0.882273
0.30056
0.390497
0.607566
0.382705
0.826776
1.11013
0.501143
0.480389
0.789658
0.399119
0.35407
0.442809
1.05809
0.723838
0.446856
0.349122
0.745368
5.24185
49.3139
19.5903
7.92015
5.18711
19.8681
8.01789
0.292493
0.641065
0.385933
0.952673
0.29254
0.385371
0.647274
0.298472
0.397312
0.680537
0.976199
0.30539
0.390412
0.663276
1.41388
4.46416
1.26847
4.00719
1.42017
4.58541
1.2469
3.14628
19.0577
11.378
3.59662
14.6625
3.89161
2.80128
1.49346
1.65551
2.75569
2.67755
3.14995
1.42384
1.67966
1.18779
3.06357
1.17886
3.10167
1.13016
2.92119
1.22068
2.46282
11.7271
8.06756
3.28366
5.41549
2.96053
2.49568
19.3754
4.24865
21.5686
4.0063
21.6293
20.3849
3.83347
4.94735
4.307
1.77946
1.43146
5.56662
4.01016
1.6559
2.15351
6.63822
11.8341
3.29682
2.2101
6.37889
3.21743
0.356765
0.258442
0.641078
1.00854
0.262164
0.353783
1.02907
0.37755
1.11982
0.28312
0.7365
0.382929
0.278023
1.22215
1.7096
7.74942
5.21901
2.42962
1.69131
5.34721
2.45992
35.9847
16.333
3.37329
6.83959
5.25985
13.1047
85.9127
3.71751
1.27952
3.86526
1.39213
3.67854
3.94306
1.26681
11.6724
2.79983
1.99375
5.69008
3.0073
6.08954
10.6602
3.303
3.33408
1.39832
1.39598
3.62251
3.06189
1.31225
8.28699
37.7649
5.39922
5.94669
7.58326
0.903719
0.411054
0.679829
0.315833
0.640211
0.962772
0.392711
14.9174
8.61377
8.20332
16.0545
0.845732
0.551614
0.285971
0.347415
0.595981
0.358189
0.781031
20.8127
4.49935
21.169
4.12574
20.7029
20.7582
4.23291
7.17077
3.37738
1.29575
1.73275
4.06019
5.59024
1.85218
5.33599
1.69465
4.19922
1.53174
5.11603
4.37674
1.71873
8.40368
2.61932
1.68818
5.14599
6.769
2.43381
9.82982
29.0761
31.074
7.76401
4.77883
2.09921
1.56169
8.54936
4.98634
2.12197
7.1928
30.4059
5.17454
5.06897
7.29561
0.623384
0.267395
0.437832
0.20981
0.623414
0.267715
0.436957
5.90873
14.623
36.4937
3.69806
5.79222
37.8219
3.76206
0.637742
0.464241
0.222137
0.295323
0.282162
0.449561
0.653876
2.58926
3.02424
1.80283
1.5561
2.68514
2.84874
1.79516
0.17504
0.648137
0.180864
0.60331
0.185483
0.597439
0.172185
0.162497
0.364923
0.383162
0.176977
0.394255
0.160373
0.175971
0.156621
0.141333
0.500098
0.377505
0.448239
0.154684
0.148638
0.122291
0.337038
0.114108
0.3029
0.115675
0.330175
0.121913
0.131952
0.144673
0.298708
0.295398
0.31758
0.132191
0.145133
0.166784
0.712022
0.177829
0.614145
0.17828
0.640493
0.168871
0.145788
0.537467
0.12268
0.403723
0.142976
0.527409
0.127365
0.149443
0.136804
0.521329
0.413414
0.525124
0.152624
0.132332
0.191676
0.163564
0.264479
0.280027
0.262706
0.190821
0.164349
32.4418
6.62876
39.5964
7.55459
32.7897
37.1865
6.02966
4.96676
2.05627
2.3664
3.59934
3.86796
2.19085
4.26727
13.3146
13.5912
4.52266
4.19284
18.8969
8.66146
4.18302
4.08724
6.87717
2.13999
1.57792
1.54544
6.6331
4.30755
40.425
10.5685
76.0679
10.1318
47.9778
45.978
8.10631
6.47251
2.88487
4.6452
2.55055
4.89269
5.66811
2.70574
14.4125
14.0923
4.77357
4.40257
20.0681
9.15555
4.48282
19.6785
5.027
3.37484
10.7655
5.01818
10.7554
19.6971
19.2161
10.3993
4.97764
3.32262
19.2031
4.98077
10.4451
198.003
6.95814
85.825
13.4428
60.9103
19.4905
222.137
9.12408
239.323
16.9982
73.299
24.4967
28.9147
19.5389
4.97237
5.1492
24.4237
25.2379
5.63505
4.84849
1.73299
2.354
7.55882
1.73007
7.55077
4.85836
4.65234
7.22023
1.66466
2.30198
1.67373
4.57366
7.30403
16.8953
8.75568
4.98117
5.04403
26.0139
26.2763
3.95903
0.236947
0.578214
0.593769
0.227744
0.739363
0.237752
0.217106
0.257424
0.271969
0.891569
0.847268
0.86198
0.268491
0.256933
0.289754
0.746517
0.765144
0.261955
0.969922
0.263055
0.273442
0.298766
0.283787
1.0302
0.939927
1.01198
0.303901
0.27666
0.298003
0.472768
0.50096
0.254865
0.458385
0.255501
0.299631
0.281741
0.55158
0.579482
0.320975
0.604921
0.279599
0.323863
0.257453
0.270489
0.699471
0.690055
0.619985
0.250859
0.26544
7.41477
2.4653
3.33726
10.7485
10.4426
2.41328
7.63733
6.72982
9.15599
3.04434
2.13665
9.55556
2.17661
6.41795
20.0576
5.11359
3.44803
10.851
5.15103
19.9061
10.8465
35.4568
15.4775
6.64582
4.10521
39.2597
6.46049
13.3335
4.87115
1.75806
2.39244
7.60576
1.75581
4.89331
7.58135
6.31162
8.34616
2.05266
2.79832
2.00172
5.87864
10.7466
0.235825
0.352803
0.201582
0.348482
0.199406
0.332885
0.237583
0.225463
0.407308
0.266558
0.400145
0.224897
0.413446
0.268546
0.440338
0.894738
0.548977
1.26918
0.545771
0.441857
0.915473
0.454109
0.563632
1.29462
0.915138
0.562172
0.455441
0.922921
5.55109
48.1077
19.8401
8.27176
5.54494
19.8944
8.2762
0.482067
1.01656
0.605102
1.38241
0.591546
0.490012
0.993925
0.464375
0.574972
0.941564
1.32911
0.467518
0.567673
0.956387
0.402805
1.0023
1.31256
0.521876
0.504762
0.938977
0.414319
0.407671
0.517909
1.29847
0.92487
0.51051
0.412866
0.927225
5.31932
45.789
19.2026
7.82119
5.31648
19.3144
7.82552
0.464084
1.02835
0.594272
1.43724
0.47779
0.575503
1.01946
0.438429
0.538851
0.938499
1.3796
0.433494
0.543299
0.977814
17.6979
106.269
22.2568
42.4451
1.98095
1.43297
4.29691
7.17488
1.48754
1.8895
5.70259
0.578141
0.305519
0.738256
0.358735
0.56098
0.304649
0.772305
2.37858
8.92642
1.82247
6.88559
2.46331
1.78149
7.86435
13.4899
24.2895
12.322
31.2219
0.56554
0.739954
0.28363
0.345564
0.552691
0.286795
0.758658
0.722058
0.153464
0.630062
0.161358
0.665316
0.65789
0.163034
25.7514
90.1152
87.6798
1.62619
0.554849
1.03175
0.44452
1.51925
0.559893
1.09254
115.383
0.587812
0.166106
0.584873
0.161513
0.58779
0.593786
0.167461
8.13601
2.6127
11.2687
3.61242
11.4318
8.00451
2.63398
8.67088
15.3164
3.85122
2.91318
14.3669
2.85253
9.41836
164.137
8.8539
7.47976
41.1306
11.4109
33.9445
51.4494
23.7757
7.80059
5.51865
51.254
7.81736
23.9634
10.0662
3.39616
4.93294
18.0592
3.44297
17.2021
10.5824
9.9368
15.9432
2.99332
4.06067
3.01215
9.82674
16.1151
14.7246
3.97416
5.23598
22.1132
21.5829
3.88675
15.146
11.1551
17.5665
4.76969
3.36036
18.2434
3.43356
10.2964
9.73722
7.37066
42.632
10.0894
44.1125
41.2519
9.5754
6.9586
9.59503
41.3145
30.4838
30.9511
30.0936
31.5413
0.550238
0.211558
0.229524
0.634059
0.760779
0.22102
0.48304
0.597764
0.26258
0.291994
0.596565
0.877231
0.25893
0.468751
0.812397
0.858185
0.262258
0.291059
0.845559
0.92726
0.263555
39.8439
57.5866
102.865
33.8134
39.0078
39.9317
46.1784
36.5743
10.6921
3.50172
4.97902
18.4207
3.53495
10.6847
18.5514
10.0168
17.3163
3.32952
4.68094
3.32341
10.0639
17.3015
0.746564
0.215736
0.774002
0.233328
0.737194
0.766189
0.227205
0.747545
0.218997
0.232876
0.771458
0.793306
0.224546
0.764418
0.738379
0.77179
0.244021
0.253975
0.734935
0.785253
0.238954
246.374
0.918895
0.328453
0.306751
0.825011
0.940742
0.323808
0.973822
0.850951
0.78093
0.281039
0.294058
0.792763
0.879098
0.301027
253.364
49.1402
75.9416
121.696
0.429795
1.07287
0.540716
1.56703
0.544208
0.427085
1.10218
0.351286
0.623123
0.292176
0.838986
0.289851
0.353934
0.822191
0.439145
0.556692
1.61046
1.15465
0.55418
0.441839
1.13102
5.98043
50.436
24.0498
8.27547
5.95343
24.1131
8.31646
0.373085
0.677216
0.305123
0.870342
0.309709
0.368469
0.88922
0.474255
1.24193
0.59459
1.75636
0.593382
0.476345
1.24579
0.46331
0.575174
1.1931
1.7187
0.458267
0.580686
1.21684
0.493291
0.833809
0.409238
1.03477
0.422175
0.476694
1.05231
5.78563
47.9489
23.0528
7.94042
5.77673
23.0692
7.9603
0.436965
0.757545
0.374371
0.990131
0.37008
0.438648
0.969918
4.24739
18.4762
4.0838
18.3724
4.30328
19.4714
3.9651
14.3671
7.5838
59.2177
8.96544
128.014
9.92162
12.6862
16.5318
16.6677
12.5372
4.34608
18.9085
19.4922
4.44019
18.9979
4.25438
4.5062
0.835506
0.316404
0.674766
0.385492
0.874961
0.646276
0.370133
11.2887
7.11377
7.2341
11.1879
15.8475
11.263
16.0194
11.1824
4.00085
15.3145
16.2939
4.02585
15.357
4.04592
3.98201
2.47753
1.98348
8.9297
8.9847
7.34008
2.23317
2.22016
3.59825
10.9468
10.662
3.49624
11.0462
3.42124
3.65478
3.48931
16.1198
14.5571
3.36825
15.0797
3.23182
3.53396
4.16857
15.3582
17.0575
4.11457
4.23324
15.6135
4.11309
4.89334
5.58297
20.2686
27.6988
4.70116
5.90899
19.517
3.66163
10.7698
10.3372
3.52736
3.51437
10.593
3.68171
8.48223
14.9672
12.6019
10.887
3.79722
17.2084
3.97162
18.0966
3.83969
3.92548
18.0604
3.51934
3.52898
18.0489
18.8099
3.42842
18.4417
3.65305
3.39006
17.0576
3.38695
17.8309
3.32219
3.49792
17.9035
4.16762
18.9037
4.37226
19.6381
4.17919
19.0067
4.36945
22.4525
21.7472
23.5767
20.1603
18.1973
13.2722
17.8612
13.5907
22.4784
21.1023
21.1971
22.4184
11.5298
29.6149
8.33064
8.8769
16.4046
4.22289
23.6074
5.75294
24.2328
16.1097
4.27377
18.0314
42.7365
6.97467
4.96689
41.4007
4.86233
18.973
23.7382
20.4762
24.827
18.18
28.2736
30.0525
28.2744
29.5105
0.327202
0.270294
0.403621
0.229004
0.353082
0.33585
0.269942
12.5962
116.68
15.5601
11.1789
15.7217
28.2211
34.8342
30.0209
29.8064
15.4503
9.88703
15.6646
15.6177
9.83411
15.6495
26.2539
22.0366
23.6344
25.3895
0.290041
0.15239
0.260685
0.167236
0.296234
0.26338
0.169619
56.881
58.3769
0.359542
0.206342
0.531769
0.202164
0.573286
0.348909
0.181787
22.8464
20.9486
21.5189
22.1663
56.6321
61.903
238.29
34.3544
0.283413
0.268341
0.192278
0.225836
0.263735
0.280016
0.193271
21.9672
5.26888
7.36802
45.2812
5.31261
45.6859
21.7619
21.6492
44.4932
5.12668
7.30504
5.22129
20.4407
45.881
14.6274
19.8659
17.6902
17.4025
5.48253
5.11614
31.0224
29.5842
5.3501
30.239
5.23972
8.6515
51.4734
9.28996
36.8683
7.06888
11.3067
39.1619
15.9338
243.514
16.0273
34.9032
28.5819
61.6713
7.80003
4.02184
26.7452
26.2918
3.95032
26.7782
3.99108
3.98506
7.2381
21.6297
43.3558
258.97
10.2918
13.3766
39.0114
4.74458
22.0413
20.5601
4.63743
4.69988
22.0095
4.68732
12.705
49.3367
22.3401
7.45069
85.9154
13.3111
34.637
6.42761
10.2478
159.594
7.27079
38.6286
22.3708
44.6995
7.32293
5.41281
44.7288
5.43518
22.2394
15.48
9.80661
15.4772
15.0795
9.63139
15.0988
4.066
3.93369
25.2904
25.3836
24.9142
3.95731
4.03672
1.98882
1.46687
5.23569
5.776
7.01557
1.56879
1.7203
3.66185
12.3013
7.50133
3.80675
9.65105
3.49606
4.02892
4.54535
23.5762
19.7508
4.67023
21.4578
4.60558
4.57775
21.6578
5.29306
7.3226
45.1873
5.29508
21.7031
45.0902
21.4885
44.3438
5.33227
7.23175
5.29292
21.863
44.0943
3.93752
26.4729
3.84405
25.7936
3.9027
26.3538
3.87135
3.72345
3.58372
19.5026
19.4435
3.73352
20.1839
3.58524
4.61154
22.0288
4.56351
20.7584
4.55902
4.61043
22.1386
3.28674
15.2061
15.9303
3.60955
17.7344
3.33704
3.48223
4.18513
26.0992
4.04752
25.9606
4.07962
26.0822
4.15798
5.26861
5.14807
29.6473
30.1921
5.24865
29.7592
5.17478
5.21743
31.5228
8.55624
30.2551
5.97221
6.44042
28.5274
4.77268
25.398
25.5076
4.74435
26.2394
4.74083
4.77073
0.233828
0.705256
0.279495
0.545224
0.229513
0.276236
0.555663
0.274971
0.687796
0.312096
0.551525
0.260886
0.318073
0.547302
0.574269
0.960651
0.489754
1.22764
0.49576
0.566847
1.21645
5.80117
45.3741
22.6014
8.01314
5.88138
22.298
7.87126
0.54579
0.957339
0.47628
1.22514
0.468724
0.553243
1.22217
0.39815
0.910536
0.335753
1.16752
0.332142
0.402224
1.19511
4.80382
23.0904
19.4316
5.85708
4.77625
19.3677
5.869
1.82347
1.53437
5.44655
4.22334
1.82378
1.51732
5.3788
0.442644
0.872738
0.369769
1.14917
0.375123
0.437037
1.12584
25.2984
4.43885
6.59993
22.8234
19.284
5.50338
40.0007
51.0992
41.6856
5.16027
8.70844
16.7776
206.061
6.8948
11.387
3.63961
6.41949
3.38595
10.4408
6.96006
3.90177
14.9833
14.3805
13.7286
0.124498
0.102287
0.5989
0.56802
0.635123
0.112017
0.111168
0.129976
0.601238
0.592822
0.119468
0.646188
0.118751
0.128043
17.4798
3.79133
17.2595
5.51888
15.1607
24.8455
4.04682
3.92337
1.66547
1.36882
4.86081
1.3869
3.85642
4.92405
16.424
17.1866
3.65432
3.76995
16.4528
3.6928
17.1698
14.4539
3.56083
13.8626
3.52496
13.805
14.4949
3.55083
22.5801
11.2343
34.1182
5.08469
43.7513
5.42981
23.0623
8.48657
36.5415
7.3902
8.17928
145.321
128.801
18.0575
19.0253
18.1918
3.64987
1.60785
1.34775
4.78407
1.33075
3.77079
4.64919
15.8604
16.6324
16.6373
20.6075
11.7928
114.694
11.6947
195.259
1.35504
2.90515
1.4565
2.47397
1.32464
2.79995
1.48802
1.08534
3.73475
1.07387
3.62424
1.05288
1.08908
3.59751
24.7351
25.6822
26.3539
41.8891
6.93637
9.42919
40.0729
7.15872
6.84036
1.82103
5.10439
2.23396
5.05608
2.22222
6.91896
20.612
20.1923
21.3507
42.9121
9.68391
7.40798
7.38528
42.9277
1.34973
3.17659
3.40283
1.25466
3.3366
1.2659
1.36034
1.38188
1.42053
4.21493
4.6454
4.40866
1.38869
1.44389
4.19059
7.29516
28.36
4.31096
21.3786
4.9657
3.82108
23.7691
23.5773
23.6344
19.9686
14.1044
19.6547
22.7469
22.839
23.571
26.5077
25.9311
26.0384
18.9997
14.6703
18.9959
23.593
23.3963
23.4945
1.1947
3.42195
3.56317
1.16894
1.12811
3.89087
1.21359
2.76557
3.18474
13.5284
17.4241
2.70454
3.20405
14.3556
1.12428
4.0224
1.08522
4.23448
1.12466
1.08218
4.2432
3.5656
9.79849
13.7929
3.92581
3.66933
12.1982
3.6944
24.3769
24.1056
24.1977
19.8961
20.7897
20.7824
6.95196
1.83157
5.12665
2.23989
5.13313
2.23813
6.94695
42.0516
7.20661
9.28803
7.18029
42.1209
20.5188
19.5672
20.4628
42.8743
7.43224
9.71905
7.41736
42.9894
24.0311
24.1558
24.1041
1.91673
2.3964
1.6486
2.41438
1.67819
1.8962
2.3515
192.907
9.48262
6.05467
8.75305
9.40079
14.1873
9.32215
8.5125
2.05516
2.52252
6.52914
2.56302
6.6059
8.41381
18.5728
17.8706
3.82376
3.80405
17.8805
3.85409
18.5378
13.2608
8.28531
8.69159
28.3314
9.2942
42.2135
5.23488
24.8636
77.9208
5.64643
21.9541
3.66962
22.394
3.70767
22.5417
3.77206
21.7906
9.99172
28.4214
204.737
7.51069
20.0601
14.1527
19.9377
21.4937
17.6278
19.1878
20.9278
14.9829
20.4365
23.0159
23.0282
22.3984
30.8491
4.97777
27.981
5.52828
27.8029
5.98307
30.2346
11.9591
12.3103
14.0968
19.9899
20.7713
20.8447
8.14893
1.99302
2.4701
6.45077
2.50294
6.28725
8.33135
41.9368
7.20932
9.27153
7.16962
42.1233
147.608
7.52014
10.2219
9.33779
9.13447
12.4701
200.3
13.449
23.6673
24.0138
23.8078
0.204853
0.742485
0.590947
0.245636
0.588638
0.204963
0.245383
0.203556
0.742013
0.591051
0.242957
0.591192
0.203295
0.243011
0.220317
0.853547
0.261
0.667015
0.219438
0.262068
0.675011
0.214942
0.818914
0.257817
0.653829
0.216467
0.256288
0.646319
0.363139
0.961539
0.2986
1.25571
0.298377
0.363327
1.25446
4.81206
22.5681
19.4274
5.92944
4.882
19.1496
5.8371
1.86147
5.59479
1.58032
4.52107
1.57814
1.86417
5.54898
1.84973
1.57111
5.71102
4.56248
1.86584
1.56173
5.64901
0.357797
0.957491
0.295105
1.25875
0.294555
0.35918
1.24741
4.88107
22.3477
18.9095
5.8575
4.85596
19.0065
5.89159
1.88239
5.64317
1.58995
4.64626
1.87318
1.59762
5.69788
1.92148
1.63243
5.78705
4.73736
1.91837
1.63376
5.7987
0.0565568
0.183081
0.0553219
0.17345
0.0552486
0.175431
0.0561515
0.0601656
0.0723013
0.207381
0.182429
0.0662836
0.180128
0.0632585
0.0580086
0.189217
0.0601112
0.198578
0.0622023
0.0569179
0.182347
0.058137
0.167566
0.162319
0.0599397
0.16903
0.0578731
0.0602827
3.02586
0.538849
2.22092
0.693706
3.28202
2.08373
0.672815
12.9123
4.20995
1.43604
1.92378
4.06789
13.1444
1.73988
16.9424
1.46223
3.24411
1.31645
8.7994
3.797
1.59142
3.78519
1.05905
1.23139
3.81168
4.03111
1.13435
3.57159
7.22318
2.69342
2.24758
9.12828
2.20638
7.14879
8.98647
3.09867
0.792129
3.02552
0.751197
3.12154
0.769988
2.98521
0.0555926
0.203526
0.0594455
0.231869
0.0576248
0.0564924
0.236025
3.80345
5.39642
1.14868
0.974965
4.84829
0.935427
4.00567
6.87464
2.57793
2.13988
8.91797
2.09861
6.98174
8.7791
3.55372
1.00526
1.04118
3.76734
3.81904
0.967322
3.52205
3.16382
0.806729
0.790343
3.06751
0.814387
3.1443
3.10982
0.0587498
0.0634927
0.196187
0.139699
0.0599371
0.183468
0.0615305
0.0577788
0.158955
0.0598879
0.146007
0.0572416
0.193886
0.0597912
0.132541
0.490024
0.141223
0.502713
0.131702
0.486878
0.142996
0.117295
0.0931494
0.387251
0.351593
0.104865
0.427932
0.103825
0.122646
0.483244
0.116639
0.443123
0.112775
0.124156
0.469597
0.129367
0.502674
0.398
0.130828
0.467002
0.141949
0.116383
21.0983
3.46463
3.44287
21.45
21.5868
3.51963
20.996
9.44388
14.3514
9.45793
18.2995
17.6648
3.70326
3.76585
17.6644
18.309
3.73528
12.9593
2.56424
8.84481
3.16043
8.86009
3.15829
12.9565
18.343
3.51743
3.52982
17.79
17.7663
3.56633
18.351
21.4269
3.56301
22.0974
3.68509
22.0281
21.4868
3.65689
14.0761
9.40382
9.38028
0.162588
0.550036
0.500636
0.148695
0.544479
0.147217
0.162198
0.178418
0.192548
0.613506
0.569275
0.577299
0.194799
0.177594
0.177977
0.598063
0.635872
0.194556
0.587339
0.195144
0.177504
21.3208
3.40981
21.5723
3.28432
21.459
21.4471
3.35296
21.0887
17.648
20.968
11.1746
6.62285
3.56071
3.37321
9.8471
3.36289
7.66191
20.5538
3.60049
20.6111
3.66568
21.1432
19.9114
3.5735
21.9034
17.7717
21.6466
16.8686
2.95154
14.2795
2.80036
17.4884
2.99601
13.4239
0.131135
0.493222
0.490877
0.13767
0.13031
0.496244
0.137895
0.124652
0.492954
0.118683
0.499859
0.120142
0.124363
0.500272
21.0023
3.46906
21.502
3.35634
3.42236
21.068
21.3985
11.8159
9.57357
2.07552
1.7701
10.3699
2.21354
10.0856
13.2002
2.70428
8.83918
3.20056
8.8772
3.39703
13.0222
12.8535
15.867
12.736
18.5043
3.49388
3.39116
17.9132
17.9497
3.44336
18.4738
9.568
14.4442
10.2541
17.4532
2.90838
2.37935
14.4099
2.7854
17.6859
13.7375
0.170289
0.561242
0.15223
0.526386
0.154896
0.166644
0.575848
0.183571
0.17225
0.720538
0.625466
0.196687
0.651964
0.166534
0.18651
0.61701
0.20082
0.714998
0.20371
0.182936
0.638098
0.169101
0.538948
0.144844
0.575224
0.154939
0.590539
0.15715
0.0735189
0.163505
0.184483
0.0773897
0.173674
0.0715855
0.0798951
0.0735147
0.079743
0.192991
0.290098
0.0676879
0.0883266
0.21037
0.0679344
0.159638
0.161551
0.0628492
0.0635767
0.165976
0.0667279
0.0805578
0.260674
0.332979
0.110102
0.0982825
0.232741
0.0887981
3.10172
3.11342
0.77413
0.759981
3.06815
3.14666
0.761338
14.001
15.2978
14.2025
15.6195
3.28255
4.25
13.3735
3.90631
12.7283
17.0626
16.136
13.6745
14.3075
3.04249
0.764693
3.04816
0.748433
3.00545
3.08596
0.750063
2.75656
0.820834
2.7777
0.80152
2.70677
0.797817
2.83023
3.13866
3.12008
0.810172
0.793297
3.05566
3.20294
0.812063
21.3005
17.9593
21.4231
6.95828
12.9184
3.0591
1.63786
13.3114
1.83592
6.11439
21.3157
17.8702
21.4156
5.36567
2.41248
9.83679
2.62494
9.04555
6.0425
2.79355
3.10287
0.904078
3.00757
0.931874
3.04743
0.903589
3.05756
0.0949947
0.0857457
0.156313
0.164599
0.162346
0.0860785
0.094437
0.116547
0.133727
0.18285
0.180046
0.169444
0.117934
0.132478
0.103383
0.153321
0.17293
0.0942772
0.159934
0.0927379
0.10487
0.105723
0.172811
0.181134
0.117827
0.171185
0.105013
0.118579
3.26903
3.1693
0.789274
0.806064
0.804458
3.19997
3.2466
4.55297
6.05152
1.03825
1.39925
4.25248
7.03498
1.10612
15.7116
3.15834
3.8548
12.9824
3.75688
12.7224
16.1916
13.0122
16.0409
13.1
13.2697
15.935
13.1485
3.17679
0.777136
0.785755
3.0928
3.13979
0.78498
3.13033
7.47088
2.09149
2.0142
9.83219
9.14369
1.84237
5.77096
0.0726132
0.152664
0.0783622
0.152514
0.0723242
0.149481
0.0787244
0.0705668
0.0670216
0.138591
0.147979
0.065526
0.140998
0.071717
0.0673571
0.150129
0.063095
0.144778
0.0631354
0.0672161
0.146544
0.0766891
0.148857
0.153899
0.0853165
0.145051
0.0839432
0.0779957
0.0943208
0.195606
0.084047
0.179757
0.0869618
0.200017
0.0916302
0.108016
0.135135
0.480119
0.245474
0.133974
0.267176
0.113968
0.10326
0.292908
0.122348
0.491741
0.130618
0.0971543
0.296559
0.102357
0.187641
0.202847
0.111363
0.200444
0.100616
0.112054
0.171158
0.527172
0.437921
0.145677
0.146739
0.528487
0.169882
0.207037
0.845744
0.703155
0.248782
0.675192
0.210156
0.244966
0.175553
0.152549
0.45152
0.565394
0.150474
0.545641
0.178068
0.189656
0.608961
0.49722
0.162642
0.601706
0.162503
0.189935
0.217957
0.913277
0.716566
0.253433
0.729246
0.214328
0.257684
0.184837
0.155774
0.485658
0.577441
0.587729
0.158424
0.181749
0.190534
0.663633
0.546437
0.163488
0.164127
0.660853
0.1899
0.223316
0.976454
0.260259
0.781122
0.222222
0.260921
0.797115
0.191375
0.163933
0.539134
0.635914
0.165022
0.190064
0.651516
0.183787
0.605649
0.159765
0.500314
0.186546
0.157752
0.604759
0.214555
0.932373
0.255556
0.764493
0.217798
0.251966
0.751565
0.182917
0.160176
0.503953
0.61964
0.157505
0.185929
0.60734
4.40662
19.4927
16.7226
5.21222
4.38452
16.8023
5.22841
2.08515
6.83562
1.74089
5.27588
1.7467
2.07833
6.85273
1.97658
1.63231
5.95076
4.96707
1.92865
1.66299
6.37909
1.30815
3.72878
1.48929
4.35082
1.49469
1.30344
3.7387
1.25367
1.41336
3.53733
4.13531
1.24486
1.43034
3.57491
1.26929
3.56973
4.14044
1.42444
1.43524
3.59183
1.25981
1.26495
1.42831
4.12745
3.55782
1.4329
1.26095
3.57505
4.23424
18.4425
15.8994
4.98524
4.23125
15.9401
4.99016
2.04913
6.76426
1.72439
5.15231
2.05939
1.71519
6.69096
1.9591
1.64806
6.39258
4.93284
1.96215
1.64495
6.39273
1.28412
3.69267
1.475
4.25107
1.29153
1.46657
3.65671
1.24572
1.41629
3.54074
4.08505
1.24921
1.41323
3.53326
5.49502
1.58565
4.59606
1.37612
4.54464
5.59837
1.58451
13.0991
3.65251
3.15551
14.2501
3.18022
12.9484
14.2926
4.82892
3.66367
1.28904
1.40371
4.20357
1.45845
4.18293
12.7496
3.58711
3.12414
14.1877
3.10267
12.8403
14.0872
3.87519
3.4305
1.18125
1.36041
3.3557
1.33655
3.95289
13.8369
14.7982
13.7549
16.8524
3.7127
14.7057
4.57331
14.3742
4.43929
17.3049
15.5941
15.329
14.8064
36.0272
18.4141
36.1246
32.6853
17.543
33.3941
17.6548
3.83761
14.932
4.59638
15.0241
4.59536
17.561
14.7174
15.7395
14.7642
14.493
15.2124
14.38
13.9511
14.8004
14.048
32.0366
4.38113
5.65064
16.7677
5.67465
16.7034
32.152
14.8807
14.0668
14.1161
35.726
18.0214
35.3461
33.8074
17.2879
33.844
31.664
4.29953
5.61412
16.7573
5.55149
16.6011
32.1077
14.6007
15.391
14.4436
14.0227
14.791
14.0151
0.185024
0.656392
0.540099
0.160243
0.158883
0.655958
0.18644
0.181461
0.152938
0.541317
0.655479
0.155695
0.659221
0.178161
0.181868
0.706001
0.565323
0.159163
0.185006
0.689097
0.156465
0.176329
0.150201
0.541883
0.649815
0.660687
0.151713
0.174814
1.24076
3.52739
1.40743
4.03277
1.40132
1.24616
3.5048
1.20785
1.34908
3.9485
3.42229
1.35984
1.19839
3.44033
3.88492
16.8284
14.5962
4.59249
3.90812
14.5193
4.56347
2.1272
7.48029
1.79321
5.75643
1.7655
2.1654
7.16089
1.8356
1.54658
6.01164
4.67785
1.8374
1.54516
6.01501
1.29493
3.89745
1.50254
4.51345
1.48385
1.30707
3.80699
1.18181
1.33235
3.39802
3.89896
1.18435
1.33039
3.39822
1.30421
3.84033
4.58123
1.4725
1.48809
3.8649
1.29009
1.30114
1.48694
4.58722
3.86082
1.48642
1.30081
3.86318
4.05261
17.0486
14.5523
4.68067
4.00222
14.6578
4.74485
2.19609
7.58313
1.80807
6.09884
2.18456
1.81712
7.63797
2.16181
1.7807
7.35756
5.91436
2.14482
1.79299
7.38861
1.32023
3.93582
1.51329
4.73438
1.31576
1.51977
3.96041
1.31426
1.49573
3.87124
4.61756
1.30717
1.50507
3.88212
13.8224
14.4164
13.693
5.14841
28.8936
6.75371
27.7129
6.50425
14.0504
13.329
13.3916
29.6842
31.6954
16.2964
31.8398
5.35074
29.076
6.7959
29.1118
6.81297
13.7368
15.6301
13.5284
13.2657
13.9387
13.2765
13.0008
15.3039
13.0938
6.19369
8.40282
9.09163
15.5129
13.307
13.2778
31.81
30.6729
5.61438
7.51847
111.293
34.7725
6.96309
13.8472
16.2401
13.8864
13.342
15.6599
13.3968
1.23796
3.76327
1.43085
4.38138
1.4115
1.25375
3.70036
1.24091
1.46925
4.47169
4.21406
1.42223
1.27212
3.7525
3.57289
14.7621
12.9389
4.19835
3.60103
12.8302
4.16366
2.20461
9.33976
1.87406
6.58507
1.86409
2.21756
9.30164
2.13796
1.77146
8.3112
6.22092
2.09911
1.80473
8.83917
1.32569
4.19607
1.56345
5.30572
1.55586
1.33148
4.17366
1.29028
1.48535
3.84961
5.04124
1.27716
1.50895
4.00239
1.3139
4.205
5.2893
1.53381
1.53793
4.18915
1.31001
1.29861
1.52924
5.25098
4.15826
1.52332
1.30337
4.14297
3.62086
14.3838
12.5291
4.18625
3.58841
12.6579
4.22303
2.21862
9.36879
1.87584
6.66501
2.21902
1.8764
9.40102
2.20356
1.84886
9.27907
6.64545
2.18454
1.86424
9.35733
1.33372
4.2157
1.56519
5.37599
1.33321
1.56574
4.23377
1.32468
1.54314
4.19584
5.36319
1.31477
1.55526
4.22702
12.8094
14.6935
12.5745
6.4191
9.45495
9.17701
16.2532
15.5259
13.2664
7.82909
9.41367
9.76339
13.8082
27.1205
13.7593
13.5297
25.5289
13.3677
13.685
26.7784
13.5907
9.4203
10.6884
10.7498
26.741
13.6325
13.5608
9.13154
10.7127
10.7622
13.8815
27.4438
13.9261
13.7493
27.292
13.848
1.30681
4.21107
1.52098
5.46342
1.53521
1.2975
4.31545
1.37685
1.6348
6.13842
4.95237
1.63968
1.37331
4.97304
3.27696
12.5546
10.9255
3.81101
3.26372
10.8814
3.83156
2.18437
10.1762
1.83192
8.83809
1.92712
2.06349
10.6765
2.16968
1.91554
10.1973
8.50904
2.16445
1.92038
10.1562
1.37022
4.85527
1.56507
6.22524
1.63683
1.31704
5.01906
1.3749
1.63318
4.92554
6.05725
1.37212
1.63687
4.91238
1.37534
5.55751
1.59232
7.71608
1.59302
1.37715
5.50378
1.23093
1.42903
5.87168
4.67664
1.44528
1.2117
4.81839
2.6374
9.61449
9.43443
2.95411
2.65237
9.36533
2.93202
1.94692
9.72763
1.7717
7.88848
1.99289
1.73338
9.42005
1.88628
1.67889
9.48974
7.91431
1.87938
1.68422
9.42023
1.25389
4.68138
1.51604
5.61289
1.2782
1.48505
4.55147
1.22413
1.4428
4.63607
5.64537
1.22201
1.44625
4.58918
13.9794
32.4821
15.4077
10.309
10.4555
10.5249
25.1336
25.2609
0.429187
0.398516
0.0787436
0.0862435
0.404327
0.0839498
0.427447
10.3052
10.3853
10.3274
24.2813
24.8872
0.443445
0.0853339
0.0795216
0.466945
0.425125
0.0828633
0.470241
24.9837
24.8873
0.307879
0.0577386
0.388252
0.0719319
0.323644
0.374335
0.0542507
10.3822
9.96298
10.4344
0.206485
0.154224
0.0311797
0.0330516
0.183975
0.174696
0.0362368
0.227855
0.0422135
0.213263
0.0339596
0.241979
0.195037
0.0392199
24.1547
28.395
0.280991
0.066106
0.315664
0.0455218
0.25181
0.349986
0.0500101
0.437152
0.429977
0.0880541
0.0982779
0.095505
0.416165
0.449935
0.423737
0.395265
0.0831695
0.0895532
0.391013
0.426683
0.0909382
9.37686
9.69723
9.51165
23.5713
22.9933
23.3908
23.0936
0.417954
0.0825514
0.0825686
0.360404
0.384107
0.0904874
0.394842
0.440681
0.097478
0.0931199
0.450984
0.441889
0.0952701
0.451299
10.7849
5.5567
13.558
42.6254
4.87768
37.952
13.5
2.04242
1.09838
0.365625
0.858116
0.643611
0.902664
2.68198
7.30614
9.89991
3.36344
22.9693
3.70368
20.6023
6.62432
18.2653
86.7346
6.71433
15.0406
6.23821
20.7152
72.6815
38.0935
32.2135
15.6911
12.3043
4.55773
35.3855
5.22368
39.7948
14.1257
64.2497
40.4166
33.4582
166.985
12.7563
4.71814
38.5857
15.1821
5.10049
11.2972
43.8277
2.98997
1.31005
0.68128
1.30843
1.2494
1.25777
3.11536
1.9148
0.892579
0.783259
0.396181
0.792387
2.20736
0.825248
28.7918
38.3169
13.7125
11.9103
34.5454
8.89156
3.14057
6.01297
17.8221
3.17808
8.79551
18.1406
28.5184
28.6741
4.4545
0.966635
1.6511
0.523885
4.28416
1.69584
1.00627
14.195
10.5515
5.21948
37.9464
5.17658
15.023
36.2421
32.4138
67.2968
13.2618
58.0008
29.9158
7.82088
19.5009
16.569
27.5594
15.1649
137.796
13.9956
31.4541
65.2102
32.8673
66.8995
21.9752
91.6761
81.7636
1.50369
1.01925
0.611673
4.85193
0.56828
1.96809
3.61005
1.44567
0.663442
5.25213
1.09835
0.581123
3.42665
2.05059
41.9666
183.757
26.7629
1.07818
0.778704
0.388914
2.12705
0.447777
2.40134
0.97731
50.2404
6.43765
20.5141
22.3415
13.0642
18.4141
58.9995
0.736422
0.51774
2.85866
0.834524
0.904931
0.444798
1.65319
10.44
52.2527
30.8797
185.615
14.5628
25.1422
28.3156
135.471
54.1106
12.5491
21.3082
50.9491
2.55702
2.38505
0.400026
0.88203
1.18687
0.650263
26.5082
1.45841
0.407393
0.529778
0.300156
0.712166
1.06934
0.513513
71.6257
7.51901
26.5507
22.817
27.034
17.7753
113.013
10.9746
26.3215
25.5033
36.5797
26.2024
191.832
0.772855
1.1557
0.41451
2.09597
0.450042
0.676731
2.54402
28.8575
103.727
26.7204
64.3718
224.541
7.13915
14.6139
18.5541
85.1337
6.62108
16.239
21.5493
2.59899
1.47835
0.564468
1.01607
0.859404
1.32604
2.91239
22.1443
77.8494
26.659
6.82735
9.29628
185.425
14.3003
72.8551
24.5859
20.6832
147.982
2.23099
0.543253
0.707087
0.93838
0.844477
1.18152
1.6353
0.597495
0.745557
0.416206
1.7149
0.382652
0.684671
1.34869
5.63742
11.9504
21.8235
40.3176
6.01973
10.679
16.7744
23.2867
215.114
11.3747
19.1227
8.59062
32.0675
86.9552
34.826
39.0085
20.6656
65.7473
18.1545
164.933
162.087
70.3998
24.3363
19.0383
9.82598
9.76102
10.0442
42.9402
36.0006
79.1733
350.086
74.1437
40.4082
454.82
31.0415
177.366
2.7119
0.565785
0.594432
1.10101
0.822822
1.71076
1.57898
24.4058
159.358
322.184
16.1749
35.0282
34.5188
283.848
37.9771
53.6902
189.718
45.0226
61.9174
2.01706
3.18744
1.2935
0.804654
4.76513
0.808632
2.09033
11.0963
42.2514
6.03637
22.0687
10.9224
46.5355
8.05553
25.2752
200.749
129.818
61.2971
1.63728
0.984663
4.35465
3.50415
6.17459
1.26898
1.25261
7.96905
24.8653
18.7499
8.36213
29.4114
9.70076
7.06472
196.1
76.6971
423.007
29.7597
9.97075
18.0468
9.03909
26.2079
8.61244
29.8198
72.6918
32.0351
22.5987
47.907
162.623
19.6605
32.9969
32.0951
457.66
10.7482
30.6613
97.1213
8.57704
26.2785
29.9153
8.82199
44.27
20.4715
23.5339
7.35897
12.3756
84.9169
17.4759
79.8684
16.954
25.1487
35.4365
30.8599
65.8474
146.133
19.8917
334.626
327.009
0.723292
3.39917
1.83357
0.812688
1.66446
0.977564
0.752028
0.698882
0.763806
2.731
1.48884
0.90676
1.95239
0.627488
12.2519
32.2255
6.67992
7.8959
5.48341
19.9844
32.431
43.1965
119.69
37.1254
144.954
70.7532
286.645
17.9938
67.074
82.5912
33.6324
728.833
66.2795
116.358
224.453
522.835
36.5596
10.7584
12.5975
69.3019
11.2427
30.0086
39.2862
11.368
23.2532
33.245
48.122
13.7696
36.7324
13.3625
1.2716
3.5754
1.84203
9.20408
2.40365
1.25609
3.36568
1.18019
1.73678
0.917599
3.51101
0.7942
3.70303
1.24763
3.57085
7.20925
1.41506
2.39135
1.40352
3.97825
8.35755
2.42219
4.63517
1.26084
1.14207
3.53361
2.98661
0.998816
60.485
221.915
34.2982
281.953
49.3184
51.7658
260.038
601.194
239.614
167.362
72.7753
13.5904
189.912
59.4918
494.755
24.4195
26.3582
188.145
33.6353
26.2836
647.651
45.5039
118.421
175.618
46.793
37.5015
177.241
62.7061
245.676
111.506
200.104
2.69334
0.953245
0.770927
1.55612
0.972696
3.02887
1.82365
168.76
49.7309
200.956
37.778
3.73156
0.980659
1.63118
3.13191
5.78481
1.25768
2.48276
59.3939
15.3232
207.412
102.294
545.136
42.6945
30.3151
1.56342
3.40939
8.50123
2.03076
3.70008
2.36637
1.48781
1.13262
2.10483
3.07078
0.856408
0.872713
3.19213
1.09293
6.16832
11.1527
39.6466
13.6279
11.8285
10.4989
6.57471
2.58765
2.51725
1.19798
0.747333
3.77573
0.910924
1.69798
11.4422
37.6526
15.5763
6.11697
47.0684
6.96123
9.78205
2.0142
0.977767
5.91595
1.26446
4.52433
2.33553
0.900579
18.0494
12.0312
111.886
23.502
62.414
30.1173
10.1789
17.0926
118.37
68.1458
241.86
34.5275
48.704
50.0329
1.72533
3.00786
4.16539
1.00377
1.12966
5.40223
1.45381
12.6628
14.4095
26.6976
30.5885
43.1322
12.2854
10.9629
0.595373
0.491886
0.3634
1.29619
0.345309
0.745624
0.991607
16.0196
35.2536
163.412
18.9666
47.7184
19.8399
29.6196
125.681
44.2695
15.1071
51.8948
13.218
2.01551
0.931622
0.434682
0.664524
1.00483
0.695282
1.84363
1.8442
0.652413
0.973255
0.374817
1.99438
0.905216
0.595437
34.0312
11.9326
4.24264
7.80423
15.0647
8.31656
28.3045
66.2117
5.97772
18.1385
13.806
17.9568
71.1604
13.3288
0.963694
0.651516
0.364831
1.31782
0.40594
0.729456
1.90088
47.2179
34.7124
25.7735
11.8977
3.79505
7.70253
6.94889
11.4759
27.2874
16.5613
3.15576
5.29885
9.2415
5.50115
9.46785
16.0897
1.09158
1.73553
0.622929
2.46103
0.715519
3.34707
0.898052
12.0211
24.0364
74.4645
13.3156
64.4887
20.0599
1.04064
1.68013
0.652685
3.17142
1.00823
0.67877
3.29371
9.19635
24.2764
15.0698
46.1526
7.53861
15.0915
48.0849
15.3573
47.5107
15.4524
1.96276
1.11406
0.528798
0.804918
1.09975
2.03336
0.80059
1.90143
0.685404
1.03357
0.528483
1.77314
1.09163
0.784429
11.2112
3.72461
6.0176
2.50504
6.12086
11.1738
3.74159
14.085
2.73197
3.65366
5.40292
4.45197
6.82954
10.4633
18.3477
3.48135
5.92731
10.4951
18.2558
5.91138
10.4817
1.16986
0.756325
2.38521
1.50674
1.02901
0.828043
2.54485
5.24005
8.39367
48.0691
12.1668
16.4334
8.72365
4.75659
6.81523
21.0658
12.6802
63.848
6.90164
20.3634
12.2807
1.12106
1.67481
0.734025
2.45284
0.812678
2.97142
0.972455
12.5563
74.6985
7.663
25.7927
15.0055
6.8668
54.9153
2.00235
0.766614
1.47703
2.82404
0.894133
3.97602
1.48031
0.694799
2.42313
1.41297
3.57417
0.805128
1.16693
1.69768
0.586426
0.709069
1.24885
2.98052
0.468208
0.951107
1.49431
1.1746
2.13709
0.912006
0.655011
1.89822
0.635124
1.31147
1.30436
0.807955
3.58112
1.02066
2.27796
1.94351
0.681576
11.1359
26.2041
4.87168
7.2036
4.17508
13.0931
19.9894
198.943
21.1717
55.4902
74.2421
69.902
17.9548
30.726
90.4309
15.2419
16.6922
40.7437
5.35809
11.5468
5.95788
19.3635
55.0911
67.1323
12.0813
6.30579
18.8013
12.1387
18.7996
61.3549
172.565
14.7299
42.3528
29.0837
70.5696
1.4506
2.39358
1.7811
1.07607
1.13664
2.57525
1.35034
6.72388
32.4393
18.3584
13.1388
7.56481
22.5106
10.532
1.43677
1.17801
1.89535
3.4457
1.12076
1.55828
2.87219
9.00783
81.5553
24.3581
13.3537
8.10996
27.5267
15.4587
1.41541
1.00846
1.96258
3.32672
0.99616
1.41284
3.41315
150.945
69.7207
3.76633
0.852476
1.57872
1.06936
2.03503
1.24473
2.78747
24.5835
46.5108
144.769
219.54
13.9811
9.01451
3.44895
5.34925
4.77238
8.14045
16.0175
3.3697
0.966571
1.78098
1.29515
2.01215
1.27372
2.93977
32.5958
16.1521
13.5976
23.2425
66.4101
21.9727
21.1991
73.7599
46.5234
13.6064
21.3148
6.30271
66.4705
10.5499
24.5794
19.9517
8.68256
3.60961
5.18804
5.65455
9.98496
15.8687
2.06181
4.44896
0.929155
0.847709
3.5585
2.91377
0.684149
396.445
177.288
30.8089
527.106
20.445
53.3526
53.7281
1.50841
0.740502
1.9103
0.689638
2.19417
0.672625
1.62763
1.61628
0.656483
1.39827
0.56071
1.89354
0.601288
1.28411
95.1282
40.2328
47.4714
23.0996
397.169
480.506
17.8979
4.25021
7.16341
31.6697
5.49987
34.115
9.67766
230.959
29.3706
103.963
52.7927
3.28095
0.780193
1.54109
0.759153
2.23975
0.964058
1.79481
27.38
52.3976
62.7401
18.7675
45.6305
36.2534
106.375
182.354
47.5888
412.393
103.8
171.309
1.00466
0.537194
1.57147
0.506878
1.16605
1.63787
0.475446
40.7236
45.7568
122.273
216.006
17.6036
28.5838
1.2283
0.478243
0.95199
0.435888
0.460403
1.26732
0.875979
0.981812
1.29864
0.484323
0.487305
0.483926
1.31069
1.00954
12.9228
34.6079
26.7522
7.01458
53.3257
7.85397
9.2422
1.49609
0.533505
0.568251
3.05994
0.500693
1.83914
1.60005
19.9969
17.0056
454.908
31.6751
46.5537
1.54695
0.557351
0.55328
1.1654
1.14603
0.568915
1.49873
2.68341
0.589969
1.97565
0.875603
3.7054
1.79826
0.743214
58.6427
19.9427
32.4795
38.4295
7.51756
21.6287
12.7505
8.11205
30.092
6.37974
6.74754
12.1847
39.3207
66.5055
117.94
51.1593
14.9363
28.2038
45.1128
9.88891
6.46274
11.7356
14.2469
10.8644
38.7021
47.9964
27.7899
17.9989
9.23528
64.4462
19.9372
14.3327
40.5064
20.254
282.825
44.1134
66.5732
193.551
15.7809
42.6716
56.3938
10.5979
10.3115
21.4445
28.6536
12.2445
111.251
24.0536
59.0951
218.831
30.6722
28.9098
15.7148
108.766
52.3759
47.6934
11.488
48.7197
10.0506
7.22853
6.3897
37.6007
15.5889
10.509
92.5143
35.6169
29.963
25.9149
25.8999
11.3745
1.24379
2.92046
2.0743
0.893366
4.24561
0.926637
1.03395
1.60857
1.06573
6.33276
3.293
6.17096
1.67341
1.10669
0.991274
2.90725
1.68628
3.83541
1.15066
2.12191
1.26011
1.1004
1.02937
3.6942
2.17633
2.90992
1.2766
0.944876
35.1199
51.7351
73.8288
20.8981
140.096
22.5336
1.17521
2.11392
0.590421
0.766718
1.43342
2.55648
0.538113
109.441
61.3701
231.653
14.457
624.341
51.8344
29.3885
163.991
32.9566
149.723
33.2547
5.79465
1.25852
1.86959
2.97367
6.94388
1.69382
2.74958
185.094
165.996
38.2924
38.8479
193.039
13.404
163.747
46.03
12.092
232.195
282.627
0.799932
2.62925
0.81467
1.58562
0.918649
2.20006
0.732698
0.745391
0.630214
2.67386
1.48373
2.06443
0.81541
0.653152
0.843894
2.89348
1.21989
1.97099
0.966112
1.75002
0.889071
0.705198
0.575227
0.995408
1.73485
0.53601
0.772256
1.526
0.661111
0.949623
0.498177
1.53864
0.508255
1.42428
0.639741
3.2282
10.1632
5.12951
14.5786
3.45442
8.36203
4.72856
41.9263
14.405
42.6694
14.1942
1.57835
1.01149
0.482313
0.653358
1.00529
0.648564
1.58341
1.64758
0.705021
1.11226
0.489787
1.80884
1.03027
0.661647
154.99
66.815
45.0422
45.1286
0.843776
0.618469
1.18661
1.72066
0.807907
0.639939
1.85661
4.34888
7.33399
16.0392
20.3026
4.61317
12.3684
6.86448
0.884066
1.2213
0.700813
2.12782
0.936492
0.671069
1.90901
3.43919
8.91685
4.93414
14.0095
3.32865
8.97431
5.37248
16.8914
47.4505
17.4093
35.6451
84.2892
28.5023
0.650049
0.892461
0.523218
1.31739
0.513163
1.28012
0.656804
0.639555
0.928249
0.508301
1.43729
0.655666
0.500276
1.36865
21.9715
11.5988
22.2607
11.4447
1.45462
1.00936
0.477796
0.647294
0.944848
1.57151
0.634558
1.46692
0.691177
1.0357
0.480217
1.59772
0.958097
0.626649
33.8978
79.9268
15.1823
7.3763
8.69427
183.386
28.9856
61.8632
10.5929
15.5686
66.4066
10.5342
15.4811
28.7906
14.7697
73.6649
11.1307
17.0117
11.6135
70.1243
0.834937
1.03586
2.70263
1.61443
1.73161
1.10576
0.787766
1.17055
2.40255
0.983026
1.4905
1.24679
0.93892
2.0749
1.42142
4.56642
1.7137
2.45988
1.96252
1.29058
2.80963
1.04862
3.18102
1.51826
2.46483
1.38723
1.12952
2.10299
7.33271
4.51242
14.6194
26.5394
4.66079
29.4176
7.01174
1.92985
0.883446
1.25866
2.80938
0.910907
3.23952
1.7552
12.601
77.2197
8.10281
23.2341
7.47787
13.7052
68.3941
43.9033
21.9667
9.52062
96.7592
12.0233
34.1564
233.094
1.79222
0.747252
1.2306
0.894556
1.25249
0.927412
1.78423
19.7013
13.1465
62.4393
20.9892
12.1826
18.0236
82.4583
8.00946
34.3074
9.58882
13.8351
182.893
25.2929
13.1025
9.62705
86.7365
8.34007
31.7013
69.4988
220.278
6.26255
4.56975
12.7869
23.0639
4.17087
6.92505
19.2532
1.69915
0.889035
3.208
1.09567
1.94633
0.825959
2.68243
5.159
13.7035
10.3105
3.41515
3.59399
15.7923
4.84083
1.76758
2.40989
0.848235
1.17279
0.879802
1.61438
2.75491
19.4403
47.9934
51.3295
201.432
31.1096
87.5115
81.6682
49.7127
80.6212
93.1763
3.48199
2.55636
6.19569
8.87912
2.5884
9.74791
3.37584
1.49227
0.810174
1.05487
2.02217
0.835186
2.11461
1.43608
4.5053
17.698
3.39651
8.34521
3.23209
4.80683
13.6628
1.60267
2.26981
0.865944
1.06178
0.838169
1.57512
2.35124
42.3696
86.7679
230.652
31.815
0.664194
1.16491
1.59706
0.616092
1.33282
0.631152
0.64777
0.564019
1.1239
1.58167
0.576796
1.45201
0.581043
0.579574
0.584386
0.79124
2.10718
1.82014
1.67029
0.657025
0.612917
0.707164
0.942753
0.350175
0.364579
0.35368
0.896553
0.756772
23.4748
459.739
48.1963
24.4073
99.8113
43.6264
10.1906
6.87933
26.9836
38.513
6.24058
16.5093
7.83662
7.78938
6.16021
39.9834
36.7577
12.4113
23.3324
8.2631
8.0411
0.750289
1.61703
1.88034
0.734083
2.06312
0.714097
0.750584
4.22752
10.3897
22.1482
7.05804
8.47403
4.57423
5.95327
20.5231
7.66546
11.565
7.86112
29.7712
36.2238
6.55787
36.0825
10.8248
108.19
10.3258
53.7642
49.3987
7.40915
8.13201
5.90933
3.71873
3.38857
9.77049
5.66903
3.37726
24.7249
8.31936
20.9989
6.51584
34.9194
13.8124
6.92918
167.608
13.2586
415.717
20.8742
88.1244
34.0135
28.7997
7.47648
4.27759
5.28454
9.3101
19.5543
6.36599
0.514804
1.06883
0.525625
1.20813
0.534141
0.94981
0.485563
0.423083
0.403788
0.934962
0.833676
0.799663
0.402588
0.423154
0.41724
1.34457
0.52346
1.29054
0.432719
1.21055
0.436075
0.33862
0.824981
0.665804
0.35626
0.784869
0.357352
0.337246
0.416684
0.443335
1.11054
0.79156
1.0166
0.427103
0.445818
0.545274
2.99201
0.544142
1.42512
0.704255
1.80815
0.492631
0.462644
0.416701
1.26018
1.36069
1.44941
0.426733
0.440822
90.2368
30.8305
25.4313
132.482
2.60974
0.809256
1.76064
0.924376
1.83957
2.53255
0.94556
28.2493
191.595
40.9545
49.9542
23.6395
2.19518
0.959877
1.18508
2.84867
3.68856
0.987245
2.07331
2.22795
0.664439
1.50994
0.806735
1.52117
2.18321
0.796269
44.0943
12.6544
34.4766
128.195
12.1849
165.94
36.5132
18.3416
38.8772
117.682
34.7609
22.2809
2.90653
6.13922
1.38342
0.998972
5.33127
2.98354
0.959716
570.663
66.2402
582.898
233.841
105.003
10.7017
5.97793
42.6662
11.934
44.1832
10.7015
6.13408
1.21538
0.533663
0.576936
1.70957
1.52555
0.540458
1.17544
1.32611
2.10533
0.717901
0.690987
1.93344
1.42962
0.673358
32.0548
51.0243
57.2444
28.6061
10.2784
20.5552
41.5516
11.7537
19.5315
10.6466
11.5298
2.61142
0.795377
0.670252
2.23033
2.07575
0.793586
2.47407
174.602
190.867
190.574
158.813
1.7242
0.853433
2.51039
0.877731
1.83579
2.38394
0.834878
26.1547
12.2985
116.72
24.4051
34.2879
80.7603
11.6676
1.77778
2.221
0.871675
0.755022
2.52967
1.58045
0.78847
11.4525
22.6241
52.7259
13.3297
21.1777
11.8938
13.1782
0.530216
0.708419
1.27683
1.90641
1.27212
0.530377
0.702352
0.548083
1.24652
0.736541
1.93761
0.552378
1.28801
0.725487
23.8612
12.5906
23.6485
12.7322
1.36748
0.916777
0.410849
0.542922
0.925252
0.538149
1.34932
1.50835
0.542564
1.01593
0.414852
1.54541
0.996654
0.545809
27.079
71.4983
7.12629
10.905
27.8821
6.99773
68.6061
16.3201
5.07282
9.76372
29.1162
5.92781
15.3897
38.3334
0.707164
0.938717
1.64184
2.46934
0.704031
1.56469
0.953867
0.629785
1.42301
0.84316
2.36417
0.631103
1.50419
0.837779
13.1225
19.2169
4.29561
6.33707
4.44041
16.1915
23.7444
15.5188
4.89296
7.20606
28.2318
4.89786
15.4109
28.2301
0.47917
0.669113
1.22717
1.72519
0.498563
1.17299
0.636109
0.476527
1.05961
1.59708
0.614635
1.10743
0.474886
0.624592
20.6557
11.2776
20.3555
11.4282
1.36167
0.927075
0.389804
0.519769
0.92216
1.37344
0.514029
1.32212
0.494
0.883455
0.387535
1.28223
0.9024
0.505617
7.32214
10.8458
3.66951
2.81912
2.84099
10.8636
7.32537
9.46162
3.01165
11.7015
3.85512
8.67759
2.92961
14.9157
12.2321
18.1819
4.01231
5.44105
12.8676
3.89919
17.3327
9.79668
3.08487
4.27239
12.2092
3.14476
8.90966
13.6395
0.518042
0.652345
1.44577
1.09092
1.07903
0.638768
0.530396
0.48908
1.0627
0.632139
1.40427
0.499411
1.03416
0.609505
13.2
221.014
21.2699
17.6021
85.8093
18.3933
11.8591
251.255
37.8242
14.5815
50.1793
19.0217
9.63439
37.119
15.8066
30.0584
17.3314
16.6318
78.4383
210.091
20.2507
65.2699
74.6552
3.67332
2.05836
0.862532
1.10456
1.16583
2.28251
3.19034
16.5555
26.2118
14.4946
29.8679
1.18217
0.64462
1.70864
0.775298
1.21028
0.619231
1.64414
26.2642
74.228
29.0679
64.5596
42.5723
9.46498
16.5655
56.458
12.9415
221.455
15.8659
11.1434
71.0326
70.1234
15.6638
93.2529
49.031
35.3017
258.734
2.51596
0.812642
0.645018
1.5754
0.867655
1.67295
2.28859
2.52336
1.83585
0.703838
0.986255
0.937461
1.70542
2.81108
49.0431
20.5332
22.7378
37.6134
6.39374
18.5314
35.8339
8.72992
20.3749
6.10502
9.20416
9.11532
82.7705
35.833
14.1269
9.4106
34.2468
13.6797
26.236
15.1213
5.02201
6.8591
15.1583
7.06176
26.041
28.8346
7.99962
19.9525
5.24754
17.1088
32.8791
7.43746
87.652
239.317
15.4729
12.4552
66.3861
11.2521
17.3023
2.05956
0.992848
0.819613
3.59349
0.753915
2.3876
3.01265
1.51233
1.20239
0.473304
0.62017
0.586509
1.13021
1.65053
11.6193
31.8149
68.6944
7.9127
70.4581
8.1507
11.1198
76.4269
33.6696
8.03514
12.8864
31.214
87.4065
12.1426
54.9053
9.80412
6.04278
21.2002
23.7825
8.67633
42.7987
5.43264
17.5862
8.3091
28.633
5.82302
16.4157
7.64368
4.43503
19.5766
13.4838
5.77297
17.5582
5.87655
4.32424
19.0382
90.9455
13.1284
13.9255
18.208
1.97394
0.715651
1.46996
0.516381
2.15802
0.691287
1.38121
34.7113
20.018
35.8648
19.4274
1.91108
1.30557
0.548672
0.689107
0.720026
1.35909
1.82778
0.299966
0.614346
0.577418
0.276537
0.546751
0.275569
0.300565
1.63988
0.532413
0.536994
1.63961
1.631
0.536419
1.60638
1.58582
0.46882
0.501139
1.55015
1.54651
0.498513
1.43674
1.43634
0.514424
1.4321
0.516491
1.46872
1.57244
0.511586
54.4425
37.8368
48.6939
40.5959
461.453
172.646
32.4842
21.5691
33.7698
21.4426
1.88296
0.659924
2.3418
0.637789
2.04657
1.94307
0.610387
1.29939
1.15041
0.591985
0.573306
1.56745
1.07206
0.551637
18.8738
183.6
41.4276
45.739
15.9732
50.9055
182.695
17.5047
220.447
20.641
44.7382
10.483
5.90209
10.749
41.2128
40.6723
5.86432
10.5677
22.5554
39.4511
21.9989
37.5777
152.417
41.4767
19.3588
157.713
19.2494
38.1665
19.2861
36.2471
48.7901
27.5191
41.6122
31.6529
2.04305
0.760412
1.68565
0.766771
2.00421
1.53289
0.758755
212.566
101.665
550.362
64.2111
1.77953
1.30168
0.67261
0.641301
1.87568
1.14954
0.653306
16.6151
113.783
69.425
233.273
53.2371
30.9496
66.8827
9.7302
59.7139
13.1595
34.6564
14.4473
38.6071
9.26446
13.6692
52.8156
37.7661
9.07144
56.8057
12.6183
9.43839
194.553
486.08
1.00932
0.530566
1.42348
0.525112
0.53008
1.4859
0.977068
54.2526
145.574
161.545
49.0456
48.1616
65.3856
545.054
27.6201
60.3109
211.408
15.7425
148.591
18.929
39.2115
18.1312
143.044
203.718
45.1281
45.6202
14.0457
174.03
48.8338
50.7181
11.4364
7.94125
17.1874
13.6261
59.9259
9.16183
7.90413
5.7756
43.9231
11.2698
9.90832
12.4433
10.0031
5.57271
9.33709
45.7474
8.50397
26.0532
10.929
37.8535
8.54279
0.857509
0.437197
1.12539
0.472853
0.468713
0.982232
0.884258
23.5605
29.8225
32.3022
21.5124
36.0742
89.3863
54.8284
40.4318
8.22121
16.3295
23.9
8.55533
24.5186
8.56888
8.2147
8.95868
25.956
8.4894
16.0453
8.74436
17.0338
8.67844
9.2846
42.2959
11.3282
29.5157
9.45218
10.4194
28.9457
19.3656
11.7025
19.7621
11.6743
1.33893
1.02388
0.550914
0.649496
1.0361
0.649772
1.33068
1.30867
0.623231
1.00322
0.516281
1.32419
0.999073
0.617532
7.04481
10.4384
2.84372
3.4454
7.17894
2.73997
10.0443
0.529784
0.625872
1.10673
1.34304
0.562117
1.07112
0.632217
17.7578
10.9039
17.7702
10.9049
1.32807
1.02926
0.504864
0.620154
1.01238
1.35699
0.602466
1.23174
0.526514
0.900208
0.451261
1.17873
0.939368
0.54258
3.12928
8.01995
4.01637
12.3293
3.24666
8.44492
3.9298
0.976124
0.762707
1.68525
2.28924
0.794367
2.31666
0.937267
0.932815
2.42074
0.75145
1.61035
0.74932
0.9416
2.22919
72.6442
29.5741
32.8308
22.7382
14.4377
7.2281
4.58882
25.0137
13.5563
6.2212
73.4691
68.5091
15.4372
5.04163
3.7698
10.7626
11.2899
4.96738
14.7624
7.43087
16.9902
5.29012
24.9234
27.7955
5.61258
7.00524
1.70267
0.862522
0.695603
2.24264
0.67793
1.6695
2.31648
10.1156
27.009
57.8564
8.3497
42.5321
12.4604
7.37252
74.2201
287.761
61.695
259.96
68.3474
3.31916
12.4264
8.15753
4.09521
3.23335
8.71997
4.23307
1.00054
0.78739
3.00723
1.90054
1.00421
0.788635
2.81507
4.05338
16.369
12.4821
5.88453
4.31937
12.0007
5.37601
1.04295
2.49281
0.776094
1.85307
0.828821
0.963198
2.67786
28.8383
54.8998
27.7477
11.9491
8.37535
3.29025
3.95526
8.49055
4.21329
11.792
13.7507
4.73452
3.48809
10.867
10.2068
4.5288
14.8564
30.0242
16.9577
18.8004
6.54757
5.24084
18.4121
23.6672
5.0967
6.93294
20.6851
1.38062
0.609741
0.597322
1.9889
0.570666
1.56622
1.81325
26.4862
35.5238
23.9375
38.0308
5.40107
12.3001
4.03048
14.5832
4.32839
16.4528
5.08678
41.3065
105.182
46.796
86
0.851161
0.687531
1.5158
2.12717
0.690299
0.845044
2.07288
0.765871
1.72658
1.38699
0.565863
0.617091
1.8898
0.695578
72.0259
12.2056
15.4653
75.65
11.6322
39.1145
12.7286
75.7925
8.92357
85.8853
9.19545
36.5844
29.2117
40.0819
55.0483
42.5421
266.911
96.3947
3.33579
2.8004
6.82377
9.44569
8.96647
2.80215
3.43997
9.63637
14.5906
39.0733
75.255
37.9463
10.5552
12.719
11.8918
75.6842
16.6641
71.0323
12.7397
15.324
234.921
12.5306
18.0119
16.0465
83.8956
11.4659
8.19391
3.05388
3.83165
8.16574
11.4884
3.85171
8.00887
2.99487
2.46719
6.02338
6.04364
3.06903
8.02241
27.3647
16.4827
16.7082
0.666217
0.517825
1.22596
1.5948
0.542307
1.61374
0.635039
0.644728
1.65548
0.508316
1.22756
0.520986
0.626504
1.62493
3.64301
8.33074
2.8621
9.66335
3.01143
11.9399
3.517
19.6023
32.4303
21.2732
30.8397
4.62971
10.3217
3.93201
18.438
5.0479
3.77117
14.5637
14.2329
80.5892
17.6358
93.3873
13.3399
18.6442
17.478
20.0804
23.1782
14.6342
11.4912
8.28415
56.472
39.5727
13.2459
51.5505
7.81472
29.2232
34.843
30.6045
33.7479
6.57445
31.6782
26.7986
6.75232
32.1754
6.59596
6.70606
26.6667
24.5171
28.5834
22.0633
31.2548
30.8245
29.661
31.86
0.430353
0.294037
0.486639
0.345489
0.436336
0.451303
0.344758
11.7088
144.011
370.99
22.4463
46.5855
34.3706
37.3603
39.024
36.9302
38.8328
31.5073
25.0847
27.9029
28.9585
0.766797
0.414252
0.641334
0.419642
1.04115
0.575932
0.387038
0.818571
0.337315
0.663892
0.308179
0.978162
0.567189
0.33937
42.2458
39.0112
46.4133
37.4149
54.2468
44.8168
81.7925
42.1119
0.583451
0.537155
0.404071
0.344569
0.536416
0.544445
0.353439
12.0807
19.4143
14.2067
17.0062
6.46885
6.2566
15.8389
12.905
6.12891
17.886
6.8762
7.76824
53.5424
9.35252
38.2973
6.76853
12.1685
41.397
6.11681
30.1977
6.5462
22.1021
6.39642
27.6203
6.23003
8.43793
37.0974
5.2069
9.45156
8.96925
34.2367
5.06465
7.01368
7.45544
39.4697
30.6505
7.92854
32.6937
6.88221
10.1254
52.2324
37.3243
92.1549
25.5542
11.9194
45.7351
4.35236
6.15876
9.48147
4.20446
9.89424
4.21216
4.25418
184.046
93.8675
504.84
5.2222
36.3297
10.6043
9.54437
9.96052
5.35217
9.01282
26.5203
35.5772
26.4741
15.9884
39.0459
9.91662
8.67838
40.116
8.80391
15.6361
23.1709
8.83998
15.5868
8.69251
24.0945
15.144
8.56143
24.8867
17.6709
17.6516
11.1336
42.7343
23.5201
5.64969
9.88783
56.4633
7.34221
17.8326
25.4238
25.2715
17.6946
26.1412
59.9577
43.0039
487.872
56.6327
14.2301
96.431
7.64258
12.9977
22.178
8.27459
7.98893
19.9142
7.72731
148.859
49.258
138.164
33.1815
46.079
47.2233
0.824335
0.708218
2.24278
2.41721
0.712818
2.62167
0.800643
0.839816
3.38976
0.768903
2.06197
0.718335
0.977001
2.62764
7.13249
7.09492
33.1406
27.9301
7.08876
7.09296
27.2419
8.17874
14.8203
20.741
7.19964
7.29178
14.9037
7.75026
3.76284
5.66234
8.33183
4.09119
4.00021
7.23478
4.04886
26.0693
16.7461
23.1629
151.793
47.8359
52.5839
60.0042
167.938
15.5892
481.649
16.2764
150.675
16.3712
38.8176
138.605
41.2413
14.8928
38.215
8.54639
9.44755
15.29
8.40926
37.5719
23.488
17.1852
16.6596
39.2923
9.44652
9.50171
5.12923
37.5493
9.65647
9.94281
0.637999
0.599829
1.72093
1.12833
1.80462
0.623508
0.614858
0.668343
1.75245
1.38302
0.694136
1.69921
0.682914
0.685156
28.8046
22.9407
30.2687
30.8635
42.846
39.7282
4.03133
7.0882
36.7787
9.56816
7.81286
11.3525
3.6059
6.42054
13.5601
6.84618
16.3786
6.33573
7.21789
11.2818
0.750805
0.669782
2.24583
2.1144
0.76467
2.22712
0.681963
0.770725
1.92667
1.66073
0.76266
2.00066
0.760019
0.772418
1.51658
2.1535
0.610757
0.746417
1.54972
0.603588
2.07276
17.8641
11.1509
17.7482
11.2132
1.10749
0.870167
0.399704
0.481621
0.873276
0.474788
1.10777
1.13881
0.495236
0.885316
0.409903
1.14749
0.884926
0.491719
1.47183
0.714929
0.586498
1.97639
0.577693
2.0021
1.46019
1.40153
0.585585
0.683112
1.88819
1.40164
0.562713
1.88876
16.3317
10.5963
16.2932
10.6311
1.09594
0.863886
0.407098
0.484497
0.892149
1.08853
0.47613
1.10025
0.486965
0.867529
0.401432
1.07695
0.882342
0.468715
1.44013
0.699406
0.585449
1.91814
1.42238
0.570945
1.9539
0.615056
1.7951
0.819683
2.2925
0.660239
1.71244
0.760994
0.54773
1.36503
0.444909
1.0209
0.457655
0.536163
1.30605
0.536047
2.13551
1.58143
0.685521
1.60261
0.660413
0.554675
24.1846
8.59658
6.42054
32.6916
33.7979
6.61969
23.4611
34.932
12.0259
73.8104
8.96316
69.7759
36.0938
8.79522
8.50548
11.5958
34.6972
43.9174
32.1784
9.0039
10.9285
6.06336
18.4066
28.9568
7.83858
20.2999
6.13219
7.59887
275.453
12.491
66.0058
13.9687
61.4658
17.4371
71.58
75.8937
67.3146
8.75656
33.167
10.8091
34.1967
11.7621
64.8576
0.637786
2.58505
1.80127
0.819533
0.650753
1.89386
0.803806
0.533251
0.454476
1.53787
1.12069
0.560124
0.463438
1.46714
0.665726
2.73741
2.11579
0.910597
0.707909
1.98314
0.844517
0.551667
1.35671
0.438418
1.09444
0.452951
0.527454
1.4159
24.6369
6.51788
9.06972
33.5479
6.86562
24.1582
35.137
16.3267
6.83612
5.16224
24.0168
5.34012
24.6146
15.8709
4.56963
5.39284
12.4379
17.4416
13.5258
4.42863
5.71771
5.62839
18.1444
7.23868
25.771
5.8216
17.2823
7.07655
0.397785
1.28818
1.70016
0.512486
1.29733
0.419048
0.487989
0.452848
1.83271
1.50531
0.644899
0.523838
1.40162
0.547267
10.564
3.88948
14.6656
4.63771
13.2787
11.3631
3.76798
8.06869
3.85862
11.7102
3.21942
10.4141
3.22152
8.69203
30.68
6.04753
22.4207
7.24564
29.1847
23.1934
7.50175
64.5276
92.4603
43.872
40.882
7.49045
34.3447
12.0041
59.9576
30.5416
9.5482
31.1894
43.517
33.2182
0.750173
1.99323
2.53985
0.577574
2.64429
0.610253
0.704875
3.07951
8.4707
9.89155
3.58084
8.09277
3.12755
3.58602
11.7474
3.84283
4.86951
15.028
3.89596
11.5247
15.3598
14.7555
6.01464
5.19514
24.1868
15.5515
4.76324
22.4779
0.413027
1.3213
0.533424
1.64771
0.437555
1.29816
0.501279
0.42044
1.61041
1.26611
0.55342
1.28534
0.501914
0.462675
3.8494
5.25938
13.7964
14.6556
4.28934
10.9182
4.73374
3.09795
8.50492
10.9718
3.64029
8.75922
3.12479
3.71975
2.58764
4.61941
2.32273
3.50722
2.38247
3.67309
2.58678
2.88142
28.8124
6.81405
10.758
3.31751
6.15947
9.03054
39.9231
45.022
71.0649
2.107
4.15829
6.9386
2.13159
5.42152
2.43693
2.03694
1.55123
1.43857
3.93848
5.0984
4.53624
1.45237
1.60642
4.70064
17.6513
17.5041
4.79664
14.8713
4.62367
5.04329
30.2668
29.9738
28.8891
72.6624
36.5084
10.2187
8.47493
44.4604
21.0076
40.3922
23.6911
19.289
21.263
17.2701
11.2849
15.2878
4.51525
7.06013
9.38413
2.31488
2.61339
18.9613
2.9838
4.86709
5.00601
29.9515
30.1251
4.82716
5.03622
29.5031
5.40794
9.89358
6.08801
15.3992
5.69412
5.53968
13.7166
4.92599
20.3285
24.128
4.77025
4.80203
22.0393
4.86486
34.4471
30.7469
32.2556
27.1935
22.6809
26.4969
110.64
49.0835
44.5953
18.558
16.0263
20.3745
2.47886
3.64191
2.23145
3.33283
2.49775
2.19004
3.28025
48.3673
10.6913
7.72777
34.0881
36.1005
11.7881
44.8698
50.0619
42.4149
37.5046
26.9207
33.2419
29.0405
470.718
24.7747
133.737
13.0565
85.6266
58.8911
0.573364
1.68251
1.71927
0.558985
1.76935
0.588676
0.557242
0.601124
0.560564
1.13589
1.64245
1.74855
0.571775
0.583915
0.542196
1.42867
0.963156
0.505488
1.52782
0.512881
0.525985
0.617261
1.84088
1.68463
0.640967
1.83019
0.589723
0.627971
19.727
6.41349
26.1959
6.98539
20.6938
25.0667
7.64449
15.6485
6.55765
19.4931
8.87074
20.6624
6.70635
14.6769
3.46878
5.55914
10.04
6.88271
3.88066
3.65492
5.55387
36.3736
9.15888
31.7144
6.827
7.85464
40.1489
30.0775
21.4248
14.3546
16.5763
24.7572
27.4977
23.352
29.8539
6.37948
6.51627
24.275
6.39369
25.486
28.4663
0.520072
1.71444
0.537093
1.68449
0.543434
0.53367
1.72274
0.435947
0.438045
0.825145
0.985735
0.441291
1.04186
0.426376
0.460803
1.31141
0.474316
0.870101
0.467904
0.48813
1.10963
0.511217
1.66513
0.519485
1.60922
0.530727
1.67038
0.489147
0.505807
1.39934
1.55167
0.524063
1.43246
0.506229
0.5288
0.491158
1.5752
1.58462
0.488856
0.513587
1.49395
0.495415
18.1104
13.9805
7.42057
7.7321
13.5815
18.4328
7.11241
30.4275
32.5811
6.09466
5.32216
33.7816
5.42876
29.8392
43.7432
11.6865
139.198
31.5958
114.089
48.1318
9.95213
12.7262
8.18282
33.2984
6.92199
36.8042
7.2644
11.958
34.0062
10.6837
7.28345
7.61703
31.0461
12.191
8.23962
12.8064
6.97075
18.9803
7.963
14.1215
17.3933
7.38285
0.480376
0.502274
1.2643
0.780294
0.738314
0.486654
0.486814
0.462731
1.09719
0.679665
0.427032
0.706461
0.454414
0.459403
21.2321
15.0034
6.3026
6.85886
6.45634
19.5522
16.538
17.8423
14.0991
13.2504
110.803
21.8836
11.5256
403.765
31.3488
74.313
26.6508
6.61054
6.46827
23.839
28.0198
6.30269
22.3108
0.48162
1.42206
0.520122
1.53979
0.493709
1.40636
0.502112
0.466124
1.52893
1.43562
0.472437
1.41999
0.480228
0.466831
0.523953
1.59147
0.531772
0.870798
0.543347
0.936016
0.518736
0.39818
0.394991
0.871697
0.870567
0.383895
1.01394
0.405948
0.445063
1.72315
0.486671
1.39186
0.438655
0.498245
1.36198
1.39822
1.82487
0.702525
0.775432
1.45041
0.66667
1.76603
15.7219
10.64
16.0741
10.43
1.09945
0.901079
0.483583
0.549394
0.933896
0.545577
1.0846
1.15396
0.604981
0.986926
0.509924
1.17474
0.96596
0.578274
1.36432
0.733996
0.631148
1.68553
0.626178
1.7218
1.33655
1.20999
0.53504
0.661765
1.44397
1.14685
0.569762
1.51403
10.1969
44.9769
7.81313
10.1342
7.84119
1.27822
0.702126
0.632744
1.66321
1.32177
0.602898
1.60583
7.2435
3.55616
9.62022
3.10632
9.08366
7.61547
3.02119
0.703854
1.75282
0.559244
2.20754
2.23118
0.602743
0.650156
0.691339
1.75808
2.41478
0.574996
2.27265
0.692206
0.577243
11.3771
3.68281
9.18578
4.39668
11.902
8.9683
4.39276
39.6931
43.6028
9.42262
14.027
10.9485
34.6411
65.2059
9.59503
3.31355
7.56041
3.73181
7.90726
3.88765
9.14132
63.0463
11.4846
17.3766
65.5581
13.0609
272.686
0.441196
1.50391
1.26763
0.568854
0.480665
1.23628
0.499338
0.550575
0.514553
1.56664
2.12512
0.474107
0.594945
1.99393
0.48749
1.47225
0.432886
1.87558
0.423793
1.85913
0.494928
30.8352
39.4911
9.01174
10.7042
32.2855
8.85532
37.8724
25.255
7.22515
30.1406
8.85105
24.1556
7.39521
31.1389
0.436326
0.461968
1.17509
1.58977
1.41431
0.417418
0.531214
0.434276
0.468476
1.46085
1.95903
1.57249
0.390437
0.503898
0.389692
1.04554
1.16105
0.287337
1.2709
0.328809
0.332538
0.49607
1.95428
2.14384
0.71953
1.73573
0.616211
0.564915
0.67875
1.65211
0.623335
1.90104
0.700398
1.97677
0.718217
0.697724
0.722874
2.3385
3.04705
0.624649
2.4449
0.801372
0.731258
1.63271
0.48644
1.8624
0.547007
0.628055
1.97507
0.765264
2.33764
2.97324
0.978463
2.41829
0.834918
0.865202
0.437958
0.967776
0.406702
1.1286
0.426184
1.1029
0.446406
0.465961
0.479454
1.19198
1.3363
0.480344
1.21845
0.496961
0.474572
1.3035
1.42149
0.481758
1.26829
0.485835
0.505305
27.3254
4.24376
3.99463
26.1005
26.7265
4.10777
26.7253
16.669
15.8759
13.9224
32.1605
4.87153
7.47696
30.8558
35.5151
5.89117
29.5606
29.8185
4.39229
28.2588
5.24887
28.5399
29.9682
4.83982
0.28563
0.841075
0.743578
0.319326
0.714239
0.283023
0.320464
24.16
4.37556
25.3084
4.54521
24.8892
24.6483
4.51556
18.8214
5.0956
2.61541
2.40458
8.38093
4.41608
6.97682
17.5599
4.42943
17.9472
5.11923
19.383
15.8888
4.77811
13.9667
6.28236
11.842
6.27905
15.1981
5.92532
10.8474
25.4439
4.40228
25.4419
4.52038
4.54549
26.0779
24.7789
22.2852
20.747
5.26825
6.11762
23.292
5.60765
19.6954
27.7515
4.66765
4.82928
29.24
28.4138
4.6938
28.4362
16.6229
6.62642
5.84488
12.3467
5.6208
15.6508
13.3154
0.404582
0.974995
0.383852
1.12488
0.421837
0.377043
1.12202
0.402233
0.348406
1.13585
1.04984
0.377411
1.23979
0.390666
0.39306
0.994102
0.354666
1.2016
0.378968
0.358564
1.14867
0.431018
1.28613
0.451751
1.26152
0.455592
1.26269
0.434196
0.450211
1.46616
0.406886
0.843729
0.490866
1.3956
0.400992
0.490589
0.498638
1.30302
1.49454
0.515077
1.39663
0.500108
0.517334
1.49405
0.480186
1.38104
0.503893
0.501055
1.56765
0.47371
0.681345
0.950628
0.473149
1.1337
0.472867
0.460294
11.2011
3.82529
3.27175
5.99828
6.39471
4.13824
9.97816
27.5197
31.0668
5.26249
5.26942
29.9023
28.5441
5.38297
23.7104
5.71741
5.35054
25.8555
26.2925
5.72347
23.2461
51.7602
5.74351
29.6094
6.44785
20.7858
10.2032
9.86515
0.461681
0.708411
0.812562
0.42344
0.710891
0.431025
0.461734
0.471558
0.801457
0.693895
0.43961
0.678974
0.472726
0.436057
4.33365
3.57321
4.66676
3.15303
4.35207
4.61299
3.5596
0.482893
1.5487
1.18902
0.451065
0.495962
1.55463
0.448139
0.466162
0.446024
1.20728
1.32834
0.470581
0.470301
1.37843
0.506973
1.50153
0.470521
1.23521
0.476727
0.495348
1.43687
0.484824
1.31378
1.53023
0.493418
0.497028
1.53665
0.462302
8.71911
3.68157
5.75824
3.06034
3.50508
9.45032
5.4516
16.0837
19.0129
6.10648
6.53085
19.6291
6.88254
15.3877
21.292
5.71299
5.32411
25.3381
24.3041
5.64388
22.5919
4.77268
3.25323
2.95158
3.98855
3.00605
4.05877
4.49321
0.433249
0.678731
0.403441
0.737505
0.405439
0.433217
0.690608
0.449529
0.662391
0.623077
0.505669
0.68918
0.450606
0.504524
0.444582
0.497237
1.41391
1.35531
0.511202
0.479159
1.14961
0.475308
0.787994
1.4578
0.465416
0.509184
0.940837
0.428184
0.421946
0.588609
0.795421
0.464809
0.438246
0.68355
0.459379
3.74895
3.90914
2.05248
2.06744
4.53047
2.11044
3.49477
9.23875
3.54326
34.3924
6.86084
30.4191
10.7848
3.12662
12.6383
17.3964
6.84551
6.12235
16.2615
13.7632
7.77148
28.6155
5.08577
5.99033
47.6319
9.82763
6.59393
19.7516
4.10673
3.14786
2.85476
3.85638
4.23751
2.83274
3.81623
0.427994
0.616494
0.490941
0.612019
0.431079
0.614186
0.49066
0.414593
0.365236
0.61852
0.495733
0.3798
0.521482
0.41219
0.413162
0.681129
0.424641
0.92004
0.411921
0.398968
0.636828
0.817936
1.08755
0.211282
0.257178
0.840456
0.210368
1.05614
9.9295
43.6284
7.85142
10.1091
7.72136
178.602
56.3593
0.811224
0.264638
0.218966
1.03453
0.217397
1.03886
0.809823
0.788529
0.198026
0.242849
0.992337
0.779705
0.199158
1.00657
9.92615
43.1499
7.69496
9.85098
7.74472
47.2919
48.9584
0.793614
0.254212
0.211449
1.01813
0.796915
0.208762
1.01119
46.7012
46.2378
1.58798
0.356876
1.25568
0.286876
1.24664
1.60446
0.350954
1.54038
0.278757
1.14771
0.308968
1.21406
0.340667
1.46582
0.195241
0.269461
1.08499
1.15592
0.909735
0.221926
0.237928
0.126561
0.677596
1.06547
0.112184
0.80509
0.0874807
0.152961
8.07429
9.97118
2.29007
2.75986
2.30271
7.90964
10.3741
9.30874
2.68809
15.3432
3.17675
11.6011
2.56576
12.3252
0.0483022
0.0641608
0.464871
0.557211
0.449023
0.0564863
0.0553539
0.050377
0.433639
0.0591116
0.591007
0.0493308
0.470486
0.0585717
7.73398
11.2728
2.20776
2.51176
8.77082
2.14005
9.49309
6.93676
1.71171
8.1013
2.02309
6.82021
1.73903
8.36374
0.0347907
0.0377826
0.208347
0.239768
0.207482
0.0332787
0.0407433
0.0373519
0.248759
0.263591
0.0457914
0.227038
0.0396488
0.0440524
0.0508997
0.0638059
0.42841
0.429411
0.0593352
0.364137
0.059011
0.0437351
0.25468
0.378091
0.0458015
0.320594
0.0395398
0.050589
0.255661
0.266256
0.215797
0.292613
0.215203
0.284516
0.256188
0.235437
0.253567
0.199474
0.275836
0.234873
0.199838
0.270393
2.2887
1.71474
1.53748
2.15873
2.26682
1.52251
2.17411
4.65438
14.2286
1.92367
1.49605
7.27302
5.70971
1.29069
2.94405
1.26003
1.20796
3.0195
3.18312
1.17683
2.856
2.89423
1.02301
2.94475
0.968538
2.84923
2.99155
1.01116
0.17732
0.223925
0.214985
0.207514
0.211544
0.176842
0.207776
0.176752
0.153191
0.201816
0.189926
0.200121
0.177303
0.152165
0.153355
0.202169
0.191058
0.133427
0.20093
0.13421
0.152649
0.159022
0.245261
0.231793
0.184476
0.183719
0.226636
0.159782
0.134519
0.137378
0.293631
0.231816
0.142494
0.122559
0.224158
0.150742
0.236557
0.172769
0.261025
0.154091
0.172127
0.225449
0.139454
0.217601
0.207457
0.124299
0.124224
0.21469
0.140064
2.67502
1.37093
1.49907
2.89495
2.77175
1.50861
2.77105
3.29896
3.56806
1.82544
2.02246
3.42322
3.34141
2.01169
2.86731
2.4333
2.1074
2.87497
2.86278
2.43691
2.87546
0.384559
0.333909
0.435162
0.457108
0.328829
0.386793
0.440919
0.365195
0.431854
0.304387
0.405327
0.306502
0.364435
0.420294
0.625925
0.781818
0.127264
0.152484
0.624421
0.127438
0.779789
8.6105
37.5335
6.76986
8.59397
6.78564
20.6701
39.8239
40.7006
20.3224
20.6893
40.4155
20.6775
40.4846
0.634942
0.15319
0.125987
0.795908
0.128148
0.789447
0.639452
1.26817
1.00159
0.193956
0.228089
0.99731
0.235567
1.27282
1.26414
0.196295
1.01695
0.249352
0.993392
1.29545
0.23897
1.24021
0.993853
0.183724
0.222778
0.221338
0.984591
1.2638
1.24843
0.184293
0.217974
1.00373
0.221481
0.994525
1.26192
0.552532
0.105446
0.123922
0.69171
0.562967
0.104838
0.679902
8.1541
35.5283
6.43847
8.14271
6.44566
19.7733
37.6999
19.7455
37.1511
0.590928
0.132807
0.118777
0.768337
0.618278
0.111601
0.732753
16.5345
19.6618
16.5549
19.6728
1.07813
0.174071
0.872676
0.136198
0.8568
1.09984
0.162396
36.3458
37.0458
39.1847
38.7734
1.03708
0.115742
0.771156
0.113645
0.822981
0.137513
0.968781
1.07278
0.147803
0.177282
0.864406
0.1768
0.850748
1.08982
1.16726
0.159331
0.205715
0.967849
1.21836
0.191476
0.922732
38.6923
38.6181
0.419888
0.499869
0.0512403
0.059126
0.417418
0.0514484
0.502392
7.43641
32.3446
5.92795
7.4882
5.88987
14.6057
15.4782
15.2614
14.7806
14.1468
14.9282
14.2866
14.7748
0.42514
0.0570703
0.0468742
0.512336
0.0497549
0.50796
0.428388
0.874208
0.652567
0.0828818
0.0873017
0.698979
0.0973371
0.817793
35.1521
33.474
35.6728
17.6361
18.0216
34.8969
0.918176
0.090556
0.751946
0.115102
0.733379
0.942327
0.107033
0.770584
0.614151
0.0685619
0.079554
0.0799927
0.616811
0.767543
34.8948
18.0402
17.7339
35.5531
33.8026
17.2842
17.1075
34.182
0.77769
0.0660409
0.0724585
0.628898
0.0768798
0.623015
0.785451
0.399803
0.0410399
0.0442071
0.4724
0.399169
0.0391621
0.473778
7.76136
32.771
6.03725
7.62582
6.12949
14.8509
15.5905
14.8614
15.5462
0.403979
0.0450218
0.0413547
0.492759
0.411397
0.0395306
0.481149
15.8731
15.1245
14.7291
16.853
0.673478
0.0579722
0.551071
0.0487659
0.546244
0.678849
0.0562778
17.7065
14.8901
15.1042
17.4156
0.780041
0.902122
0.0627112
0.0491225
0.0543962
0.946498
0.742892
0.836637
0.0666833
1.02645
0.074993
0.840684
0.0651953
1.0242
17.4898
15.2826
15.0208
17.9162
0.631582
0.0405737
0.486338
0.0419464
0.514675
0.046873
0.599279
0.712845
0.0503269
0.061195
0.572564
0.0576199
0.575788
0.70867
35.7521
18.2313
36.0521
18.1442
0.732692
0.0517433
0.0631145
0.606618
0.760433
0.0598459
0.588457
0.877779
0.070496
0.0746394
1.07508
0.0658173
0.878312
1.06702
31.3079
16.2308
19.4549
19.7666
0.265801
0.295893
0.0154322
0.0189344
0.256548
0.0171032
0.306806
6.75771
28.5163
5.41051
6.81732
5.36546
12.8062
14.2796
12.8729
13.8797
12.7365
12.9652
12.8269
12.8862
0.259036
0.0181797
0.0160299
0.292593
0.016524
0.29769
0.255105
0.466493
0.364989
0.0222099
0.0224549
0.383412
0.0249547
0.443977
16.4469
14.4428
14.0912
16.8545
0.61655
0.701736
0.0240546
0.0343643
0.584215
0.0305995
0.740545
15.6731
13.5066
13.4342
15.7631
0.501181
0.0238144
0.388667
0.0215692
0.409408
0.475425
0.0269733
0.569826
0.0250866
0.0312109
0.645456
0.0280642
0.542345
0.678319
0.438971
0.349789
0.021034
0.0205296
0.0235789
0.362625
0.423289
0.510695
0.593413
0.0239541
0.0274122
0.0248696
0.499318
0.603344
15.1067
15.0851
13.2687
17.3451
15.7952
13.5367
13.4768
15.8235
0.421428
0.0200553
0.0215048
0.34295
0.0223128
0.350038
0.411446
0.533838
0.022679
0.0293812
0.607136
0.0264664
0.513989
0.631971
0.241042
0.0151977
0.0171657
0.263841
0.231696
0.01557
0.274833
6.86671
28.0405
5.40273
6.80665
5.44914
12.9609
13.2437
13.1575
12.9817
0.249175
0.0166071
0.0148807
0.280216
0.245259
0.0151216
0.284507
12.8789
12.762
12.7673
12.8708
0.329064
0.0212547
0.291794
0.0185856
0.278971
0.345902
0.0206215
13.1911
12.5535
12.6709
13.0465
0.392195
0.432019
0.0253543
0.0237493
0.0227634
0.464966
0.364873
0.395789
0.023905
0.497922
0.0256464
0.418295
0.0230797
0.468306
13.2925
12.7848
12.7539
13.3062
0.325523
0.0182678
0.256685
0.0209857
0.275627
0.0203003
0.303055
0.379795
0.0189386
0.0205929
0.306239
0.0210768
0.319369
0.363745
0.478131
0.562298
0.0218771
0.025036
0.472069
0.0225816
0.570774
13.72
13.5058
14.4047
13.1194
0.394228
0.0182503
0.0197071
0.326614
0.389612
0.0202202
0.331077
0.460613
0.0231581
0.0264071
0.525801
0.0236714
0.44073
0.550211
13.4658
12.8518
12.9574
13.3612
0.101066
0.114816
0.00660733
0.00819048
0.10359
0.00826432
0.112631
6.21784
24.9341
4.90571
6.16513
4.93877
11.5082
11.165
11.3459
11.3238
11.723
11.3262
11.4262
11.6592
0.208803
0.147062
0.010487
0.0101773
0.17722
0.0116687
0.172271
12.7693
12.3596
12.296
12.8266
0.287181
0.3725
0.0188956
0.0182821
0.315315
0.0161585
0.339925
12.0786
11.4886
11.671
11.874
0.238505
0.0126663
0.222374
0.0166716
0.201958
0.262295
0.0142291
0.250912
0.0113892
0.0146776
0.24232
0.0131172
0.205893
0.296496
0.150412
0.130912
0.00795224
0.00838449
0.00867972
0.129393
0.152429
0.154732
0.157342
0.00751734
0.00900224
0.00822447
0.133593
0.183868
11.1999
11.0136
11.1965
11.0155
11.8903
11.2875
11.6295
11.5817
0.130325
0.00680025
0.00689722
0.0991925
0.00750619
0.112795
0.113639
0.179077
0.00921988
0.0105637
0.213533
0.00958592
0.181358
0.212391
4.42229
11.1721
3.50698
22.5195
4.47462
3.47229
22.2981
10.6783
10.869
11.0275
10.5419
10.4119
10.3141
10.5111
10.2544
0.0725592
0.00400346
0.0557953
0.00410615
0.0652082
0.0623454
0.00445842
9.97883
10.0072
10.0598
9.91338
0.116269
0.130184
0.00875998
0.00786158
0.00789194
0.136888
0.111124
0.0826687
0.004281
0.0824356
0.00505001
0.0714382
0.00473755
0.0951337
11.7642
10.4607
11.5366
10.3889
0.100376
0.00647987
0.0858749
0.00715937
0.0888356
0.00716657
0.0964933
0.143525
0.00910629
0.00810455
0.0879728
0.0100961
0.124524
0.100623
0.175273
0.149337
0.00733381
0.0137333
0.128645
0.0122973
0.206369
10.4115
10.7166
10.7195
10.4087
0.149243
0.00991388
0.00684341
0.0979245
0.110892
0.0110325
0.130238
0.169737
0.00897996
0.0124505
0.139335
0.0112024
0.118126
0.201487
10.0795
10.1113
10.103
10.0389
0.239068
0.179524
0.00968961
0.00928516
0.211855
0.0102831
0.200229
0.276477
0.0115575
0.0114456
0.243821
0.244475
0.0122497
0.274699
0.177119
0.149799
0.00965265
0.0103298
0.158232
0.0104935
0.166849
0.116227
0.0050813
0.0924906
0.00532959
0.106971
0.100467
0.0055427
0.262323
0.167896
0.0151029
0.00856155
0.235499
0.184347
0.0163978
0.260312
0.01173
0.0136134
0.15944
0.231819
0.0146714
0.177767
4.02815
10.2646
3.31246
20.932
4.19962
3.20436
19.9114
10.0149
10.0303
10.0629
9.97939
10.1928
10.1945
10.2877
10.1314
0.0798854
0.0732433
0.00559756
0.0065363
0.071742
0.00616451
0.0816674
9.92367
9.96555
10.0253
9.85788
0.109475
0.121908
0.00645052
0.00825915
0.10418
0.0074172
0.129041
29.3319
24.4774
10.6109
10.2401
10.647
10.1562
0.0947141
0.00606303
0.0806829
0.00594244
0.0839568
0.0905688
0.00672716
0.090953
0.0071273
0.00741119
0.108299
0.00672582
0.0929615
0.105661
0.0672647
0.0636788
0.00624864
0.00679023
0.00689446
0.0610553
0.0705274
0.0772723
0.0986584
0.0083479
0.0081739
0.00743596
0.0851965
0.0885497
9.79954
9.90198
9.94636
9.75755
22.9973
23.2421
9.88387
10.0492
9.99048
9.94528
0.0689002
0.00623647
0.00757486
0.0699426
0.00683543
0.0646714
0.075316
0.0754722
0.00745949
0.00835829
0.0922214
0.00754804
0.0796859
0.0867046
3.33108
8.90714
2.83378
10.2949
3.29962
2.85985
10.379
9.9349
9.95903
9.91844
9.96686
10.0227
9.96589
9.90173
10.093
0.0578286
0.00689219
0.0525435
0.00566154
0.054134
0.0555185
0.00629756
9.44725
10.2314
9.6431
10.166
11.0694
22.0791
11.0397
22.1875
0.0614955
0.0400414
0.00657533
0.00338764
0.00588327
0.0713082
0.0350463
0.0648253
0.0075676
0.0699562
0.00776196
0.0616591
0.00694278
0.0743256
9.51682
9.72424
9.68767
9.54711
0.0543193
0.00480192
0.0301043
0.00315149
0.0504126
0.00534543
0.0313314
0.0672855
0.00697993
0.00761424
0.0582574
0.007754
0.062879
0.0623503
0.0756236
0.0895442
0.00799511
0.00867864
0.0780366
0.00787365
0.0861884
9.62213
9.80657
9.65076
9.79703
11.4667
22.3666
11.1914
22.9516
0.0677939
0.00657091
0.00730601
0.065203
0.0695658
0.00722275
0.06386
0.0754201
0.00841707
0.00959307
0.0803167
0.00856964
0.0699613
0.0864523
9.80186
9.8347
9.96935
9.65986
0.168994
0.140173
0.00817411
0.00914994
0.155999
0.149994
0.0100065
0.135653
0.00936973
0.00814114
0.125849
0.12163
0.00883353
0.141654
0.112988
0.114682
0.00899952
0.0116074
0.101616
0.00979747
0.129464
0.111074
0.0101879
0.00927699
0.106807
0.0997173
0.0101895
0.119868
0.122014
0.0110926
0.0126812
0.146749
0.0104685
0.124509
0.141749
0.11217
0.0116958
0.108962
0.0122993
0.122783
0.101094
0.0111126
0.0993689
0.046925
0.00746694
0.00450635
0.0846429
0.00848509
0.0546139
0.100217
0.0106166
0.0807601
0.0087968
0.0868934
0.0917936
0.00996206
0.113214
0.0105261
0.0676746
0.00490005
0.125678
0.00949375
0.0615523
0.126988
0.0134332
0.0149137
0.130285
0.0135476
0.120511
0.134698
0.111291
0.103282
0.00961648
0.0108705
0.099137
0.115888
0.0105659
0.114781
0.0120721
0.0108453
0.0938653
0.100534
0.0122156
0.10802
0.121092
0.0121375
0.0117728
0.130293
0.126461
0.011383
0.123958
0.190629
0.0384561
0.0389428
0.189291
0.191242
0.0387124
0.187488
0.193069
0.193372
0.0383258
0.0382269
0.194509
0.191316
0.0389415
0.191423
0.037791
0.190496
0.0374972
0.190898
0.192494
0.0382842
0.159747
0.0345869
0.174733
0.0366687
0.164168
0.169639
0.0348643
0.242284
0.264571
0.0577317
0.0540653
0.271948
0.0546958
0.23679
0.245472
0.055667
0.280691
0.0588027
0.247888
0.276795
0.055491
0.269369
0.313331
0.0659169
0.0698286
0.276995
0.0654468
0.301318
0.249404
0.0620934
0.309354
0.0630038
0.277159
0.0599676
0.27545
3.00934
7.94236
2.64792
9.43465
3.08244
2.58892
9.25966
8.58939
9.32089
8.91878
8.81708
9.04636
9.408
9.37526
9.05181
0.0065388
0.0121044
0.00074846
0.00100166
0.00866121
0.000865238
0.00870087
9.10082
9.62663
9.30459
9.44479
0.00861287
0.0123517
0.00118545
0.00098118
0.0114349
0.000955602
0.00915316
7.90077
11.1241
9.84336
8.91859
8.80077
9.7811
9.02992
9.69347
0.00814834
0.000802527
0.0119278
0.00115533
0.0105769
0.0106915
0.000935618
0.00678476
0.00101031
0.000894933
0.00926729
0.000878122
0.00898873
0.00703395
0.0187666
0.0261955
0.00135687
0.00167643
0.00149147
0.0245464
0.0207384
0.0156159
0.0150834
0.00116244
0.00126933
0.00123959
0.0140318
0.0168697
8.61062
9.3014
8.8012
9.21473
7.85268
8.69889
8.35291
8.0186
8.73513
9.28622
8.91333
9.12078
0.0145796
0.00110117
0.00113977
0.0174315
0.00121537
0.0192267
0.013133
0.0203154
0.00173486
0.00158624
0.0250462
0.00153386
0.0226355
0.0222543
2.35437
7.03511
2.15264
7.2195
2.36787
2.1441
7.22585
8.20779
8.93252
8.46111
8.65272
7.72549
8.29385
7.84456
8.14677
7.68597
7.7859
7.823
7.69009
7.09573
7.93415
7.97777
6.87411
0.00737896
0.0166884
0.000910366
0.0012579
0.000805044
0.0074203
0.016176
0.0073792
0.000826384
0.00765082
0.000932527
0.0074448
0.000818247
0.00755331
8.13742
8.57328
8.27349
8.50358
0.0076924
0.010911
0.000984012
0.00093967
0.0102881
0.000925147
0.00797187
8.36114
8.85553
8.68491
8.55599
6.79235
6.7808
6.99314
6.59272
0.0075227
0.000800868
0.000969477
0.0125235
0.00972358
0.000906968
0.0106154
0.0125067
0.00102387
0.0011526
0.0130104
0.0010236
0.0123108
0.0132415
7.90303
8.22692
8.06046
8.08413
0.00786252
0.000982176
0.00107579
0.00964467
0.00756785
0.000968464
0.0100674
0.0107589
0.0136545
0.00133099
0.00101638
0.0149717
0.00996245
0.00105383
17.9605
16.9389
78.301
0.011112
0.00109997
0.0160384
0.00136819
0.0110135
0.0157683
0.00108231
0.00780876
0.00106228
0.000919611
0.00968767
0.00744219
0.000946784
0.0100507
0.0311898
0.00222902
0.00193148
0.0421574
0.0380519
0.035739
0.00188832
0.0225763
0.00147425
0.023239
0.00139153
0.0258064
0.00146989
0.0202612
0.032902
0.00214748
0.00190872
0.0417375
0.00184644
0.0378215
0.036013
0.0213604
0.0166953
0.00131679
0.00128745
0.0187809
0.00137523
0.0189461
18.7844
10.4873
9.28485
22.5602
0.0290202
0.00203561
0.00166505
0.0285817
0.0251542
0.00176008
0.0331825
0.0239437
0.00146579
0.00134055
0.0231047
0.0014289
0.0259049
0.021289
0.00939342
0.00103284
0.0102106
0.00105914
0.0100465
0.00958456
0.00102444
6.86461
8.04443
6.68934
8.98939
0.00816995
0.0180192
0.000928243
0.00147715
0.00770928
0.000951954
0.0202026
0.00859004
0.000995406
0.00808165
0.000955863
0.00794535
0.00876874
0.000986752
0.00869033
0.00101053
0.02643
0.00154979
0.00907023
0.000981474
0.0232482
0.0199426
0.00139157
0.00136822
0.0204928
0.0195482
0.0211382
0.00137645
0.0170875
0.00130957
0.0128341
0.00116618
0.0165587
0.013758
0.00129797
0.00976436
0.0010527
0.0163805
0.0011375
0.0146556
0.010594
0.00105073
0.0183525
0.00130535
0.00134568
0.0195025
0.00129884
0.0178897
0.0200079
0.00917615
0.0118907
0.000962122
0.00106675
0.00845501
0.0133165
0.000991375
7.40791
6.7095
6.55614
7.47886
0.01629
0.00124652
0.00119233
0.0141555
0.0144796
0.00124333
0.0158654
0.00990322
0.00104526
0.00110413
0.0159673
0.0148411
0.00102168
0.0103786
0.124123
0.0270589
0.0305347
0.140186
0.123606
0.0275521
0.139853
9.48037
8.87805
9.06292
9.07867
0.113631
0.104908
0.0235764
0.026958
0.100434
0.119332
0.0260271
0.108802
0.0243824
0.0971669
0.0225526
0.108453
0.096777
0.0247929
0.129442
0.031975
0.0299434
0.151131
0.135617
0.0289279
0.144966
0.153071
0.0301586
0.138018
0.0337539
0.137888
0.151406
0.0332429
0.161677
0.164992
0.034726
0.0370673
0.157416
0.0351796
0.164006
0.151458
0.0291791
0.12556
0.0315064
0.135593
0.142346
0.032269
0.161623
0.0361377
0.161562
0.0375645
0.158568
0.0359394
0.163648
0.162385
0.033365
0.155701
0.035802
0.0359882
0.154335
0.165382
0.165019
0.165968
0.0389909
0.039023
0.167883
0.0382714
0.163006
0.16431
0.0348278
0.0379018
0.16257
0.167415
0.0370881
0.158185
0.163544
0.0373324
0.0381102
0.164702
0.0373239
0.167181
0.161412
0.163648
0.0431203
0.0422952
0.190394
0.170025
0.0407055
0.179927
0.156212
0.0412597
0.0380016
0.163375
0.151466
0.0391625
0.169404
0.203914
0.0463273
0.194049
0.0436346
0.211596
0.188171
0.0454963
0.24253
0.291706
0.0504121
0.0579597
0.258047
0.0516822
0.270119
0.226045
0.0479533
0.251636
0.0452244
0.239475
0.236007
0.0469068
0.218356
0.047423
0.220298
0.0553067
0.201262
0.0497484
0.240854
0.169736
0.0408867
0.183876
0.0420035
0.0404321
0.174236
0.178767
0.169008
0.174012
0.0403411
0.0448371
0.165364
0.0415618
0.179488
0.160837
0.03932
0.0380178
0.16056
0.158253
0.0389583
0.164567
0.179417
0.0453562
0.0471384
0.205966
0.0433818
0.19017
0.192311
0.180178
0.203142
0.0430408
0.0437797
0.192974
0.186136
0.0419322
0.166405
0.167575
0.0382088
0.0412069
0.162271
0.0396013
0.176011
0.167882
0.0407735
0.162876
0.038654
0.162776
0.170602
0.0400758
0.177653
0.0431035
0.209257
0.0435308
0.18923
0.0413786
0.191992
0.202257
0.0447914
0.186137
0.0445839
0.19613
0.189509
0.0460613
0.22977
0.254408
0.0471203
0.0507189
0.243655
0.239137
0.0489938
0.222279
0.0452426
0.218509
0.044775
0.212622
0.234328
0.0470165
0.208253
0.0459894
0.200225
0.0492072
0.215939
0.19413
0.0477212
0.170135
0.178709
0.0410051
0.0430561
0.0413964
0.170127
0.180121
0.163217
0.16348
0.0396837
0.0416641
0.160046
0.167222
0.0408268
0.16046
0.0395817
0.038729
0.160105
0.157866
0.0398044
0.16158
0.173377
0.0442866
0.0434526
0.189111
0.177961
0.0425096
0.183903
2.3655
7.4636
1.89418
7.11015
2.12342
2.09642
8.46706
6.96953
7.56194
7.45433
6.9211
7.09565
7.67433
7.3339
7.44559
7.22207
7.75751
7.32661
7.72239
0.00859017
0.00955301
0.00197534
0.00225076
0.00920516
0.00208385
0.00882375
6.24848
6.28538
6.48674
6.03242
7.23522
7.48152
7.36765
7.36972
0.00728078
0.00179601
0.00181833
0.0110057
0.00168815
0.0105714
0.00744369
0.00944179
0.00910846
0.00137232
0.00152395
0.00140916
0.00890365
0.0098828
7.35207
7.64829
7.45441
7.61241
6.48143
6.94032
7.05949
6.27528
7.29985
7.65944
7.40311
7.59376
0.00774661
0.00114449
0.00114139
0.00827617
0.00104442
0.00817307
0.00769413
1.79222
5.84189
1.61875
5.62825
1.72934
1.67513
5.75561
6.0382
7.33236
6.48549
7.09542
5.55551
6.58857
5.35254
6.84527
6.41054
6.29154
6.37735
6.32476
5.60117
5.52595
5.73717
5.38495
0.014574
0.0149564
0.00158866
0.00186789
0.0159584
0.0017513
0.0113473
0.0124979
0.00158831
0.00921562
0.00154687
0.0130344
0.00145987
0.00865328
6.5707
6.68398
6.56802
6.68877
0.017427
0.00815365
0.00127073
0.0018331
0.0143346
0.00170856
0.0110408
7.28249
7.48306
7.43994
7.32126
6.42151
5.8177
6.02009
6.24074
0.01668
0.0018019
0.00167987
0.0108238
0.00158099
0.0159572
0.0102371
7.22359
6.90669
7.19654
6.91994
0.00889135
0.00229925
0.00228071
0.0158775
0.00978563
0.00213428
0.0139497
0.00994771
0.0101588
0.00240291
0.00237204
0.0110643
0.00919918
0.00252688
5.46825
6.04043
5.76552
5.75188
0.011026
0.00298908
0.0136729
0.00260448
0.0122591
0.0123255
0.00274306
0.00813023
0.00212622
0.00189529
0.0114561
0.0076201
0.00199342
0.0124692
0.0109222
0.00157835
0.00137025
0.0116648
0.0123219
0.0103349
0.00142411
0.0203705
0.0180114
0.00232327
0.00208334
0.0219682
0.0022345
0.016879
0.0111845
0.00160259
0.0114018
0.00146825
0.0124889
0.0103606
0.00145278
0.0184741
0.00199826
0.014034
0.00199962
0.0163989
0.00213154
0.0156036
0.00858063
0.00137079
0.00130518
0.0106367
0.00124405
0.00957997
0.00944533
0.0111977
0.00943678
0.00157751
0.0015752
0.010323
0.00164132
0.0100361
5.74466
6.79418
6.02611
6.62029
10.8774
52.8544
11.5241
0.00797907
0.00130921
0.00116525
0.00832609
0.00762229
0.00119503
0.00880471
0.0124707
0.00185881
0.00165589
0.012348
0.00173752
0.0142619
0.0109783
14.4282
54.803
0.0102455
0.00176351
0.00185413
0.0124627
0.0111984
0.0112469
0.00168404
3.61344
3.46031
3.50453
3.59417
4.86841
5.29308
5.1477
5.01696
0.0131965
0.0114087
0.00184031
0.00193829
0.0122173
0.0122161
0.00201498
0.0145196
0.00225065
0.0144458
0.00191111
0.0163137
0.0131682
0.002119
0.00957855
0.0017788
0.00980745
0.00158422
0.00913324
0.0104009
0.00162432
3.68031
4.37804
4.0758
3.89754
0.0180034
0.00280436
0.00211612
0.0183583
0.0214991
0.0158477
0.00226654
0.0250676
0.0154163
0.00305805
0.00183133
0.0281823
0.0145321
0.0028809
0.0199112
0.00302404
0.028024
0.00248398
0.0247085
0.0216402
0.00238679
0.0220933
0.00247601
0.0122165
0.00176523
0.0135242
0.0190615
0.00269125
9.9252
12.6829
0.0124076
0.00220342
0.00197174
0.0157351
0.00186297
0.0138598
0.0138587
0.0128237
0.0085763
0.00190692
0.00142966
0.011888
0.00902814
0.00199111
5.77635
5.59156
6.03256
5.32062
5.53616
13.5971
6.20992
11.3292
0.0114174
0.00208431
0.00172772
0.0116745
0.0108317
0.00178084
0.0125421
0.0142671
0.00227301
0.00149114
0.0108439
0.00975631
0.00211422
0.016329
4.88052
4.85594
4.26172
5.79834
0.0847293
0.021115
0.0210241
0.0865775
0.0856206
0.020866
0.084895
8.13251
8.05138
7.95377
8.20344
0.0807279
0.0971767
0.0197342
0.0188575
0.100141
0.077646
0.0198752
7.46469
6.98473
7.2892
7.17565
0.0840548
0.0219825
0.0997046
0.0207091
0.0848372
0.101646
0.0208591
0.0811209
0.0202131
0.0190773
0.0795477
0.0784747
0.0199413
0.08125
7.79205
7.16985
7.34023
7.69217
0.0858294
0.0194791
0.0815378
0.020862
0.0814144
0.0876121
0.020294
6.3709
7.11514
6.86246
6.68529
12.9599
13.3384
56.5821
0.083686
0.0701871
0.013815
0.0211846
0.062939
0.0192184
0.0952492
0.0770279
0.0174582
0.0635628
0.0134005
0.0611511
0.0750944
0.0177577
7.10299
6.88593
7.28967
6.58459
0.0949974
0.0230163
0.113918
0.0247201
0.098625
0.0222369
0.108804
0.0964419
0.0219713
0.0899176
0.0241732
0.0239073
0.0881066
0.0981417
0.108254
0.128039
0.0263082
0.0294685
0.11001
0.0261606
0.125539
6.66474
6.68349
6.50983
6.87325
57.8371
16.0377
0.0946571
0.0214228
0.0234079
0.0847165
0.0952811
0.0234072
0.0852323
7.33096
6.88539
7.50238
6.59185
0.109663
0.027021
0.0299596
0.131175
0.0266216
0.112117
0.127032
0.165798
0.0429314
0.0415298
0.20159
0.178053
0.0398081
0.184618
0.153323
0.146845
0.0355
0.0377488
0.145629
0.155647
0.0375702
0.153543
0.0403934
0.0357555
0.157669
0.146823
0.0377964
0.168228
0.167095
0.0417964
0.187521
0.0400524
0.181313
0.171103
0.0397667
0.214277
0.0492229
0.230883
0.045862
0.245133
0.20496
0.0450953
16.3711
5.60544
4.64665
21.8143
0.191072
0.0865898
0.022675
0.0353709
0.114
0.0351897
0.215753
0.210114
0.0445749
0.158877
0.0279169
0.129808
0.246306
0.0402278
0.199623
0.0424799
0.227578
0.04394
0.192599
0.0409992
0.238263
0.177768
0.0452466
0.214157
0.0447756
0.0424871
0.195654
0.192439
0.153567
0.151936
0.0338466
0.0396651
0.14036
0.0372254
0.17072
0.162539
0.0421134
0.0362699
0.164563
0.150676
0.0396502
0.177468
0.168046
0.0418773
0.0431103
0.210208
0.0399139
0.181472
0.190835
0.167045
0.0368199
0.194763
0.0362957
0.184118
0.17554
0.0346262
39.6635
42.5488
0.128326
0.0811863
0.0182892
0.0236982
0.0940737
0.110707
0.0265128
0.146037
0.0308058
0.104488
0.0197899
0.159686
0.102335
0.0293188
0.146834
0.0327628
0.133207
0.0278301
0.126852
0.154107
0.031279
0.213118
0.0419768
0.245813
0.0437096
0.245236
0.2121
0.0398158
3.86232
2.62138
3.48688
2.74999
0.175954
0.0489601
0.0138932
0.029835
0.0432905
0.187098
0.0286438
0.173362
0.028078
0.0377559
0.0147612
0.169466
0.0445648
0.0291566
0.21176
0.0422037
0.216146
0.0395214
0.221418
0.208611
0.0386807
0.184202
0.22721
0.0441005
0.0438354
0.0415131
0.203739
0.200076
0.162729
0.146799
0.0330335
0.0370472
0.144089
0.165804
0.0367594
0.166007
0.0394558
0.0336787
0.154135
0.14642
0.0376046
0.178669
0.180412
0.0423086
0.0404133
0.201877
0.184665
0.0402411
0.196101
6.06241
1.86419
1.43297
1.24076
2.79431
3.68524
2.22096
327.914
69.2871
54.2611
34.6564
25.1396
440.888
126.639
34.9848
9.15775
41.8687
86.3904
14.5564
259.489
18.1991
2.96534
3.36481
0.952551
2.08173
1.23206
1.9536
5.77252
10.8063
8.40348
16.3506
48.684
6.18079
38.8191
17.2319
3.4174
2.00586
2.63403
16.4525
1.51838
6.25796
7.05048
1.74774
4.64284
1.10978
2.16246
1.8418
1.08573
4.05866
8.58215
59.1251
25.161
51.403
27.3135
12.241
15.0923
1.01038
5.25041
1.83985
0.986354
0.684549
3.06252
1.6006
0.921187
6.41797
2.40853
0.968084
3.74666
1.37001
0.680263
114.491
573.993
60.5162
105.214
177.636
20.114
4.47378
2.16262
2.00708
3.00312
6.75284
10.8571
211.043
88.7976
236.321
80.8849
19.2068
41.3967
21.0121
52.9407
28.7797
64.7148
469.383
513.487
98.2389
28.0846
626.407
43.3111
58.6697
18.1081
69.3543
99.0268
2.76406
1.6501
5.7067
1.37658
4.10568
1.19306
3.63215
463.837
464.824
53.0009
97.883
50.4149
27.7185
428.105
82.6414
28.1479
20.9517
34.9208
149.029
15.0976
73.186
39.1142
5.0031
8.40415
1.77493
7.61519
2.62052
3.00027
19.8672
3.21978
2.8582
0.689756
1.2957
0.860917
1.82803
5.72869
1.57888
0.670625
4.0161
0.811327
2.33004
2.53965
0.589992
14.0242
47.8323
85.9004
17.1474
20.8158
45.408
12.296
180.272
526.417
167.815
592.315
33.72
75.0636
145.398
555.943
33.6164
6.2305
5.5803
1.10408
3.02781
3.47333
11.4822
1.69085
20.7218
31.9641
8.67444
44.1069
11.4683
13.5357
58.0766
3.9582
0.818544
0.684248
2.22805
2.30295
1.01424
3.61854
1.32133
2.30939
5.45361
5.84297
1.86202
1.61909
3.48787
0.921622
1.63307
0.81116
3.84932
1.13462
0.668232
2.36537
205.68
12.9246
7.84578
54.3691
14.6504
6.36964
15.6638
32.6411
2.91378
3.07783
0.83084
1.95836
1.64498
1.13559
6.70295
29.6098
13.0717
5.61324
23.6094
11.0553
14.1889
54.6032
7.87495
1.90696
2.46803
1.57455
3.77629
4.67059
2.65189
30.6554
18.872
14.3902
138.876
10.3079
40.4959
57.3484
40.7593
63.401
248.834
46.5489
158.852
12.7116
8.85475
17.1866
24.3107
21.4496
63.0681
214.284
47.1536
14.6484
244.244
27.3205
46.5761
25.4479
289.026
87.9651
48.5604
534.464
105.92
109.864
111.669
103.85
22.003
14.6854
80.6684
9.91638
8.14919
70.4486
25.1581
84.4023
93.5429
26.0553
67.0579
54.5805
24.6752
66.5042
54.9259
28.9526
83.439
67.0672
84.1744
66.8168
28.9984
139.699
445.049
42.5641
23.5913
92.9443
9.35047
305.014
27.3971
12.053
538.983
39.1409
146.691
69.3574
302.706
229.996
298.201
26.9739
79.8064
63.2455
27.7286
77.5615
60.8739
27.3862
81.1146
63.3561
27.5535
79.8732
62.8625
38.5122
38.7157
35.0926
31.1576
1.72741
12.1147
3.44514
6.35172
3.82862
4.21076
2.13598
1.79119
17.0404
4.91222
4.38853
1.80319
4.68797
4.40896
266.561
29.9668
40.7339
92.0281
17.8215
78.1283
35.333
15.1245
20.9212
25.1302
66.3062
8.55646
81.6333
19.5574
10.8977
55.4367
90.4228
31.8598
777.597
74.0692
26.93
722.263
22.6091
53.8065
160.799
13.9791
194.15
19.0158
14.8819
39.7847
61.7649
101.622
19.0352
19.6102
107.512
38.0102
5.03782
2.08705
2.87305
1.14535
1.85025
5.94651
2.77473
69.3836
27.9674
16.7829
316.126
74.5278
15.8656
275.756
4.19694
2.25991
1.00075
1.48266
1.5449
2.33369
4.01414
85.4065
40.7601
34.6925
36.3215
80.5942
141.466
90.5871
60.4744
216.785
45.6911
1.6971
9.51552
3.18915
5.70005
1.89781
2.93424
4.88248
1.63503
9.17866
2.66206
4.63585
1.59699
2.8746
4.7981
39.8533
110.436
95.4624
111.979
96.0608
39.6065
38.6004
108.15
93.5152
106.126
92.7916
38.9003
29.5625
72.6212
72.3425
69.8615
58.3889
31.0365
33.6367
77.5916
79.1171
79.0491
84.342
33.1099
6.17891
31.7473
11.0701
29.1715
8.34097
8.10049
18.6204
0.684697
0.849274
4.64198
1.92563
0.959116
0.62014
2.90178
1.08187
4.77172
1.81183
4.41421
1.28855
1.40738
3.26679
0.795909
0.651366
2.99596
1.64144
0.907446
0.590319
2.29659
25.695
6.14125
29.105
11.7973
41.8732
17.0226
9.43648
30.2751
98.3742
42.3649
3.05914
1.96357
1.61374
1.39197
1.68707
2.54193
2.25069
30.4428
100.9
25.5982
18.7419
41.6864
3.19304
1.81294
1.33248
2.52347
1.66185
2.25307
3.72703
2.10148
2.47013
3.86986
6.39216
1.97178
4.36558
2.69243
2.20319
5.23896
3.34386
7.57121
2.4592
4.83838
2.86721
4.30097
3.03304
1.99778
1.16758
5.91592
2.47633
1.67775
70.4761
21.0849
25.0001
58.5565
4.94671
1.59833
1.31427
2.31204
2.86209
1.82947
3.67372
1.88698
2.8236
1.367
3.81303
4.3514
1.39017
1.79904
14.2239
35.6428
69.0187
129.135
19.8556
44.6307
22.6777
1.8045
2.82089
5.86697
1.4875
2.22662
4.71976
1.27996
33.5932
34.2776
9.23528
15.518
23.1645
10.8813
44.0847
135.485
32.762
35.4529
353.3
24.231
146.748
137.451
64.1165
46.4997
48.4518
15.7144
8.84065
51.9919
11.5603
29.9207
116.039
21.4453
230.47
59.8851
511.15
67.4561
23.6336
42.5783
46.7903
14.7243
7.80989
67.8373
9.85884
28.9332
74.6032
134.543
387.691
395.537
3.09056
1.21473
5.72167
2.6953
8.24502
3.23809
1.18677
2.811
0.592199
8.2375
1.27612
7.75596
2.88013
0.506671
3.07016
7.25379
1.04765
2.65894
2.5678
7.59158
1.15852
2.35516
4.74297
0.482381
1.19368
1.81717
6.18409
0.491135
433.239
81.5979
344.57
120.949
142.539
2.75041
3.66557
2.22715
1.6076
3.39397
1.80794
2.90591
11.004
39.3875
9.22684
19.0181
8.62085
12.6072
28.7781
22.6029
113.437
23.3122
58.8167
30.7273
82.9273
17.9113
568.786
61.9328
49.7604
33.7744
112.461
3.59993
4.16067
1.56939
1.81105
1.40088
3.15255
5.11744
18.3835
37.7528
43.1039
10.4479
12.7528
58.3294
15.1335
468.234
65.0847
25.0236
26.1335
98.9843
41.5059
168.904
417.457
68.2999
177.507
3.14176
1.20322
6.01645
2.28161
3.17446
6.0077
1.1911
2.71813
0.749972
7.83431
2.01357
2.77572
7.93576
0.732814
3.13852
8.81658
1.22705
2.32545
3.18279
6.11518
1.20682
2.67427
7.68396
0.777455
1.96439
2.70675
7.78303
0.739593
155.211
15.0693
45.2977
19.9106
153.637
45.7384
20.1904
228.756
17.3096
77.4818
59.2634
629.434
58.8993
38.6776
27.8415
57.165
51.9975
686.492
88.5117
16.3571
71.1989
60.2766
769.343
38.1263
258.779
36.4438
81.1575
146.241
143.659
38.5547
196.2
38.7451
185.304
27.595
52.1323
64.11
22.476
152.084
161.013
13.075
15.2176
7.61354
52.7434
7.43619
13.5269
50.5737
1.46003
5.57936
0.791885
1.78628
0.767501
1.93622
3.7256
24.8384
27.8111
54.7999
28.11
55.1906
24.7088
1.42787
0.749271
1.7656
3.57225
0.746073
3.67863
1.3921
25.3638
28.1868
55.904
27.8176
55.4346
25.5252
1.42022
3.65399
1.95347
0.850681
3.50329
0.823616
1.47959
1.4873
0.853158
3.59972
2.05737
3.67533
1.47694
0.859074
1.88752
5.20382
2.27099
0.964013
0.967633
5.22198
1.88926
22.9349
47.5867
22.4637
47.7999
22.3553
22.8864
1.84496
0.947368
2.24948
4.27758
0.957895
5.0614
1.70258
23.2825
48.8619
23.276
49.279
23.9873
23.1136
1.44879
3.60112
2.00939
0.848022
3.58143
1.47081
0.839048
1.47401
0.881718
3.64614
2.0352
3.58352
1.50299
0.8777
31.5431
70.3812
95.9042
19.92
61.8166
46.5891
38.9265
29.7342
49.7974
23.3118
3.25792
0.820413
2.3508
1.10551
3.40764
2.28408
1.04174
16.9849
11.2352
51.9598
77.9894
11.9558
17.1707
123.314
3.85297
1.34145
1.45903
5.81795
1.14427
3.93433
5.85426
1.4527
2.22907
1.19055
3.87429
1.142
1.53725
3.18999
5.33992
7.4868
16.4555
27.0019
5.7965
6.91035
16.8027
11.3299
65.7162
25.4114
119.88
15.31
17.1725
46.8059
1.60358
2.81458
1.16889
4.24717
1.2137
1.51398
4.37895
6.37494
7.87101
30.5788
17.3111
8.51583
5.80881
25.6775
138.137
385.029
7.58815
20.3137
5.58113
17.0041
7.01959
6.03797
26.5143
2.31788
2.79649
0.946337
0.942997
2.39373
0.986004
3.02793
12.3179
10.2459
60.8241
30.9478
14.2795
9.1745
50.2708
2.7217
1.11039
4.88961
1.26574
3.40086
1.02761
3.68286
23.099
4.78638
14.4385
7.11328
13.8808
6.55534
20.7344
21.3013
39.1936
23.1361
95.5312
354.082
69.1404
24.8506
5.83296
15.6716
7.35056
17.0647
8.59291
22.8686
110.252
312.536
136.168
77.2447
346.29
86.4735
28.7647
195.611
26.2177
126.656
20.5621
111.685
22.0486
7.12121
5.55278
21.3183
6.50345
28.6295
17.4587
2.77975
2.14243
5.76894
10.0406
2.21358
2.67978
8.63889
2.18052
4.37554
4.07017
1.34529
1.74993
5.69886
1.61199
13.213
52.72
16.9427
43.7507
16.1865
13.4778
53.0433
86.3025
80.217
105.658
66.3234
49.2779
99.3998
1.16992
1.02966
4.10247
3.53375
1.21616
4.1998
1.07537
1.12049
2.53347
0.711442
2.68334
0.892761
3.36817
0.886998
47.2931
60.0184
901.486
381.788
41.507
71.3962
47.8141
14.4083
26.8933
38.6435
104.85
20.703
785.849
0.898801
3.43941
1.58252
3.21584
2.45094
1.24167
1.10219
0.926179
2.58243
1.56632
0.825173
0.763814
1.94648
0.99776
0.596664
2.20414
1.30985
0.69304
1.72077
0.719468
0.563812
252.366
73.6589
404.016
34.4664
149.189
982.646
45.6199
123.626
15.8468
14.4181
14.4181
51.2182
21.9264
54.0284
1328.54
40.8857
1421.23
59.5766
205.75
136.604
50.7561
8.34271
26.1135
8.39157
38.1465
9.65973
31.8004
22.8101
10.211
3.21698
7.12468
10.1074
23.2957
7.18801
20.6952
5.47749
9.04697
2.39951
8.97113
20.8719
5.57396
22.2619
9.92889
6.98982
2.83212
22.9402
9.65936
6.50892
0.78795
0.911842
2.35159
1.88688
0.864325
0.854814
2.02746
0.772098
1.31689
0.589055
1.94825
0.72261
0.635616
1.71611
5.66591
3.6794
1.11925
1.28986
4.10416
1.33725
4.96499
5.09789
12.4693
2.64371
12.3882
4.93138
8.99708
3.08331
4.71136
10.6291
5.2247
20.6511
5.29278
8.9181
2.29077
20.6223
8.92711
5.26198
5.45734
2.79081
4.73545
4.894
4.65486
51.9695
200.985
48.2116
38.2193
6.2501
11.8481
11.072
40.2303
11.4051
10.8125
23.8979
78.6628
25.9351
0.957583
1.72711
2.83636
0.789353
2.73021
0.984213
0.774816
0.850991
1.7143
2.36498
0.663858
2.49931
0.820544
0.684798
102.604
101.576
5.49146
2.15116
1.60971
0.958511
5.47017
1.61109
2.27249
5.90763
1.76519
2.4346
1.03675
6.11675
1.72789
2.33526
1.12891
2.03195
2.97696
0.836925
0.873154
3.30817
1.0431
6.67447
12.4916
13.714
47.0442
6.92032
12.1353
12.7071
1.25401
2.97969
0.924177
3.3167
1.16523
1.0563
3.61457
6.55446
2.91369
2.14457
1.18854
7.11028
1.98353
2.86336
103.895
104.281
6.03014
1.82898
1.1497
2.61365
1.84544
6.35906
2.76646
1.6472
4.87624
0.84744
1.75291
0.780445
1.70735
4.82883
21.3297
19.0877
42.0411
19.2992
42.4258
21.198
1.69235
0.801186
1.86191
4.94296
0.805934
4.98867
1.68454
20.6247
18.7256
41.0818
18.5187
40.6454
20.7805
1.49899
4.73125
1.65339
0.663607
4.59024
0.651756
1.5417
1.56292
0.691862
4.82706
1.72191
4.77691
1.59689
0.679434
1.49716
4.44153
2.64334
0.823425
0.851638
4.56296
1.43886
22.719
51.3034
18.4533
51.041
18.353
22.8241
1.52385
0.85864
2.67311
4.60999
0.856484
4.64297
1.5432
22.2005
51.7462
18.5764
50.2836
18.2921
22.9483
1.49398
4.66638
1.67838
0.646585
4.66776
1.51
0.643327
1.49234
0.804572
4.69408
1.71548
4.65503
1.54839
0.658816
43.185
10.2801
8.37177
21.8238
11.1263
27.149
35.1605
124.988
81.2154
12.2471
24.6613
17.0051
55.94
359.437
118.483
26.3078
23.4327
17.5762
356.9
36.5389
49.4848
8.38915
12.9097
9.36243
30.3642
58.6098
14.1872
4.46281
6.35208
16.8614
4.92092
20.3902
12.1443
21.7039
42.1545
9.02128
7.79021
6.75126
36.073
24.9312
113.052
39.4763
76.1279
108.554
20.4439
18.7569
24.4414
132.893
0.376936
3.79294
0.339086
2.30766
0.445346
0.296243
3.38912
0.429565
0.322145
2.37187
3.03393
0.342796
0.403339
3.39738
0.320714
2.89012
2.97228
0.486064
0.385769
2.09466
0.392211
0.268883
1.20068
0.22188
0.961985
0.261356
0.225667
1.25144
0.305259
0.249839
2.07683
1.1549
0.307561
0.250497
1.53456
27.9187
9.23163
29.9713
6.35152
33.3519
8.26908
21.2056
140.863
31.8044
25.7138
512.929
24.149
114.281
20.4152
11.4456
5.09034
5.78635
6.40258
14.3655
15.0225
10.983
4.20988
19.8662
4.9185
3.90291
13.3011
14.9925
60.0708
20.2616
18.0525
157.72
15.0409
73.3742
122.483
0.717086
0.280554
1.02977
0.293364
0.874771
0.281227
0.897491
27.9557
60.5396
19.6915
167.705
18.9752
27.398
112.6
56.6977
49.7292
69.9557
38.8192
127.716
781.04
366.194
190.845
2.57552
0.775029
0.72236
2.00267
0.825582
2.59967
2.47459
59.0025
369.05
957.728
2.23191
0.872563
0.780671
2.26364
1.64557
0.866938
2.58827
1.62867
0.463803
0.671418
1.66224
1.28585
0.544719
2.06034
35.6106
162.247
27.0473
452.795
26.8319
40.7765
1.73668
2.19802
0.47182
0.864377
1.37885
2.86268
0.573767
1.42208
0.378188
0.854979
0.368451
1.15245
1.04601
0.443665
1.45096
0.470693
1.36836
0.360491
1.18455
1.87472
0.4264
76.6088
56.2222
76.2044
57.8936
38.074
19.9306
10.9752
129.793
1.48983
0.516421
1.12881
0.355653
0.835154
2.13756
0.44785
919.854
419.388
0.890018
0.458325
0.793376
0.593244
0.807573
0.593358
0.913959
5.06306
11.6115
2.723
11.7432
5.45706
10.6764
2.79576
5.85436
10.8242
5.92325
21.6384
6.8771
4.46627
2.70994
4.47652
21.6963
6.87856
7.79886
11.2873
3.70565
11.2894
7.89938
10.638
5.98607
2.78733
10.4917
5.92454
20.8799
383.004
40.6115
176.559
35.6289
26.2735
120.373
10.1004
9.4631
51.552
72.1536
8.68157
11.1016
68.0255
8.08706
7.11019
27.4741
41.2997
6.98041
7.95665
30.2387
5.2557
6.53124
31.8378
34.9451
5.7991
6.03567
31.9978
34.7598
34.0208
392.546
39.047
33.2699
820.282
12.326
6.06339
31.1076
2.7372
2.96287
8.80453
57.5939
11.3141
10.3111
71.8732
56.9149
11.6591
10.6174
68.2019
51.7743
66.5234
78.9467
22.8108
9.2091
2.73977
7.35962
4.5304
6.81241
39.4602
20.7788
4.1826
2.53846
6.56349
4.16994
20.879
6.54046
9.96085
18.5552
3.90115
18.6951
10.5943
53.8435
63.2063
59.0037
29.0105
41.4547
17.4125
129.754
11.0685
2.98112
5.95352
14.4591
6.00456
21.4409
6.70241
4.30949
2.5838
21.4428
4.30063
6.6834
20.8033
4.09172
6.49606
2.47195
20.8152
4.10216
6.50243
26.8454
56.7396
44.1234
63.2211
64.8222
64.0358
678.667
330.663
6.41513
10.3712
3.00213
11.967
6.22391
11.7867
93.1051
341.353
8.585
2.14611
4.21882
8.4358
4.36837
17.4349
35.5924
9.74477
11.788
18.5935
33.7573
9.25913
15.8605
8.42159
25.0441
9.42557
14.9591
27.0504
8.73657
0.693712
0.78385
1.50895
2.33756
1.48664
0.695213
0.807175
0.681461
1.51522
2.2103
0.794436
1.27059
0.779019
0.718332
81.1199
17.5732
81.6229
17.4905
3.0198
2.7257
1.04205
0.860911
2.99995
1.04757
2.73575
2.48887
0.878631
1.62596
0.686243
2.4998
0.878614
1.6291
0.802659
0.928456
1.77789
2.62668
0.804164
0.915088
1.78338
0.767345
1.68646
2.41272
0.819759
0.859225
1.70937
0.760562
3.17465
1.81152
1.23726
0.724093
4.23708
1.03813
1.7343
83.466
17.7424
82.4782
17.9021
2.59535
0.881165
0.698269
1.63447
0.909413
2.51623
1.65912
1.36083
4.35093
0.79248
2.52518
0.790174
1.38545
4.34929
9.41666
100.318
31.9583
17.9498
32.382
18.1691
9.31654
1.31918
0.762649
2.47398
4.17346
0.772283
4.23979
1.29511
9.07586
95.9626
31.4236
17.6059
31.1489
17.4687
9.14483
1.14066
3.88609
1.29725
0.51763
3.88006
0.51868
1.14089
1.13643
0.728563
4.04384
1.31695
3.8884
1.24862
0.523281
1.03949
3.73542
1.18845
0.474067
0.458469
3.66616
1.03186
8.63966
85.0074
16.2585
28.5904
16.1912
28.4981
8.66067
1.04182
0.453978
1.19119
3.67869
0.452965
3.67333
1.05047
8.73135
87.1216
16.4125
28.8395
16.5048
29.0122
8.69441
1.07625
3.76598
1.22537
0.476347
3.77754
1.07713
0.475442
1.06484
0.461164
3.68689
1.20133
3.71993
1.0553
0.464739
3.46811
0.763836
1.07743
2.7502
0.971429
2.47369
3.92685
65.7954
79.6631
301.482
15.0718
5.12047
4.54101
19.2812
4.65884
14.9717
19.072
25.8088
20.8325
16.4501
23.1732
1.6429
0.234288
1.27818
0.293648
1.33084
0.276178
1.70449
2.19018
0.329905
0.412557
2.9115
0.343196
2.98035
2.13851
37.0424
26.1081
24.7402
37.2632
2.23569
3.30381
0.362203
0.402381
0.330658
2.34619
3.09427
93.6757
48.1553
45.0199
106.791
2.46368
0.393605
1.58013
0.442516
1.80809
0.480861
2.15426
42.4992
28.0538
29.68
40.0287
0.246425
0.714681
0.229907
1.02056
0.244508
0.279397
0.890059
0.195297
0.575565
0.877893
0.184406
0.23988
0.741476
0.178082
0.299808
0.382307
1.28275
1.33479
0.343611
0.368754
1.12755
0.333694
0.645359
0.3292
1.68434
0.177376
0.475192
1.41792
0.283852
0.876028
0.2456
1.13832
0.233936
0.295551
1.09598
0.288945
0.747689
1.16493
0.202003
0.288255
1.34664
0.19433
0.341329
0.520133
0.244503
1.61953
0.143292
0.420038
1.47351
0.438576
0.443094
1.66519
1.68688
0.436376
0.460158
1.79973
24.3781
4.14038
18.9262
5.7174
18.5016
4.82709
24.4205
12.0051
2.77326
3.39542
9.66151
3.21369
13.9236
10.1274
53.446
53.4423
10.7709
8.98349
8.95081
56.2653
52.2136
6.27199
3.86301
8.59549
4.12875
9.57059
5.71679
4.06045
7.78113
10.0925
4.41236
4.85316
10.1416
7.85735
4.8149
6.67381
3.30263
49.0413
7.11633
53.6464
46.2366
42.0525
0.909502
3.68728
4.2961
64.6004
54.9589
10.5158
8.60929
9.55458
70.0245
47.1547
0.30612
0.0169008
0.0539357
0.0997951
0.319228
0.0499622
0.0978192
0.995591
0.128656
0.260289
1.84849
0.13258
2.10771
0.89963
1.32691
2.94294
0.178763
0.384009
1.34809
0.174579
2.91275
30.8696
6.12356
26.089
6.96283
24.8941
7.32287
35.7145
57.2975
45.9714
42.4967
70.4844
60.0568
12.0322
11.712
11.9104
61.9752
71.4009
7.35634
4.55271
9.2809
4.08164
9.30765
7.38007
4.5527
7.72634
9.92567
4.79713
4.30917
7.78126
9.86626
4.76469
19.8754
2.58426
3.95021
8.9844
4.65983
16.6545
8.44259
0.780197
0.352184
0.912585
3.44959
0.601314
3.45846
41.4427
48.2183
8.87994
7.77942
8.52003
48.3148
40.2542
0.158418
0.400133
0.165641
0.558528
0.161869
0.183293
0.49913
0.209197
0.313497
0.184215
0.493734
0.200782
0.200811
0.431033
8.39532
2.55325
8.97338
2.06647
9.89438
2.40612
7.93468
5.01906
3.38092
2.97172
7.1023
6.53115
3.35801
5.27768
6.18906
8.22141
3.51961
3.97961
8.0497
6.40126
3.88649
0.357125
0.0115815
0.0277509
0.10534
0.38363
0.0286782
0.103184
0.706787
0.10745
0.224789
1.65921
0.104322
0.816203
1.35641
0.479323
0.734888
0.0871595
0.159579
0.460878
0.0844672
0.781227
2.48116
0.403716
0.290757
1.41814
1.44674
0.37212
2.21459
5.63856
0.816705
0.255883
7.0507
0.281727
7.20223
4.47281
9.09889
3.96207
7.25998
9.05228
4.43941
6.62029
8.41244
4.09316
3.68225
6.57778
8.46008
4.11795
5.21129
1.85795
7.75181
1.96575
6.11216
1.7751
6.9202
0.625258
0.657099
0.50572
2.99246
4.59181
0.515002
0.223663
0.228316
3.56428
7.01185
10.7056
4.83155
5.00475
7.05901
10.6101
4.8145
22.261
11.5651
22.5316
11.4764
1.91265
1.09754
0.624452
0.470278
1.91045
0.631922
1.09741
1.99648
0.674587
1.16357
0.496958
2.02551
0.667548
1.15118
0.505744
0.556394
1.13941
1.58377
0.508648
0.575216
1.13134
2.13252
1.23664
0.726022
0.535023
2.15268
0.728152
1.22905
23.0991
11.7595
22.9073
11.8913
2.10335
0.696715
0.52176
1.19341
0.713098
2.07296
1.20875
0.969774
3.50209
0.450604
1.15453
0.462419
0.969302
3.66199
8.565
76.4421
26.3808
15.6548
26.4374
15.5617
8.62695
1.01946
0.496404
1.23337
3.24811
0.485171
3.92281
0.950453
8.49892
74.6162
26.0709
15.518
25.901
15.4168
8.5626
0.909541
3.17952
1.21075
0.464342
3.20528
0.468778
0.911811
0.922779
0.485292
3.2711
1.24258
3.25047
0.940683
0.481394
0.794734
2.50019
1.35969
0.342526
0.411966
2.90031
0.717049
7.54842
63.5707
13.4793
22.8106
13.3651
22.6787
7.62247
0.751147
0.379991
0.946281
2.79601
0.366512
2.63929
0.788811
7.80376
65.8963
13.7296
23.2047
13.8314
23.4348
7.76783
0.854724
3.10921
1.1306
0.440351
3.06192
0.87882
0.433873
0.831761
0.40374
2.90759
1.08222
2.97937
0.823493
0.410807
1.23523
0.195929
0.196536
0.799144
0.234992
0.982246
0.992965
1.74801
1.46114
0.250468
0.244807
0.291798
1.3857
1.87392
93.3583
51.5061
49.9506
84.2039
86.0562
328.212
76.3852
19.4056
15.9921
86.7947
14.8339
20.78
1.48711
0.240858
0.253866
2.4415
0.211485
1.79134
1.99875
1.06915
1.24476
0.212179
0.184313
0.19769
1.12578
1.38338
12.3863
66.3443
38.5564
10.2469
74.517
9.55207
13.9723
48.2393
103.819
91.4389
51.7539
0.641307
0.147584
0.19925
0.719931
0.167516
0.783977
0.587627
8.76907
6.75042
25.9413
31.8005
7.19927
33.8761
8.34688
0.898919
1.28807
0.267484
0.196877
0.226725
1.10387
1.02319
10.9297
47.2792
9.04615
33.9538
8.82442
11.4568
43.1643
36.9451
42.4462
41.8267
35.567
2.40656
1.57802
0.242167
0.213432
0.249767
2.02028
1.81584
38.0757
30.4315
32.3184
38.0063
0.571822
0.162672
0.664469
0.108113
0.821054
0.125658
0.469576
0.361752
0.11438
0.0958912
0.465977
0.0985267
0.389783
0.426204
47.2225
43.5918
53.8873
40.1776
0.328467
0.283178
0.0732838
0.083114
0.0845704
0.288822
0.325701
91.9133
13.4548
99.1659
18.8616
84.2591
14.9164
16.7613
4.14222
3.3944
10.9086
11.6393
14.506
3.64403
4.00799
5.10217
17.9028
12.89
4.35932
16.2398
4.28761
5.372
9.60895
47.2537
40.1584
11.9698
40.0817
11.5322
9.98445
15.5788
329.456
20.9852
23.9456
19.3894
7.29603
6.67689
18.839
31.1502
5.95184
8.55906
27.9826
5.52959
18.5031
14.7736
4.49696
4.58535
18.8989
5.63471
28.6604
38.1837
31.5892
35.5432
34.5429
28.5121
36.5244
25.8244
0.33572
0.0966633
0.082209
0.396028
0.0911088
0.343421
0.397902
52.9023
91.84
96.1099
57.4644
0.322408
0.249089
0.0707482
0.0694404
0.0793791
0.28516
0.281021
18.3955
93.4169
15.7954
320.284
14.8913
21.2899
5.47845
3.42311
7.24888
3.15028
7.30864
5.44867
3.4253
4.97148
6.64781
2.9183
3.16353
6.74924
4.88905
3.19683
2.26913
0.465908
0.377716
1.50122
1.58912
0.524187
2.22468
0.89541
0.0490215
0.103844
0.159795
0.152431
0.234851
0.537714
0.610627
0.389081
0.225482
0.200799
0.543188
0.242551
0.41961
0.0730853
0.00553276
0.0122902
0.0266373
0.0783146
0.0122515
0.0244721
0.238301
0.561389
0.0736497
0.107025
0.260642
0.069271
0.489077
12.1722
4.11736
2.07789
1.28358
2.10911
11.9191
4.19616
4.30378
6.37026
3.05207
2.66088
4.6686
6.01585
2.90163
0.743788
0.0259594
0.0733468
0.3575
0.0628647
0.199715
1.86592
0.269422
0.0645482
0.091092
0.257242
0.0689641
0.280865
0.234663
0.27226
0.273836
0.147292
0.135127
0.138407
0.31443
0.241861
15.1934
6.35709
0.887256
3.97803
1.80747
4.25066
28.4651
12.7755
1.64541
0.824832
3.84068
1.57966
12.3506
3.84979
0.554471
0.0532311
0.141983
11.8739
0.0476391
0.862197
0.526368
0.109607
0.167449
0.861319
0.122888
0.777289
0.391665
0.557361
0.259094
0.106144
0.0877502
0.964835
0.336791
0.649466
0.120776
0.122877
0.0916008
0.448282
0.585776
362.605
11.4864
3.99894
2.01089
1.21329
11.6313
1.99763
3.94959
11.5479
2.42822
4.28894
1.3596
13.0145
2.14851
3.96678
0.548481
0.111787
0.479505
0.12682
0.470771
0.127626
0.558104
395.182
0.740994
0.194997
0.175067
0.953996
0.163072
0.809512
0.873909
0.367883
0.070347
0.102531
0.353609
0.0727455
0.315485
0.403913
9.61581
67.1996
21.7119
9.67681
21.6336
1.28605
0.739604
0.373308
0.26337
1.25566
0.386844
0.749516
1.31748
0.399379
0.766692
0.27139
1.3266
0.398121
0.763494
1.38444
0.809182
0.426311
0.292048
1.39512
0.425857
0.805102
9.85492
68.9548
21.9481
9.78342
22.0899
1.3601
0.406108
0.282835
0.778222
0.414454
1.34009
0.788438
0.674989
2.4613
0.329784
0.865348
0.326372
0.68924
2.4268
6.64109
53.7481
19.4613
11.3345
19.7086
11.4491
6.59853
0.658538
0.310889
0.830959
2.29833
0.313891
2.35536
0.652462
6.31163
48.1575
18.9906
11.0927
18.0149
10.8068
6.47798
0.571289
1.92578
0.768048
0.24099
2.05599
0.252644
0.546119
0.630134
0.288157
2.18465
0.891156
2.23875
0.622266
0.305382
0.427254
1.74064
0.564845
0.185697
0.170414
1.62946
0.443246
4.43647
14.6024
7.50339
5.90342
7.45606
5.89656
4.46266
0.438811
0.179868
0.578941
1.66571
0.177041
1.65434
0.448405
4.54447
15.0136
7.64447
5.98662
7.65854
6.0294
4.53997
0.500114
1.83201
0.671066
0.221652
1.80357
0.510801
0.219302
0.486706
0.217843
1.78023
0.648127
1.74909
0.4883
0.214628
8.59491
8.02885
34.101
35.9197
8.14008
9.00048
35.9865
15.8322
16.1684
84.2325
99.2627
13.8187
19.1827
8.03867
29.7296
6.94377
34.1293
7.3412
35.4965
8.08329
25.6131
34.1307
27.9823
33.5347
6.69009
7.59053
26.9284
32.5363
28.8304
6.84824
7.65813
3.53195
3.26164
8.37732
10.8341
10.1696
3.23858
3.80244
7.80244
36.1656
36.0453
9.75822
34.0629
8.62337
8.95341
90.3398
18.932
19.5148
280.479
21.678
29.0207
19.2992
27.2209
94.9507
319.609
6.1385
7.49432
25.9293
31.0874
7.18455
6.41423
25.0015
5.06118
21.7663
6.06304
15.6242
6.12863
19.9326
4.95706
9.32998
8.7136
34.8155
38.3927
10.0571
8.66871
37.8885
41.2116
53.1266
45.6721
45.8645
13.2749
41.796
11.9577
93.776
15.5904
10.6512
77.4471
33.0584
34.8423
30.2898
36.7393
6.26753
14.0556
5.2385
19.9747
5.66069
16.8427
6.16814
11.9849
18.9561
81.5646
95.1518
15.2286
50.9696
14.4226
7.3967
21.8984
6.65845
32.4096
7.93046
6.58475
30.1326
9.10133
39.4713
43.2012
8.64437
41.9766
9.86043
8.89772
38.7598
41.9259
36.5377
77.2931
14.1419
18.5105
73.4651
18.3648
74.5392
13.5871
36.838
10.807
69.6686
38.3245
14.0707
304.659
79.6766
73.7092
3.01727
9.16499
3.69267
9.62932
8.55514
3.39891
3.37686
92.1832
42.7345
78.9368
38.1055
43.4914
40.3084
4.23067
10.5669
11.4509
4.67283
4.80282
9.88044
4.11142
4.50776
19.9458
5.77044
13.8341
4.70975
5.43715
15.2296
78.149
294.803
4.25611
4.25386
15.6453
11.2813
4.99951
3.88152
13.95
5.91876
6.05916
35.5807
30.444
33.5809
6.3745
5.90794
6.76813
37.2339
6.59804
35.1134
7.82184
36.0799
6.4464
3.08297
9.31156
2.58681
10.9615
2.74011
10.5265
2.87342
17.8838
9.41698
13.2433
14.2234
0.25938
0.0944672
0.2066
0.100089
0.261116
0.105478
0.215666
29.814
23.3736
27.3027
27.4141
34.0903
34.9985
36.0063
33.2124
0.259189
0.182909
0.111596
0.121402
0.115248
0.212542
0.195128
13.1459
6.74065
8.55653
11.2383
3.18399
2.01423
5.00088
1.84766
5.74058
2.98048
2.08352
3.25125
5.71289
1.79862
2.03977
5.78848
3.20012
2.07121
2.92253
5.39724
2.39032
6.45401
0.169565
0.0185947
0.0195637
2.76739
1.08868
0.00973215
0.313712
0.219604
0.0649223
0.6536
0.0940339
0.242461
0.0593329
0.418707
0.0772262
0.156642
0.0145988
0.00641993
0.195431
0.00700022
0.0639868
25.3461
65.0984
331.874
0.12648
0.169932
0.0522965
0.0297521
0.033316
0.196021
0.100229
16.5725
9.90889
14.6944
11.4471
0.246892
0.066416
0.245542
0.0705969
0.27313
0.0730482
0.248188
99.9439
80.0357
0.453504
0.150983
0.80686
0.118681
0.71087
0.117324
0.526414
35.5367
35.4575
37.4212
33.7477
0.253725
0.216951
0.0720539
0.071076
0.0767791
0.242513
0.247595
2.37341
1.6158
5.03334
1.48732
5.00199
2.39768
1.59985
2.83924
5.49897
1.93078
1.64848
3.01873
5.40878
1.82796
4.95062
12.5621
8.67678
3.50746
4.03727
17.4698
5.04197
21.6146
19.4259
16.7859
24.9547
7.04281
35.809
44.3096
8.12459
8.6884
42.361
7.57222
9.88289
9.0468
6.12748
13.6928
2.15824
1.91714
1.46998
4.68573
4.62736
1.79893
2.396
2.24733
5.14378
1.52444
1.79472
5.04391
2.338
1.76259
2.34431
1.63524
5.01373
1.49022
2.36993
5.04183
1.63138
2.30316
5.19036
1.77454
1.53564
2.37179
5.13246
1.74166
2.33542
9.14824
2.01324
4.24771
1.91617
3.00362
8.3615
5.39822
6.15247
34.2516
29.7209
6.32068
30.8007
6.07466
4.54194
31.2195
5.89166
33.3283
5.92618
5.22688
29.6
3.22029
4.80014
8.19492
2.49678
2.70575
9.29166
3.66122
1.31249
0.674532
1.80447
0.593437
1.82363
1.31583
0.601391
7.57852
51.2809
17.7493
7.65463
17.8488
1.31296
0.675456
1.71486
0.597452
1.80111
1.28377
0.605831
1.49816
0.60875
1.97939
0.458121
0.456339
2.04996
1.56796
0.866842
0.605898
0.293029
0.224188
0.854627
0.304985
0.61654
7.58449
51.9024
17.7969
7.64445
17.9092
1.53105
0.598769
0.437622
2.34907
1.52035
0.440422
2.04619
0.888893
0.330104
0.233047
0.636336
0.318222
0.999323
0.631087
0.383206
1.48879
0.157678
0.486043
0.160517
0.389123
1.52219
4.20345
13.0073
5.43933
6.55133
5.61954
6.71454
4.14884
0.371127
0.146407
0.467061
1.40824
0.150086
1.4872
0.362733
4.20151
12.6854
5.29411
6.26397
5.54486
6.60134
4.04175
0.331266
1.48038
0.332283
0.109775
1.48313
0.109771
0.340142
0.351063
0.129356
1.79156
0.356992
1.58263
0.393593
0.119575
0.356113
2.00623
0.353929
0.125619
0.11846
1.58696
0.425821
3.97424
11.204
5.71713
5.23071
5.70025
5.46029
4.01153
0.346753
0.113038
0.348551
1.5466
0.113432
1.56048
0.358726
3.94516
11.2921
5.74267
5.2097
5.75497
5.3875
3.99184
0.332896
1.4764
0.336352
0.106581
1.50666
0.335412
0.108532
0.336902
0.11187
1.54143
0.340126
1.5219
0.355567
0.10954
0.591108
0.588427
3.17007
2.67002
3.16021
0.612005
0.570454
0.657401
5.52644
1.20859
3.54842
1.02823
3.50507
0.693643
0.225313
1.41722
1.3606
0.134664
1.7166
0.185863
0.160608
240.87
11.5855
14.5507
13.2361
19.3221
12.4184
3.36279
4.05568
13.2165
4.03481
18.5173
22.9701
4.81626
17.0534
3.96559
23.4195
15.7053
4.87314
29.5039
8.58616
7.74456
52.9009
6.89246
53.5281
33.5626
29.756
31.7623
31.4602
38.0729
39.0032
40.2143
60.277
62.8476
0.0723594
0.0739654
0.693592
0.846664
0.0635231
0.85326
0.0847486
0.0789361
0.864911
0.0691075
0.74274
0.0682003
0.0802472
0.922914
3.85827
4.67628
25.83
28.4838
4.41416
21.833
4.39355
1.95376
7.78692
1.92673
8.86913
2.12939
1.68078
8.82735
2.06557
7.97564
1.94034
10.6957
1.62482
8.98871
2.45889
21.1626
27.9028
26.319
21.8998
21.0328
22.3597
10.6688
14.2499
226.37
16.3088
36.9387
39.3195
34.9157
0.673021
0.719494
3.01598
2.27482
0.740646
2.65362
0.705233
27.2992
5.16714
5.76345
27.1958
27.3267
5.31395
27.3672
15.7584
14.8793
3.03535
3.75867
12.4825
16.7144
3.66957
13.7564
2.87604
10.2049
2.43861
12.6348
10.8094
2.98033
28.0871
7.45619
6.64518
33.1908
28.3723
6.49474
31.3942
0.0734677
0.49183
0.0818594
0.534872
0.458334
0.0715518
0.087044
0.0564878
0.0430861
0.286847
0.34141
0.346319
0.0479102
0.0505079
0.0621138
0.415903
0.316882
0.0532402
0.383481
0.0521699
0.0619047
0.0669967
0.487622
0.410679
0.0691312
0.415479
0.0790232
0.0593449
28.2155
7.65168
31.5893
5.62339
27.4429
35.5759
6.17564
9.56055
4.98862
8.02108
19.3191
17.0515
18.4082
28.2081
4.93621
25.1974
3.87055
27.6937
5.01344
24.9812
0.0795533
0.07361
0.52351
0.751241
0.0685944
0.0847321
0.63654
0.0676318
0.433063
0.462489
0.053608
0.0585717
0.565635
0.0628496
33.1845
6.49847
6.96906
27.5688
7.68385
28.4052
30.5927
22.6587
22.8969
24.4309
9.43275
12.7971
65.0768
11.7257
57.4398
20.8612
20.7606
22.5075
0.583351
7.35384
0.581327
0.821129
0.489006
1.47783
1.50838
0.497358
0.552224
2.17727
1.96923
0.53332
1.95545
0.530179
0.788363
8.9501
1.40305
3.62043
0.741368
1.59703
3.68652
23.3017
57.6568
263.696
2.50279
1.97233
4.64936
1.52298
4.68244
2.51012
1.98596
2.36453
4.07529
1.26
1.59634
4.11851
2.39503
1.6114
0.916439
1.80909
0.706707
0.0699983
0.0194367
0.174522
0.0621254
0.0212447
0.0123189
0.00267517
0.00226993
0.011413
0.00273107
0.0116457
0.0121356
1.65855
0.768479
0.826112
0.968688
1.37824
6.16634
8.22212
17.3359
1.36986
2.33628
3.6529
37.42
4.70289
4.94428
28.6163
30.707
5.17165
4.84436
29.0166
4.80459
5.97573
7.57319
2.39005
4.79443
3.47483
10.16
3.52473
9.24953
2.21498
13.8275
2.9238
2.52858
15.2092
22.97
4.11965
8.4207
18.6279
15.1658
15.8586
1.79428
1.00661
2.7159
0.82361
2.94396
1.71636
1.04999
126.824
42.0546
39.9952
1.72776
3.08323
3.50434
2.11361
3.68746
1.35241
1.03925
2.18902
3.58818
1.29701
0.691926
0.717808
2.01171
2.00159
0.718856
0.728461
1.96231
1.98939
11.2298
3.4014
8.57314
1.76733
0.891935
0.459555
0.397529
1.19714
1.22851
0.472293
0.863625
9.28843
4.61286
7.78664
12.4437
14.5947
12.0756
0.942676
1.41169
0.455623
0.53758
1.38303
0.952265
0.52859
3.59562
0.351791
0.783237
0.7393
1.04258
1.12218
2.45661
0.523636
0.218345
1.19467
1.07216
0.240931
0.491652
2.16636
0.0316071
0.0146184
0.249627
0.0420502
3.18128
0.0119511
0.00924548
0.00239337
0.00186288
0.0102941
0.00228209
0.010742
0.00890862
0.00679105
0.00519039
0.00185528
0.0016559
0.0056786
0.00197316
0.00614277
1.0222
13.7342
0.606976
0.593184
1.01881
73.4215
0.0228391
2.20229
0.00918937
0.18637
0.0206072
2.49828
0.0094412
2.69734
17.0789
18.0645
3.99351
95.8805
20.5424
15.5108
17.9484
1.68274
0.924127
2.2648
0.835288
1.48986
2.54182
1.02472
13.9871
18.3152
15.8748
3.21355
3.01743
5.27379
1.00284
1.47343
0.56525
0.497765
0.987183
1.49081
0.577007
0.610351
0.283618
0.869004
0.26534
0.834265
0.632096
0.261548
71.9799
58.5787
13.8181
9.76371
42.5716
3.33013
42.2021
13.9307
3.29744
0.508157
0.263371
0.80999
0.21696
0.853318
0.401091
0.230315
0.666369
0.307526
0.896419
0.278294
0.280402
0.913174
0.654928
14.4093
10.3124
43.3577
3.4054
44.0986
14.1768
3.48326
0.685638
0.320956
0.294595
0.984215
0.69917
0.291706
0.94241
0.359136
1.3193
0.134958
0.436399
0.138166
0.361907
1.42222
3.12719
8.0313
3.36277
4.77361
3.49731
4.85839
3.07398
0.311244
0.103202
0.369553
1.20464
0.111
1.27521
0.296232
2.72701
7.10826
3.09455
4.46014
3.00223
4.33653
2.81071
0.20342
0.888775
0.225019
0.0544616
0.927035
0.0574438
0.196144
0.219264
0.0731871
1.04767
0.248005
0.983279
0.238638
0.0665901
0.154695
0.756514
0.0938917
0.0264713
0.0273136
0.771061
0.151281
2.02043
5.3048
3.23168
2.28471
3.20932
2.26256
2.04185
0.163663
0.0313325
0.10389
0.822467
0.0305773
0.810291
0.16577
2.15554
5.61872
3.3011
2.34136
3.3752
2.39881
2.09968
0.166833
0.83607
0.183979
0.0566778
0.716358
0.187168
0.0530983
0.229541
0.0355063
0.873501
0.136846
1.26908
0.177447
0.0397611
0.0274318
0.026323
0.154472
0.195612
0.0247882
0.029162
0.174865
0.0261033
0.0414772
0.21113
0.136291
0.158859
0.0379526
0.0261368
0.0242623
0.131654
0.0289732
0.181323
0.0220836
0.148607
0.0333737
0.0292699
0.0356979
0.151631
0.188471
0.161316
0.0312172
0.0330599
0.0261365
0.0291127
0.12192
0.200639
0.141963
0.0229633
0.0343163
0.0259773
0.129203
0.118574
0.0237647
0.137335
0.0229536
0.0271763
0.0298898
0.193898
0.250521
0.0477611
0.167038
0.0405647
0.0340209
8.1514
11.6069
1.63384
1.76245
10.5163
1.4727
10.099
3.9741
0.841913
3.99734
0.771649
4.38821
3.68054
0.812891
6.68077
1.12888
0.937569
6.54371
0.984027
8.27423
5.58046
19.0031
17.1424
2.07554
2.59847
17.7538
2.17362
19.1538
46.4131
5.43737
8.42832
183.464
6.67628
90.5027
24.4609
3.15758
25.5647
3.66988
23.7978
25.9891
3.34984
14.3327
1.89768
1.00087
13.7646
1.25652
15.8296
12.0798
0.0197351
0.0234729
0.126747
0.133165
0.0220935
0.0207976
0.114759
0.0163624
0.0171026
0.0833454
0.0946462
0.0148119
0.0888673
0.0194246
0.017741
0.109354
0.0164703
0.0926556
0.0158865
0.0184991
0.100257
0.0180114
0.11462
0.0251185
0.10934
0.0198964
0.100326
0.0220147
0.0406255
0.0408304
0.215823
0.236668
0.0459723
0.0369528
0.22925
17.7742
16.046
2.05937
2.46462
2.29977
14.6108
18.7422
15.1664
11.8338
1.53827
1.61549
1.62205
14.0186
13.0439
11.6948
1.32809
1.46535
8.30156
1.53529
10.6595
10.1879
14.4379
1.68335
1.33727
13.1357
1.57437
15.2952
12.2625
0.0324678
0.140111
0.0293376
0.181797
0.0283484
0.166364
0.0339681
0.0308313
0.0273984
0.147199
0.201338
0.0346588
0.0252074
0.175864
0.0270883
0.123956
0.0203435
0.130215
0.0227843
0.0236699
0.148171
0.0371043
0.222982
0.229192
0.0455758
0.041896
0.196886
0.0394982
3.83075
0.608003
0.696921
3.83294
3.63805
0.647546
4.11545
5.61158
0.915825
0.806445
5.78882
5.08836
0.829911
6.42287
0.0183299
0.0976566
0.0203878
0.110592
0.0979707
0.0182955
0.0204733
3.71459
0.682241
4.36638
0.595942
3.49578
4.85474
0.635811
6.0376
1.33783
0.837957
0.258365
6.6481
0.882344
1.41017
7.27114
1.16861
6.98048
1.16312
6.13595
8.30206
1.08961
2.94057
0.469
1.88525
0.26656
2.71006
0.512853
1.75484
0.0219146
0.107352
0.11971
0.0255375
0.0248674
0.103929
0.0223323
0.0166249
0.0132756
0.0749612
0.0758169
0.0149078
0.0147807
0.0821787
0.0184434
0.104981
0.0181435
0.0857472
0.0163479
0.020761
0.0904214
5.22742
0.769854
0.765643
4.10597
0.868521
4.52734
4.56927
11.647
10.3835
1.2614
1.22641
9.48963
12.5491
1.33141
9.9651
1.05304
1.20326
7.08582
8.50553
1.22269
7.84622
11.4773
1.36418
1.89271
8.24941
10.0381
1.71274
9.71234
0.0255785
0.0227032
0.14297
0.13024
0.0253887
0.0227911
0.15547
0.0143116
0.00745688
0.149415
0.0502268
0.0151079
0.125975
0.00762927
0.0289236
0.167759
0.031638
0.229086
0.0324703
0.0284895
0.188845
0.0134005
0.0911682
0.00732962
0.0481487
0.0124603
0.106011
0.0075308
0.0242511
0.13896
0.0204839
0.0848905
0.0269843
0.11614
0.0183627
0.0237928
0.0434827
0.130376
0.254958
0.042916
0.0255092
0.121061
0.0202388
0.0662157
0.240266
0.0213702
0.0368143
0.10111
0.0139909
0.728816
0.317476
1.35604
5.97062
0.30661
0.39046
1.71929
0.684992
0.366642
0.995666
0.288078
0.948024
0.723724
0.349803
46.958
30.6069
9.97755
336.703
78.7891
11.0849
1.2315
0.809269
0.557354
0.925161
0.467866
1.62747
0.829524
8.08589
1.65348
0.955251
11.689
9.95854
0.881556
9.96933
2.19111
0.132367
0.0621322
0.513915
0.142097
2.02542
0.545377
0.00824371
0.00602164
0.0810778
0.5825
0.00887502
0.419145
0.00550851
0.00629235
0.0041546
0.124765
0.0247522
0.00580318
0.188282
0.00435237
0.00752129
0.0693038
0.241362
0.00442026
0.00677318
0.38045
0.00496678
0.00655593
0.234812
0.00449759
0.0257738
0.00662979
0.201022
0.00449266
0.0438639
0.0987656
0.188759
0.0486232
0.0524806
0.115297
0.0427845
0.92453
0.731125
0.483636
2.26485
0.575731
1.20261
1.57329
9.47742
9.86694
1.70536
1.46705
8.12549
11.176
1.74583
138.812
32.5355
1.69452
0.378423
0.0977474
0.0455607
1.47238
0.109433
0.419028
8.35213
1.34278
1.31834
10.9971
10.1506
1.21204
9.18896
12.1689
0.222029
1.09026
0.277635
4.71538
2.13211
0.674233
1.91009
0.122013
0.486671
0.0525071
1.92969
0.120703
0.479824
0.271482
0.159986
0.539244
0.137555
0.533783
0.273294
0.13698
11.9373
42.1779
42.8541
11.7439
2.40404
3.70413
6.93256
1.57395
1.55818
6.90647
2.41949
0.264377
0.154461
0.513307
0.131133
0.52164
0.262214
0.131582
12.4995
44.9392
44.6311
12.59
0.318204
0.180754
0.555746
0.145074
0.149401
0.639922
0.287183
40.2991
41.4881
2.4816
3.81907
7.02813
1.61973
1.63748
7.05617
2.46557
0.383952
0.197133
0.171606
0.730718
0.413717
0.167009
0.666658
13.1324
45.7341
48.0412
12.7774
0.120073
0.664702
0.0180855
0.0542321
0.0161327
0.126939
0.624641
1.99824
2.1657
1.83447
1.22002
1.80426
1.14435
2.01568
0.144458
0.0149325
0.100034
0.615945
0.0205464
0.759493
0.121259
2.66603
3.45099
2.83305
17.9977
2.46497
9.78944
3.38727
0.0955168
0.481257
0.0504683
0.0102747
0.0884914
0.520275
0.01116
0.100324
0.0125017
0.560306
0.0533737
0.539593
0.106988
0.011948
0.0283201
0.0313695
0.046484
0.036001
0.0312288
0.0365411
0.0287051
0.0142185
0.0377764
0.0145313
0.0364346
0.0147742
0.0140343
0.0390898
1.06869
1.15997
0.308654
0.288454
1.00432
1.22602
0.28711
2.43234
0.4368
2.52098
0.364727
2.55393
2.38398
0.42935
0.689477
0.313832
0.313933
0.848855
0.692968
0.297969
0.827171
0.016392
0.0176903
0.0725163
0.0610528
0.0182649
0.0158281
0.041463
0.0170808
0.0182973
0.0430477
0.0324298
0.0179492
0.0172666
0.0371303
0.0163387
0.07619
0.0150089
0.0471158
0.0162232
0.0154634
0.0434016
0.0170036
0.0541207
0.0191952
0.0306817
0.0178287
0.0186466
0.0350969
0.557492
0.265514
0.285503
0.568147
0.54957
0.274342
0.579273
0.577468
0.131996
0.143255
0.530377
0.559812
0.146443
0.547083
40.1282
39.6345
0.572808
0.128446
0.147265
0.547281
0.586076
0.144101
0.53768
37.0675
37.845
0.188231
0.102795
0.281875
0.100872
0.269919
0.195465
0.100234
6.62605
9.35413
9.63414
6.47217
1.91556
2.15319
5.69839
1.97915
1.37276
4.60257
2.41436
0.178964
0.0972384
0.25281
0.0925627
0.260236
0.175658
0.0931952
7.29255
10.9707
10.726
7.48278
0.194392
0.10423
0.272338
0.100247
0.100601
0.282882
0.188499
7.77229
11.6907
7.87349
11.5417
1.60325
2.16447
4.42818
0.887472
0.976357
4.92896
1.4935
0.184775
0.100137
0.0966456
0.274807
0.186464
0.0963176
0.270947
7.3808
10.6927
10.9789
7.17125
0.44575
0.0767124
0.0960847
0.3336
0.446098
0.0961075
0.334395
33.3256
8.48591
30.1181
10.0541
0.461758
0.0822635
0.0999987
0.349711
0.460759
0.100878
0.349957
29.3027
8.01591
28.8394
8.18264
0.10651
0.0490148
0.1537
0.0446448
0.156291
0.111521
0.043944
3.50545
4.36569
4.57181
3.35892
0.571047
0.784992
1.43421
0.502593
0.48748
1.3961
0.587846
3.73713
5.16115
5.07233
3.80588
0.122728
0.0559699
0.16631
0.0508614
0.0510995
0.167379
0.122101
5.51168
5.66797
4.22364
7.03176
0.682095
0.94125
1.54467
0.555261
0.595024
1.63405
0.641588
0.13471
0.0626476
0.0593865
0.18059
0.134755
0.0596183
0.179737
4.03704
5.30792
5.43572
3.9303
2.54948
5.48361
0.264212
0.0623161
0.0763883
0.112382
0.295724
0.0737271
0.107467
0.308842
0.300517
0.0768166
0.0757006
0.317332
0.294587
0.0756274
5.78873
3.82568
5.86972
3.77166
0.270988
0.0527814
0.0688238
0.0998653
0.28059
0.0676333
0.0964824
0.312633
0.0903463
0.39689
0.0808925
0.411912
0.30396
0.0812243
5.25996
4.48332
5.76888
3.7323
1.53218
2.08369
2.11701
1.51236
0.218129
0.891294
0.36613
0.210491
0.200125
0.346175
0.231174
1.72614
2.72846
2.38823
2.00901
2.08131
2.83561
2.10959
2.79683
0.424512
1.80676
0.466933
0.290612
0.398707
0.628782
0.311391
2.12274
3.6221
2.84815
2.83569
1.40212
0.96607
0.126654
2.26048
1.1022
0.255288
1.04318
0.112028
1.50602
1.97684
0.0955034
0.0349333
0.0352571
0.0543874
0.083836
0.0369894
0.0580496
0.278237
0.33494
0.0628623
0.0699459
0.296834
0.318354
0.0613226
3.73643
2.37134
2.98568
3.08906
0.113536
0.0451544
0.0465643
0.077242
0.125352
0.0459155
0.0717754
0.242783
0.0493713
0.317166
0.0616418
0.232041
0.285915
0.0519677
2.35513
1.73657
2.25201
1.81481
0.602729
0.879507
0.600491
0.885678
0.0936608
0.0306466
0.447805
0.0100934
0.00944295
0.430183
0.0961306
0.791902
1.15405
1.14159
0.797532
1.90273
1.83385
1.35167
2.47681
0.148771
0.0366147
0.577715
0.0110994
0.0126669
0.716778
0.124556
0.931313
1.26955
1.32971
0.886722
0.271018
3.71478
0.409789
1.4715
0.543492
1.70795
0.212076
0.455985
0.532089
0.125291
0.130118
0.564409
0.422697
0.123431
20.9714
10.2763
17.0897
6.91384
0.253031
0.177519
0.0428111
0.0287981
0.288082
0.0369287
0.131762
0.265118
0.035316
0.172532
0.0242424
0.310409
0.0347517
0.146118
0.173487
0.0961558
0.0238753
0.0196581
0.155435
0.025889
0.110351
13.6681
48.9631
7.55998
14.2302
7.30276
0.193329
0.032291
0.0216114
0.162013
0.0280693
0.26062
0.121941
0.0134863
0.0114148
0.0346523
0.0275953
0.0114949
0.0131146
0.0285237
0.0138326
0.0298736
0.0358868
0.0114549
0.0119347
0.0295521
0.0139528
2.37913
21.6637
12.2147
5.23707
10.4115
4.19787
2.71248
2.14533
14.4389
9.54735
3.85375
8.48922
3.74199
2.18386
0.158066
1.77401
0.697602
0.0728695
0.0742949
1.74547
0.151222
6.32414
8.81463
44.1243
11.6642
32.6535
4.99879
0.170489
0.091942
0.749331
1.78655
0.079423
1.88978
0.200835
0.0541509
0.0868519
0.0185103
0.0127116
0.100797
0.0139808
0.0470613
5.03851
11.1407
158.805
14.7654
7.34352
0.163396
1.95553
0.722751
0.074448
1.91199
0.0757247
0.159329
0.227393
0.103725
2.0453
0.753031
1.90609
0.233138
0.101421
2.37584
0.0956406
0.0685204
2.83101
2.41654
2.51778
0.0683681
6.37491
4.2758
2.46408
9.92287
6.35727
2.62388
16.7593
0.268238
3.01203
1.06802
0.131117
0.124192
3.02815
0.298192
16.324
15.5387
0.065328
0.177965
0.022208
0.0137178
0.168568
0.0133856
0.0769519
0.271637
0.129228
1.11596
3.2896
0.127138
3.14081
0.289072
0.0553971
0.0103414
0.0954801
0.019294
0.134925
0.0443224
0.011927
0.0304679
0.046914
0.0111294
0.012639
0.0333374
0.0361157
0.0105192
0.189709
1.91079
1.07258
0.0739847
2.84108
0.160726
0.0893145
14.3077
15.2802
0.221126
0.122544
1.29451
3.2904
3.62679
0.10171
0.270373
0.0285869
0.00926171
0.0111991
0.0614569
0.0387729
0.00856187
0.0367917
0.220528
8.26791
1.05811
0.11957
0.105516
6.26775
0.261031
0.0506971
0.145493
0.0169349
0.0119337
0.121024
0.0654545
0.0108919
0.0361819
0.00880966
0.0521688
0.013286
0.0792671
0.0279936
0.00946516
0.0454804
0.0646431
0.0135081
0.0133383
0.0603605
0.0127191
0.0402934
0.0321851
0.00986686
0.0113352
0.0417455
0.0422762
0.0102853
0.0288716
0.0238143
0.0300869
0.00872724
0.00942595
0.0317428
0.00928722
0.023948
0.0242322
0.00946205
0.0340234
0.00903323
0.0337376
0.0246569
0.00943477
0.0368232
0.0587911
0.0131643
0.0125536
0.051583
0.0368253
0.0131775
0.0284105
0.011023
0.0105443
0.0363809
0.0375205
0.0110506
0.0281599
25.168
5.32471
11.7628
5.02502
0.0329821
0.0336641
0.00897795
0.010654
0.0395022
0.0292326
0.0109655
0.0345545
0.0109013
0.0392452
0.00977453
0.0417946
0.0334919
0.0110957
0.0271342
0.0512421
0.00723371
0.00832278
0.0401374
0.00824395
0.0309814
3.14187
3.20346
2.44
3.14801
0.0277691
0.00889552
0.00751936
0.0325722
0.0311128
0.00874845
0.0273818
0.791407
4.40503
23.0311
0.806523
0.550484
7.75239
1.35793
0.0446873
0.0198276
0.0526147
0.0245104
0.0790217
0.0394209
0.0272448
0.067951
0.04645
0.187882
0.0350707
0.120744
0.0546078
0.089266
0.20499
2.11813
2.0111
1.68166
0.18587
0.193819
1.82982
12.2203
2.19275
10.7772
4.84673
1.55873
4.96006
1.61581
0.21376
4.00004
3.47752
1.63605
0.216362
1.70042
0.200728
7.20031
2.05993
9.83556
4.35482
1.49961
1.54571
4.5693
0.0719142
2.1736
7.15065
0.0633213
0.065585
0.0582191
2.079
7.088
0.0565083
0.0600221
0.0536815
1.9643
2.04091
0.050797
0.0681473
2.18544
0.0696688
0.0643239
1.67735
0.0672899
1.56235
15.3548
15.7213
15.5292
15.5969
15.7739
15.6038
15.2091
15.3774
15.3906
15.9288
15.895
15.7345
14.5201
14.7804
14.6438
14.2376
14.6637
14.5642
14.3405
14.1117
14.4719
14.8807
14.8447
14.7376
13.3668
1.84153
13.3982
1.86068
1.8656
13.3071
13.4623
13.3285
13.2843
1.86108
1.87746
13.3687
13.2468
1.86796
13.4268
1.82878
1.84646
13.5789
13.4708
1.8553
13.5277
13.2718
1.86968
1.88393
13.1454
13.1937
1.87602
13.218
10.8029
1.51905
10.8103
1.42556
1.46354
10.6763
10.8867
10.7369
10.4877
1.4761
1.36508
10.885
10.1503
1.44678
10.911
1.54792
1.52829
11.0481
10.992
1.50096
10.973
10.5303
1.36148
1.31469
9.11411
9.70949
1.40557
10.2648
2.20982
0.389538
2.06273
0.39429
0.393533
2.03941
2.25955
2.07725
2.22207
0.397201
0.400854
2.26164
2.06185
0.391268
9.22833
8.61383
9.22794
8.50352
8.66865
9.51004
9.42473
8.54985
2.09765
0.388973
0.394088
2.3978
2.31471
0.385778
2.13225
9.23029
8.22705
8.37289
9.25439
2.17036
0.402251
0.412229
2.00226
2.13546
0.402052
2.02012
0.360127
0.920883
0.860425
0.356155
38.0859
226.011
89.9623
35.352
229.906
24.9988
15.9014
37.3036
313.145
10.9512
96.9861
41.9422
17.869
11.5521
16.0772
84.1551
7.58355
39.5961
32.597
17.2771
34.8491
24.07
6.65372
8.3983
62.7927
13.8861
63.5756
109.503
107.509
109.199
21.5014
18.4015
22.8158
112.252
52.4452
34.5331
29.6831
94.0374
31.496
19.3874
25.4645
24.2003
8.59043
7.00527
9.41132
14.9587
12.8791
12.5475
11.0354
14.3414
11.9555
7.44376
10.2603
9.97651
16.6715
4.17486
3.1504
12.1042
4.79689
15.4446
12.4634
49.8401
6.10466
17.7017
52.5655
16.9555
45.5549
10.761
5.42651
199.883
15.2717
30.3406
17.3215
3.26691
5.2626
12.9673
17.6607
5.10898
12.7637
8.65211
2.31544
2.53614
6.93966
2.45952
8.15808
7.41716
10.4669
11.7336
2.94177
2.19327
12.1386
9.88805
2.65305
9.91138
2.30316
2.68416
10.7959
11.4585
2.45212
9.38046
9.21614
2.86942
2.08976
7.25898
8.51877
2.70339
8.03224
5.07666
1.86787
1.94745
3.99209
1.89104
5.00368
4.04935
6.10041
7.16302
1.78967
1.88842
7.00182
6.24365
1.85123
5.9854
1.79542
1.75675
6.77151
6.86956
1.81858
5.90006
5.17486
1.98273
1.96328
4.22994
5.29996
1.92495
4.12881
2.9291
1.44121
1.48988
2.09336
1.47091
2.85607
2.14766
3.72726
4.44027
1.42067
1.47711
4.39385
3.76774
1.46321
3.67584
1.42222
1.40746
4.24594
4.3361
1.4479
3.5901
2.97076
1.50711
1.50239
2.20428
3.00168
1.48791
2.17984
1.92807
1.12658
0.337727
0.269414
0.252259
0.249628
0.242378
0.245745
0.235179
0.230981
0.219486
0.238069
0.198774
0.280965
0.150541
0.133621
0.171889
0.211962
0.205179
0.172284
0.157769
0.132184
0.138601
0.156203
0.64196
1.77779
0.461803
1.56735
0.784245
0.294826
0.560541
211.499
1816.55
103.061
672.253
459.238
31.457
29.9658
29.3996
117.535
56.4765
9.12764
73.2916
16.6742
7.45012
3.9769
7.13272
9.16976
12.76
3.62951
4.56587
2.06488
3.827
4.76516
1.81164
9.32358
23.9152
8.83546
1.54701
3.24416
4.55857
10.0584
26.5712
10.5566
1.73359
3.70448
4.55093
14.1769
5.91741
16.0816
4.89632
33.138
14.1721
5.57155
13.1959
4.28919
29.0495
6.60978
1.92469
4.71541
1.86084
5.49991
1.8563
4.27053
10.9355
2.7071
21.3772
5.89579
9.1794
3.2591
19.4811
40.1118
21.6353
21.1843
40.8017
63.168
25.4229
23.4142
11.807
19.5656
4.02605
5.55794
3.6388
12.7652
18.2133
5.43286
27.6634
19.773
5.17323
5.05524
28.0919
5.39613
4.97002
14.5073
69.8686
15.8467
7.53224
7.56968
15.3834
16.0294
9.15982
6.41716
21.6574
31.9474
5.54036
7.67094
33.4676
5.63989
5.22824
42.5554
14.1665
12.8905
14.3262
12.9581
5.1919
4.13226
30.6463
12.0426
9.43448
11.9965
9.31258
4.15966
49.97
45.905
9.01709
2.26091
21.934
4.74123
5.94364
2.2294
18.5253
35.0806
22.3033
44.8108
21.0284
92.4383
7.33576
7.33805
3.62466
2.32692
2.26031
13.4883
7.02215
25.1425
11.9045
17.5283
21.6624
72.2074
56.1695
47.5275
14.7907
5.73757
15.7582
14.4975
15.7499
48.5629
40.9693
41.7679
45.3017
16.2882
5.49609
13.6335
13.7973
15.4997
45.4915
46.952
49.4777
78.484
79.1297
304.748
270.518
15.2239
6.68264
22.9801
13.8243
22.491
54.9275
54.3189
24.9093
7.11875
14.9979
14.6043
24.0931
21.2788
418.293
300.55
26.6995
81.5357
33.2768
41.281
6.48643
16.6172
3.69721
18.1606
5.22417
28.7768
5.33989
7.50592
6.96759
70.3248
27.2381
21.9143
17.9052
6.22071
4.24351
45.6137
12.7203
8.68119
12.5991
8.70993
4.24405
5.17996
48.9039
15.3379
9.44777
15.2471
9.38185
5.2075
6.88868
2.56334
13.2686
24.8171
30.627
3.33103
5.67292
7.86337
13.3942
44.7627
7.17446
11.1201
47.5206
7.36711
19.363
30.2357
5.15033
7.41243
32.0403
4.37558
8.99049
43.4512
12.0263
7.23662
54.0608
9.7528
19.8244
24.8304
8.35243
20.0219
26.4691
37.9689
8.48705
20.7781
20.3986
29.731
42.6894
14.2913
43.3489
14.4596
44.6392
43.9687
5.11104
47.0284
14.8686
9.01769
14.9375
9.08663
5.08219
2.94219
8.73979
5.30296
2.06372
8.70524
2.95356
2.0542
4.52382
38.5425
13.1764
7.5368
13.2047
7.55172
4.51222
2.91815
2.03196
5.26587
8.64361
8.661
2.03613
2.91338
43.6481
14.3806
42.9712
14.1414
41.596
42.1552
52.0568
19.7238
51.9927
19.6386
51.9768
51.8587
2.96936
8.82331
2.08365
5.42342
2.97906
8.79822
2.08135
4.60238
38.2749
13.2759
7.59389
13.3011
7.59981
4.60163
2.99096
2.1014
5.4469
8.80428
8.81934
2.0989
2.9917
3.66312
11.3216
7.90333
2.68606
11.1017
3.7123
2.64957
5.2311
47.811
19.3238
7.87962
19.4332
7.90306
5.21158
3.58571
2.57135
7.73363
10.787
10.8683
2.59015
3.56046
53.1308
20.3006
52.8541
20.3162
52.4528
52.7616
46.1402
45.3973
3.79204
11.5869
2.77889
8.26299
3.81859
11.52
2.76795
5.53892
49.6467
20.5873
8.31676
20.5084
8.25765
5.57806
3.84989
2.82234
8.33074
11.6748
11.6172
2.81162
3.86375
3.87506
13.0186
8.88503
3.0859
11.6982
4.05679
2.90905
5.19504
44.1731
18.4143
7.49589
18.7551
7.58716
5.12201
3.68949
2.71894
8.2452
10.7749
11.022
2.76328
3.63273
48.388
48.4253
60.071
51.449
4.42542
15.0174
3.23552
10.1793
4.31138
16.155
3.31837
6.03575
51.5362
24.4164
8.42981
24.3809
8.47397
6.01973
4.48149
3.37067
10.5413
16.7891
16.697
3.36378
4.48427
4.50218
16.3912
10.6713
3.48867
16.3806
4.48112
3.49796
5.83529
48.0757
23.2889
7.98751
23.3698
7.98904
5.83499
4.47978
3.46547
10.6051
16.2441
16.2964
3.47591
4.46615
4.43828
16.2415
3.49472
10.576
4.46989
16.0981
3.4745
5.77775
46.6191
22.6928
7.87656
22.7906
7.88015
5.77486
4.45886
3.49239
10.6056
16.1104
16.1219
3.49357
4.45125
4.26343
18.2077
14.6806
3.56858
18.1695
4.26434
3.56876
4.99515
23.9246
20.0651
6.04422
20.2043
6.08881
4.94787
4.21032
3.50165
14.537
17.8585
17.9979
3.5255
4.18214
4.2007
18.0186
3.53016
14.5397
4.21864
17.9461
3.51676
4.99795
23.6982
20.0391
6.07306
20.0954
6.08444
4.9873
4.21969
3.53051
14.5647
17.9307
17.9749
3.53197
4.21625
3.83999
15.4138
12.7735
3.22526
15.6217
3.81301
3.25054
4.59452
20.8828
18.0648
5.63022
17.7509
5.52401
4.6786
3.92437
3.37473
13.0484
16.2476
15.9645
3.32024
3.99281
3.70674
15.0781
3.17761
12.2357
3.76405
14.9437
3.1356
4.29232
19.3486
16.3979
5.12487
16.4669
5.15437
4.27234
3.67252
3.10398
12.1631
14.7925
14.843
3.11108
3.65903
3.742
14.8951
13.992
3.29115
15.029
3.70691
3.32129
4.25671
18.3938
15.9619
5.02824
15.9092
5.00459
4.27591
3.75203
3.34141
14.0413
15.1293
15.0836
3.32903
3.76825
0.309179
7.35454
5.85527
2.18239
0.313895
2.55241
0.282559
13.2615
2.08652
18.8067
5.40283
1.55884
5.14558
1.56516
0.276126
4.2804
4.45443
1.9394
0.232747
1.80172
0.25411
2.06196
38.3828
7.15129
1.48384
1.55472
3.46627
3.63572
14.6182
3.24572
13.5066
3.65321
14.4939
3.23044
4.13516
17.6262
15.1699
4.89237
15.205
4.8603
4.15239
3.64694
3.24147
13.4164
14.3586
14.4082
3.23756
3.65576
3.52656
13.6423
13.3375
3.18168
13.7238
3.49819
3.20996
3.95259
16.7037
14.38
4.62271
14.3456
4.61616
3.95908
3.53083
3.21953
13.38
13.7998
13.7666
3.21419
3.53702
16.2781
16.631
16.2576
15.9476
16.1334
16.0734
16.0729
15.9418
16.0623
16.5612
16.3044
16.2567
3.33467
13.3041
3.09579
12.668
3.40096
13.0264
3.03812
3.66706
15.4202
13.1176
4.22535
13.2738
4.28041
3.62173
3.27967
2.95622
12.3917
12.5938
12.7457
2.98933
3.24069
3.1737
11.6083
11.5614
2.9014
11.6599
3.15869
2.91642
3.53989
13.8488
12.1366
4.12578
12.1162
4.13172
3.53658
3.16949
2.91174
11.562
11.6878
11.6745
2.91272
3.1683
15.2169
15.4261
15.3979
15.605
15.7276
15.5679
15.1866
15.4001
15.3718
15.6029
15.7325
15.583
13.9576
14.2725
14.0823
13.793
14.1394
13.9822
13.4081
13.4423
13.8112
14.3197
14.2743
14.1631
3.0908
11.4245
2.86032
11.2991
3.11166
11.3402
2.84159
3.43416
13.3335
11.5675
3.99787
11.6323
4.01307
3.4195
3.07191
2.8152
11.2451
11.2111
11.2652
2.82629
3.05762
2.37344
9.1627
9.33405
2.22385
9.16354
2.37282
2.2244
2.57521
9.34053
9.13678
2.8801
9.08624
2.86134
2.58985
2.36689
2.22575
9.33277
9.20747
9.1621
2.2173
2.37822
8.93804
7.63925
10.3847
13.7357
13.4645
13.0251
11.3906
13.4881
12.3753
9.42253
12.7281
11.6852
13.1092
12.9417
2.00432
1.98366
12.9167
13.125
1.95192
13.2338
13.3081
1.87216
1.9286
13.3688
13.1723
1.9229
13.3001
1.9643
13.4228
1.85567
13.4336
13.3068
1.90917
13.0448
1.99226
12.7973
1.96755
12.9861
12.8531
1.96304
23.6631
183.568
26.2613
44.2036
14.8271
5.59922
13.5616
15.1416
13.8266
41.6251
39.1163
39.0882
39.5674
10.5751
4.53398
13.6543
13.5067
10.6747
39.8718
36.6627
38.1822
53.0407
10.2348
17.2312
56.8396
9.81591
25.7237
24.8904
13.5301
6.3305
2.45294
4.2252
6.86056
15.6585
4.47714
15.4218
4.8712
7.90873
2.55209
7.60329
16.3688
4.71231
46.362
16.6508
8.72087
36.1526
9.26936
146.981
374.001
337.539
25.6065
21.8908
335.186
35.8178
83.5548
296.625
28.2253
16.8764
162.687
35.8691
50.3832
62.464
29.5366
9.34386
9.22428
18.6714
22.6996
34.4952
27.8982
7.65714
14.9514
7.75046
27.4672
12.8116
5.84283
2.37404
4.33294
5.72679
13.3825
4.23718
56.6778
15.9916
16.1624
55.9658
11.8751
3.78212
2.16099
5.31987
5.36625
3.82325
11.7197
30.5353
17.0262
8.89461
32.1627
8.69943
17.4032
5.70674
55.3012
10.2952
17.3256
5.70689
55.2628
48.2597
15.9739
15.8516
48.6765
17.2891
10.3261
5.74755
54.4943
17.306
5.74921
54.6372
16.4006
50.6616
5.25222
9.49501
5.32231
16.2821
51.1822
45.192
15.0111
15.1456
44.7214
17.2435
10.2293
5.80805
54.6763
17.4149
5.73738
54.0202
9.76116
3.25922
14.8076
4.95392
9.75325
3.25291
14.7939
22.4602
11.7511
11.772
22.4167
59.0366
58.8529
58.8632
58.6927
9.75531
4.93652
3.2609
14.81
9.79295
3.2442
14.7364
9.5974
14.2574
3.16195
4.82373
3.19026
9.5533
14.3776
22.2602
11.7617
11.7716
22.249
57.4902
58.6739
57.8005
57.7938
9.55434
4.78339
3.24823
14.6824
9.74957
3.16493
14.3389
8.5787
2.82054
12.1058
3.85108
8.60089
2.81866
12.0541
20.0682
11.1888
11.212
20.0579
50.9409
51.9279
50.5996
50.5756
8.58033
3.83786
2.9001
12.3504
8.83426
2.82296
11.9794
8.79147
12.2803
2.85487
3.79604
2.85606
8.87175
12.2099
20.5732
11.7225
11.6318
20.7673
50.0412
52.5793
51.3143
51.8311
8.59556
4.05055
2.98664
12.5512
8.99156
2.95125
11.9474
6.21329
2.21243
8.65614
2.80277
6.16382
2.21344
8.71257
17.0554
10.4058
10.5144
16.8945
25.9789
56.1778
26.5566
55.0807
25.137
52.9763
24.9064
53.4115
6.42309
2.87911
2.3176
9.27544
6.61158
2.27123
8.99867
6.78839
9.3863
2.35464
3.01486
2.37694
6.72733
9.4853
18.4211
11.4157
11.4971
18.2692
27.0913
57.2826
27.1593
57.0187
26.9758
56.2936
26.7624
56.7289
6.83066
3.03891
2.39484
9.52506
6.80955
2.39304
9.55698
5.43287
2.19541
6.88642
2.5807
5.47163
2.18705
6.85931
16.2149
10.6285
10.6239
16.2485
21.1483
26.7478
21.0865
26.8764
21.1515
26.9496
21.1999
26.8955
5.43293
2.57649
2.19505
6.86026
5.46716
2.18625
6.84851
5.44675
6.8004
2.15723
2.55097
2.17591
5.42999
6.85497
15.8401
10.451
10.4593
15.829
20.467
26.4517
20.8503
26.0113
20.6014
26.1086
20.5864
26.1576
5.47497
2.64005
2.2307
6.87995
5.48918
2.23198
6.91666
10.4799
46.3425
8.03804
8.10173
10.3931
15.9528
20.5891
15.9671
20.5626
15.7845
20.2132
15.6627
20.3449
10.4351
45.7887
8.06293
8.08086
10.4038
15.683
20.3784
15.7777
20.2528
15.7267
20.1971
15.6606
20.2934
9.22226
40.3804
7.37716
7.2317
9.41852
13.1
15.8887
13.0916
15.8611
13.4415
16.6629
13.7486
16.2918
82.2059
77.2667
25.3416
19.2585
25.971
70.6672
74.7415
28.0312
19.7262
26.6643
8.61364
37.4611
6.70074
6.7459
8.5451
12.825
16.6339
13.3812
15.654
12.549
15.0365
12.4196
15.225
8.13828
35.3834
6.47955
6.44865
8.18043
11.7243
14.0457
11.6075
14.1913
11.806
14.3725
11.8712
14.2893
26.2102
93.5045
28.8927
17.5921
24.133
22.3077
19.1893
16.7923
20.4745
280.824
64.5825
44.1766
14.3809
12.9931
12.6635
10.6951
8.7902
10.8157
14.1392
12.3248
12.4577
11.2835
8.93082
10.9887
7.90338
33.9549
6.32809
6.26343
8.02355
11.3636
13.8102
11.4129
13.7475
11.4994
14.5113
11.7783
13.986
7.501
32.0446
5.95335
5.9477
7.50676
10.9413
13.278
10.8879
13.3525
10.9458
13.3479
10.951
13.3465
148.471
16.4947
16.4751
16.3328
16.0066
16.1606
16.1295
16.3881
16.1076
16.2136
16.4633
16.3319
16.2764
11.5595
12.7297
11.1801
8.0354
10.4589
10.048
9.72668
7.39635
9.35633
13.2705
12.1349
11.7722
7.78829
6.08427
5.97774
48.7108
16.4886
16.0314
4.84134
47.3617
16.9771
16.4399
7.66498
5.71605
5.88204
49.5029
16.9145
17.5472
4.9187
17.2946
50.2402
16.6745
6.95426
29.652
5.44482
5.51645
6.85994
10.3735
12.9799
10.6227
12.6692
10.1642
12.2145
10.0213
12.3911
6.69994
27.1738
5.31608
5.32549
6.68633
9.7911
11.9046
9.76368
11.9468
9.77752
11.8975
9.75663
11.924
31.6712
37.8588
135.843
30.909
14.7829
14.8829
14.7292
13.8975
13.099
13.4645
14.1303
14.1567
13.8271
14.808
14.5158
14.6363
15.3704
15.3233
15.1914
14.7907
14.5143
14.8588
15.244
14.989
15.0792
15.0538
14.6047
14.9482
171.639
18.1346
6.77736
27.6006
57.8132
41.0682
15.6733
4.43
14.9265
15.7511
43.7969
13.7543
27.1269
5.3634
3.74142
12.9341
14.2827
9.64187
17.8437
6.43985
5.28591
4.75786
12.0493
15.2436
4.37887
2.30876
15.7727
11.5093
2.55567
10.063
8.47893
1.93128
1.9836
9.5705
8.96003
2.04463
11.6572
4.25788
14.6569
2.323
11.1244
15.3325
2.46224
10.4608
1.83172
8.68613
2.1173
9.38722
9.84819
2.14753
6.50813
26.2691
5.15496
5.17306
6.48524
9.58505
11.7667
9.63783
11.7006
9.5248
11.5854
9.4892
11.6345
4.32275
10.89
3.41529
21.9106
3.39038
21.7729
4.35769
5.44065
7.98815
5.44113
8.00346
5.45078
8.1116
5.50039
8.0307
14.0597
13.9993
13.745
13.2415
13.6089
13.8315
14.3575
13.6412
14.1142
13.7385
13.0302
13.3694
5.16631
7.72838
7.19312
7.51539
7.94239
7.81113
4.53611
6.30039
6.65336
8.43807
8.24102
8.19383
13.7439
1.7519
1.86681
13.7672
13.694
1.78759
13.8578
13.556
13.3956
1.83815
1.84474
13.4878
13.4589
1.82957
13.6703
1.7761
1.82078
13.7098
13.5949
1.80989
13.7951
13.6232
1.88151
13.4983
1.82788
13.5235
13.5874
1.81006
9.88206
1.78483
2.50179
11.2927
11.7299
1.86807
9.6674
8.92035
8.10562
1.75164
1.84536
7.9199
9.1555
1.78288
8.72438
1.68486
1.71454
7.65068
7.76687
1.72522
8.58029
10.213
3.06558
13.8029
2.17765
10.6025
12.6862
2.01838
6.72566
7.50485
1.21808
1.29296
7.42279
6.79918
1.28263
5.95058
5.20161
1.33839
1.40957
5.89199
5.25217
1.34532
6.65038
1.2152
7.27162
1.27338
6.58444
7.34399
1.27977
6.02002
1.36016
5.37315
1.41547
5.31241
6.08772
1.34954
4.36144
10.8986
21.9583
3.46436
21.809
3.43216
4.40423
5.43574
7.94612
5.40832
7.98372
5.48476
8.12522
5.53842
8.0469
3.19744
8.56328
9.98512
2.75041
9.975
2.74645
3.19985
4.09221
20.3159
5.2125
20.1794
4.1537
5.11532
4.0884
5.10359
20.2194
20.2067
4.09103
5.09838
4.25005
23.9224
4.61568
85.4549
4.82915
7.19268
7.3995
6.81862
3.55955
5.88422
5.34617
6.69658
7.51696
6.60478
8.58362
8.31547
0.93429
0.922491
8.8776
7.91432
0.885263
8.15628
7.25524
0.543581
0.604857
7.62143
7.82335
0.661756
8.47652
0.749043
8.30324
0.565358
7.97397
8.7721
0.708112
8.26956
0.86845
7.04155
0.770556
7.94849
7.48438
0.832138
11.2866
1.56337
11.4199
1.51224
11.3717
1.5408
11.3362
11.1448
10.816
1.49938
1.46052
11.0533
11.0169
1.51592
11.1953
1.57942
1.54709
11.1713
11.1198
1.55318
11.2448
11.2407
1.48837
11.2482
1.48069
11.142
11.3298
1.5115
6.30449
1.23036
1.18301
6.85163
6.97414
1.24556
6.18917
5.71124
5.09655
1.37374
1.32306
5.03974
5.77611
1.31426
5.63069
1.29027
1.36439
4.86951
4.96878
1.30648
5.52219
6.3923
1.18941
7.14433
1.26063
6.46248
7.06831
1.2523
4.02771
4.65398
1.08475
1.14879
4.56244
4.11424
1.12796
3.44315
2.87359
1.14707
1.1954
3.41062
2.9002
1.15648
3.96932
1.07329
4.45395
1.10605
3.93144
4.49757
1.11562
3.49417
1.19295
3.01224
1.20879
2.94283
3.57272
1.16945
3.05659
8.19782
9.47024
2.59813
9.53705
2.62127
3.0284
3.95849
19.7657
5.04678
19.5221
4.02586
4.95507
3.91861
4.85417
19.2358
19.3635
3.88176
4.9036
2.25144
6.7557
6.97487
2.06202
6.92318
2.04801
2.26856
2.65464
7.91182
16.5026
3.29365
8.06713
2.60584
3.35276
2.6495
3.3843
8.16686
16.5711
8.10682
2.67162
3.35357
6.0464
0.425814
6.25814
0.359148
6.4784
0.372794
5.82638
5.97238
6.07576
0.358655
0.250948
6.52085
5.52012
0.319328
6.41605
0.436023
7.36094
0.411873
6.95174
6.84037
0.380415
5.59968
0.305701
0.252106
4.92942
5.14535
0.315317
5.38067
3.85637
4.289
0.232649
0.223461
4.22217
3.92332
0.200995
3.53084
3.30934
0.495004
0.206824
3.65678
3.14723
0.253176
3.89102
0.345395
4.2984
0.549621
3.97797
4.24991
0.300491
3.49008
0.188218
3.1701
0.133375
3.1027
3.55746
0.166859
2.44046
0.53036
2.81169
0.511947
2.57066
0.499754
2.62545
8.75561
9.01754
8.87282
8.92414
2.46669
2.19529
0.425417
0.472475
2.21672
2.41471
0.464734
9.77874
8.79589
8.83319
10.0876
2.54865
0.498939
0.427665
2.34413
2.25512
0.474838
2.73229
8.68953
9.3168
8.91521
8.86732
2.36688
0.485385
2.40156
0.482214
2.33011
2.45296
0.478172
3.75972
1.05531
1.02502
4.21472
4.26472
1.06592
3.71484
3.30151
2.81346
1.15413
1.12874
2.78023
3.34096
1.11656
3.25907
1.09457
1.14255
2.71171
2.74482
1.10522
3.22027
3.80803
1.03617
4.36848
1.08918
3.85311
4.31851
1.07711
2.40731
3.01928
1.02547
1.11973
2.86613
2.55918
1.06569
1.79104
12.7069
1.94601
0.960717
2.33975
1.31886
0.996257
2.267
0.985007
3.41256
1.78565
2.88574
2.74716
1.0069
1.91664
1.15295
1.58092
1.08923
1.46696
2.05682
1.08537
2.02731
6.14438
6.36062
1.86433
6.2911
1.84513
2.05097
2.42279
7.58419
15.2213
3.16095
7.43038
2.49001
3.07019
2.38844
3.07307
7.46521
15.0818
7.36505
2.42193
3.02679
1.61393
5.50732
5.40165
1.52745
5.38569
1.51815
1.62535
1.79517
5.91515
6.61991
2.12373
5.5944
1.79846
2.10497
1.79571
2.11461
5.53516
6.4872
5.52172
1.80908
2.09829
3.02974
0.206438
3.29907
0.172934
3.35613
0.181816
2.9757
2.79102
2.64651
0.226093
0.127795
3.00285
2.44703
0.152739
3.11947
0.201769
3.67736
0.262675
3.33999
3.45101
0.178537
2.7069
0.146743
0.12791
2.3225
2.36936
0.154395
2.65599
2.34402
2.3977
0.226855
0.233232
2.3888
2.33324
0.244062
1.96006
1.54365
0.187111
0.228635
1.76203
1.71936
0.220722
2.14772
0.199439
1.85207
0.181051
1.90859
2.16271
0.212979
2.1463
0.247496
1.9084
0.269828
1.90424
2.13791
0.256313
7.70738
7.72446
7.76909
7.6481
7.62658
7.63473
7.71785
7.49325
7.61133
7.39688
7.53759
7.48751
2.04878
1.09064
1.09696
2.4124
2.53567
1.14215
1.94248
1.71452
6.79568
1.28842
1.35385
5.89669
1.85317
1.24842
14.556
15.4068
1.57892
1.10768
1.1955
5.07488
5.3661
1.16116
1.49303
2.21137
1.16821
2.91363
1.31923
2.38565
2.71978
1.22279
0.896024
4.42697
0.869746
0.241804
4.0437
0.950481
0.224554
3.42542
5.78431
2.9745
10.1074
2.5478
2.10101
2.05811
2.61237
0.308096
0.165959
0.0926274
0.0864734
0.25946
0.175839
0.101801
3.63092
12.7264
11.5934
3.75172
0.787573
0.694662
1.99221
0.139027
0.556437
3.40795
0.191222
0.336677
0.114556
0.187002
0.0910597
0.183721
0.350934
0.110702
74.2789
106.889
12.5835
24.1526
52.6545
126.045
15.9399
303.927
101.034
142.43
151.968
1584.53
68.3351
24.4637
12.5078
20.7849
27.8304
70.7163
17.6693
1282.43
927.945
253.36
44.5405
27.8989
94.5195
28.3195
143.817
143.722
20.389
53.9284
1290.21
59.7326
171.382
79.2375
339.462
38.1481
29.6094
97.6999
72.1951
23.849
156.585
27.1908
20.6024
25.87
14.9071
108.198
72.7401
154.313
22.3198
17.2726
404.223
22.7314
32.3613
31.5225
79.3054
86.7389
22.0405
28.662
30.4057
96.0077
92.8006
8.31903
11.7046
11.0787
13.281
16.105
13.5251
8.11391
10.6125
10.8221
14.506
16.4664
13.8278
18.5549
3.50716
5.69356
13.9007
19.0246
5.51923
13.6484
54.5844
18.1601
6.6983
54.0871
18.3033
18.2634
3.44544
5.37386
13.2749
18.071
5.43139
13.4297
55.5152
19.1945
6.80892
57.8924
18.5767
9.68981
2.31435
2.34533
8.55564
9.82892
2.31606
8.43504
10.8605
12.3775
2.33002
2.9165
10.4854
12.7821
2.39866
9.47565
2.27951
2.22008
7.87446
9.11258
2.28216
8.23681
11.0957
2.47122
13.2436
2.96504
13.0472
11.2565
2.43578
15.961
16.5982
14.55
12.663
13.1925
12.196
14.7916
14.3921
14.3675
11.4617
12.7722
11.5622
6.62355
2.81017
1.74454
4.64386
5.7017
2.57548
5.53335
7.03627
7.51006
1.9731
2.03346
6.56433
7.98716
2.11896
6.05103
2.31639
2.05682
4.47883
5.59073
2.22453
4.90921
7.55287
1.71422
7.66408
2.21611
8.45599
6.68022
2.371
12.4776
10.7186
11.3831
13.3403
11.8788
13.0188
12.9886
12.6164
12.1109
12.11
11.1285
12.4958
6.92917
6.27259
6.81696
7.56179
6.82967
7.05472
7.48001
7.85934
7.35901
5.95539
6.28066
6.50665
3.12946
1.57716
1.57303
2.33386
3.1617
1.55752
2.30761
3.88392
4.53009
1.50432
1.4685
3.84967
4.56945
1.51647
3.09698
1.56479
1.53224
2.2589
3.06969
1.54494
2.2813
3.92537
1.54293
4.66848
1.47806
4.6176
3.96528
1.52799
7.01144
5.66877
6.23708
7.07846
6.65502
6.56198
7.51735
7.30885
6.80174
5.4352
6.10368
5.99942
7.0652
0.849681
6.62518
0.789506
5.96844
0.749137
7.58703
7.01898
6.82521
0.555582
0.512794
7.42809
6.38924
0.544381
7.21489
0.800345
6.55115
0.722799
7.5742
6.12416
0.72449
6.7265
0.546077
0.537377
5.77643
6.02788
0.543161
6.71839
5.61259
0.373172
1.27101
1.12209
5.74738
1.24515
1.09233
1.74714
2.29293
1.20496
1.21714
1.7329
2.31271
1.21314
16.1778
4.24286
16.0007
4.29219
5.55419
0.368041
1.2265
1.07135
5.50845
1.23387
1.07889
1.77153
1.25252
2.40412
1.23052
2.34609
1.81701
1.22578
16.3323
4.49843
16.7345
4.34282
0.103855
0.136736
3.55323
2.64512
3.91023
2.59087
0.109385
17.7181
24.0494
18.8463
19.0804
9.49579
10.3134
0.141794
3.23213
3.56196
2.27642
0.107373
1.85698
0.109467
36.0423
26.7456
27.2295
14.8732
31.684
11.6069
0.066849
0.0275661
0.287412
0.0575651
0.021924
0.00587798
0.00624231
0.0146969
0.0418974
0.23695
0.0514221
0.0173659
0.00559028
0.00685921
0.224085
0.160621
0.0861523
0.112949
0.117574
0.098217
0.0827162
0.168813
0.0562555
0.256067
0.0795511
0.171202
0.118246
0.139706
4.33415
1.13041
2.89703
84.816
28.8265
4.25184
34.2913
1.32555
4.85873
53.9291
11.8821
0.605779
1.1088
1.12658
0.318224
0.2175
0.203508
0.331933
1.31312
3.27794
0.62745
1.39761
0.365093
0.385321
0.652398
1.80938
6.01772
1.52221
0.410189
0.701828
0.458858
0.637284
0.367965
0.30117
0.262238
0.171035
0.173165
0.182467
0.148989
0.689384
6.77499
0.625634
0.464808
1.69742
0.50389
1.55056
0.569357
5.29043
0.591861
0.439747
1.25167
0.424372
1.37164
0.0195596
0.045727
0.0228961
0.0390607
0.0507967
0.0219044
0.0182641
0.0368344
0.0589069
0.0306292
0.0654217
0.0342431
0.0550486
0.0288689
0.773338
10.3278
0.808547
0.578306
2.54102
0.556242
2.78649
11.0363
0.905332
0.873641
0.616975
3.55721
2.82511
0.643812
1.85362
1.64154
1.13618
3.41891
1.25825
2.56059
1.42858
1.50155
1.04128
3.36479
0.999648
3.2142
2.10955
6.55101
2.06935
1.3962
3.06423
1.39187
2.68572
4.93041
2.27179
2.17569
1.46196
2.55015
2.69677
1.5136
2.40556
2.45641
2.70715
1.67479
1.78713
1.5778
1.75147
22.7441
6.95492
2.88651
5.07189
8.02056
6.8966
18.9845
42.2059
29.855
24.2657
19.6729
20.792
24.5895
24.5137
3.03424
9.97611
8.39585
28.4692
8.55515
7.17289
11.8588
18.712
26.413
30.058
7.52758
12.4483
8.4427
1.71961
24.8607
3.03348
3.62317
7.63018
11.079
6.38733
1.95578
20.983
2.90929
3.5017
8.95154
3.78612
31.4916
9.29539
28.0148
9.75095
3.59079
9.44068
4.00622
31.9575
9.12155
27.279
10.4547
3.72679
35.1672
8.66079
15.4165
43.2072
13.2292
7.72263
42.3121
8.11918
71.8446
35.6359
23.9518
83.2419
9.4501
7.8265
20.9568
31.4121
10.3743
51.98
22.2501
44.9836
13.6548
198.707
10.9062
13.2004
19.4776
101.797
14.9121
182.257
15.9404
28.324
14.2242
77.7056
30.6895
54.9883
0.346347
0.522937
1.26315
0.572844
0.363881
0.220483
0.212135
0.640176
1.05768
0.429199
0.509757
0.253397
0.388028
0.233958
1.71398
7.83898
9.86073
3.98762
4.80512
2.14838
3.40512
1.36587
2.19709
7.25632
3.35882
3.99744
2.4683
1.26176
8.18549
2.72024
4.87037
29.3687
2.60926
8.63418
26.3642
24.2656
8.19375
7.60958
27.9008
4.83433
1.58758
1.00227
2.68194
2.58687
1.53824
5.11258
8.55797
5.29955
2.63564
23.0986
7.47484
2.89547
27.0288
0.804535
0.478446
0.327128
0.494173
0.309139
0.240369
0.231285
8.07392
26.5824
8.2202
20.6969
3.05125
6.07238
17.3842
4.3831
52.2811
4.84017
8.54746
2.93524
10.8911
27.2246
5.64513
50.196
18.3319
10.3331
23.7388
4.12226
4.80798
21.9798
4.65431
20.1672
24.1899
25.323
4.62762
5.28139
26.8089
4.86274
24.0313
26.972
25.5709
25.7261
5.13836
5.40355
5.01647
25.1584
26.4797
17.5278
4.73258
5.44933
17.5254
5.22506
16.0234
19.589
26.0585
4.71555
7.79579
5.14461
23.4312
29.7101
6.54951
7.3036
5.76842
34.7428
29.6099
27.1144
29.296
77.0315
47.643
35.1873
26.8585
30.2867
29.4134
1.88166
1.63084
2.8814
2.72627
1.62703
1.87679
2.63876
4.38807
13.8784
14.6966
4.46874
13.6252
4.29955
4.55887
4.32428
4.9017
12.9123
19.4516
5.46285
4.24459
13.3155
4.24097
12.9983
12.1485
4.01356
4.1409
12.8368
4.13158
4.35764
14.7418
16.1703
4.60202
4.54028
13.7086
4.48902
1.51186
3.9135
6.19526
2.04835
1.96924
4.00851
1.55862
1.18683
3.86286
1.26173
3.96018
1.18851
1.25487
3.82237
1.17978
3.75007
1.28324
3.62933
1.19756
1.25848
3.70499
4.71118
23.7291
4.5426
23.9317
4.5108
4.72609
24.4266
4.88003
5.10908
25.2495
25.8283
5.15129
4.85911
25.1802
4.88128
23.6562
5.33424
24.5536
5.19107
4.91286
24.4107
4.69904
23.9001
4.37818
25.2228
4.65948
4.45967
24.979
1.98522
2.74847
6.21042
7.60804
2.06305
2.62317
5.72748
1.92199
5.14511
9.73217
2.42903
2.53329
6.24395
1.85361
2.62549
6.34056
2.01311
8.59439
1.99122
8.50276
2.64414
3.51661
4.60872
12.2643
19.7163
3.39302
4.74674
13.2315
2.61302
6.19958
1.93034
7.57423
2.52522
1.98715
8.30225
3.52789
13.6239
19.8544
4.75934
4.74793
13.5144
3.54576
3.64152
2.7452
8.76336
13.7444
13.7598
2.75093
3.63425
4.86951
6.78146
19.9101
41.8702
4.87508
6.77944
19.9204
3.64744
8.76764
13.756
2.77106
3.65526
13.7522
2.76109
4.86226
19.9436
41.9521
6.77334
6.77681
19.9462
4.85433
6.58824
18.7127
4.82906
39.1464
4.79977
38.8237
6.63716
8.42203
11.8942
7.6204
13.0065
6.35229
18.4281
4.43213
35.5505
5.86701
4.67206
37.2353
8.80701
14.0206
13.6947
8.90269
8.35982
6.09183
36.7973
6.33979
7.96468
13.0024
17.0049
13.0666
16.9319
8.51785
37.4142
6.49262
8.56768
6.45214
12.7584
16.174
16.6836
12.16
15.2535
12.0872
11.3713
15.7553
20.7521
23.8854
18.4376
35.0883
4.81362
1.97525
1.66276
6.62104
1.63142
6.20402
5.02703
15.3557
9.42962
14.1617
10.4639
19.4964
37.6517
37.1006
19.7009
16.2384
13.0157
13.7656
15.802
21.9107
145.153
32.5397
45.9848
4.32712
1.55828
1.28653
4.02529
1.50416
5.00737
3.60669
5.11814
2.12784
1.73795
6.63461
1.75603
6.73603
5.03534
4.13624
3.40538
1.26072
1.45789
1.47255
3.44858
4.09051
17.4059
16.0265
19.7497
14.8445
19.8007
37.9184
39.0937
19.3184
35.7644
19.8863
18.1922
41.5778
6.18047
1.8783
4.69163
1.56925
6.1271
1.88289
4.75007
7.94399
2.83211
2.40898
11.7904
2.33634
11.3788
8.26255
34.5633
17.4504
34.1131
17.706
6.29741
5.06133
1.59635
1.97348
1.90993
4.82428
6.63686
36.2772
42.5117
8.97357
2.5217
2.05932
6.79401
2.46373
9.95986
8.11178
11.6426
3.37784
2.86811
13.8237
2.89315
13.9537
11.4095
8.29334
6.40687
1.99107
2.37462
2.40646
6.70102
8.04413
134.691
2.04302
0.188547
1.9812
1.72143
0.182633
1.78124
0.181431
2.09008
7.89879
7.25278
4.64423
1.74271
1.58226
4.84356
6.92019
2.00132
6.91538
4.45872
1.49171
4.44311
1.51346
137.755
12.6098
2.87741
10.7546
2.52672
12.5924
2.8645
10.8054
13.4691
3.63473
3.27701
14.7554
3.20822
13.9946
13.9182
12.7013
11.4513
2.53706
2.93063
2.86972
10.9604
13.1091
14.3481
14.5826
14.7117
14.7373
15.1081
14.5607
12.5755
3.11384
12.4029
2.76631
3.09352
12.6357
12.2346
12.9985
4.16707
3.53471
15.0599
3.50969
15.025
13.0101
13.9066
14.1626
14.1451
12.5247
11.9784
2.73819
3.08674
3.07149
12.0859
12.517
15.1702
16.5159
15.4133
0.0142818
0.519531
1.35949
0.0126613
0.0133045
0.0118656
0.494221
1.35211
0.0129899
0.0124237
0.0111833
0.491494
0.490735
0.011661
0.649941
0.00801211
0.0106636
0.00960226
0.471237
0.49479
0.00729965
0.0127875
1.26279
0.0115567
0.0103714
0.482254
0.0114772
0.464452
9.45801
0.431184
0.491621
0.499051
9.31126
9.54751
0.437868
9.4168
0.626022
0.648705
0.564376
9.17245
9.37898
0.546012
0.49886
9.29173
9.32975
0.425232
9.53609
0.437666
0.483655
8.38525
0.540453
0.537798
0.480443
8.90852
8.80464
0.483293
0.419593
8.90873
9.08663
0.342732
8.93149
0.384277
0.374455
0.432954
9.05532
0.38967
9.09829
8.95264
0.435989
0.386507
4.88564
0.0553448
0.0513027
0.0495415
1.57913
0.0558623
1.66228
0.0534925
5.14662
0.0547141
0.052492
1.83758
0.0482841
1.77226
1.99865
2.02272
2.01747
1.96383
0.200293
0.0379986
0.0381437
0.205316
0.211758
0.216121
0.0388746
1.86438
1.90495
1.99886
1.94315
2.00773
1.80816
1.93869
1.94601
1.62905
1.42664
1.12605
1.39206
0.942354
0.64376
0.816372
0.669741
0.973158
0.805785
1.24044
0.669204
0.00423212
0.564299
0.00427662
0.00420839
0.44236
0.436689
0.00414372
7.86369
0.413595
0.403062
0.361785
8.34583
8.37235
0.372071
0.341382
8.78367
0.313101
8.82211
0.350788
8.61403
0.304917
0.327757
8.49634
0.302872
8.76438
8.55189
0.337567
0.293857
6.92406
0.343207
0.334634
0.310232
7.46522
7.39886
0.315904
0.304863
7.13733
7.72082
0.302408
7.4882
0.325515
0.28411
0.292677
7.59085
0.273124
7.78158
7.53249
0.295764
0.271894
0.902359
1.05642
0.700821
0.629406
0.658862
0.637218
0.763283
0.620934
0.63775
0.604847
0.59017
0.619114
0.488786
0.502584
0.489151
0.46625
1.26824
1.15675
1.24364
1.19208
1.3133
1.23262
1.30886
1.23411
6.37382
0.301041
0.279474
0.2669
6.63384
6.76427
0.289326
0.260256
6.92333
0.260534
7.18717
0.275037
6.80256
0.264122
0.267225
6.77954
0.32573
7.33427
6.87504
0.294724
0.2886
5.72792
0.224166
0.225489
0.292935
7.22932
7.93767
0.278204
0.31507
10.4885
0.270713
6.03889
9.73806
0.309321
0.276191
0.31575
8.63308
0.29005
6.80051
9.66481
0.326489
0.278544
1.15136
1.19582
1.19846
1.16251
1.16415
1.0877
1.17035
1.09282
1.1421
0.988622
1.0922
1.07232
0.842589
0.809346
0.708808
0.746849
0.574147
35.2572
0.504309
8.39756
37.1825
0.574895
0.497751
0.613805
0.542851
9.39143
44.5193
0.638713
0.52428
34.6511
65.0664
49.3722
45.987
20.9394
42.7095
229.989
17.5328
48.3144
32.711
40.1583
28.0264
45.8348
21.7013
18.3634
580.864
59.7798
31.1283
26.7357
23.1734
38.8821
386.746
162.024
27.7973
90.633
48.8919
30.8244
7.74012
8.4467
50.5869
9.11637
16.4441
19.822
66.0551
30.0584
474.97
39.5494
122.855
15.3804
201.991
51.3623
59.8587
9.58355
27.4563
12.3891
35.2777
112.191
513.9
32.8765
20.2128
29.401
22.1885
86.9449
407.313
150.585
7.29212
4.82807
9.1505
3.16919
20.2193
3.44245
5.54391
7.08173
3.22416
5.01842
2.87353
8.79819
2.87721
4.77054
47.7719
54.8159
100.078
40.1839
41.5267
32.236
49.1124
28.8953
7.112
40.5642
6.51882
26.1256
6.2435
8.44999
35.2001
7.16784
8.0041
52.2393
36.1016
10.4655
6.51902
38.9586
10.0079
86.4405
41.6529
101.738
23.1235
21.0215
49.8335
6.14834
20.3839
6.04372
27.5429
6.12531
5.97628
28.8044
4.47581
24.553
4.65631
7.43368
4.23752
6.44862
8.99077
3.50323
3.84975
9.64708
5.91122
3.89299
3.76932
7.76891
4.16212
36.6792
8.72428
25.2527
6.1643
7.47403
12.5304
15.307
15.6691
15.3379
14.8348
15.02
15.02
15.0081
14.839
15.0244
15.6744
15.3405
15.3326
17.7614
17.4997
17.7025
18.0555
17.6656
17.8079
17.9968
18.1731
17.9332
17.3859
17.458
17.586
16.6308
16.6128
16.518
16.0752
16.0001
16.2042
16.5093
16.2667
16.3867
16.4435
16.1657
16.3506
16.6946
4.12068
32.6136
4.8766
16.3852
4.05639
26.2842
14.6217
14.4211
3.05215
3.03019
14.37
14.4872
3.24998
14.6506
3.52089
13.1534
3.2433
14.0864
13.7688
3.53339
15.5547
4.08807
3.27666
15.9352
14.8745
3.59624
18.3822
14.586
14.0793
14.3352
14.1454
13.8444
14.1716
14.72
14.4844
14.4754
13.7481
13.6845
14.0236
12.8662
12.6937
12.5146
11.4543
11.1235
11.6353
12.4848
11.8908
12.0962
12.2619
11.6454
12.0997
12.5878
1.80111
12.7107
1.78858
12.6376
1.79098
12.659
12.4633
12.3707
1.77534
1.75977
12.425
12.4115
1.7708
12.5202
1.79668
12.5156
1.79012
12.4676
12.5682
1.78665
12.5286
1.77479
1.76476
12.5566
12.4887
1.7758
12.5989
13.3386
1.68075
13.334
1.60461
13.4387
1.62465
13.2296
13.3281
13.2935
1.56955
1.46871
13.4316
13.1824
1.55998
13.4519
1.68515
13.635
1.63656
13.5481
13.5443
1.62925
13.2101
1.53461
1.46339
12.9355
13.0609
1.55469
13.093
12.2926
12.496
1.53182
1.5054
1.48742
12.4311
12.3591
12.0455
11.8115
1.39714
1.33554
12.001
11.8561
1.40995
12.2132
1.51044
1.4525
12.3182
12.1725
1.46692
12.3574
12.1263
1.44637
1.35394
12.0143
11.9409
1.42938
12.196
6.10098
1.05137
8.82075
1.1353
6.90475
0.994892
8.25218
79.0778
20.5117
18.9609
4.56575
3.43406
0.704154
0.77546
4.2216
3.66189
0.812137
5.34299
0.911135
4.01856
0.74798
4.27139
4.80184
0.863931
5.52262
1.0895
0.906367
7.30915
5.11941
0.945989
7.79838
10.3504
1.37117
10.4274
1.29099
10.5124
1.30174
10.2626
10.2379
10.0496
1.22716
1.1553
10.3188
9.97356
1.22575
10.4514
1.37903
10.7009
1.30851
10.5472
10.6098
1.30694
10.1514
1.21298
1.14202
9.81961
9.89319
1.22183
10.0745
9.67204
9.8822
1.32836
1.29987
1.28732
9.84403
9.706
9.45725
9.17253
1.23116
1.17859
9.38739
9.24344
1.23876
9.64744
1.32432
1.27843
9.74114
9.57783
1.28687
9.81055
9.47319
1.24535
1.17088
9.27218
9.25019
1.23527
9.50129
1.77189
0.375681
1.7999
0.365029
1.80064
0.373235
1.7701
8.33444
8.43285
8.41788
8.35378
8.56911
8.05085
8.15633
8.52719
1.76629
0.379655
1.78814
0.382064
1.76204
1.79138
0.38584
8.22924
8.11474
8.24851
8.10049
1.82719
0.366753
0.353142
1.74018
1.74571
0.364235
1.82659
7.94342
0.943126
7.7983
0.976623
8.05406
0.980204
7.75142
7.97602
7.9813
0.979705
0.930763
8.20528
7.74733
0.97038
8.17908
0.947114
8.57657
0.990687
8.40709
8.33066
0.979789
7.7439
0.973162
0.933771
7.32477
7.51088
0.973054
7.55733
4.67257
3.75692
0.554042
0.667212
0.632056
3.29411
5.23164
5.42037
6.16498
0.714207
0.721549
5.29118
6.08037
0.670797
19.2555
65.8108
4.12183
0.532038
0.626535
3.18624
3.81486
0.601774
3.68702
5.78343
0.725428
0.743952
6.41887
6.21819
0.697066
6.1988
53.2454
0.305821
0.26235
0.175976
0.196975
0.0871142
0.125829
0.0501324
0.0380634
0.234202
0.164247
0.0835793
0.105027
86.212
40.1853
126.373
44.3228
45.7457
73.3483
46.3056
21.824
130.729
150.963
19.9341
68.5509
732.398
291.388
119.7
187.509
77.0344
56.9375
143.182
86.282
41.1693
105.669
98.7281
116.612
115.665
100.885
41.8215
101.562
118.629
20.0057
12.1399
82.6989
18.3643
9.22458
21.1649
69.9566
29.3699
70.0347
761.629
36.5092
87.763
20.0673
66.7416
38.4693
133.913
43.8704
34.1755
41.9106
116.547
350.738
312.2
64.9168
31.6447
30.6335
71.0263
38.786
236.185
281.091
46.7524
32.7461
80.7875
77.634
43.0439
2.38547
1.65323
3.72081
1.04943
2.12799
1.40605
0.931855
2.829
1.46563
1.02041
1.72656
1.21583
0.824429
0.731988
12.2058
26.2216
42.9706
68.7549
15.0469
21.5218
39.0727
8.64761
19.6003
35.6604
11.4522
14.1339
21.5571
7.65699
57.9555
152.536
27.8883
83.9615
21.898
8.63464
13.3298
25.5145
66.6254
15.8567
155.367
18.566
56.6255
8.60381
27.7878
17.143
83.995
22.0288
26.9534
1.53695
3.94052
2.3926
1.40325
2.39912
0.9377
0.964034
3.83669
1.36804
2.23946
1.39846
2.45289
0.964956
0.916623
72.2619
75.3042
93.4293
55.3846
37.6943
18.4542
94.2433
54.6682
37.4499
210.343
213.192
78.2587
77.2521
91.3682
36.1883
18.0937
53.1814
53.7403
36.7875
89.9631
5.49492
1.57998
2.40334
1.88608
2.74091
1.08326
0.991675
6.7319
2.26279
3.52227
2.15091
2.96079
1.31557
1.1731
175.575
28.9389
28.4771
74.6742
47.7003
30.2678
16.1728
73.9991
48.1493
30.4807
185.861
183.731
173.734
27.9642
28.3167
74.9933
30.7168
16.0709
48.3119
47.9398
30.4642
75.705
312.303
20.3806
33.8192
125.909
27.9847
26.431
74.6397
34.9112
312.146
17.536
48.3853
19.3707
119.893
69.581
28.3477
75.5821
137.421
52.9993
9.13694
17.1631
5.66443
24.0627
6.15085
27.2555
8.27932
18.5102
273.744
36.453
26.0501
103.511
28.3966
15.1724
19.7514
67.0879
77.7598
13.2519
23.3209
1.94885
3.3443
4.29161
3.15955
1.5559
1.7702
1.45841
3.85858
8.42136
15.1774
4.68947
9.58728
3.6406
5.21425
4.25565
6.93617
16.923
15.0205
10.4475
5.93375
5.00354
139.077
29.7264
40.6473
41.1656
137.234
24.0294
35.247
12.5122
11.6812
24.3522
34.8257
12.351
122.641
123.927
141.775
30.317
42.1456
143.743
41.6933
23.6805
12.1128
11.5582
34.2865
34.55
12.2109
23.4133
127.725
26.1576
39.062
38.6959
128.99
22.0348
32.9201
11.5122
11.0586
21.9045
33.0164
11.5545
111.798
110.766
126.738
25.9793
38.2165
124.997
38.6041
21.7877
11.4653
10.8044
32.3565
32.1568
11.3779
21.9553
7.52213
29.5518
24.7571
10.8193
20.8003
9.8451
8.18138
19.6079
88.4642
29.659
133.229
25.2278
19.7721
18.3399
121.856
13.8764
43.1349
19.051
81.8212
12.59
14.0387
9.62927
45.875
37.4261
58.3863
13.3756
10.4463
21.2699
33.6175
100.008
10.6847
103.932
11.0791
20.4971
40.0099
9.30832
11.3322
4.91664
41.7289
8.96214
11.1299
136.403
24.3641
26.553
118.299
22.1164
34.3898
108.909
11.5771
22.5877
107.048
11.3924
37.562
10.4165
5.17105
8.83602
8.91015
10.8718
34.3761
18.5489
90.1396
29.5733
10.0113
9.9402
89.2598
18.7061
29.661
7.89806
9.55296
4.80018
29.4402
7.94105
9.61939
93.1103
19.5995
19.4485
94.0044
18.367
29.3156
9.79676
86.2498
18.1595
9.88625
88.059
29.8349
9.71981
4.81792
8.01591
7.9803
9.65678
30.0504
51.5645
10.4607
17.9878
11.6867
16.1874
12.4211
38.2007
47.6023
14.2304
15.019
30.2398
6.65759
8.70441
17.1458
8.52758
7.03579
15.9547
8.49348
476.712
150.591
30.0654
13.3648
8.16155
9.21855
9.11048
13.0121
30.3854
107.936
106.732
25.1838
12.9737
12.8841
25.5222
108.874
110.087
29.8047
8.04108
8.95004
12.6334
29.5952
8.99772
12.7585
24.6613
6.70188
9.86674
7.37156
10.2129
7.49714
24.16
86.1856
87.7398
19.6725
10.1447
10.2483
19.4474
24.9317
6.7927
10.5267
7.64184
25.1876
10.4101
7.59021
85.2319
83.2832
6.56822
25.8029
7.35437
3.99468
3.98165
25.2888
6.68269
19.7183
80.0658
19.3393
81.4102
11.1197
80.1687
28.1836
25.0329
11.8671
20.2623
85.5858
82.9295
21.3406
6.36221
7.21888
3.8051
24.5743
6.2958
3.82438
24.8698
109.002
34.2262
104.294
33.3941
99.2669
101.858
5.62376
6.40885
21.5866
3.48037
21.7399
3.49053
5.60067
16.5452
68.8909
16.5954
68.4442
9.03159
61.9938
20.4842
20.5654
9.04865
5.60081
6.38679
21.7433
3.44443
5.59069
21.7598
3.45484
16.533
67.7708
68.2707
16.3905
3.94527
6.34047
3.15239
2.86949
2.86435
6.23978
3.98014
12.3191
20.8414
12.1508
21.2035
7.69872
54.2429
18.3221
18.2606
7.8158
12.4076
21.8908
21.4627
12.4961
3.90322
3.11905
2.82369
6.08753
3.88153
2.83012
6.15611
17.4227
14.0678
17.0709
27.3719
19.2256
20.0391
21.057
28.1418
20.6613
13.4489
15.6736
16.4719
11.2088
18.9951
11.4587
18.5
6.79759
45.0476
14.4374
16.0988
6.07725
10.5574
15.4496
17.4188
9.45058
6.18729
9.31426
6.12632
9.40878
15.906
11.8689
49.5897
4.01688
49.1097
3.97353
16.0608
6.24279
9.59802
9.49254
6.31256
7.25192
59.6956
19.0709
6.86104
56.5719
10.6127
8.65189
8.29345
9.60084
11.4905
9.10464
16.9035
35.3523
33.2151
230.603
6.02737
50.6517
3.97865
6.27286
4.17162
5.97358
9.94304
5.43212
26.6332
2.44282
28.8184
2.48276
9.34039
3.85705
5.41703
5.78329
3.60649
11.5502
33.6808
4.46135
33.9236
11.4648
4.51789
2.95717
4.59498
8.11236
2.11873
8.06152
2.09775
2.97977
11.6231
4.60134
34.2755
34.1559
4.56385
11.6672
12.1105
3.32333
10.3852
2.85058
12.5133
3.18253
10.0966
14.8806
19.3146
10.3703
3.52959
28.988
13.8483
4.10032
16.1507
5.07203
48.0297
14.7021
43.6946
16.8964
4.72947
11.7001
2.77302
2.86484
9.72099
11.3974
3.00943
9.87057
9.90546
29.3435
3.58022
10.002
29.0358
3.53459
2.09151
3.27435
1.28658
6.09766
6.13204
1.30038
2.07487
9.80821
3.47522
28.639
28.7315
3.49443
9.77716
9.55789
27.9199
3.23011
28.0648
9.49956
3.26497
1.90688
2.90397
1.16523
5.74572
5.82898
1.18234
1.8922
9.64587
3.30648
28.1068
28.3105
3.30624
9.60348
7.27208
2.07891
6.17846
2.1325
7.30568
2.06964
6.15386
8.25804
9.25502
2.03481
2.00279
9.34774
8.17816
2.02059
8.3325
2.04598
9.54251
2.05604
9.45014
8.38489
2.03145
7.21248
2.12318
2.04292
6.04189
7.14235
2.06058
6.10458
6.31248
17.9304
2.3621
6.47725
17.5046
2.29678
1.3641
1.51433
0.973431
3.14599
3.20385
0.983797
1.34513
6.21225
2.23413
16.9109
17.1877
2.26458
6.11806
4.71194
11.816
1.60891
12.9055
4.36732
1.73925
1.0063
1.12147
0.727448
2.32017
2.28955
0.725705
1.01335
4.85657
1.81412
13.5379
13.3518
1.79204
4.91846
4.48631
1.70876
3.5954
1.74676
4.55056
1.68837
3.54453
5.14029
5.80347
1.51434
1.5375
5.92604
5.02707
1.56998
5.31594
1.64174
6.1957
1.55886
6.11
5.3912
1.62204
4.32275
1.67829
1.59291
3.31819
4.22155
1.62807
3.40202
0.758068
2.39138
4.74449
13.3926
0.781068
2.32297
4.63639
0.445488
0.597609
0.367506
1.05984
1.08394
0.376555
0.435303
0.738485
4.4817
13.1425
2.21643
2.2638
4.54972
0.722584
0.464064
0.991021
8.65568
2.96611
1.04583
0.452777
3.08252
0.310034
0.402299
0.251451
0.784047
0.760211
0.250408
0.312309
0.546702
3.85006
10.8885
1.72124
1.67058
3.79071
0.554225
2.12034
1.44858
6.75075
1.45962
2.15044
1.43015
6.66086
2.74544
3.41754
1.37047
1.38828
3.4333
2.73089
1.39518
18.8598
19.0615
2.80982
1.45033
3.54877
1.40437
3.50591
2.84634
1.4312
19.7675
19.4912
2.06576
1.4196
1.38642
6.44724
2.0529
1.39306
6.50102
0.217461
0.542305
0.402166
1.21381
0.220291
0.53494
0.396362
0.171708
0.725482
0.153315
0.277462
0.279067
0.155288
0.169663
0.215354
0.38844
1.19851
0.523524
0.528537
0.392676
0.212902
0.118696
0.35683
0.772551
0.26702
0.316303
0.127461
0.248231
0.0982877
0.33251
0.0868449
0.191628
0.180014
0.082535
0.10368
0.133224
0.28449
0.855982
0.377293
0.35764
0.272554
0.1404
0.00855966
0.000874171
0.0010385
0.00336462
0.00763116
0.00267507
0.00085283
0.13107
0.156104
0.118214
0.0999673
0.188624
0.183658
0.120784
0.0483265
0.000837537
0.00370942
0.00286863
0.0025274
0.000825698
0.000814852
0.00327086
0.0010134
0.00745717
0.00737033
0.00244167
0.000812906
0.000835987
0.00218742
0.00233585
0.000803741
0.000776363
0.00253599
0.000798471
0.00291452
0.00206464
0.104959
0.034133
0.0874287
0.0420742
0.148058
0.146222
0.103517
0.106392
0.0175031
0.00092119
0.00536307
0.00500365
0.00128097
0.0156376
0.000882308
0.00632797
0.000940509
0.0060702
0.00558069
0.000899827
0.0058956
0.000895465
0.00513703
0.000869354
0.00514288
0.000841191
0.00544501
0.000865006
0.00479505
0.0826662
0.184519
0.271894
0.0436659
0.0891086
0.0524886
0.0912916
0.0472028
0.00470172
0.00122257
0.000831691
0.0128585
0.0140983
0.000855434
0.00442336
0.000690428
0.000641219
0.00439444
0.000582683
0.000674027
0.000578179
0.000630357
0.00539088
0.000613369
0.000624004
0.000568623
0.000600988
0.000564363
0.00061469
0.000603347
0.00201574
0.000592633
0.000557293
0.000590442
0.000559183
0.000584671
2.14142
1.24072
0.192142
0.201666
0.189402
0.200601
0.18004
0.209608
0.197951
0.222942
0.202337
0.219608
0.00069139
0.000618022
0.00158026
0.000681048
0.000553443
0.000552156
0.00061218
0.00136691
0.000620261
0.000652847
0.00054992
0.000593202
0.000601538
0.000548528
0.289572
0.0905681
0.07804
0.248972
0.0876668
0.09349
0.122363
0.06999
0.0713775
0.18929
0.229783
0.0581701
0.185923
0.153208
0.14832
0.189421
0.343143
0.143125
0.178698
0.417643
0.141534
0.162236
0.186137
0.0997128
0.102693
0.0940272
0.105132
0.113005
0.105241
0.093829
0.0993427
0.100826
0.110096
0.115042
0.117695
0.106352
0.239127
0.365147
0.432643
0.287888
0.421969
0.453593
0.400188
0.435037
0.485124
0.400981
0.457623
0.469309
248.613
42.9507
11.288
25.1662
4.83436
0.211545
10.5102
4.95854
0.112238
2.56407
0.14207
24.3717
3.50586
12.3204
6.56103
3.58749
10.5108
2.60781
218.58
0.29523
31.1175
4.19022
0.279623
8.96926
0.204886
3.60167
18.3323
35.3376
8.13062
21.0723
5.81268
4.59903
4.72178
9.75812
49.8555
19.6902
16.0982
8.13111
5.52267
6.75919
22.0035
31.6563
3.54431
39.6552
3.98942
5.93373
14.5842
153.213
22.0519
47.221
10.6142
25.0451
9.24192
29.6943
3.72259
1.04966
0.782302
9.91496
5.34186
0.644491
6.46899
24.5959
4.45242
3.51565
11.1062
5.36309
3.40294
1.86914
3.6029
0.106761
3.23271
1.53467
0.0746661
1.73047
0.0674641
16.3527
2.6961
1.88079
17.0211
1.82861
24.3413
23.2655
5.04096
3.03686
0.893077
0.551643
4.71887
3.28582
0.92642
15.9279
2.61196
1.67744
15.0013
1.74781
5.17177
0.9821
3.4992
0.583122
3.39735
5.33652
0.96663
9.33465
8.34968
72.7025
10.2904
32.1434
15.6225
5.35242
22.7711
22.7767
214.324
18.0361
62.793
18.0608
35.4258
59.8652
1621.71
52.4438
1591.19
155.789
172.586
190.23
1.69134
2.56695
1.43592
6.19016
0.695499
0.857356
5.58717
0.85267
45.7035
1.21211
0.920707
4.25621
6.30242
1.69805
14.2698
3.89167
1.88616
2.08298
0.0358932
0.204506
0.0160442
0.0307073
0.00484391
0.00498363
0.0138353
0.107634
0.0226244
0.0253006
0.00469036
0.0109692
0.0115208
0.00460483
0.0180455
0.0479845
0.0160356
0.00327002
0.00579682
0.00329628
0.00571723
0.0148826
0.0531984
0.0159044
0.00335924
0.00605506
0.00334494
0.00608774
0.0163899
0.0488048
0.0161475
0.00282358
0.0050652
0.00290219
0.00485101
0.0407699
0.0123947
0.0142396
0.00267724
0.00422441
0.00451089
0.00259911
0.571577
0.778477
1.21892
0.470353
0.266298
0.453143
0.222683
0.377526
0.322405
0.963716
0.394421
0.427327
0.204505
0.172047
0.549095
1.40089
0.56016
0.827551
0.575776
0.527634
0.713317
0.474096
0.391692
10.19
0.542302
0.268092
0.207628
0.699696
12.3654
1.43527
0.821144
0.544945
0.377838
0.284414
0.949163
0.886843
2.5288
4.80965
1.89313
1.56575
2.08136
0.994223
0.749087
0.462982
0.310134
0.338333
0.295916
0.162575
0.171152
0.622286
0.249811
0.185976
0.293646
0.24019
0.138255
0.114728
12.9722
0.89992
11.904
3.45939
1.63745
1.66413
1.96732
0.486577
0.307969
3.13715
1.02397
0.982817
0.312711
0.54784
0.368342
2.74397
0.896841
0.286727
0.613944
0.407764
0.74943
1.5083
3.76723
2.38897
2.02558
1.19229
3.16452
1.48469
5.19454
10.7336
1.58344
2.85376
12.9028
6.95242
12.3659
39.4561
3.41301
4.50931
2.25433
37.1926
5.38629
1.63195
16.6032
6.02774
18.7042
21.9089
5.39225
1.44647
7.13851
3.49495
2.1629
4.08722
2.39711
1.3348
0.445636
1.61039
1.29397
0.317794
1.20319
0.299114
0.411808
0.98117
0.211492
0.781647
0.26275
0.896421
0.254529
0.214021
7.25039
3.69984
21.1624
6.31266
16.9992
13.6809
18.1357
7.9699
3.22873
6.51788
5.58593
13.17
48.6867
0.490059
1.39556
10.9427
1.71048
0.880979
0.902486
0.509846
15.8051
0.793949
1.69163
1.41074
0.974851
0.934807
1.55755
13.7787
39.9191
5.67693
6.16041
18.7943
44.8939
18.1953
5.82597
3.94164
2.26201
24.3392
2.02719
19.6406
6.73981
8.10689
17.3445
2.91577
5.24836
4.01663
2.41944
22.9137
4.80354
7.93087
4.45394
7.3664
2.53809
1.43803
0.953505
2.33792
4.63142
4.35804
0.938084
1.48386
6.12718
19.3715
4.25681
6.78984
3.82677
15.0393
47.4597
8.83199
3.70271
6.88086
1.81755
1.35266
5.95407
4.1921
1.18758
2.93584
1.03975
5.60924
1.64226
4.46768
2.8239
1.06094
4.96689
2.63137
15.8038
45.2888
3.15002
5.35044
0.806597
8.18996
0.537381
1.80823
5.17247
1.75554
0.525631
1.1
6.32314
8.62665
0.751396
0.68569
0.565667
1.10686
0.617991
1.05258
1.11835
1.03871
0.539596
0.382112
1.48913
2.72721
1.14057
0.337755
0.372158
1.1616
0.411482
0.147155
0.530497
0.133465
0.439685
0.133948
0.149131
10.5164
44.8304
5.96802
18.0566
6.6464
24.4433
21.0723
18.4893
22.4073
18.4942
11.7125
15.1693
15.3626
14.8506
12.3721
15.3733
21.5225
18.4782
18.3371
0.264016
0.699065
0.303178
0.210109
0.412301
0.190227
0.403796
0.342024
0.782332
0.308085
0.216567
0.526705
0.236873
0.439963
21.1212
2.27246
6.30579
3.29306
3.8204
7.25948
18.0712
7.61561
19.2572
6.9872
25.3687
2.64583
4.98902
10.3464
30.6812
4.52028
8.65635
4.89901
13.2845
5.75776
0.566933
1.50861
0.494308
0.319792
0.759727
0.721968
0.355678
0.399919
1.67249
0.469537
0.304743
0.645198
0.269515
0.794932
10.3804
5.15246
7.35394
4.40784
5.44388
6.9756
1.40402
2.36297
4.27197
7.77071
1.46607
16.7828
6.63809
5.9062
19.4651
4.35129
1.89113
2.82946
18.0516
10.5025
1.60225
6.17165
4.69509
2.83957
2.98783
1.20069
0.812436
1.0265
0.739237
1.4746
2.78637
3.0927
1.58911
0.841198
0.72132
1.35131
4.32647
11.891
3.66025
18.5181
20.2563
3.88021
4.07979
8.39719
12.8223
8.63069
12.0712
8.00541
10.2745
7.51566
11.2079
0.785671
4.36273
1.31784
1.08676
0.778238
0.919345
0.70038
1.65155
5.06313
1.62244
1.20677
0.971369
1.09744
1.1502
16.301
4.51791
13.9103
4.46261
14.1233
4.78658
15.735
28.9324
6.02107
5.99288
31.8753
5.28874
26.5536
4.29317
7.26534
22.7973
4.73779
18.0951
4.58066
5.21472
18.4229
19.3482
5.04768
17.2972
4.81459
36.6262
12.702
11.4242
13.0737
11.4438
4.78914
4.63886
35.2363
13.412
10.721
13.5027
10.7972
4.61278
24.4971
27.6265
5.23638
21.2384
13.9034
18.5316
10.5629
84.3511
26.2979
31.4888
83.5283
4.58978
12.502
9.10902
35.5952
12.2245
12.0072
88.1044
42.5508
0.306356
0.520915
0.870528
0.415585
0.282274
0.171591
0.184095
0.521002
0.402878
1.32964
0.503656
0.572255
0.257135
0.220849
0.563867
1.4606
0.803476
0.546798
0.290351
0.612205
0.272647
25.7238
34.4138
7.62807
21.688
11.6366
34.657
5.4899
17.6311
4.18722
2.47139
5.81354
22.7431
1.97251
4.98664
12.3965
3.21152
9.04711
4.71753
1.33974
1.63959
9.1365
2.51721
10.5051
35.6765
9.41352
73.4704
24.776
3.97819
39.3026
14.4667
26.1806
6.1577
8.9363
12.4082
3.28669
2.2724
6.51698
7.45086
2.54342
2.54862
13.2233
3.77797
22.3779
3.90342
13.7544
3.5341
5.76388
18.0364
3.86545
11.2646
3.93879
14.1795
3.48708
3.87525
19.2991
204.975
21.7838
74.96
21.1488
218.046
16.5522
215.157
77.3354
13.588
45.2933
39.3567
45.8286
17.2931
7.63894
28.3747
15.4925
27.5261
146.094
18.3131
14.7697
6.84527
18.3315
78.745
19.8693
65.7937
15.2898
46.3684
90.4638
26.3019
23.5481
309.831
18.665
327.558
30.8101
30.1621
107.77
6.97914
6.20127
30.2483
26.7318
6.82466
6.75731
18.7034
12.0514
101.645
9.7027
17.187
6.42581
23.1459
47.2648
12.3108
101.091
9.48498
18.5894
6.8043
22.5937
48.0586
16.6036
224.471
17.9414
50.8046
52.8623
201.075
62.6801
63.376
17.6449
8.30426
28.3578
17.5992
28.3531
27.5891
17.1004
8.18896
17.317
27.8676
2.42971
11.6509
3.95968
11.9514
3.17016
3.23729
5.40475
4.80738
18.8385
5.93566
15.2941
5.28156
5.52661
10.2832
69.0378
221.427
241.27
57.3955
18.186
36.1711
5.29325
124.51
14.3374
14.9668
56.3657
27.0218
66.2134
5.76048
255.521
14.2582
16.1614
15.5023
13.5534
4.94729
4.85593
5.75041
20.8513
17.9515
31.2534
18.6992
36.835
13.4869
10.1469
25.7413
2.83105
4.77118
18.4417
7.67545
2.70596
51.3804
144.05
36.6921
8.58863
2.72031
3.35882
13.4027
9.6522
2.78844
8.34525
21.7697
10.2499
7.69903
15.2246
4.46991
14.9794
8.5333
12.7571
4.91318
20.9644
4.45471
50.9468
85.3269
212.007
170.854
5.34549
51.901
27.3373
66.5077
12.8061
16.0642
16.3803
4.71824
4.54437
16.7222
11.687
20.0299
5.80203
4.04655
4.02668
43.1932
12.4848
7.97383
12.4701
7.94692
4.03324
4.99601
50.6111
15.119
9.36197
15.126
9.41553
4.98449
20.5871
47.5265
6.4394
1.9606
7.58124
21.8157
2.58531
4.15545
45.2409
3.5606
1.07051
2.43769
6.67516
1.28185
2.73846
6.73614
4.35658
17.3816
1.94696
3.06567
1.50157
7.28425
9.06239
5.92617
11.9856
4.19865
3.15608
9.0659
15.0139
44.7825
8.18216
53.9658
22.7865
3.03382
6.24579
7.47903
5.5983
11.4551
45.1844
13.8013
18.5677
4.74875
2.66404
1.49669
7.03907
1.59464
4.18521
8.08537
7.43526
22.1599
3.92168
4.48485
6.39708
26.9313
58.5916
5.21116
2.96176
2.10725
12.4995
7.42694
1.76159
8.99755
23.1408
20.0133
2.53262
6.66155
4.38246
27.8904
2.25604
7.74221
5.2488
1.76426
2.45825
1.26614
7.79588
1.05832
5.04822
2.13964
3.51269
6.77151
60.8303
16.6449
9.95885
7.98831
3.90668
7.08821
56.9623
24.8695
19.7849
9.10072
43.0303
19.8064
42.2041
42.0142
20.0596
9.05861
19.8351
41.9566
22.1707
10.4827
48.0397
22.2249
48.9336
54.6078
23.6504
10.6629
22.5816
50.0568
55.9071
313.618
20.4635
22.5382
11.7165
94.2562
103.16
34.8818
12.4558
6.2758
6.55264
22.1723
22.8303
7.98815
46.6259
12.7844
7.42312
44.1837
33.1791
9.75859
59.5284
42.2852
12.9804
7.13157
43.363
29.1391
8.92836
60.0966
347.656
386.609
4.76887
42.8117
13.9364
8.30428
13.9626
8.30646
4.76203
2.96147
8.39088
2.00994
4.74203
2.9583
8.38689
2.00764
2.94324
1.98766
8.33477
4.71547
8.35842
2.93699
1.99419
4.13953
37.5318
12.2764
7.04986
12.3972
7.06618
4.13264
2.88117
8.4054
2.02021
4.65473
2.96587
8.16302
1.9707
2.60323
1.78803
7.46921
4.31293
7.53328
2.60341
1.78739
26.8619
30.0979
5.9559
6.69589
27.193
30.7239
5.64035
16.4771
16.3747
2.94885
3.50758
6.66315
11.7212
4.04449
20.1127
4.94419
12.8036
2.96593
9.86761
22.3815
4.51435
24.749
6.34284
28.4195
4.61669
20.4043
30.6643
5.21786
21.1066
15.3721
17.495
14.5348
6.78733
13.3035
21.1317
18.475
18.2123
8.3168
98.2286
4.75331
11.3379
143.13
80.0662
184.521
66.1405
50.4477
23.594
21.5379
6.50772
4.30615
24.2359
6.75661
19.7526
21.0328
10.9035
5.44525
50.0959
7.54159
4.31089
2.25848
4.44944
2.42915
5.244
2.48205
3.91378
35.1872
135.029
71.4039
44.2027
6.65936
11.1921
2.75442
2.06246
9.9846
6.12351
2.11749
30.8004
28.4185
31.7091
28.5392
7.1378
2.53588
12.4273
2.67197
9.63495
9.67521
2.22629
29.5809
26.5331
29.4163
27.4398
7.80563
13.0328
8.50434
12.4151
6.57727
21.8471
43.2616
5.34416
36.8859
5.24336
7.53838
6.54239
8.40121
10.8882
4.82408
21.889
4.32355
4.65832
19.56
22.2563
4.96057
20.402
23.2749
73.2122
6.88386
6.91821
27.6491
41.0532
5.79259
21.0636
4.514
5.31849
19.4186
20.3599
5.11904
20.1676
23.7659
5.38591
36.1526
7.47104
42.4737
24.228
5.66797
4.14004
15.2998
26.1098
4.58599
19.3377
3.69506
5.03808
3.36564
6.12527
17.6362
2.75507
14.0107
2.71159
3.80749
4.56701
5.57316
27.4405
24.5177
22.5954
5.34549
4.90822
40.4608
13.3053
40.5192
40.5269
13.2249
40.5142
22.2875
3.6849
21.521
3.44999
8.66626
4.22669
14.315
21.8391
12.9065
3.44853
3.14478
7.48526
13.1694
4.10446
72.8652
30.4545
40.4451
40.455
8.70655
4.2275
23.2315
4.07433
14.6387
15.9132
3.70012
246.371
241.742
72.1871
13.5574
2.67182
2.47137
4.41922
6.59876
3.364
5.829
29.3907
4.94723
27.1325
4.83331
5.95678
11.0538
19.1321
31.206
36.1527
5.45703
5.12562
12.0837
21.7061
6.11151
104.094
40.8273
60.3805
54.9065
11.3862
5.47152
5.85912
31.2288
20.8935
5.05096
19.7648
323.144
285.525
91.7007
20.6613
3.73206
3.94752
6.93197
9.51055
5.19214
10.2947
29.3038
34.123
40.0335
243.793
38.9394
237.12
71.4036
41.3729
101.721
66.6623
6.74713
19.0921
38.3576
6.23501
29.845
5.52577
7.8088
7.08556
21.4236
37.9279
6.59384
31.6682
6.0676
7.71904
8.20304
12.0935
48.0139
47.1506
40.9689
9.68168
9.30256
1.60237
2.27138
4.06457
7.17127
2.3151
1.57254
4.26889
1.65143
7.48568
2.4729
4.76112
1.70588
2.38376
4.47843
40.5457
13.0883
39.4638
36.8596
12.3592
37.1521
40.1933
6.59188
8.75028
39.2747
7.51974
35.1988
44.4062
38.055
6.39485
8.82689
38.4784
7.19313
31.3448
45.422
43.4304
89.8256
10.8615
11.4906
8.41681
51.0108
54.3708
36.8295
37.8967
64.05
67.6934
242.74
330.804
45.5835
43.4755
56.8922
317.307
53.0601
96.2164
4.04045
6.80384
2.07291
2.41421
5.1003
5.0924
2.25987
28.8044
26.4321
31.3294
21.8712
25.5634
24.0694
32.181
17.5307
22.8771
9.16937
15.3642
15.5553
3.2977
10.8589
4.0788
12.9923
3.28814
7.18898
3.63872
2.91276
5.34828
5.10787
2.20075
12.0671
2.09268
2.3841
3.90687
3.93417
7.71079
13.2988
22.055
3.40202
3.0697
5.87927
11.4153
5.36336
10.7696
5.17726
31.3925
4.88753
3.38321
6.33681
7.04443
3.01474
9.79516
3.15664
2.85699
4.68852
4.44739
29.9582
9.84543
19.9793
5.73506
3.19539
0.369039
0.798364
0.563101
0.366162
0.285135
0.55386
0.283446
5.46447
51.0793
18.5567
8.45167
19.9587
8.53762
5.35357
3.6354
11.205
2.53797
7.32635
3.65639
11.0275
2.52308
3.61214
2.46455
9.85104
7.17786
10.7132
3.52749
2.51028
5.53499
52.7919
20.9039
8.39507
21.0703
8.51025
5.47182
3.71232
11.3855
2.58234
7.59173
3.71657
11.4188
2.58408
3.68733
2.56052
11.3053
7.59045
11.3658
3.65292
2.57337
3.8812
16.8844
3.43891
15.3123
18.0377
3.97498
3.30122
4.14247
19.745
19.7384
4.61139
19.3767
4.68922
3.9852
3.70978
2.90235
14.8909
17.6372
18.3509
3.10955
3.47898
1.87168
3.61616
3.89647
2.08065
4.31227
2.09843
1.80716
2.02492
10.9252
10.4958
2.94035
7.09626
2.72004
2.48248
1.79385
1.62548
4.29983
5.72946
4.94104
1.65821
1.86147
162.89
73.0333
48.9385
8.85063
3.3545
17.2708
3.12983
13.9308
2.93851
11.9653
187.618
11.6346
2.79013
2.12233
6.08574
2.98253
11.7295
6.92555
16.0739
10.7003
2.83011
2.59839
3.27117
5.82819
10.8713
81.2802
32.0573
52.9971
34.9414
12.654
14.9392
13.9605
13.3735
9.06196
3.77291
64.735
7.99155
9.31892
12.1822
12.4401
11.8279
13.1631
9.24626
38.2308
7.47657
6.93601
9.67337
16.5558
4.58242
17.5911
4.43012
16.1762
4.39646
17.9284
15.5505
4.07701
14.1883
3.82227
4.15261
14.3702
15.2017
16.7816
16.9642
4.23712
3.8379
4.2232
18.0003
16.1644
11.0561
138.302
8.04957
5.89179
14.6942
70.2901
6.71247
5.43649
26.4059
28.3908
5.5883
6.13326
29.2251
7.23412
43.3954
6.28335
26.3726
5.78581
10.5146
31.4506
11.2821
152.931
12.218
34.1669
7.63833
16.2821
47.2563
17.2763
4.35791
25.5697
4.51423
21.3855
4.05401
22.7827
7.59839
4.11007
4.1338
13.9857
3.58323
22.7576
22.3308
12.5191
12.6992
4.15659
3.65251
3.7745
18.2544
7.89285
65.7237
235.02
225.896
2.19269
6.67161
10.1329
3.20645
3.2118
6.63061
2.1854
2.05077
9.05326
2.75047
5.93997
1.89892
2.99642
6.03361
24.2626
6.42867
36.4548
6.16014
31.6318
5.73345
30.5676
10.2732
6.26807
21.054
6.20747
34.8177
5.08312
34.1038
100.746
384.38
358.226
16.2528
16.0369
5.38236
5.04729
5.04389
22.9855
10.3354
34.7094
33.9169
29.9535
24.1804
28.8878
30.6896
21.7467
26.8485
19.6326
19.9918
25.6591
2.87647
8.08067
4.23412
16.7545
8.81369
2.78931
4.36849
2.00103
1.45712
3.74644
6.1958
1.44611
2.02465
6.09293
2.93031
17.1251
9.25038
4.44683
2.95441
9.11936
4.42852
16.486
28.8155
22.1099
23.415
35.7096
10.9418
95.9527
94.0472
21.942
21.8286
347.437
11.3132
11.7884
388.286
39.182
17.4273
10.7825
10.7604
336.468
35.234
15.8441
1.6846
3.91878
1.97028
2.97398
1.75572
3.5528
1.946
32.4787
30.124
30.4675
31.8033
39.9776
190.66
60.6132
94.801
5.30732
2.176
5.17722
1.80997
6.81592
1.95986
4.53155
6.04145
2.92219
6.38058
1.82124
12.839
1.94767
4.69329
33.2185
30.6915
36.2861
30.3421
35.8103
38.2281
60.8754
32.6794
4.39548
3.37996
1.93337
2.21201
1.99529
4.00504
3.53895
4.34613
6.53345
16.2781
40.8695
6.60245
4.29026
16.5049
3.06721
2.27424
6.72215
9.73995
2.21083
3.15561
9.43062
2.95646
8.98543
2.08827
6.50981
2.12306
2.91199
9.13797
4.50479
41.9693
7.01216
17.4762
4.63368
6.8223
16.9913
35.8767
36.5009
4.06504
4.70094
31.2524
27.0204
17.7152
5.68965
5.3794
2.51651
2.71686
4.91714
4.35719
2.40035
2.73563
5.57747
2.78392
17.3975
6.05472
2.69752
2.35296
8.13315
4.03351
2.54437
10.1614
5.77462
2.42663
2.24326
7.79098
3.066
2.92198
4.33791
9.0384
16.6666
9.09152
2.91579
4.36148
2.04646
1.47814
4.08128
6.32917
1.48395
2.04769
6.41035
2.02813
6.36505
4.08621
1.47793
1.47425
6.37453
2.02677
2.96179
16.9886
9.27176
4.46205
2.97477
9.23623
4.43195
5.96
33.4727
6.29982
31.8747
6.90808
30.8894
5.60306
5.67117
5.38492
28.4074
28.278
5.89564
5.302
28.8679
6.34064
35.5553
12.4589
31.6477
7.04137
8.02679
30.5922
5.5225
30.789
29.127
4.97031
5.21424
29.7807
5.2523
8.69412
56.6547
9.3297
40.4093
12.4124
45.7588
7.19543
8.07424
8.29176
54.0851
39.3796
11.2635
6.73377
43.9407
10.7689
90.5653
34.5022
92.6484
21.6694
21.0511
52.088
7.31976
36.9983
37.5928
5.98039
6.58566
41.3159
6.40401
5.6964
49.0956
20.2556
8.3721
20.4288
8.43494
5.65383
4.04995
11.9634
3.00658
8.59367
4.07126
11.8527
2.98575
3.9949
2.91346
11.594
8.4626
11.7073
3.95506
2.9431
5.73946
49.2831
20.4827
8.32545
20.7014
8.4585
5.65422
4.09745
12.0435
3.03396
8.82048
4.10604
12.0261
3.03003
4.04778
2.95238
11.7915
8.75503
11.9221
3.97992
2.99872
2.09118
4.56185
1.51733
6.32702
1.59683
1.95703
6.53531
2.90149
4.26266
10.6199
15.6716
3.11926
3.93001
9.49153
2.17965
5.04035
1.80585
9.58276
2.35393
1.68865
7.25669
2.8613
8.59366
3.53483
14.6947
4.04285
2.6139
8.77542
2.21556
2.846
6.38571
8.85162
2.12307
3.04545
6.46421
2.22421
6.85277
9.36721
3.04053
2.98775
6.80547
2.2535
5.35286
26.8478
53.5299
10.3366
8.07453
20.7187
6.47537
3.46636
2.4371
7.88046
10.2296
2.52034
3.362
10.7102
3.66464
13.092
9.90222
2.84284
2.66898
11.6653
4.12869
5.05579
46.989
7.36382
18.2957
4.90387
7.59033
19.1109
2.59194
4.61672
4.16672
2.44258
2.62566
3.88789
2.30119
49.3075
48.0683
4.38225
17.8906
20.7331
3.80955
3.93415
22.8631
4.1913
4.77264
5.09907
26.2245
27.2261
4.83749
5.04173
26.2104
4.50414
20.1624
4.26282
25.0071
4.60211
4.10596
24.1698
4.67601
24.8673
27.6326
4.71292
4.95414
25.8978
4.46045
7.11555
41.7636
9.86445
42.6173
7.07734
9.83898
4.96673
3.77249
12.6255
21.3879
3.5831
5.23001
19.6804
4.79013
17.4404
11.0041
3.32381
3.41231
18.2143
4.71444
7.28521
47.9688
10.4109
7.65388
44.584
9.9618
9.91636
15.3069
16.1099
9.00578
7.16082
6.10292
34.7063
5.50511
8.1199
9.10054
49.9144
4.85743
28.5523
6.03311
6.90266
138.048
11.6758
19.1818
12.9955
17.6866
52.8859
52.5542
7.96341
14.1842
8.6346
13.2538
6.66279
3.94196
15.1316
23.1005
4.40479
5.51422
29.7179
5.91072
37.8752
16.0805
4.30226
4.16421
36.762
6.27837
10.338
54.959
10.7773
8.1084
142.597
11.6999
6.10549
51.1017
24.4819
8.45722
24.4909
8.46949
6.09689
4.56184
16.4577
3.43983
10.7652
4.52115
16.7946
3.46806
4.5908
3.48756
16.9915
10.8968
17.0016
4.58773
3.48971
5.98527
49.5283
23.6567
8.23069
23.7586
8.2824
5.95561
4.50628
16.4409
3.43174
10.608
4.50201
16.4798
3.43695
4.53002
3.44605
16.4714
10.6442
16.5283
4.50728
3.45935
4.84129
13.933
3.64095
18.838
3.72916
4.74924
19.438
7.17387
10.3345
141.307
9.33465
9.1968
47.7585
5.17335
15.3588
4.66793
30.7491
6.50357
3.97602
21.5794
6.69772
39.3011
8.70411
8.79063
6.586
40.6502
3.77604
9.16507
2.99187
15.0304
14.2099
2.88128
3.91954
4.93544
6.80383
19.893
42.0134
4.90407
6.84128
20.0334
3.71061
8.91269
13.763
2.80229
3.68563
13.8769
2.82565
5.02065
22.0916
43.2953
7.28181
6.95615
20.4927
5.22959
14.5824
21.1535
21.3333
14.497
9.0085
6.58768
42.4758
6.75564
8.79724
9.01463
42.3907
6.736
6.73949
8.98144
14.3506
20.3968
14.0128
20.8266
4.01192
5.35784
1.89199
1.54808
1.51295
5.38495
3.98223
21.2279
44.883
21.2661
44.7182
14.4652
9.11473
9.11255
14.4451
5.29202
1.84702
2.3382
7.34445
1.84911
5.2811
7.37001
14.4876
9.10993
9.11358
14.5017
5.31665
7.42575
1.85495
2.35062
1.85438
5.31738
7.41588
21.1777
44.4903
21.1446
44.5753
41.1976
41.361
7.0358
2.37916
3.04459
9.35237
2.3906
7.19221
9.21939
5.04482
1.52545
1.80746
3.88859
1.83137
3.88614
5.0467
20.1646
15.3341
14.265
21.1966
6.93496
9.05912
2.84552
2.23627
2.26898
9.1034
6.90444
19.79
13.7586
13.8287
19.7591
41.7215
43.4245
21.2243
44.6495
21.3457
44.5226
14.4681
9.13401
9.17208
14.4413
5.30424
1.87547
2.35664
7.34596
1.87932
5.29591
7.34907
5.31274
7.35168
1.89934
2.36879
1.89229
5.32709
7.34927
14.5634
9.50608
9.28068
14.7745
21.1546
44.3859
21.1178
44.4342
5.26489
27.6641
23.6281
8.13513
21.6195
6.58071
6.04163
4.28929
18.4335
3.58538
14.3093
4.28425
18.199
3.568
4.30942
3.71141
17.6028
13.4606
17.7593
4.70323
3.53596
4.88991
23.943
19.986
5.90044
20.1782
5.94437
4.8344
4.2034
18.4102
3.56677
14.7071
4.25448
18.2272
3.52655
4.12089
3.4383
17.7267
14.4574
17.9119
4.09322
3.4602
12.895
8.45421
8.53454
12.8051
4.13905
1.75977
1.45562
5.12116
1.47012
5.17859
4.09071
16.8809
21.6772
17.3827
20.8853
13.1321
8.97551
13.4951
8.71431
16.5898
20.4369
20.5015
16.5032
8.51208
37.5286
6.43485
6.48322
8.43838
13.0507
16.987
13.0356
17.0782
8.52827
37.6569
6.48204
8.54064
6.48484
13.1041
18.5428
17.5259
13.1557
53.9029
158.414
7.49
2.46043
9.49543
3.13056
7.32937
2.49452
9.65091
23.0073
16.4751
17.5378
22.0158
5.78144
1.70975
5.14353
2.11521
4.51684
2.05198
7.04968
25.1015
19.9842
18.5716
34.9519
46.5679
44.5407
7.84361
10.63
3.17937
2.61691
2.53951
9.88809
9.87185
42.4117
21.5844
21.5318
42.5099
6.94766
1.81572
5.11072
2.20865
5.17854
2.20836
6.85454
9.07038
2.7833
3.47338
13.3953
2.77728
9.1111
13.3403
42.0907
20.9425
21.3141
41.5882
8.9923
13.0788
2.76066
3.44898
2.75659
8.87539
13.2388
13.2234
3.49177
4.24442
16.9957
3.45162
13.4538
16.7742
8.90292
2.17219
2.67977
6.8501
2.70624
6.92437
8.81169
42.9296
40.9881
13.0456
16.4832
4.17873
3.35993
3.39331
16.5817
12.9396
40.1118
40.1987
43.5742
21.5631
21.874
42.5131
7.36976
1.83099
2.28953
6.59036
2.23372
5.47617
9.12086
9.17735
2.7811
3.47721
13.4134
2.78127
9.12678
13.4158
9.30138
13.7837
2.80955
3.45861
2.7776
9.9017
13.4695
50.0788
32.6134
23.4896
148.524
4.74456
21.9271
18.5753
5.67433
18.5741
5.74794
4.6908
4.0926
16.7024
3.42395
13.5015
4.07667
16.6259
3.43127
4.02727
3.35798
16.6429
13.5023
16.6209
3.98846
3.38685
4.86716
22.362
19.0432
5.89915
18.9966
5.88737
4.87724
4.09667
16.7736
3.42869
13.7779
4.07519
16.9055
3.44746
4.13715
3.491
17.1079
13.9058
17.0585
4.14644
3.4825
34.0857
17.3903
17.4466
33.1195
6.13582
1.8848
4.69188
1.57324
6.13864
1.89233
4.68675
7.81468
2.86529
2.34302
11.0431
2.34711
11.3032
7.6158
34.1939
17.49
34.2765
17.4304
6.14048
4.63956
1.58516
1.90591
1.90827
4.69735
6.01828
19.1668
15.6822
15.5966
19.316
35.5089
34.4098
4.88348
1.60147
3.83176
1.38575
4.63339
1.63863
3.97657
6.65853
2.50578
2.05512
8.64019
2.0372
8.49746
6.75892
18.652
15.2217
18.356
15.3184
5.04401
4.1238
1.41186
1.68521
1.67241
4.07955
5.1081
37.4709
37.9428
14.3861
3.5519
17.2685
4.37534
13.8216
3.60622
17.5401
50.4327
158.784
11.6385
2.44976
8.47331
3.09712
7.79422
3.02458
12.4351
15.1351
17.9863
4.42447
3.72805
3.68138
17.8109
15.7313
12.3105
2.64415
8.4461
3.25004
8.5333
3.27101
12.2388
15.6139
4.09664
4.97193
19.4398
4.03262
15.9725
19.1628
15.4549
18.9824
3.9689
4.93483
3.9918
15.4038
19.0613
18.25
4.72771
6.22157
35.0577
4.77553
18.1379
35.3084
15.6493
3.39838
4.03092
13.8494
3.99392
13.951
15.7348
18.5208
36.3126
6.32945
4.90674
4.8514
35.892
18.7132
15.2631
3.07179
3.6901
12.5215
3.66329
12.3259
15.4338
16.8826
4.199
5.18541
19.8511
4.25984
16.5028
20.0884
17.1422
20.3735
4.34871
5.24727
4.32405
17.2586
20.2823
4.53052
19.8236
17.0946
5.3368
17.1448
5.3508
4.51715
3.99017
16.2016
3.51169
15.0866
3.97359
16.2561
3.5255
3.9764
3.49901
16.1636
15.0486
16.2189
3.96362
3.51283
4.45614
19.2285
16.3459
5.14789
16.5779
5.27876
4.35673
3.93229
16.0304
3.4841
14.727
3.94207
15.8801
3.47292
3.90186
3.37683
15.4544
14.5127
15.6563
3.82283
3.43993
0.405762
7.8082
8.46714
2.84523
0.345814
2.66431
0.371532
1.26849
1.69411
12.2873
3.54125
1.2703
0.465783
0.512751
11.8646
4.12107
9.09353
3.52526
0.429781
1.72121
3.53993
1.33475
3.19938
1.30313
12.6319
2.88935
10.7393
2.54308
12.6288
2.90036
10.6718
13.5379
3.68469
3.25454
14.3774
3.25207
14.2742
13.5598
12.6375
10.4466
2.5357
2.89376
2.89889
10.5976
12.5804
11.0422
2.5686
7.37316
2.1578
10.6383
2.5947
7.65654
13.8107
3.47562
3.2545
16.0484
3.05574
15.1965
14.1657
11.2331
7.8111
2.18542
2.75924
2.63242
7.76039
11.3727
18.1329
4.68845
34.8633
6.07225
18.0481
4.68271
35.0336
15.5729
3.33919
14.434
4.01965
13.9238
3.89875
16.435
18.5044
42.1819
6.12687
4.89653
4.72496
36.0421
20.3296
18.047
3.91948
15.2781
4.66954
15.3607
4.67847
17.9595
34.804
6.10536
7.76263
6.11703
34.8853
34.7264
6.09073
7.75527
6.10596
34.6138
7.24552
10.6697
7.27679
31.3601
4.40197
5.70606
16.4689
5.69477
16.3242
31.6044
10.7106
7.31173
7.29933
20.413
3.99887
5.70602
18.8821
4.78727
16.641
30.7202
36.0375
6.08122
7.68338
6.09726
34.9915
41.9316
7.58095
7.78822
6.27733
136.139
3.99975
17.1598
14.6753
4.63091
14.8223
4.6836
3.95342
3.61558
14.4741
3.299
13.9116
3.63975
14.3799
3.26966
3.55391
3.14735
14.0034
13.5924
14.1838
3.50785
3.20231
4.12743
17.5243
15.0785
4.80748
15.1348
4.82402
4.11368
3.6691
14.4874
3.31768
14.1792
3.65476
14.5365
3.33235
3.68111
3.33471
14.4992
14.1957
14.557
3.66951
3.34397
7.19387
10.4577
7.16459
31.6999
4.36813
17.8346
5.85624
16.2357
5.64742
37.0555
10.4309
7.34881
7.18492
118.396
16.1191
19.1415
19.2849
5.43972
29.4609
7.02972
29.3283
6.89829
10.0937
12.1988
10.0331
38.8825
19.1557
30.6012
10.3622
12.2771
10.0669
30.6396
38.3643
14.0769
14.3766
13.9337
11.3816
12.1849
11.4583
6.5109
9.54333
9.52596
13.1461
13.495
13.5167
13.6732
13.183
13.5691
12.2388
11.5442
11.5135
14.2859
13.8227
13.8597
16.8819
19.3317
16.2409
15.6508
16.1336
16.7099
5.50146
29.2083
6.91316
6.95466
29.3824
10.1293
12.3308
10.1381
15.8752
14.8239
15.3069
10.0401
12.2931
10.1088
30.8763
19.2813
19.3202
3.55486
14.5283
12.6768
4.11898
12.6909
4.13638
3.54077
3.23674
12.3079
3.00497
12.0464
3.27018
12.2666
2.98006
3.1954
2.93894
12.209
12.0076
12.2179
3.18365
2.94733
0.884188
2.62562
2.8787
0.950637
2.64927
0.873868
0.957722
3.65809
14.625
12.8236
4.26979
12.8278
4.26284
3.66253
3.25966
12.294
3.00075
12.0825
3.26215
12.2981
2.99843
3.28331
3.01958
12.3219
12.1096
12.3303
3.28554
3.01848
13.5687
14.0377
13.7101
11.2176
11.7081
11.0187
13.0489
13.4683
13.4224
6.16071
8.88759
8.96186
13.2157
12.9817
13.3498
14.0768
13.8153
13.773
11.4877
10.7183
10.8149
14.775
14.7459
14.7178
14.7399
14.7333
14.7288
14.7469
14.7417
14.6916
14.8148
14.7461
14.7546
11.1356
12.2346
9.96018
31.4668
5.18581
6.57378
104.945
40.5209
5.99417
8.90745
10.5044
10.5425
11.1339
11.1585
11.0772
8.66855
6.88663
131.337
7.2445
11.0099
11.1231
11.0411
11.2722
7.24473
8.62272
12.5957
3.07246
12.3205
3.26177
12.8383
12.245
3.15765
11.1023
11.0946
11.071
10.5317
11.1017
11.1221
12.1014
12.2682
3.09861
2.99718
12.2295
12.2174
2.9695
12.4399
3.06776
12.4022
3.21823
12.4877
12.2302
3.11587
11.09
11.153
11.1331
12.1445
3.01245
12.5725
3.01785
12.3726
12.2119
2.96963
14.7061
14.6154
14.6118
14.6705
14.6725
14.666
14.7454
14.6716
14.6662
14.631
14.6505
14.6261
31.237
5.14639
95.7882
6.06133
5.01252
25.1571
26.4933
18.8963
4.43547
5.01057
33.2167
18.9686
5.16412
9.14754
10.828
10.8099
11.216
11.337
11.2711
16.2348
4.26374
3.83464
15.8278
15.414
4.08869
16.4678
11.3266
11.378
11.3117
97.4504
7.35291
5.98964
6.56206
0.856142
2.62052
0.935573
2.91069
0.859401
2.66434
0.932775
0.862829
0.936739
3.09716
2.65509
2.80024
0.941248
0.858538
3.0524
12.2677
10.5163
3.6294
10.867
3.47964
3.13023
2.93257
10.7085
2.51104
11.7935
2.65684
11.9441
2.72948
2.77889
2.62694
10.4054
10.9121
10.7893
2.82081
2.61053
0.84857
2.61695
0.896164
2.97148
0.824383
2.68719
0.923267
0.855161
0.928921
2.68669
2.9831
2.70273
0.855858
0.929866
0.864124
3.57491
0.937444
3.20594
3.35315
0.874078
0.926991
0.849347
0.897442
3.11399
3.01964
3.17614
0.911627
0.836793
2.63017
9.52906
9.15231
2.87815
9.27362
2.92377
2.59107
2.4769
10.0473
2.41733
9.86599
2.55314
9.65878
2.34895
2.41639
2.25359
9.25396
9.58402
9.37661
2.38201
2.29063
0.79323
2.53709
0.874667
2.72898
0.806379
2.47897
0.860694
0.783801
0.842985
2.43408
2.68203
2.43909
0.778443
0.848899
12.1558
2.82664
2.97481
12.0356
12.3961
2.93254
11.8745
11.197
11.6057
11.4829
12.0481
12.0005
3.04809
2.9033
11.925
12.0265
2.94306
11.0141
10.8746
11.6956
11.9483
2.83611
3.01489
11.6677
11.8817
2.92354
11.7194
12.2301
2.99392
12.0903
2.89265
12.0003
12.4549
2.95003
12.2405
10.8204
11.873
13.9358
2.82858
13.5105
2.86991
13.4747
13.8247
2.89231
14.3366
14.4351
2.89502
2.79057
14.3571
14.3957
2.86719
14.0274
2.86422
13.1594
3.00953
14.0043
13.3725
2.92794
14.2064
2.86446
14.0858
2.80694
14.2607
14.0368
2.86429
12.0423
2.54977
12.3429
2.56936
2.51994
12.0898
12.2972
11.6409
10.8382
2.28192
2.38466
11.5234
11.0811
2.41879
10.0662
10.2614
10.2034
9.85533
10.1957
10.0702
11.7488
2.48866
2.31975
11.4388
11.3142
2.44895
11.8058
10.2215
10.2974
10.1876
11.9558
2.55918
2.48137
12.1349
11.8574
2.50312
12.2243
8.31996
1.63367
1.68206
10.4473
10.0225
9.03571
1.51864
13.0745
11.0882
11.8231
10.5411
156.049
11.0919
11.8847
41.0047
5.42783
4.91264
1.07142
1.19345
4.52448
6.50276
1.24869
6.12472
1.45795
6.74822
1.15037
5.13208
7.03203
1.33272
7.56573
1.61755
8.66006
1.36432
6.62574
9.41951
1.43643
10.4087
10.2335
10.8635
13.9357
13.5187
2.68826
2.57846
13.6167
13.7851
2.65952
14.2772
14.4239
2.73507
2.64237
14.3592
14.3485
2.67426
14.1352
2.7357
14.0431
2.76278
14.2199
13.9602
2.70804
14.0593
2.53022
13.6338
2.58675
14.1017
13.6768
2.62383
11.5523
2.37909
11.7542
2.47314
2.40568
11.4853
11.8298
11.295
10.6305
2.1771
2.357
11.391
10.5064
2.32329
8.74004
9.14724
9.17618
9.5886
9.46842
9.36095
11.2097
2.26756
2.15022
10.3634
10.4194
2.29499
11.151
9.16907
9.30298
9.2016
11.6418
2.49938
2.46227
12.0192
11.7364
2.43263
11.9225
4.94515
10.2936
14.9067
41.4049
4.84403
10.9272
16.1563
6.22664
25.2455
50.816
15.6399
14.614
19.3352
6.63812
0.866197
1.05292
3.59646
1.36896
0.951853
0.462115
0.429842
5.39666
2.2058
1.56873
1.88498
1.24226
0.609813
0.72493
88.1275
17.9919
42.9828
88.367
17.7485
32.7466
32.6557
22.3743
10.1756
3.56856
7.04338
10.2262
22.2382
7.11925
22.7014
7.29629
10.3123
3.61406
10.3295
22.7079
7.23887
86.4683
41.7413
17.0954
85.6416
17.3644
0.975705
1.15934
2.91187
1.05603
1.18623
0.511634
0.486509
2.53238
0.854802
0.976358
0.937815
1.06732
0.46553
0.440899
13.0593
5.18814
39.1152
15.0181
11.3693
5.62394
43.0367
11.4954
12.2443
5.5966
20.5292
29.5936
5.85811
9.76487
37.0241
39.8048
36.2351
217.262
29.8386
13.0722
15.1262
5.84953
45.0514
5.63338
44.3159
13.7764
4.75154
11.2199
16.6059
29.3773
5.59629
10.1274
12.6528
4.08939
9.96058
24.5317
6.81844
8.00161
11.71
3.67052
79.725
15.2847
35.946
79.1962
15.5593
29.916
30.1672
21.4721
9.88689
3.43946
6.83646
9.85088
21.548
6.76859
20.9848
6.48647
9.61494
3.34189
9.65614
20.89
6.56529
82.068
37.5573
16.4108
82.6036
16.1419
0.906138
0.61704
1.31364
0.656374
0.521477
0.323239
0.367772
1.40668
0.65353
0.525936
0.709428
0.579347
0.34273
0.323406
0.828786
2.14912
0.598655
0.651119
0.941355
0.37149
0.350001
2.35106
0.947996
1.19806
0.727822
1.00324
0.410851
0.504923
51.5194
13.7661
57.6171
33.59
21.7874
20.6267
29.3279
7.486
60.1126
208.75
11.2557
9.10204
23.4156
13.4423
5.17878
12.6568
9.25396
11.9454
39.1596
68.0562
209.406
27.3903
37.1404
263.053
183.945
22.052
25.9963
86.8245
52.4641
9.81317
26.1113
12.4404
40.8105
22.7832
3.99943
12.6338
9.93953
11.0221
7.74932
29.7697
41.1947
38.8345
87.0138
43.2302
25.7107
18.5266
195.454
34.0603
1.67195
1.95411
3.21132
0.893718
1.46563
1.12674
0.679311
0.865538
0.762532
2.51264
1.27519
0.950495
0.584267
0.499704
197.655
15.1261
47.4426
29.2281
78.7119
58.2834
70.3071
12.3049
17.8636
46.3096
21.2932
62.184
156.975
182.82
56.9299
22.6854
205.877
25.7186
81.0941
26.2853
10.5257
216.045
18.8446
31.327
8.30139
101.182
42.414
95.9643
15.0735
18.8819
31.273
21.8789
49.836
5.7191
16.5847
7.34914
22.5408
79.2863
17.0645
196.355
47.8595
22.8827
90.6952
35.9551
6.15553
3.06521
10.5908
16.607
3.39491
5.33206
20.0213
7.68773
29.0003
4.64014
12.9614
4.13924
9.52142
24.5518
12.9208
54.5369
18.2142
10.6107
68.3043
24.5874
4.24704
19.3763
7.20881
26.6996
6.38635
5.87337
8.89299
1.23687
0.588524
1.66071
0.562828
0.51869
1.06233
0.478595
118.205
231.573
65.8994
89.4422
36.7246
56.8726
152.595
540.813
22.4726
38.0805
591.525
42.7129
197.963
29.3079
125.096
29.552
50.1698
76.5753
233.816
430.305
186.244
34.6675
47.1614
49.9623
113.015
44.6473
15.2893
52.3319
28.2115
48.1578
18.6675
75.6885
85.6693
126.19
654.523
249.879
192.353
260.102
78.9578
70.2368
59.375
620.677
407.513
169.396
386.399
60.4254
302.504
112.702
232.684
87.0156
71.4102
43.231
86.7683
77.4191
134.807
31.0701
42.5932
2.09819
2.06942
1.14056
0.752134
1.36833
0.785942
0.616893
69.3432
159.637
632.631
77.2813
29.855
17.1062
14.8637
38.0448
50.8172
16.3215
14.7302
41.0418
57.405
218.691
44.4195
54.4423
251.532
47.9226
25.5339
142.355
54.6902
11.7173
15.9568
67.7008
41.8893
49.2891
29.3712
622.983
60.8409
79.737
19.3391
272.508
237.635
53.0358
291.317
44.0853
26.0042
164.53
56.1203
13.3393
14.9488
220.267
19.7741
171.571
74.3615
29.943
104.824
27.7632
53.0203
178.91
41.1319
480.309
539.003
139.672
195.678
27.7595
191.25
105.469
467.786
34.3087
20.8495
10.842
9.68814
26.7404
33.3479
9.59426
37.0494
520.021
48.356
33.569
53.1066
43.1625
10.0301
86.321
13.2507
33.2407
15.3184
12.5168
84.3972
34.9366
149.624
22.8944
15.6129
53.376
5.06804
10.5965
15.6421
5.0462
52.9394
46.6124
14.1144
14.0952
46.7322
8.6722
4.33264
1.67524
2.5567
4.48012
8.22172
2.6891
8.88499
2.77738
4.56324
1.73544
4.57889
8.88302
2.77677
15.1454
10.2626
4.46313
45.9517
14.0544
4.89012
50.8562
16.9675
5.07631
10.4518
52.6489
16.1557
5.44507
55.7618
50.4638
15.9748
16.0969
49.9713
16.8924
10.3964
5.26192
54.2579
16.3219
5.41008
55.5483
0.917404
1.40597
0.700853
0.635462
0.858203
0.455656
0.497212
0.951134
1.3202
1.64769
0.604571
0.667569
0.949079
0.461657
66.6293
9.8923
6.79343
18.9283
12.4944
20.8019
32.6162
73.1123
33.945
22.2115
21.1398
64.3074
21.265
178.62
78.2838
6.83494
19.7202
28.6866
188.031
13.1245
22.9581
160.407
15.0761
68.3653
24.2948
7.61021
81.8115
13.5992
8.0672
25.8022
141.197
53.6168
8.04705
3.99125
18.6771
4.79537
16.5801
11.1264
3.10831
15.9325
10.2897
25.89
145.604
7.85919
17.0925
1.90862
5.00745
3.0798
9.15621
1.95801
4.89391
2.90014
6.88787
80.131
18.1636
11.6036
5.79678
21.5547
15.0731
4.24656
3.05849
20.4621
6.20983
5.28632
2.49787
12.9996
8.68248
171.595
43.4992
17.4197
9.85355
26.0695
19.9905
4.73534
21.57
11.5761
7.49899
11.636
6.78514
5.07365
10.4615
61.7951
6.78072
21.4815
11.5628
34.746
5.86995
15.3048
65.4971
18.0992
86.2357
24.1784
11.8905
8.47182
4.55526
16.332
22.4098
27.2404
5.22427
7.01968
191.091
15.3676
10.4779
28.2792
19.4543
86.2023
36.5512
201.396
57.6335
38.1153
69.6909
10.5127
20.0299
15.6716
55.6702
206.759
91.6775
49.5534
142.059
49.8243
535.315
31.8847
19.8194
45.367
46.1235
566.928
25.9458
226.458
13.3518
57.7179
20.5056
50.8839
38.8896
25.6068
96.8541
330.848
326.414
56.1586
82.1383
175.972
153.678
244.637
56.5242
16.4911
64.4533
570.261
36.0058
465.762
102.486
36.4658
40.9546
10.4092
201.8
27.0558
27.3955
539.359
22.7578
21.0155
50.7439
45.1073
10.499
43.5578
9.14496
12.9889
24.9047
14.1589
181.1
457.3
214.72
14.4236
54.4213
113.571
41.4372
55.1855
542.799
488.007
43.6948
19.5796
226.693
48.4007
21.3479
30.2347
16.9157
11.8725
73.0094
51.482
125.689
17.6046
44.4137
30.2911
7.56303
34.2899
43.7333
6.90865
16.0022
8.581
9.16067
9.87567
11.133
68.4472
20.0107
34.5213
16.6193
8.13249
19.2604
6.6563
9.80127
3.70428
5.22709
30.655
7.14477
28.494
34.0697
5.71034
5.6483
11.8691
17.8949
6.74291
353.41
52.8583
17.1471
33.8319
28.7003
34.1166
5.87487
6.0919
26.4492
15.6928
6.7898
13.1775
86.0544
52.4981
171.831
33.5329
15.2867
40.2559
177.863
400.77
19.1257
368.776
146.976
80.4685
27.7619
94.2315
38.1138
16.2645
41.2008
32.7393
203.228
136.389
20.9448
46.1697
180.094
27.1378
225.353
51.2955
49.6002
28.8643
491.329
24.8492
41.8616
598.281
55.6718
69.1694
65.6761
16.534
13.2582
14.1214
40.4227
34.1092
13.2958
15.2997
26.6549
14.362
52.3714
22.7017
7.36448
9.06109
59.7003
13.9417
43.0887
188.375
39.9708
50.4104
150.351
29.6042
7.37893
28.1269
15.3301
49.9052
12.7762
10.2333
13.968
6.13983
42.6104
9.80737
10.8602
5.96646
11.3442
11.5445
8.43863
16.2614
9.74089
37.9443
7.83222
29.1139
9.60593
31.7917
80.1561
141.896
21.4112
10.9996
51.6505
8.10233
9.5296
23.4564
37.0055
5.74766
56.3487
41.0024
100.394
24.2944
540.64
28.2976
47.0036
11.3671
147.757
50.6469
224.532
34.6053
14.909
0.833294
2.76853
1.70842
1.62963
0.921531
0.717879
0.70268
44.7502
48.0634
19.9462
479.864
220.848
55.006
93.3394
15.3419
543.981
45.389
53.3923
176.733
24.0181
24.1176
12.6281
40.3055
88.114
41.2718
104.422
45.4369
174.527
37.2408
52.5683
9.78571
37.0641
8.20128
23.9394
10.7902
17.1642
216.16
185.251
539.88
26.2988
10.7695
9.11126
5.11235
7.68433
36.9891
9.56263
55.9979
23.1721
49.1817
25.21
12.273
24.7651
3.80632
5.91114
12.4651
3.71926
24.1303
39.8263
13.6312
13.6229
40.0428
12.1708
5.8792
3.67324
23.4428
11.9939
3.70948
23.8535
12.9067
3.07467
4.89689
14.8806
9.82065
3.21457
16.7252
26.7137
11.1023
11.1623
22.2362
10.3449
5.41857
3.6282
22.4284
11.5021
3.46415
20.3499
139.268
63.6942
68.1117
15.0795
27.9988
7.93414
80.9891
12.6582
24.2278
245.782
30.1828
16.6308
22.3835
101.597
46.1365
17.3814
7.06021
9.73251
12.1345
19.0567
35.4781
31.2607
18.6697
15.9466
43.3075
15.5327
7.79627
5.94904
28.3452
5.35781
23.7573
21.5841
69.1105
64.467
24.4244
218.683
15.0447
22.2586
19.1487
90.5704
233.894
7.97551
5.74923
14.4402
24.4278
21.4333
5.45737
8.20676
10.4336
14.57
34.8198
107.505
9.54803
16.193
40.1487
7.01334
14.1148
18.6311
4.71567
6.50682
20.8302
5.0061
13.062
64.8722
276.82
18.0301
21.6373
51.008
12.6197
16.7243
59.5215
12.1149
248.153
11.341
21.1295
46.8396
62.8273
257.748
9.86212
5.5624
3.70297
14.2288
3.98251
16.1122
8.95055
19.2868
67.1048
14.6727
21.9627
12.8183
33.5624
73.623
94.4897
27.5712
5.988
21.5132
3.57097
3.75969
9.66122
8.32433
3.36189
25.3332
26.4384
41.5162
13.9839
16.349
382.542
15.0265
27.6082
39.0154
14.6015
20.9845
404.899
179.021
38.9106
35.4171
6.02433
12.3413
37.5631
6.00568
30.4028
5.40129
6.85674
3.47878
3.38632
5.58698
19.6282
9.60861
3.16415
4.93996
53.7563
16.8019
220.318
18.6553
513.717
44.9276
43.1508
29.4154
553.809
62.815
57.9949
14.252
215.907
16.3606
30.9176
19.6518
26.3992
30.0572
72.1912
53.3395
10.3041
12.2187
122.963
16.1481
357.797
148.633
85.3718
374.265
13.1681
5.86884
29.4096
5.52399
22.176
5.67397
19.0278
27.7108
4.80654
6.58134
3.68028
18.9068
5.80397
8.22035
148.089
42.112
86.7983
49.3353
36.341
28.2876
5.09762
4.68418
6.64554
10.8546
19.2827
23.9064
40.2911
15.1652
385.059
34.9649
14.944
22.8664
90.9877
34.5603
39.8717
13.5879
172.15
382.113
7.02944
22.1207
7.30949
15.2452
7.43028
7.18066
13.592
6.44215
4.19481
12.9238
8.40434
4.69311
4.40452
24.4419
8.85996
15.2329
6.9365
39.5139
8.17146
7.22963
46.3924
8.40758
47.5454
6.76216
11.2926
5.1506
9.21288
38.7166
8.91122
33.8237
8.52556
15.2541
9.93961
27.9778
7.87475
9.59209
13.9448
64.8397
31.6473
15.5184
9.85505
32.925
12.2183
62.907
45.3203
122.462
30.7843
15.2005
49.504
8.74861
46.2998
17.8684
11.8195
9.48891
15.9372
11.2461
25.2456
595.654
45.0621
21.8951
61.0968
11.8453
8.98811
26.498
5.2623
39.7472
5.66862
9.78327
103.524
540.494
169.196
53.1251
112.109
208.199
41.8856
36.9112
22.0231
44.8008
18.5925
9.74469
38.7481
12.998
5.26526
44.2749
8.99
5.66866
8.65996
11.4844
33.9902
25.7829
9.44466
8.41841
18.5065
8.50644
15.196
31.4798
8.40346
9.17239
18.413
7.74301
10.6128
24.9366
13.9212
9.19438
7.69477
52.6042
7.85537
9.44824
13.7606
3.00825
4.13518
9.65082
2.94292
13.4343
22.7862
12.4971
12.4115
23.1311
56.6392
56.1014
57.9054
58.9605
9.306
4.11046
2.91464
13.17
9.27052
2.92438
13.2252
9.29495
2.9224
4.14379
13.036
9.18081
2.95174
13.204
21.9501
11.9587
12.1465
21.6219
56.2336
56.5714
9.39721
4.18356
2.98009
13.3806
9.41218
2.97653
13.367
55.6252
54.8153
5.02975
9.85495
3.57718
13.6829
15.2602
3.76799
4.67783
8.19006
12.0209
27.356
52.5626
8.12692
13.1497
23.0614
5.52974
10.1121
22.1247
4.22372
5.75351
15.9577
3.98477
7.13591
19.7517
40.6013
9.1669
10.4919
22.1015
6.47139
2.58561
4.14174
4.88664
2.36421
2.30887
4.01933
2.59426
5.67671
10.8268
12.3825
7.31425
5.68858
17.1352
6.03561
5.66573
6.90777
32.8624
34.6888
6.05413
6.0749
27.5899
5.67025
12.5098
5.54739
24.3686
5.77723
5.97184
19.2295
5.82885
19.4687
32.6204
5.79124
6.17028
25.1187
5.72455
6.88576
9.7366
2.59278
3.32159
6.83945
2.60341
9.81293
19.2743
11.7428
11.8265
19.2253
28.5388
61.3245
28.7377
60.9841
28.4201
60.5773
28.3511
60.7465
6.93658
3.34156
2.64029
9.98566
7.01793
2.61596
9.87409
6.95086
2.56325
3.32598
9.70202
6.84794
2.60721
9.86941
19.1916
11.618
11.8176
18.903
28.7235
61.7612
28.9635
61.2948
7.07752
3.40413
2.68281
10.1261
7.12113
2.65989
10.0704
28.3223
59.5461
27.9232
60.3578
6.43228
9.05091
2.29123
2.81689
6.56829
2.26704
8.76553
18.0154
11.3835
11.3932
18.0668
25.3611
44.8459
25.6941
50.3417
25.8499
54.3517
26.2863
51.941
6.20563
2.75568
2.20435
9.23841
6.61597
2.23538
8.2518
62.689
62.2001
5.55047
2.12404
2.5598
7.03894
5.53175
2.13164
7.09026
17.1648
11.0428
11.1256
17.0363
22.6033
31.2771
23.4252
29.0406
5.55739
2.55057
2.12964
7.32602
5.67748
2.11668
7.12257
22.446
28.306
22.2598
28.6084
58.5635
28.9857
56.4717
27.8635
52.9449
52.9519
58.6066
59.2299
5.25956
6.84599
2.11237
2.51169
5.36209
2.149
6.74049
11.4345
58.429
11.3252
8.92738
12.4744
16.4333
22.8166
16.1869
23.1411
17.4838
25.0417
18.2738
24.4975
24.3285
28.8716
30.5203
217.891
70.3868
26.0202
49.665
33.7066
56.5032
60.2394
22.712
26.3438
25.7186
29.4599
57.5066
29.8226
22.2266
24.7754
25.1367
31.5832
58.9872
30.5753
10.1211
46.3459
7.82255
7.88597
10.0299
15.7978
22.6047
16.0217
22.2903
15.4053
21.259
15.2127
21.6943
21.6117
17.1687
21.2862
27.4623
23.9745
23.4404
23.9219
27.7905
23.4954
17.1274
21.4672
21.2802
18.8101
22.2036
22.8924
29.0977
55.7681
28.71
20.142
24.183
23.6119
27.4553
54.9293
28.1759
51.5898
53.7097
9.75814
42.4849
7.48018
7.59215
9.58783
15.5098
18.7999
14.9513
20.126
14.5379
18.0513
14.2491
18.3693
12.5801
17.7602
18.419
25.6101
26.4054
23.3116
13.9065
21.6036
19.5603
21.6567
24.9251
22.3052
10.5754
16.1818
15.7903
18.1543
20.7529
18.9378
10.2273
14.1114
15.2526
19.7039
20.8493
19.2766
9.97341
43.2206
7.77396
7.75979
9.98663
14.693
18.3015
14.692
18.1782
14.7511
18.1099
14.743
18.1796
10.4038
43.7091
7.50721
42.769
9.29939
16.6483
11.3562
12.0817
15.2641
17.7382
13.7812
180.11
8.21233
26.3578
8.87679
54.5728
41.7516
10.7875
8.90504
11.2981
48.8713
11.3549
50.3264
17.2511
20.1757
16.7322
9.20488
12.5577
190.612
11.6304
58.4549
16.4663
20.0914
16.51
219.437
32.7297
67.6855
55.4142
29.7634
58.0059
52.5802
50.8914
22.2433
26.1426
26.1374
26.9765
22.288
26.2339
50.5631
50.5616
25.9737
46.636
24.9183
19.5404
23.1495
21.3083
22.2421
19.9247
21.4754
45.5997
27.3225
24.6027
48.1223
50.2538
22.2613
26.2047
26.2677
25.6814
22.1936
26.1144
50.6974
50.8131
80.1595
82.4142
47.8806
302.922
85.4568
31.2967
101.419
8.75581
38.1066
6.90215
6.91918
8.73773
12.6543
15.1767
12.5866
15.2709
12.646
15.2521
12.6232
15.2683
41.904
21.5179
5.92904
7.57983
21.7934
7.6751
41.386
10.4197
14.8034
10.0602
42.8698
6.03601
23.1865
8.09892
45.0245
22.2823
7.81667
9.74879
14.5478
9.88391
23.5421
21.1661
5.36562
6.53733
6.38063
20.0934
25.7659
44.1338
8.16138
10.4371
43.5849
8.22578
22.9753
5.3495
6.29246
19.5375
22.7036
6.34069
19.7538
45.5915
8.5425
10.5029
8.29723
52.927
8.74287
37.1301
6.66761
6.85926
8.45733
12.57
15.0478
12.4821
15.2176
12.8476
15.0223
12.3285
15.8502
18.4643
5.09661
17.5512
4.51166
17.4265
18.5607
5.14635
20.9808
39.3305
7.6242
5.76889
40.1956
20.5471
5.92601
21.5417
6.07709
41.2775
7.94938
41.3861
21.5849
6.15941
18.0426
4.37197
16.7596
4.84789
17.6905
17.0801
4.97031
21.9215
5.14075
6.13638
18.4015
6.13093
18.7106
21.6728
42.7695
8.06705
10.1831
43.0972
8.01129
22.2375
5.19536
6.21864
19.2913
22.4381
6.17333
19.0616
42.2809
8.03032
10.1745
7.98038
42.0024
23.6881
19.8348
20.2387
20.4767
18.0525
19.4853
24.5975
22.4681
20.8593
18.7298
17.7239
19.0558
19.6591
20.9715
19.7302
15.2441
18.486
18.5602
18.5137
15.2623
18.5114
21.1028
19.7588
19.8233
17.7835
20.7902
18.949
9.78385
14.0385
14.5311
14.6478
10.245
15.3004
19.1066
17.1053
17.7805
20.9525
20.5416
19.485
14.8885
18.2946
18.1201
19.1999
14.9571
18.2991
20.3138
19.5067
19.2451
19.4718
25.4109
18.7957
12.8311
15.3617
15.0852
16.357
13.5996
15.8177
24.4122
18.0994
18.0144
19.0522
15.2619
15.7417
14.7095
11.926
14.0515
20.8855
17.3306
16.4408
13.312
11.5589
13.6011
7.60973
32.9201
5.96446
6.03449
7.51897
11.2181
13.7503
11.3104
13.6325
11.0732
13.2852
10.9384
13.4517
17.1651
17.5058
3.97685
4.83056
16.1396
4.46472
19.3972
19.3089
37.8186
5.58312
6.83047
19.8584
35.8256
5.387
16.8116
4.04451
16.2606
4.70772
17.1499
15.9399
4.57306
19.5379
5.68261
6.37685
35.885
35.7126
5.17083
22.5278
15.285
14.245
3.48709
3.89213
3.91789
14.3571
15.1886
16.1475
19.0233
4.48192
5.18065
16.9668
18.256
4.44536
15.4901
3.53023
4.01755
15.2577
16.2689
3.95175
14.59
16.0175
4.41089
5.20748
18.2435
18.2776
4.43214
15.9448
7.82978
33.5754
6.19002
6.20994
7.80326
11.3791
13.7839
11.3262
13.8397
11.3977
13.7969
11.3574
13.851
14.6174
3.57091
11.9441
3.11302
12.2166
14.2316
3.56253
17.3676
16.3425
4.83992
3.8574
18.4686
15.9467
4.29468
15.5426
3.99103
15.628
4.39758
16.073
15.0939
3.95457
15.9027
3.28708
12.3869
3.47559
14.9418
12.9908
3.8157
16.3088
3.49909
3.85171
15.0149
3.89899
15.3121
16.0265
17.4546
22.2802
4.96398
5.02199
19.5537
18.4284
4.43111
16.8739
3.5721
4.37999
16.6159
18.2134
3.98694
15.7497
16.6969
4.26131
4.86255
16.8615
17.2657
4.31788
16.3853
17.0299
14.2684
15.1465
13.5155
8.68618
12.8428
17.3921
16.5284
15.9858
10.4013
7.88486
152.431
11.7401
12.5316
15.4128
12.5072
35.049
6.60828
7.87535
34.1093
8.31735
8.51042
6.71305
35.2102
35.0832
8.50321
15.3187
11.7507
12.23
8.4984
11.6743
7.79412
33.8245
17.3231
5.65822
5.79809
21.1183
20.9567
7.02836
33.5831
6.69397
17.8176
5.08885
18.1382
33.522
6.28723
142.925
10.6352
7.56025
43.8326
9.14928
9.27604
13.8936
9.47274
46.0296
35.6583
6.05922
9.45685
22.218
151.25
7.83281
38.9503
7.28812
5.80784
19.3798
19.9994
7.45234
37.4196
14.3926
10.9722
9.89521
185.287
18.9221
19.1288
18.9264
18.4145
18.5494
18.6339
18.7261
18.5098
18.7106
19.0847
18.805
18.8703
148.266
145.281
9.58547
10.65
8.90968
63.6456
30.1717
6.77793
191.001
7.43433
7.73049
5.22451
7.09769
11.0815
8.75901
9.30906
81.6138
26.1383
68.3712
25.2892
58.1564
62.9881
17.1894
16.4242
16.9615
18.0767
17.0317
17.2763
17.7454
18.3393
17.5192
16.213
16.4974
16.7338
9.89978
7.98023
8.04642
52.979
6.39186
17.1969
51.0116
6.24617
9.99057
8.31424
8.1367
6.12088
50.1574
17.0052
50.3661
6.16987
23.9715
20.1108
25.3179
218.793
78.6739
57.0363
63.836
20.91
40.0548
27.4661
6.69756
28.1251
5.30049
5.32507
6.66636
9.95171
12.5983
10.2312
12.1498
9.76088
11.8241
9.71626
11.8739
13.4591
10.9514
2.81732
3.14322
11.2076
3.23204
13.1446
14.5981
15.1601
3.57666
3.89332
14.9912
14.7388
3.53658
13.8063
2.78939
11.7897
3.23105
14.1628
11.4982
3.19908
14.2478
3.46601
3.93583
14.033
14.411
3.57423
13.8992
12.2859
10.3158
2.4394
2.86227
2.79936
9.89715
12.6031
13.0701
13.266
3.01157
3.31575
12.847
13.3424
3.04831
11.7441
2.37496
2.69504
8.3063
11.1589
2.75454
9.19646
13.2855
3.13043
3.32622
13.5434
13.4212
3.0706
13.445
6.92268
28.435
5.50743
5.495
6.94068
10.0607
12.3658
10.0996
12.2905
10.1164
12.3957
10.147
12.3532
10.7383
2.3934
7.47558
2.03105
7.60266
10.5296
2.41827
13.4258
13.7444
3.08258
2.63012
14.449
12.9024
2.80467
12.9599
2.69903
13.3988
2.96709
13.7442
12.6929
2.72551
11.0268
2.05694
7.54784
2.32806
10.703
7.73714
2.4679
11.1276
2.21806
2.75554
8.23397
2.62933
7.84084
11.8969
12.6935
13.1519
2.95154
3.17892
12.6606
13.2088
2.90894
10.7026
2.18503
2.62656
7.70788
10.7667
2.58768
7.60491
13.3207
3.13531
3.21632
15.7014
13.9569
2.95393
14.5875
33.6338
8.65545
6.47437
6.77592
32.5253
17.4898
15.6787
5.26996
4.39018
18.1749
15.1812
5.16776
34.1298
8.51049
6.84283
35.7151
6.69929
17.1748
5.01076
4.43603
14.4444
14.8696
5.22063
16.6441
12.7393
14.072
12.8287
17.4621
26.5252
14.4707
13.0929
15.5394
13.0853
16.7042
27.183
14.4616
15.7323
4.7455
5.91863
30.9823
4.66792
15.9563
30.4905
13.642
13.2633
3.59685
3.97485
13.3162
13.5961
3.97848
13.6961
4.0305
3.59355
13.5069
13.3762
3.974
13.8565
15.6767
5.92364
4.67046
30.3538
15.6315
4.67069
30.4024
13.3602
3.37665
12.9703
3.61341
13.3478
12.9434
3.31581
14.923
13.8213
3.22779
3.05596
14.726
13.7502
3.34899
13.6554
3.18163
13.3667
3.07983
13.7684
13.2095
3.166
14.9367
3.88352
13.278
3.1785
13.4144
15.3412
3.52904
12.8293
13.333
12.4426
13.5591
14.2469
12.5881
12.8287
13.1613
12.5081
13.2743
13.7631
12.383
15.8591
4.77479
5.22012
31.1799
4.2828
19.3188
29.182
13.3632
13.1382
3.446
3.88448
13.1576
13.4247
3.78773
14.1565
4.1476
3.46125
16.1912
13.9548
3.76075
16.9496
15.1261
5.51098
4.54508
29.606
15.3586
4.39687
28.3138
15.8094
15.4497
15.4217
14.9987
14.8272
15.0267
15.7725
15.3449
15.3811
15.1155
14.8237
15.0536
15.3384
15.2937
15.0891
14.3825
14.2417
14.5842
15.155
14.7116
14.9013
14.9756
14.4326
14.7732
16.3818
16.1093
16.1857
15.9476
15.6694
15.9016
16.2671
16.1505
16.1096
15.8332
15.7092
15.9292
15.5519
15.3005
15.761
17.1652
16.6526
16.3903
16.0596
16.9816
16.2479
15.3284
16.1292
15.851
17.6191
9.2415
167.104
17.8524
26.043
56.6582
5.21179
12.4034
10.4748
2.16222
2.63507
10.5965
12.2142
2.70514
12.8176
3.44771
10.9989
2.2252
10.7723
13.6983
2.90726
16.4166
15.929
45.5187
4.50267
16.078
47.2593
4.62871
14.5361
13.9402
14.405
15.5167
14.5972
14.7495
15.0431
15.6943
14.9402
13.7007
14.0338
14.1913
12.7545
12.0272
12.6038
13.6987
12.7238
12.9492
13.2813
13.8878
13.1197
11.8552
12.1874
12.4379
16.1133
45.0091
15.4451
4.41624
15.9059
45.3874
4.47875
12.3301
10.4032
2.59679
2.13314
12.1236
10.6306
2.62237
16.1842
15.4691
45.0779
4.45331
15.9597
45.4987
4.49694
12.248
2.54955
10.3589
2.1137
10.5434
12.0552
2.60194
13.8577
13.4158
13.9026
15.1701
14.4681
14.4308
14.3289
15.2348
14.4157
13.4411
13.9309
13.9135
5.28409
23.1276
4.62496
4.31973
5.80138
6.91963
9.06485
6.29723
9.54187
7.83449
10.7364
8.53709
10.1743
10.7387
7.27486
1.81386
2.04965
7.4807
2.17619
10.3971
12.7188
13.3498
2.4922
2.68112
12.5563
13.5894
2.46357
10.5734
1.8339
7.37829
2.21132
10.4575
7.43256
2.18689
13.0233
2.3108
2.70616
13.4329
14.0986
2.46775
12.5054
6.69633
5.57063
1.15852
1.47442
1.39558
5.40041
6.90212
9.35012
11.0265
1.55568
1.79316
9.19369
11.2136
1.59285
26.2167
26.6514
28.4248
27.1775
6.55307
1.12004
1.32007
5.19029
6.43926
1.35138
5.2846
9.55217
1.73933
1.84762
11.8233
11.4703
1.64291
9.83347
4.4
11.1188
3.40469
21.8281
3.46053
22.1831
4.32749
5.70955
8.67181
5.95559
8.35045
5.54312
7.96181
5.44902
8.0989
4.81394
1.0178
3.80821
0.87225
3.80594
4.81277
1.03265
23.7606
11.8226
23.4954
11.9473
5.80858
8.16092
1.41205
1.15887
8.29797
5.72361
1.19513
5.9645
1.22208
8.45501
1.47771
8.54852
5.94298
1.2462
24.1109
12.2444
12.1069
24.3582
4.70038
0.842332
3.67762
0.965852
4.63696
3.72444
0.993818
5.89991
1.10624
1.31479
4.68901
1.32541
4.77728
5.78757
8.67447
10.7347
1.50472
1.69478
8.94204
10.4038
1.50931
25.5348
24.848
6.0794
1.06757
1.2787
5.04423
6.25738
1.28481
4.909
8.37333
1.5382
1.74175
9.79352
10.0098
1.55294
8.20187
23.7742
24.1876
14.2045
3.3389
2.80536
12.7204
14.2712
3.08503
12.9574
13.4244
13.35
2.87744
2.77459
13.1414
13.6428
2.82719
13.0111
3.15435
12.4128
3.00074
12.7007
12.7247
2.94673
14.3362
2.66063
2.82862
13.5456
14.3628
2.91067
13.2992
10.5735
11.0554
10.9527
10.3456
10.0963
10.5324
10.4069
10.6784
10.8491
10.7421
10.2096
10.6391
11.8678
2.3695
2.28195
12.5027
2.19492
12.5513
11.6505
11.698
11.5158
1.92175
1.98584
11.7127
11.4962
2.0335
12.0317
2.24644
1.97976
12.4435
12.0113
2.09486
12.5742
11.4982
2.21538
2.07938
11.0179
11.2908
2.12991
11.2352
11.019
1.80403
10.3993
1.97996
10.9834
10.5812
1.88682
10.4416
9.7159
1.57306
1.63308
9.90562
10.2086
1.69514
10.8874
1.72397
10.0608
1.65357
10.2551
10.5774
1.79121
10.4707
1.84416
10.0064
1.70554
10.196
10.3264
1.77467
9.20165
9.20654
9.71182
10.1317
9.49991
9.90084
9.66305
10.4577
10.1787
9.0461
9.13932
9.48307
10.2106
1.99252
2.09712
9.72481
2.03704
9.95946
9.98052
10.8461
11.2165
1.80942
1.91227
10.8636
11.1995
1.9078
10.3943
1.93436
1.86104
10.1959
10.4321
1.96472
10.146
10.6538
2.06405
1.99847
10.7253
11.0007
1.98844
10.3924
14.025
2.84971
2.51747
13.0075
13.1939
2.7377
14.0508
14.3321
14.4132
2.86138
2.66459
14.4211
14.3425
2.73276
14.3741
3.01752
3.04415
14.9538
14.561
2.86466
14.5027
14.0511
2.46472
13.5439
2.59956
14.0886
13.3903
2.64093
14.351
1.65259
14.0846
2.1284
14.3022
14.2203
1.61855
13.8928
13.5129
1.56813
1.52959
13.6431
13.7952
1.58834
13.9644
1.67886
13.821
1.62922
13.7467
14.0114
1.63285
14.4227
2.27799
16.0043
1.65316
14.4883
14.7529
1.62169
10.3182
10.0208
10.5884
10.9333
10.2813
10.777
11.2512
11.4079
11.1877
9.97369
9.66428
10.2007
11.4874
11.2253
11.8413
13.3296
12.4474
12.6315
12.1299
13.1555
12.4527
11.4725
11.8652
12.054
8.50496
1.446
9.52704
1.40866
8.63516
9.35241
1.41742
7.50154
6.57905
1.46551
1.3975
6.71229
7.35693
1.4241
7.69902
1.47917
6.99973
1.50329
6.90293
7.80949
1.45714
8.29523
1.3669
8.93681
1.35878
8.13825
9.11497
1.38568
9.75933
8.98371
9.72649
10.5127
9.70414
9.77768
10.4984
11.0957
10.4241
8.13828
8.95243
8.99521
13.0109
12.7839
1.95795
1.44948
12.4518
13.714
1.53491
13.1636
13.2965
1.46965
1.33933
13.5799
12.93
1.41175
13.722
2.70686
17.1978
1.70492
14.3459
15.4373
1.65538
12.6733
1.39389
12.0998
1.35506
12.4975
12.237
1.40513
7.79907
8.42872
1.26715
1.28671
7.67459
8.55903
1.30331
7.15189
6.46193
1.37396
1.40022
7.23249
6.39078
1.35975
7.91366
1.28385
8.78084
1.33486
8.00136
8.68244
1.31918
7.04389
1.32554
6.17181
1.38133
6.28726
6.92397
1.34265
7.01741
5.98412
7.12772
9.68349
8.98112
8.94334
8.10158
8.99555
8.14873
6.9955
8.12005
8.07722
3.41498
9.34849
2.97218
12.1585
10.9805
2.91723
3.50729
4.32693
21.3609
5.35785
21.5732
4.30147
5.38583
4.381
5.59013
26.3315
22.3423
4.52163
5.44102
4.75939
3.65305
0.834746
0.946468
3.77551
0.986291
4.56339
23.5488
11.7294
23.3161
11.8362
5.81975
8.12474
1.13171
1.36316
5.69043
8.33201
1.15495
23.5821
11.6954
11.8951
22.5347
4.70705
0.815616
3.65661
0.943466
4.60932
3.73152
0.962102
5.894
1.136
1.40923
8.08824
8.48835
1.18824
5.6241
3.62077
3.10527
0.636492
0.714002
0.71799
3.10093
3.62841
4.61012
5.73181
0.871686
1.03918
4.63474
5.68798
0.869791
11.5159
9.8783
11.4904
9.90665
22.8767
22.918
11.4663
9.90027
9.87696
11.4937
3.65918
0.652169
0.736276
3.1423
3.67387
0.735831
3.13242
4.5593
0.844881
1.01424
5.65006
5.6208
0.848819
4.57536
3.41036
9.08715
2.97089
10.6835
10.5955
2.92901
3.46609
4.29109
21.195
5.3277
4.27677
21.2271
5.34519
4.36106
5.56833
21.642
21.412
4.44636
5.43959
2.79449
0.500913
2.65031
0.420547
2.53148
2.93806
0.454065
9.09895
10.2452
10.6679
8.95036
10.3035
21.3571
19.9887
10.7075
2.96002
3.82788
0.478175
0.338893
3.62035
3.12603
0.414492
3.23929
0.566651
4.3132
0.594874
4.0529
3.42651
0.512099
8.96227
8.96127
8.76288
9.22124
2.5968
0.34508
2.47774
0.306079
2.7285
2.37888
0.370206
3.31891
0.603317
0.660828
3.18899
0.670767
2.91879
3.64638
4.27924
5.53463
0.827852
0.949692
4.48447
5.25548
0.799466
10.96
9.70281
11.2356
9.561
21.4335
91.3632
21.5839
3.4358
0.60912
0.702333
3.06337
3.56802
0.681745
2.97318
4.0406
0.764119
0.923258
5.62175
4.85946
0.781048
4.44744
11.3174
11.7506
9.98528
13.3888
11.1462
1.88847
1.72615
10.7483
11.1113
1.80232
10.8511
10.523
9.68073
1.59007
1.51489
10.1718
9.96663
1.62925
10.552
1.76263
9.95214
1.65681
10.1542
10.3871
1.69842
10.9825
1.64148
1.5783
9.91402
10.271
1.71301
10.7009
7.83262
1.6658
7.7626
2.07737
9.11667
7.03776
1.90219
15.3342
77.1738
2.62769
2.68611
16.9508
2.2637
8.20299
1.66353
9.46857
2.14828
10.5374
7.49027
1.85343
15.0112
2.6595
2.93092
19.3088
2.39621
10.0861
1.39633
1.45478
10.2326
1.39657
10.2291
10.0528
9.76911
8.21964
1.21293
1.36964
8.11388
9.96896
1.35411
9.6037
1.31886
1.18354
8.06705
8.00168
1.3207
9.7103
10.3
1.49318
1.4551
10.7168
10.6012
1.43289
10.3123
9.22304
1.00591
10.2252
0.96948
10.0592
9.54752
0.911005
6.53431
4.8769
0.565164
0.516973
4.40897
5.59406
0.660522
7.3582
0.915282
5.34695
0.705538
5.02103
7.78658
0.824222
8.52399
0.790076
9.14167
0.583414
7.76526
9.6349
0.738356
6.89803
1.35073
8.76993
1.58237
8.78358
7.13239
1.42056
7.37315
18.755
2.02671
2.17366
8.8997
14.0076
1.75836
6.6457
1.42458
7.5009
1.72486
7.5695
6.80863
1.52733
7.49158
1.7683
15.3629
1.90562
13.8112
9.68441
1.59134
9.9646
1.31267
1.37361
10.5153
1.31213
10.0895
10.1828
9.25896
7.92442
1.10686
1.28848
7.51939
9.62106
1.24088
8.96063
1.20716
1.07773
6.43036
7.03675
1.22302
8.69437
9.95015
1.37527
1.36492
10.2818
10.221
1.31859
10.0268
12.3544
1.75921
1.76717
12.3694
12.3027
1.76123
12.4232
12.3406
12.3155
1.76081
1.75231
12.3717
12.2826
1.75451
12.2928
1.75079
12.1851
1.75859
12.2323
12.2444
1.75219
12.4036
1.76637
1.75917
12.5043
12.4349
1.76225
12.4749
10.8418
1.35181
11.1247
1.24455
11.0342
10.9225
1.27707
10.5116
10.1751
1.22746
1.18042
10.4444
10.2524
1.23182
10.7502
1.37425
10.8404
1.30419
10.6785
10.9287
1.29812
10.5972
1.20176
10.4331
1.1749
10.3458
10.6767
1.22324
12.1083
1.51199
12.1641
1.45667
1.47781
12.2522
12.0094
12.006
11.8063
1.41397
1.36847
11.9919
11.8285
1.4328
12.1652
1.51508
1.4652
12.2989
12.1575
1.48041
12.3043
11.9443
1.40903
1.36689
11.6432
11.7639
1.43077
11.8349
12.0855
1.30779
1.34442
11.5715
11.7044
1.32619
11.9547
12.6189
13.08
1.37273
1.32573
12.9663
12.7272
1.31253
12.4952
1.28855
1.3673
12.7148
12.8435
1.30693
12.3673
12.208
1.34936
11.9276
1.34474
12.3129
11.8263
1.33196
5.31842
1.27378
6.00872
1.19108
5.37789
5.9433
1.26054
4.64197
4.03489
1.32997
1.27997
4.0515
4.62552
1.28531
4.72162
1.33162
4.17764
1.36178
4.12968
4.77237
1.31483
5.23048
1.16815
5.82515
1.23302
5.20821
5.85078
1.23556
10.9361
1.26204
10.62
1.2788
1.24881
11.0119
10.5418
11.2657
11.5762
1.25635
1.19727
11.6191
11.2226
1.20463
11.3561
1.23551
1.2736
11.7825
11.7079
1.22148
11.4305
10.8454
1.26182
1.22371
10.4071
10.805
1.23156
10.4477
9.29697
9.02222
1.10491
1.14286
8.92521
9.39591
1.12088
9.61501
9.90249
1.13073
1.08872
9.98356
9.5324
1.09525
9.71223
1.07847
10.1694
1.12615
10.0798
9.80383
1.09235
9.19878
1.13951
8.75806
1.11773
9.11983
8.8318
1.12454
5.43283
5.79124
1.29541
1.29609
5.20468
6.02437
1.36576
5.02395
4.20787
1.39297
1.55294
4.79571
4.44223
1.48571
5.58406
1.33854
5.97243
1.33562
5.36706
6.17285
1.42102
4.85991
1.34366
4.04521
1.47571
4.27061
4.63064
1.42002
10.8093
10.263
1.26048
1.32564
1.2869
10.6596
10.4261
11.2763
11.5784
1.29983
1.22661
11.6095
11.2369
1.25743
11.207
1.23043
1.29829
11.4124
11.5428
1.25484
11.0674
10.8832
1.32976
1.25638
10.4423
10.8321
1.29018
10.5065
2.67574
7.9511
2.42815
8.76809
9.02403
2.36688
2.79208
3.62232
10.6075
74.2159
4.07752
17.3554
3.19134
4.62462
3.29558
4.37774
17.2341
17.3489
3.52382
4.00223
2.26401
2.04124
0.235267
0.234587
2.09448
0.248684
2.20319
8.42128
8.95755
8.94721
8.52209
2.58073
3.17245
0.29019
0.316695
2.67217
3.03769
0.280567
8.38866
9.46301
9.734
8.17097
8.19855
8.16824
8.33535
8.01682
2.31326
0.240945
2.1931
0.263169
2.38227
2.13447
0.255308
2.51616
0.256362
0.306827
2.85724
2.94751
0.272455
2.44395
1.78062
1.75895
0.21783
0.233714
0.22492
1.71909
1.82836
1.82865
2.15494
0.216478
0.239622
1.9842
1.97443
0.225238
7.74579
8.99884
8.93794
7.98735
7.19843
7.36486
7.2221
7.29722
7.41932
7.72335
7.66778
7.49396
1.74154
0.208454
0.206689
1.81929
1.88157
0.21452
1.69587
1.89096
0.247096
0.253945
2.14156
2.06524
0.237241
1.95124
2.43205
7.36728
2.18548
7.43813
7.54554
2.21102
2.40077
2.92141
9.36923
3.82267
18.2667
3.01252
8.99535
3.69551
2.86218
3.56552
8.67872
17.8716
8.8082
2.82187
3.61858
1.40346
0.141897
1.36647
0.14174
1.38264
1.3933
0.143895
6.84066
7.15529
6.97549
7.05144
6.58239
6.38325
6.33277
6.6307
1.48548
1.50078
0.194369
0.240005
1.51062
1.48658
0.189986
1.42955
0.145012
1.47221
0.148984
1.46732
1.42637
0.146353
6.82652
7.09655
7.04792
6.87453
1.46916
0.181522
1.47484
0.234467
1.47837
1.45552
0.18553
1.55341
0.142459
0.163101
1.52455
0.14434
1.50817
1.5697
1.67344
1.87124
0.186175
0.173549
1.74363
1.79324
0.166212
7.47123
8.12079
7.8985
7.71881
7.00714
6.75555
6.80001
6.95952
1.60195
0.156976
0.178691
1.62571
1.67006
0.160307
1.55579
1.62196
0.168201
0.153347
1.74833
1.73396
0.148358
1.63682
7.27004
7.45462
7.52672
7.21038
6.81344
0.55512
0.472372
8.10492
8.31262
0.502905
6.62173
4.79888
4.063
0.456376
0.374645
5.01322
3.86818
0.443887
18.9243
19.4772
7.01544
0.56541
8.7693
0.523955
7.27185
8.53652
0.514301
4.64977
0.405538
0.363237
3.62392
3.74215
0.432101
4.50687
4.66049
0.343009
0.382157
5.12278
4.71837
5.06679
0.329494
4.15828
3.67486
0.213678
0.251698
4.10189
3.72713
0.257096
4.23735
0.287947
3.86303
0.231661
3.80301
4.29997
0.277688
4.58035
0.354796
4.93899
0.294331
4.52187
4.99313
0.303619
3.69048
0.418144
0.463703
5.68896
0.396611
3.89161
5.40452
2.74867
2.45109
0.268289
0.291182
2.24403
2.99037
0.309912
15.7972
8.39594
8.15452
16.7438
72.0039
2.99289
0.351836
0.286726
2.49361
2.38825
0.334117
3.14848
3.32766
0.427709
0.34342
4.32535
3.81495
0.365922
4.90878
1.98473
0.187214
2.55552
0.210909
2.49947
2.01994
0.183863
6.85094
13.3097
6.98042
13.3676
6.03794
6.12691
6.07094
6.11126
1.72086
1.54905
0.203959
0.279488
1.58164
1.6663
0.217269
1.70526
0.166029
1.56996
0.155381
1.55646
1.72692
0.164629
6.88059
14.1302
13.8234
6.99126
1.98227
0.280097
2.28652
0.317878
1.88443
2.46651
0.243458
4.25
0.198701
0.175051
4.73648
4.33521
4.66405
0.152818
3.94615
3.59132
0.151216
0.211911
4.01595
3.52472
0.184104
3.83936
0.168772
3.51775
0.104596
3.41721
3.93409
0.129035
4.35626
0.246575
4.84805
0.248527
4.43075
4.77081
0.215812
2.8714
0.243985
0.245202
3.55863
0.212229
2.87487
3.55545
2.34721
2.0873
0.189189
0.243537
1.99076
2.47787
0.212114
7.77145
6.75493
6.80109
7.71724
16.6221
20.1621
2.25245
0.209246
0.165148
1.93005
1.91792
0.182768
2.26029
2.9956
0.29198
0.287583
3.88815
3.17327
0.249412
3.69765
15.6873
15.5796
4.43495
0.75066
0.910396
4.99151
4.11648
0.781408
5.36954
11.6698
8.8233
9.56891
10.2923
4.11658
3.19556
0.629744
0.735537
3.83951
3.44672
0.70784
78.6166
3.55204
0.649563
2.93031
0.604247
3.06813
3.3435
0.672854
5.15619
0.948107
0.858205
6.64804
4.59416
0.822662
5.90904
24.9011
20.2322
8.54878
1.21657
8.87331
1.18816
8.75538
8.67206
1.19819
8.27148
8.22541
1.06358
1.06331
8.43185
8.03129
1.119
8.49564
1.16172
8.79141
1.07917
8.62339
8.69702
1.15173
8.32024
1.14985
8.2109
1.10187
8.08032
8.44621
1.16028
9.24339
1.26887
9.35281
1.23039
1.23165
9.42269
9.17208
9.13205
9.02156
1.20509
1.12726
9.24563
8.9032
1.18796
9.33682
1.27408
1.25342
9.61495
9.44383
1.23653
9.51416
9.03632
1.18239
1.12295
8.73606
8.80761
1.18335
8.96336
8.82473
1.06366
1.0823
8.39464
8.4746
1.08398
8.74777
9.31589
9.77225
1.10508
1.08147
9.6891
9.4009
1.07049
9.22546
1.03707
1.09047
9.5234
9.60036
1.05612
9.14946
8.9127
1.09964
8.6374
1.11048
8.99377
8.55985
1.09909
3.37766
1.16512
3.83344
1.12093
3.35219
3.8626
1.17654
3.07489
2.38986
1.39993
1.30214
2.95159
2.50762
1.34908
2.87391
1.2142
2.299
1.25857
2.31508
2.85274
1.22564
3.57477
1.21392
3.93066
1.24334
3.45263
4.04975
1.28383
8.2739
1.02754
7.89098
1.03307
1.02454
8.27501
7.89645
8.69924
8.95722
1.11007
1.02804
9.02815
8.62691
1.0364
8.67737
1.02734
1.09818
9.03198
9.0192
1.02234
8.68364
8.30668
1.05675
1.03363
7.86312
8.23086
1.04297
7.9422
7.0449
6.80477
0.945041
0.960132
6.65418
7.19207
0.949197
7.40896
8.00392
0.99067
0.91845
7.7745
7.6758
0.918997
7.46153
0.942463
7.96373
1.02557
7.82668
7.60486
0.949836
6.9912
0.935814
6.94357
0.946783
7.29542
6.59788
0.921624
3.09234
1.07422
3.50722
1.03696
3.05207
3.55176
1.08693
2.66835
2.21846
1.1826
1.19609
2.76004
2.14077
1.15204
2.61896
1.11697
2.07152
1.15982
2.10029
2.58416
1.13063
3.14841
1.05499
3.72458
1.14833
3.25064
3.61373
1.10668
7.8358
7.38783
0.96682
0.978769
0.970128
7.76504
7.45744
8.33993
8.80047
1.05638
0.996267
8.67969
8.464
0.975993
8.24211
0.967444
1.05074
8.51077
8.58351
0.970021
8.16914
7.93498
0.986065
0.998849
7.68574
8.06144
0.976919
7.55777
2.07845
6.1491
1.89317
6.32829
6.3036
1.89549
2.07752
2.42714
7.19394
15.0032
2.96903
7.32905
2.36568
3.06619
2.44287
3.09619
7.43628
15.1949
7.3923
2.44609
3.09022
1.1162
1.11223
0.109155
0.106255
1.11511
0.11113
1.10975
6.49081
7.40628
7.32196
6.68228
1.17099
1.4228
0.156083
0.117377
1.39877
1.18017
0.116011
5.96313
5.90954
5.70909
6.15591
6.20059
6.57295
6.41044
6.38116
1.16438
0.112909
1.36321
0.153011
1.37964
1.1605
0.114573
1.11894
0.107531
0.112655
1.09954
1.12416
0.112667
1.10449
1.0768
1.11001
0.114758
0.127874
0.117463
1.07134
1.11556
1.04088
1.09681
0.104126
0.107029
1.09397
1.03733
0.107903
6.62822
7.22923
7.11521
6.80811
6.26262
6.07087
6.03105
6.28879
6.47285
6.66181
6.66017
6.48711
1.04161
0.104458
0.102828
1.10477
1.1012
0.106569
1.04178
1.08187
0.130644
0.118966
1.12441
1.08463
0.119513
1.12073
1.9187
6.48902
1.76281
6.14624
6.49226
1.79229
1.88552
2.41358
7.26007
2.71412
13.9641
2.21566
8.58164
2.93556
2.14884
2.45475
6.38021
8.4083
6.84997
2.1012
2.5312
5.82732
5.91073
5.75178
6.00231
5.77759
5.8128
5.58774
5.98433
0.822202
0.0781499
0.773304
0.0873766
0.792841
0.792817
0.0847154
5.98022
6.35008
6.1639
6.17371
1.00116
1.00247
0.0916366
0.0948294
1.01526
0.995211
0.0930174
6.55522
6.96309
6.76807
6.77194
6.29343
6.03643
6.08759
6.24741
1.02595
0.104809
0.106107
1.01313
1.02427
0.103418
1.01822
6.51667
6.69593
6.73154
6.47601
1.33598
0.143911
0.119891
1.42767
1.5507
0.129766
1.25677
5.6863
12.8881
7.9633
6.79123
1.29538
1.48387
0.174448
0.120992
1.60298
1.21612
0.125913
5.16651
5.61827
5.41733
5.3453
1.43514
0.152944
2.20072
0.193251
1.81494
1.6891
0.136983
1.21784
0.111953
0.115861
1.10887
1.14928
0.120096
1.16278
5.14302
5.86009
5.83975
5.27118
3.67397
0.311193
0.282173
4.06494
3.77757
3.97435
0.265941
3.03151
2.52263
0.204848
0.188595
2.84545
2.70293
0.206257
3.33225
0.285878
3.11853
0.247735
2.99565
3.45371
0.246902
3.37805
0.233801
3.49845
0.200598
3.1855
3.68753
0.220334
1.1656
0.139638
0.131204
1.29795
0.125793
1.21612
1.23861
1.04819
1.10176
0.106451
0.103628
1.03574
1.12073
0.107855
5.47788
5.82289
5.76743
5.54646
5.35512
6.24826
6.35083
5.11831
1.11351
0.13353
0.118945
1.13213
1.09088
0.121206
1.15744
1.08803
0.114973
0.106504
1.23813
1.17064
0.111149
1.14462
5.19003
5.0804
5.27488
4.97151
0.746755
0.0928519
0.0844061
0.751363
0.752124
0.743073
0.0906581
4.66358
4.3732
4.63341
4.39566
5.13222
5.62285
5.38285
5.38319
0.72179
0.706131
0.0784326
0.0832527
0.750252
0.67549
0.0855118
0.717424
0.0884081
0.659621
0.0797428
0.665897
0.717394
0.0872298
0.746137
0.0824712
0.755865
0.0883162
0.764015
0.740136
0.0889131
4.86865
4.87091
4.60376
5.12905
3.42906
0.260213
0.273367
3.62077
3.30322
3.73553
0.270172
2.70611
2.37805
0.180556
0.175264
2.6959
2.38469
0.182008
3.111
0.263931
2.67869
0.287838
2.81178
2.98479
0.27724
3.04762
0.201673
3.35177
0.183246
3.03391
3.37202
0.187048
1.06867
0.11288
0.117009
1.08487
0.113172
1.04158
1.11995
0.999299
0.997083
0.0960738
0.0948128
0.992723
1.00256
0.0963534
5.58112
5.79659
5.85342
5.51647
5.30108
5.27857
5.54491
5.02914
1.03573
0.109772
0.108428
1.01065
1.02581
0.109583
1.01564
1.0298
0.100993
0.0970778
1.08172
1.03466
0.0986111
1.07735
5.30585
4.95597
5.23092
5.04478
1.74163
0.363186
0.374614
1.66649
1.67878
0.363677
1.73825
8.38159
8.18472
8.45087
8.07745
8.05488
7.81244
7.93967
7.94452
1.70904
0.36628
0.350251
1.69744
1.7069
0.355973
1.69677
8.30699
7.85953
7.95669
8.26793
1.36499
0.335479
1.31384
0.361712
1.30077
1.38677
0.353551
5.18278
6.07094
5.81089
5.44505
6.85247
11.2617
10.9018
5.97463
1.29464
1.74998
0.476844
0.421959
1.38929
1.65562
0.386016
1.24868
0.343152
1.54186
0.426928
1.58933
1.23178
0.358407
6.17973
5.49696
6.1346
5.40381
1.48322
0.400541
1.77701
0.429831
1.6992
1.52434
0.386002
3.39634
0.463235
2.30974
0.50793
0.53109
2.72864
2.84895
4.32847
5.81266
0.66903
0.702897
4.86537
5.34916
0.631735
15.212
14.5965
3.05673
0.480197
0.586426
2.89592
3.47291
0.553009
2.59205
62.5696
8.21571
14.4619
17.8418
3.77106
0.584177
0.678299
4.6234
4.93042
0.603095
3.38055
6.51105
0.835295
0.867408
5.95335
6.13621
0.839687
6.32711
7.14815
7.73864
0.875945
0.837409
7.498
7.39067
0.824101
6.9072
0.824878
0.878395
7.06986
7.25711
0.825115
6.72088
6.7493
0.872998
6.63636
0.861799
6.9952
6.38017
0.843998
1.28598
1.02314
1.79556
0.953873
1.37794
1.68225
0.959155
12.4041
3.74303
3.65549
13.3148
66.0007
3.81615
0.654712
0.237906
0.606278
2.59724
0.831477
0.851535
4.37758
1.05001
0.953618
0.261273
0.913835
4.66296
0.983256
1.16487
0.878254
2.06698
1.89943
10.952
1.58269
0.84834
5.41785
0.78491
5.17988
0.804207
0.77643
5.54197
5.05397
5.75735
6.28635
0.748598
0.871017
6.05996
6.03624
0.749491
5.78886
0.766016
0.769929
6.2336
6.10145
0.757967
5.91459
5.38602
0.797491
0.915346
5.40818
5.71985
0.771395
5.02242
2.54938
0.664602
3.42504
0.667381
2.65952
3.29744
0.611593
52.4781
112.742
45.875
1.69249
1.86952
0.770392
0.472655
1.56827
1.55779
0.523942
1.91856
0.582382
5.68749
0.896919
13.1179
1.80915
0.562871
2.13778
0.599849
2.05592
0.489564
2.04348
2.78754
0.551159
4.87962
1.06968
1.41987
1.06406
4.76577
1.455
1.08948
3.96859
2.67074
2.72583
3.88291
14.7371
18.6772
1.08305
0.466728
0.148996
0.342978
1.26048
0.407095
0.296924
1.0334
0.275413
0.372788
0.140826
0.38424
1.00765
0.281639
13.9232
13.5851
5.11719
1.09999
1.67673
1.25632
6.0242
1.51583
1.12568
5.10811
4.70032
0.795299
0.839437
0.8028
5.01941
4.78026
5.55987
6.02474
0.749501
0.818753
5.72681
5.79654
0.787107
5.40033
0.762104
0.730381
5.3026
5.4907
0.770712
5.28529
5.24595
0.855528
0.85278
5.14746
5.47576
0.818543
4.9111
1.80389
2.28285
3.30214
1.01163
1.64207
1.29486
0.7909
21.6421
47.0484
30.6191
8.58437
107.206
16.6394
11.1463
84.9028
274.822
36.6745
29.0768
46.2175
249.693
15.976
53.4913
21.4949
13.0984
16.631
104.208
43.7474
9.28089
43.4263
3.99352
5.88524
5.47189
2.79486
2.27161
1.31565
2.08863
3.33982
1.97978
3.17383
1.20367
1.33405
1.96366
0.879031
8.41912
45.7632
7.27097
11.9278
12.633
23.1426
5.29666
13.891
108.181
18.0807
24.8383
25.1789
47.5277
10.1638
136.333
350.235
34.3593
814.054
50.8037
101.346
445.817
564.077
46.7364
30.9375
7.53814
108.386
9.67764
32.0325
133.891
181.236
477.513
86.0303
190.891
66.3664
360.044
1187.32
163.924
283.23
274.509
39.2251
16.471
26.5236
53.6888
132.506
34.9403
143.41
34.3041
248.873
58.3657
303.966
47.7818
60.9931
52.8314
13.8995
32.0134
77.2014
18.0416
43.0734
170.272
40.7405
37.4298
8.27639
22.7556
19.159
67.8308
13.4156
140.676
36.5195
45.4332
62.6542
75.273
52.2927
45.2652
358.366
25.1605
389.936
315.462
16.5409
21.8605
12.1614
81.8396
9.19662
21.7161
42.7968
18.153
36.4738
51.1128
18.1786
29.5827
81.5493
10.4399
16.8222
5.97701
25.0711
9.67806
6.50974
37.151
33.6386
127.068
58.3805
39.8285
247.949
341.761
33.8664
119.756
120.389
348.155
76.6819
32.6816
35.1334
64.6586
228.614
81.6717
261.542
20.3872
45.2331
35.7118
295.39
273.367
129.573
39.3698
94.8466
128.27
93.6281
87.5596
38.0931
122.452
124.42
89.5784
25.0002
16.3753
54.7198
14.9847
27.4619
22.4019
10.9829
41.3563
5.80809
42.2304
6.23111
20.7893
69.5199
57.4787
89.8014
97.3673
32.7555
55.2622
12.9431
124.25
16.6123
406.864
25.5663
98.9312
71.8691
32.2422
100.68
72.3404
74.4834
104.494
32.6753
102.636
73.5213
345.115
30.3175
110.234
44.0017
59.7291
31.5532
13.0026
16.1765
50.4667
20.5872
7.66071
14.1301
4.3062
24.3949
7.26493
12.3341
46.6408
41.7857
28.696
11.475
6.79533
4.41481
7.92868
22.9629
14.5522
88.1489
18.072
50.4889
169.106
26.4893
55.6956
454.131
58.1976
10.6479
25.4008
41.4463
18.0637
34.4909
132.056
377.726
59.5514
76.5591
185.893
308.279
42.9199
41.8112
32.9769
290.237
74.0326
27.3479
58.197
75.0028
57.8317
60.0516
27.5586
78.5482
77.1675
59.347
21.6912
40.2459
10.5817
20.9347
37.6543
73.0636
239.068
35.2814
13.3376
19.0741
27.0969
39.0591
98.0484
71.3229
31.7362
96.4506
70.7492
68.9674
93.3292
31.3338
94.8362
69.6628
65.2036
57.511
34.3226
10.3254
18.9759
5.11464
37.8254
8.8904
16.5464
53.5005
19.6937
16.8094
53.9248
53.616
36.6112
18.658
5.43858
11.045
9.80899
17.1483
40.9282
87.8856
84.3696
244.136
240.65
99.6408
57.5555
39.0937
19.3306
98.4823
58.2393
39.4161
81.544
82.4699
101.678
40.8053
59.4587
19.5605
58.772
103.785
39.9957
14.6212
60.882
27.8066
181.341
16.1955
51.1654
21.5926
18.6813
62.9392
113.293
30.13
36.6719
67.5803
19.598
127.77
131.895
319.436
50.3336
96.0203
16.9048
845.89
29.8225
76.5045
155.958
140.006
282.006
70.1078
16.09
26.874
27.6421
72.0486
271.15
41.4378
117.081
100.547
117.547
100.911
41.2801
37.5451
102.13
90.4695
100.451
89.8041
37.8322
27.3872
64.314
34.0392
63.5894
33.4947
27.6483
35.1736
82.6891
88.2033
83.3597
89.2394
34.9188
10.6757
6.64781
5.36121
20.6478
4.97122
11.996
17.8108
18.1908
32.0823
12.9313
232.219
10.6062
98.7719
23.9116
24.5764
47.8858
20.2198
65.8193
29.884
109.504
35.5344
86.2982
73.1822
21.6042
11.7628
228.044
13.7269
42.6973
29.1541
23.8278
12.0715
5.76009
39.9517
17.3008
9.30888
53.7732
73.9969
92.2581
27.3209
24.3925
231.933
16.9178
25.0324
6.55541
5.14754
11.0298
15.1833
8.01263
17.1833
84.1974
113.083
423.107
47.0812
28.8567
15.1624
91.399
16.3212
55.1979
10.4626
44.7747
55.4416
42.1533
384.979
40.1221
100.858
51.6133
179.097
93.0119
18.3563
26.4127
469.111
30.5854
162.763
495.781
91.7125
147.144
185.525
78.8756
38.026
60.7005
1450.64
527.516
140.413
60.5912
80.5438
100.49
48.5588
166.996
67.2799
422.777
37.5413
339.101
46.8457
57.0824
1224.68
75.7593
61.2131
29.2452
74.3612
62.3195
85.5273
34.2602
75.3518
76.2747
85.0117
23.133
40.2733
12.1579
26.1011
43.803
72.3253
12.8701
30.3384
27.8874
52.4917
76.1721
165.866
46.8526
77.0766
166.751
168.328
78.121
46.1145
76.6791
165.315
32.3503
32.3026
15.5177
12.641
55.2058
46.9273
15.7576
13.1032
62.9178
18.6379
21.7881
137.559
42.5003
26.1704
20.4406
72.3431
17.613
74.17
23.0194
159.815
26.158
15.3475
84.4787
18.465
59.7327
22.5941
118.145
25.6806
19.5669
28.2389
135.241
21.1828
138.591
21.3736
140.33
140.659
74.9571
163.141
45.7615
74.0241
162.049
158.831
72.4289
45.4644
73.3223
160.265
55.2523
193.433
3.16811
1.4534
1.94041
1.18762
2.00188
0.853221
0.836879
3.2337
1.26959
2.08035
1.19875
2.01896
0.856636
0.876339
166.358
67.0859
50.4033
173.079
48.5893
141.625
140.163
26.2437
37.0606
13.1448
12.5623
25.7187
37.602
13.3965
157.254
51.9192
44.4011
152.116
45.7177
27.1247
14.1286
38.5226
12.7639
38.1464
27.8071
13.7765
164.913
26.5722
27.012
72.0135
46.7474
29.7637
15.7362
72.4244
46.463
29.6276
171.513
173.736
166.245
27.4784
27.2585
71.2878
29.124
15.6609
45.8486
46.265
29.4348
70.4182
26.1336
29.8303
58.3093
30.2618
58.8715
25.9343
24.418
26.7179
53.2828
26.4243
52.8833
24.5601
23.9758
49.786
22.6946
49.4736
22.5373
24.0903
23.7296
50.3351
24.8508
50.6491
25.1508
23.6074
92.2651
26.5187
82.8124
30.7622
12.3849
21.9277
77.0364
18.1441
65.2244
103.44
54.5782
36.9025
40.9449
10.1399
28.6752
12.3591
23.9714
14.6229
33.8771
135.683
31.5304
32.814
341.13
23.6306
54.2212
11.1554
37.7623
19.4808
75.2332
31.8571
15.85
330.255
85.3126
17.7722
37.0746
151.096
416.348
22.965
59.3667
42.3198
84.5035
67.1661
44.396
31.8451
152.866
16.4906
91.8393
23.483
412.095
20.795
25.3694
25.2791
132.524
27.706
19.7274
14.8653
7.4385
23.6587
8.74706
20.7051
16.0107
7.20733
270.581
41.2642
20.9336
22.8591
37.0994
17.0608
5.57297
7.83072
21.2287
5.81751
15.3311
23.7892
54.7514
31.9303
25.8444
71.6361
22.7637
34.9883
6.99316
9.41314
6.59501
19.3932
27.387
105.828
90.7442
22.8409
36.8705
19.5517
57.6492
8.47414
21.1843
10.3483
24.2409
14.0312
40.9037
310.337
29.1405
16.4284
24.135
110.282
360.61
129.875
20.0493
129.605
19.8691
125.751
127.541
118.316
18.3348
118.436
114.307
17.879
113.494
175.899
507.179
62.7591
447.46
161.937
68.7429
46.89
102.069
190.526
126.886
79.567
647.662
12.6346
26.3244
28.3353
62.3589
19.4423
42.0695
87.7499
46.5172
53.6221
77.0476
26.3695
521.311
29.4499
106.932
20.9677
189.435
383.743
161.033
37.3943
29.5774
11.5548
13.8566
27.3629
45.1919
15.6136
42.8349
17.4702
37.2949
11.3491
30.3789
47.8978
15.1599
66.3971
32.0829
18.2905
94.5153
56.281
22.0651
137.165
105.508
17.5981
107.395
18.1006
111.618
109.813
117.4
18.069
116.395
114.916
18.0059
115.712
24.9564
37.1375
151.992
11.1921
125.929
29.9181
12.6838
620.528
85.6404
62.1023
47.7517
9.90987
11.7431
5.54383
44.0553
10.881
12.1578
24.5255
36.5321
113.633
11.9501
23.6242
118.467
12.205
64.769
7.91927
25.3683
7.63674
19.6841
12.8956
14.1472
117.703
22.7111
35.6087
36.286
115.403
21.3459
32.4488
11.3661
10.8463
21.5267
32.2887
11.2807
109.076
110.084
120.453
24.1708
37.5261
122.229
37.0252
21.0858
11.0796
10.7782
31.927
32.1325
11.1768
20.8446
21.7973
19.6924
43.5435
19.9523
44.0168
21.6434
19.5818
17.7581
38.6106
17.6367
37.8207
19.7837
12.4048
35.9646
7.99942
4.8573
35.8841
12.3339
4.97927
11.3473
32.823
7.4159
4.49983
33.2353
11.1986
4.52509
21.4801
48.9123
17.1089
48.0842
16.1002
21.8872
11.5786
4.68811
7.62204
34.3355
33.8883
4.65303
11.7451
23.3629
52.8939
19.118
53.2845
19.2815
23.2339
12.1165
35.5929
7.79401
4.79704
35.3932
12.1928
4.77959
12.109
4.78693
35.138
7.7863
35.2762
12.0698
4.78369
35.3066
26.9276
428.469
43.5998
175.342
105.301
78.9234
32.9692
55.9651
51.4886
40.7344
78.995
33.2764
97.964
25.8813
16.9207
275.375
21.7957
30.1267
12.2555
5.21875
6.01106
25.3155
4.61037
15.4996
18.7049
11.272
13.6683
3.91947
5.55364
4.27136
9.40441
16.931
22.4128
103.557
13.5486
16.1758
18.4097
46.6961
316.117
63.4839
119.2
11.0485
18.3448
48.143
94.4308
16.2027
12.3003
40.6962
7.45394
5.21966
16.0362
18.8458
5.50688
7.24128
22.2038
7.77017
27.6063
6.17172
17.0098
5.69325
8.48134
23.4478
10.5295
87.9907
16.4086
33.1032
10.6341
15.1841
38.2257
1.22155
0.271987
1.62637
0.210533
0.23992
1.15119
0.198332
30.7995
158.929
19.5875
25.3009
127.464
52.619
27.6301
33.9485
430.617
68.5878
20.9254
21.4147
30.437
100.051
146.12
3.71927
9.96627
4.70827
14.7202
10.0366
3.83092
4.63673
7.86004
19.5282
39.5127
10.8379
10.9282
23.1926
7.53809
6.25167
4.93527
12.8304
24.7961
4.6985
6.6515
19.0016
5.76507
14.4654
11.5771
4.08163
4.37255
16.8234
5.41393
8.66385
45.066
13.1917
29.1308
9.20295
12.304
26.1049
124.978
109.186
37.7456
13.4344
11.7686
59.3965
10.6207
54.1479
40.7407
28.8784
7.49315
6.24659
17.1664
8.08693
23.3456
20.1107
23.9097
19.8642
8.804
6.34174
8.1775
25.8032
18.5233
378.497
68.0988
146.804
88.8328
17.3556
39.7887
14.7482
68.9867
13.1352
63.7952
20.5989
22.5618
77.343
170.925
24.2016
90.656
18.3293
31.1288
22.8924
42.7123
130.169
209.739
95.8779
29.622
30.5594
907.476
36.7608
23.8048
362.554
99.9975
132.666
258.101
96.881
14.1382
127.67
1212.74
33.3402
69.125
82.4447
12.0872
10.6105
7.98654
11.2603
29.9458
27.4217
40.9675
34.5119
25.818
28.3482
7.09652
11.0455
30.4703
23.2955
8.93002
38.0367
66.8644
33.5037
41.4119
55.1977
28.402
21.6718
7.20086
11.1941
19.2246
30.6953
9.06493
483.369
43.4511
14.8836
15.1582
72.1381
41.8982
11.7067
51.7469
163.349
130.098
23.7994
26.6927
15.3173
39.6479
11.4414
49.475
52.3122
18.428
18.3839
22.4927
63.8515
42.5016
34.3272
104.446
17.1017
101.819
16.8653
92.6884
98.1281
81.448
16.1665
81.9378
83.0308
16.2346
82.4674
5.9955
19.2673
4.81094
29.0186
4.8962
26.1282
5.8895
9.09849
57.4293
16.2977
63.8497
12.6789
41.7234
11.4347
7.47769
8.70672
41.9469
53.0987
33.3688
7.26562
9.17208
29.4315
770.231
20.3743
859.541
87.5767
100.443
95.0487
9.50106
51.6505
6.50559
13.2552
17.412
10.631
6.88746
11.7796
10.9331
136.514
26.6041
38.534
35.1214
8.28999
78.9282
128.369
170.095
580.57
72.5016
14.7559
73.0157
14.7819
74.2489
73.7562
7.92015
21.2455
11.8983
3.12099
3.94102
7.27108
3.42423
5.57576
19.5578
11.0791
9.04582
81.1895
15.8818
80.6805
79.9299
15.8707
80.4576
157.647
17.143
105.501
30.488
75.4868
22.4216
449.679
536.004
25.5274
36.8867
34.5594
189.85
32.8777
42.8986
27.9139
364.573
7.96696
9.59616
20.332
9.2715
19.6855
8.15714
9.2756
77.4525
17.1955
17.08
78.3064
7.78811
9.41977
18.696
9.07433
7.64074
19.2019
9.10569
16.2737
19.6136
33.5789
8.39625
8.85178
53.5486
15.3735
28.68
7.7332
9.34301
4.64905
29.0008
7.67978
9.19863
87.7731
18.4489
18.6133
86.57
17.2266
25.2275
9.56355
80.9175
17.7351
9.297
74.8403
28.2863
8.81919
4.61856
7.56959
7.62355
9.01393
27.9092
10.7707
32.3792
4.40905
7.15081
11.0165
31.7764
4.36359
17.911
55.9069
30.6664
11.3974
39.1768
14.929
10.4506
4.2568
7.05006
29.0639
30.8484
4.32403
9.69672
9.11647
94.0289
30.8707
17.5587
30.7065
17.4781
9.14769
8.38552
26.0138
6.47893
3.87165
26.0675
8.36743
3.87685
8.37484
3.87521
26.2358
6.48119
26.1361
8.39784
3.86994
7.86015
23.9821
6.08526
3.70498
24.0926
7.80872
3.70943
8.58625
82.976
15.9782
28.206
15.9084
28.0895
8.62244
7.91891
3.70226
6.08372
24.4067
24.3163
3.69502
7.95179
8.94423
90.1795
16.9693
29.7313
17.0231
29.8493
8.92037
8.19725
25.8457
6.31401
3.76159
25.7843
8.21953
3.7539
8.22494
3.76192
25.6918
6.32709
25.7914
8.20086
3.76735
18.269
12.9394
53.9378
106.233
13.6703
16.8027
92.0316
18.4539
27.5135
101.229
19.9765
23.0574
130.611
14.1617
49.6289
11.5511
61.13
14.8016
11.4457
65.1774
25.6019
33.8171
27.9237
21.43
384.663
60.4523
38.9759
55.8103
44.2832
21.3551
8.28911
5.75613
30.4202
6.62747
27.5596
21.6023
19.7887
6.87715
4.95317
17.5402
6.15074
24.9178
15.0006
163.342
486.885
77.2735
61.824
110.687
55.253
124.645
421.077
99.4915
11.5918
37.0769
9.00394
46.1714
9.58298
49.8431
11.221
16.9152
20.6718
70.9865
111.379
15.9611
22.8505
67.3814
13.4579
39.853
10.6158
56.2511
12.927
10.6115
53.2322
14.1663
57.2364
75.8461
16.3429
17.6349
60.5617
13.6755
4.07559
3.5908
14.7233
12.782
4.17869
3.79886
15.9462
4.247
4.21767
21.1126
17.5659
4.96187
3.96163
16.675
4.78169
18.8355
5.65621
27.9387
5.6982
5.00329
20.8192
66.8091
119.42
76.6433
78.252
49.9312
30.2981
36.1724
45.2285
8.26154
2.45733
2.26665
8.78428
2.37635
8.46836
9.01434
55.4637
47.5321
41.9133
60.4591
11.3091
19.1246
3.41548
3.07485
3.1297
15.3875
12.9461
60.3082
62.6786
57.0626
66.3242
73.381
15.2133
73.7406
15.5967
77.481
74.694
60.8559
11.4724
114.86
80.8639
12.4804
639.506
34.7026
4.83355
1.60657
3.08013
1.94891
2.66008
3.88563
3.28211
5.70312
7.33267
43.1419
87.9193
73.5938
4.68393
15.8763
655.73
13.2119
60.8908
10.7062
33.5967
10.5039
43.5897
13.5868
49.5898
94.6417
26.0438
622.652
22.8104
150.075
18.3347
183.411
79.032
82.5881
12.5758
21.759
17.1607
65.7205
124.898
97.8016
19.5458
98.599
100.412
19.7389
99.5799
9.06488
54.2462
24.0714
8.93691
6.85331
0.575277
1.11725
8.35223
4.55218
0.701062
13.4551
18.2404
1.91733
1.9944
1.3863
2.38692
80.3327
3.07329
17.9104
2.72394
1.9245
1.83445
6.91057
3.28162
5.6349
10.1549
3.96526
14.9221
45.9688
52.1099
40.8754
56.412
35.1364
26.1754
482.325
32.0466
40.8756
30.3888
151.763
21.1047
23.6308
26.6795
50.6565
60.5541
54.6659
58.6314
80.3103
15.5489
81.1722
15.9602
82.9015
81.8747
2.05535
7.5822
2.99542
3.51424
5.18364
2.36523
2.67709
1.41943
2.84791
2.59224
6.74707
1.11838
3.5709
1.78281
96.8961
19.0566
96.0709
94.2158
18.8315
94.9517
8.423
55.8642
7.89657
52.7308
8.43929
52.4613
8.63054
6.34554
4.91134
25.852
32.5345
5.86777
5.63612
38.2522
7.91385
48.2223
6.70935
30.7521
6.76525
7.68396
43.4067
7.06822
51.0392
45.0149
6.58517
6.40576
49.1657
7.57904
37.0518
33.533
6.29572
10.3522
233.601
12.6438
2.66153
0.479164
0.680996
6.26578
3.51008
0.42173
4.69515
2.66388
7.70518
3.00815
6.72328
25.9028
7.00715
11.033
7.90986
10.8978
26.1986
7.83467
91.2341
89.9233
20.9358
10.9099
10.7765
21.2662
25.9323
7.00283
10.7959
7.80539
25.7755
10.8526
7.83491
91.3153
92.3873
28.8165
7.7967
12.1541
8.67385
8.72112
12.274
28.6402
104.147
105.109
23.9476
12.1994
12.3028
23.8532
29.0097
7.84746
8.81631
12.4342
29.1678
8.7837
12.3626
103.441
102.565
7.80569
24.1986
3.59113
6.03321
7.79859
24.3618
3.58912
8.45645
77.696
26.5401
15.4762
26.7621
15.4109
8.49084
7.88507
3.70602
6.17712
25.2052
24.6332
3.68796
7.94979
8.33346
72.0643
25.3209
15.0869
25.1999
14.9896
8.38919
7.9147
27.9578
5.90739
3.36731
28.0651
7.90666
3.36381
7.95008
3.40103
28.4337
5.95161
28.2611
8.00031
3.38344
6.76296
23.7724
4.78329
2.68784
23.8998
6.73086
2.69814
7.09282
59.7221
12.6397
21.5748
12.5032
21.3567
7.17731
6.80179
2.93882
5.02209
24.1688
23.9208
2.92548
6.87351
8.03945
68.433
14.2461
23.9937
14.3235
24.1858
8.01917
7.73089
27.6434
5.76134
3.2988
27.4787
7.78489
3.2797
7.66957
3.24341
27.0904
5.69485
27.2124
7.65594
3.23904
2.77762
3.4608
14.0043
16.8877
3.29175
3.13596
13.9895
79.9276
15.3015
78.987
15.131
77.1504
78.0604
0.438063
7.49457
1.10329
3.26232
0.547418
0.818105
2.18774
3.84209
28.4872
21.8347
3.76237
3.55432
21.7241
4.34708
3.83584
4.00951
25.1178
21.6389
4.65264
3.59364
28.1162
4.37438
37.3896
36.4847
5.5997
5.35237
28.9858
4.95955
3.59809
18.0514
2.76705
15.2557
3.17033
3.10614
18.6129
61.5204
11.5349
62.4159
65.5383
11.8945
63.8547
55.2707
10.2134
55.3806
10.1014
55.6697
55.4129
60.7219
11.0048
60.161
59.3124
10.9136
59.6981
5.69636
6.51085
22.4631
3.47433
22.3695
5.71089
3.47125
17.0297
69.773
16.7544
70.9655
9.38814
65.3242
21.2968
21.2031
9.46244
5.63937
6.43308
21.9493
3.41826
5.5943
22.1854
3.4301
17.1534
71.7675
71.5003
17.2236
6.06563
6.94483
23.7601
3.64792
3.65771
23.904
6.03831
18.7992
78.7753
18.9757
78.0762
10.2154
71.7174
22.7246
22.8749
10.1599
6.1106
6.9809
3.69696
24.184
6.14256
3.68766
24.034
18.6801
77.0291
77.6062
18.5259
6.57196
23.5562
2.63329
4.65989
6.62785
23.3775
2.62106
6.86338
56.2448
20.3247
11.8746
20.4857
11.9667
6.82797
6.54371
2.5967
4.62067
23.0109
23.1883
2.5997
6.51075
5.08197
17.1805
7.47774
8.96092
6.86996
8.60026
5.2856
5.10696
18.6002
3.64529
2.0709
18.8297
5.0501
2.08412
5.25649
2.23146
19.7114
3.80035
19.2562
5.40711
2.19832
4.57918
16.9669
3.22157
1.84838
17.0187
4.55964
1.84591
4.39036
14.2255
7.31853
5.81647
7.28891
5.83601
4.40783
4.54325
1.77476
3.14483
17.0358
16.988
1.77276
4.56226
4.6846
15.5961
7.8803
6.18607
7.92153
6.24822
4.67047
4.86641
18.304
3.4477
1.97632
18.1581
4.91033
1.96347
4.84839
1.93774
17.9798
3.41496
18.0538
4.83549
1.93975
54.9322
9.98976
54.7508
10.0921
55.0024
54.9359
34.4697
6.71671
34.5849
35.1259
6.76214
34.7593
1.50456
1.24881
0.999048
1.04969
0.272867
0.704753
0.00883029
0.0782688
0.0834033
0.0421083
0.00445502
0.0381393
0.00482933
0.103472
0.00555197
0.0103976
0.0508935
0.104918
0.0490507
0.00538029
1.69379
1.63306
1.84935
0.183186
0.406009
0.346187
36.8996
6.64775
33.0215
6.33772
31.6659
31.865
1.0328
0.47093
1.71121
0.793532
0.413906
0.244165
0.295476
3.8461
0.297038
0.455478
0.47715
0.552198
0.173056
0.128688
34.2764
6.61757
33.9457
33.6312
6.61835
33.8546
2.72067
8.09305
0.890006
0.717443
0.954668
0.280158
0.613964
0.00620362
0.0723674
0.0690394
0.0375549
0.00405171
0.0351172
0.00419522
0.0874269
0.00667214
0.0864035
0.0459971
0.00447584
0.0458492
0.00451272
19.1036
2.41073
3.43014
1.3185
1.0113
0.275977
0.36288
31.0123
95.1044
96.2717
31.6496
98.0441
97.3921
12.0831
19.5088
11.7404
20.0785
7.63449
50.9408
17.7199
17.856
7.70692
12.1544
20.035
20.2318
11.9761
3.94935
3.16066
6.0703
2.89974
2.90295
6.1252
3.94006
12.1295
20.6394
12.0634
20.6765
7.56924
52.6319
17.8838
17.9709
7.62591
3.89666
3.12237
2.8413
6.0706
3.88381
2.84728
6.09641
12.1473
20.3921
20.6349
12.0041
4.4544
16.8701
1.70923
3.03544
4.47883
16.8351
1.69835
4.37547
13.6092
5.7563
7.02425
5.84286
7.01992
4.40526
4.49997
1.74676
3.07685
16.9875
16.9157
1.73526
4.53136
3.85211
11.6456
5.11724
5.9818
5.20475
5.9215
3.89329
3.91169
12.5905
2.7902
1.68016
12.5931
3.93297
1.67244
3.90882
1.68375
12.7521
2.79873
12.6283
3.95125
1.66887
4.18095
13.4523
3.21974
2.19549
12.5255
4.33571
2.15032
4.05385
11.2761
5.72958
5.30925
5.75371
5.56095
4.08212
4.02247
1.91815
2.95985
12.1545
12.1714
1.89616
4.06318
3.90018
11.3902
5.80171
5.1352
5.80674
5.27586
3.9301
3.88851
12.5442
2.7839
1.69452
12.4479
3.91996
1.68263
3.93633
1.73636
12.4563
2.8184
12.4701
3.961
1.71871
36.5473
7.15009
39.1223
7.60703
40.951
40.8659
0.298961
1.53942
0.269658
0.405872
0.475664
0.130755
0.0910602
5.14793
0.522438
0.519335
0.62319
1.08867
0.190639
0.160492
30.8963
5.5354
31.3844
32.1111
5.65011
31.7829
0.156785
0.10703
0.596848
0.109235
0.086924
0.0205741
0.0392845
0.316213
0.0543825
0.0464948
0.0643415
0.0537457
0.0128305
0.011386
17.1132
3.29282
17.47
3.33915
17.9218
17.7226
0.0109705
0.020233
0.0747548
0.0105277
0.0162547
0.00297502
0.00311569
29.8167
5.12153
29.3478
24.5836
4.62954
27.2311
0.0128372
0.290806
0.0341249
0.05595
0.0155129
0.00443726
0.00377081
0.530011
0.110165
0.0314441
0.0931326
0.0269621
0.00719534
0.00831578
11.87
14.6106
14.9831
19.5938
24.0273
18.7982
12.5128
16.3015
15.6561
17.439
22.0907
17.9441
5.05021
7.22191
4.93039
7.44809
13.2015
9.26614
40.5933
3.18283
40.1601
3.15712
13.3351
5.09758
7.79981
7.60417
5.16816
5.93927
9.15291
6.01139
9.04077
14.9815
10.8593
45.5409
3.58929
46.0104
3.64143
14.8446
5.85284
8.84024
8.92139
5.79956
3.82376
12.8389
1.70726
2.60586
3.91018
13.133
1.63586
3.88219
10.7269
4.79269
5.59362
5.12559
5.64307
3.85474
3.90032
1.71999
2.70267
13.5551
13.5029
1.70272
3.90085
2.51637
6.58465
2.80014
4.05615
2.77292
4.01213
2.54177
2.55995
9.93654
1.68915
0.95181
10.0631
2.53424
0.956674
2.59721
0.994381
10.2764
1.73308
10.1874
2.61987
0.98891
1.93421
6.42159
1.36491
0.81014
6.50813
1.92358
0.80478
1.91975
5.06275
3.11351
2.18445
3.09827
2.16726
1.93727
1.94866
0.819364
1.38183
6.65189
6.58607
0.815606
1.96715
2.24626
5.94199
3.49898
2.45961
3.57612
2.50571
2.2022
2.41676
9.59836
1.58062
0.903009
9.46129
2.441
0.900608
2.29179
0.807752
8.3719
1.4404
8.9193
2.23835
0.80336
15.967
2.90048
15.6621
2.76519
15.0409
15.2144
23.5473
23.1889
3.84235
1.85393
3.96641
4.16616
1.91961
4.08592
56.8279
5.41271
18.5156
17.9364
55.4403
18.9254
18.5154
7.76997
9.62252
7.27092
60.141
5.69
22.4216
21.2179
72.9096
19.8039
19.4367
6.87346
9.3041
7.01093
10.344
30.1615
3.67409
10.2539
30.4539
3.72337
2.30635
3.57829
1.48694
6.7395
6.69206
1.46914
2.32702
10.4332
3.7987
30.876
30.7492
3.76955
10.4717
10.9866
32.7504
4.30506
11.1101
32.4444
4.22886
2.58655
3.99568
1.72448
7.18619
7.25134
1.75374
2.55651
10.805
4.08959
31.785
31.9192
4.13862
10.752
2.32595
2.62694
2.08935
1.35978
2.09639
1.37174
2.32421
1.99781
2.83227
1.93349
7.49969
1.91319
7.39688
2.01787
10.8944
2.59434
2.66013
9.30535
10.8227
2.68139
9.36103
13.1272
17.9087
3.29221
5.1389
13.3366
17.5275
3.20932
11.0238
2.6329
2.76958
9.56179
11.1538
2.72376
9.47019
12.9688
3.13287
17.2302
5.07141
17.3223
12.881
3.15767
7.07463
19.1366
2.53026
6.94268
19.527
2.57614
1.58636
1.75202
1.13842
3.79648
3.74329
1.13271
1.60235
7.16228
2.62963
20.1284
19.8269
2.59959
7.26336
9.31174
27.5485
3.17302
9.36984
27.4048
3.13867
1.68334
2.4905
1.00678
5.37203
5.36639
1.01397
1.67432
9.18915
3.08739
27.1595
27.1013
3.08716
9.2069
27.4472
25.5341
7.29788
2.17602
2.0343
6.03461
7.11616
2.09237
6.20908
8.40829
9.19609
1.99289
2.04228
8.12737
9.45033
2.0561
7.4014
2.21311
2.03982
5.99969
7.09732
2.12213
6.3176
8.30891
1.97855
9.17268
2.02131
9.35733
8.12446
2.03175
0.892644
2.53462
4.97531
14.9423
0.832255
2.70144
5.19208
0.63823
0.875253
0.435854
1.21824
1.5045
0.561192
0.507382
0.99781
5.10422
15.7813
2.56427
2.98285
5.48813
0.836352
2.76501
10.297
1.48345
106.4
3.73977
7.47033
16.9186
0.751785
1.00683
0.623786
1.71488
1.79233
0.642791
0.71515
1.34186
6.77238
25.9664
3.68124
4.10528
8.29348
1.17335
8.71993
7.93158
8.56991
9.61117
8.81669
9.05516
9.34457
9.74014
9.20113
7.7941
8.23027
8.42655
106.492
55.3995
10.9849
7.71295
94.7484
1.44846
1.90488
1.39151
0.55676
0.86746
0.913066
1.00046
0.588534
0.956666
1.8336
1.27714
1.3356
7.38098
7.13353
7.6202
8.97737
8.50703
8.3715
7.87962
8.6951
8.17265
7.23596
7.83178
7.73572
1.11573
1.28849
0.895898
2.27109
0.233885
0.396188
0.439015
0.757099
0.305917
0.556581
1.08721
0.668906
0.733702
1.39041
1.95176
1.48667
0.461646
0.786805
0.787104
0.963847
0.686441
1.06762
1.63307
1.17768
1.17922
4.01389
1.56033
1.48689
3.04981
3.91805
1.51611
3.13835
4.87559
5.69438
1.50967
1.44507
4.92951
5.63174
1.49614
4.09328
1.59395
1.56239
3.24869
4.13705
1.54693
3.21159
4.78527
1.44861
5.42215
1.42353
5.53265
4.68081
1.47124
0.232852
0.566586
0.418509
1.30179
0.230189
0.574415
0.424001
0.190485
0.786383
0.178415
0.311675
0.303257
0.173102
0.196146
0.237438
0.441278
1.32717
0.604227
0.587394
0.43088
0.243944
0.434003
0.957487
2.90185
8.06138
0.438216
0.943005
2.87371
0.282084
0.139706
0.289677
0.299048
0.316038
0.292587
0.276341
0.383639
2.63452
7.66972
0.811959
0.856139
2.72893
0.372501
5.02208
4.34064
4.7899
3.86758
5.01455
4.76605
5.22471
4.16669
4.90079
4.46883
5.48534
4.861
1.22301
0.902796
0.575929
0.152887
0.342362
0.296058
2.11577
0.845832
0.175468
25.5938
0.334566
0.819142
0.589779
0.522688
0.322416
0.445547
0.269535
1.38356
0.0610906
0.0449479
0.34004
0.790484
0.0731188
0.541918
0.789425
1.83666
0.883168
0.0514578
0.0937792
0.0848844
0.726942
2.2588
0.451346
6.73743
43.7448
0.266856
3.68824
3.8939
3.86483
2.64944
4.38727
3.75456
2.8566
69.2907
2.26561
3.23091
4.19199
4.91461
4.30396
0.124367
0.0273382
0.0378004
0.305243
0.280239
0.131787
0.0257331
0.0853145
0.132659
0.754283
0.731196
0.126786
0.0508591
0.0495144
0.00897973
0.0153091
0.0511101
0.0489493
0.0156838
0.0535533
0.0166501
0.0553353
0.00912168
0.0537817
0.0557736
0.0162388
0.116894
0.0328992
0.245491
0.0232915
0.111307
0.260136
0.024297
2.99418
0.821951
0.353246
1.09126
2.29946
0.1907
0.0459307
0.0282942
0.103822
0.245169
0.041316
0.0760689
0.157855
2.46261
2.78054
0.16778
0.0572988
0.0252537
0.0346644
0.037053
0.0651935
0.150227
3.87332
0.442241
2.22472
6.64772
1.39448
2.22711
1.63464
1.48316
6.45819
2.06761
1.58273
6.98412
3.11045
3.58965
1.55129
1.61921
2.89042
3.82409
1.67199
20.0077
21.9738
2.37571
1.78153
1.57541
6.87793
2.18701
1.70427
7.52104
2.94434
1.47006
3.43535
1.52868
3.65076
2.75165
1.56661
18.7024
20.3111
0.12317
0.0700092
0.126119
0.170196
0.0709368
0.122803
0.126777
0.127612
0.131639
0.172798
0.0747996
0.0732026
0.130599
0.126817
0.315133
0.822042
0.716133
0.973122
0.600314
0.509311
0.428622
0.198732
0.049298
0.0152627
0.876317
0.989823
0.0163283
0.17816
0.225651
0.255822
0.710359
0.346554
0.383677
0.293809
0.201292
3.35674
0.385225
1.28843
0.373045
1.55805
0.202398
0.195718
10.9633
3.73571
22.4796
1.22972
73.3426
6.79101
1.9356
110.892
10.4693
16.0099
34.0438
4.04716
3.01741
0.923636
0.524475
4.64382
2.67697
0.831727
12.4753
2.17923
1.69884
14.2492
1.48249
6.82627
0.683399
2.42014
0.540879
3.65445
4.30029
0.97095
4.83184
1.3818
7.64914
0.82843
0.814501
7.27701
5.07134
28.5567
22.464
9.6852
28.5009
6.38878
5.93711
10.4959
4.47944
1.41914
0.733928
5.86707
3.88326
0.820352
6.72985
32.3003
35.2453
3.8187
35.1684
13.6622
5.97637
18.7302
7.87597
3.12471
4.19592
7.32817
22.7924
6.89141
20.9994
4.43819
1.39737
3.97225
0.362672
0.2157
2.84555
1.95204
0.212053
6.93742
20.4962
23.0072
6.51727
4.00384
21.6058
9.18637
2.41559
20.1714
5.23311
2.0194
1.64286
0.209417
0.418014
2.6139
3.33108
0.239722
1.40261
4.01969
1.99731
20.0473
9.30961
20.3949
3.86533
2.04563
16.1825
19.1684
131.239
145.527
24.1936
26.9388
51.925
10.596
10.7025
1.24616
0.394168
1.29565
8.41033
10.5574
1.26086
0.408078
1.3041
1.21879
0.924438
7.71731
0.56463
0.542142
7.919
0.525433
1.1787
0.936352
0.520991
0.52671
7.86005
7.91113
0.475119
5.21038
13.8105
3.85696
6.4203
3.64205
17.6188
17.3943
2.49036
3.62005
0.755662
0.573658
3.65335
3.35422
0.567728
4.79747
3.47218
13.562
3.45027
4.82507
2.4739
0.565074
3.74991
0.764929
3.75923
2.53444
0.556073
1.52906
2.11009
0.176639
0.292586
1.41988
2.30486
0.181496
4.05369
20.3923
9.97376
1.96446
21.992
4.11866
1.95289
9.39513
10.0115
4.39428
2.43566
14.2705
37.6796
26.9103
2.17987
4.83062
1.59949
0.20212
0.29107
2.35696
2.34096
0.182832
1.66923
4.49339
19.6014
3.01206
4.73598
2.94813
1.27659
3.77304
0.605153
0.505042
1.19661
3.64051
0.484702
1.20625
0.403747
2.74306
0.548302
3.19854
1.1282
0.418431
4.54933
2.82912
20.2851
2.8376
4.58908
0.397852
5.85189
0.862148
0.157028
0.444026
4.94002
0.151416
5.09906
1.46897
4.56264
1.61987
0.362278
0.149715
0.675914
3.80984
4.12844
0.163898
0.396193
5.55223
1.83996
5.59253
1.82405
0.340433
0.0809903
0.0890831
0.178624
0.298264
0.0954146
0.207046
0.67307
0.108833
0.18759
0.0668692
0.181634
0.562522
0.108082
5.19559
0.375928
5.59664
0.398639
0.231792
0.58026
0.218264
0.13872
0.262454
0.639359
0.148992
0.20932
0.168297
0.67391
0.248567
0.657039
0.197268
0.161714
4.93052
0.472922
0.430362
4.71153
0.812842
0.0652471
0.159138
0.101203
0.957326
0.170291
0.105427
0.133658
0.0968905
0.231537
0.0725803
0.0952295
0.225331
0.160353
0.512025
6.49447
1.46827
0.158964
0.449441
7.22964
0.177332
15.4618
1.47158
4.78705
2.38744
0.623502
0.187126
1.51197
9.16539
7.86417
0.188596
0.7027
1.97027
2.11213
0.50077
0.0722461
0.0890088
0.170528
0.291252
0.0993583
0.251519
1.66001
0.13328
0.292771
0.0921494
0.270286
1.94214
0.131724
7.98797
0.435876
6.07168
0.667026
0.311052
0.501146
0.157068
0.133836
0.260318
0.445022
0.128549
0.358135
0.141618
0.394642
0.157187
0.39821
0.405534
0.144192
9.44918
1.02343
0.880736
10.2611
1.32114
0.0776973
0.177631
0.106532
0.991208
0.212811
0.11321
0.972791
0.217498
0.538124
0.192405
0.233439
0.857062
0.572817
3.65246
2.99997
2.61438
3.6509
4.76912
3.72827
4.42158
3.3923
3.89239
2.55257
3.68115
2.75141
1.14693
0.247642
0.304774
0.78119
1.13862
0.300834
0.707112
0.548267
1.43374
0.699234
3.05215
1.55435
0.414747
0.673144
0.591446
0.757739
2.99935
2.07769
1.7606
0.677541
0.543333
2.34417
2.33655
2.40039
2.1603
1.57272
7.62244
1.3988
1.24217
1.52308
1.90396
3.27536
1.79727
2.14804
124.483
21.5307
12.4017
118.887
13.6611
12.4971
10.6426
3.73586
8.20083
12.9376
28.4096
3.42192
8.63492
13.8783
64.2636
3.76711
12.8999
11.1709
48.6453
3.3315
34.5223
18.578
46.0698
10.1356
68.643
60.9931
44.6411
29.782
64.2381
141.296
10.0153
2.55266
3.0836
6.70187
10.873
3.50926
7.25571
49.4383
9.29974
11.1796
53.0435
8.9965
88.519
49.5688
34.7385
60.8017
5.56903
13.0535
20.7477
103.383
8.67313
30.8932
119.201
43.192
16.8355
12.0407
47.4231
69.4873
14.3603
146.705
136.551
13.2696
42.5085
113.267
30.6137
4.98037
29.1846
10.1387
3.21677
3.18485
20.0704
4.63105
6.43115
35.8289
8.52552
6.07053
40.585
8.83989
4.14631
2.70751
8.82382
14.3346
2.82857
3.94518
15.4782
1.26849
2.88558
1.51204
4.77343
1.67348
1.15347
3.27188
1.35693
1.86959
3.72633
5.33784
1.39882
1.80452
3.56697
1.5907
5.29662
5.8564
2.28508
2.17662
4.4631
1.69366
1.50184
1.93396
7.59293
3.90282
2.02845
1.44319
4.6772
5.53385
34.2619
8.26226
5.85922
31.6517
7.76633
3.28627
8.45669
2.09799
6.44615
2.30637
3.01199
11.4634
3.6288
2.6182
13.7933
7.34893
3.81059
2.512
12.9685
6.41301
5.52077
1.67325
2.13524
4.94398
8.30199
2.18639
33.6725
31.6637
11.1265
17.2671
3.10167
4.09175
3.02038
11.6313
16.6213
24.6102
29.8323
117.716
6.98179
1.71894
5.52413
2.3094
5.30019
2.2513
7.29426
10.4013
2.82858
14.8183
4.00673
9.22803
2.93559
15.8469
5.15858
14.4481
3.77324
34.3176
3.61189
5.3843
32.0794
6.67482
9.93449
10.9143
5.99212
6.98309
12.0413
7.27289
11.4109
9.47434
15.1927
14.2533
10.2712
7.48415
23.0032
3.98399
39.5523
4.95967
5.6954
109.984
8.21624
12.4934
13.1352
7.46847
6.05648
1.5374
4.56484
2.03585
6.54116
4.25585
2.01283
36.3466
15.5007
16.6582
33.673
7.99084
12.1912
2.43659
3.43534
2.53614
7.54663
13.086
5.93384
1.47538
3.98349
1.83896
4.17058
1.90074
5.635
37.8833
19.019
44.5155
17.3026
8.10839
2.70936
14.1734
3.90646
8.55268
2.75442
13.6438
33.7991
5.85134
7.41814
35.499
7.68733
13.7537
12.8993
13.8168
17.2397
19.9063
15.7285
11.7189
16.3365
11.7565
13.2983
17.0577
14.4215
5.89768
36.2744
7.66067
36.2627
7.69077
11.4565
16.8749
11.957
10.8779
4.20232
3.06943
16.0545
3.1557
11.4782
15.6375
9.76688
5.21022
2.13716
1.79141
2.25925
6.30595
7.42815
14.9409
17.5211
13.7014
28.3848
18.2328
72.2676
41.2908
29.3723
9.66171
3.65059
2.70739
13.0331
2.84474
14.0506
8.81328
6.99477
2.39322
1.8717
5.39759
2.41011
5.28139
7.661
14.7308
21.3627
19.4378
12.3028
3.21025
16.7723
4.25053
17.237
12.0076
3.26866
11.9488
12.2093
11.831
8.19408
14.8713
11.7112
15.5496
10.9301
8.36112
5.99485
1.99192
2.57997
5.86939
2.56008
8.48569
8.18282
2.4754
5.4811
1.94696
5.6232
8.00264
2.51279
12.4355
12.8651
11.9082
12.5505
4.30003
17.6407
3.32896
17.5871
3.31747
12.683
129.857
5.88932
32.1577
6.69282
28.0956
8.37416
31.9926
134.028
128.837
8.1035
12.9117
8.4282
44.8142
4.77138
18.3561
6.14634
20.2202
6.54243
38.2855
21.8686
30.5523
62.4146
10.4197
13.4536
9.16652
25.8697
40.2657
51.8678
7.58791
2.12714
2.12612
7.53479
9.21414
2.34187
9.78305
11.0487
3.04194
3.04112
12.9669
11.9759
2.83393
12.5404
9.30799
8.99335
2.327
2.85018
7.31225
10.5922
2.59699
31.1317
59.8756
76.6479
226.445
65.7845
250.38
11.9817
7.17902
7.13269
6.38313
2.73502
9.38324
2.84945
8.97337
7.0751
2.5721
11.2217
6.70959
6.78054
6.08585
8.17392
2.28722
2.71353
5.68841
8.69643
2.42858
1.90012
4.66811
1.59801
5.63028
1.56479
6.26551
1.95124
2.32667
2.74153
6.59402
8.95152
7.05435
2.17873
2.96503
1.84682
4.10471
1.4426
4.90713
1.50933
5.22428
1.74799
2.35963
7.00946
9.48329
3.03528
8.58604
2.43401
2.91592
40.5784
7.63034
16.1736
181.73
8.15606
5.21544
1.58577
1.90167
5.79878
6.75361
1.74154
4.58777
6.33927
7.14274
2.10778
2.10281
8.25563
4.95759
1.92163
16.9873
18.3642
29.1918
9.1586
47.5195
8.79334
13.2484
17.2716
34.2747
29.64
12.4399
3.38088
3.19914
13.0912
12.3585
3.30438
13.1065
11.7639
3.34419
10.927
3.08431
10.7673
11.7773
3.26113
37.4862
44.1242
15.3335
18.5091
20.4213
11.7063
10.0743
3.04105
2.96371
11.4216
10.5809
3.15978
133.032
2.06907
1.65349
5.19388
6.16412
6.62454
1.69299
2.02272
2.59828
3.20562
8.44019
11.7862
8.30712
2.60742
3.21179
2.10267
5.54561
7.28288
1.73672
7.01568
1.7222
2.11728
2.57143
7.68101
11.6373
3.14276
8.07814
2.52356
3.19278
3.71596
3.23578
8.48812
14.8552
3.16976
3.79929
12.2519
4.3184
4.94999
17.1093
21.5335
18.6443
4.27672
4.99102
3.63818
7.83029
3.1329
11.1257
3.1415
11.353
3.61162
4.44445
22.2907
5.15528
22.5787
4.50666
20.167
5.1783
4.13301
9.24357
3.13642
16.8726
3.16872
18.2558
4.06282
5.2084
6.046
30.012
68.1454
31.544
4.95286
6.53976
4.1094
9.36738
3.09495
18.2862
3.16209
18.593
3.98421
5.29209
29.6199
71.1679
6.77289
31.5037
5.2457
6.74454
4.05551
10.6
3.34845
18.0743
4.00252
3.39274
20.4081
5.03448
8.30444
50.0628
41.9426
33.2992
6.54298
5.8005
4.18469
11.0578
3.92372
25.5789
3.47212
22.3348
4.97995
4.80248
24.6633
5.46873
31.4261
4.76437
28.4198
5.41975
3.79274
3.07681
8.354
14.1671
12.5604
3.0036
3.93035
4.96838
6.97258
25.548
63.3135
23.8947
5.16713
6.62001
3.76701
7.67647
11.9239
3.06364
11.5391
2.98433
3.89268
4.97323
26.3032
62.1599
6.75873
23.9708
5.14032
6.57307
1.36762
0.1391
1.23802
1.08138
0.136961
0.125922
1.21582
4.91264
9.88334
12.243
7.05008
3.67295
6.21903
3.35304
0.125723
1.04655
1.14842
0.977172
0.111255
0.113374
0.890492
0.836502
0.100004
0.0931509
0.658615
0.725415
0.102349
0.751867
6.12507
2.55298
4.1397
3.43011
10.4988
8.90848
2.83369
0.915534
0.124376
0.102861
0.887976
0.803917
0.113608
1.04023
6.958
3.18468
6.43557
3.53662
8.25276
4.81929
2.95938
0.73526
0.115504
0.793341
0.681579
0.10038
0.104182
0.643438
6.45444
8.77562
7.59441
4.36807
4.11464
4.70062
3.79383
0.12031
0.948827
0.865735
0.732452
0.109263
0.107804
0.802084
3.2915
2.95971
3.71075
4.14876
4.63644
3.04638
3.28894
3.68667
3.46087
5.53825
3.58645
4.81426
3.92118
3.13099
8.922
2.92204
3.0882
2.48568
5.08845
2.24883
4.95886
9.75447
2.71279
2.29344
1.6841
4.30725
2.03367
4.24907
2.42485
0.676136
0.577643
0.996939
1.46184
0.593621
0.322224
18.045
22.409
19.8608
15.0072
20.5288
18.3543
23.3522
22.9391
21.048
28.8977
28.5935
29.1652
29.9507
28.4099
29.3003
28.4799
28.3249
29.2038
25.1041
24.6961
26.2576
27.247
28.169
27.1032
25.3357
27.9363
26.651
20.7347
21.7121
23.1601
26.4339
26.7593
25.2995
23.8533
26.7148
25.0176
13.4887
5.08852
4.12769
14.7218
16.0555
4.48425
12.0537
12.4089
5.94071
4.73338
11.5523
13.9311
5.2787
10.0162
263.558
14.8722
18.5207
4.18671
4.29783
17.2482
16.2633
4.69702
23.3844
3.71568
23.3184
3.70526
22.9482
23.6375
3.66315
23.7723
3.62654
23.9909
3.53581
23.1282
24.4925
3.61609
22.928
21.4417
3.66131
3.57975
22.3538
22.1657
3.60892
19.4038
3.93059
3.9245
16.8537
18.0551
3.80058
18.3339
21.15
3.6766
22.6079
3.71706
22.088
21.7837
3.71227
20.2687
20.2383
3.9205
3.7181
19.0728
21.3255
3.78005
17.1007
4.90742
4.35798
13.4669
15.7621
4.40593
15.1008
20.14
3.6943
22.8723
3.55249
21.8623
21.3184
3.80275
18.9302
19.8956
4.01339
3.65575
17.8425
20.7825
3.97959
13.9065
16.5203
15.3147
15.2749
11.0024
7.52486
9.57336
9.03625
12.8423
13.2557
14.3839
11.4538
12.2282
12.014
13.8256
10.3211
19.2537
18.3734
19.0742
18.6321
20.127
21.1389
20.3184
21.1667
19.6265
19.8063
19.5035
19.8778
19.8092
20.7822
19.2319
21.0829
17.4865
17.6093
16.5289
18.4437
17.473
17.5535
18.0681
16.8457
18.1478
19.3946
18.9868
18.6688
16.739
14.7792
15.6978
15.9862
16.784
17.4277
16.3576
17.7653
16.311
17.9905
18.8704
15.0069
17.3962
20.2345
18.3853
19.5793
15.7197
13.6744
15.1592
14.4442
2.83934
2.70401
17.7824
17.8457
2.71058
2.83185
17.712
3.00701
3.17418
17.232
17.2241
17.4219
2.98936
3.18307
2.85051
17.6383
2.69165
17.3663
2.71968
17.5494
2.82719
2.99433
17.7658
3.16139
17.4437
2.98492
17.61
3.17128
2.5531
18.2983
18.3883
2.59989
18.5239
2.51651
2.63488
2.57125
2.63933
18.5366
18.7778
18.6637
2.61324
2.59587
2.56251
18.3519
18.4454
2.55955
18.5573
2.52065
2.60182
2.55414
18.5195
18.7734
2.64772
18.6456
2.63194
2.57252
2.5151
18.108
2.59836
17.8515
2.60388
2.51092
17.9939
2.50209
2.49526
17.9323
17.8242
17.9724
2.53261
2.46606
2.50341
18.1713
2.54074
18.0142
2.50595
18.0741
2.53609
2.52044
17.7255
2.58151
17.7078
2.61108
17.8769
2.49051
2.86001
18.3362
2.70154
18.0448
2.82482
2.73759
18.2915
2.99056
3.15744
18.5653
18.3275
18.4074
2.99721
3.15493
2.85089
18.4779
2.74762
18.5927
2.73244
18.4455
2.86214
3.00295
17.9688
3.14341
18.12
2.9719
18.2317
3.16878
0.67791
0.653138
2.52488
2.53373
0.656081
0.676112
2.51909
0.692825
0.70507
2.4434
2.4358
2.47036
0.690727
0.706794
0.678156
2.51051
0.655184
2.47305
0.65736
2.50096
0.675841
0.693115
2.50361
0.70629
2.45312
0.691712
2.48833
0.707496
0.572985
2.29796
2.42908
0.6077
2.31684
0.572195
0.607736
0.546205
0.526552
2.17487
2.29932
2.26104
0.51859
0.554041
0.540423
2.19427
2.12916
0.510001
2.21481
0.539078
0.512022
0.578019
2.47948
2.40268
0.619461
2.36473
0.611823
0.585922
15.3196
15.5524
15.3038
15.045
15.0087
15.0884
15.1663
15.1013
15.1413
15.5124
15.1725
15.2472
16.0856
16.4002
16.5573
17.264
17.4028
17.1124
16.2677
16.8449
16.7249
16.7352
17.189
16.9162
0.584672
2.29945
0.616015
2.40673
0.620911
0.579731
2.29507
0.55469
0.533235
2.10549
2.21896
2.19721
0.524428
0.557431
0.550701
2.19395
0.515769
2.10135
0.545804
2.19129
0.52033
0.588242
2.41392
0.619054
2.3349
0.623929
2.30187
0.58226
0.669043
2.54537
0.645631
2.53585
0.669543
0.644885
2.56634
0.683086
0.697072
2.68422
2.58378
2.62073
0.691356
0.690567
0.671539
2.59947
0.655781
2.7057
0.647988
2.64469
0.680405
0.683632
2.50593
0.699754
2.49834
0.685288
2.53697
0.696061
15.9027
16.3556
16.3323
16.5127
16.8012
16.5729
15.8817
16.235
16.283
16.6759
16.876
16.6372
14.4346
14.4861
14.131
9.95429
9.5356
11.9073
14.1933
12.2327
13.5039
14.2506
11.6893
13.361
14.885
14.8381
14.9729
15.2483
15.173
15.1402
14.9904
15.1904
15.0798
14.884
15.0572
15.0275
14.6111
14.7671
14.6882
14.5438
14.6252
14.6315
14.4973
14.4848
14.602
14.8016
14.7186
14.7182
13.178
13.3407
1.86026
1.83398
13.2529
1.85108
13.2638
12.9882
12.8291
1.84203
1.82887
12.9233
1.83933
12.8924
13.0917
1.86709
13.098
1.86079
13.1659
13.0243
1.85612
13.0724
1.82327
1.82863
13.0627
1.83702
13.1572
12.9765
13.5958
1.80813
13.4892
1.76382
13.56
1.76626
13.5405
13.6407
13.7052
1.76586
1.76662
1.75975
13.6837
13.6515
13.6497
1.7941
13.6628
1.75606
13.6247
1.75657
13.6835
13.5854
1.74007
1.76249
13.5165
1.75746
13.5349
13.5803
13.4249
13.4258
1.80652
1.76802
1.76588
13.344
13.4966
13.345
13.2494
1.72186
1.69631
1.71959
13.2666
13.3204
13.3157
1.79931
1.763
13.1427
1.76189
13.2382
13.2163
13.4333
1.73096
1.71137
13.4582
1.7227
13.4944
13.3958
10.3695
10.7464
1.38097
1.41105
10.5438
1.34555
10.6695
8.99409
6.1849
1.0921
1.18412
7.0346
1.22979
8.37486
9.55804
1.31061
8.46404
1.14249
9.95368
7.79935
1.26615
10.1257
1.3975
1.29045
10.4547
1.32342
10.566
9.83719
10.9485
1.54425
10.8554
1.53099
10.9266
1.55571
10.8767
11.0385
11.1067
1.58467
1.56292
1.57303
11.118
11.0252
11.0342
1.56778
11.0869
1.58883
11.0114
1.57631
11.1103
10.9524
1.53095
1.54541
10.8597
1.55408
10.8779
10.9374
10.7626
10.7965
1.45909
1.50181
1.48466
10.7398
10.8177
10.7143
10.6815
1.49069
1.49135
1.49138
10.6957
10.6938
10.7141
1.4474
1.47452
10.6461
1.48157
10.6851
10.6878
10.7606
1.50411
1.48612
10.7966
1.48966
10.8164
10.7384
2.1141
2.0146
0.400614
0.401705
1.99945
0.412224
2.14392
8.93068
8.48999
8.37936
8.93379
1.94443
1.91079
0.391607
0.401372
1.93922
0.404842
1.91667
8.30738
8.12754
8.16456
8.2731
8.91829
8.09066
8.24427
8.90201
2.08193
0.406499
1.98307
0.405014
1.98418
2.06301
0.417041
1.96069
0.391445
0.398612
1.94377
0.401255
1.97195
1.93331
2.55022
0.408568
2.10607
0.417617
2.34817
0.433315
2.22722
8.68714
9.80153
8.49804
10.9744
2.81021
4.42449
0.539844
0.57105
0.498111
3.54226
3.44423
10.8295
9.85529
8.19096
17.483
2.43794
0.411494
2.59623
0.472958
2.23478
0.441859
2.93328
9.56396
8.10012
9.36366
7.93716
2.90764
0.458391
0.546082
2.87894
0.48151
2.46575
3.52124
2.2514
2.04177
0.397402
0.409859
0.408048
2.18194
2.11344
2.15611
2.25469
0.403681
0.447634
0.414199
2.0741
2.37987
7.82265
7.96693
8.01201
7.78303
9.06477
8.93312
7.80138
10.2201
8.899
7.94309
8.9079
7.75221
2.02112
0.3855
0.381743
1.95492
0.389429
1.9866
1.97968
2.4428
0.444299
0.47916
2.61593
0.438075
2.2967
2.76419
0.350399
0.327582
0.272984
0.334756
255.53
81.6277
13.1821
80.3397
41.1923
246.699
19.296
36.2878
33.2491
8.87808
79.739
18.3625
13.3951
30.7287
20.6426
6.64823
46.9134
278.292
245.87
242.096
55.3057
27.7699
39.5408
97.4373
71.2374
30.0209
14.9423
28.0325
32.7024
52.9568
197.439
169.95
234.736
23.9238
61.3596
86.9859
70.4593
203.283
258.667
85.9943
36.6834
9.01328
6.49061
12.4512
16.2153
13.8783
30.93
257.125
83.618
41.0149
68.0982
40.7615
8.6097
32.9599
25.0648
213.756
17.9716
30.7173
53.3605
202.479
6.16997
30.3784
12.1445
7.37737
4.58881
16.5929
10.2752
63.5578
104.025
684.593
93.8166
257.807
31.3554
152.126
183.633
50.4198
15.1478
55.7902
210.873
232.153
16.2068
45.6644
23.1564
12.6538
12.5575
39.7337
24.775
11.8272
38.9711
129.379
137.706
56.1781
722.001
60.1533
29.6719
271.004
92.2371
17.8583
145.442
141.239
90.5078
662.499
202.667
55.0858
253.024
88.5839
31.1824
126.764
32.9945
156.265
141.805
27.6749
13.4008
13.3019
40.4763
26.6463
13.7631
41.0609
156.457
45.6287
27.8869
161.079
44.7171
159.668
153.115
146.887
39.3015
25.1606
135.9
42.8494
148.226
151.15
22.9375
120.512
70.2989
30.4327
48.1334
13.3353
167.35
41.6001
195.596
44.5522
14.3384
22.1916
40.8457
44.2559
21.2583
65.1665
32.6076
67.0735
15.4696
571.255
23.1109
154.491
19.8642
37.2619
137.175
41.6642
39.489
13.5566
20.2455
10.3442
20.0298
40.1783
13.3721
37.9592
17.8664
11.9517
10.1354
34.1688
19.4237
12.9562
512.495
18.1502
10.0283
11.5857
40.2572
42.2261
10.0657
17.9128
38.7136
45.4873
611.402
23.6633
73.6227
189.326
13.4767
16.9426
8.26059
14.5808
9.53025
52.8021
19.5852
10.9614
165.293
187.965
39.5713
147.327
36.1731
164.897
11.5701
6.42756
43.4209
11.4998
43.1534
11.7402
6.38756
21.0434
44.4864
161.306
21.5361
43.6261
40.9048
173.466
170.422
41.8787
11.1531
39.2397
6.05094
11.2699
10.6669
42.1739
6.13739
20.4207
38.5153
153.737
18.7406
42.2208
11.9805
37.1684
128.397
33.4483
37.2496
12.1115
32.9421
9.66414
10.368
17.4197
42.4426
17.7746
9.58909
10.5169
11.9048
126.101
36.603
31.3661
37.0306
31.9742
11.7171
9.86053
18.5903
12.8582
45.8147
10.5812
18.3636
10.8705
32.3243
17.6774
29.8582
18.4031
123.946
131.382
30.3566
7.79559
61.7314
7.69682
21.5808
11.7359
9.11919
115.139
543.93
77.5071
33.6581
19.2977
18.8934
34.5602
26.2305
16.3299
16.4645
26.7187
10.0201
10.0236
43.3102
5.47751
10.9083
40.5271
5.26985
43.7034
152.374
154.034
43.2662
44.3552
182.72
47.3322
158.101
26.0976
16.3065
16.4753
25.8162
12.0603
152.079
39.8946
37.1483
11.6043
41.7628
40.8598
9.11554
8.89317
25.6402
15.153
24.8353
9.39173
8.73698
12.5755
158.924
44.2001
45.1393
43.0443
43.468
12.9746
8.7165
20.7549
7.73944
14.0307
8.39152
23.0417
8.29469
160.304
185.971
6.73542
6.99196
15.1524
11.2852
6.72231
7.19577
9.9298
6.17639
4.15757
10.3342
6.72524
18.595
4.6643
4.28933
11.0425
14.3744
8.06888
38.2788
8.88651
55.9966
9.16686
7.75747
29.0084
4.90813
7.86556
8.24291
26.3563
4.86705
11.4989
40.3325
27.4835
7.73
42.1572
11.0783
7.96538
42.7868
16.5764
484.489
163.066
16.2137
60.6122
39.2824
131.888
15.2327
138.988
37.8525
15.688
12.6955
28.6439
72.1522
9.1346
45.7443
8.32208
22.4023
121.748
33.2952
120.104
106.83
31.6108
115.61
10.1487
37.8596
7.45968
22.3948
7.22496
10.582
35.3207
31.9421
11.3671
100.174
108.027
12.6375
29.5103
34.6376
125.17
14.613
36.2042
118.636
13.9803
10.2465
21.14
7.98262
32.0266
8.30849
33.3159
9.83701
7.58903
18.9774
7.27102
12.3018
7.42168
7.4637
12.7484
8.66125
4.3258
33.8202
8.02093
33.6153
8.70389
4.30899
7.73015
19.4637
7.74989
13.1136
7.60469
12.9941
7.75631
8.49218
31.177
4.10173
7.74616
8.29212
32.7801
4.1199
37.0456
22.1785
59.1203
145.671
453.732
96.9569
25.1633
87.9404
3.54336
3.93279
8.24785
5.01305
3.94303
3.55152
4.99555
3.46213
8.12662
3.80367
4.84985
3.8606
4.89683
3.45329
7.30337
11.7384
31.7647
8.01838
11.879
7.32612
8.09364
7.01634
7.31324
23.2478
17.0592
16.8437
7.33132
7.09059
7.13922
16.4922
23.0198
7.09629
16.7289
7.02128
7.28204
7.28466
32.0555
12.1051
8.10757
11.9489
8.07566
7.37782
103.886
102.648
34.043
22.6636
23.0726
16.9403
11.6474
16.8292
34.4488
23.5698
23.2811
16.456
11.592
16.7326
7.11663
11.5549
8.02195
30.8889
7.88897
7.22756
11.419
6.69741
6.4097
20.8593
15.2843
15.6617
6.61187
6.62803
6.91233
16.1813
6.87332
21.3234
6.91341
15.9411
6.72687
7.02495
30.5093
7.71965
10.9849
7.7783
11.238
6.95899
3.59906
8.48904
3.97736
5.08279
3.59889
4.01265
5.11682
3.57437
8.53662
4.00794
5.18313
3.98696
5.11753
3.5888
32.8704
22.4437
22.2932
15.7269
11.0767
15.9814
32.4688
21.6536
22.017
16.2967
11.2315
16.1949
2.82659
4.5316
3.86471
3.00503
4.70236
2.78789
3.01835
3.56672
8.967
31.4872
16.5313
8.9345
7.25725
4.89036
3.26653
7.46493
28.4096
6.69651
7.85739
3.17651
6.8749
2.9606
4.0253
5.85578
3.15895
5.06709
3.14098
3.11864
20.5517
16.1589
20.128
73.498
24.723
26.7225
28.4065
79.4511
27.6882
15.8961
19.1457
19.7741
14.6208
9.99219
10.8498
338.711
61.2529
8.06843
14.7851
48.3789
43.0311
15.6008
11.4443
11.8799
102.189
25.9785
8.07011
22.3538
30.227
81.5054
25.8161
2.55773
4.2351
2.79495
3.52319
2.778
2.59437
4.16702
3.04554
4.55816
21.9575
4.94267
5.73411
5.68914
2.92047
2.87073
7.02898
6.35665
24.5842
2.96449
6.78037
6.05219
12.6852
9.47678
9.33808
72.001
19.2559
23.0926
6.78746
23.553
70.4768
19.8474
12.4154
8.93258
9.10386
74.8325
25.0338
7.19951
22.1074
24.3564
77.4743
21.0851
8.98502
247.936
23.8266
8.22355
77.9376
12.8645
10.0674
10.3058
11.4715
13.3754
10.8248
21.1617
7.58194
61.5965
7.77557
64.3274
18.1216
19.2889
52.2265
5.21692
57.3392
5.56628
17.3516
12.498
8.6447
3.949
3.6041
3.84133
12.881
8.38928
18.6618
20.2969
62.4907
5.94685
61.0559
5.7799
19.156
12.1492
3.61818
3.52887
7.99546
3.73902
11.7837
8.1838
15.132
34.2703
6.82035
4.60597
4.12562
22.1796
15.9684
11.0902
7.66043
3.33558
3.47545
3.40386
10.8519
7.82305
14.5301
6.1009
3.77619
19.8448
3.88825
20.4034
14.2169
11.3921
3.51143
3.54342
7.83044
3.49434
11.3853
8.0064
13.9289
3.59036
11.8092
2.76549
14.397
3.36042
11.612
18.2858
52.694
17.8642
5.21691
5.2898
53.3515
18.036
18.7345
6.10879
66.3711
18.4097
20.1218
5.45303
55.5415
13.6716
2.71491
3.21947
11.2605
3.26946
11.4409
13.4622
8.47349
2.78276
10.1602
2.71362
10.3385
2.74402
8.34754
6.24497
4.47848
2.97278
3.07291
2.94543
6.32476
4.42859
8.6036
2.84014
10.6602
2.81568
10.5227
2.78451
8.70149
6.15019
2.88205
3.03366
4.31935
2.90781
6.07626
4.36496
8.14885
10.016
2.63426
2.68627
2.66526
9.89573
8.24506
5.87491
4.09849
2.77493
2.93722
2.81239
5.7444
4.18522
8.02921
2.59959
2.61205
9.58685
2.64006
9.76001
7.85564
5.95368
2.85791
2.9653
4.27638
2.83899
6.01348
4.23794
7.79033
2.25609
6.72624
2.28291
7.92305
2.22252
6.60892
8.83343
10.0044
2.28391
2.17186
2.1916
10.1059
8.74087
8.95485
2.23577
10.4471
2.29351
9.11176
2.19914
10.2529
7.68779
2.27017
2.19215
6.44777
2.21304
6.51975
7.60666
4.32441
2.61261
5.54427
2.49009
5.99319
2.69959
3.96879
22.6673
8.84085
2.07404
1.64776
3.873
3.00285
6.07444
44.792
10.4394
36.215
11.3664
4.99694
3.08831
5.90732
2.09977
6.66649
3.3941
4.33256
13.5801
2.59296
1.10374
2.58186
2.82951
11.7366
2.97657
3.75458
5.35766
2.33684
2.42487
2.39264
5.25416
3.8281
10.8003
2.40389
2.4642
0.959201
2.48146
10.674
2.42763
33.4301
10.0933
34.3041
9.86602
3.70384
2.32394
2.36013
5.11288
2.37856
5.17849
3.65833
10.9745
2.52639
0.967902
2.48104
2.49433
11.2261
2.44425
4.89378
1.8472
3.94182
1.88786
4.9439
1.8315
3.89855
5.71462
6.48603
1.68153
1.72362
1.74401
6.55949
5.64889
5.7745
1.77593
6.69434
1.69739
5.83222
1.76043
6.62776
4.84023
1.87115
1.79291
3.79282
1.81399
3.85074
4.7784
9.0536
2.00194
2.88277
2.07101
2.92339
2.09423
8.94749
27.5529
28.3937
1.91715
0.910116
0.782321
0.616965
0.77156
1.96291
0.896033
7.73923
5.14741
7.63744
5.22203
9.20182
2.03822
3.06428
2.17089
2.98515
2.13325
9.44347
27.1346
26.8448
1.87256
0.742196
0.593411
0.860807
0.74744
1.85158
0.866705
8.75796
2.8479
1.93858
2.04403
2.0267
2.82235
8.84582
1.78021
0.808845
0.699734
0.556755
0.705581
1.75188
0.817263
26.0613
25.6925
7.42781
5.06774
7.52834
4.99624
26.2357
26.544
8.69352
1.91938
1.98141
2.76159
2.00488
2.79667
8.57935
1.80427
0.725538
0.574
0.840293
0.721701
1.82108
0.835894
2.49021
1.36353
1.95051
1.214
2.67375
1.26074
1.75094
3.94286
4.17069
2.01763
1.7201
2.17299
4.6707
3.40631
27.7262
99.4077
3.18892
1.36159
4.05651
1.29536
3.39585
1.29783
3.88113
3.16126
2.60686
1.72827
8.74356
2.33238
15.8099
2.61005
1.35044
1.53588
6.61018
0.505959
6.74912
0.511981
1.32913
5.35342
20.3367
20.0233
5.4485
0.651727
0.488615
0.403195
0.405158
0.402147
0.655055
0.488256
3.47509
2.56642
3.43147
2.59628
1.36756
1.55343
6.9061
0.523669
6.82708
0.520456
1.38251
5.28495
19.3636
19.7859
5.20973
0.643416
0.39302
0.396701
0.48004
0.394549
0.637896
0.48082
1.1595
6.19812
1.22758
0.482313
0.455802
5.38169
1.26798
0.53726
0.429087
0.347362
0.362747
0.353067
0.502047
0.435761
4.41635
6.45072
10.4794
4.0908
3.24947
2.51715
3.35727
2.45145
4.83294
17.9983
15.9542
5.07258
0.94291
0.895605
0.366839
1.73358
0.402854
3.65942
0.746744
0.586823
0.378114
0.380323
0.463784
0.373086
0.613434
0.457965
1.3815
1.18995
0.198409
0.223989
0.227144
0.467626
0.248869
0.396618
0.185079
0.212355
0.199661
0.198766
0.459046
0.236051
0.196611
0.191615
0.229935
0.436395
0.0299591
0.112702
0.132225
0.0168569
0.0186739
0.0273289
0.145188
0.186225
0.216485
0.390687
0.223091
0.180724
0.420811
0.191765
0.35215
0.490187
0.230291
0.696849
0.0781858
0.0159547
0.048108
0.118491
0.013096
0.0087433
0.0218634
0.131738
0.15414
0.200199
0.360279
0.186982
0.166222
0.362586
0.258791
0.162214
0.157086
0.258889
0.149791
0.141977
0.146843
0.145895
0.165533
0.298719
0.2806
0.162663
0.0321224
0.112393
0.200345
0.157932
0.0300063
0.0536837
0.0271247
0.108506
0.038321
0.14146
0.0218686
0.0484545
0.00830412
0.0202456
3.20691
0.114211
0.118845
0.0223582
0.00722609
0.0104996
0.287597
3.33981
0.0301312
0.132098
0.0138367
0.0256583
0.307054
1.24082
2.29714
0.445607
0.478233
1.34162
0.296229
0.252468
0.203569
1.00361
2.21541
1.40796
0.191233
0.262572
0.213769
1.07663
0.83734
0.161387
1.18283
0.206415
0.165743
0.379666
3.235
0.545877
1.86615
0.621334
1.54475
0.366573
69.0458
22.9796
107.073
3.69405
4.9983
6.62428
11.9393
4.48801
8.02927
14.0819
18.1118
0.946097
0.595054
3.79834
14.9191
0.482309
0.635625
0.580706
0.881064
0.908652
0.574532
0.606524
1.5272
1.01421
0.773674
0.739746
2.62598
5.61586
0.530666
6.79266
0.552202
0.709675
0.620001
6.03469
0.752317
0.827297
0.580532
1.10086
3.27392
2.96302
1.20169
0.457284
0.205719
0.849811
0.18671
0.97085
0.420824
0.187366
1.02749
2.05143
2.5734
0.904456
0.623378
10.9538
0.442776
0.967657
0.666602
7.54018
65.428
20.2828
13.0182
5.67029
15.2525
0.237013
2.99938
0.360758
1.74462
0.233113
1.75066
0.378559
0.236022
1.54115
1.35708
0.340513
1.52767
0.348831
0.232295
2.41982
58.316
1.07577
2.3679
63.7635
1.32004
1.10182
1.50192
10.7438
17.9988
0.8702
1.25788
2.18184
1.51507
94.2404
1.53493
1.29275
1.26359
15.4087
1.15609
8.19619
1.54138
12.1239
1.13851
299.741
2107.04
62.4487
62.5665
207.306
43.4257
10.7669
12.7686
16.6294
20.6177
29.1628
19.2524
140.347
18.4542
120.474
21.7474
727.616
53.6874
63.7676
30.5865
59.8856
1.55854
103.454
12.646
1.56848
26.8823
1.27126
1.91456
1.07377
1.2831
27.9787
10.9056
17.6466
0.841655
1.67499
1.34533
143.696
1.61202
23.757
1.23126
2.20159
1.42156
8.71267
23.6911
1.17511
2.00482
17.1989
0.962582
0.959505
11.0214
0.880412
5.96754
1.28657
9.20914
0.656151
1.92456
1.48407
1.81189
1.58822
1.49714
4.99798
1.50796
1.13163
1.72029
1.9412
1.64812
1.94303
1.80316
1.74904
1.88772
1.51026
236.903
14.2856
10.3538
5.01126
9.17926
0.150974
0.205503
2.65872
2.01079
0.304262
0.0589973
0.0293748
2.35092
0.226987
1.45604
0.0449445
68.8859
4.0405
10.0317
6.01346
2.47406
2.58423
0.0799475
4.38114
2.74525
0.0701085
1.89371
0.0592642
0.0985641
0.0207615
0.144462
1.06336
0.0219186
0.598108
0.0293147
0.0707584
0.0149355
0.0670986
0.0743383
0.0140108
0.0141949
0.0732378
0.1413
0.159835
0.963134
1.71579
20.6433
1.0419
1.91914
2.3524
4.47657
9.56022
1.40578
4.10397
1.77898
3.32136
0.0134559
0.0631061
0.0537567
0.0810748
0.0164181
0.0140456
0.40673
2.95103
0.271682
6.01857
0.364535
0.231079
0.146078
10.1538
2.82385
0.19785
1.39173
0.233014
0.0821685
0.0899522
20.7665
4.13384
4.28608
2.10281
12.4803
6.44815
5.57197
38.2868
11.6762
16.703
11.8606
29.7757
55.2419
2.9197
15.6669
13.3864
8.03318
8.3803
0.845801
0.722768
1.51945
0.428917
1.77225
0.744618
0.455394
4.3536
16.3674
18.1638
11.8725
11.6755
5.70436
2.10434
3.96386
4.09045
35.8921
5.8325
1.59066
6.44352
2.70585
13.1529
48.197
14.2397
7.76903
8.12491
4.99589
2.16477
4.41159
4.13908
18.3964
1.77845
5.72181
5.65078
15.7509
3.62044
24.5779
5.20073
9.25476
6.42352
1.10533
3.06492
2.78251
6.98946
2.45142
2.16831
12.0708
2.62765
43.0253
7.9788
6.74739
3.56853
36.3523
9.76952
5.76352
18.0915
7.34086
13.7706
42.5422
5.31956
7.34665
1.54633
4.10415
2.17349
6.40151
2.5568
3.83371
11.1645
3.60662
3.85407
31.5599
3.66363
19.5206
12.0698
38.2823
22.22
22.2817
11.577
21.2894
3.97146
4.10006
12.3457
3.85937
19.094
5.78345
32.5652
5.25103
27.6137
8.69866
35.5098
21.8072
19.2125
43.3625
4.76759
10.8488
27.0892
10.1344
14.8038
7.30224
12.65
31.3217
31.6708
6.08336
11.8331
12.0515
18.1587
1.98133
4.24608
3.1345
11.5193
6.41792
4.77643
44.3982
16.761
13.7385
35.9745
7.05076
12.545
45.9265
22.2114
23.9719
35.158
20.0314
56.6483
3.83631
43.8403
5.22852
21.7195
5.33958
4.49105
12.1635
27.453
20.5633
12.7704
11.4076
14.9806
10.0934
15.2985
5.62364
18.2586
3.48349
3.77561
6.75275
1.86666
18.3859
5.0715
7.61894
4.95857
2.20361
4.96305
1.80822
1.69183
3.67608
3.6676
5.70895
1.77878
1.55039
1.94139
17.268
3.83671
6.76908
4.50304
8.01696
1.9543
1.74368
5.20237
1.54216
4.06147
1.6719
5.46587
1.51543
2.91891
4.94847
15.1516
9.10989
9.76441
4.70471
2.56147
1.55482
1.45031
5.42699
4.12552
3.61829
1.82716
1.55694
3.1448
13.481
10.2526
4.01786
10.4289
4.31393
3.23486
1.60211
5.13914
4.7816
1.57533
5.83535
1.6141
1.64467
5.15974
30.0263
23.3923
17.6055
29.8641
47.3619
81.4148
34.9984
18.1415
37.4885
5.15894
40.3808
13.7285
12.7782
5.177
13.6654
12.6973
4.37504
32.4253
12.2416
9.47553
4.18302
12.6681
10.071
11.431
2.01809
10.6696
31.0033
4.01645
5.96226
12.9245
2.25717
12.6248
37.1481
4.59709
6.15308
17.9948
15.1409
6.51738
5.48431
36.8734
19.5592
8.70923
20.2881
42.7009
6.74265
27.9042
54.1434
23.573
19.2374
2.33693
4.37683
3.48547
6.25731
12.1883
6.17713
40.884
11.5456
17.4417
8.19102
18.2309
47.0278
8.37914
30.596
6.4947
26.6257
74.9397
7.81635
20.5572
10.1385
92.0868
7.1861
48.0224
20.4033
5.91148
9.35884
24.2495
40.1877
8.38798
23.1815
130.96
34.327
64.0597
7.66795
11.4673
71.7655
125.166
11.3686
13.4853
4.64782
11.0695
2.44867
2.60143
7.14529
6.46946
2.4451
12.6157
7.1451
110.904
18.0825
11.8394
16.1561
25.0609
35.3249
8.42666
42.8655
11.2649
9.51787
57.5752
9.88191
100.792
17.531
3.2015
2.79275
9.28469
11.206
4.52798
8.97169
26.0862
13.9894
7.73759
2.79694
31.7079
7.87633
6.29392
61.8693
108.823
37.5788
12.9398
35.5174
36.4257
37.6684
38.4253
13.0808
38.6075
37.1925
38.3498
7.93759
19.0981
35.6852
173.27
21.7334
9.22117
23.8996
6.86576
90.8049
16.1255
22.8259
17.8138
20.6002
6.23523
74.1016
79.4516
39.4177
39.2502
53.2386
14.6978
5.54337
17.3895
13.6637
19.9634
70.7718
45.7668
15.8982
13.1771
5.3297
44.0275
13.2601
16.327
149.682
9.7777
20.2247
34.7152
35.4459
9.55273
21.1883
10.7707
38.9175
32.4067
35.7082
26.0994
12.3997
36.1003
13.1538
29.3295
36.5589
40.428
38.751
40.2023
13.416
37.5546
40.3048
181.159
355.751
21.9439
28.5685
402.421
36.4627
87.9853
363.106
19.9316
22.8439
262.911
37.7632
80.0141
319.708
76.309
64.7577
23.3161
56.6013
61.0415
161.373
249.97
26.9885
35.6186
13.1912
51.2016
49.2378
13.7001
4.00392
1.70801
3.11545
9.33418
9.16002
1.72004
4.05129
5.64479
2.81996
22.6649
8.81125
21.6821
5.798
2.76608
11.431
43.9162
42.4527
11.7073
6.48774
23.9814
3.27421
9.57116
6.69526
23.663
3.18432
56.7643
58.5922
16.5992
7.97504
26.921
16.4976
26.9547
26.4138
15.5511
7.7746
16.0083
26.7551
14.3585
57.6874
15.4119
53.505
6.42915
2.81272
7.72418
15.8755
17.5846
3.01756
5.51571
7.11989
26.4207
10.2362
3.68932
25.6387
7.54041
3.58184
16.6553
64.1033
32.8904
121.079
40.8994
13.4333
41.4067
43.6527
16.4028
3.58799
3.83622
6.61343
4.51778
9.63159
9.22138
14.0788
69.7338
7.79869
10.4713
5.09161
29.1102
42.0488
233.431
208.168
76.4834
217.949
125.287
21.4641
4.36758
4.91843
19.9463
4.8827
15.7201
12.9533
20.9247
5.12099
7.12848
13.7171
5.05886
17.6961
25.8285
86.2267
29.9269
45.5279
53.6614
8.8626
15.8291
8.49593
61.0892
13.9994
6.27492
34.7928
9.31491
16.4145
7.16418
52.1683
12.2007
6.36208
36.4098
14.0528
30.3244
114.81
111.519
24.6465
23.5423
62.6542
27.2458
75.7312
43.7489
42.1931
29.3981
100.943
12.4337
111.701
24.051
21.4628
301.093
5.95306
3.3594
14.7823
3.34986
7.79601
3.05662
8.97737
14.7601
15.053
313.02
28.7911
30.4029
39.1741
296.219
77.7533
96.4919
43.2809
128.101
11.9169
120.633
26.0881
28.909
471.691
8.94547
5.0307
26.5622
5.52786
16.9865
4.24105
18.5268
19.3271
16.0929
358.26
36.5874
33.7643
197.695
115.835
36.7483
98.2474
64.5027
21.9002
243.748
18.5787
303.023
16.253
20.2003
7.08024
56.7034
69.254
33.8922
16.3602
250.39
247.484
28.2762
27.1555
12.183
3.38273
15.072
5.48752
6.44302
4.16288
23.5167
24.7822
5.09152
26.6968
8.3808
11.9407
6.59098
20.3854
18.8078
294.209
343.079
24.5095
76.1713
36.9982
31.0654
6.96512
8.11096
86.2968
21.8236
18.6215
22.2761
6.50077
4.19707
45.5576
12.6794
8.62342
4.22584
12.6902
8.5315
5.15833
50.142
15.4386
9.35313
5.13083
15.5384
9.42888
18.3171
26.6732
12.187
58.6996
25.944
7.1666
10.2648
9.65673
30.4172
44.6359
95.8257
6.71116
9.05432
54.1666
10.5341
39.7225
20.6259
11.8322
7.23431
108.425
2.31271
2.48246
11.6672
4.4977
2.60974
2.32891
7.4418
2.19083
7.05191
3.11085
6.8651
2.49207
2.04959
7.31282
2.92208
2.63653
16.045
9.08779
4.01596
2.67576
8.1066
4.06204
6.86608
39.4166
8.82919
8.98152
16.0009
3.08032
5.66501
31.6712
11.4937
54.1996
7.27317
12.149
24.5772
3.03534
8.73532
2.78251
7.38963
2.76146
13.0687
2.9504
145.86
24.4963
37.6687
21.6307
10.3886
20.8577
46.3296
50.8828
11.3885
89.928
6.19014
17.0396
63.8592
42.9964
76.3455
159.49
13.1534
85.3129
18.8462
4.4212
2.00663
9.8406
3.71721
10.299
4.30113
2.03627
6.40435
2.93929
24.6521
9.1298
5.92046
32.1657
3.12255
12.1269
43.5449
46.9147
11.6934
4.86052
10.4223
3.77868
2.20347
12.0072
2.05494
5.37772
6.52244
40.425
9.77285
3.63514
34.3034
8.07064
3.16295
20.4103
9.14032
42.179
20.6164
42.4044
40.8528
20.884
9.17944
20.797
42.4891
19.6104
19.1942
8.24154
3.76701
11.5341
41.8291
41.3733
3.73826
8.3219
5.82687
2.25953
4.11153
11.5712
2.25778
11.5767
5.85301
5.81702
11.2174
2.24337
4.11784
2.25702
5.7
11.589
8.20993
41.3814
11.4714
3.70903
41.3914
8.17614
3.72315
19.7712
19.9629
4.31327
15.1802
4.78452
11.7669
4.59804
4.52215
8.51031
6.65801
27.0326
5.90045
29.1069
6.948
6.57344
19.7293
7.55619
51.8017
6.36555
12.2614
5.09773
11.8476
29.5163
7.79379
60.8776
8.37735
14.4263
13.5487
5.70971
31.0104
5.55487
6.32457
25.4173
23.7143
6.02624
6.55336
12.7414
14.4584
4.68043
8.52599
45.3374
45.7289
4.69782
14.3511
42.0796
13.8624
42.224
13.7658
14.6657
47.6366
8.62386
4.77424
46.6576
4.73068
14.8477
41.8652
13.4487
41.8739
13.5963
46.9178
15.1368
46.6341
45.4547
15.0373
46.0809
26.65
10.5953
116.715
13.8691
21.5561
14.1449
4.58165
8.80554
40.9838
4.75682
45.8947
12.6502
14.8319
48.6589
4.82072
8.88415
4.81059
15.0535
48.0214
35.5639
12.8588
40.0893
11.4933
5.08368
46.117
14.9442
9.10579
5.13876
14.6641
8.98575
3.00942
8.41088
4.73397
2.02782
2.04156
8.46892
3.00049
4.42494
38.0969
12.997
7.41069
4.42924
12.9846
7.41177
2.87148
8.60652
5.1745
2.0108
1.99842
8.56361
2.89902
2.85052
1.99202
8.52328
5.15208
2.85904
1.98523
8.51238
14.6628
4.86918
45.6836
8.63958
45.5276
14.6506
4.85482
43.7666
13.8212
43.6425
13.878
8.5645
1.96142
2.90606
4.70269
2.91774
8.50507
4.7227
14.455
44.2442
8.51126
4.76925
44.7087
4.79549
14.3436
43.3413
13.6732
42.6679
13.8229
40.7515
13.1629
40.795
41.8147
13.8951
41.3022
40.9644
14.5933
13.3984
42.9157
8.36139
1.95027
2.93026
4.72242
2.88624
8.52401
4.65273
12.935
4.29457
7.69454
39.229
4.31481
39.6641
12.8297
14.0501
44.2883
4.80479
8.35361
4.7261
14.3632
43.3302
41.8829
13.6755
42.5639
13.535
35.6902
6.82455
10.1802
6.71184
37.0976
12.0192
2.53831
3.87809
7.73807
3.89694
11.8965
7.86372
53.7899
48.4719
35.1776
10.1238
6.62319
6.64138
35.0051
45.4051
46.6911
52.0286
19.5315
51.8834
51.3015
19.4196
51.4164
34.5787
35.4371
11.5411
2.43861
3.80328
7.48089
3.78101
11.6665
7.26086
34.2331
6.43741
9.99622
6.49083
33.977
34.2199
6.51941
9.98609
6.49507
34.4623
41.7861
37.7553
4.55173
37.5657
13.251
7.59533
4.6084
13.1073
7.48204
2.93363
8.84971
5.37182
2.13354
2.07671
8.62587
3.02297
2.97197
2.11111
8.79375
5.40605
3.00024
2.09576
8.70794
5.14252
47.4833
19.1575
7.80436
5.14233
19.1702
7.8174
3.47945
10.6972
7.54488
2.48983
2.49073
10.6481
3.48391
3.49833
2.51501
10.671
7.56725
3.4981
2.51007
10.6556
1.72467
4.83877
1.19433
3.33859
1.25886
1.62388
5.26867
3.02028
18.7571
11.3714
4.72952
3.17699
8.5949
4.88266
2.04104
1.5879
4.22158
6.21587
1.45936
2.19387
7.09703
3.63787
33.834
12.7381
5.28567
3.48193
13.4743
5.56511
2.53563
7.82095
1.86367
5.40801
2.62618
1.80539
7.58159
2.45564
1.70158
7.01174
5.25167
2.37018
1.75333
7.3727
44.449
7.12242
10.6085
40.1991
7.317
126.781
18.4043
3.03205
4.69962
9.92771
4.6521
18.8424
9.71583
47.3118
10.6757
7.50873
7.4805
48.0851
52.123
19.8612
51.2623
52.2644
19.9774
51.6914
18.4192
3.09224
4.71195
9.85732
4.69131
18.5641
9.82568
46.7842
7.53759
10.4975
7.43097
47.1981
47.0883
7.49624
10.5307
7.44267
47.5368
10.4661
18.2489
10.2952
44.899
4.73443
7.10562
18.1272
7.15259
44.6846
18.2924
17.9281
10.0182
10.0763
44.9031
45.0941
43.6778
4.55282
6.97874
17.809
6.9333
43.997
17.6439
9.68961
17.6078
9.72565
9.85223
17.7155
9.79846
5.60332
49.5563
20.6749
8.41655
5.65029
20.4972
8.34241
3.81113
11.077
8.14682
2.75504
2.78637
11.3535
3.75655
3.89744
2.86345
11.7292
8.3327
3.91651
2.84879
11.6302
1.75262
5.27355
6.20806
2.342
2.21554
4.5436
1.83479
1.67585
2.07815
5.79679
4.19279
2.11083
1.65283
4.28356
5.2502
44.6012
18.561
7.60381
5.17978
18.7802
7.72587
3.74162
11.1347
8.19258
2.79529
2.78546
11.0632
3.75478
3.70651
2.73541
10.8352
8.11854
3.66252
2.7619
10.9503
1.68517
4.26464
5.75181
2.13492
2.12475
4.24759
1.69248
1.67322
2.09012
4.19172
5.70367
1.66118
2.10783
4.21714
12.4608
7.0759
7.32678
12.07
31.4609
33.16
5.12263
6.26072
1.60046
2.2024
1.65629
4.74355
6.89534
13.1784
9.35066
8.04256
14.3817
5.32397
1.82833
7.35352
2.30569
5.48856
1.72506
7.19704
3.49577
8.779
2.38365
12.6352
2.52003
3.30507
13.784
5.5722
101.143
8.45184
7.49816
7.29732
37.1538
5.10602
6.46586
28.6774
4.80241
6.87793
31.5013
3.86408
15.3113
5.25779
39.3124
5.58935
3.65967
16.5159
3.12215
6.36198
2.22444
11.7891
2.18325
3.05422
10.7457
4.73142
5.66617
99.9584
26.7692
7.26885
4.3291
20.9881
4.38965
1.19315
3.01083
1.44721
4.11689
3.17557
1.5162
42.825
36.877
24.0403
13.9856
30.8668
12.44
8.34468
10.8662
2.25462
2.88086
6.64755
2.17073
9.37352
5.46058
1.28669
3.64367
1.7045
5.06211
3.66775
1.64473
18.1456
10.7526
16.5177
11.5591
6.37662
1.89179
7.92436
2.66094
5.90367
1.99151
8.36267
10.8846
19.1844
10.8748
49.1939
5.24717
7.77619
20.4374
7.79755
48.8645
20.4681
19.2063
10.858
10.8927
46.7363
47.7384
49.0826
5.3231
7.79497
20.6243
7.76998
48.7019
21.2793
10.4597
18.5549
10.5913
10.8641
18.9257
10.7718
17.9139
26.0558
16.8323
7.21866
9.58047
44.6573
9.71698
45.0627
23.9102
15.7053
16.0177
50.2333
49.8929
7.02169
9.539
44.009
9.54471
43.0366
15.7563
23.4054
15.725
15.6324
23.3084
15.6621
1.9494
5.07833
2.44528
7.55862
2.50356
1.91411
5.31045
1.97356
2.54293
7.78348
5.49914
2.53749
1.9812
5.43123
5.9435
50.5294
24.214
8.36096
5.98158
24.0636
8.29431
4.42508
16.5577
10.5366
3.3504
3.34465
16.5565
4.42684
4.43869
3.36393
16.6818
10.5482
4.46592
3.35085
16.6009
1.99655
5.6596
7.88676
2.54914
2.54512
5.62936
2.00276
1.99279
2.54537
5.54567
7.87416
1.98812
2.54494
5.59863
2.22227
6.00123
8.10771
2.74919
2.74208
5.95388
2.2336
2.20205
2.72083
8.04594
5.85145
2.72016
2.19796
5.89208
5.80237
47.8597
23.185
7.95305
5.80068
23.1544
7.96153
4.43984
16.109
10.4457
3.41955
3.42581
16.1198
4.43203
4.44501
3.4321
16.1712
10.466
4.43185
3.43581
16.1368
2.14218
5.75009
7.90687
2.6715
2.6656
5.76282
2.14433
2.15473
2.68814
5.80178
7.92541
2.16492
2.67677
5.77952
19.0306
3.43233
14.2669
5.49266
12.9427
25.8385
4.53566
37.5605
5.98219
7.97314
6.06051
36.6473
17.7139
3.30132
12.0303
4.29068
12.2643
4.3459
17.3946
42.9255
7.98753
8.17279
119.898
6.35115
7.31818
3.00849
2.23491
10.501
2.33555
6.81691
11.149
6.25246
4.83034
2.01724
1.55163
1.9377
4.45086
6.80292
38.4466
13.145
15.0362
30.9846
7.8594
3.17873
2.56441
12.4006
2.4694
8.33632
11.8433
5.67029
1.75216
1.46318
3.72018
1.8284
4.04129
5.19867
7.64658
2.19726
2.62615
9.64913
8.55667
2.06372
6.06379
40.4284
35.749
4.34404
3.17398
1.25917
1.52739
3.22953
1.55374
4.21436
22.926
12.0911
11.8859
27.2357
5.19305
1.6977
1.30653
3.41341
3.59529
1.62159
4.66561
6.12753
2.52181
7.7408
1.93427
7.92567
1.96905
5.86817
108.661
32.0812
3.90162
15.0468
4.90165
30.4664
15.8215
5.29664
7.73417
11.5581
7.4551
34.7749
4.13292
17.4899
5.85147
36.254
16.7901
5.64106
6.34596
10.9852
6.98509
18.7139
43.2149
19.0684
8.56035
12.1102
166.902
11.1808
58.9598
45.0161
20.2108
19.5093
9.18236
13.6912
14.7342
22.753
47.9546
22.6062
21.2765
47.5708
22.1877
23.1934
46.8395
22.7507
10.2416
15.3516
15.6356
46.4522
22.2331
22.3717
31.2705
61.3199
39.6367
44.3807
260.506
64.9323
226.907
101.262
9.73226
15.1744
15.1346
22.0752
46.1112
22.0327
22.0756
46.0987
22.0369
221.587
211.81
2.24906
6.02635
2.76596
8.10273
2.74746
2.25766
6.02107
2.26571
2.76851
8.12673
6.05039
2.76482
2.26906
6.04402
5.8277
46.2616
22.6656
7.92561
5.81598
22.6249
7.94643
4.5258
16.2245
10.73
3.56236
3.5539
16.2173
4.5351
4.49691
3.52715
16.1435
10.6722
4.48877
3.53217
16.1562
2.31593
6.16356
8.23659
2.8219
2.81857
6.14276
2.31595
2.30274
2.79774
6.08226
8.18976
2.29739
2.80256
6.10438
2.34679
7.84653
10.0666
2.89173
2.89728
7.81615
2.34164
1.89738
4.6479
5.75467
1.58435
1.88352
5.80873
1.59057
2.31996
2.83746
9.96791
7.6652
2.86328
2.30056
7.73779
4.89664
23.546
19.9319
6.00224
4.90562
19.827
5.97374
4.07713
17.336
14.0668
3.39729
3.41371
17.458
4.05698
4.11908
3.47101
17.7219
14.1961
4.14582
3.44831
17.6137
1.86276
4.50804
5.69749
1.57401
1.87001
5.64293
1.55861
2.25052
7.38264
9.63103
2.74709
2.77331
7.4534
2.22927
2.27308
2.81127
7.59612
9.72386
2.28182
2.80173
7.53182
11.7734
15.2182
15.981
12.1302
3.67417
13.7107
3.64752
11.9404
13.6833
3.53733
12.3128
3.58578
3.55124
12.9906
12.2682
3.55648
13.1688
18.0325
42.7364
19.7604
11.3183
14.0571
14.7376
11.703
11.4315
3.62833
3.56821
11.4054
11.7194
3.56381
30.6853
128.047
27.9798
10.4957
6.99006
6.99305
42.445
9.28688
2.95223
10.1526
3.43444
8.09877
10.821
3.2358
10.7582
6.88264
6.99782
9.69619
11.0986
3.36714
3.59962
9.05806
11.1994
3.38515
1.59725
3.59118
1.29737
4.37224
1.32315
4.51929
1.56188
2.0376
2.61902
6.40074
8.0688
2.08414
6.24016
2.55764
1.64293
3.69585
1.38859
4.76653
1.36174
1.67786
4.65295
1.97934
5.77493
7.81902
2.42203
6.05214
1.93052
2.48469
15.2235
5.80071
7.89769
5.51463
17.4469
9.1721
3.53931
13.8655
3.54723
11.5646
11.8706
3.24669
7.06364
6.17774
2.84879
3.80076
4.60331
3.73381
10.6777
20.2072
7.61063
5.54171
5.38368
35.4234
8.05683
10.7893
3.42065
3.24241
10.7383
8.17971
3.19552
13.3944
16.4668
17.2065
12.4492
3.56565
3.56871
13.0064
12.3474
3.55777
13.0913
11.8996
3.43152
11.2103
3.50194
11.907
11.3833
3.50457
36.3284
35.5766
13.9307
18.0931
17.7242
11.889
11.5446
3.58763
3.6203
11.8186
11.5393
3.55994
32.405
34.5134
1.70597
2.05741
4.57823
6.51606
4.84208
1.65816
2.12171
1.79835
5.34572
8.23042
2.31283
5.96167
1.84582
2.23685
23.6844
24.3968
24.06
26.3266
26.8883
25.0252
24.6968
25.456
24.5678
23.6733
47.4421
23.7368
14.4389
18.7394
18.756
47.433
23.7398
23.7788
28.4472
27.56
27.8714
28.5016
27.1582
27.5136
26.8996
26.5116
27.2191
25.7693
25.2427
26.1674
27.1237
27.3642
26.7792
25.4099
26.721
26.2254
219.861
31.141
50.2315
58.7437
28.3821
34.8414
26.8216
26.6729
29.7458
14.5301
18.7802
18.8028
23.9487
47.5665
23.8993
23.7737
47.396
23.8024
28.3974
12.4911
26.9428
4.7322
24.4404
47.1173
6.56644
28.0598
8.36663
27.5873
5.09514
25.88
32.6868
6.43943
25.2679
24.1956
4.53245
4.69512
23.8064
24.8986
5.21031
45.3564
45.1641
18.1433
22.6117
22.8006
44.4784
44.7957
24.5838
3.90963
23.8744
4.00848
24.0653
24.3441
4.00326
25.2614
4.01666
25.7803
4.09947
25.3317
25.692
4.05713
24.7644
24.2847
4.07812
4.12045
24.2096
24.823
4.06923
17.5673
22.3404
22.1248
42.7947
43.2583
44.0335
43.7187
22.5077
3.7092
23.7118
4.07286
22.9421
22.8862
3.854
22.7299
3.86002
23.3272
3.99112
23.4726
22.6238
3.94801
22.854
23.7166
4.18017
4.06686
23.053
23.5994
4.03794
26.0023
4.74454
26.5206
4.69858
25.6815
26.5324
4.54612
26.1834
4.37297
26.2382
4.2746
25.7482
26.7072
4.42569
25.6518
24.6906
4.52917
4.29432
25.1743
25.2205
4.45179
2.30699
7.78679
2.85974
9.98186
2.85274
2.31217
7.77676
1.88726
4.70394
5.85269
1.58401
1.88756
5.86159
1.5822
2.31607
2.86383
10.0005
7.77762
2.86489
2.31603
7.79037
4.97619
23.4244
19.9442
6.06453
4.98652
19.8734
6.04766
4.20504
17.6361
14.3899
3.50724
3.52462
17.7403
4.18339
4.20946
3.53459
17.8489
14.4336
4.2189
3.52829
17.7909
1.89126
4.68072
5.838
1.58991
1.89324
5.82373
1.58893
2.31748
7.66962
9.8973
2.85045
2.86328
7.7133
2.30805
2.31936
2.86966
7.75496
9.92633
2.32182
2.86615
7.73611
2.18547
6.91283
8.89142
2.64781
2.66995
7.00606
2.1664
1.84668
4.50125
5.56787
1.60197
1.87214
5.47625
1.58113
2.23133
2.76876
9.07891
7.27182
2.72627
2.26385
7.14853
4.80094
21.8611
18.3975
5.72279
4.75424
18.5964
5.78201
4.10948
16.9039
13.7602
3.47987
3.47025
16.8345
4.12278
4.09458
3.42731
16.5478
13.6727
4.05579
3.45814
16.7305
1.91183
4.69154
5.6635
1.62271
1.89861
5.72063
1.63316
2.32137
7.54825
9.56477
2.85048
2.84345
7.52364
2.32611
2.315
2.81115
7.40034
9.50615
2.2976
2.83438
7.47883
8.85069
5.50874
5.99072
8.30076
11.0856
11.8962
11.3384
11.908
9.4484
8.02082
6.87927
10.2855
10.821
11.659
10.394
11.877
3.37711
8.22469
2.60273
11.8828
2.72394
13.5319
3.20275
4.40279
6.70574
27.4304
26.0214
5.25498
21.7201
5.24405
3.64435
8.68025
3.15693
17.4734
2.89637
4.12639
15.6035
4.03343
15.1969
20.398
4.63677
17.634
3.84359
4.80895
6.19873
28.3225
5.11014
7.45498
5.01376
6.51775
6.47136
227.668
8.00725
8.43537
7.13497
27.5296
4.49032
46.8215
5.86796
5.04155
185.293
8.25052
11.092
9.51562
10.0343
3.12185
2.53792
6.89006
11.0544
10.7107
2.52723
3.12334
3.76498
4.5042
13.5547
16.9915
13.652
3.67627
4.6452
3.08655
6.98255
10.7527
2.46089
10.6849
2.49704
3.03263
3.80782
14.1327
17.1041
4.6116
13.7432
3.77853
4.70193
21.7737
3.4711
3.59598
21.7258
22.0293
3.56111
21.5588
21.6519
3.37344
21.99
3.56156
21.8454
21.7902
3.48124
21.9009
22.5601
3.61447
3.68158
22.2242
22.1499
3.58226
45.3908
45.2476
18.4922
22.9026
23.0976
44.6786
45.0567
23.6368
3.74983
23.4896
3.78951
23.7122
23.4919
3.7738
23.7674
3.91309
23.5573
3.86176
23.9886
23.3905
3.86222
23.4344
23.1053
3.79303
3.784
23.3573
23.1295
3.78269
22.1618
3.54057
3.61482
21.767
22.1593
3.63092
21.6753
22.4225
3.65711
22.9116
3.74175
22.1992
23.034
3.64553
22.4838
22.8346
3.62817
3.74063
22.4148
22.9995
3.6374
21.8317
3.44472
22.0732
3.59601
21.9184
22.0219
3.58826
22.3139
3.84491
23.0383
3.84444
22.3763
22.922
3.80055
22.1907
22.7495
3.73141
3.77074
22.2617
22.7301
3.73325
18.2111
22.7227
22.5501
43.3065
43.7206
44.357
44.0396
20.3166
20.3781
20.1148
20.5929
20.2341
20.0197
19.9052
20.3535
2.86758
0.761053
2.88369
0.76752
2.81709
2.93589
0.767586
2.94996
0.791441
3.01094
0.799948
2.96305
2.99788
0.780041
20.1002
19.5732
19.8976
19.7735
20.4579
20.8897
20.7489
20.5827
2.85669
2.81001
0.786818
0.809786
2.80303
2.86309
0.785743
37.6235
38.1693
16.7077
20.2858
19.9058
39.6557
38.9449
20.686
20.4619
20.3621
20.7858
21.0998
21.3469
21.0215
21.4728
2.3099
1.22499
2.42979
1.10306
2.39346
2.33445
1.20932
2.59941
1.02325
2.53038
0.957485
2.59814
2.54897
0.964854
20.736
20.3724
20.3909
20.6924
21.0082
21.4372
21.1164
21.3229
2.62946
2.66467
0.867985
0.904394
2.644
2.64075
0.913144
17.5419
20.6593
20.9121
41.3939
41.1625
40.3594
40.8319
19.8193
20.1593
19.9086
20.0606
2.67003
0.755575
2.77647
0.765618
2.70312
2.74002
0.770022
19.599
19.2918
19.6247
19.2704
2.4846
0.957575
2.49088
1.01509
2.44691
2.53745
0.944585
19.8242
20.0795
20.0757
19.846
19.6057
19.3771
19.6966
19.2823
2.64473
2.67406
0.789038
0.828005
2.67701
2.64656
0.795003
21.2667
20.694
20.9211
21.0317
2.96557
0.860777
3.01764
0.825608
2.97079
3.01053
0.852709
21.8151
22.3818
22.1726
22.002
2.81946
0.958709
2.72522
0.92143
2.77349
2.7668
0.913658
21.6195
21.7057
21.3729
21.9667
21.4502
21.2428
21.0883
21.6184
2.84923
2.81223
0.840366
0.880253
2.86347
2.80043
0.873952
2.10441
6.78045
2.60341
8.52956
2.57336
2.12563
6.74067
1.73392
4.25909
5.16571
1.48928
1.7351
5.16256
1.48752
2.09359
2.55401
8.48848
6.71337
2.55685
2.09377
6.71382
4.29436
19.2301
16.3698
5.1329
4.28512
16.399
5.13863
3.72714
15.228
12.5163
3.23668
3.18635
15.0057
3.75977
3.6879
3.12245
14.7824
12.2428
3.67525
3.14012
14.8384
1.77113
4.35542
5.20012
1.50617
1.75348
5.28301
1.51898
2.18681
8.75885
8.906
2.71532
2.64666
7.161
2.27221
2.13516
2.57369
6.75256
8.62063
2.11356
2.59502
6.86351
2.40916
8.04336
11.59
2.86048
2.88534
8.10182
2.38943
1.98766
4.99818
6.4699
1.67438
1.99259
6.46009
1.67043
2.41339
2.90057
11.6307
8.14126
2.89122
2.42008
8.12731
4.28356
18.5138
16.0009
5.03564
4.27926
16.0094
5.04043
3.75737
15.053
14.0449
3.31655
3.32956
15.1122
3.74306
3.77258
3.34107
15.1601
14.0971
3.76916
3.34346
15.1638
1.99172
4.99864
6.47466
1.67364
1.99187
6.46614
1.67345
2.40912
8.07087
11.617
2.87728
2.88859
8.10847
2.3998
2.4194
2.8998
8.15108
11.6618
2.41923
2.90084
8.14175
19.5805
19.8438
19.5453
19.8215
19.3586
19.1644
19.1853
19.3144
19.5342
19.482
19.7286
19.3267
19.3653
19.1445
19.2737
19.2853
37.0573
36.7942
15.6866
18.6237
18.6805
36.4933
36.5865
20.0235
20.0076
20.0708
19.9371
20.3722
21.0218
20.3921
20.8501
20.0586
19.9892
20.0159
20.0728
20.2824
20.3907
20.6347
20.1369
19.45
19.8908
19.5233
19.8982
18.8468
18.1017
18.5162
18.5236
19.3005
19.6698
19.0432
19.8332
19.0637
19.0127
19.1964
18.8139
19.7314
19.9141
19.8476
19.8209
19.677
19.4022
19.73
19.38
19.8403
20.1429
19.9381
19.9724
19.6026
19.4601
19.727
19.3349
16.0079
18.7212
19.2083
141.155
44.773
36.7201
38.0036
2.77323
18.1152
18.3337
2.72663
18.1533
2.75403
2.74872
2.80525
2.8364
17.565
17.9018
17.8862
2.83057
2.80882
2.80601
17.8302
17.5538
2.81071
17.8687
2.78684
2.83054
2.77287
18.3519
18.1872
2.75614
18.1696
2.75137
2.77633
17.3953
34.0837
33.986
2.72141
18.214
18.4862
2.71837
18.3884
2.7043
2.73394
2.73062
2.70638
18.553
18.7479
18.5587
2.71998
2.71796
2.72236
18.2011
18.373
2.69505
18.3721
2.70446
2.71245
2.72914
18.6879
18.7772
2.72643
18.5831
2.74107
2.71556
17.4449
34.1018
34.104
2.71318
18.099
18.0051
2.69375
2.72495
17.9312
2.68
2.74771
2.7608
17.6619
17.3644
17.6472
2.74186
2.76763
2.71594
18.09
17.9423
2.67153
17.9239
2.68015
2.71032
2.74571
17.7278
2.78236
17.3635
2.75853
17.6537
2.76725
2.79288
18.6296
18.4821
2.75302
2.77598
18.6871
2.76943
2.80465
2.78999
19.174
18.9751
18.945
2.79063
2.80585
2.80209
18.8429
19.1364
2.76352
18.9111
2.77756
2.7887
2.79562
18.5071
2.78472
18.7432
2.77943
18.7173
2.79775
1.09789
0.253528
0.256068
0.219734
0.882366
0.217892
0.896012
1.05388
0.252601
0.25418
0.218732
0.87173
0.217266
0.868182
2.34741
7.90851
2.82214
11.1998
2.8091
2.35817
7.841
1.93491
4.81785
6.18311
1.62508
1.93276
6.20757
1.62747
2.34899
2.81374
11.1194
7.75058
2.81282
2.34796
7.78378
4.05183
17.3662
15.0879
4.82543
4.10218
14.9772
4.7631
3.53087
14.016
13.1516
3.11077
3.13785
14.1031
3.49946
3.57482
3.21096
14.2983
13.2401
3.61734
3.17578
14.2053
1.8983
4.76697
6.16432
1.61107
1.91579
6.13484
1.59712
2.27778
7.58952
10.9043
2.70516
2.72799
7.63423
2.25948
2.30517
2.78909
7.72572
10.9769
2.32757
2.76043
7.68596
2.52923
10.2283
12.3761
2.87222
2.8996
10.2875
2.50481
2.13226
5.86007
7.3106
1.77624
2.13498
7.30122
1.77411
2.53502
2.90966
12.4159
10.3307
2.90474
2.53881
10.3121
3.95775
16.7661
14.4128
4.62397
3.95839
14.4201
4.62239
3.52546
13.8724
13.4727
3.21558
3.20854
13.8469
3.53465
3.53506
3.21708
13.8345
13.4622
3.53507
3.21708
13.8423
2.13209
5.87001
7.32319
1.77422
2.1332
7.32143
1.77285
2.53021
10.3671
12.5177
2.90645
2.90056
10.3558
2.5343
2.53648
2.90772
10.3516
12.5033
2.53707
2.90775
10.3536
5.11777
13.8139
12.8309
11.5621
2.8305
2.93925
12.4191
1.49329
0.164973
1.52886
1.39124
0.143593
1.34004
0.153268
1.70335
0.160245
1.58743
1.44272
0.186279
1.55762
0.15479
1.25975
0.170179
0.132029
1.16052
1.0681
1.36303
0.14347
10.5672
2.57089
3.9763
1.6957
4.53551
9.68876
2.61926
1.21549
0.131635
0.128034
0.98363
1.03151
1.15941
0.140529
10.6195
2.54634
5.12919
1.68858
4.57879
2.61547
11.4835
3.85831
0.223249
0.242844
3.6496
3.74653
3.48841
0.231704
2.5366
8.30348
13.1932
12.626
1.65352
2.55294
7.9976
4.17834
14.0646
14.2483
12.983
3.01444
2.80372
12.707
0.248515
1.91261
2.2234
2.08417
0.223569
0.243304
1.80623
0.23154
3.23766
3.5353
1.96295
0.211362
0.244649
1.81478
1.77346
0.206935
0.193524
1.36164
0.225153
1.5451
1.59069
12.5147
1.60577
2.67455
5.46275
2.53165
6.8664
11.844
2.59106
17.405
2.55303
17.5111
2.54828
2.5972
17.3616
2.61244
2.59288
16.8671
17.0411
17.0922
2.62135
2.58508
2.61922
17.1622
2.64117
16.8909
2.62715
17.1212
2.63062
2.58609
17.4705
2.51657
17.2636
2.54447
17.3247
2.55873
16.7088
32.4589
32.6423
2.6384
17.8623
17.875
2.58623
18.0059
2.5999
2.62277
2.65766
2.6684
18.3853
18.3043
18.2287
2.64242
2.68348
2.64402
17.9983
18.3014
2.58824
18.1533
2.62963
2.60369
2.65266
17.9284
18.138
2.66239
18.0714
2.67793
2.63744
2.56916
17.7275
2.56218
17.5772
2.55488
2.57614
17.6727
2.56924
2.52015
17.8323
17.6253
2.55697
17.7276
2.53341
2.57458
17.8521
2.56712
17.905
2.56148
2.58104
17.7891
2.56316
17.5338
2.51605
17.5322
2.54855
17.621
2.52888
2.65131
17.7958
17.5275
2.57446
2.61979
17.6414
2.60651
2.69582
2.73572
17.4705
17.1651
2.71662
17.424
2.71371
2.66361
17.8499
17.7435
2.64144
2.68419
17.6934
2.6188
2.68257
17.2713
2.66696
17.125
2.65114
17.3777
2.69878
16.504
32.3689
32.2304
0.825609
2.60136
3.74847
0.620602
3.43982
0.597977
0.878556
1.23076
1.41648
4.20812
5.49051
5.0125
1.09335
1.65995
0.769119
2.51662
2.95735
0.551973
3.17606
0.571498
0.725629
1.39998
7.69116
5.66647
2.28363
6.1645
1.58033
1.94249
16.2222
16.541
16.1043
30.1295
15.8186
15.9124
15.8893
16.0155
15.8144
15.9156
16.401
16.0635
16.0424
17.4965
22.3071
20.4868
21.22
70.8267
24.5626
17.1521
18.017
18.8445
57.7731
179.012
39.736
0.519395
2.27984
2.40097
0.548727
2.28734
0.511668
0.554633
0.514538
0.516225
2.19433
2.27502
2.2487
0.499994
0.529287
0.500774
2.21242
2.16243
0.477337
2.22078
0.49247
0.485682
0.530987
2.39303
2.32161
0.563469
2.3065
0.559799
0.542485
17.4455
22.487
19.8958
19.0184
69.9365
22.101
30.3399
16.9818
17.3052
18.1908
57.8365
121.82
29.7648
0.497734
2.29634
2.36692
0.536012
0.52224
2.29511
0.503518
0.482821
0.486068
2.18585
2.28947
2.23637
0.471861
0.49421
0.483358
2.23155
2.18167
0.471565
2.2381
0.485948
0.470137
0.492913
2.32722
0.507033
2.30904
0.508474
2.28209
0.499554
0.90984
2.7445
3.99217
0.645755
0.920735
4.03236
0.64636
1.26316
2.05264
4.37046
11.5401
5.28797
1.05055
2.38846
0.801568
2.61459
2.92061
0.613437
3.27896
0.629489
0.728836
1.76825
9.01268
2.66835
22.0999
1.74067
10.7156
3.07215
1.08036
0.243713
0.240932
0.208066
0.933198
0.898574
0.210275
1.164
0.246678
0.248569
0.213298
0.942683
0.950671
0.212297
1.20039
0.244951
0.246404
0.209622
0.961145
0.208454
0.973179
1.18615
0.246533
0.249017
0.21218
0.953597
0.210078
0.960123
2.39681
10.0002
2.79548
11.7602
2.74567
2.43758
9.80372
1.98807
5.48625
6.75576
1.64551
1.97256
6.81579
1.65626
2.36157
2.6754
11.5133
9.51149
2.70304
2.3404
9.60596
3.59944
15.0486
13.0227
4.19895
3.60063
13.0104
4.19775
3.23569
12.5204
12.192
2.96376
2.95703
12.5163
3.23957
3.22262
2.94243
12.5077
12.1574
3.22401
2.94285
12.4959
1.98047
5.52351
6.75148
1.6456
1.96982
6.82378
1.65718
2.36498
10.0422
11.4533
2.70009
2.68579
9.7142
2.39234
2.3412
2.66499
9.48523
11.3645
2.33394
2.668
9.54025
2.44743
10.8658
11.4744
2.67569
2.69015
10.879
2.4353
2.16353
6.50894
9.11344
1.8328
2.16092
9.12762
1.83583
2.44412
2.68558
11.4696
10.8574
2.68671
2.44209
10.8676
3.52882
13.9155
12.166
4.11235
3.52349
12.214
4.11775
3.16646
11.8743
11.64
2.92561
2.90911
11.7976
3.18471
3.16144
2.90001
11.7107
11.6025
3.15593
2.90454
11.7497
2.15143
6.48831
9.11109
1.82294
2.15068
9.12023
1.82267
2.43661
10.9615
11.5317
2.69655
2.68182
10.906
2.44896
2.43333
2.6744
10.8614
11.4995
2.43133
2.6779
10.8794
8.51319
4.20417
3.74714
3.11991
3.62755
3.77136
3.24458
0.623952
0.0954296
0.651626
0.59309
0.0867551
0.568832
0.088041
0.739009
0.0988299
0.703724
0.635311
0.0898014
0.66206
0.0910938
4.22444
5.29394
3.22373
3.63932
3.28679
4.12514
5.32408
4.30686
5.74634
3.41315
3.60124
3.33136
5.27172
4.42413
0.702606
0.0948834
0.708798
0.631862
0.0942469
0.622466
0.0878871
6.72278
4.41421
4.33606
3.3385
3.55291
3.57025
3.31681
0.0901131
0.739199
0.724555
0.646314
0.0843758
0.0837288
0.659693
5.01317
2.94196
3.83567
3.88179
3.23468
5.73943
3.7663
4.64332
5.34479
3.45452
3.65503
5.391
3.54071
4.50741
0.428097
1.9575
0.427437
1.9496
0.431771
0.4238
1.95244
0.433672
0.447382
2.16571
1.9967
2.00645
0.433879
0.452849
0.430552
1.9859
0.440183
2.13481
0.426067
1.99681
0.442072
0.43233
1.94393
0.455847
1.92187
0.436199
1.94651
0.451884
15.3939
15.1958
15.3591
15.6677
15.5791
15.5721
28.2919
15.5645
15.6386
15.5159
15.2877
15.4417
15.4381
0.449019
1.95795
1.98306
0.433284
1.98876
0.444481
0.438494
0.474843
0.502532
2.11892
2.12676
2.07822
0.49353
0.485043
0.465852
1.99732
2.06931
0.483306
2.02651
0.485923
0.462114
0.459027
2.03468
2.09255
0.461148
2.04157
0.469997
0.44936
15.1567
15.1446
15.123
15.073
14.9684
15.0406
15.1263
15.1276
15.0944
15.0974
15.0083
15.0755
0.451982
1.95055
0.435758
1.94172
0.440103
0.447641
1.94457
0.474633
0.509802
2.03483
1.97652
0.496872
1.98439
0.490695
0.470449
1.99093
0.488211
2.03348
0.492698
0.466065
1.98559
0.45626
1.93867
0.463861
1.92672
0.444547
1.94144
0.474385
0.429038
1.997
1.96704
0.425629
0.422496
2.00137
0.43153
0.443912
0.471955
2.11839
2.17785
0.456401
2.06538
0.45978
0.441316
2.05023
2.11086
0.455242
0.453876
2.05607
0.443121
0.431349
1.98381
0.439804
2.14192
0.424724
2.013
0.446801
15.1421
15.1175
15.1229
15.0284
15.0796
15.1351
29.1314
15.2274
15.115
15.1847
15.0692
15.0493
15.0897
13.2284
12.3563
10.9212
25.4065
6.73758
5.20786
6.38334
97.7868
31.4836
12.0571
7.63859
9.31975
9.59983
6.92044
7.88241
99.101
14.3711
14.4783
14.3603
14.411
14.3708
14.3767
14.3952
14.4323
14.3883
14.4889
14.3476
14.3587
13.3256
14.4563
13.9377
10.8897
13.8701
13.308
11.1039
9.47666
12.3976
14.5103
14.3299
14.1851
1.26041
0.226426
0.2272
0.193153
1.0546
1.03902
0.193149
1.30394
0.226797
0.225089
0.193816
1.06386
1.07307
0.194749
2.39679
10.7631
2.64016
11.2607
2.62469
2.40572
10.7639
2.14767
7.16188
9.89595
1.88938
2.17197
9.45947
1.85007
2.39617
2.60908
11.2373
10.9532
2.61496
2.40119
10.8301
3.35756
13.0093
11.4542
3.96379
3.39194
11.325
3.92438
2.96721
10.7362
10.9017
2.7133
2.7392
10.8541
2.9368
3.00404
2.79762
11.1147
11.0306
3.03513
2.77105
10.9962
2.19056
8.63066
10.2511
1.92339
2.19033
10.3774
1.93266
2.37096
10.8274
10.986
2.53441
2.55384
10.9162
2.35603
2.38965
2.59832
11.0227
11.108
2.40136
2.57776
11.0043
2.00713
9.67644
9.51618
2.10144
2.10352
1.99841
9.67806
1.89479
9.11552
9.61896
1.74075
1.88953
9.65884
1.755
2.00426
2.09953
9.51932
9.7181
2.09598
2.00436
9.67736
2.63401
9.61122
9.22015
2.89121
2.59663
9.34002
2.93778
2.43012
9.48997
9.66433
2.2589
2.26575
9.48593
2.41999
2.41254
2.22769
9.2934
9.58293
2.38208
2.25201
9.40998
1.86489
8.32599
9.58556
1.71007
1.87194
9.5485
1.68775
1.99945
9.9381
9.86855
2.12961
2.12934
9.93722
1.99839
1.99502
2.09689
9.80152
9.78209
1.99277
2.11666
9.8871
7.24021
1.71477
1.26924
2.29944
4.4587
5.83346
2.70732
7.37711
1.79865
1.92392
2.97429
3.95056
3.35065
2.76014
28.732
6.86328
31.3435
4.14727
102.81
5.38321
15.8275
25.1827
15.399
4.99912
4.09592
30.929
4.91925
15.977
95.4503
6.83402
6.10044
6.1657
17.3208
3.57297
3.80583
12.5831
4.3595
13.2702
14.5875
7.42437
97.028
4.9186
5.95494
30.8339
115.495
8.19556
6.22501
6.16464
65.3967
10.124
10.6039
8.35242
94.2195
4.66008
5.14472
19.0222
5.69717
25.4107
30.2751
13.0289
25.0648
4.26725
3.98069
3.5086
15.8442
15.3902
13.6858
14.0409
3.12419
3.2815
3.25707
13.3671
14.4503
12.4661
3.71867
3.06211
13.2214
3.20829
13.8508
12.3833
14.3182
3.91083
3.46642
16.0818
3.52616
16.2534
15.0086
12.5135
12.7511
2.00291
2.06129
12.7185
2.01206
12.5525
12.2399
11.9777
2.0125
2.00038
12.1933
2.01372
12.0243
12.4502
2.00921
12.6022
2.0163
12.6555
12.4009
2.01587
12.3036
2.06197
2.00288
12.1379
2.0125
12.3479
12.0881
13.1217
12.9297
2.10777
2.30475
13.0928
12.973
2.27864
13.2844
13.4709
2.25581
2.34915
2.30581
13.3235
13.407
13.2614
2.07415
13.3372
2.19683
13.2508
2.24292
13.322
13.1557
2.37237
13.0966
2.38733
13.0155
2.34438
13.2547
12.635
12.756
2.15493
2.31788
2.322
12.5711
12.811
12.4999
12.3332
2.37454
2.42831
2.38633
12.3007
12.5416
12.448
2.15413
2.30597
12.1752
2.31759
12.3779
12.2498
12.6859
2.38638
2.43295
12.9245
2.39088
12.8589
12.7388
39.1555
14.8695
45.7621
14.3615
41.1594
34.1141
24.081
12.8723
10.1189
40.525
36.4098
43.2353
13.0889
13.3589
35.0464
3.29072
7.6564
6.37607
23.9812
8.71746
3.19223
6.77177
3.80299
21.7266
10.9566
7.71993
10.3899
7.53436
3.90601
24.7629
95.7746
24.5801
38.879
38.5241
38.9297
13.4813
4.81176
10.5258
13.5766
10.8017
37.7542
40.454
11.2586
13.9917
4.9576
40.7409
13.9672
11.1962
91.4765
22.6212
23.5771
47.0206
16.4049
64.475
44.9347
17.4207
45.8117
42.6373
14.443
15.0934
44.8073
48.4709
84.4933
19.1133
19.0373
45.9994
9.39838
13.8296
4.04542
36.6394
4.39734
49.4516
8.27529
30.8462
32.7257
6.65307
4.57208
2.29154
12.5983
2.44203
5.48083
16.4604
13.0175
17.7313
6.03852
71.4007
5.788
65.0622
13.7206
19.6356
62.8475
16.5424
126.608
67.2887
10.9089
27.4465
58.2759
12.7805
25.8768
27.8177
20.2099
9.54466
3.28506
6.37101
9.48605
6.25712
20.4078
18.6351
5.02209
8.00381
2.88528
16.6943
8.79358
5.60892
73.8262
31.0495
14.6329
14.2197
75.2226
58.9901
57.0476
8.14526
12.5722
4.06809
32.1702
8.29144
4.01181
30.6309
5.75609
4.35061
2.47587
13.0112
2.45969
5.77202
12.8222
16.5205
57.0308
16.3442
58.5527
8.22197
12.4515
4.09636
30.2854
4.08333
30.3181
8.20553
16.6975
61.9239
16.9154
60.4466
59.664
40.628
23.5058
18.0734
71.3981
148.765
79.4245
174.487
33.6294
30.5557
124.51
32.8199
8.14518
31.7143
73.9048
12.4002
222.554
27.0414
40.5361
11.037
209.954
57.3334
30.6975
16.8296
10.7815
25.7589
12.1588
4.20634
5.03701
28.0157
8.175
30.5997
205.886
54.1638
11.935
5.56781
34.48
9.64316
31.3552
14.847
4.90599
13.1274
8.01176
18.189
78.3174
6.2165
19.7938
49.0383
5.51634
20.1538
33.2162
15.9959
11.7207
11.4826
7.79557
157.617
25.5111
47.7399
59.9528
428.931
88.37
346.529
370.456
28.6893
150.378
57.8296
48.4944
395.281
219.559
43.9261
27.0025
8.388
9.36186
97.9666
21.3008
7.81253
21.8528
82.761
77.7114
228.453
23.8357
300.693
26.7679
180.951
17.8004
329.661
38.0633
34.8439
29.8567
30.5268
316.53
100.238
38.1241
18.9336
10.2104
9.86743
31.262
38.6357
7.41
36.3329
48.6065
45.734
99.5075
410.917
27.738
35.5849
39.8409
47.3236
8.80233
24.4521
16.2326
176.404
10.695
65.2605
357.199
173.584
9.22501
40.2225
102.238
65.6575
25.048
26.1877
19.0411
7.84781
28.8058
21.0752
9.2833
29.7968
10.6072
7.41646
7.61283
39.3136
8.65648
6.54438
30.028
9.32432
4.32869
4.08912
30.4899
6.55991
17.9017
6.66793
5.20934
9.86125
8.07205
18.147
6.4607
18.1117
5.8482
7.31848
36.407
7.04507
39.7133
7.10325
29.5058
11.6588
8.12055
11.6606
5.42266
3.09616
9.49623
17.8961
17.0907
2.99137
5.66607
9.64105
15.3282
47.2615
50.9845
8.90813
18.1225
4.67232
8.59208
14.2924
2.52383
15.2354
2.60766
4.45277
11.6264
62.5386
25.8203
58.4341
12.3164
24.1483
26.7324
7.62866
14.3333
27.2603
7.44961
54.441
15.8425
55.3776
15.6025
11.0252
4.95695
1.97714
3.3308
5.04627
3.47923
10.7148
11.4458
3.77409
5.29628
2.10708
11.6383
5.22531
3.70061
25.4586
13.3583
6.54521
6.98201
24.1653
50.9122
60.3093
48.779
45.2365
7.31568
10.323
3.27101
18.6701
6.04731
3.59226
21.2739
15.1979
57.976
16.933
51.1347
7.96273
13.1688
4.40517
31.2355
8.64171
4.20596
30.2788
17.6457
69.2441
29.5166
13.5155
142.428
38.0293
3.45428
5.481
2.36399
10.0256
2.31744
9.98239
3.47661
5.6788
10.2419
17.02
54.1803
17.1387
5.61706
10.3617
3.43522
5.50988
2.25786
10.0182
2.28612
10.0817
3.39062
5.70324
16.9662
53.502
10.416
16.9599
5.72834
10.3568
15.9813
5.20575
51.6582
9.4228
16.2099
5.13452
51.0974
48.8381
15.7581
48.2107
15.9126
16.1411
9.51939
5.14319
51.8312
5.15593
51.8578
16.0964
17.216
52.7305
51.6784
17.2863
51.4396
51.691
16.1512
51.2142
50.9856
16.3753
51.8623
51.8473
6.13526
10.9469
18.4738
57.7378
18.2296
6.12291
11.0126
5.88174
17.138
10.6698
55.4109
5.82924
17.4525
10.7501
3.80478
5.70456
11.2595
19.5361
14.5517
3.64767
5.91925
3.93282
12.5534
23.086
6.70186
11.4354
4.1081
6.28074
16.2571
51.7688
5.37352
9.26686
16.6551
50.4463
5.24161
44.4149
15.1736
45.1267
14.9588
14.9633
8.23717
45.1069
4.65176
46.1375
4.71598
14.7213
15.6763
44.9865
46.705
17.0247
51.4091
50.712
15.0549
44.2492
42.3382
71.8368
152.858
13.0432
25.149
30.9365
5.55976
10.3546
18.1612
53.3303
5.85426
17.6312
9.6575
4.70386
12.3209
7.66638
46.1844
4.29024
15.6195
7.87283
2.91026
4.42769
8.60876
16.1069
8.97307
3.04135
4.20554
2.55872
6.62736
11.6121
3.53147
6.94144
2.48919
3.6589
9.5466
3.17306
14.469
4.85319
9.54023
3.17483
14.4859
22.1006
11.5487
22.0394
11.5597
58.3544
60.6581
57.9052
57.6875
9.66271
4.96096
3.40826
15.4935
3.26777
14.6739
10.1284
43.0116
8.36488
12.9726
42.8503
12.8549
25.089
64.6996
24.7548
8.32436
42.7535
12.9308
42.5658
12.7784
25.3104
65.4216
24.9468
42.0572
8.27215
12.6593
12.8511
42.2176
42.3103
178.419
32.5741
8.44303
14.2578
45.5102
13.1642
42.7769
24.921
74.7715
26.1703
2.39218
3.35605
6.54424
10.5417
6.49926
2.38992
3.36394
2.46084
6.68841
3.53648
10.7449
2.49678
6.59957
3.47478
70.9942
526.276
172.154
2.0679
2.85772
5.29621
8.64166
5.39609
2.12837
2.84991
2.13191
5.82678
8.9807
2.94239
5.6627
2.14406
2.94568
9.28457
14.1238
3.11686
4.42158
9.5164
13.7093
3.00963
21.7924
11.7631
22.2433
11.5567
53.418
56.7305
56.3367
57.7329
8.83692
4.54333
13.7183
2.91089
12.9145
2.98895
9.42661
40.4958
8.06758
12.0301
41.1689
12.34
25.0369
60.1259
23.4201
7.9936
42.3186
12.8323
41.1279
12.1738
23.0402
61.0364
23.8183
39.0163
7.0585
11.4554
10.3297
37.3541
15.6719
46.4749
17.1106
169.052
7.75094
10.4833
26.5157
13.4901
30.9222
71.9006
21.8011
51.6844
19.9715
2.27781
3.30402
6.50063
9.57819
2.36885
6.0387
3.23064
2.23315
6.06676
3.03915
9.79907
2.21057
6.18944
3.08842
8.54965
2.78167
12.0408
3.83312
8.54261
2.77874
12.0594
20.0073
11.0943
19.9297
11.1232
50.4944
50.7886
50.6023
50.3525
8.53336
3.81298
2.77495
12.1298
2.75729
12.0498
8.58351
52.2928
21.6565
5.56783
8.353
21.5056
52.8047
8.32769
11.5089
19.7425
11.3796
51.0068
5.5101
21.6922
8.29083
21.2023
8.16913
50.8043
11.6807
20.4307
11.6591
52.9108
21.5842
5.59334
8.39026
8.42396
21.651
52.7367
12.0221
21.1216
11.8231
52.9562
5.57375
8.51272
21.8225
8.40012
21.6548
53.4606
11.8027
21.2063
11.8645
37.2455
125.392
148.114
157.95
168.466
21.0056
74.7396
43.6156
561.434
194.368
168.522
202.638
155.097
42.9011
97.6161
55.5468
39.6838
61.6338
197.223
44.8168
19.2034
169.811
48.2137
80.4211
10.1833
30.2266
33.8377
118.084
27.8219
24.6946
593.164
19.6329
14.3238
68.3285
521.09
150.941
94.3594
39.0018
28.3771
40.4396
50.1586
28.992
42.7226
19.3265
27.8656
17.4449
139.162
11.9623
33.4178
37.1048
129.853
34.8658
38.8335
27.1619
16.4899
17.407
8.58928
12.356
2.90441
3.7204
8.94313
11.7872
2.83713
20.5783
11.8736
20.9608
11.7495
47.1018
191.223
39.8872
49.4368
51.9132
7.94359
3.51813
13.6495
2.68151
10.5929
2.69951
8.89711
32.1433
20.2149
5.23202
7.03709
20.4675
30.5658
7.26578
198.204
10.8867
15.6441
14.0877
41.5867
5.90639
21.8383
8.06229
20.7771
50.3518
9.04813
74.7476
10.1308
13.9932
66.4666
10.5891
28.9459
20.2315
5.04562
7.09607
6.89584
19.2285
30.3139
59.1124
9.47477
12.9513
9.49885
57.4495
26.6628
4.74996
6.43376
15.3229
6.52743
17.3702
25.0128
62.8395
10.2203
13.5716
9.97258
65.3115
6.44723
2.26962
8.90931
2.91009
6.32186
2.29786
9.09892
17.5745
10.587
17.2248
10.7831
26.2487
56.0829
55.9799
26.3153
26.0051
54.2655
25.4583
55.4781
6.51219
2.93496
2.32396
9.20647
2.31641
9.19423
6.5212
18.4044
11.6082
3.66632
4.86663
11.6664
18.3518
4.83499
27.5508
59.0985
6.77978
9.15544
6.61035
28.3795
57.5978
18.9864
3.76695
12.4335
5.08644
12.0479
4.96617
19.5731
26.7434
6.52212
56.2253
8.94063
26.7201
6.44673
56.0983
19.377
11.9862
3.8174
4.97897
5.04625
12.2486
18.9807
28.5403
60.2682
6.87039
9.49767
6.83147
28.7214
59.7944
19.6153
3.85432
5.12038
12.4032
5.10006
12.3849
19.6821
28.2026
6.66091
9.37523
58.0347
6.7495
27.65
59.0737
22.5557
30.8781
31.8517
80.278
73.7281
64.4559
66.5632
17.825
30.3485
26.96
36.4367
78.5066
37.6971
56.6058
88.0784
39.8132
21.5977
16.7876
24.3199
49.9452
36.5382
35.1842
17.8094
26.7932
25.8327
35.5803
8.16816
17.647
10.7391
20.011
30.1379
10.9301
145.666
42.8868
17.1163
158.503
40.4922
128.245
554.028
24.5907
14.6127
81.001
35.9884
43.5166
11.6635
41.1316
137.368
148.967
12.3587
41.3996
26.1274
8.96992
16.8512
9.67503
16.3312
27.529
9.34319
45.4456
191.336
43.5808
14.0793
162.905
49.7192
12.8487
95.5096
37.7505
44.7707
37.5973
25.2074
35.6798
27.1407
22.2438
31.8167
53.386
44.3683
147.213
12.0536
47.8005
175.343
13.6644
39.1772
10.9467
29.2667
7.64626
28.0938
42.867
9.67135
35.8098
24.2462
8.08434
7.43834
32.8713
26.6369
8.60714
167.325
488.009
43.6049
26.2528
40.5981
28.7126
38.2687
8.80295
14.3239
8.02133
14.6999
36.835
8.93658
11.3672
4.19722
7.18819
6.44838
21.3953
6.38032
4.76993
142.32
133.804
47.9433
33.217
75.594
30.6358
41.8268
15.5515
8.28447
11.063
15.2667
58.509
9.36889
42.3777
33.9123
130.91
11.3461
44.0738
122.146
10.7919
28.622
7.56542
20.5661
7.76578
21.1069
27.7106
7.84863
29.7626
22.2554
8.29083
7.9479
30.4022
21.8752
8.12339
13.3433
7.8546
20.4884
7.47005
19.9609
13.5588
7.76887
129.568
39.3516
39.0975
131.371
33.5304
4.83029
8.27392
8.09846
30.6368
8.75929
8.67482
122.811
36.1133
112.92
38.0519
12.7746
17.1185
7.34228
7.09502
18.9758
11.2023
7.60598
6.59455
9.28263
2.33873
2.92233
6.66206
9.17823
2.31532
17.8956
11.3107
18.0797
11.2074
26.0141
54.2556
54.6276
25.8642
26.1844
55.6389
26.4655
55.0114
6.52368
2.88423
8.96859
2.27491
9.06839
2.28842
6.46501
19.9628
12.5539
3.94398
5.11294
12.7065
19.6926
5.19294
29.2092
60.4799
6.98495
9.68284
29.1482
6.98588
60.4625
20.1826
3.9805
12.7721
5.2498
12.824
20.11
5.24758
28.7561
6.78629
58.2269
9.57237
28.2139
6.90475
59.4411
19.102
12.407
3.80182
5.0534
4.98071
12.2571
19.4109
26.8442
54.7384
6.41396
8.98462
6.49622
26.4154
55.6101
18.7852
3.74827
4.85459
11.9311
4.90796
12.0902
18.4902
27.296
6.70059
9.1265
57.3655
6.5978
27.7521
56.5058
5.39562
2.16624
6.84731
2.55675
5.43366
2.15865
6.82831
16.2357
10.5887
16.2112
10.6082
21.2376
27.0842
27.0315
21.3229
21.186
26.8929
21.1579
26.9396
5.4153
2.56049
2.16619
6.87368
2.15692
6.8634
5.44648
11.9616
9.26924
3.17912
4.03857
9.21085
12.0685
3.9979
53.2375
53.5244
17.9807
25.037
5.08005
6.52707
5.09783
17.9705
25.3162
53.7344
53.5865
11.9181
3.16197
9.20208
3.97135
9.18561
3.97017
11.9369
18.1491
5.21452
25.9802
6.62186
18.3466
5.14671
25.6769
11.9496
9.21782
3.162
4.00219
3.98912
9.1894
11.9995
18.3435
26.1778
5.2434
6.73188
5.20562
18.4496
26.0543
54.0179
53.9364
53.6075
53.701
12.056
3.17471
4.03851
9.26991
4.01697
9.24992
12.0872
18.1983
5.17334
6.6641
25.8515
5.15706
18.2527
25.8165
12.3907
88.7561
16.9624
75.2026
16.2195
22.6363
35.2159
24.7922
25.8399
34.4363
24.9175
303.273
99.5199
14.5215
273.176
19.2101
22.9799
36.829
67.2212
37.8731
28.7455
45.9678
32.9235
89.8765
62.879
282.37
70.1232
26.0605
5.65813
16.2195
6.42988
24.0353
17.9246
7.18688
34.5743
9.00937
68.2092
10.9693
65.4912
35.9575
8.57703
35.3751
40.6321
7.96501
12.2001
31.3871
59.7975
9.22677
16.8407
60.4763
11.0999
64.0687
262.926
13.9531
30.0325
24.2774
22.9222
72.3683
11.7905
16.1206
66.1287
15.1722
21.21
4.81045
15.3668
6.16484
22.7319
14.397
5.91688
236.579
26.2116
7.33673
35.71
8.57649
33.6111
26.3376
6.98432
27.6816
36.9011
7.56296
8.92912
29.402
34.7271
7.22667
23.3622
13.8977
21.2835
37.3902
25.6053
27.6073
84.942
16.8623
17.0275
261.792
18.7778
30.4722
30.9916
32.4046
69.0622
116.797
44.0855
33.4091
64.7285
37.2514
30.5873
30.9038
32.0547
41.0037
72.2478
38.2685
33.1253
45.4778
35.5588
26.905
29.3922
28.1664
26.9994
29.2959
28.1151
30.8665
30.842
29.3853
323.837
293.304
131.073
18.0852
6.82605
7.47468
11.8252
12.6939
7.09346
16.9
25.5971
7.18912
33.0223
7.25492
26.5706
31.5897
7.09547
19.2078
14.1924
7.91004
7.64012
13.5635
20.0386
7.44928
109.296
479.921
73.757
36.7489
24.0012
23.5831
37.4764
33.1443
8.50027
13.2431
7.37191
34.1458
12.6928
8.34782
35.5756
22.0338
22.8852
32.7923
117.069
123.341
29.0633
58.1264
7.05296
7.11186
20.3491
10.2697
8.35981
42.1247
161.87
135.632
46.6061
8.311
4.31344
8.43512
31.984
34.0998
4.38508
7.97024
25.9194
16.7694
18.2034
23.9494
28.1648
21.0415
20.0069
30.0443
9.09766
40.4671
8.98459
5.03994
36.6185
10.2255
4.80217
38.9649
114.77
124.817
36.4688
28.6911
8.23799
34.409
7.45878
27.1888
37.1711
6.9318
24.6721
7.10683
19.1197
7.09774
25.8279
18.2088
6.96114
21.7312
14.6905
8.0396
6.88261
20.546
15.5367
6.80292
34.1752
27.215
32.6553
28.5191
49.4435
428.782
151.458
75.0148
10.3555
8.34581
33.614
3.79001
9.71902
35.9633
3.93766
6.49996
3.64937
5.00477
3.53476
4.78766
7.63245
3.40195
45.6886
117.318
43.2826
128.711
35.6229
29.9698
29.241
38.2059
5.98296
4.53702
3.24983
3.4541
5.73941
4.60131
3.26984
14.5743
20.5623
19.654
15.3337
37.181
10.2904
116.553
38.7787
135.361
34.603
11.199
13.5976
18.3568
18.6835
13.3528
55.6677
61.2013
28.0844
415.181
10.6777
19.5707
29.1404
25.5354
30.7749
24.45
7.60307
5.63718
30.275
3.61449
8.93007
20.8737
3.34811
33.6595
43.0252
32.5643
46.3783
4.96676
3.08394
4.45615
3.47867
4.467
4.87389
3.12293
27.961
23.2446
23.5203
27.5382
36.5424
107.097
40.4374
70.9476
5.26821
4.58781
3.23857
3.5405
5.53447
4.57112
3.19932
17.9426
22.404
23.6431
16.9111
13.0484
33.3028
111.103
33.1279
13.1569
12.8569
109.016
31.1138
12.14
32.7032
18.3139
24.4507
24.1288
18.4634
5.49434
6.85294
2.18991
2.56555
5.47728
6.88675
2.19383
15.9198
10.5179
15.8919
10.548
20.8209
26.5473
26.4139
20.9356
20.6736
26.1845
20.644
26.2201
5.54328
2.57981
6.99947
2.2076
6.95165
2.20086
5.58384
11.9797
9.09924
3.10066
3.75876
9.19694
11.8148
3.83553
52.6769
51.9051
18.7988
24.9178
5.08004
6.92298
18.0207
5.35176
26.5695
51.9457
52.0818
12.2355
3.2569
9.21682
3.99981
9.32303
11.9697
4.12892
17.9769
4.67569
22.6548
5.91362
17.5143
4.8055
23.8336
11.9177
9.15678
3.10046
3.79609
3.80527
9.19504
11.8806
17.7336
22.939
4.78259
5.77461
4.7599
17.8878
22.7824
52.8058
52.5266
52.0943
52.1271
12.0508
3.12245
3.85579
9.35356
3.83884
9.28854
12.1365
17.5784
4.70619
5.7158
22.5359
4.71284
17.5337
22.5996
10.3081
45.7024
7.99378
10.3465
7.95787
15.4347
19.8992
19.9382
15.3498
15.5365
20.0979
15.5717
20.0563
8.8544
6.67922
2.29006
2.79255
6.69773
8.83137
2.7904
50.7405
25.9707
25.9171
50.7805
11.4485
16.6884
3.51128
4.38302
3.50884
11.5093
16.6065
50.2379
25.4648
25.6286
49.9691
8.91369
2.30029
6.7793
2.8066
6.74796
2.80512
8.96062
11.3843
3.4938
16.5521
4.35918
11.3727
3.48897
16.5283
8.81673
6.65769
2.29855
2.79622
2.79556
6.64541
8.8178
11.3696
16.4845
3.48019
4.36273
3.48305
11.3526
16.5022
49.6377
25.1952
25.1626
49.7299
49.7909
25.3175
25.2894
49.7783
8.80158
2.30096
2.79568
6.62686
2.79353
6.62941
8.79362
11.3743
3.49482
4.37198
16.5432
3.4928
11.3729
16.5231
12.8724
3.78725
12.0372
4.91211
16.3302
9.75974
4.51269
67.3851
32.7546
33.8458
64.3508
15.5915
5.32224
6.40824
21.8936
22.8114
5.39856
15.1186
77.8525
54.3638
236.487
36.8551
16.362
26.5145
6.07655
6.55363
18.4032
23.9692
5.50536
71.3485
13.2367
40.4679
9.47769
83.9611
36.7312
12.4912
23.4459
13.6749
15.2861
64.5465
33.4
8.97845
10.8566
34.2488
63.0442
11.7355
14.3144
4.05067
10.6519
4.79437
13.2253
11.2527
4.91925
79.175
67.3228
22.7248
6.588
31.4017
7.74283
24.1353
29.3475
6.32654
59.1155
61.2477
21.0622
26.3647
5.8704
7.38954
19.7745
27.3968
6.04217
36.0864
9.21122
7.75281
27.8427
29.1658
9.49494
34.1969
81.9521
16.4492
16.5506
260.767
13.0719
39.6691
35.6529
7.96768
12.2165
30.9622
59.7542
9.84666
27.7878
35.1572
29.2899
32.6536
24.5766
19.9954
19.7938
24.8684
8.02741
3.31933
10.0743
3.91921
9.83561
8.12019
3.27257
24.7093
19.5769
25.2567
19.7911
27.5806
34.2255
32.7877
28.1993
7.65289
9.84503
2.95893
3.59971
7.94107
9.20401
3.03241
69.4046
38.0738
35.1067
79.4635
13.4817
4.32455
9.6739
3.84939
10.2214
12.5789
4.69547
17.2791
7.05993
25.1029
5.84783
17.6088
24.8897
5.70554
66.8847
33.6257
34.2642
63.584
13.4893
10.5766
3.84973
4.75432
10.2811
13.9035
4.64099
26.0159
30.6594
27.0796
29.205
20.9453
14.2404
20.7872
14.4474
6.96661
2.63503
7.84328
3.17548
8.28831
6.6371
2.72361
25.4881
28.3924
28.6518
25.3954
21.7891
17.7651
23.3464
15.7164
7.02608
8.48331
2.80103
3.20216
7.13667
8.35071
2.76298
57.0977
61.401
241.078
16.6355
5.77453
13.2133
4.7561
12.8619
16.9699
5.86557
21.7049
7.83722
26.4898
6.14325
19.2545
28.5714
6.43171
67.8937
63.0483
14.6527
12.7774
4.32235
5.0491
11.6984
16.9812
5.26431
25.634
4.14565
3.85506
23.7218
24.6516
3.97041
24.7908
26.9534
3.84645
27.9478
3.74193
27.7485
27.1897
3.83953
26.3822
26.4849
3.68868
3.71919
25.5149
27.2656
3.81701
25.8447
3.57041
24.776
3.4928
25.1825
25.5432
3.6463
26.2713
3.95238
26.1569
3.84666
26.0361
26.4366
3.83644
26.3839
26.4595
3.52133
3.68894
26.1863
26.6043
3.6912
23.1667
4.06669
3.76107
22.7161
23.7147
3.8145
22.0379
23.3301
3.61975
23.753
3.4453
22.3264
24.6305
3.6115
24.2382
25.7247
3.56548
3.46075
24.6707
25.3891
3.60553
28.2891
4.06666
28.5189
3.80652
28.3143
28.5066
4.03155
27.5792
4.30629
26.668
4.0244
27.1812
27.0036
4.17162
27.8968
27.1587
3.79063
3.86018
27.8796
27.2411
4.00642
23.2268
19.4881
18.8963
23.817
4.66766
3.36364
5.52772
3.76255
4.71558
5.2712
3.77109
25.9386
28.7409
29.4561
25.4521
26.6704
31.4509
27.2738
30.3876
22.5809
17.7382
18.2083
22.1544
12.3163
15.5316
10.9378
17.0548
33.0391
10.1137
34.5306
110.776
108.708
9.96156
33.4628
31.8768
95.9186
34.0395
9.36344
103.443
9.78066
29.2214
12.9236
18.0424
13.0864
17.8019
38.6669
412.035
14.8371
14.1256
56.4714
138.272
10.4689
6.9659
27.1561
37.1262
7.07269
38.4022
10.1728
11.6294
64.6208
8.39317
28.2806
7.42222
20.7484
41.6551
35.1544
13.137
111.55
13.5229
116.836
33.9286
26.0303
20.3247
24.611
21.9208
4.49451
3.21902
5.61726
3.26059
4.3383
6.1822
3.27706
30.7782
40.8422
31.7248
37.8381
26.7804
23.0015
27.2437
22.6666
29.7944
32.9984
28.2847
35.1155
53.1375
129.016
61.271
10.8397
383.784
36.4074
19.5754
13.7485
18.6876
17.437
14.9387
13.3827
16.4949
12.6823
17.058
10.0768
88.9636
30.01
27.4692
11.3067
5.40047
25.3142
21.4107
6.1132
20.7922
5.84561
5.54555
5.49038
5.50003
15.1132
12.7268
16.3741
5.32183
5.80923
5.24888
24.2153
18.7093
5.28925
19.9144
5.58691
5.11288
5.65279
17.7103
13.5025
6.15707
17.2149
5.78162
6.0479
30.175
34.6666
106.707
9.50825
32.4386
97.2085
8.92335
9.77962
12.9086
358.841
50.922
13.3252
27.1953
32.6877
59.0591
7.04716
88.7063
8.24131
18.9049
11.1234
15.6582
11.9503
14.6503
6.00426
22.0513
29.6597
6.59289
7.61325
22.75
5.75778
6.15089
6.67089
14.7852
19.61
19.0097
6.51163
6.36474
6.02491
18.1407
14.4329
6.27113
18.5238
5.93138
6.39448
6.30888
32.1895
9.22454
24.3702
8.66934
23.5892
6.52203
10.3307
45.261
8.04154
10.3693
8.01662
15.4681
19.7942
19.9131
15.3737
15.5131
20.0846
15.5876
19.9726
8.95318
6.65079
2.17793
2.62248
6.74627
8.79898
2.6631
50.2677
25.7613
25.659
50.3443
11.9192
16.8117
3.47258
4.53736
11.5231
3.57783
17.7944
50.0824
25.5487
25.6754
49.7592
9.16727
2.27596
6.76981
2.76759
6.87549
8.95555
2.81556
11.5609
3.26926
16.5149
4.1351
11.3229
3.33197
16.97
8.70622
6.60931
2.14207
2.61383
2.61111
6.59014
8.72989
11.1396
16.1102
3.21499
3.98585
3.235
11.0863
16.1822
48.7492
24.8163
25.0238
48.3796
48.9764
25.3708
25.1588
49.3787
8.67436
2.13321
2.58516
6.53511
2.59992
6.56702
8.63387
11.1835
3.25363
4.00334
16.3168
3.24885
11.2171
16.2511
9.68817
42.2142
7.50122
9.57873
7.58136
14.2681
17.4195
17.2923
14.3476
14.1768
16.9614
13.998
17.172
6.20473
5.18088
1.78415
2.12986
5.09681
6.31436
2.09563
21.1769
17.6572
17.7184
20.8814
43.0496
44.2138
7.78711
8.7488
2.30551
3.06942
2.48749
7.08779
9.92569
22.0493
18.7896
18.3211
22.6159
6.00035
1.73525
4.71421
1.92144
4.94287
2.04646
5.62191
8.07939
2.57973
10.4448
3.0934
8.23141
2.53308
10.2616
6.45882
5.24968
1.84096
2.15556
2.16871
5.29429
6.40202
8.4752
10.7935
2.64754
3.24796
2.64318
8.49528
10.7653
23.5142
19.7111
19.605
23.6024
45.5207
44.9931
23.3558
19.1733
19.4487
23.0523
6.49104
1.84405
2.17693
5.32894
2.17401
5.31868
6.50392
8.431
2.61656
3.2359
10.603
2.63503
8.35327
10.704
20.6381
25.9113
21.7267
25.1491
13.5876
10.4875
58.8567
10.5838
13.5252
14.1462
13.8742
69.0836
15.5595
11.1372
20.0632
24.8301
24.715
20.0813
38.937
29.6872
31.4579
35.5954
255.941
12.5146
3.86498
8.995
3.06427
11.3683
9.63964
3.68224
13.6596
5.24374
17.5661
4.17058
13.5633
17.2764
4.17843
60.0922
33.263
61.8371
36.8849
80.3721
69.9406
10.3055
8.19426
2.82322
3.34451
8.29577
10.1881
3.38231
25.1701
26.8999
23.3397
28.3085
21.3801
13.9227
20.6555
14.1267
27.0969
28.2885
25.4556
31.0162
19.7942
11.7786
17.7796
13.1689
32.9826
28.6031
27.8615
33.9397
9.28677
2.57602
2.43616
7.0648
7.57484
2.90844
8.48714
12.3254
4.58391
16.2286
3.80217
12.6424
15.8122
3.66826
60.8891
58.886
63.5516
65.7651
9.38787
7.80737
2.52246
3.08707
7.64956
9.60267
2.99252
32.2496
27.3805
27.4069
31.7696
10.2002
52.8685
12.7536
54.2017
9.932
13.11
8.01174
6.90871
24.932
32.203
29.1901
6.65789
8.3957
7.76877
27.535
24.2783
6.3566
28.1687
7.5883
6.49239
10.5561
66.5602
14.2938
56.7072
13.5404
11.1704
22.4036
18.3927
17.7488
22.7116
26.4598
25.1453
23.6253
29.1341
5.6944
1.63134
6.84702
1.46668
5.94395
6.50621
1.47691
22.8176
14.3019
17.0145
20.0889
24.3904
25.6871
24.3135
25.8548
9.33199
51.3305
12.4024
9.66666
48.6296
11.928
6.99473
6.27294
29.415
22.882
26.137
7.47741
5.96552
8.86864
47.5463
12.6176
48.281
11.1693
9.57772
7.21248
26.8786
6.2235
22.7401
7.40947
26.0803
6.08772
24.0121
18.9203
19.4824
23.2952
27.0224
35.03
29.5388
29.8068
6.39868
1.82098
7.21772
1.55216
6.21431
7.4498
1.59892
25.8542
26.5453
24.9587
27.6882
24.8424
21.2525
20.1053
26.5023
22.7942
22.5729
22.366
22.9729
2.30393
1.37358
2.35685
1.24161
2.35245
2.29579
1.36379
22.8706
23.1864
23.3028
22.7154
23.0101
23.5918
23.2156
23.4113
1.94516
2.07243
1.54767
1.38787
1.94827
2.05752
1.55008
22.7214
22.0076
22.2733
22.4886
22.1022
22.414
22.1986
22.2792
22.0639
21.6847
21.8373
21.8555
2.31859
1.08961
2.43074
1.18497
2.47123
2.29077
1.17906
22.2005
21.7416
21.8867
22.1645
21.8695
21.7407
21.6134
22.0213
2.12735
1.88539
1.44184
1.29939
1.88887
2.11004
1.29624
21.8523
22.3505
22.0645
22.1285
21.2125
19.7865
20.3997
20.7462
21.5735
21.3634
20.8918
21.9134
21.5682
21.5216
21.8271
21.1987
22.8809
22.6844
23.0467
22.5593
2.63367
1.07372
2.50031
1.14395
2.48029
2.66251
1.06926
22.8319
22.7478
22.5147
23.0902
2.57305
1.0127
2.65034
1.08671
2.68771
2.54165
1.07697
22.6031
22.0195
22.2972
22.3055
23.1156
23.6232
23.2898
23.4042
2.42012
2.22003
1.25804
1.16551
2.22896
2.39775
1.15726
5.20895
26.9133
4.76414
21.3593
4.5182
5.812
25.2095
6.8425
10.1637
57.4815
27.3979
29.5814
18.4253
5.96631
8.20829
37.355
32.5526
88.8864
9.91655
33.285
26.9808
4.82241
20.0498
4.92999
23.0352
4.38568
23.5448
4.92785
5.42289
16.5392
20.5101
4.99079
17.0736
5.29948
5.11345
6.03396
7.42296
10.6507
14.7079
14.1133
6.50586
6.52766
5.84784
13.1059
10.1886
6.07478
13.5627
6.2379
5.70687
5.53607
21.143
18.182
5.5249
17.632
5.83932
5.25915
4.91692
15.7613
4.75929
18.0989
4.60024
5.07381
14.934
4.97319
8.44431
7.4338
10.5284
5.11932
10.3833
6.99747
5.22274
12.4224
5.77431
8.70252
5.50148
5.44455
11.6675
4.77425
16.7949
5.42711
13.6513
4.51623
13.5297
6.13848
8.21303
24.65
29.6405
5.13568
7.0165
32.456
5.46109
29.5585
11.7009
118.172
33.768
95.441
10.7448
8.95056
25.5995
37.7052
6.23463
10.3296
34.404
5.74845
26.4977
57.749
49.0416
18.4591
85.8734
9.46646
5.17675
14.6462
12.7634
5.21413
15.2344
4.89288
5.71537
4.0954
4.00859
19.0011
17.9638
17.157
3.96186
4.14079
4.69424
16.5853
18.8579
4.2383
17.1169
4.52798
4.34426
4.27772
12.713
16.0911
4.5317
15.1836
4.40277
4.34194
97.9389
292.083
25.0849
73.7403
67.5884
30.5364
22.9031
45.7811
5.71838
8.27304
25.0075
5.34163
23.8881
5.22144
5.85399
2.57016
2.24733
5.7742
3.23562
5.99139
2.51438
2.25986
5.60805
8.05214
22.2306
4.92696
23.2545
5.12766
5.38525
2.63782
6.45764
3.33598
2.33938
6.16586
2.69945
2.32252
4.69624
11.1764
14.0956
5.03857
4.77491
13.689
4.93771
4.35166
4.04961
14.8212
17.0892
15.2935
4.29422
4.09612
4.64626
10.8845
12.8518
4.70959
13.37
4.86281
4.55136
4.38147
16.0434
4.17844
17.4142
4.44627
15.6169
4.12099
7.72519
27.7709
9.77577
5.58331
6.46308
41.8188
6.17821
5.02889
2.53945
5.73773
23.0596
20.7889
2.43242
5.52808
4.0595
7.38526
4.43439
2.4577
14.217
2.94473
2.55221
4.62025
9.73752
4.80586
7.95293
4.54089
7.01252
5.05691
8.53225
37.1826
6.70065
8.53578
6.70334
12.3949
15.0004
14.9752
12.4159
12.3531
14.9598
12.3742
14.9264
4.95654
4.1902
1.49179
1.70309
4.23685
4.88977
1.71678
19.3064
18.9279
17.1734
22.8399
21.7687
41.0507
21.1107
42.6625
6.26265
10.0846
2.16078
2.48015
7.66516
2.06432
8.15617
18.1521
16.1889
16.4764
17.7245
5.12446
1.51176
4.90127
1.81697
4.35523
5.96586
1.74632
6.01097
1.99784
7.624
2.4183
5.90867
2.01862
7.77806
4.86599
4.17982
1.49052
1.7085
1.70969
4.17736
4.87009
5.8885
7.61568
2.02756
2.40787
2.01427
5.91146
7.58553
17.4033
16.101
16.0772
17.3796
20.7188
40.5429
20.8442
40.3447
17.4035
16.0732
16.027
17.5166
4.8797
1.49899
1.72878
4.20292
1.71937
4.19015
4.8966
5.87084
2.00114
2.3929
7.57503
2.00223
5.87702
7.56521
8.21011
35.6549
6.49334
8.19979
6.4985
11.8879
14.3594
14.4096
11.8398
11.9132
14.4045
11.8926
14.4344
4.19196
3.75279
1.37799
1.50099
3.69571
4.24821
1.51891
15.3454
14.8333
14.9923
15.1229
16.323
19.2163
16.4579
19
4.78995
5.61798
1.61753
1.90821
1.64434
4.68506
5.72905
15.5345
15.1885
15.0929
15.6541
4.86313
1.70491
5.88751
1.96149
4.90955
1.69471
5.83445
4.27716
3.76152
1.34064
1.50487
1.5086
3.7753
4.26017
4.9955
6.11407
1.78353
1.9947
1.72904
5.07844
5.99433
15.7827
15.2361
15.2684
15.776
16.5966
19.3458
16.5234
19.5053
15.7704
15.2353
15.2774
15.7139
4.31522
1.35073
1.56133
3.84487
1.52098
3.80271
4.37346
4.94525
1.70976
1.97613
5.9024
1.71378
4.92397
5.92774
6.3154
23.4925
8.51739
43.7634
6.58838
23.8169
7.92267
5.88176
4.63665
21.9461
21.5724
23.8616
5.12025
5.23402
5.39659
20.5253
4.8522
20.0113
5.52688
21.0126
4.78461
6.97762
44.2655
23.2181
7.27506
27.5838
8.81906
6.02882
17.0966
11.1839
11.3118
16.9476
22.3764
23.1575
21.7768
24.4365
18.0043
12.1708
18.0276
11.8599
20.9844
22.2983
20.8906
22.3383
6.6973
46.8586
23.9441
8.62316
6.63402
24.4267
8.72385
5.75185
5.1688
23.425
20.5131
5.9562
21.7788
5.00014
6.97027
49.4221
28.4099
9.53144
7.25453
25.461
9.13286
5.56924
20.7752
4.84628
20.036
5.53586
21.1195
4.86974
15.4017
11.071
10.0113
17.0428
18.7294
21.7765
21.9975
18.0591
20.4572
24.2238
21.8125
23.4246
13.3486
190.527
9.63997
11.6912
12.2868
4.21425
21.8056
20.7873
4.79601
20.4444
4.33761
4.58426
3.91787
3.50641
15.7926
19.5048
19.052
3.4085
4.04404
3.82895
19.7432
15.7802
3.32689
19.1636
3.87556
3.33773
4.33194
20.5615
20.8639
4.95745
20.2198
4.75289
4.49239
4.50395
19.8351
20.8809
4.39969
19.7076
4.10489
4.90226
5.59933
5.64733
19.5931
39.4783
24.9095
4.71562
7.01282
4.77411
21.8175
18.9797
3.81443
22.2518
4.30515
4.14625
5.25504
24.2593
39.8847
7.62014
21.7852
5.87436
6.58105
3.50301
19.8357
19.773
4.03399
3.71312
19.153
3.79846
3.14221
2.43217
15.4353
11.5987
16.6023
2.89746
2.62467
3.57158
21.2951
18.4785
3.55983
19.9522
3.93353
3.2676
3.14171
17.7543
2.88055
12.3224
3.34656
16.6269
2.68241
5.79437
26.9849
21.2807
5.36938
5.06329
23.6476
6.20679
8.10285
11.1633
55.4295
44.8876
10.3261
8.79684
7.30034
42.3824
10.2718
42.8216
7.84655
9.10236
6.24023
21.2259
5.61637
27.4713
5.3285
24.2222
6.68073
2.91737
19.6136
2.79253
19.5115
2.89442
2.81554
19.6594
3.02235
3.13347
19.9029
19.8839
19.8221
3.00013
3.16127
2.90518
19.6964
2.7917
19.8256
2.80578
19.7518
2.88723
3.03681
19.55
3.15696
19.758
3.01442
19.7161
3.17802
2.60298
19.0989
19.3443
2.66935
19.2065
2.67102
2.60785
2.64688
2.67794
19.0759
18.9314
19.1184
2.63369
2.69066
2.61356
19.0338
19.0896
2.6787
19.1482
2.60456
2.68674
2.64138
19.2924
18.9669
2.69775
19.1661
2.68734
2.64953
2.87819
19.0868
2.76444
19.2615
2.86858
2.76952
19.1049
3.032
3.18261
18.9238
19.016
3.02478
19.0324
3.18842
2.90012
19.0166
2.77881
18.9363
2.89179
2.7881
19.0242
3.00658
19.2899
3.13831
19.1262
2.9916
19.1248
3.15983
2.67066
19.5585
19.6103
2.6986
2.72174
19.6706
2.64306
2.71447
2.76273
19.4013
19.6803
2.76341
19.6364
2.71118
2.71357
19.4876
19.357
2.73519
2.76142
19.5841
2.68641
2.66999
19.6906
2.70213
19.7942
2.71427
19.7386
2.66497
4.85312
10.7209
5.08766
8.0602
5.05215
4.89171
10.5592
4.57666
4.22332
14.3814
12.3429
12.5653
4.24462
4.54244
4.56957
12.8846
4.26496
14.5266
4.60305
12.6854
4.2318
4.84551
7.98951
4.96014
10.2627
5.03241
10.4693
4.78726
2.56124
6.1558
27.2335
5.52156
7.11619
2.3436
5.89653
2.15281
2.11719
2.77257
5.23546
4.40083
2.09131
2.32357
1.9486
3.24888
2.53723
1.97539
3.56006
1.98288
1.89744
3.73049
41.1251
19.8202
4.43382
13.8722
4.80775
7.45977
25.9077
73.27
25.3755
15.207
17.9444
18.2922
19.2687
15.7082
18.8071
72.0211
24.3028
24.7851
2.51452
6.13475
5.50829
23.1081
5.48143
2.50808
6.08284
2.13489
2.30026
2.7643
3.32211
2.30549
3.36559
2.12403
2.22075
3.47106
2.42666
2.90392
2.43965
2.20484
3.4718
2.45746
22.791
5.3602
5.85619
5.44241
5.96256
2.43041
5.21397
9.02736
11.0806
5.15369
4.98091
11.6881
5.45009
5.13879
3.97211
13.8771
16.1419
4.18431
14.3392
4.6329
5.7159
9.77276
11.7874
4.39404
4.36599
12.2702
6.34155
4.86459
13.2976
4.35518
15.7767
4.6929
13.888
4.48696
1.5243
2.47323
2.12736
1.67808
2.5211
1.53415
1.65822
1.55791
3.77632
8.00167
5.10286
4.01482
2.50225
1.79026
1.59279
3.46954
6.9071
2.10969
3.68772
1.55868
2.27214
1.35927
1.90538
2.77384
1.41427
2.48208
1.40902
1.403
16.36
18.6421
18.1188
18.9049
21.3884
19.2653
16.0681
17.4936
17.7619
20.5548
22.3461
19.773
13.425
15.5122
13.7908
9.78216
12.3318
11.7409
11.729
10.191
12.1672
15.2789
13.9777
13.4417
2.0359
2.07517
2.22952
1.80135
2.21495
1.79342
2.04128
1.9926
2.02229
2.16087
1.74681
2.16319
1.7588
1.98535
19.1692
17.5935
19.5867
30.1009
24.9125
22.7739
21.3709
27.8034
22.0285
17.5158
20.6417
19.762
1.45621
1.98565
2.32479
1.60503
1.47411
2.22072
1.59516
1.37024
1.42808
2.53992
3.76506
2.65415
1.34442
1.49867
1.42701
1.92457
2.07634
1.55578
2.12517
1.56645
1.41406
1.41688
3.13703
1.84042
4.23237
1.4714
2.84695
1.6167
2.17632
2.38556
2.19777
1.9048
1.88538
2.36599
2.18959
1.72381
1.85579
1.54696
1.90275
1.54808
1.90223
1.72174
7.76431
33.4323
6.23074
7.88478
6.14561
11.1663
13.4681
13.5971
11.0688
11.3193
14.0992
11.5279
13.7927
14.6963
14.5734
14.4894
14.8168
15.6912
20.075
17.3549
17.8547
4.46436
5.45366
1.58814
1.80534
4.56258
1.56855
5.29892
15.1028
15.651
14.8257
16.3098
4.44003
1.56102
5.73318
1.78518
4.79771
1.55857
5.19775
4.03793
4.56221
1.38298
1.5994
1.41464
3.96565
4.6491
14.5667
14.2341
14.3887
14.3903
15.0671
16.982
15.7664
15.8948
14.8341
15.0186
14.6172
15.3439
4.13995
1.48459
1.64754
4.96882
1.45647
4.28719
4.77668
7.50983
32.1551
5.95842
7.51591
5.9542
10.9469
13.4098
13.351
10.9868
10.9536
13.3585
10.964
13.3506
14.2365
14.0158
14.11
14.1242
14.1471
14.29
14.1161
14.3361
3.65307
3.97238
1.20197
1.40371
1.2637
3.55604
4.08595
14.2159
14.0922
14.0961
14.2036
3.60299
1.25738
3.96861
1.39484
3.56312
1.26072
4.01711
3.57928
4.0199
1.27542
1.41466
1.27571
3.59584
3.99557
14.2341
14.1867
14.1084
14.3313
14.1324
14.2938
14.1193
14.3096
14.2124
14.0994
14.0998
14.2045
3.57673
1.27269
1.42052
3.97702
1.28187
3.56799
3.98805
2.78803
17.2911
3.04959
18.8403
2.81611
16.8747
3.08444
2.13211
1.64904
9.96061
9.9253
11.1629
1.8053
1.96478
2.42544
14.0274
2.11127
8.89232
2.5043
13.1019
2.03087
2.46735
17.2722
13.9942
2.55322
15.1215
2.73472
2.292
4.10645
19.908
17.9298
3.36078
19.8925
3.79642
3.57188
4.23122
5.21702
17.7158
19.6917
17.8021
4.45463
4.8364
3.84331
18.3427
17.6165
3.69396
17.8054
3.97721
3.59974
4.56399
17.6928
23.0276
4.29366
20.5045
3.87056
5.24127
3.26156
19.836
17.6989
3.20352
2.96035
18.5421
3.57109
2.82453
2.39494
14.766
10.3212
2.84984
14.8181
2.37581
3.171
18.626
17.628
3.4875
3.20896
17.7544
3.43282
2.87656
14.6206
2.22216
10.4766
2.63889
15.2311
2.39857
164.216
3.56919
17.8227
3.22605
19.2214
3.32331
3.40741
19.2877
3.31964
3.29592
16.8476
15.9727
17.0627
3.57481
3.08127
3.87387
17.4525
3.96501
20.1005
3.64689
19.4558
4.26703
3.11081
17.6102
2.73885
16.4214
2.93026
17.3934
2.90244
1.32816
5.83763
9.29098
1.38564
7.18287
1.1708
1.58628
1.15107
1.04727
4.53868
5.55061
5.25454
1.01804
1.19578
1.13293
4.86393
4.93645
0.915015
5.75679
1.01202
1.01191
1.36513
8.00522
7.09784
1.72517
6.54102
1.6401
1.42989
35.22
19.1332
18.9532
16.4599
18.5557
19.3449
35.2681
17.3006
22.0412
16.692
16.575
16.8079
1.8019
7.79875
12.414
1.53398
11.4498
1.53006
1.79894
2.04867
1.76566
12.833
16.5336
14.1037
1.6154
2.23633
1.78591
9.06872
8.92123
1.1848
10.3104
1.51919
1.40147
2.03097
15.3428
16.4888
2.11959
14.7044
1.99407
2.18583
21.8215
152.615
36.1299
17.5379
19.7549
19.5378
18.1549
20.0783
22.6389
37.2788
36.1038
1.09548
6.38052
5.39211
1.28387
1.09062
5.1372
1.28052
0.975528
0.718055
4.06581
4.31637
4.84729
0.778924
0.896528
1.10039
7.02354
4.62534
0.996625
5.64993
1.27389
0.871126
0.962587
4.55814
0.865571
3.98559
0.950854
4.43201
0.880538
2.18795
13.4234
10.5429
1.65062
1.87819
14.457
1.92636
2.42015
2.60629
17.3443
17.2379
16.9217
2.54995
2.48319
2.40446
16.1438
17.7574
2.23693
16.9275
2.11698
2.5537
2.23376
11.7589
2.04127
15.9283
1.94723
15.1281
2.3132
0.725011
2.83319
0.695172
2.97919
0.723328
0.701712
2.98454
0.72665
0.720017
3.06913
2.99563
3.03422
0.730748
0.721875
0.720761
2.86802
0.742727
3.02921
0.70885
2.99701
0.733632
0.735384
2.9899
0.735086
2.97703
0.734587
3.01095
0.734433
16.6193
16.8883
16.9467
19.2399
20.974
18.1645
16.7006
17.5374
17.189
17.2355
18.735
17.5052
0.616214
2.66673
2.55765
0.655694
2.54247
0.652014
0.621137
0.576593
0.53823
2.35905
2.31206
2.4009
0.566503
0.549721
0.609647
2.63291
2.46601
0.633165
2.5096
0.598859
0.64493
0.583698
2.45442
2.34655
0.574152
2.43446
0.559905
0.591361
16.7034
17.1431
17.0913
17.457
17.884
17.5304
16.6301
17.001
17.0413
17.6977
17.9896
17.6133
0.721472
2.80485
0.692947
2.96831
0.723558
0.690882
2.9445
0.723523
0.711486
2.79371
2.83848
0.707668
2.87351
0.726797
0.712147
2.76701
0.670756
2.80839
0.69703
0.683611
2.88364
0.733707
2.96904
0.738076
2.90619
0.735754
2.9398
0.736969
0.662823
2.57522
2.70348
0.662427
0.677352
2.59886
0.634759
0.768237
1.3492
3.36623
4.34587
0.861834
2.96661
1.0898
0.659594
2.47878
2.65909
0.608329
0.681035
2.55835
0.613592
0.72177
2.78029
0.779026
3.39143
0.703821
2.79434
0.883155
16.9392
17.1451
17.1972
18.0221
18.2887
17.8224
17.1635
17.5849
17.3433
17.6935
18.1537
17.7126
1.53198
1.92939
1.70847
1.83023
1.70772
1.53367
1.90689
1.37505
1.28153
2.38548
2.0648
2.09942
1.29242
1.36944
1.40084
2.19624
1.33056
2.46106
1.40506
2.15471
1.31875
1.50164
1.78811
1.66746
1.84188
1.66906
1.86066
1.49844
14.4694
16.184
16.0757
18.4028
19.24
17.8921
15.0109
17.0841
16.6123
17.3058
18.5617
17.3363
11.113
12.2983
10.6767
6.52707
8.43009
8.54068
9.17259
6.68293
8.72949
12.0693
10.3352
10.4672
1.53307
1.8453
1.93915
1.72069
1.53799
1.93296
1.71715
1.35154
1.38389
2.34608
2.8155
1.35894
2.24057
1.33611
1.45466
1.74808
1.92605
1.61009
1.45276
1.88409
1.61233
1.40395
2.21505
1.33829
2.67133
1.40639
2.22478
1.34909
15.8921
13.9766
15.5018
17.3391
16.1801
16.3847
17.0199
17.6243
16.65
13.7236
15.0452
15.2429
1.62009
1.45132
2.03225
1.90791
1.9318
1.45845
1.61567
1.62459
1.93066
2.03805
1.46153
1.93405
1.62019
1.46883
9.59088
11.3393
11.1529
11.8899
13.0574
12.1294
9.44338
10.7481
10.992
12.4935
13.2386
12.2992
6.2245
8.52068
6.59165
186.478
42.891
10.2302
5.04451
29.5378
28.8701
62.5991
17.4051
17.9522
5.79381
52.2243
19.5002
19.3103
9.0436
6.82355
7.22214
11.5338
10.3779
11.9365
14.1598
12.9512
13.3188
12.6448
13.9078
13.0179
10.8071
11.835
12.2951
6.81091
28.9894
5.40826
6.81219
5.40801
9.97474
12.2023
12.155
10.0096
9.94278
12.1281
9.94973
12.1149
13.4683
13.7033
13.3717
13.804
13.0491
12.986
12.8562
13.1877
3.34279
3.79973
1.10953
1.21928
3.40692
1.10162
3.72293
13.1345
12.8712
13.0606
12.9402
3.29271
1.1023
3.59508
1.23819
3.23814
1.12073
3.66077
3.19843
3.56495
1.06063
1.17763
1.06759
3.21317
3.54725
12.8715
12.8575
12.8047
12.9289
12.7301
12.8864
12.7607
12.8511
12.8278
12.7809
12.7616
12.8515
3.19519
1.08149
1.18706
3.55471
1.076
3.20344
3.5455
6.68778
27.2395
5.30432
6.67623
5.31139
9.79902
12.0293
11.9677
9.84969
9.77219
11.893
9.74825
11.9296
12.664
12.5341
12.5903
12.5948
12.5453
12.487
12.4998
12.5419
3.05141
3.2756
0.891854
1.00558
0.926128
3.00375
3.32977
12.6373
12.5338
12.5646
12.6002
3.03524
0.930563
3.26786
1.01287
3.00096
0.934245
3.30859
3.04711
3.31857
0.951565
1.02969
0.946323
3.03994
3.33158
12.7161
12.6905
12.6278
12.7756
12.5559
12.4806
12.494
12.5512
12.654
12.5312
12.5785
12.5988
3.00224
0.920328
1.00246
3.24868
0.924487
2.98163
3.27477
0.507994
3.32558
0.597117
3.50257
0.547373
3.19201
0.549492
0.437321
0.375379
2.87778
2.77706
3.12061
0.41175
0.397858
0.473702
3.04783
0.475116
2.75518
0.507141
2.9543
0.444902
0.465928
3.77793
2.99053
0.449575
3.40906
0.498952
0.422145
19.8441
14.6687
17.5072
14.8035
14.9183
14.7168
16.672
15.1056
14.893
14.6558
16.531
16.7966
0.990015
6.06023
6.18097
0.78742
7.8145
0.835474
0.930658
0.840234
1.27638
11.3762
13.1317
9.98905
1.14234
0.928328
0.728589
5.37898
7.66285
0.807629
6.624
0.97157
0.624411
1.15938
7.65266
12.1805
1.28745
8.81894
1.10647
1.33497
29.9024
15.6535
28.8953
36.0991
128.644
18.5279
17.3947
29.5747
0.642027
4.88224
3.58979
0.680985
0.616599
4.21016
0.716108
0.440581
0.484456
3.53054
3.02803
0.528157
3.31479
0.411058
0.481696
4.2945
3.99651
0.674953
0.589853
3.70008
0.537026
0.585411
3.26601
0.527104
3.39477
0.566055
3.75032
0.543316
13.6691
14.0297
13.9118
15.5023
14.306
15.5999
13.847
14.3558
14.1142
16.3945
14.1068
15.8017
0.71661
5.49697
0.680708
4.01317
0.619302
0.795992
4.94996
0.738293
0.760925
7.69509
5.58546
6.92284
0.847588
0.653781
0.847631
6.84114
1.09893
8.93499
0.944662
6.03915
0.986902
0.630593
4.35365
0.494802
4.33723
0.553973
5.37262
0.557706
14.9092
15.0928
14.9547
13.7592
11.8162
13.9873
14.379
14.4941
14.4862
14.8535
12.777
14.5578
13.3843
13.5986
13.2925
15.0505
13.863
14.9822
12.9932
12.4845
12.9124
14.9651
14.1628
14.9762
0.305742
2.27149
2.30927
0.294053
2.27787
0.305847
0.305359
0.261782
0.265845
2.07812
1.96426
2.0534
0.256877
0.269738
0.301013
2.32269
2.23303
0.325259
2.25885
0.315991
0.304448
14.3071
13.9441
14.2286
14.2981
15.0492
15.1051
14.3633
13.5716
14.3448
15.0552
14.9315
15.1318
0.304906
2.16032
2.18065
0.287686
0.295196
2.18761
0.297064
0.373755
0.405979
2.73279
2.5045
2.62561
0.391384
0.384879
0.314574
2.15325
2.20893
0.3133
2.19499
0.305427
0.324409
0.357489
2.49126
0.350526
2.43558
0.342229
2.5523
0.366221
15.36
15.5732
15.3522
14.6152
14.9739
14.988
15.0651
14.6633
15.0312
15.5684
15.3228
15.333
15.5055
15.7862
15.6186
15.4242
15.5894
15.5458
15.3707
15.3602
15.4738
15.8732
15.7484
15.699
15.7405
15.8534
15.882
16.0429
16.1019
16.0151
15.7487
15.9189
15.8993
15.9494
16.062
15.9875
8.51677
9.65146
10.1821
11.3887
11.9543
10.9524
8.11343
10.2218
9.74141
10.8679
12.2458
11.3343
45.9085
16.0777
5.57343
47.9069
15.5442
15.7424
11.7652
2.73029
4.48357
11.8811
4.51543
15.612
15.9753
4.71711
12.3336
2.75005
16.4165
12.0633
4.55938
45.1942
5.5047
15.2498
15.341
44.921
9.21402
7.28703
9.00087
11.0785
10.0127
10.1053
10.4466
11.2067
10.2231
7.19767
8.81489
8.89615
43.3977
15.1046
5.25334
44.166
5.247
6.18347
7.83281
6.57253
14.7476
40.0434
4.80391
42.9462
5.13086
6.75009
7.99257
6.72184
12.0919
15.5
2.3474
4.34393
11.7415
15.9061
2.41916
10.7273
9.67898
1.84126
2.08088
1.99042
9.54192
10.9339
10.4031
1.85957
8.91495
1.78353
10.0739
1.91421
9.23835
12.4791
4.54007
17.6647
2.77455
16.4605
2.53899
12.9173
43.9377
5.32071
15.3716
5.42764
44.8824
8.4882
7.55589
7.15824
6.83261
8.27625
6.95947
15.9536
5.94642
56.2547
5.59803
47.0345
6.36228
25.69
5.10911
6.42806
5.0581
9.18965
11.0839
11.2243
9.07912
9.31112
11.4931
9.41123
11.3665
12.3789
12.3933
12.3195
12.4547
12.1945
12.0676
12.1059
12.1699
2.94064
3.21246
0.850415
0.906562
2.94825
0.835571
3.20885
12.3218
12.1923
12.2567
12.2437
2.92357
0.783705
3.13468
0.882871
2.87332
0.813086
3.1932
2.7662
2.9737
0.702356
0.774042
0.717301
2.73425
3.01062
11.8456
11.6527
11.8074
11.6845
11.8471
11.9416
11.9928
11.7912
11.9951
12.0928
11.9552
12.1389
2.79355
0.759487
0.799655
3.08402
0.739443
2.83055
3.04167
4.48019
11.2152
3.43572
22.1006
4.39433
3.49612
22.4392
5.77784
8.38927
8.60702
5.67473
5.6751
8.2202
5.5557
8.41371
10.3457
9.6987
9.72199
10.3244
10.3776
10.3623
10.4857
10.2556
10.3797
9.844
9.75194
10.4827
11.3372
10.1827
10.5379
10.8398
10.97
10.5178
10.6512
10.8475
10.9339
9.98558
10.2425
10.6419
14.1969
13.3533
13.5384
13.0677
9.44138
12.4887
14.49
14.064
14.0222
11.0496
8.17218
11.55
0.253825
0.229755
1.81872
1.80472
1.82691
0.223284
0.266243
0.26985
1.73264
1.6476
0.311253
1.66933
0.289694
0.286463
13.4205
13.7604
13.6199
12.3084
12.5595
12.6946
13.0421
13.1014
13.3354
13.1033
12.8101
13.0283
12.8332
13.5863
12.3581
107.907
5.5413
7.24247
8.47724
10.4585
6.46513
9.8076
12.7682
10.2374
11.1709
0.234895
1.49147
0.245215
1.45486
0.23199
1.47825
0.247649
19.9232
4.56852
3.23692
88.391
19.1172
3.54964
9.4259
8.56346
2.26177
2.17737
2.39097
8.60027
9.16705
11.2642
3.64684
19.439
2.65928
23.9455
2.84154
9.83803
12.3643
2.60749
9.18921
2.53446
10.1935
2.86541
11.0114
7.798
6.4067
7.85655
7.98411
8.39946
8.20473
8.19167
7.88134
8.08216
6.54185
8.21764
8.01406
18.9588
3.30788
4.28187
3.38626
18.2386
9.74978
8.73061
2.25256
2.69596
2.63774
8.60518
9.92441
9.64624
2.58067
2.24606
8.54186
2.61518
9.55148
8.54705
19.296
4.35934
3.51819
3.4368
19.681
13.4021
2.03589
13.5112
2.15707
13.5065
2.16598
13.3625
13.3266
13.4985
2.23992
2.27283
13.3184
2.22548
13.5499
13.3707
2.02936
13.3805
2.18387
13.4352
13.3412
2.17516
13.3021
2.20678
2.26228
13.5095
2.21082
13.2067
13.5527
13.9335
1.72557
13.7918
1.87001
13.9074
1.73297
13.8127
13.9042
13.8442
1.75404
1.76143
13.8126
1.75609
13.9504
13.8639
1.74214
13.7751
1.74129
13.8475
13.7927
1.74208
13.9925
1.90202
1.7489
13.8981
1.74646
13.8536
14.0592
13.2253
13.4716
2.19225
2.17163
2.23054
13.2854
13.4439
12.8154
13.3695
2.39612
2.32653
2.29989
13.4058
12.6406
12.9594
2.23837
2.35223
13.4697
2.26724
13.0822
13.4397
13.1625
2.26486
2.31058
13.385
2.27365
13.4199
13.0887
52.3017
4.71936
15.0604
14.7768
16.2277
16.7225
43.3659
5.62969
7.4052
6.1026
155.662
8.60601
35.9663
4.22124
24.2027
25.6698
5.11598
6.8771
5.48724
9.42292
1.74389
11.0871
2.15737
9.53026
1.71517
10.9412
8.29666
7.32751
1.63321
1.59407
7.40974
1.61961
8.20242
8.39022
1.65912
7.56326
1.64926
8.47558
7.48898
1.63837
9.30859
2.10154
1.64691
10.5736
1.6877
10.7793
9.18537
40.592
14.6952
14.2818
3.91594
13.9707
41.567
14.4745
5.80147
4.09491
4.57579
4.96765
6.11324
4.83901
38.4744
3.78122
11.9851
13.7397
13.3343
14.2026
35.442
8.83679
8.19083
1.16217
1.13101
8.10017
8.93619
1.12145
9.44575
9.90833
1.12318
1.22972
1.13186
9.36114
9.99141
8.74656
1.15928
7.9393
1.11223
8.01782
1.11814
8.66112
9.54191
1.14973
10.1881
1.23466
9.64357
1.13653
10.0889
6.95718
7.57999
1.30186
1.24707
6.87088
7.67138
1.313
6.3758
5.93019
1.47705
1.47938
1.40346
5.64255
6.66787
6.23525
1.37011
5.4352
1.45164
6.15462
1.38243
5.50961
7.10436
1.26352
8.11309
1.40162
7.81892
1.33004
7.39754
9.12566
8.26943
1.13877
1.18969
1.14834
9.02195
8.36551
9.9883
10.8025
1.29591
1.25179
1.18889
10.5295
10.2748
9.83589
1.16012
1.27836
10.2734
1.17277
9.73051
10.3772
9.27569
1.20547
1.22266
8.8061
1.16387
8.51271
9.57265
4.49147
11.0017
22.0462
3.49894
4.45094
3.52139
22.1022
5.53922
7.98494
8.17792
5.42233
5.67251
8.25238
5.60446
8.40013
10.343
9.65789
9.69359
10.298
10.4119
10.3495
10.5069
10.2653
10.4147
9.8349
9.75411
10.5075
10.6841
9.70475
9.96525
10.3828
11.3112
10.6789
10.8002
11.355
11.1044
10.026
10.2808
10.7457
3.23244
8.64767
10.0432
2.76592
3.21986
2.77581
10.0772
4.14733
20.5617
5.20137
5.17737
20.4762
4.16665
4.13486
5.13726
20.3372
4.11822
5.16076
20.4025
9.22668
7.69657
7.51549
9.51251
9.5628
9.64082
9.59412
9.59365
9.09786
7.45488
7.44657
9.11675
9.25446
7.59731
7.56473
9.29532
9.72283
9.72018
9.66323
9.78729
9.22664
7.50168
7.54203
9.17581
12.0911
3.28357
11.2559
2.41929
19.2918
2.69991
9.49897
8.74586
8.30558
2.13868
1.95842
8.2309
2.09027
8.85725
9.68695
2.90866
17.5285
2.48469
18.0192
9.23577
2.37783
10.7888
2.16485
2.20217
9.44582
2.36963
9.23272
10.5978
18.5567
4.11499
2.84435
17.6655
3.48792
5.97309
3.81299
4.37175
6.05436
6.61919
5.1703
83.1802
3.03778
10.0797
3.09635
18.467
3.90875
21.4732
8.56258
9.59577
2.2075
2.28238
2.02013
8.5349
9.41262
10.2165
8.99963
1.94378
1.73165
2.01289
10.3119
8.64785
8.71028
1.99878
1.79115
8.9015
1.86234
8.56317
9.07825
10.3205
2.46306
1.85298
8.47808
2.18917
11.4748
8.34164
9.3969
8.68374
0.972189
1.06208
9.14996
9.01772
1.00352
9.51068
9.35478
0.618804
0.825943
0.818204
9.13879
9.70685
9.28943
0.779131
8.60786
0.611777
9.04382
0.802743
8.88586
9.62002
1.09355
9.58265
1.03986
9.31716
1.02589
9.81882
8.92854
8.89861
0.936154
1.04874
8.59342
9.2004
1.00674
8.14247
6.06197
1.01987
0.994996
0.993494
8.01668
6.33636
8.65986
0.887314
7.97595
0.971421
8.27657
0.977497
8.44742
8.42804
1.02144
7.27002
0.970354
8.73136
0.992713
6.79685
9.69249
9.18532
1.07248
1.08392
1.11644
9.44761
9.45782
9.5583
8.91959
1.11463
1.05512
1.09819
9.79023
8.55732
9.90582
1.10349
1.15784
9.89912
1.14046
9.68582
10.0966
9.30349
1.04874
1.03394
7.72879
1.07671
9.02741
8.15856
11.5458
11.4991
1.48515
1.50678
11.4511
1.49322
11.595
11.6282
11.6975
1.54138
1.61955
11.5629
1.53691
11.7601
11.5049
1.46671
11.338
1.47808
11.4101
11.4383
1.47776
11.6727
1.56114
1.63211
11.8659
1.54966
11.7245
11.8079
11.4031
1.57348
11.4608
1.54252
11.3758
1.57634
11.4896
11.3222
11.2368
1.5908
1.57755
11.2462
1.58975
11.3146
11.3132
1.5911
11.2106
1.59597
11.2858
11.2364
1.59487
11.4168
1.53655
1.55812
11.4978
1.57076
11.5029
11.4107
11.6691
11.5402
1.51156
1.50644
1.50976
11.6378
11.5704
11.8282
11.9961
1.63271
1.5312
1.54999
11.9873
11.8317
11.8076
1.56439
1.64361
11.9182
1.56086
11.7717
11.9608
11.6838
1.49832
1.48383
11.5783
1.50055
11.5838
11.6818
8.32365
1.12916
7.49668
1.07581
7.62481
1.08867
8.18703
9.1244
9.76128
1.11321
1.1973
9.21358
1.10292
9.67295
8.43218
1.1353
7.80709
1.10256
7.7256
8.52058
1.09489
9.01168
1.07856
1.18744
9.42321
1.0946
8.87422
9.55973
5.86335
1.20104
6.66289
1.1371
5.99749
1.19082
6.53857
5.89474
4.84126
1.87395
1.53505
5.29496
1.73658
5.47877
5.1868
1.25643
4.68134
1.27702
5.33032
4.52937
1.23965
6.50955
1.48065
1.45022
6.78963
1.60486
7.12751
6.13223
7.88962
7.3108
1.05531
1.09014
1.05464
8.00196
7.19361
8.99903
9.29241
1.30988
1.19817
1.25402
9.5063
8.75578
8.58994
1.05712
1.14331
9.25329
1.05523
8.69432
9.15718
8.35544
1.37612
1.22246
7.41999
1.2936
7.72091
8.08435
5.65277
5.1924
1.03761
0.999446
5.09442
5.75127
0.988117
6.18445
6.64742
0.930318
0.97221
0.938739
6.12371
6.71269
5.57617
1.02796
4.97643
0.970148
5.02376
0.978885
5.52269
6.26784
0.958167
6.89936
0.980647
6.36554
0.947607
6.80006
4.28771
4.76309
1.16815
1.12347
4.22354
4.83276
1.17931
3.86517
3.6061
1.32366
1.41701
1.27322
3.27525
4.2152
3.73609
1.21964
3.11363
1.28112
3.67987
1.23176
3.16103
4.43068
1.16244
5.35142
1.35396
4.98728
1.21971
4.7918
5.93244
5.30465
1.00137
1.0623
1.00987
5.8529
5.37773
6.73232
7.65935
1.02741
1.09618
1.00185
7.27855
7.12193
6.53952
0.959658
0.991507
6.99179
0.968028
6.45586
7.08125
6.11327
1.09906
1.14785
5.91815
1.04493
5.54449
6.4957
2.97549
8.02385
9.36178
2.56099
2.98446
2.55332
9.32872
3.87468
19.4038
4.99676
19.1199
4.84272
3.98069
3.81155
4.7846
19.0146
3.82535
18.9423
4.76291
8.96322
7.45083
7.2975
9.18289
9.30754
9.20887
9.19393
9.32859
8.85699
7.13696
7.21812
8.75489
8.74615
7.39769
7.12523
9.15527
8.99572
9.07485
9.06358
8.99671
8.57721
7.03735
6.99983
8.63385
2.2971
6.85479
7.00087
2.06717
2.27619
2.08472
7.02592
2.74096
8.39768
16.9619
3.52193
3.47586
8.28624
2.7767
2.70777
3.40264
8.18968
16.8005
2.68337
3.43323
8.21268
6.15633
4.11261
4.18276
6.06873
7.5171
8.02296
7.59377
7.95746
6.19729
4.23068
4.18974
6.26956
6.46533
4.41849
4.35431
6.5815
7.71948
8.07556
7.64416
8.16154
6.37349
4.25657
4.2976
6.31479
7.28163
0.472057
6.67171
0.487627
6.89158
0.512812
7.06535
7.97645
8.72436
0.559117
0.585583
8.42689
0.559732
8.30232
7.62334
0.483608
7.74459
0.532589
7.24392
8.09951
0.524925
7.64796
0.519348
0.57516
7.77998
0.547971
7.43566
7.98748
5.55997
6.10522
0.298647
0.330709
5.67409
0.290391
5.99039
4.93589
4.38352
0.151453
0.216637
4.48525
0.192435
4.8301
5.11879
0.252327
4.7795
0.196389
5.23068
4.67212
0.245566
5.3796
0.264573
0.261127
5.70114
0.230335
5.81374
5.26987
6.80092
6.5212
0.407476
0.364889
0.393286
6.91626
6.40523
7.01422
7.24687
0.349998
0.394573
0.336557
7.36389
6.89433
7.17455
0.433096
0.430806
7.63874
0.416583
7.29
7.52386
6.63459
0.293566
0.368398
6.11791
0.317381
6.2336
6.51656
4.93137
4.64859
0.260348
0.303822
4.58207
4.99674
0.280697
5.2623
5.44536
0.707199
0.440133
0.443759
5.19874
5.54949
4.94097
0.386287
4.61257
0.681968
4.60186
0.419685
4.91419
5.26389
0.315131
5.6033
0.298264
5.32871
0.292419
5.53207
4.04512
4.35442
0.234138
0.268912
3.9904
0.236941
4.40958
3.73136
3.38889
0.167773
0.201198
3.34348
0.201894
3.77852
3.67909
0.199053
3.23732
0.166553
3.62455
3.29064
0.201877
4.09737
0.266112
0.235939
4.51048
0.235581
4.46099
4.14605
5.11221
4.71175
0.313206
0.296095
0.315778
5.05816
4.76688
5.49129
5.83997
0.326254
0.329874
0.32061
5.77371
5.5434
5.44224
0.324155
0.331005
5.66375
0.326774
5.38852
5.72108
5.16146
0.291808
0.315874
4.86713
0.310238
4.8171
5.21217
2.69203
3.25108
0.529841
0.577834
2.89731
0.52659
3.04071
8.84125
9.93506
10.0951
8.89947
2.60168
2.74065
0.472174
0.519352
2.49172
0.491633
2.93421
9.4124
19.5476
11.4292
12.0352
9.03423
11.9446
10.4786
10.4503
2.49738
0.498153
2.60388
0.477083
2.69165
2.4243
0.490866
2.84881
0.591399
0.569161
3.94915
0.532662
3.29581
3.29605
3.5949
0.590576
3.25977
0.713738
2.96881
0.674479
4.06322
17.7691
9.07864
11.3123
10.6753
4.57416
4.28306
0.617232
0.825989
3.56813
0.717923
5.19382
3.66322
0.548063
2.54745
0.533745
3.06352
2.91205
0.617291
19.5159
11.1452
10.1258
23.1958
4.30804
0.832499
0.912104
6.94216
0.787971
4.91588
6.17391
4.41943
3.90543
0.665333
0.758482
0.773095
3.69087
4.91591
7.08207
9.0458
0.971503
1.01363
0.914617
7.68542
8.69247
80.2224
23.7222
19.05
20.1723
78.0604
4.98548
0.6863
0.856063
4.96923
0.797049
4.1137
5.65742
6.38091
0.873845
1.00663
7.57618
0.89339
5.59999
8.16055
5.2982
0.982987
4.72099
0.926074
4.77398
0.936441
5.23903
5.94972
6.53516
0.91844
0.939532
6.01659
0.908122
6.46506
5.36484
0.993743
4.88599
0.957453
4.83249
5.42477
0.946648
5.87518
0.888311
0.928439
6.31482
0.898348
5.80766
6.3871
3.50981
1.03693
4.13985
0.969212
3.64319
1.00574
4.00603
2.90805
3.03401
1.0171
1.65801
2.37773
1.01016
3.60387
3.01723
1.07477
2.6466
1.06394
2.51035
3.15175
1.03818
3.41749
0.960107
1.53133
4.57499
0.988909
3.92477
4.10168
5.02723
4.64383
0.910225
0.930755
0.888793
5.15729
4.51001
5.53938
6.5239
0.889528
1.13201
0.858236
6.05039
6.06381
5.59183
0.873677
0.882735
6.22555
0.854526
5.72055
6.09797
4.96548
0.9275
1.21415
5.04752
0.890269
4.4385
5.53113
3.79195
3.46921
0.977874
0.961736
3.31422
3.95034
0.933686
4.14494
5.12868
1.26129
0.928713
0.91499
4.75969
4.5596
3.69665
0.947892
3.87669
1.33684
3.20984
0.910341
4.34719
4.23457
0.955019
4.80712
0.945991
4.39658
0.93352
4.64301
2.75316
3.11796
1.15339
1.12783
2.65242
1.18818
3.22862
2.44954
2.31923
1.38167
1.75492
1.90038
1.35294
2.87311
2.22718
1.19166
1.64722
1.2469
2.13979
1.717
1.23013
2.99521
1.22206
1.60679
3.87567
1.29689
3.48283
3.40802
4.18475
3.57301
0.983213
1.0634
1.00347
4.05891
3.69175
4.91562
5.62476
1.03716
1.15197
1.04219
5.33645
5.23193
4.64594
0.972536
0.991156
4.92702
0.986958
4.51195
5.06815
4.45058
1.14361
1.21685
4.32519
1.07161
3.9549
4.79097
2.1127
6.62078
6.5193
1.89227
2.08887
1.90831
6.96587
2.92026
13.1031
60.5609
3.12734
13.6719
3.74007
2.57044
2.5186
3.15537
7.71641
18.8573
2.4783
8.55527
3.22529
5.69328
3.96388
3.83952
5.90726
6.7973
7.31931
6.90213
7.20062
5.60406
3.84061
3.78335
5.68629
6.05893
4.69477
4.34319
6.31913
7.04922
7.55455
7.09395
7.4476
5.87461
3.94126
4.0212
5.83486
1.61768
5.52117
5.40193
1.52367
1.62233
1.51833
5.40436
1.80678
5.62573
6.51518
2.15792
2.11278
5.55369
1.84454
1.80037
2.11223
5.53387
6.49406
1.80615
2.10531
5.53423
3.36929
13.9212
2.746
2.70998
3.42442
4.9768
6.24865
5.04888
6.14149
3.3639
2.72182
13.5123
2.69841
3.40076
3.40352
13.562
2.78052
2.72173
3.47928
5.03223
6.27615
5.06551
6.2346
3.39162
2.72215
13.5197
2.71168
3.40602
3.99444
0.226708
3.62119
0.221454
3.68018
0.237139
3.93276
4.37716
4.84509
0.363014
0.245118
4.63344
0.240699
4.54239
4.09856
0.22112
4.00999
0.350899
3.77955
4.33165
0.231641
4.26794
0.226739
0.243398
4.25489
0.242614
4.18485
4.4012
3.19088
3.2702
0.139269
0.190688
2.94105
0.171327
3.51859
3.42285
3.09975
0.220388
0.337202
3.09196
0.242363
3.44071
2.86405
0.116974
2.27841
0.127074
2.61648
2.51884
0.148241
3.72398
0.288597
0.376256
4.05094
0.267533
4.02249
3.7486
4.12709
3.59713
0.180866
0.203825
0.211318
3.89863
3.84128
4.68365
4.33267
0.291241
0.416745
0.302805
4.45267
4.70058
4.31666
0.188851
0.216832
4.12226
0.217929
4.1241
4.23002
4.56447
0.302281
0.431959
4.34278
0.303455
4.31335
4.60516
1.51367
2.13892
0.205746
0.169986
2.09367
0.177959
1.56203
1.13101
0.788422
0.116027
0.118106
0.936905
0.13557
0.929672
8.60948
4.88465
10.5806
4.26524
1.34152
0.18151
1.54574
0.133789
1.86078
1.10622
0.157734
1.27266
0.145984
0.131078
1.06314
0.152046
1.32259
1.03321
2.16084
2.23458
0.148973
0.144741
2.11906
0.148041
2.30902
2.051
1.94645
0.163712
0.181425
1.80219
0.161578
2.20391
1.93814
0.150262
1.65805
0.150892
1.90103
1.69643
0.149139
2.28575
0.157228
0.179939
2.65946
0.160314
2.46911
2.45066
1.8395
2.07849
0.123738
0.139184
0.126949
1.60821
2.24421
1.48823
1.37717
0.108665
0.140818
0.124527
1.23789
1.65955
8.96477
43.3123
7.9669
1.28819
0.111792
0.098417
1.18917
0.112095
1.50048
1.08822
2.10461
0.152597
0.159539
2.71586
0.140918
2.48729
2.33997
7.72221
7.69872
7.61253
7.80235
7.87793
7.73444
7.78519
7.84872
7.61336
7.33897
7.49115
7.47505
1.35525
0.357172
1.4007
0.357026
1.36983
0.363918
1.37663
7.21769
7.53135
7.45299
7.34407
1.33976
1.43759
0.382035
0.35648
1.43646
0.365725
1.31181
7.13477
6.80178
6.97041
7.00698
1.34734
0.368389
1.35001
0.41716
1.39103
1.3499
0.372565
7.25269
7.2462
7.35477
7.11923
1.33872
0.349653
0.346086
1.31198
0.357366
1.3515
1.30571
1.44269
1.43925
0.342974
0.3563
0.348592
1.47117
1.41186
1.47917
1.42774
0.334318
0.326573
0.337918
1.46268
1.45074
7.62056
7.60367
7.68849
7.47757
7.06204
6.68944
6.87104
6.90476
7.20617
7.17658
7.32854
7.03546
1.49901
0.339307
0.342166
1.52108
0.3452
1.5217
1.49018
1.41563
0.349011
0.329365
1.34641
0.341098
1.38485
1.37836
3.42729
1.03672
2.84697
0.946062
2.98187
0.980808
3.2793
4.06145
4.70021
1.05764
0.984672
4.3024
1.00256
4.45202
3.64035
1.09732
3.38962
1.09239
3.17981
3.86884
1.02999
3.83811
0.929497
0.948989
4.06049
0.960642
3.68092
4.22348
1.72281
1.04764
2.31306
0.959805
1.85495
0.98171
2.16949
13.9242
12.7953
1.17333
2.64831
0.857567
1.97204
3.84505
0.855166
11.4147
1.31607
1.06162
4.8582
1.01467
4.50658
1.42423
0.987042
1.59785
0.895513
1.7686
2.63847
0.887608
2.02899
2.13053
3.01454
2.74098
0.920373
0.921758
0.887102
3.16435
2.59637
3.30764
4.30875
0.855858
1.28642
0.853294
3.6926
3.95418
3.40585
0.906743
0.876353
3.93447
0.878592
3.55935
3.78084
2.90656
0.876566
1.37172
3.13878
0.854619
2.47603
3.57441
1.41873
1.29646
0.849969
0.941703
1.14758
0.8366
1.64628
13.647
21.1348
1.19734
3.54424
0.64806
0.627212
3.15275
0.642923
1.31235
1.05532
0.673114
2.31911
0.601061
0.873491
2.74705
0.658889
1.6638
0.919092
0.787066
2.2688
0.814612
1.98343
1.86327
1.00363
4.59247
0.254254
1.02973
0.985693
0.258656
4.70055
2.73301
2.14966
2.67794
2.18879
0.388459
0.225962
0.102399
0.145621
0.202849
0.129498
0.461976
4.08756
18.1728
14.3179
4.52386
3.94767
13.1951
3.8572
13.5389
0.369815
0.120248
0.194698
0.0968258
0.365602
0.194863
0.121906
1.04797
1.06126
0.326748
5.8283
0.272614
4.92069
1.25091
1.79217
1.36057
0.987643
1.01108
1.00564
1.74455
1.39386
2.2692
2.87074
0.975125
1.12294
1.01215
2.621
2.50645
2.18314
0.965774
0.948578
2.44467
0.982887
2.1203
2.523
1.86485
1.04301
1.1584
1.62847
1.03704
1.45026
2.08221
12.4692
47.9456
16.8195
9.23606
6.91969
40.5029
18.9554
15.8397
292.926
36.3353
20.1284
43.7764
9.77861
38.8826
5.91447
37.7854
21.1824
16.9057
15.4286
8.01681
10.6253
25.1799
69.0714
10.0744
13.3247
35.707
44.2024
8.10912
75.0962
231.645
86.8921
90.5327
729.43
55.9337
52.91
639.848
70.296
96.1819
54.2273
78.3005
311.289
119.839
157.171
1082.77
140.707
52.6282
59.1234
282.763
78.7781
316.97
110.937
601.044
163.435
74.3704
350.007
154.101
568.631
1631.57
50.0547
101.56
420.791
151.99
12.8612
19.0765
26.0482
59.3667
16.9596
28.845
15.3014
72.9619
78.5172
20.0057
38.6672
26.2289
63.7468
125.791
106.308
154.849
21.494
50.2025
31.8112
73.6979
306.807
115.174
221.256
527.386
556.333
49.7845
14.604
13.8514
27.3626
18.606
41.7289
50.2414
189.535
81.4275
77.0715
50.3274
730.815
758.571
33.1241
87.2285
25.6098
191.806
25.9598
12.802
28.9976
11.4346
24.1307
189.836
14.6141
40.2477
6.70416
8.9468
5.38609
19.2091
27.129
16.2082
7.34296
48.4354
27.6491
13.5668
8.12242
66.4109
16.3908
199.974
47.7791
26.3319
68.4417
29.2653
8.72513
6.43613
32.5765
13.1486
12.3011
5.15945
30.3954
16.0408
107.31
41.7379
36.3697
15.8082
43.5494
36.7575
15.4472
103.015
41.3167
36.2805
15.7729
40.3749
35.122
44.0655
58.56
18.688
10.5271
16.1282
51.2512
9.07334
23.6435
31.7824
19.5486
9.86303
52.1145
13.998
24.0931
7.8541
40.9705
69.3917
66.0559
27.7843
71.2292
12.3029
28.966
12.1032
28.3585
69.5189
26.4966
63.6826
10.1611
20.8358
9.76619
27.2146
61.7314
26.9886
11.2887
59.6108
27.8209
25.8106
11.7236
66.5995
25.5005
8.96525
54.5388
19.3889
24.255
9.15917
58.9651
5.69649
2.66179
1.63048
3.21449
2.01036
1.25341
1.12461
112.549
88.8724
20.1068
100.97
40.2487
105.055
27.3197
27.5457
67.9736
15.0761
12.5064
95.697
38.4364
18.6963
10.3684
64.6687
13.4456
28.1589
60.4588
19.3879
15.9401
17.4845
30.8243
117.53
99.6084
189.448
1011.18
142.307
380.38
119.751
679.022
184.388
65.9652
91.1509
258.125
88.7951
950.881
1194.96
499.379
129.962
180.696
328.996
35.5241
61.226
844.917
53.7818
164.246
170.166
26.8141
65.5203
135.24
44.6549
343.939
92.7573
816.993
87.7667
88.236
78.7472
71.1123
69.3045
29.1375
75.5182
29.4071
12.9869
12.3593
70.7675
33.4339
28.0038
232.456
21.227
12.5441
9.62956
69.564
45.1904
27.7889
11.917
70.0224
29.4753
27.3091
11.9967
70.4301
25.9609
9.34148
59.0769
20.7813
25.3409
9.41371
61.0418
70.3027
69.912
27.645
69.268
11.898
29.5619
27.2001
12.0399
70.5904
25.978
59.6075
9.37916
21.0094
25.5612
9.56105
60.7016
27.5069
11.9909
70.3393
29.4547
27.5143
11.9619
70.2003
25.8523
9.46728
59.7942
21.4146
25.6552
9.66345
60.3745
55.1133
13.4177
16.921
42.1641
15.7813
32.0592
73.285
63.2872
66.7079
12.927
19.6772
15.5718
44.5813
69.289
163.879
79.2594
101.029
118.424
1028.59
85.412
20.3706
23.901
131.871
18.6349
86.5744
97.8857
291.4
213.16
132.457
1148.13
29.4064
15.8281
19.5794
37.8473
18.9449
29.6622
36.1763
108.2
61.4176
106.376
62.7111
125.201
120.737
75.934
202.912
165.091
218.14
158.216
245.882
72.5366
892.974
64.3941
91.9851
69.2688
84.6955
278.343
72.3255
86.3472
54.3954
983.979
102.245
170.958
126.016
133.273
57.1854
24.7419
19.5958
58.8927
59.6463
23.358
78.2205
86.9028
84.8487
29.2865
36.7184
51.1689
29.4404
155.673
279.571
1615.55
647.353
40.0788
28.9021
34.8854
74.8004
140.942
27.1057
78.6825
116.87
23.6538
174.019
38.24
110.643
28.0243
201.942
470.029
671.862
42.1213
44.8568
19.6856
19.7088
42.06
38.9911
14.239
28.0073
14.1439
40.2345
41.4278
19.1385
44.6307
19.4441
40.5478
38.4236
13.8576
27.656
38.2966
13.968
38.6892
18.7628
43.7279
18.6241
38.8469
37.2281
13.9455
27.0928
13.7546
38.2793
39.2093
18.9077
43.6837
39.8375
18.744
37.2674
13.6811
27.0311
37.7115
13.7035
143.492
14.7202
40.15
18.3107
129.79
43.1775
19.1338
33.491
152.743
31.7546
25.7633
104.697
29.2447
155.072
180.33
66.9048
12.1833
35.1587
16.1576
110.742
25.1852
13.2076
205.87
47.3252
31.8982
173.047
50.6749
190.531
527.965
699.955
21.1495
37.5648
80.1865
737.303
9.69562
22.1709
9.99723
41.5541
11.7635
9.17506
27.2493
11.5823
15.023
42.2874
56.1218
13.9988
14.0947
34.1808
28.9833
49.5935
35.0483
50.4721
30.0914
29.4473
86.1213
40.8582
653.35
59.4155
207.996
73.4826
40.0333
200.994
31.4032
23.3385
76.2211
141.263
26.4583
30.073
125.534
12.7002
19.095
30.6791
10.6216
11.9935
25.0452
11.9668
18.7505
25.4799
20.9639
144.072
14.5932
27.6408
64.9783
20.3953
17.8296
55.8986
40.197
17.5581
21.6506
66.6393
19.3282
73.8443
13.7006
70.5854
16.0158
17.2546
76.6475
28.4493
143.877
44.4742
173.937
33.1135
33.9611
133.657
22.7012
21.4188
67.1805
130.16
18.4492
26.2675
104.79
28.3403
12.322
11.5594
5.81045
25.0306
13.3927
12.7412
124.487
15.4736
15.7088
30.5613
30.8912
14.407
124.085
15.6394
26.1117
30.2065
28.8779
5.77949
13.3567
12.7595
13.4892
12.8672
28.668
39.6859
5.14973
10.1675
9.51286
19.5569
14.1532
12.6242
48.0505
18.4397
50.3659
38.3202
21.1746
50.7255
14.0301
37.0565
38.6027
16.7868
209.432
11.238
60.0282
38.6192
207.279
20.4203
190.403
36.785
4.67192
10.6369
27.3722
12.3331
12.4592
10.5733
4.69056
4.75828
11.1329
26.9011
9.81919
12.4016
4.56135
10.6382
27.161
12.8546
5.61344
13.5262
12.7401
27.635
12.8757
26.4357
26.8785
27.9661
30.435
26.1021
26.4272
27.4829
5.545
12.4222
11.6958
12.8666
12.6251
26.6065
34.4871
31.6306
5.16224
11.2046
12.2917
20.1523
11.5916
5.43185
10.1772
4.90675
11.0583
6.36939
12.5655
4.8562
11.2063
6.72227
4.93856
10.7754
6.44714
5.8557
5.30013
9.81612
4.39838
31.7982
7.40461
5.23688
4.13132
8.62285
5.01203
6.44576
12.1256
11.3215
11.5122
6.59801
4.9614
4.97464
11.2388
11.9731
6.43951
11.3478
4.94419
6.52878
28.503
6.06493
12.8378
14.457
27.8642
13.1172
15.7936
28.4927
27.1376
63.3681
56.1556
29.5899
6.0508
14.0579
18.2437
13.4836
16.8652
31.1077
25.8066
26.1423
40.3633
48.2704
2.42576
23.014
13.5825
42.841
14.8867
6.28398
3.29491
2.60502
19.0552
51.215
4.03921
16.3859
2.79277
3.5208
170.808
143.431
42.8554
12.1338
20.1012
10.5838
19.722
43.407
12.0221
43.0474
21.1456
44.0574
20.7735
181.852
185.723
41.2198
17.5714
11.0537
10.2889
37.2526
19.0418
11.6097
40.2043
16.607
34.4379
19.5732
44.9091
13.8393
20.7958
10.636
41.7018
21.4068
14.723
543.963
22.4841
15.9937
59.66
72.0088
28.5454
11.1194
34.346
21.9085
123.753
23.2502
74.3781
111.687
557.45
13.1089
6.54893
44.4324
11.7779
12.1647
46.7484
6.78062
23.5792
47.5188
191.4
22.8384
48.5633
47.3448
181.167
44.0701
206.056
22.4532
13.4625
10.0171
13.0695
30.2297
59.5821
8.76974
25.2024
71.1983
221.355
27.114
51.9057
179.892
46.8832
42.0513
13.7104
40.9529
185.059
45.8292
42.7429
20.2401
21.8161
171.963
35.9449
13.3025
41.3632
39.2733
153.868
44.521
54.0972
17.4979
4.30468
3.3189
53.509
17.5944
4.34686
31.6545
31.2536
31.7253
31.507
53.5934
3.27922
17.7584
4.35587
17.4534
4.31324
55.0541
5.36221
11.6975
12.4193
25.2819
5.46907
12.12
11.944
5.44999
12.9144
26.0913
12.2798
12.7104
5.48794
12.3211
5.35854
10.6153
6.72814
5.15568
11.4996
11.182
5.63767
14.7252
12.0848
13.5516
5.79152
11.6871
43.6823
3.18414
16.6948
3.97913
49.7293
15.6815
3.86767
29.1175
28.4187
73.4896
259.87
36.5131
7.80699
14.6066
19.8398
33.0579
15.1847
29.8787
31.1612
30.4006
5.42253
11.6701
24.6632
12.9162
12.8337
11.7685
5.4205
5.46966
13.0139
25.1128
12.0951
12.9474
5.50038
11.9378
5.65974
11.8249
15.0786
15.2542
11.8957
5.6229
5.76169
15.3228
12.0571
15.4734
5.74836
12.0929
7.14047
7.96531
18.4286
7.02437
17.6972
51.094
50.7062
52.69
52.9009
6.12675
6.01157
11.3371
6.03889
11.3295
8.2299
12.1655
3.34188
28.6601
29.0714
3.07776
13.0838
6.00644
16.5127
11.3126
25.3064
5.78654
18.0056
11.7525
1.22967
3.55792
0.582931
11.4644
0.575418
11.5262
1.25901
3.401
156.114
43.935
5.85964
2.00417
1.27038
0.373147
3.78015
0.392546
1.90602
4.01394
1.30851
3.81793
0.971815
21.9069
0.612143
12.6681
2.51003
3.2554
37.5167
37.8601
3.41482
5.50619
11.0909
23.3345
15.6808
15.6197
11.0402
5.52172
5.7202
16.2541
23.7214
11.2419
16.2351
5.7274
11.2447
8.4145
7.18129
18.3289
7.66001
18.9614
224.688
9.08545
15.3319
25.971
12.2998
20.9206
54.0873
63.186
1.28032
0.600597
3.50383
11.5544
10.8319
0.682977
1.28754
3.07188
57.8825
22.4283
28.6648
11.4494
1.97257
1.22069
0.362768
3.81092
0.379563
1.93477
3.89962
3.20271
37.7044
34.4281
3.48338
38.416
16.9271
132.405
37.6331
17.5076
135.592
11.9662
9.60109
33.3095
17.3856
32.9931
12.0801
9.55181
38.7554
18.2591
138.662
17.8537
137.279
39.1306
11.9067
32.1419
9.43591
17.2462
11.7521
32.656
9.52994
40.6773
25.6929
23.0718
44.9043
137.363
136.466
37.6915
9.16534
16.1542
10.7555
15.47
39.3107
10.5999
36.1788
20.014
35.8573
20.0914
149.998
159.961
33.1955
16.067
124.657
36.127
14.0597
115.424
10.3758
9.01381
26.7995
16.2099
9.69834
28.4238
9.14881
24.3575
565.914
48.0482
49.2243
14.1376
66.238
78.3075
11.1053
31.5207
9.40597
16.5544
11.576
30.3553
9.28259
51.408
27.1271
28.5773
46.8932
23.401
9.02003
9.27631
5.25959
8.51335
32.3634
7.45208
565.267
46.3011
9.6611
18.2081
10.2871
18.9188
42.7808
10.6458
198.355
169.153
81.7982
32.7059
30.513
120.956
12.8253
7.35333
4.95416
5.20947
7.65314
11.6703
5.50307
18.0702
36.9677
11.9005
37.3292
17.9346
11.8539
37.5492
17.5537
37.2628
17.6483
3.43863
13.6067
3.49488
41.5011
3.36505
3.72118
14.7839
3.59679
3.84322
42.8551
15.1763
3.84418
3.59835
15.2117
2.4382
1.50159
0.924265
3.02936
0.900498
2.54881
2.87833
1.75995
1.21135
0.396896
3.77222
0.42209
1.74557
3.74853
5.49034
5.7319
2.34566
1.46006
0.903716
2.76413
0.901363
2.36311
2.75718
5.87825
6.26136
2.39102
0.893685
3.01166
1.5161
2.97161
2.47439
0.871211
5.65139
5.58731
1.58315
0.632055
0.278493
3.48643
0.255019
1.61226
3.46718
5.8242
6.07642
2.31018
1.48588
2.96058
0.822376
2.94749
0.836375
2.27483
11.3363
18.146
36.3625
17.9101
35.0464
10.751
16.2497
28.2546
17.4254
32.3747
3.53549
14.5989
41.112
3.70575
3.73002
14.7218
3.527
3.56868
3.79918
41.6
14.9911
3.7687
3.57908
14.8514
25.6156
2.51556
25.985
2.5483
26.2916
26.2859
2.86032
10.6676
2.63243
28.0592
2.61735
2.86243
10.4653
2.83775
2.62471
10.3763
27.4919
2.85063
2.59728
10.2111
1.10975
1.95272
0.434674
4.46961
0.407212
1.18844
4.2522
0.392618
0.171227
0.122192
0.558502
0.126712
0.396352
0.493175
2.7811
3.14343
1.15199
1.98957
0.449242
4.49931
0.426524
4.38039
1.25351
2.63586
2.85324
1.20827
0.447881
2.12089
4.53515
4.56803
0.451695
1.21517
2.86706
3.05089
0.43252
0.213729
0.1221
0.591449
0.115231
0.416083
0.653419
1.23657
2.19555
4.89079
0.487808
4.73337
0.467232
1.30217
2.83064
2.90544
3.00013
11.9155
32.1697
2.90344
2.87362
11.7597
3.01188
2.94463
2.73232
31.2512
11.0053
2.79783
2.92185
11.4803
2.44516
25.5368
25.6851
2.50879
26.1872
25.8132
8.34547
22.9411
8.45994
14.1058
8.21158
8.69038
14.4531
9.87206
6.75964
58.0188
10.1065
40.438
11.74
5.18266
8.75932
24.2892
9.83454
15.5574
9.10511
15.152
9.48724
9.35651
35.9632
4.67925
8.97576
9.21681
36.9399
4.73045
36.007
35.4401
128.327
11.0441
124.268
10.8256
36.976
13.9559
18.3425
12.2883
20.2903
34.49
34.6892
109.009
10.1046
117.182
31.694
10.5829
14.7277
22.3494
21.4964
15.1667
124.066
34.9214
124.704
129.164
35.3159
126.067
7.93477
21.2473
8.26953
13.7757
8.03387
8.17844
13.5777
8.871
4.42425
34.5026
8.29651
8.85553
34.5195
4.43236
7.94269
20.9871
7.98725
13.4618
7.88807
8.10683
13.5031
8.90057
35.2945
4.50082
8.36597
9.00867
34.7133
4.46682
39.4018
132.578
39.0906
11.3869
11.7653
139.626
37.9506
16.5693
24.9147
24.7955
16.6717
16.0941
23.21
24.0782
15.5735
43.0696
42.9614
22.0195
497.453
12.9363
165.564
60.6873
489.225
40.7726
160.557
131.526
37.7536
136.601
37.9378
76.9093
72.3379
93.1136
291.612
65.5048
93.0467
285.934
20.5921
1.66117
16.1558
12.1488
20.3791
11.6023
89.233
14.6129
2.82617
10.505
2.58151
28.3615
2.82993
2.5788
10.5212
2.71599
2.5042
28.1798
10.3613
2.5162
2.70496
10.4569
1.29459
1.88499
0.468284
4.22762
0.44265
1.37009
4.18351
0.736256
0.243918
0.203648
0.703983
0.206365
0.738341
0.797546
3.30855
3.40621
1.27886
1.97059
0.457505
4.50225
0.441863
1.31339
4.42933
3.37064
3.6087
0.809034
0.433772
3.56785
1.17575
2.47276
1.32653
0.29553
1.08239
1.73956
2.41175
0.799099
0.611947
0.232911
0.180702
1.83206
0.134701
0.888613
1.37912
1.78177
8.72867
3.46937
4.09404
0.508718
1.04895
0.915901
0.169576
1.96589
0.21082
0.403089
2.42769
23.7165
24.7384
2.54291
25.8599
25.7696
2.31879
9.6092
26.285
2.20634
2.22716
9.71777
2.30841
2.31478
2.27584
26.5795
9.93138
2.24859
2.33348
9.8062
6.4395
2.81016
5.60394
5.83921
6.89349
3.15187
6.69741
6.68927
6.62296
7.32024
2.17256
1.82362
4.06772
4.05799
2.18607
1.67711
2.19094
4.19991
1.67801
2.21823
4.1207
1.65104
1.83339
4.08223
6.94654
7.11561
1.3021
3.28312
2.05981
7.82958
2.72738
2.34411
4.85789
1.88493
3.15695
4.81857
14.9353
12.6672
3.2778
4.28334
2.91198
10.9381
4.12708
12.1552
2.78529
4.3233
2.32965
1.69178
3.84107
4.33619
1.63738
2.10795
2.38144
4.51209
1.76498
4.5223
2.38703
1.71505
2.04444
5.97611
4.30147
5.98599
4.16936
2.05475
6.5335
4.70452
6.06046
4.2573
4.06713
30.9341
7.85446
7.52367
4.0464
7.99215
7.64965
4.09316
31.1637
8.01874
7.73058
8.01439
7.70883
4.09891
6.14693
9.08402
14.8491
6.71435
13.4374
6.23066
6.52906
7.57001
7.46478
17.8273
25.2695
18.2763
7.23957
7.831
8.3605
52.528
12.6944
8.47935
13.1691
7.59816
10.2344
6.39863
20.8895
27.2619
8.8063
18.8805
7.78858
6.68225
89.197
30.5873
29.5243
17.4264
12.7211
18.4363
59.9503
24.6102
26.8913
19.8602
13.7281
19.6515
4.06445
25.7705
7.60545
7.3649
4.13063
7.05221
7.04694
3.82348
18.2288
4.26351
5.5027
3.69106
5.73057
6.21327
6.79046
15.8344
11.3422
7.00159
7.08878
16.2663
6.70164
7.02224
9.81819
34.4505
23.182
9.80196
23.0451
7.05825
7.05698
22.1838
34.0141
9.37723
9.72107
22.7997
6.87913
6.80244
11.4394
7.13265
16.5071
7.10063
16.4221
6.83387
108.382
32.4223
33.5459
22.8558
15.876
22.6949
109.439
34.1895
33.9644
21.3982
15.6101
22.3656
31.4188
34.4336
39.9108
76.9804
72.4045
43.9778
289.892
66.5294
39.4261
69.5291
37.3426
24.2224
32.2058
30.5018
71.0544
40.4008
37.7969
34.511
29.5131
33.6335
39.8113
35.6061
36.9579
28.8323
33.3339
34.2678
37.7016
8.43672
31.1662
10.6018
31.1823
37.7459
10.1123
68.8435
11.7537
91.2732
18.8888
292.358
44.4377
14.2622
70.1213
13.8696
16.2383
71.103
12.8746
284.571
16.1808
21.416
18.9279
43.5611
9.39944
32.4806
11.0983
34.5778
39.7199
11.5559
90.0298
19.7409
14.6461
77.297
15.3694
36.7516
36.2988
34.6501
28.8002
21.684
29.4987
33.0475
24.3119
30.9413
4.53455
1.8197
0.751659
1.43174
4.09936
0.690203
1.21575
3.62885
1.27919
3.80192
2.18147
1.8618
3.93061
2.17691
3.94014
1.91054
2.05774
3.64603
1.84387
3.74463
2.02885
1.85935
0.29283
0.79057
3.85164
2.47233
0.734825
1.15661
0.425059
0.117582
0.426485
0.170429
1.38905
0.0950893
0.607369
0.220165
0.0726667
0.0765174
0.308712
0.173649
0.178898
0.0784949
0.0716593
0.0783903
0.238909
0.356193
0.0986273
0.200295
0.080788
0.0869815
0.295631
5.79749
8.06965
5.88874
0.397563
6.90249
13.564
6.38495
1.71
1.62842
3.10442
3.15294
1.65313
1.68997
1.80572
3.40568
1.74361
3.29993
1.84557
1.7163
0.932254
0.169977
0.159669
0.168982
0.954465
3.29927
0.299714
0.4478
2.76798
0.27333
0.148209
0.184365
1.00544
0.177271
0.988282
0.237554
0.432476
1.94288
2.36597
0.257637
1.0604
1.00453
1.77652
1.77342
1.06224
1.05338
1.07845
1.80977
1.07152
1.08053
1.80324
1.08514
1.09344
1.21943
1.95259
1.93783
1.23214
1.09822
1.08869
1.86485
1.12424
1.89279
1.07984
1.1915
0.257731
0.907504
0.149859
0.898907
0.144386
115.053
21.6106
0.431903
0.15561
0.430301
0.521522
0.176821
0.284448
0.843156
0.126663
0.869158
0.137273
0.21099
1.60651
0.438401
0.67271
0.194656
32.82
23.6863
33.2689
122.903
103.396
97.4327
99.073
23.9835
36.7195
34.0824
3.55366
4.48183
7.78701
3.27423
7.6226
3.26191
3.59942
6.79297
5.63564
24.0111
9.45339
26.5641
6.23543
6.1376
3.40019
4.30012
6.8226
3.10522
7.27457
3.29043
3.11983
7.1768
28.8187
10.0511
6.55861
28.0667
6.44626
7.2907
18.0637
14.0507
13.8333
68.0881
9.16947
24.1148
9.7672
73.159
17.5617
12.6231
13.4232
10.1964
24.7929
76.3511
10.0616
75.5815
3.69848
7.91634
4.62921
3.34682
3.35497
7.99949
3.68162
7.60196
7.15186
10.9582
33.8969
6.93901
30.6795
8.01232
7.54977
29.2545
10.6944
6.67007
6.8061
29.7184
7.40725
3.77249
4.71967
3.43847
9.23976
3.38741
8.23151
4.02977
18.6591
14.1219
14.2431
78.2781
10.3124
25.5346
10.3176
78.3208
18.7927
14.3397
14.2922
10.224
25.4221
76.8587
10.3091
77.7511
284.758
11.7604
12.0316
40.0365
69.1005
15.8044
76.4735
28.1042
24.4792
21.2884
79.4099
11.316
16.5344
68.2952
14.2066
30.6922
6.44302
26.254
8.10878
24.7851
33.9863
7.6918
37.0361
10.6605
75.1121
13.1594
39.0236
68.9128
10.0997
36.3896
67.316
9.8481
11.6851
41.5974
66.6848
9.2254
36.1213
6.49395
9.43091
33.3712
42.6146
7.96868
30.4586
28.8963
5.61255
23.7957
6.98333
23.0703
29.7899
6.61711
32.3406
40.804
8.93722
8.17356
37.3298
33.7924
7.62156
33.6773
26.4454
29.2341
26.8929
17.2302
25.4888
282.718
18.9241
14.9298
22.2895
27.0831
5.13569
26.7383
4.29417
25.4623
28.5634
4.70012
27.2976
5.17599
5.09118
29.1962
28.5267
4.94828
27.2646
26.7567
25.002
4.22494
4.71208
24.9897
27.3379
4.63689
54.8195
26.925
34.0666
32.4368
9.49781
1.83104
8.14325
2.27441
7.64525
10.3763
2.15746
13.4086
2.12694
12.5527
3.07143
15.0347
10.0343
2.54685
53.808
29.4728
29.4303
54.5391
224.272
63.143
11.6994
19.0003
2.7703
3.14965
13.1031
17.1497
2.6141
15.3946
3.44537
23.1815
3.79262
21.7503
17.0075
3.1847
73.9453
56.6536
36.0628
242.263
11.627
2.12595
8.67627
2.4721
8.99397
11.1851
2.54293
62.7795
30.848
32.5095
58.7918
14.7067
20.6259
3.71168
3.03114
21.0436
14.2098
3.09576
25.8819
4.57246
4.54361
26.4483
26.3942
4.35836
25.9957
24.4432
3.50168
17.9167
3.64555
20.4815
22.2278
4.15962
24.72
23.3086
4.25064
3.6559
25.5611
21.81
4.08046
1.34801
0.398017
0.338447
0.171303
0.29487
1.6396
0.364738
5.6013
1.57627
1.61053
1.31511
0.384339
0.2925
1.92064
1.78762
0.344938
1.4246
1.28392
0.135167
0.221475
0.359795
0.241305
0.35427
1.27142
1.04399
0.976239
1.7493
1.0395
1.74918
1.02475
1.04812
1.49648
0.956628
1.69876
0.973398
1.05051
58.6032
0.387296
0.566143
0.530178
3.04362
1.05697
0.882772
34.4054
2.04123
3.56191
14.3474
0.405137
0.113145
0.521528
5.40424
0.480763
0.360473
0.79914
0.105889
0.806874
0.0709302
5.50582
0.551001
2.53329
0.530725
4.29687
1.99862
0.779286
0.761287
0.856903
1.23936
1.28845
0.916443
0.735758
0.808127
1.39727
0.92905
1.31844
0.846667
0.938766
0.128478
0.0985381
0.0222843
0.023623
0.0236842
0.0906923
0.132769
0.585275
0.450343
0.446324
0.62305
0.405909
0.356328
0.575769
0.168627
0.173401
0.398665
0.660894
0.55744
0.457284
0.444734
0.543558
0.13366
0.0224238
0.0253897
0.0932326
0.024148
0.0912506
0.140004
0.320372
0.302128
0.325213
0.25441
0.369584
0.365902
0.402304
0.353753
12.5601
9.41238
12.1688
18.8739
16.301
15.7015
15.2506
17.9379
14.8928
10.2737
13.7081
13.1063
22.2489
22.9655
84.229
6.98408
70.7532
6.91778
23.0522
14.4641
9.28601
4.19957
4.18198
13.7044
4.41774
9.93933
21.0439
22.0002
64.801
6.26248
66.7125
20.1494
6.52333
15.4156
4.0356
4.75087
10.0908
4.81816
14.9264
10.81
2.40508
2.22608
3.46789
2.94209
2.19849
2.93264
2.41287
60.3263
280.248
6.78445
13.2109
19.4997
38.2617
19.8542
12.5221
5.98058
3.95406
5.79992
20.2481
12.3072
66.601
7.66269
22.7859
21.7541
70.404
18.8811
4.70632
3.8377
11.0929
5.42893
16.8707
11.8835
198.882
181.551
51.6843
7.99533
1.46258
1.16867
5.84008
6.19677
1.38074
7.30166
11.5044
2.16152
2.2051
17.7026
14.0133
1.8703
15.85
10.803
9.39305
1.34473
1.87966
8.20729
9.95043
1.59771
52.6627
24.6223
27.2062
44.6281
27.404
46.0636
25.3066
53.2246
29.6796
24.1541
25.9597
27.5628
5.28822
0.994171
4.46695
1.09391
4.6421
4.98791
1.11713
8.18787
1.68653
10.0804
1.66758
8.12051
10.7569
1.37699
23.6025
22.5353
22.6614
22.8566
46.5237
50.0249
196.199
6.32522
7.18099
1.26421
1.57072
5.78673
8.17095
1.30628
26.4816
46.0992
31.4893
29.4911
4.58052
0.959878
1.0058
5.02445
5.18358
0.903707
4.52427
4.7905
0.815244
4.69378
1.00291
4.32705
5.22932
0.893164
22.3051
22.3777
22.5242
22.1284
24.9223
25.2879
24.3577
26.3288
5.45907
7.42078
1.135
1.1373
6.46545
6.05675
0.998102
22.3355
22.3972
23.4623
21.9488
19.165
2.82399
2.57666
19.8519
16.9613
2.60214
21.5328
16.6682
2.92956
14.8866
2.01529
19.7511
11.7188
2.41378
14.9925
8.76995
2.21977
1.9123
12.8244
10.1762
2.29751
19.8957
20.6578
20.3807
20.6447
19.6537
22.3895
21.8039
19.5169
3.35961
0.631922
0.560394
3.45862
3.32878
0.592335
3.41734
20.0507
21.5964
20.5906
21.5114
19.4745
21.0849
20.734
19.2936
16.0908
18.7656
17.5656
17.9482
10.3628
7.48896
171.999
9.25754
9.45498
12.3695
9.64038
8.22229
14.2633
14.623
17.2391
17.2681
14.0831
20.3462
20.5837
20.7448
19.5884
19.4923
16.5365
15.4284
20.3998
18.1217
11.6884
13.7215
16.545
21.0268
21.8703
21.094
21.7439
18.2697
18.7903
18.5942
18.2858
18.8436
19.0071
18.948
19.2212
18.5117
18.3285
18.1039
18.7925
18.1582
18.1223
18.3544
18.001
0.174832
10.2773
0.199414
0.265545
0.15059
2.33089
0.140303
0.105264
1.27828
0.120052
0.129279
1.59375
1.09957
1.05211
1.25065
0.092463
0.547431
1.22037
1.15438
1.2907
1.14508
0.422268
0.0882575
0.356677
0.221865
1.92313
0.266821
0.282007
0.305782
2.04981
2.21996
0.359052
0.280203
0.309228
2.1153
0.0826805
0.0745323
0.224253
0.34015
0.133771
1.84524
0.953846
2.20808
1.16278
1.24134
3.58514
8.04875
0.515546
1.00636
2.61581
1.52494
1.52477
1.55159
0.858775
0.0430541
2.39101
1.54363
0.351709
0.502576
1.52817
6.04119
2.35289
0.449945
0.553341
0.917898
2.51184
31.0933
6.35869
14.3791
4.3841
20.4814
11.0964
15.4169
7.71993
6.30254
5.62625
212.501
21.4767
8.07338
69.4604
32.7795
46.9236
4.97614
17.3838
17.1659
15.7237
16.6319
51.0704
9.12424
3.01844
11.3541
2.97852
11.2017
2.94386
9.22358
6.56378
4.59228
3.03107
3.18942
6.48765
3.05724
4.64025
8.99684
2.97052
10.9121
2.87158
11.0336
8.90656
2.90169
6.66489
3.12221
3.22915
4.75115
3.09592
6.74144
4.70537
9.42335
11.5439
3.27844
3.01712
3.05789
11.8084
9.32047
6.95384
4.91395
3.21505
3.31703
3.19348
7.02275
4.87448
9.5492
3.41285
3.13901
12.3322
3.10123
12.1295
9.64514
6.87777
3.14882
3.29609
4.7953
3.16958
6.81281
4.83075
2.07704
0.306683
0.297733
0.125742
0.530355
0.516126
0.129471
2.30609
0.323875
0.335291
0.146098
0.567282
0.591983
0.139698
14.6814
13.5783
12.3944
15.36
14.9073
14.9728
14.4726
15.049
14.121
10.3613
11.4697
13.266
15.169
15.4915
15.6346
15.1042
9.61463
12.1047
8.22061
13.505
7.54001
6.77444
36.0548
6.08092
8.60281
8.56554
41.9685
36.5431
5.10719
156.318
6.56653
6.55178
11.4329
16.2895
12.9511
14.9624
8.01742
10.428
8.84375
6.97077
157.632
4.73279
3.65532
17.3618
17.3607
4.01255
20.408
4.23766
6.12614
35.4284
4.57024
22.6543
4.95163
5.65285
35.95
6.18627
6.89654
32.2306
7.75222
41.5283
5.46036
16.6442
14.8862
16.0993
15.8397
17.0145
17.7687
17.8979
16.8006
17.2325
17.5828
17.9978
16.714
16.5152
15.8694
16.1226
16.2837
2.48554
16.7119
2.10471
14.3401
2.41966
16.361
2.14699
2.33882
2.8802
13.8751
13.1667
13.5663
2.66395
2.46225
2.25077
15.014
2.42929
14.4064
2.22384
14.2593
2.51221
2.59966
13.6523
16.2488
2.29924
16.1251
2.21438
2.74314
2.21764
15.9896
15.8089
2.05826
16.4463
2.10226
2.17487
2.37827
1.82587
17.3583
16.4282
17.4536
2.32515
1.84981
2.27745
16.4455
16.9275
2.17631
16.7965
2.25556
2.16886
2.34367
16.897
16.077
1.75404
17.3061
2.32374
1.79808
2.46159
16.4952
17.18
2.07152
2.37658
17.6275
2.15209
2.46744
2.61201
17.2237
17.0369
2.55165
16.9554
2.5492
2.55918
16.8903
17.8437
2.29338
2.60644
17.7941
2.24978
2.33884
15.8165
2.36833
16.6309
2.21923
16.5434
2.45216
2.25055
15.1455
2.09559
13.7374
2.14266
2.20943
14.5119
2.51212
1.74726
13.4755
15.6462
15.8998
1.75193
2.59059
2.44084
16.5062
1.75478
14.1729
2.37901
16.1912
1.75367
2.30649
12.9983
2.30309
13.1861
2.21608
13.8516
2.36949
0.202123
0.306569
0.204453
0.780389
0.828407
0.167571
0.416226
0.162195
0.452504
0.0855454
0.177376
0.131943
0.165757
1.8195
0.228026
0.19245
0.160376
1.69664
0.326735
0.113285
0.288746
0.1479
0.212292
1.47751
0.367376
0.174253
0.141667
1.63067
0.351944
0.454321
0.230035
0.733811
0.691177
0.409405
0.320686
0.269948
0.224781
0.0302717
0.178131
0.18384
0.131847
1.10204
0.0483623
0.0635142
0.0550686
1.12411
0.391129
0.025222
0.0718501
0.150749
0.104561
37.3574
1.36077
0.10522
0.0676778
0.0638426
1.2201
13.3015
1.65627
1.55828
2.69479
0.325033
41.9673
0.587488
0.0261769
0.0509044
0.43036
0.65325
0.72605
0.472729
1.30683
0.239688
0.131523
0.0143109
0.0126729
0.0142433
0.125902
0.135792
0.0203824
0.0146897
0.0156417
0.127567
0.969442
19.0738
0.32115
1.02976
1.79321
7.8587
0.533251
10.8247
0.778407
0.459347
3.47485
1.02164
0.0446699
0.0370141
0.0413351
0.697304
0.154898
0.0284719
0.031981
0.037321
0.570148
10.0924
2.3785
8.65375
2.40744
9.94674
2.42527
8.76834
11.9671
16.1151
3.93557
2.90785
15.0147
2.76987
12.2459
11.6347
2.51884
13.4767
3.33654
11.411
13.958
2.60864
10.2785
2.46175
2.53558
8.9811
2.4951
8.91477
10.3906
5.34289
2.36818
7.19431
2.53179
7.09492
2.50427
5.42832
3.74287
10.3396
2.4091
2.68856
3.50366
2.53741
10.9828
34.6516
34.1583
5.18787
2.32748
6.55126
2.3476
6.9134
4.86357
2.45563
3.84739
2.61878
2.74583
11.3976
2.59124
3.90349
11.2476
5.59133
7.27762
2.46162
2.56184
2.59559
7.37379
5.50411
4.10746
12.1837
2.7682
2.93468
2.75604
4.14193
12.0535
35.2141
35.9715
5.70806
2.51782
2.66813
7.54962
2.65595
7.50119
5.75609
4.01876
2.65151
2.8478
11.5669
2.68626
3.95663
11.7757
1.70356
0.230645
0.236869
0.0971456
0.386957
0.404383
0.0928277
1.569
0.219785
0.21532
0.0809128
0.357545
0.34231
0.0847097
4.52545
0.2113
0.159084
0.0462654
0.280444
0.247114
0.0554573
1.62363
0.191238
0.269631
0.128338
0.379858
0.68004
0.0792121
1.16281
1.23684
11.2464
10.7817
10.5421
1.17875
1.21304
1.00163
0.899206
9.39271
8.73139
9.54697
0.931122
0.959869
1.02688
11.0167
10.1595
0.942645
10.3068
1.03378
0.945545
1.13031
10.0319
8.97961
1.12166
9.79066
1.17502
1.0815
1.47932
13.3211
13.5631
1.41708
14.1876
1.46551
1.41935
0.948887
1.34416
14.8204
15.8303
15.1871
0.956814
1.38373
1.51836
13.656
14.1446
1.40828
14.5285
1.44759
1.48453
0.917375
14.1891
15.4973
1.4371
14.8298
1.40627
0.884205
1.18548
12.7875
1.24759
11.932
1.1779
1.28204
12.5338
1.01264
0.863308
10.5508
11.7608
0.951809
12.1604
0.925824
1.16257
13.0924
1.20374
11.4768
1.09732
1.26371
12.6626
1.02727
11.6805
0.944302
11.9659
1.0306
12.2311
0.941348
1.38294
12.8791
1.40354
11.3252
1.37939
1.40592
12.1893
0.794475
1.73529
13.4818
11.7041
1.63266
12.4363
0.763915
0.823444
13.6224
1.48638
13.9705
1.54783
0.854406
13.0636
1.34634
10.5853
1.28844
10.6307
1.3418
11.4458
1.29191
0.616526
4.28725
0.497044
5.01332
0.542475
5.87507
0.564792
0.870804
0.968825
8.75702
7.59144
7.84804
0.92376
0.919818
0.80304
5.4206
0.768417
8.24879
0.705064
7.11431
0.862652
0.667718
6.03905
6.66048
0.661791
6.73723
0.621385
0.700626
12.7492
26.9042
13.7985
15.4476
15.9156
17.3761
11.8505
12.0902
12.1759
115.635
30.8243
27.2567
0.353732
2.76268
2.71996
0.454338
2.40943
0.401076
0.390179
0.277244
0.264039
1.88308
1.88567
1.81193
0.271587
0.259658
0.327067
2.49897
2.20985
0.34219
2.24081
0.312976
0.362907
0.293799
1.9738
1.87164
0.287753
1.84283
0.316275
0.271744
27.0774
99.7287
88.07
12.9441
21.4899
24.6572
0.410497
2.5734
3.58096
0.432735
0.470465
2.87331
0.38273
0.461277
0.442291
2.95934
3.24223
0.421104
3.33589
0.49231
0.365955
2.30589
2.30268
0.32779
0.342192
2.49614
0.346323
0.529883
5.10196
0.665067
3.96933
0.614717
4.03702
0.571874
0.512087
3.26901
0.529494
4.17878
0.607118
0.447519
4.08178
0.463159
0.45258
3.17604
4.09708
3.05441
0.405334
0.526527
0.40414
2.21943
0.317171
2.59381
0.35515
2.64917
0.354838
0.578581
5.52306
0.786144
5.25924
0.697824
4.16219
0.653012
2.10865
0.0919103
1.50333
0.184786
0.012339
0.303893
0.0902439
11.3948
0.575931
1.0788
0.0544191
1.06808
1.28183
0.133586
0.0411425
0.0506561
0.103402
1.59258
0.107381
0.0132725
0.00792944
0.0115771
0.0938719
1.10184
0.158969
0.0120472
0.00662338
0.00942157
0.580274
0.0817783
1.07608
0.0470049
1.31564
0.791446
0.030926
0.0337965
0.601432
9.75918
3.02978
0.49019
0.42975
0.0706082
0.950418
1.62756
1.22756
0.0302961
0.0559948
0.0829449
0.178021
0.0549944
0.00449452
0.00415103
0.00464697
0.154485
0.0567118
0.22261
0.079093
0.0075553
0.0045019
0.414206
0.00560333
0.0658675
5.873
0.211274
0.172575
0.791651
0.103134
2.09478
0.0808313
10.4243
0.0420743
0.00554134
0.0080247
0.0270327
1.32972
0.061715
0.550378
0.0795854
0.0108743
0.12165
0.0136918
0.0123917
0.00862592
0.00211408
0.00188683
0.00198668
0.00965227
0.0111298
0.0199469
0.0207831
0.00252363
0.00227925
0.00250294
0.103506
0.011393
0.988527
0.0790042
1.74625
0.310367
0.026276
0.543278
0.0447764
8.81001
0.303066
0.258289
0.100665
0.331779
0.0654516
1.64394
1.24034
0.111226
0.0175025
0.0314237
0.0393521
0.117045
0.0511453
0.00408824
0.00382384
0.142122
0.00380299
0.0485323
0.100047
0.0426516
0.00302034
0.00366924
0.118003
0.00327952
0.0439156
6.2995
1.78602
4.96147
1.9071
5.98009
1.84262
5.27961
7.55162
8.63563
1.82221
1.86864
8.52281
1.84238
7.65288
7.25081
1.74346
7.90213
1.77081
6.93186
8.22271
1.79319
6.6017
1.9594
1.91765
5.65928
1.89223
5.57677
6.6938
20.5738
3.10604
3.45942
1.77586
4.23613
3.56259
2.40958
38.7904
30.5292
2.48245
0.990644
0.845403
0.690315
2.10774
0.931136
1.08034
15.37
6.9638
22.5314
6.67746
11.9173
2.40383
3.25986
2.28788
3.60556
10.0875
2.534
134.483
5.19854
1.85758
0.784949
1.59661
1.43892
7.4333
1.37618
2.89401
3.72763
2.01076
1.97097
2.08583
4.01776
2.68267
9.45074
2.07633
2.27231
0.827181
2.24633
9.56052
2.04951
27.1698
7.22923
25.099
7.5032
3.1035
2.06655
2.16343
4.3639
2.13809
4.28876
3.15378
9.06728
2.09111
0.876866
1.72476
2.2117
8.45905
1.80636
3.82937
0.108774
0.115326
0.0268004
0.12737
0.153027
0.0254952
3.19224
0.0894196
0.085768
0.0180419
0.0868786
0.0792731
0.0195054
1.91565
0.0484216
0.040733
0.00574371
0.0337447
0.0237196
0.00738694
2.8202
0.0599135
0.0615533
0.011898
0.0530479
0.0547962
0.0116769
0.372485
0.314194
1.34514
1.24406
1.38089
0.334635
0.34284
0.375254
0.270269
1.72655
1.34032
1.28764
0.247824
0.436721
0.327739
1.23464
1.56238
0.218303
1.25467
0.294308
0.228405
0.427547
1.29738
1.54228
0.444415
1.44115
0.386795
0.500455
0.340232
1.64519
1.58934
0.405229
1.54296
0.371432
0.367626
0.281474
0.2316
1.76766
1.57226
1.71984
0.276248
0.229135
0.316975
1.65834
1.61181
0.331031
1.56263
0.302653
0.347031
0.297883
1.78096
1.51022
0.249386
1.70409
0.238099
0.317607
11.065
11.4072
11.9234
11.875
11.5495
11.4018
11.782
12.8246
12.4696
10.1142
11.0237
10.7371
10.237
11.823
10.1543
22.0446
85.5329
20.7191
12.1477
11.4881
13.3396
12.9825
22.0634
11.4312
10.9723
9.08663
10.6118
9.27254
8.09472
8.37166
9.5187
9.68439
8.91564
8.83418
11.2966
10.5008
0.280485
1.21003
0.289339
1.32147
0.302783
0.271918
1.30733
0.230875
0.183021
1.26525
1.21002
0.212626
1.21894
0.197753
0.266484
1.28413
0.254963
1.40523
0.256053
0.260963
1.34586
0.245624
1.22006
0.209457
1.25689
0.265864
1.2096
0.20321
0.459828
1.66578
0.4538
1.93115
0.513708
0.408514
1.78622
0.454031
0.376796
2.16392
3.0127
0.335928
2.47889
0.531235
0.390293
1.90632
0.270065
1.83053
0.29657
0.349304
2.11145
0.539748
2.14181
0.733246
2.35055
0.606838
1.99575
0.6444
0.0366188
0.0378258
0.165692
0.115067
0.129624
0.0385632
0.0363543
0.0384223
0.177785
0.0374051
0.181366
0.0390954
0.150627
0.0387678
0.0365501
0.161253
0.0931373
0.056484
0.115266
0.0570328
0.0366763
6.51025
5.79239
6.35645
7.54797
7.1771
7.00259
7.06712
7.44523
6.89936
5.87037
6.6213
6.45202
5.71369
5.24224
5.13419
4.01773
3.64944
4.22702
5.39021
4.58883
4.8065
4.67448
3.97769
4.55558
5.18546
4.68326
4.55905
4.3536
3.65024
4.22762
5.24911
4.91777
4.76511
4.06297
3.40209
3.94038
0.0951472
0.0989695
0.245821
0.275981
0.317396
0.100735
0.0970378
0.126717
0.397699
0.134029
0.372978
0.127779
0.425178
0.132634
1.54472
0.00639898
0.0821525
0.0160775
0.00402551
0.0201301
0.00323859
3.96435
0.592698
0.518381
0.0689424
0.0344669
0.0745272
0.0526407
0.0035955
0.111959
0.0465757
0.0123145
0.00370666
0.00249861
0.0304087
0.0096106
0.00786747
0.00173435
0.00174849
0.00167927
0.00999993
0.00794667
0.00855182
0.00686372
0.00147149
0.00168481
0.00154514
0.00716345
0.0077071
0.0379454
0.00469887
0.0423939
0.0169649
0.00229692
0.00236599
0.0154741
2.84794
0.499611
0.337873
0.022943
0.0208631
0.0323558
0.0180889
0.00535092
0.0973001
0.0493619
0.0193966
0.00290644
0.002628
0.025124
0.00363093
0.00413908
0.00110453
0.00132629
0.00112468
0.00347752
0.00419201
0.00399371
0.00473171
0.00126006
0.00138537
0.00464223
0.00119702
0.00442789
0.144427
0.118266
0.0965642
0.00770705
0.00822891
0.00989115
0.00669479
0.0323128
0.0107616
0.110316
0.0112288
0.00192268
0.011663
0.00198097
1.25089
0.137666
0.230593
0.0456472
0.0262467
0.0224168
0.0101343
3.24679
1.59195
2.36697
1.63183
3.2007
1.61262
2.40524
4.16699
5.1847
1.55016
1.71242
4.90961
1.61637
4.4208
4.06346
1.55993
4.72318
1.51978
4.00974
4.78884
1.57904
3.33651
1.67617
1.75632
2.66531
1.65443
2.47874
3.56453
1.44566
1.62705
7.27449
0.550906
7.2071
0.548077
1.45806
5.67846
20.7983
21.1031
5.58771
0.677612
0.505256
0.417201
0.42152
0.674119
0.417986
0.506245
3.7868
2.87387
3.84095
2.83068
1.43056
1.61461
7.06571
0.538708
7.14141
1.41687
0.541286
5.74779
21.4997
21.3017
5.82183
0.685277
0.425955
0.429736
0.51487
0.425023
0.688406
0.514003
1.50498
7.37597
1.68329
0.562697
0.567702
7.50014
1.48288
0.750268
0.590745
0.489936
0.488066
0.477225
0.805093
0.573206
6.29468
25.1899
22.9286
6.96867
4.00949
2.93728
3.91907
3.007
6.06005
21.8149
22.2209
5.93095
1.56756
1.73094
0.638023
8.38066
0.6026
7.73038
1.71986
0.708576
0.437925
0.444899
0.528754
0.440037
0.702713
0.530335
1.41655
0.0349605
0.0394531
0.00825057
0.0346687
0.044335
0.00674015
1.03106
0.0278776
0.0259521
0.0036467
0.0191626
0.0160754
0.00419337
0.0300586
0.00669458
0.00577656
0.000996823
0.00253602
0.0023491
0.00105019
0.239988
0.0140923
0.0418999
0.00248233
0.00580943
0.00986169
0.00180544
6.66443
5.60159
6.16435
6.57268
6.0338
6.32803
7.19973
7.00497
6.70618
5.23743
5.51229
5.79412
5.0901
5.42904
4.50829
3.84983
3.13462
3.71111
4.86296
4.41598
4.28719
4.8671
3.33242
3.92007
5.02856
4.97875
4.4548
3.28725
2.98558
3.53658
4.67319
3.84598
4.10811
4.38732
3.29302
3.86652
15.712
0.985802
14.1962
1.55585
8.83148
1.27894
58.4809
13.1609
6.50465
1.10181
1.36361
8.59737
1.25457
11.966
9.63253
0.897755
7.69582
1.01853
7.77751
8.50978
1.10173
55.8012
1.44479
1.6077
1.51029
49.2868
12.9022
0.884094
1.24209
11.6848
1.01978
45.0271
16.4822
0.838882
0.512563
9.16746
0.730214
12.1643
0.574237
5.77478
0.709709
7.55397
6.33589
0.625465
1.57603
0.936247
0.882805
54.4199
1.53901
1.26017
1.92694
2.29724
1.50764
1.82371
1.7844
2.59135
1.94406
1.42673
1.90368
2.07626
0.0906349
0.0544678
0.0803576
0.00271458
0.00350951
0.00253326
0.00316957
0.102726
0.0335513
0.0306371
0.00200846
0.00341752
0.00214293
0.0031142
0.00645267
0.00538454
0.00319167
0.00110033
0.00220953
0.00122769
0.00203845
0.0562015
0.0118389
0.0173154
0.00158335
0.00185807
0.00144377
0.00208809
6.11919
1.31833
1.19609
0.412276
6.01268
1.32826
1.2074
1.99729
2.92875
1.35357
1.52515
2.6283
1.35093
2.24233
18.9664
5.5728
5.08872
24.0721
1.9231
1.29682
2.49542
1.3105
1.89466
2.53271
1.30892
17.9986
4.86095
17.6095
4.95722
6.40081
0.426811
1.549
1.49203
1.36742
1.25357
7.62506
0.318676
0.262423
0.480437
0.256431
0.471379
0.255178
0.3215
2.14663
2.81036
2.12195
2.84493
1.67644
1.31608
1.75043
1.26065
0.31326
0.257749
0.462236
0.249774
0.312334
0.464883
0.25004
2.17032
2.99622
2.87954
2.26363
0.358555
0.521161
0.297494
0.292193
0.292679
0.523005
0.358664
2.59874
3.54854
3.39843
2.66569
2.03281
1.54761
2.00356
1.5677
2.57613
3.2944
3.35091
2.53522
0.368581
0.305525
0.302631
0.614802
0.299031
0.543815
0.386408
0.0155447
0.00400541
0.00326719
0.000857486
0.00180554
0.00183992
0.000854838
0.0155924
0.00339148
0.00321994
0.000787225
0.00153681
0.00146095
0.000797918
0.00281274
0.00124815
0.00107525
0.00068606
0.00112249
0.00107693
0.000698178
0.00687525
0.00151056
0.00161947
0.000707751
0.00113977
0.0011685
0.000703708
1.85483
2.21717
2.09242
1.75078
1.62262
1.59496
6.39599
1.54974
1.77732
1.6991
2.13573
2.07498
1.83956
1.53289
2.21399
7.55892
1.37132
1.95145
1.95943
2.32594
2.1369
2.192
1.89154
1.40481
21.4069
14.689
36.2298
1.59964
1.67142
1.73484
2.20046
1.67071
2.15624
2.81151
42.5569
1.97757
211.2
2.24767
1.84447
2.68644
2.46628
2.58445
2.48433
2.79907
2.75138
2.6636
2.83317
2.34813
2.80499
2.11071
2.25222
2.80306
2.39634
2.56313
2.7708
1.80989
2.17141
1.68104
2.17301
1.52207
4.07802
13.9237
1.64856
3.22673
1.81492
2.43046
2.16068
2.28823
1.36073
2.30916
11.4646
1.26978
2.65689
47.5224
0.407617
7.17279
0.422374
1.26408
1.57665
1.46937
9.6189
3.4003
0.897424
0.529437
0.46384
1.06926
0.0643478
0.0123801
0.064562
0.0666941
0.0120816
0.0719069
0.0112149
5.0698
51.1039
2.67817
2.01067
4.72982
1.42497
87.8965
0.401387
1.45593
0.962926
0.569876
3.07088
34.2109
19.8841
1.98859
0.670383
1.06175
1.34778
0.0104105
0.0459129
0.051577
0.0565187
0.009077
0.00951694
0.0528873
1.84196
0.594252
0.0577331
0.57972
0.0931533
0.0383333
0.0260662
0.604602
0.484602
0.239529
0.71711
16.6448
1.70098
1.03017
5.478
4.41828
0.491005
0.19836
1.98531
0.187103
0.183106
1.2535
0.337017
0.933587
2.87799
1.55739
0.565337
3.10573
10.1188
1.09347
1.13387
12.7642
2.7742
2.66819
0.318869
0.565476
0.620888
1.16936
2.79213
0.346346
0.61982
1.19009
0.393863
11.831
6.8306
0.363311
0.683483
1.21356
20.3829
4.64389
16.8027
1.46619
2.63309
15.1701
12.3279
1.7683
0.722669
8.99526
18.1455
0.508128
0.844082
2.17865
1.40579
21.9999
25.4957
2.57735
1.43089
24.9002
2.69275
1.87083
1.52866
18.0117
3.87042
0.527774
1.03776
18.1815
0.96187
2.88007
1.97122
13.951
0.700885
16.3662
25.9832
0.504591
8.6413
1.18996
13.4649
2.36588
3.51148
2.06218
5.97849
1.214
3.45798
1.01847
0.562309
17.8276
0.977288
2.97682
0.72093
1.62935
0.420478
14.5201
12.505
0.741424
0.442692
0.97591
32.3386
4.89759
5.45878
1.62949
4.10647
0.779046
1.06376
1.04802
0.3372
0.232184
0.334993
0.247103
0.506086
1.06293
0.950832
0.43679
0.57245
0.39853
0.68507
1.9197
8.4738
1.7512
0.459966
0.747794
0.48078
0.767147
11.1411
0.799153
1.47396
1.56882
0.929861
1.6415
8.77328
6.24611
1.51143
12.4614
1.7196
1.01474
0.984865
2.05484
2.42173
7.31514
2.11216
9.12596
10.5831
1.82155
23.4085
11.575
1.51504
1.10311
1.15681
1.80387
0.821716
1.3643
0.257378
0.434415
1.45643
0.809808
0.273081
0.56835
0.339843
0.375493
0.13302
0.172339
0.137982
0.171889
4.66673
0.705604
0.387477
5.83672
1.02445
1.25357
0.448729
1.13386
1.87079
2.50131
1.40398
5.40501
13.3802
6.35886
0.674311
10.1976
5.61655
1.30836
0.487572
0.435954
1.72169
2.9295
13.9669
1.0611
0.787867
4.16475
11.4513
13.3045
13.1895
6.82185
9.75444
1.21268
30.1919
3.87397
0.649471
0.711887
4.85957
11.5095
1.06138
24.5733
3.76808
0.541431
2.32592
0.62829
6.9464
3.77238
3.06069
1.86786
1.53723
6.73012
10.758
5.55734
13.1889
1.07115
4.06698
4.40209
1.37867
9.20178
1.33987
0.423236
0.313992
0.807506
0.454388
0.77715
1.41496
9.93946
0.867515
0.882679
0.734879
6.2481
10.461
0.710775
9.84105
0.365711
0.489716
0.516483
3.77756
8.6325
0.383139
0.541876
5.78512
3.94666
0.39088
8.33628
0.526637
0.403024
1.68899
0.325854
0.337487
0.335484
3.39857
1.65236
0.324965
0.259708
1.03392
1.07602
0.223585
1.11719
0.237417
0.236437
0.323772
3.49937
0.31978
1.4337
1.56115
0.326386
0.305692
2.01184
68.055
1.65018
1.49277
1.97867
1.47722
1.87814
1.82835
27.3188
1.01715
1.25031
18.0064
9.47173
0.636259
1.31752
0.498305
0.7462
6.6845
1.48715
1.12448
1.21806
1.32948
1.46879
1.38368
1.452
2.22656
1.48127
1.38402
1.54832
12.5424
0.970026
0.588535
2.0142
0.892544
1.81081
22.2873
1.34916
6.08665
0.718066
6.343
0.796228
3.3602
1.53359
3.26589
1.51163
7.70719
1.06471
0.884458
14.3471
6.04538
0.63879
0.375358
1.23298
0.549118
6.24343
1.10853
27.1875
3.83198
2.01868
2.55749
14.0808
2.39041
3.32054
4.31296
0.459929
0.341477
0.9459
1.75621
0.498464
0.932932
64.4893
1.50419
2.67152
2.54233
2.51353
3.15192
3.67073
2.22579
1.26222
0.787056
11.286
11.7191
10.4307
0.645262
9.14318
0.781983
4.42232
1.69898
1.35493
0.505664
1.34589
0.497908
0.389334
0.971329
0.892439
0.395782
0.464352
1.29711
0.480692
0.377529
0.849151
0.366689
0.863073
0.403738
9.22436
3.92823
3.37866
0.518745
7.97046
0.391976
11.6661
6.6583
12.3019
11.8315
2.55594
2.16262
9.80228
6.48676
13.4289
13.2548
1.78821
2.12292
6.39523
1.79017
1.58949
1.00981
1.49903
1.45885
7.40913
1.79172
1.03991
2.03983
1.51331
1.66975
6.62237
0.519579
1.71371
0.537892
0.413623
1.04945
0.402662
1.09483
0.54534
1.89347
0.548445
0.415517
1.16904
0.41172
1.17275
3.19111
88.6175
3.50836
2.81607
5.74451
4.9809
2.56605
0.1674
0.794804
0.758688
0.730208
0.167939
0.153433
0.776103
35.3261
3.38418
3.55084
2.86302
3.99933
4.74114
2.98514
2.74191
2.75411
1.58507
1.15845
2.95743
2.51163
1.79447
11.3955
11.4669
9.47432
6.8279
2.72911
9.23887
3.08943
0.239867
0.877227
1.15227
1.08302
0.192883
0.218983
0.851177
12.6579
3.56849
7.24709
4.87243
3.81539
3.78584
2.95789
3.86077
2.4894
1.37988
1.41083
2.70655
2.31909
1.48157
4.85924
1.89126
1.26558
2.0577
6.71719
2.0772
1.8524
2.98223
1.73188
1.63414
6.29866
6.61575
2.47591
1.20714
1.46399
1.44541
6.55272
5.22231
1.16001
1.17591
20.5312
1.12263
0.795413
3.09523
3.59033
0.829719
0.944532
15.7305
1.04384
0.73808
3.2841
0.676752
3.60532
1.05058
1.32881
1.13825
4.18557
2.81752
0.929738
1.71023
1.49734
1.27915
2.75839
1.48278
3.03491
1.19899
146.93
1.29465
0.892357
3.00893
0.842534
3.54241
1.47959
1.40685
0.9748
3.44783
1.01291
3.33841
0.373404
6.7424
0.46643
0.434929
2.04899
2.33972
0.351082
7.98631
0.637974
0.572467
0.528168
2.96412
2.6708
0.588121
0.807369
13.3211
0.701083
0.634408
3.62003
0.733975
3.2703
10.9134
0.669115
0.653436
0.601112
2.96621
2.94803
0.617549
0.319561
2.03995
0.288418
0.274625
1.79725
1.63786
0.303638
1.7612
0.247282
0.285175
0.269143
1.4648
1.47734
0.237913
2.78663
4.61938
2.73082
1.77783
2.1372
2.21003
1.79532
2.50546
4.73978
2.61083
1.70777
2.45676
1.64435
2.21728
2.8252
4.22212
2.68954
1.73824
3.37632
1.81351
2.75941
2.54549
3.54386
2.65601
1.69922
2.13808
1.64916
2.39272
4.40658
20.0781
81.7832
10.8854
11.5458
12.245
5.38321
3.38611
7.34436
35.0999
8.67767
8.56672
3.0149
11.869
2.43836
6.10349
8.29063
14.2631
6.02284
2.93342
5.26028
2.21395
4.62021
11.4728
3.99655
5.43672
2.01148
4.41279
11.7731
1.87321
5.19886
4.6211
12.1313
4.30285
3.8165
36.8426
9.2446
69.8207
11.7591
27.1147
28.2805
8.69391
27.0724
9.44671
25.659
73.9534
17.7198
11.355
35.001
12.8143
29.6851
77.2077
10.1587
1.96444
3.60017
3.46565
11.3803
4.23776
1.6981
4.80199
2.26079
6.50961
7.92276
18.836
2.70753
4.83656
6.81888
71.1666
32.6565
18.8359
8.99396
23.6273
24.4087
7.48587
14.2325
7.6497
15.3966
24.4903
5.27178
106.037
14.3159
3.73668
37.6598
13.5911
10.1022
4.73913
98.6735
13.4629
4.11731
34.1959
11.7045
10.7384
4.35978
44.4924
3.60617
21.7486
7.89422
2.55146
11.9257
5.74621
2.44754
9.84929
155.375
21.8327
15.6133
37.0663
5.92593
16.9812
3.02099
2.204
7.12956
7.54575
13.5959
2.36736
2.59849
3.93502
30.5985
12.4312
16.5828
15.5801
4.23875
8.1454
3.30254
10.5015
2.73322
7.47253
3.6033
11.9925
2.96152
3.89406
7.68252
55.2625
15.6738
13.244
11.6609
3.73054
5.69126
38.0269
14.101
76.0869
13.4146
9.2597
22.2056
97.8115
2.26829
7.34734
7.5489
2.86305
4.7204
2.38681
2.55633
61.9288
10.4062
11.6775
99.5335
10.8389
20.4919
9.81502
3.5373
2.91958
5.33605
10.5108
11.7695
46.8284
14.5352
81.466
8.19033
124.276
11.1793
33.362
29.8777
9.69202
14.8846
2.97592
40.0005
7.2971
8.79973
6.96405
19.9112
10.6181
2.60915
5.1547
27.0677
2.52943
10.1849
29.1955
21.7656
8.27486
87.4894
9.03364
50.0246
9.86246
16.063
9.21079
50.6178
9.29498
8.84956
45.0708
4.2333
8.82375
37.706
2.77381
34.4806
135.777
142.249
19.7677
40.2411
53.4683
17.9891
84.3448
15.9054
153.987
14.4117
37.6713
14.2213
11.6832
145.47
26.2313
16.8101
87.0443
6.61715
14.052
100.627
34.3917
66.6835
11.8927
17.5983
12.3964
4.06327
49.5072
5.28182
4.23356
191.445
13.7707
17.6002
44.3657
202.48
27.1684
92.9431
55.2788
183.027
40.2412
17.0655
160.495
18.4688
66.5416
78.4706
124.613
30.7538
18.3695
9.23793
5.46665
69.4232
14.9763
4.78649
31.493
17.1911
87.4177
204.738
11.4007
15.196
23.4339
159.015
5.0254
42.0593
23.9775
65.6093
11.1675
14.8504
15.812
3.45742
18.6073
3.70173
6.28972
4.17611
10.1597
3.00308
4.63629
20.4697
12.1464
4.93622
19.1528
6.56987
4.39797
45.1425
145.717
173.044
52.4178
14.7567
26.1075
4.12952
90.9812
12.5332
12.4519
83.4973
15.6197
11.2632
216.191
40.091
14.5258
17.8563
9.96614
3.89606
4.1383
15.7137
15.3188
5.69348
3.82742
4.75437
12.4208
16.1208
3.7852
4.1567
10.5614
16.7622
5.15718
15.6272
4.26577
11.389
14.949
4.23479
46.0602
16.5125
24.4819
12.7415
8.81504
9.24484
3.3595
2.82299
14.4484
3.14155
5.68071
11.628
8.68001
60.728
5.97359
21.9334
35.6551
4.20147
168.475
190.932
57.9779
16.3019
12.1206
12.2302
4.27527
18.4572
48.8763
5.17835
217.11
33.5435
63.6117
104.653
30.4298
60.0975
18.515
5.14285
114.807
8.12287
14.4227
63.8004
20.5364
21.5363
192.91
181.296
15.0175
177.535
18.9586
3.95792
7.25608
3.77824
13.2625
4.26832
11.087
152.122
11.7654
14.431
25.398
17.4181
50.2447
88.5902
81.3591
197.747
51.4849
13.0883
24.0229
135.879
13.1071
81.3934
13.2155
72.8811
26.3474
2.25286
6.78532
18.0019
4.84102
7.88131
2.35365
4.44569
2.26303
16.2944
4.98392
3.80558
6.73814
4.30499
1.89522
8.84265
63.8731
32.2051
23.8893
8.16224
27.7605
13.7837
16.6264
9.72566
3.56346
1.86148
5.64783
5.24128
3.36415
10.4493
28.5036
12.1769
5.65941
24.9865
6.08619
8.32484
3.87141
1.61703
2.74067
4.40784
7.26144
2.89364
26.7949
23.3422
55.7863
13.7841
4.29633
6.42503
8.10019
17.189
17.396
5.2313
57.1341
10.7002
24.1135
21.997
28.9691
3.32205
8.06353
5.93013
62.2825
2.71153
9.83547
7.80891
2.06236
1.33943
3.0588
8.58549
6.72566
1.22649
2.34203
3.88096
18.7626
8.08539
15.2754
6.86405
4.51571
33.7957
10.0407
8.82838
65.0709
17.9237
9.88699
5.72442
21.6315
5.16304
29.5143
9.3765
8.27442
21.974
7.50529
3.81623
1.4523
2.79297
3.32389
9.18006
2.55776
2.85222
50.2115
6.77072
13.9421
3.62559
6.85225
8.28337
3.671
19.253
2.22727
5.01821
1.7783
4.33197
10.5417
6.53518
9.53402
17.2823
4.54821
14.9617
28.6383
2.81209
1.17866
4.01842
7.29236
1.47055
2.14471
7.68029
17.3458
56.9292
7.18051
8.02126
23.4404
59.108
28.9011
7.07272
29.1594
4.77308
2.54514
24.4193
2.37458
8.077
8.33572
2.04322
15.3717
4.38424
18.8634
6.481
2.25626
10.5625
4.47799
25.4748
5.2848
8.13874
3.02307
5.74818
2.10291
1.0673
7.30061
2.54894
1.16626
15.4575
21.5502
4.47621
20.3747
1.96833
6.59084
3.98815
2.09397
24.0518
3.64785
1.64426
2.41435
9.56545
6.70376
1.34829
4.71534
7.03737
3.57995
8.79583
6.48004
2.94255
52.4437
1.25016
8.09758
2.74324
2.09456
1.1713
3.28544
2.32289
1.63702
7.83682
4.63578
3.23154
1.73721
4.11133
2.9826
59.6376
7.83512
21.3284
8.77069
8.01716
3.45614
1.56549
2.70086
3.99151
2.98255
8.7279
24.6252
15.5534
9.71341
4.03683
1.69077
6.26038
4.34629
3.49394
15.7458
30.9723
16.8434
6.21257
7.03339
22.0357
9.4839
4.22749
10.5394
70.3079
3.79479
8.20993
17.3933
16.884
6.96618
4.8738
2.62008
18.5736
2.49164
7.47522
17.5881
7.01493
8.90915
30.9394
2.98143
35.174
3.02604
6.80994
23.1326
30.1315
58.2377
7.79384
9.51781
31.5563
9.81943
8.07202
2.81485
62.9349
8.25181
6.41034
47.8969
18.0905
15.2725
23.8921
4.01121
2.18445
7.23721
6.57198
4.65588
17.3641
10.7328
19.1546
4.36833
5.00948
8.64472
9.09122
5.3605
2.43648
18.4028
2.52352
7.23776
21.7481
15.4402
28.1965
7.4359
17.2203
6.72469
64.3673
32.0858
37.9183
86.1745
26.367
2.97031
10.6125
6.15862
32.2731
8.87074
5.04616
90.3111
7.34393
13.4588
40.5793
9.39954
9.98183
19.1962
7.95854
35.2962
3.74309
11.0524
6.59672
34.3651
11.1605
6.736
12.9414
35.587
11.6022
10.8663
32.7456
11.1506
42.4833
94.4536
2.95975
1.60497
4.9693
9.45065
1.81573
2.56856
8.29586
5.96126
10.441
34.8433
29.828
6.42188
9.8683
3.2125
5.58568
2.02676
10.3585
1.94758
9.44874
3.40284
5.42574
18.465
7.45061
4.47163
25.5025
9.03392
22.2573
7.33479
3.74214
65.4766
11.6282
4.52492
10.498
58.3337
20.8144
8.61058
5.57903
3.03
1.73937
2.83932
9.4335
5.14351
26.2364
8.4812
5.71539
5.1993
31.2949
7.40148
2.02922
3.39361
1.58849
7.00462
2.5456
4.49568
30.0755
8.31253
26.7097
8.90111
22.7082
26.5717
1.68371
1.16072
5.66403
2.76155
1.87675
1.08997
5.19662
3.14471
5.45554
30.0401
8.30532
9.19691
5.84691
3.00341
2.90446
10.5841
7.36354
30.6548
3.50837
8.90219
5.54245
23.0264
76.2651
26.6474
2.27144
6.76531
3.65771
1.50434
1.49765
6.77513
2.26362
3.49402
33.7595
11.619
6.5772
3.56576
10.7555
6.36873
2.10074
1.39101
3.49104
7.95709
1.37818
2.14363
6.5403
3.46059
11.4842
6.74346
2.23372
2.15845
11.1075
3.60526
4.99297
15.678
8.37185
4.22595
28.3024
7.61199
2.89196
1.4772
5.95433
6.47965
1.83524
2.31163
9.65772
6.1132
33.2918
10.0245
3.56435
3.43242
30.672
6.45263
7.10805
11.7376
72.1612
17.1933
8.06628
10.0426
31.1225
28.7213
10.726
4.518
7.83314
2.23762
12.7757
4.02647
2.6368
23.5157
26.0328
9.45369
8.94682
22.3239
7.2363
3.74654
2.53375
11.8044
4.39805
7.35627
20.3698
7.68837
66.0593
7.08908
26.7638
5.69223
9.34489
3.05891
29.4346
5.42013
8.83078
1.20525
1.87603
2.88429
5.16301
2.78966
1.23988
1.84333
1.18783
6.09541
3.67198
2.04263
3.0554
1.88773
1.32609
5.78684
28.6182
3.1546
8.858
5.7818
29.9095
3.1163
3.56276
2.23504
6.55225
1.46594
1.4657
6.54175
3.5949
10.3602
67.7952
33.7346
13.1699
9.9897
31.2833
31.8152
10.0016
6.71539
10.2108
3.46309
57.1635
3.41577
5.32995
10.0056
1.97188
4.94412
2.7203
5.95519
3.24946
8.16574
33.5441
31.5808
34.353
6.90832
10.9823
36.2535
6.64794
23.1966
28.2937
30.4459
4.7779
9.79245
5.96184
24.4711
34.6221
11.0015
35.4314
10.9071
73.0858
36.7807
6.07743
1.23147
3.82056
2.13693
3.17973
1.90602
7.9444
31.6275
9.34523
10.0205
28.7613
10.2043
3.34541
6.28961
32.6949
3.34025
33.4821
10.1709
32.9428
12.0354
9.62857
69.1838
10.3205
75.2379
3.94309
6.26202
3.28847
13.0577
35.2932
35.0726
30.6068
5.80994
36.0644
11.059
3.75228
32.3792
3.41315
6.5741
7.6124
98.1552
12.4938
9.51597
15.1859
5.1157
2.8003
10.3981
19.6658
30.3647
3.07192
5.00099
1.44895
4.07162
6.8306
2.30125
3.82297
2.13291
1.53069
3.74821
11.7037
7.4739
2.28916
12.0317
3.69385
2.3318
6.91798
46.291
11.1638
38.997
7.40647
10.7576
3.88638
2.52265
9.62916
15.8465
13.216
2.43935
4.15817
23.2714
4.59129
4.89509
22.7483
23.9254
4.9646
22.7626
22.9024
5.5303
26.3233
6.23388
24.9308
22.5976
5.35731
23.5893
25.01
5.2002
5.88131
24.4086
24.6446
5.28473
29.7461
6.11203
5.68504
28.3694
27.9304
6.48793
29.9576
46.5496
14.5598
10.6936
65.8891
136.093
11.0473
30.094
26.9623
5.85283
7.52987
27.3169
31.6154
6.98641
109.411
5.18008
54.1431
9.30907
37.9684
12.0759
11.242
13.1631
121.446
5.42845
59.2042
27.2457
6.93848
10.1844
28.6898
41.7411
9.83424
30.0476
6.16763
3.25642
13.1404
5.39862
10.4062
38.6981
14.9107
7.23053
7.70214
26.8178
8.48333
2.99166
4.72448
5.01461
9.08868
24.5099
8.11876
24.1806
8.79645
22.0295
4.32545
2.31897
8.29957
20.4544
23.7539
2.6212
3.71915
5.28437
35.6464
10.1802
3.41097
29.4057
3.14958
5.80337
6.47624
11.0037
14.8127
5.48184
33.9468
39.0547
19.868
24.4916
23.3354
48.4276
44.7823
11.2103
27.4004
32.9897
9.44395
4.15314
1.53561
2.09548
6.37341
1.43009
7.56776
4.23476
6.02879
4.82397
22.0053
4.09319
7.20597
3.38609
5.38794
1.90846
1.25452
1.3059
5.83328
3.1483
5.40962
67.6426
3.72182
19.4658
3.67055
6.80206
14.3612
74.7299
21.0502
83.2593
10.1438
6.23541
7.80945
11.2434
3.1586
2.16997
5.99473
3.44811
7.99716
9.5283
15.304
7.87094
4.1632
2.4214
4.237
22.5183
6.24538
32.7593
76.4254
19.9057
24.3817
22.726
23.2946
60.1408
26.198
51.6483
125.589
38.456
1.35328
5.8187
4.09077
2.05519
1.45743
3.634
1.93468
1.60288
8.98385
4.29859
2.19742
1.54449
5.08843
2.30517
3.13753
6.70179
1.90915
9.17726
2.05882
2.85206
9.94161
5.57784
34.3429
8.44871
8.29941
30.818
5.77867
5.23394
6.67415
25.417
4.60996
7.81694
27.8751
5.84458
3.5925
1.36147
1.91282
1.90378
3.54914
5.918
7.82935
12.1089
2.409
4.11994
2.64414
9.63491
15.3608
25.6728
8.98096
9.75284
20.6471
30.2556
11.6517
10.7687
32.504
8.7323
2.86864
4.40597
17.63
2.83416
8.92944
16.7946
2.60386
5.37114
1.80604
7.93631
1.73933
2.79618
8.11427
4.08842
13.7891
42.712
6.05511
6.65256
15.8997
3.7406
4.1982
8.81728
18.7094
45.9923
4.87554
7.06915
16.1579
6.58781
3.56313
1.41664
1.90087
4.04182
5.77563
1.99439
43.3025
17.036
16.2544
48.382
10.175
30.7638
3.39795
5.12081
3.1731
10.8675
28.1797
40.5753
13.1267
15.2898
34.6426
6.87049
1.483
4.46125
2.22684
4.2111
2.09881
7.38948
9.80281
2.95415
19.922
4.69829
8.50217
2.97938
26.8848
8.06401
16.1909
4.33812
87.9572
6.43605
22.8452
35.7771
15.4484
13.7577
28.4116
4.81503
7.90614
7.18424
25.0412
21.4442
4.79615
5.59617
19.0073
21.3688
5.483
19.8503
24.2379
5.79989
34.7536
8.46726
22.8874
49.6742
6.13092
32.9098
7.43073
10.6531
41.2803
95.5394
8.12219
14.0482
12.2643
14.9681
18.0306
17.7722
17.177
12.1777
15.8016
15.658
25.0116
10.4266
8.9476
28.1268
7.10078
2.59804
3.69424
16.8444
2.3635
14.0554
7.21922
21.5173
7.5235
8.05619
19.9479
6.67233
11.8666
2.14687
3.38573
2.19772
6.09443
12.8886
34.3955
82.2425
5.33057
1.64812
6.78654
2.67144
4.50595
1.77625
8.19867
9.43745
5.35895
75.1801
7.14758
7.82142
11.6349
6.53544
5.81031
15.0946
27.8638
22.7585
5.88728
10.214
2.91023
2.07512
1.91638
8.89284
7.89908
7.34248
100.059
4.82495
9.94185
18.4989
17.8038
16.579
7.04678
14.8012
12.523
101.263
16.1178
18.9015
9.64902
6.1073
90.2088
8.74939
39.9941
31.4195
8.04658
5.5008
7.8838
34.2453
41.9642
17.9948
24.9685
20.7237
8.8114
18.6672
16.2734
25.1101
22.9624
22.3634
68.6256
131.069
123.873
29.7472
64.1038
32.5401
27.5066
44.1329
29.07
16.8314
20.0016
20.5279
22.2926
24.0338
22.1484
22.6346
23.6388
22.3277
5.07306
8.43533
26.5685
3.0661
19.6453
2.99663
4.81492
6.76144
37.8196
8.605
45.3755
6.02803
9.55485
8.99062
13.2854
105.443
7.03846
10.973
9.67616
6.68484
2.05651
2.94519
2.95686
6.68176
9.71138
17.437
110.46
5.30305
7.24267
4.44363
20.556
48.2717
38.6553
38.5186
39.3117
40.005
9.01435
1.95595
3.11984
6.22006
2.84151
6.27942
8.86869
18.2313
4.47988
7.12795
46.0415
4.53038
18.1249
47.0452
5.56826
11.5041
28.6319
3.32512
31.3255
3.46058
5.35265
8.07359
14.8701
14.9219
8.06102
8.25708
14.906
7.97229
15.373
8.35646
6.19035
1.81879
2.70243
5.70903
9.00347
2.60639
20.6425
112.023
27.3937
14.42
33.848
3.66419
6.09834
12.3588
3.8291
37.3089
35.2606
30.282
7.58779
1.74783
5.49822
2.4336
9.73942
5.21797
2.50821
15.5624
4.10073
42.2624
6.23668
16.7173
3.96651
39.8031
24.3951
28.5444
41.3882
27.1583
137.131
64.6239
68.0168
143.683
1.33541
3.61944
1.4749
3.04622
1.45392
1.39687
3.20136
1.30886
1.18143
2.96179
2.72018
2.78923
1.20568
1.292
1.25498
3.96628
1.41
3.55249
1.37239
3.3589
1.21676
1.4684
2.39273
1.69244
2.56718
1.69444
2.61287
1.46162
1.45535
5.34793
1.31965
4.1306
1.28767
1.58623
4.71822
1.68404
1.96477
10.5242
5.03227
5.66269
2.43246
1.55511
1.85153
10.0813
2.93747
10.4787
2.30838
6.33372
2.60177
1.40651
4.02098
1.31866
4.15872
1.28877
4.39049
1.40133
21.1462
22.0011
21.7421
21.5563
22.7117
22.17
20.9564
21.2078
21.5539
22.8012
23.3694
22.6443
2.18506
5.19164
5.99851
1.3781
9.56731
1.50647
1.75358
2.45637
2.72268
7.03117
9.74007
5.09409
2.336
2.59968
2.33303
5.76874
13.7941
1.99035
9.53301
1.65206
2.58221
2.79655
10.0478
7.3191
2.57286
14.5343
2.47681
2.47626
21.5582
20.7514
20.5524
19.8954
19.3346
19.674
22.2524
21.0381
20.6025
20.2408
19.5493
19.826
25.7356
22.4426
24.3874
46.1546
26.1284
27.4254
43.6948
71.7115
30.2571
22.6679
23.9057
23.8893
5.34892
7.77605
38.1816
7.46582
32.7886
9.40973
29.4837
12.3985
14.1738
32.4892
13.542
4.06939
14.202
15.4636
4.40494
4.23523
14.3808
4.22647
3.73466
3.34846
12.5401
12.0999
3.64811
13.278
3.36748
3.91847
13.2782
3.94242
12.6369
4.06636
3.80252
13.4591
3.85579
15.1748
12.794
3.50235
14.1368
3.98696
3.42739
4.94986
18.7543
16.4537
4.66757
4.80116
18.9444
4.73681
5.46856
8.10099
24.2436
45.6999
23.7628
5.49975
7.17297
4.94598
20.5652
21.45
4.51606
20.9309
4.67
4.82284
5.23406
17.0506
5.21617
37.7896
4.80367
20.7928
6.30748
32.0179
27.8238
5.62606
8.45389
92.3132
9.73055
95.1745
15.1859
19.6809
4.40099
17.0836
19.0696
4.59048
19.1789
4.38675
4.63531
3.98028
3.30574
18.7381
20.5771
20.3882
3.5045
3.73155
4.11622
16.7558
17.2436
3.58475
18.7691
4.1191
3.57443
4.27241
20.8705
21.3862
4.36613
20.917
4.54441
4.04485
5.51444
32.4626
3.54227
14.513
5.23721
3.71238
34.6476
8.0603
14.5991
8.21485
14.3752
5.81602
4.07079
15.4615
38.3855
3.93162
5.98155
36.4202
1.69324
3.32794
1.23605
4.77998
1.28223
1.60924
4.9216
2.37634
7.58711
12.6137
3.45944
3.31385
7.31166
2.45516
2.3409
3.01492
6.53647
11.4642
2.17763
3.36953
6.71956
1.90292
5.77343
2.47705
8.339
1.82
2.59045
6.22468
1.52624
3.18498
1.20567
4.55415
1.17951
1.56175
4.94327
2.04819
2.87993
9.20742
6.13381
2.76129
2.09987
7.92049
9.30261
14.8828
8.45518
15.6944
6.37687
29.3032
5.10758
4.77895
6.95877
3.20559
4.73068
1.62035
1.30269
1.27881
4.50424
3.34655
8.1185
4.27762
43.1758
22.5309
6.30989
5.16444
106.071
9.31548
2.89848
16.2867
4.21841
9.17102
2.9347
16.4264
40.885
15.7874
16.391
39.2227
7.0616
5.6243
1.6472
2.28001
4.65914
2.18332
8.99423
6.68752
2.08454
4.31891
1.59489
4.43229
6.53123
2.11549
9.59931
4.31426
3.11006
17.595
3.01464
16.7593
10.4297
38.1788
5.54148
8.35904
7.54605
34.4607
10.5751
20.077
12.3009
5.25884
9.27403
23.7241
7.14305
32.0022
122.687
14.9878
26.2569
13.1669
1.68498
2.24989
4.50731
6.67979
4.45961
1.70406
2.23071
1.61431
4.2073
2.07858
6.42738
1.5887
4.31531
2.12561
8.15418
2.77263
15.7104
3.70793
8.82772
2.60663
14.4541
34.6364
15.2876
14.2673
37.8363
5.38525
3.4454
1.4109
1.7807
3.66373
1.84921
5.45621
106.894
5.86227
1.99734
4.17238
1.44264
3.9234
6.29454
1.89751
7.45295
3.56044
2.48016
10.8174
2.52665
13.3905
8.96733
39.7058
6.40277
8.82432
39.9266
8.87221
16.5718
40.2776
16.4472
6.51985
41.9939
9.11587
40.4104
9.01293
15.9962
39.4144
16.1746
28.087
37.0113
134.671
49.6283
128.994
1.21412
4.44024
1.28977
4.08205
1.21152
1.32624
4.10344
1.14514
1.11748
3.21381
3.43815
1.15025
3.53749
1.10962
1.21211
4.7124
1.40988
3.77246
1.20065
1.38949
4.03046
1.14437
3.86755
1.10228
3.63257
1.13213
3.72647
1.11053
1.64421
4.02985
5.64832
1.39005
1.37099
5.19115
1.62673
2.14926
2.89777
8.48696
9.32345
2.30051
2.82648
7.23463
1.71701
3.94978
1.44591
5.99923
1.38803
1.90278
5.01727
2.09671
9.03772
9.85763
2.78375
2.79554
7.83285
2.067
14.0234
14.9676
13.9161
12.5215
12.875
13.1266
12.3304
28.4224
29.8165
13.2633
12.649
13.2059
14.8433
13.5803
13.8347
15.0329
23.3754
19.5398
35.4874
40.4705
67.4856
37.7893
10.0871
27.5739
20.3382
14.1376
21.3463
17.9712
52.9155
40.0836
99.0506
1.82795
5.54968
6.53773
1.47397
8.02138
1.60381
1.70822
2.19944
2.81899
9.05325
15.0663
2.33449
2.87521
9.92795
1.95601
6.89335
4.67359
1.94835
2.23226
5.2573
1.78282
2.11261
10.6083
13.8564
2.79733
2.79342
8.75306
2.09637
20.7158
16.7269
18.8977
20.1589
18.9505
19.5429
24.3524
21.5277
20.8323
16.3065
17.5655
18.0556
3.39988
18.8294
4.32011
22.148
4.24624
3.5877
16.7954
2.67472
2.7375
15.9932
5.68584
3.08087
7.93867
2.78758
2.82132
13.2257
2.57351
5.49389
2.68
2.99522
10.5996
3.18582
21.029
3.98423
11.352
4.13707
14.1718
3.01103
4.73381
22.4368
22.9944
4.54423
4.7151
22.3111
4.54357
5.18038
9.05722
23.3668
26.9121
5.49872
22.6941
6.40733
4.74467
21.8134
21.4348
4.52327
4.81316
21.7622
4.52105
5.04669
23.0216
5.51261
24.8822
4.93547
22.6393
5.98988
3.84681
20.1524
22.4232
4.35635
20.8662
3.73541
4.37338
3.51596
3.18552
14.9856
19.8106
3.03471
3.62745
18.956
3.37828
15.6925
12.6241
2.70389
2.85605
17.6356
3.20003
3.9205
21.9941
21.1754
4.36297
3.9823
21.1333
4.36318
159.42
14.4519
34.8014
3.81204
5.2138
3.64365
14.8601
33.3633
7.54556
5.15317
1.86334
2.35159
5.56043
6.93123
2.56228
36.7218
36.0366
8.37091
2.67568
1.92517
6.17052
6.0688
2.59809
8.5191
12.875
5.71953
3.28168
19.4454
11.8322
3.72149
25.4563
8.02065
13.4827
13.7404
36.0741
34.5042
8.46539
14.8988
14.6191
21.5253
130.777
27.3291
1.74428
2.27884
4.55406
6.84843
1.72921
4.62968
2.29482
1.7695
4.88225
2.35687
6.95549
1.7973
4.7373
2.32518
15.2051
36.1504
3.89632
5.8109
15.0231
36.5966
3.92696
36.9983
38.0732
9.07657
7.02157
2.14086
2.95624
6.62688
2.89513
9.40571
8.67648
2.71871
6.20039
2.02686
6.33065
8.55172
2.7468
15.8604
6.1109
38.6855
4.20075
38.1037
4.13175
16.2705
7.0167
12.8008
11.7976
16.9
41.5152
17.579
9.08412
48.1921
9.4203
122.457
10.2967
19.9301
42.8913
18.7565
2.16201
1.35091
1.55148
2.02828
1.35387
2.15603
2.03578
2.64689
3.20745
1.07377
1.12032
1.1124
2.95536
2.88263
18.4517
18.2471
18.5132
18.2578
18.2973
18.5703
18.2956
18.6542
2.32752
1.20372
1.11849
2.70918
1.20949
2.33277
2.71225
2.53213
1.32055
1.19437
2.60953
1.1992
2.4553
2.74095
18.2034
18.4596
18.3388
18.3098
18.6005
16.8685
18.7264
15.9686
19.8228
20.6039
20.1642
19.9948
19.5947
19.3131
19.3534
19.7279
19.2246
18.6038
18.9772
18.8068
18.9579
17.5279
18.7713
18.1697
19.1334
18.9688
18.8762
19.1371
18.9515
18.7132
18.5236
19.065
19.7255
20.362
19.8595
20.3496
2.235
1.48162
2.46383
1.6903
2.37294
1.70309
2.29103
19.1791
18.9532
18.7551
19.3863
4.42578
5.03772
1.33594
1.61826
4.06017
6.00837
1.4093
16.7044
14.4821
14.8206
15.9208
23.0125
147.966
66.5072
31.6099
4.28358
4.0726
1.17401
1.29396
1.27128
4.09852
4.4476
18.9752
20.3998
16.1981
31.0339
4.14601
1.26283
4.00196
1.19852
4.0191
1.25825
4.06821
4.99013
1.77801
8.04612
1.65478
7.47597
1.5214
5.81322
6.77577
5.79475
1.6138
2.13994
2.06134
5.06
8.61508
8.30591
8.15775
2.56228
3.10302
2.5317
7.91565
8.69055
19.733
14.1903
18.6242
15.2065
109.549
27.8699
23.2073
17.882
55.7231
5.72219
1.60648
2.08235
4.42415
2.01251
5.47184
4.59529
9.52665
2.69626
3.23405
11.4963
2.61802
8.54085
9.79114
3.69459
4.47511
1.41024
1.30384
3.86352
4.13949
1.29655
11.7337
13.104
13.1843
11.7872
11.1403
11.8569
10.5486
12.6184
3.56938
3.50452
1.2752
1.23536
3.44624
1.27248
3.6454
12.3082
16.7786
14.0474
14.2155
3.52035
1.40478
3.74424
1.3011
3.41865
3.87883
1.28965
3.74492
1.2677
3.92536
1.24305
3.89052
1.27748
3.81513
9.04208
6.87896
1.81684
2.21197
8.65639
10.1842
2.28008
15.2389
19.0666
3.16025
3.89814
3.0657
16.6651
17.6024
37.4552
133.683
132.829
11.2409
1.89267
8.27713
2.45929
7.08038
2.37445
12.6514
13.0745
2.82258
13.6356
3.77424
10.844
2.95397
15.7273
8.6266
2.1063
8.50735
2.91823
6.62286
2.75801
9.49042
34.9513
37.0326
13.4322
18.8423
3.31958
5.75781
12.2537
3.89959
26.0692
8.0504
2.04411
5.69066
2.45593
7.5744
6.04584
2.75715
120.1
44.2448
14.1786
3.98257
5.18583
33.2642
3.74123
15.1263
31.3194
3.94648
1.39978
5.12553
1.8235
1.43372
3.7296
5.51837
9.70784
7.51813
5.9419
8.47912
15.8663
34.9496
34.2622
16.2831
14.9349
30.2629
13.8277
32.1814
4.07258
1.85657
1.47449
5.79619
1.45967
5.71782
4.13319
3.40744
1.62662
1.35808
5.69833
4.6412
1.29871
3.88926
11.3921
16.1873
10.9052
17.0365
7.36066
33.0322
5.77716
5.47668
7.60653
3.16055
1.55457
4.0491
1.1643
3.02539
4.26077
1.23186
12.233
25.1219
19.0037
12.9602
11.6619
6.71368
3.07562
2.39117
10.8299
7.34913
3.17041
17.7249
37.9858
6.02419
4.33984
4.31146
37.6551
17.9145
17.3564
4.17386
35.9886
5.99362
16.4428
4.26423
37.2572
12.0862
2.43346
7.7406
3.2458
7.63695
3.22193
12.2454
12.3681
19.0755
12.7852
37.5766
5.84682
7.99933
36.1522
7.86263
7.5224
32.9879
5.76494
35.1277
7.79137
19.3142
13.3403
12.9457
37.3865
35.4825
2.72842
6.55664
2.06797
8.70392
2.71007
2.08246
8.7162
3.70575
5.19382
14.4613
20.4144
13.8811
3.83522
4.97833
2.76096
6.62639
2.17884
9.07879
2.11232
8.77147
2.85155
3.65543
13.7819
4.87196
20.1507
3.63014
13.7825
4.90024
11.1191
15.7276
9.66399
47.4974
18.5611
4.73085
6.32621
20.4263
6.74444
40.7112
129.986
6.79003
31.6896
5.8439
26.8038
8.77835
14.9407
8.51998
8.84791
1.28948
3.43283
4.63746
1.59801
3.44716
1.27998
1.61304
1.30651
4.68602
3.60801
1.67848
3.47793
1.63572
1.33603
40.8921
41.6174
15.5078
14.5043
15.7142
14.4131
3.39185
3.44443
1.0517
1.11721
3.2137
3.5954
1.0644
16.551
17.5128
17.4986
16.582
3.48346
1.06658
3.74626
1.13135
3.66652
3.57676
1.07223
15.5329
14.431
14.4313
15.562
10.0095
10.1125
9.18092
10.8948
9.2578
135.098
8.37448
10.8335
9.62967
11.0667
13.0632
11.844
12.4786
12.264
13.3542
12.1063
13.4133
11.308
10.4836
10.6283
11.2312
12.2023
13.3239
13.3653
12.1403
16.6565
17.6729
17.8305
16.5959
14.9418
10.8391
12.8503
13.4337
15.4039
14.2549
15.4739
13.9629
9.38847
1.60586
2.88864
10.2298
16.231
2.04018
5.53443
56.3694
54.9828
4.72963
3.99838
1.09233
1.34615
3.81359
4.6763
1.35744
22.3804
19.3245
19.6349
20.8692
4.69365
1.23336
1.08102
3.67067
3.75918
1.33337
4.19544
8.07791
2.49513
5.2894
1.83204
7.14334
4.80167
2.00869
38.2407
43.25
148.444
24.6924
13.9394
9.64219
2.40405
2.21809
2.65701
4.84577
9.49295
5.23164
12.4256
3.27355
2.47616
2.33072
13.7725
13.0421
59.8476
24.541
26.8974
38.3346
134.038
64.211
39.2547
7.09538
2.51872
3.4358
16.4973
2.34427
9.23544
15.1136
9.16179
1.81456
2.16239
5.58843
2.30776
6.04467
9.19324
8.68719
2.52589
14.9856
2.33493
5.09863
2.4431
6.57896
15.5199
19.6675
3.07635
3.66546
16.7687
2.94155
19.2763
10.8828
2.38266
8.24963
2.5259
12.5176
6.89786
2.51307
145.895
13.5527
2.66863
3.64923
17.6376
2.82355
11.393
18.5023
4.28674
1.40245
5.97238
1.60302
4.60039
1.31455
5.2773
20.1477
19.2889
19.4641
20.2233
3.85735
3.78479
1.06558
1.16901
3.7198
1.15298
3.91785
20.9665
21.9818
22.3601
21.2147
3.85232
1.17344
3.63382
1.05608
3.65115
3.93835
1.14803
21.1167
27.0023
21.9615
23.7706
4.17088
1.47724
1.28506
4.59052
1.28513
4.74438
4.18177
18.3542
36.7999
17.2774
43.8128
8.68349
8.49268
126.748
9.69066
12.2702
6.88926
11.2673
34.3353
14.4156
15.8516
1.64771
4.68154
2.08849
6.58038
2.09609
1.63954
4.70259
1.65852
6.58687
2.11429
4.72843
2.10651
4.71152
1.6674
3.47015
8.22596
2.70018
13.5313
3.57583
2.62846
12.9285
4.32091
6.61371
16.1871
36.6718
4.5467
17.598
5.87162
3.26192
7.45881
2.46059
10.2158
3.26553
2.49309
11.8825
4.62142
19.6642
6.66138
39.0959
4.77612
18.9116
6.40198
1.57894
4.60026
6.19374
2.05273
4.43002
1.60999
2.00734
1.51742
5.69903
4.21648
1.86714
1.46798
4.15055
1.91713
18.9005
40.226
18.9632
8.09297
12.8418
12.8634
12.8129
8.07975
12.8832
40.1333
18.9213
18.9289
0.86145
3.39698
0.865362
3.29606
0.843299
0.882559
3.31014
0.872851
3.41182
0.917075
3.13483
0.864367
0.919051
3.26778
0.844805
0.84459
3.16143
3.06098
0.841263
0.837714
3.18771
1.68084
1.43573
2.15365
2.12824
1.46817
1.65832
2.08924
1.17695
1.25917
2.58444
2.23735
1.13861
1.3009
2.51419
0.925904
3.44618
0.939949
3.20324
0.888784
0.968928
3.30646
0.955483
3.52246
3.40151
0.981601
0.937266
3.35891
0.999499
0.900851
0.867867
3.12646
3.24499
0.862276
0.90211
3.23076
1.06564
3.66019
3.57244
1.05736
3.63828
1.07995
1.04517
1.16631
4.01986
4.34202
1.41438
3.73576
1.31073
1.23843
1.12671
1.20009
3.48668
4.02758
3.58205
1.11586
1.23465
1.58543
4.1375
3.94457
1.26698
4.83635
1.52351
1.30805
1.88533
8.5419
7.1613
2.32142
6.40277
2.00043
2.16092
1.65683
1.35164
4.25793
5.56932
5.30545
1.35757
1.70222
1.08293
3.69514
3.54754
1.06118
3.651
1.08981
1.0539
1.07343
2.91134
3.4473
1.13543
3.23795
1.0555
1.15784
1.11988
1.19575
3.45951
3.75656
3.47738
1.11791
1.20553
2.04985
8.13618
6.24678
1.68077
9.23869
1.55734
2.16661
2.29934
10.6109
8.76752
2.47399
8.04191
2.15801
2.68744
1.93183
1.38986
5.26452
6.61454
8.22058
1.457
1.80416
6.25642
120.944
8.73195
42.2159
7.94761
13.9973
13.4375
14.1673
11.7149
16.6243
11.7507
15.7065
14.9573
14.9731
5.94882
36.1288
7.6382
36.9009
7.67568
13.6611
14.3729
14.3261
12.8752
17.2761
12.2396
15.6182
3.74963
30.1218
5.30862
3.93961
15.1124
31.5481
11.418
6.92699
2.44134
3.30931
3.1596
6.64555
12.7157
6.04979
9.47354
9.19789
9.27353
12.2416
10.6512
10.7929
2.9452
2.37461
6.39087
3.04858
6.47513
10.5686
11.793
12.8757
11.4765
16.8344
5.54732
4.30609
39.6815
4.10696
34.5716
19.4327
1.46234
1.79649
4.81606
3.9115
3.77576
1.76622
1.47517
1.44088
3.63452
1.71794
4.72214
1.41734
3.70362
1.73912
14.0622
4.56467
4.02466
26.3524
19.2607
3.55084
15.1665
12.1874
12.8911
12.2578
9.53855
6.45519
2.61185
2.11783
8.88963
5.70596
2.68857
6.65867
9.64785
9.85839
13.382
4.36486
17.6626
3.35139
12.9233
17.9752
3.4133
10.0236
3.05768
2.20259
6.27516
6.02834
2.80049
10.5048
13.0321
11.9349
12.0808
1.41351
3.59535
4.61188
1.70609
3.55843
1.41036
1.71168
9.85794
6.94355
10.6306
15.7356
15.1066
15.058
13.8175
13.319
14.1201
18.9756
15.2025
14.6434
14.4509
13.6731
14.3858
13.5988
18.4713
14.22
7.24163
11.2988
11.0709
19.531
130.991
27.6704
33.5327
18.7498
22.175
22.4375
47.7953
29.9856
137.978
51.0069
50.7593
2.84191
8.72281
13.154
3.6899
3.67038
8.60739
2.86251
2.18776
1.73119
4.75965
6.35696
1.76521
6.50455
2.13649
2.22192
6.69847
4.81153
1.81407
1.79275
6.56532
2.24407
2.79208
13.0416
3.4643
8.34554
3.5962
8.543
2.71182
253.419
63.1426
137.096
6.64268
19.4392
4.86683
39.6201
6.63594
4.89438
39.7344
8.88147
13.8121
8.93354
13.7462
6.70882
19.8564
5.02728
40.6138
4.96736
40.1233
6.76258
8.80774
13.611
8.81773
13.5923
18.4997
37.6253
38.5404
40.651
18.8283
38.9996
2.99155
9.09352
14.1989
3.74273
9.84685
2.9229
3.79666
2.44758
2.00789
5.68015
7.85704
1.9622
7.19837
2.50984
2.38475
7.13228
6.36437
1.8651
1.92462
8.98458
2.30489
3.09228
15.0088
11.8223
3.95225
11.0173
3.88648
3.1683
17.9362
20.3603
19.0555
20.2641
25.0948
20.1879
34.1733
38.6939
22.272
0.93795
3.57691
0.984634
3.53179
0.997518
3.50768
0.920679
0.889506
3.43401
0.872028
3.50833
0.897341
3.50083
0.860969
1.48519
4.5221
1.56263
6.42027
1.34688
5.40509
1.76222
1.19746
3.7202
1.02087
4.4852
1.01178
4.29708
1.2468
1.65804
2.2973
4.65991
7.67571
6.71632
1.98796
1.81534
3.11148
16.737
15.1323
3.15898
14.2634
3.13274
3.21472
2.76716
22.7669
10.9752
2.08838
7.69261
2.33542
2.82892
2.75686
2.57391
10.3054
15.9917
8.86078
2.84603
2.80835
2.46963
9.99123
1.80894
6.60398
2.31269
11.409
1.95116
2.9871
17.5697
15.9503
3.09412
16.2495
3.07406
3.10526
2.62559
2.40222
7.39287
11.6281
12.1924
2.158
2.79384
1.18622
3.74803
1.0379
4.5826
1.04268
4.22863
1.25687
1.32048
4.56522
5.955
1.49686
4.68138
1.64384
1.24566
1.4958
2.627
8.91286
9.81515
5.42195
1.86778
2.12578
36.0294
16.4167
16.9898
17.0943
18.0354
17.8907
17.8354
17.5979
17.8039
17.7241
36.0608
17.5322
17.3809
17.5127
18.9389
18.0231
18.0855
17.2875
17.4825
17.4687
3.55696
12.4477
4.48303
17.7995
4.61337
3.47967
12.5916
2.79608
2.24268
6.51747
8.66584
2.20132
8.43062
2.83213
2.74485
8.22738
2.13842
6.39266
2.1672
2.7039
8.30429
3.61204
18.0198
4.71902
12.9857
4.68725
12.7486
3.64569
9.12726
31.2997
5.7099
7.29796
6.52609
143.271
9.2823
13.9131
9.03177
14.1491
7.20964
22.564
5.11578
41.9339
6.87261
5.33466
48.5779
10.0525
15.4416
11.2789
14.6601
3.61201
12.4927
18.0352
4.31898
12.7996
3.40624
4.7377
2.61195
2.03338
6.32165
8.15118
2.06486
2.55109
8.26196
2.75856
8.26284
6.30315
2.12
2.15268
8.30058
2.66994
3.32515
16.876
12.2903
4.0239
3.22879
12.5724
4.17151
16.3338
16.9636
16.8556
17.2457
17.5149
17.3113
38.6269
17.4133
17.4461
17.279
37.3795
17.7395
17.5852
17.6466
18.5439
17.8207
17.8676
17.5272
17.5306
17.5926
31.4335
36.6458
23.8798
251.787
28.2862
93.0033
25.204
6.45438
1.91098
6.35246
1.58518
7.77992
5.61934
1.7171
56.559
223.942
170.011
6.15542
1.79168
1.57548
5.925
5.99326
1.68079
6.85068
39.5891
35.7429
37.9189
81.0665
64.6004
32.0451
83.5805
6.07728
5.17621
1.5029
1.56654
5.36749
5.93454
1.59233
33.1952
25.338
24.4104
44.1619
2.34448
7.06555
1.89664
5.88364
1.88938
2.37286
7.50009
2.99206
3.74991
13.6948
11.2958
10.9811
3.63451
3.07453
2.87859
10.3761
3.67663
13.3695
2.96216
10.6102
3.46968
2.42098
6.03452
1.97533
7.98504
1.93777
7.77452
2.47634
2.17046
6.11903
10.2109
1.84282
7.86606
1.78223
2.26046
2.61396
3.19025
8.46492
11.826
2.60359
8.5457
3.19727
2.13464
5.90682
7.37501
1.74067
2.12027
7.48839
1.75323
2.65503
9.38739
12.0932
3.34494
8.75517
2.74483
3.24265
19.2407
20.6552
39.7748
21.808
17.8453
5.09867
1.3882
1.52933
5.23213
5.51659
1.48193
4.83847
4.83594
1.37663
1.39709
4.03239
4.32369
1.46769
4.47264
16.5632
14.9687
16.4758
15.0884
5.21028
4.89634
1.56102
1.45417
5.57494
4.61285
1.52989
18.3881
20.8495
20.801
18.3036
17.2628
40.7622
14.1366
15.6461
15.7196
14.3043
3.19164
13.7143
3.36076
13.5492
14.3744
3.29032
14.8509
3.10834
3.26996
15.3952
15.498
3.24624
14.6284
14.9555
15.5792
3.37224
3.32096
14.9873
15.5618
3.32309
5.86842
35.1577
8.04144
7.42346
34.1712
6.24277
4.94452
3.469
13.4603
16.7791
3.82856
18.5643
4.3167
4.51111
18.0571
13.3457
3.76541
3.63431
17.6374
4.70137
6.69512
145.468
7.34457
22.1464
9.21587
31.9325
5.4834
15.9786
3.46003
3.38038
15.8943
15.9099
3.43152
15.9379
16.3513
3.62112
3.53735
17.1185
16.4484
3.55774
17.034
16.0312
16.0018
3.36084
3.38675
15.9313
16.1311
3.40168
16.1718
12.5319
16.1312
12.6337
5.17947
2.06108
1.68771
6.82617
5.14384
1.69445
6.88494
20.0365
39.0519
19.8337
39.4076
16.0856
12.4742
12.5908
15.8889
20.1197
39.2164
20.064
39.5124
14.3465
3.42153
13.7566
3.40523
13.7398
14.38
3.43119
14.941
3.47274
3.41238
15.5423
15.5293
3.44956
14.9496
14.9396
15.5635
3.40497
3.39132
14.9749
15.5259
3.42345
6.49259
36.6655
8.34481
36.9397
6.44483
8.41208
4.85798
3.90012
14.8487
18.3747
3.92014
18.5423
4.82371
4.86171
18.5046
14.8463
3.87164
3.91212
18.6257
4.82787
6.47859
36.4114
8.31374
36.7563
8.38723
6.42885
16.2801
3.22822
3.26611
16.0312
16.0503
3.28158
16.3198
16.5557
3.52395
3.50449
17.1691
16.5192
3.46007
17.1845
16.2554
16.0477
3.30403
3.35917
16.0657
16.2076
3.32193
149.992
7.70034
1.94944
1.85747
6.92087
2.11211
8.25732
8.47786
12.3384
2.88808
2.7887
15.1535
2.61624
14.0152
14.067
9.82927
8.93493
2.01887
2.51196
2.3071
9.49666
11.7956
35.1034
136.778
73.6051
141.774
158.893
72.7056
37.6222
8.60401
1.34798
1.53014
5.24071
1.67433
7.00335
6.0135
10.5437
2.38074
2.57269
15.302
2.18805
13.5115
12.3994
8.33063
8.77733
1.81922
2.34979
1.98781
8.64299
11.2831
80.9415
22.3739
37.1958
27.1707
6.83635
131.841
9.22339
10.4246
8.3415
5.86699
4.6563
16.8551
34.2976
4.47636
32.3321
6.17625
5.37801
29.1684
4.61617
16.4392
4.2097
6.09781
31.1087
7.61896
12.3656
11.5291
8.10222
15.5153
12.4447
15.4865
12.3203
5.05079
2.0767
1.71582
6.61329
5.02852
1.71131
6.67789
19.4241
38.6063
19.5696
38.3749
15.5086
12.3104
15.6499
12.2432
19.3799
37.8451
19.267
38.157
6.45812
43.3092
8.46267
37.2662
6.72261
8.28166
4.7751
3.87171
14.6827
18.1207
3.87527
4.77978
18.1822
4.84927
20.359
14.9848
4.05572
3.92756
18.6713
5.03206
6.35371
35.8706
8.21465
6.36141
35.9934
8.18286
25.3131
146.158
42.214
40.3499
5.20733
1.35921
1.6022
5.41583
1.41054
4.85257
6.11045
5.12162
1.14618
1.40453
4.71406
1.32341
5.82809
4.38341
18.4895
15.5507
17.2164
16.5107
5.84473
8.98789
1.74381
1.64244
1.51014
7.18694
6.93027
21.3227
22.8738
19.3496
27.8277
20.3725
19.4844
24.195
17.7686
16.1866
3.16442
2.9232
15.9781
3.07021
16.389
15.4458
16.4855
3.22787
2.85337
16.8029
3.06835
15.5749
17.2647
15.4172
11.4755
2.70819
2.65742
2.90609
13.8415
13.7679
3.71964
4.63645
15.5165
16.7335
4.04693
12.894
4.25662
3.28287
5.94486
3.05221
10.2993
3.47057
2.95922
8.8228
3.44895
10.2157
14.8852
3.67936
11.0888
3.29315
3.8836
6.7085
7.83213
69.0405
6.49607
73.0784
8.17281
6.56513
16.8472
7.81167
5.85687
72.5486
7.98922
5.18381
9.25262
34.9068
6.46573
20.7606
6.78096
3.87096
5.37581
12.592
3.41687
4.55335
7.77935
3.10428
5.46378
14.5757
7.66234
15.6974
5.65169
7.3646
3.11519
3.43559
13.1997
9.24062
3.03296
9.49643
3.52574
3.12985
9.85829
3.59378
13.4291
3.18635
9.70174
3.52544
5.14889
20.6583
5.99882
30.513
4.9263
19.8234
6.24853
4.60592
5.13054
19.363
17.4034
5.09158
17.387
4.77024
4.99028
19.502
5.11816
20.4063
5.3398
4.59451
18.8237
4.4059
19.9394
17.5296
5.16273
17.2639
4.92194
4.64526
13.3952
15.9836
15.2014
13.8126
10.5859
6.87914
7.57202
9.8061
11.0574
8.02755
7.89165
11.3136
12.954
14.3834
14.7168
12.3605
3.39224
4.11574
1.36048
1.21081
3.97742
3.47785
1.18883
13.6021
8.75959
10.5892
12.2987
15.63
16.3409
15.7609
16.3458
14.6153
13.7441
12.4451
14.9892
15.4632
16.3628
14.9721
16.3635
29.4786
129.582
30.7014
9.66675
3.05272
2.61312
12.591
9.08603
2.57048
12.3696
7.15946
2.26387
5.94222
1.81794
5.70583
7.50085
2.21152
33.0476
31.4017
6.60167
6.12496
2.13836
1.75519
8.14848
5.35989
2.12311
7.58505
34.6837
8.2131
6.37055
126.946
7.64151
7.81259
9.04988
56.2074
6.59119
159.783
7.2507
6.15588
24.4769
5.50567
32.1182
5.46691
5.33142
41.2865
7.20966
11.772
9.80674
9.319
13.553
17.9865
14.5867
16.4034
11.0929
8.21954
7.97061
11.3809
3.65248
1.3145
4.56545
1.51285
4.42223
3.74649
1.29679
11.065
8.15979
7.91429
11.6374
13.5786
17.0009
16.5591
13.8691
3.55387
4.71742
1.27149
1.47084
3.8427
4.2449
1.26777
9.00247
7.22279
120.068
8.21863
10.7447
11.0134
12.9202
9.19426
14.4612
7.47055
39.4412
6.40306
124.229
6.14571
8.37555
12.653
16.2322
14.0409
15.6067
4.2726
4.04454
15.5807
17.3458
16.2085
4.00129
4.41356
4.41901
4.81556
16.8324
16.485
4.58102
4.45207
16.2856
4.23506
15.0676
15.6236
4.01492
4.26992
15.6062
3.98881
4.36909
17.9226
16.2844
4.35877
4.23246
16.6497
4.54417
4.04984
4.33305
16.4718
18.5981
17.1385
3.95666
4.65848
4.45978
4.47816
18.7149
22.0898
19.2509
4.20357
4.94429
4.22047
16.9301
17.5203
3.98147
17.9144
4.10261
4.06592
4.38601
21.4619
21.4432
6.56403
18.1625
5.35637
4.95535
16.3979
18.5586
20.4584
15.476
4.78146
1.46237
1.70924
5.48921
6.1538
1.45342
4.36339
15.1204
11.1635
11.9859
13.6636
14.3151
11.338
11.6324
13.8314
4.19916
4.92237
1.65307
1.3931
5.13645
4.04112
1.4112
18.587
31.1119
30.6518
16.5916
34.9176
34.5309
11.1819
3.3142
2.83191
13.6975
11.2649
2.81666
13.62
7.76517
2.29619
6.07842
1.891
7.68293
6.14531
2.30457
33.8105
34.1812
7.82882
6.27233
2.33844
1.90929
7.90563
6.2033
2.32384
14.8626
18.0026
15.0972
17.7874
12.5813
8.90898
9.96408
11.8952
3.87063
1.33492
4.66344
1.56851
3.82435
4.71555
1.34331
13.1848
11.0904
10.6484
13.5376
14.5482
17.3446
14.2181
17.5704
3.91649
4.82034
1.36856
1.58511
3.96252
4.76521
1.35758
3.87043
4.14573
15.5137
15.8572
4.03689
3.90146
15.2038
3.897
3.75437
14.2826
14.0645
3.85957
14.5809
3.79495
3.85289
14.8928
3.93672
14.4771
3.84595
3.96687
14.6756
3.94199
16.0646
3.90074
14.7632
4.00984
15.2367
3.83557
5.50942
4.17656
19.0318
18.4299
4.7957
4.52898
22.8655
8.02415
10.8985
7.49075
129.047
8.54177
6.26455
20.7135
4.97282
40.5651
6.16766
5.15799
32.8281
6.88201
22.0526
6.46655
140.885
5.23025
38.1251
8.98359
1.3072
5.31134
1.44955
4.64611
1.35921
4.87349
1.34974
1.23031
1.15583
3.78823
4.15049
1.16987
4.39707
1.21503
1.23242
4.71424
1.19229
3.82026
1.1597
1.27259
4.36637
1.29846
4.91211
4.6506
1.26868
4.98677
1.30651
1.27799
87.2302
25.68
44.4823
32.5435
279.942
7.08047
1.85149
8.04464
2.17243
8.1145
6.982
1.85245
34.7258
20.2288
21.353
35.203
20.4539
29.9326
33.8747
5.91346
1.37334
5.5519
1.64652
4.774
7.3591
1.59336
36.9922
24.5415
20.2118
22.2205
20.9159
27.9263
51.6965
76.253
64.9337
61.4432
36.69
73.1495
7.39216
8.89217
2.18695
1.936
8.271
9.65209
1.86876
2.13682
1.71664
7.98478
6.8616
8.16595
1.88792
1.95724
2.55714
2.886
12.8942
13.8043
12.0908
2.70194
2.76943
2.29626
6.93245
10.8
2.19149
9.58353
2.01628
2.47404
2.41645
9.69246
13.2317
2.51186
10.9636
2.23732
2.6637
19.349
110.168
36.5294
13.281
3.83003
3.61512
17.1141
14.9943
3.31001
14.9041
12.5654
3.01893
11.8797
2.66712
11.8072
12.6271
2.99147
36.0925
108.325
18.558
18.2329
28.4742
12.7696
12.2411
3.16786
2.64429
13.8534
11.8452
2.95251
1.51554
5.08675
1.53339
6.61291
1.4132
5.73288
1.67423
1.42501
1.36057
4.29766
5.92971
1.28649
4.9825
1.52973
1.38214
4.61591
1.20565
4.33179
1.26083
1.30807
5.05414
1.58742
6.45
7.23862
1.96091
5.61055
1.78151
1.7322
22.718
18.0478
18.8098
42.0779
15.2136
11.4674
14.914
15.6217
16.2513
40.4177
5.91147
1.40198
4.66089
1.69358
4.55422
5.92289
1.65643
7.37784
1.97757
10.121
2.33762
10.0393
7.41919
1.97621
43.5526
21.8878
13.4725
18.6254
15.9213
18.235
47.9824
17.3181
16.3939
17.7187
7.28034
9.87463
2.02284
2.32393
7.01413
9.91919
1.97564
1.6472
1.59884
4.88887
7.62848
1.46576
1.81479
5.87036
1.76795
1.84464
5.93804
8.4191
7.69663
1.5999
2.0264
1.54153
5.06407
1.2951
4.8605
1.39344
6.05053
1.40593
1.89671
8.2237
2.35743
9.89453
2.06722
6.92413
2.18289
1.26725
1.20966
4.58821
4.5211
4.64612
1.24332
1.23208
1.20208
1.157
3.55343
4.19319
1.14082
1.21977
4.09031
1.20275
4.11813
3.57857
1.11962
1.13812
4.13442
1.1812
1.26381
4.40128
4.72828
1.26353
1.2852
4.57368
1.22959
1.05257
4.02389
1.09901
3.95141
4.04549
1.09289
1.06227
1.01668
1.01747
3.96846
4.07792
3.89977
1.00339
1.0463
1.02267
3.82497
3.8244
1.03057
3.80424
1.0092
1.05806
1.0553
4.1064
4.62309
1.15296
4.24053
1.08705
1.10457
14.5778
15.4264
15.2294
8.40853
2.1551
11.3616
2.4457
10.8395
9.28034
2.09717
6.31674
1.44228
4.4942
1.68187
4.71778
6.02308
1.709
165.6
16.6962
12.8247
8.74535
27.0448
13.4466
14.1043
13.8919
14.6482
47.8912
13.9483
15.356
8.97732
17.2849
40.601
13.8592
7.79347
10.2615
2.40504
2.0249
10.4631
7.57201
2.04426
15.2379
15.5603
16.0951
12.9344
4.11007
3.48493
14.9623
12.9501
3.45538
14.9123
12.5366
3.01406
11.8655
2.67418
12.5868
11.8565
3.01037
28.5016
36.6742
18.4033
14.7561
17.9654
15.463
12.4838
11.8853
3.04548
2.68524
12.4757
11.849
3.02409
16.9006
29.3012
18.5044
15.6377
15.3024
15.8902
38.9365
14.8085
9.73337
14.5704
14.7398
39.1977
14.2379
5.85422
1.37392
4.39873
1.6473
4.35989
5.90098
1.63309
7.40277
1.96778
10.1131
2.33413
7.40699
10.1075
1.96461
38.8494
13.9586
9.64203
14.8115
14.7106
14.1755
39.0458
15.0183
16.3219
15.8005
7.40817
10.1503
1.98938
2.34353
7.45558
10.1074
1.97349
1.15886
4.23499
1.16634
4.50705
1.18558
1.15273
4.45419
1.10727
4.03276
1.06683
4.06749
1.06414
1.10728
4.24982
1.17033
1.13564
4.33414
4.30374
1.16718
1.10894
4.46683
1.34836
1.70092
6.11481
5.97228
1.48443
4.88552
1.52418
1.22827
4.17273
1.24588
5.0472
1.32659
1.18245
4.31833
1.25774
4.67836
1.26697
6.01792
1.1701
5.01733
1.39223
3.77088
0.369456
0.313099
0.318993
7.86703
0.375673
4.02676
0.276498
2.98804
0.232824
3.8622
0.239326
0.269496
3.96354
0.31959
7.86043
0.36635
4.27013
0.375912
0.312053
4.09386
10.7922
0.602997
0.596576
0.52555
9.08348
0.528803
10.2189
0.470072
9.365
0.420478
9.29389
0.416519
0.474296
9.72319
0.468801
9.25057
0.415154
9.52235
0.470449
0.41448
10.1969
0.264705
2.7349
0.229013
3.90553
0.228793
0.264874
4.11371
0.309114
4.52974
0.365184
8.08993
0.361626
0.31157
4.57811
0.306869
0.359131
4.33061
8.24652
0.306692
0.359207
4.61486
8.80635
0.556698
0.576156
0.51506
9.00047
0.497863
9.18208
0.476969
9.32533
0.420601
9.3422
0.472956
0.424582
9.34412
0.464583
9.14331
0.401459
9.38325
0.44928
0.414677
9.31299
0.275456
4.62169
8.66006
0.299147
0.327079
4.73619
0.25156
0.240871
1.59477
0.211027
4.01349
0.207878
0.244328
3.88302
0.285579
0.341473
8.67169
4.90585
0.338097
0.289103
4.78841
0.31479
4.56229
0.366395
8.77927
0.312254
0.370737
4.89727
0.260493
2.5337
0.215263
4.05983
0.222716
0.252062
4.11491
0.307953
0.351927
8.91263
4.96167
0.363144
0.298223
5.01141
13.1909
1.96218
1.65159
1.4807
1.89309
16.5176
1.24814
12.8287
0.768064
22.6501
0.852797
18.6994
1.06717
1.41672
1.71281
23.6826
1.85995
18.0921
1.22654
1.85112
1.83939
1.8992
1.92456
1.8677
1.38402
1.58558
1.76743
1.88801
1.76538
1.92446
1.64427
0.910281
8.91357
0.73855
23.5117
0.699617
24.9825
1.00476
0.97841
28.8942
1.21279
28.6274
1.42681
0.88031
1.01807
1.66002
25.3078
28.5516
1.15415
1.49944
1.72356
1.77524
1.666
1.51353
1.61124
1.30904
1.72457
1.12453
1.56342
0.886803
1.36902
1.05419
0.922106
39.7272
0.686043
0.672193
42.8971
0.896121
0.856589
6.38915
23.1668
1.67626
1.58297
21.2184
0.901472
0.901949
0.739239
47.4078
0.645014
44.8955
0.949527
0.87287
31.2091
1.15372
45.2616
0.86202
0.981126
0.856384
7.62306
23.3245
1.75199
0.688754
23.2546
0.923736
0.903126
0.802525
47.728
47.3968
0.922503
0.973894
7.55608
0.445459
0.432616
0.392288
8.25969
0.402297
7.99826
0.347861
8.59326
0.309097
8.37286
0.313396
0.343811
8.16805
0.359702
8.40153
0.328589
8.33892
0.366958
0.322829
8.14899
0.223502
4.56048
0.27326
8.40996
0.266201
0.229438
4.47248
0.216917
0.2656
8.3536
4.29187
0.25748
0.223837
4.43612
0.233239
4.43162
0.272003
7.98415
0.275828
0.230343
4.12036
0.238412
0.287532
7.95643
4.22679
0.283022
0.24181
4.10471
7.26028
0.369968
0.376849
0.347404
7.50415
0.34084
7.64509
0.307516
8.30593
0.284388
8.11013
0.314322
0.280561
7.89045
0.323444
7.62492
0.292944
7.9963
0.318349
0.296628
7.77296
0.217866
4.59221
0.252692
7.99917
0.216396
0.251804
4.85769
0.232006
0.264141
7.92052
4.25084
0.266989
0.230164
4.5757
0.840682
0.714925
0.56145
0.600516
0.540858
0.519997
0.535118
0.522781
0.548827
0.588359
0.5675
0.545946
0.875135
39.3124
0.682608
0.671067
0.887464
37.9101
2.02884
0.639978
30.3797
0.664687
37.2548
1.89235
1.66775
27.4941
1.56747
25.6965
1.61686
1.61943
1.71321
0.622099
28.1533
25.6928
1.65638
1.7757
0.518535
0.537797
0.506229
0.487908
0.502266
1.34762
0.510055
1.31415
0.500083
1.25994
1.32215
1.31537
1.27892
33.4103
1.49922
1.54756
1.34097
1.08286
1.16312
1.22358
1.01187
6.29137
0.301849
0.292478
0.287665
6.66714
0.29213
6.71497
0.330843
7.45348
0.362924
9.63152
0.351742
0.352793
6.98153
0.313099
6.81511
0.337623
9.09101
0.304887
0.343946
6.93516
6.22018
0.247939
0.270899
0.314112
7.18599
0.292758
7.43221
0.39195
7.90719
0.369748
12.267
0.373336
0.371014
8.83996
0.386652
8.53598
0.318037
11.5855
0.356385
0.352233
8.78602
1.14172
1.10455
1.10843
1.15116
0.918343
138.56
0.701403
0.772855
0.837944
0.993005
0.910602
1.05287
0.841558
0.904384
0.93448
0.836424
0.804347
0.75208
17.0753
0.658439
0.779945
0.634129
0.715068
0.577182
15.1272
0.684853
0.603033
183.246
120.348
68.3194
393.162
24.0124
5.09998
4.90575
8.42342
9.78464
6.66274
13.8238
13.2155
7.3936
27.6844
6.77186
14.722
23.8221
6.67476
397.97
184.898
33.6392
23.289
5.72849
8.11941
12.1642
37.2324
7.92097
107.539
51.7654
59.306
70.1347
71.6852
106.59
52.8586
205.044
27.4665
8.47471
15.2712
9.11323
45.3681
39.2772
7.04857
57.738
39.8059
68.3946
36.4295
119.416
447.617
209.603
12.6936
23.9764
4.88659
8.37494
9.5551
37.8384
5.4169
47.6539
20.7174
35.0871
29.788
426.971
37.2186
13.6566
40.9069
7.23122
24.3036
59.7987
8.97178
28.3543
9.67034
25.9384
7.53055
16.9573
40.4662
7.92656
23.5921
40.0662
6.6672
6.98604
13.5805
14.0905
7.3975
174.121
379.939
79.0566
160.79
40.9214
170.506
93.3219
383.024
163.533
22.6338
13.3767
379.813
32.5639
93.5748
94.5611
9.83584
50.5086
32.8491
40.7325
166.738
23.0803
391.596
15.9717
13.5626
41.0638
357.251
160.954
97.4998
366.7
35.7135
94.0579
39.3791
180.304
379.203
14.7096
46.7213
75.8438
29.802
15.8091
43.7983
25.6406
47.871
7.95766
7.89484
39.3743
15.3812
10.0454
25.1613
16.3321
10.0079
18.2743
8.78824
49.0627
28.232
7.95069
230.778
54.8679
126.874
69.9059
497.412
18.0492
47.6727
8.8519
9.18084
28.4031
32.4302
8.24554
501.229
220.129
114.921
35.1848
16.4622
28.7854
57.2273
26.8976
32.9821
184.702
45.4726
15.3686
435.054
18.7609
100.639
11.9073
31.2647
11.3281
50.861
45.821
24.7178
25.0638
18.0154
14.5832
181.441
106.976
13.2758
44.9123
56.5185
432.137
35.4175
38.8469
34.14
41.8549
162.311
98.2846
58.3813
46.2047
94.6868
51.4646
34.4085
52.4208
43.1253
3.38957
5.55372
3.43193
6.85323
3.45662
5.2339
3.1212
181.575
14.2704
54.8257
39.6079
490.198
51.0578
31.8019
9.50389
8.41108
11.2399
44.2678
35.889
104.011
52.2015
14.3224
184.505
26.889
461.494
63.3955
59.2836
27.2471
8.6512
47.1296
13.3809
104.507
38.25
3.8381
7.92791
32.7934
22.8665
11.355
6.74125
5.64362
3.99476
6.62263
21.6648
4.18566
7.94716
3.7932
5.71204
3.30147
5.5083
9.02237
3.6997
7.10194
3.60739
3.68797
32.7811
21.4303
29.2946
38.8084
29.5385
31.5513
39.5215
43.7466
36.2274
16.3337
21.9335
23.8379
25.7407
15.1466
17.6424
522.627
191.704
15.8404
26.7816
55.7835
105.136
26.0491
24.1281
17.4173
204.494
40.517
14.8709
57.2781
45.1141
173.313
64.8784
19.6922
13.8215
21.981
12.4428
4.40166
2.5039
6.2088
2.78063
4.46428
5.55765
2.7516
22.03
28.5036
19.9352
31.1471
13.7897
356.602
32.3874
39.232
12.4062
28.4843
41.6152
31.6822
37.226
40.0028
164.702
12.8665
14.0309
372.437
34.333
34.0413
22.8032
58.9162
370.115
165.782
12.823
39.389
22.8181
58.4972
47.0296
8.70891
92.6936
12.9217
9.96182
12.7351
22.0456
20.0783
13.8096
12.1892
156.654
88.2905
39.1715
55.5552
32.8511
21.9314
7.14748
6.28744
28.2922
22.167
31.836
6.79833
6.56869
9.2693
85.9851
38.3254
11.8828
43.7318
21.4212
7.99281
8.31979
44.98
29.4044
7.31083
39.6325
9.62667
7.04696
383.502
5.75208
13.1852
6.10238
18.2887
5.89593
6.26561
11.6324
5.38505
3.52845
7.36297
11.1155
3.70004
20.7204
3.99718
6.60388
40.2308
5.2946
11.1133
3.67557
7.51456
32.5675
7.56516
13.0439
6.17657
33.8744
6.2653
39.6947
7.06457
21.0739
41.4112
52.7693
7.67416
11.5096
84.8804
8.73733
12.4395
21.9466
13.9217
19.7044
32.1822
52.1843
360.264
20.8713
39.4954
152.015
11.3358
41.29
158.179
12.57
33.767
377.12
14.0148
6.30978
18.9405
29.9684
6.64235
20.965
6.2322
6.79678
6.05395
6.55637
11.9121
21.607
5.86951
6.39485
18.8547
6.50774
12.0807
40.6129
7.13398
7.87746
13.3895
6.13981
6.52884
36.7367
30.8187
9.01363
6.91121
27.2444
7.69442
48.1226
59.261
90.5019
376.515
58.0973
159.595
163.377
384.385
64.1257
413.797
178.209
169.372
410.944
53.8579
60.9547
101.269
3.70773
7.85784
3.79152
6.19711
3.77088
3.47488
5.96959
7.23021
13.4321
45.9486
7.91083
8.84716
15.1088
6.75062
7.30714
10.1402
41.7376
34.5361
8.71241
30.8791
7.68247
7.03436
21.3101
34.1944
7.42713
7.66705
23.8263
6.88651
6.71726
13.3757
7.16602
24.169
6.47141
21.3202
7.03555
106.973
47.4052
55.5002
53.1254
29.505
42.9534
182.387
108.341
62.6751
36.083
29.4861
41.8437
440.561
7.36885
12.5714
43.5454
5.87485
36.0571
4.13903
8.22923
8.20551
6.13513
33.8847
14.0748
7.13128
6.74449
42.911
5.97918
8.40891
11.4645
3.91113
4.24879
23.0816
4.15357
6.36401
14.5343
20.441
6.71002
6.54316
12.9723
6.82513
47.1909
39.3522
37.2669
500.906
17.7522
14.67
23.3367
42.5676
26.4374
32.8958
29.1976
18.2598
27.7235
10.7645
45.2563
6.88991
5.50056
3.76228
33.0912
21.8832
46.1134
55.7248
41.8824
86.2749
40.3225
38.3789
34.1418
47.0576
7.24343
3.51998
5.54406
10.9455
3.70805
5.97966
21.1611
6.46749
3.47737
3.54884
5.40413
3.20794
4.9696
8.13531
38.0457
30.9757
36.0099
32.8248
13.2081
447.256
15.5623
18.9042
53.6745
41.0144
58.6108
459.525
24.9442
54.4527
169.69
13.7099
15.3594
21.9286
21.1896
15.8202
36.4069
48.3309
37.8411
43.8469
4.56015
5.02732
2.9416
3.19957
3.23319
5.8076
4.34962
30.2923
21.3252
24.862
26.9765
4.80572
3.2728
8.75002
3.16901
5.16347
3.21353
7.1921
32.0976
27.8109
32.8689
27.091
22.7824
33.0603
29.0668
26.8565
15.2657
167.615
35.8681
13.2792
40.6172
21.2904
25.3974
27.6264
19.1132
35.3158
46.1534
7.42349
6.79327
41.0785
37.5337
6.365
24.9802
16.7294
5.94349
6.1644
5.91896
22.9676
18.4629
30.9753
6.26081
33.8817
5.90036
35.9395
5.87332
29.0706
29.608
6.25053
25.8036
6.12545
31.6968
6.13056
23.3694
151.047
11.669
45.4788
13.813
393.933
28.3194
26.153
23.8832
16.3887
24.4188
19.4603
12.0978
20.0144
17.8375
88.234
83.834
10.1559
40.665
50.0526
366.487
20.9758
57.8121
51.8147
8.41669
21.6535
11.4686
46.1489
92.8714
47.7983
7.16668
37.7245
7.08797
40.7973
9.05801
41.7818
160.659
11.0665
35.3044
22.3916
358.085
46.3585
53.9305
7.44848
22.8765
39.9759
89.031
9.38798
39.7867
37.074
6.50442
9.56746
7.62804
32.8962
46.1834
37.0652
6.39505
27.0013
6.45902
33.0153
7.08091
30.9628
53.5699
33.6021
388.148
22.5856
150.908
11.5785
87.5381
18.9069
6.14623
5.83568
23.648
24.7231
6.22303
17.9737
16.8811
13.1248
6.04223
6.2439
11.3318
18.9271
5.95927
155.377
402.869
13.1094
6.48914
8.32958
35.134
44.8497
6.84593
12.686
22.9796
5.84121
30.4186
5.95198
25.2478
28.4479
5.92318
27.197
26.0282
5.68739
5.63716
5.52582
31.0373
21.5976
28.0113
29.2866
5.62177
5.61401
5.49922
30.2788
26.5262
31.3017
5.94539
5.91021
35.3771
5.66291
34.4354
32.9355
23.3961
5.83235
5.57941
15.8669
5.52747
17.5739
21.5009
33.618
5.63842
28.6123
5.7267
29.5218
5.66108
32.9201
38.88
42.5891
6.94272
7.22725
40.8739
6.47365
39.4215
36.4021
5.83123
34.4193
6.21811
38.0228
32.7265
6.00335
36.3222
5.98976
6.4954
36.214
5.989
35.7317
36.7914
11.1254
5.65733
20.5022
5.82801
15.1222
6.20536
16.1025
384.155
126.659
80.3137
22.9188
6.61375
3.30381
3.49019
9.20804
5.30232
10.9857
390.512
147.492
41.9621
5.75695
30.0053
4.95983
19.9908
10.4634
7.57701
43.9531
6.40803
6.57614
10.9703
7.78319
12.479
32.747
32.5784
3.68114
7.64513
11.8925
36.3612
7.07994
10.0877
43.3258
11.2686
7.07284
6.7111
33.3325
12.6632
8.18744
84.3754
41.4496
54.7336
44.6854
20.7126
3.76915
4.01013
5.98336
10.553
5.54542
7.11399
11.5286
6.71997
19.3068
6.14037
17.0624
13.4423
6.20195
137.386
57.7766
162.056
52.0241
6.42523
8.71015
4.19995
3.59209
3.68429
11.3744
5.67457
6.52384
5.52729
3.53892
3.82886
3.40927
7.06333
5.47321
49.2867
160.555
93.1778
56.4039
37.2367
27.1899
34.1555
30.343
44.1762
49.4719
58.4251
40.0995
9.26316
5.8207
4.11928
35.1747
3.59463
23.5122
11.628
12.1134
8.91851
23.3314
7.54319
47.9301
6.52828
35.4116
20.0919
30.9546
6.3857
6.41047
26.7703
6.61926
24.5209
415.397
18.0352
7.29772
20.4371
6.40532
24.5922
14.1791
6.42365
93.4793
430.972
161.974
14.02
8.78777
6.39216
12.1283
7.20108
47.4721
17.9876
5.21566
3.29374
6.99438
3.68245
6.42905
3.65764
5.32375
29.9856
35.2684
29.349
36.2337
27.9268
22.9327
30.0265
21.0163
33.9401
42.8246
40.2379
35.8018
5.72493
18.8701
5.96668
12.0363
6.663
5.5018
14.6635
6.82311
14.9261
6.06384
46.1444
8.27388
5.86331
12.2518
5.92803
4.92433
44.7203
32.8022
8.02995
6.74099
10.5658
2.82312
3.75937
4.6195
2.49033
2.5233
3.90654
2.82575
2.7793
4.07338
4.26578
3.26072
2.78999
4.24738
3.25793
2.48686
2.54796
5.55804
4.84087
2.40299
2.51467
4.64727
8.09999
12.1667
5.67373
10.5286
5.86985
6.7281
44.9389
3.31149
7.72957
6.14582
2.37024
2.53028
10.4745
2.71972
4.96382
3.33673
32.145
8.12377
6.63134
2.77604
20.9543
2.88304
10.1649
6.897
21.1415
5.06644
3.46225
7.51921
2.70272
3.98348
4.23876
3.09678
2.67232
4.50626
3.09738
2.63381
2.78566
10.4873
5.13782
3.38021
2.48146
5.97669
6.12076
33.1092
41.084
6.08007
35.7206
8.0362
5.41813
5.75263
31.7556
36.9575
5.76322
34.2863
6.50197
5.4151
6.86904
21.1861
48.1785
43.2832
38.1346
10.6961
8.78136
21.6026
23.3242
19.9918
24.5979
20.6539
19.6733
15.7978
24.4804
17.1849
11.2348
15.7216
12.549
20.537
49.6797
68.241
7.67223
140.666
18.3461
9.68154
12.7941
19.7715
16.3408
15.5432
10.0354
43.787
127.642
30.851
12.5625
9.91658
37.5974
40.0368
6.15599
45.7134
7.50855
6.85449
41.9551
15.1788
351.248
11.4037
11.0609
22.4294
32.5467
51.1383
358.207
87.8299
11.4463
43.7091
84.0836
152.642
425.839
80.409
140.391
41.9607
122.156
78.5474
383.074
4.81301
31.4817
5.30551
31.3876
5.10481
29.4475
4.81136
4.99735
22.7968
5.46437
23.7359
5.22957
25.967
5.06427
4.84328
4.63496
30.4979
26.5496
28.4616
4.77753
4.79209
4.90522
31.6628
32.7129
5.36524
31.7573
5.07902
5.15513
4.71629
28.9662
28.2696
4.57891
30.4261
4.63804
4.57585
4.65483
4.64627
32.1133
29.0018
30.9704
4.78553
4.57323
5.29659
39.3263
5.72836
33.3642
6.59732
35.295
4.90391
5.41503
34.2625
33.1606
5.39541
34.5399
5.05855
5.82359
5.00787
4.55694
32.405
32.6161
34.004
4.76865
4.72571
5.48446
16.1181
5.45243
22.4628
6.02282
20.1986
5.16302
5.07791
20.1357
25.4759
4.8649
22.3388
4.80857
5.31593
5.05435
4.74314
25.5651
26.4647
23.6377
4.9138
4.75146
5.57775
29.1641
5.56192
28.4499
5.41033
26.0037
5.53998
5.89732
17.1585
7.24274
15.4502
6.47399
20.0772
6.08851
5.90995
5.8196
24.7634
17.3615
22.0574
5.65143
6.38487
6.05773
17.5093
20.765
5.99536
15.6347
5.86362
6.48992
9.14822
22.0489
37.1869
3.87053
50.7103
7.7842
5.5613
7.48079
6.43414
18.4836
12.8774
13.496
6.62837
6.86649
5.61878
33.8116
5.74803
30.2541
5.88964
30.873
5.66779
5.6
31.2909
25.7362
5.67805
29.6996
5.64971
5.67514
5.71121
6.08746
26.9839
23.5597
27.6493
5.80505
6.04623
7.15585
21.3887
8.79619
10.9834
5.37086
33.6024
6.27717
5.21567
7.56715
31.1307
3.43146
21.0313
6.81643
3.11425
8.57402
5.92126
12.8058
10.6374
47.6405
7.07347
6.04035
371.224
356.94
136.468
29.9334
34.6809
32.1096
27.1049
31.1704
30.5009
36.4648
34.3147
33.3451
355.493
41.4026
38.7033
49.2972
133.064
42.917
77.3482
49.8286
79.5769
42.6729
29.6661
31.445
33.3782
50.0987
35.3011
38.5126
1.68151
3.81212
3.45375
1.58107
3.51136
1.70517
1.57752
1.58567
3.41853
2.97845
1.73072
3.37387
1.73831
1.59251
1.85659
2.11621
3.10428
2.69257
3.1359
1.87942
2.10156
1.73029
3.61442
3.41494
1.6106
3.35913
1.74952
1.60507
1.93163
2.20429
2.71467
3.09665
3.05761
2.19931
1.94213
2.25956
2.79622
2.8828
1.96114
2.79452
1.9604
2.26271
16.8378
18.2549
14.8675
28.835
41.8987
64.9603
313.78
9.90403
110.538
16.7753
11.6777
13.3332
22.8391
22.318
21.3359
16.0717
14.4163
17.5779
20.5949
16.3482
19.3169
24.6217
21.2007
23.3563
24.8376
22.6529
23.819
19.9936
21.0364
22.3611
93.9736
8.87598
30.5992
42.8803
114.854
26.316
38.8108
286.574
27.9886
11.0864
39.5824
106.919
11.0305
12.8971
9.52574
303.315
11.6732
10.4707
41.5537
42.9535
8.24976
6.8509
32.7601
34.4534
10.5491
37.461
66.4423
44.4047
30.3001
8.27589
115.93
37.7786
19.4534
40.1865
11.7334
20.485
124.119
69.8132
8.75603
47.8541
33.7567
5.36517
5.65159
31.1628
32.8841
5.91792
31.8032
36.7298
39.5742
11.2402
6.4453
45.4078
34.7996
7.23192
17.6898
12.163
14.2012
14.4961
43.0863
313.507
12.1167
68.8172
43.2031
30.684
314.592
117.002
10.5892
30.9181
5.28131
5.76296
31.3611
31.9773
5.34514
30.5434
30.2842
5.07581
5.40385
29.9379
31.6184
5.18646
28.7234
31.4793
35.7166
6.17132
5.87978
33.0751
33.0866
5.43311
33.6007
10.2169
5.76351
36.5716
6.50362
42.1289
31.7292
32.5444
6.84776
5.50871
31.8757
6.08924
34.4583
31.0237
30.8952
29.4713
5.23462
5.196
5.48191
30.1167
29.9168
26.1961
5.08936
4.9194
27.0677
5.02335
27.2947
25.9016
25.4905
5.15438
5.07017
24.3681
5.0441
26.3396
23.3842
26.9747
28.5507
4.96758
5.00743
4.97756
28.0166
27.6393
29.9597
5.92201
5.37182
33.5945
5.15082
32.0583
30.6875
28.4102
4.88536
4.87382
27.8561
4.87906
28.0117
28.241
29.1104
29.1038
5.11594
4.98326
5.03186
29.5912
28.6633
29.6359
5.25
5.29714
31.0112
5.179
30.2608
30.4195
27.3984
5.2281
5.10532
25.1756
5.11341
27.01
25.6171
28.5816
28.9943
5.09225
5.03525
5.05507
29.3938
28.1796
254.113
9.57871
4.68232
13.5096
5.07836
10.8542
12.1696
5.6975
261.621
97.8127
57.2434
25.4414
2.46632
3.7348
6.48785
16.4219
5.21317
8.73489
8.10468
9.38246
4.58422
6.40341
10.7781
35.9744
4.75619
96.1674
32.2873
55.8963
37.297
245.547
100.459
10.5806
3.78308
3.95987
15.1236
13.5133
3.95614
12.0904
30.6787
2.99609
3.65409
7.38714
15.9572
4.90592
15.3037
9.00851
9.90606
4.11563
4.55913
11.728
7.51461
4.13877
267.243
36.9398
104.744
60.0235
16.4873
3.97393
15.8689
4.63542
17.5425
14.6664
4.25913
16.8926
3.79414
4.16564
16.9112
15.5036
3.96332
18.1692
15.2859
11.7208
4.41339
4.50942
13.2531
13.7988
4.17144
52.4498
93.6017
232.802
6.09718
1.33848
2.33749
5.01133
8.47413
1.73773
4.18815
6.74135
1.35243
3.05938
5.85525
15.1854
1.86347
4.4216
27.9688
25.9052
26.4376
26.5343
15.2996
7.73621
4.93769
5.29212
24.7449
31.1294
3.30969
31.0534
29.318
36.3972
27.4274
32.4615
31.4945
56.8719
28.0295
36.3917
34.4335
58.7641
30.7535
18.8988
6.98329
9.00332
6.49567
39.1004
35.4999
4.27099
39.2772
57.9922
101.256
33.4389
5.55223
1.5206
1.50896
3.82506
4.2218
1.76824
4.57835
68.2195
284.095
264.84
8.01737
6.84498
3.97324
1.72235
17.1833
5.14121
2.36705
31.3576
27.839
28.7998
29.2432
31.8066
32.5449
37.7758
29.8189
30.8932
30.133
33.2954
29.012
7.01828
2.87236
4.1385
28.6247
17.828
2.20643
9.75695
3.97351
1.8361
1.69636
3.16534
3.55419
1.74925
3.37582
5.17073
5.66058
2.50925
1.68639
8.22284
4.21583
1.87282
35.3943
109.629
60.8928
42.0461
29.6268
27.6721
28.604
28.3687
297.613
40.7918
105.41
71.2321
10.2802
5.45064
11.083
5.09847
12.739
8.57655
6.14189
9.31743
5.05643
6.7715
8.86171
37.0161
5.76414
11.4598
40.6612
9.47739
5.65227
4.46673
27.5772
19.6279
7.26663
276.861
27.834
30.2328
28.7665
28.7411
3.36104
1.51592
1.47364
3.49089
3.66557
1.53436
3.27762
3.25207
1.79046
1.65959
3.07203
3.38095
1.6378
2.98815
26.506
25.3069
26.0923
25.7313
3.55791
4.64598
1.55031
1.60116
4.05562
3.81296
1.54955
27.0812
27.1551
27.7267
26.6401
27.164
27.1316
27.9329
26.3523
26.9399
26.1389
26.4985
26.4942
28.9141
37.9874
33.0215
30.5344
3.97283
1.63331
1.32981
4.38188
1.40274
5.15151
3.68427
3.75958
1.47075
1.44629
3.55601
1.42179
4.03009
3.43843
3.53702
3.24287
1.34833
1.43579
1.37927
3.40508
3.31736
27.7596
28.2916
29.9577
27.0359
27.6006
27.4128
28.283
27.0038
24.1332
25.2721
24.7095
24.7033
23.3747
21.7631
22.9523
22.2661
2.63107
2.04884
1.80689
2.80888
2.04586
2.80391
2.62718
2.84642
2.23541
1.96263
2.711
1.95424
2.84621
2.7119
2.94758
3.08594
1.57176
1.7446
1.74151
3.04011
2.97225
24.0627
24.3406
24.6131
23.7099
23.3837
22.9229
23.9573
22.3613
25.4788
25.6939
26.045
25.1429
3.33315
1.24992
1.2953
3.89079
1.26413
3.57002
3.48932
3.05231
1.48521
1.61737
2.92386
1.47061
2.93801
3.01979
25.5567
25.5988
25.8511
25.3828
3.2128
3.18987
1.34662
1.43557
1.33352
3.30908
3.12354
25.7988
27.2157
26.2875
26.4497
25.3143
24.8053
25.0178
25.1407
25.634
25.7565
26.1022
25.2628
3.03953
1.65371
1.53632
3.29588
1.66877
3.08113
3.23168
2.83254
2.13803
1.89044
2.63187
1.88866
2.81062
2.64215
25.4934
25.1207
25.9136
24.6092
3.00179
3.10972
1.54464
1.69334
1.69336
3.15861
2.96886
26.0961
26.9107
26.4512
26.5707
25.0278
23.6806
24.6102
24.1485
7.23635
7.47469
198.022
9.21163
28.4852
33.41
29.7935
54.8515
7.91996
228.223
16.0317
8.77864
11.9049
9.99743
10.7032
22.2568
44.97
31.6799
5.93459
80.6873
13.9323
8.102
8.18297
7.62645
215.677
9.55616
31.6946
7.52228
26.6282
93.7365
8.51327
13.1836
9.62556
12.5964
11.1844
10.9263
6.43132
75.9083
69.9364
12.1022
20.9491
12.0143
12.8222
9.34897
11.0728
11.1165
15.1745
16.8554
16.0337
16.0817
14.0777
13.6586
15.0388
12.576
14.1576
13.9685
12.701
15.2416
6.81694
29.3261
51.2392
53.0747
14.9356
15.3427
28.5669
3.95598
3.60672
22.0008
21.7867
22.5787
3.67208
3.68563
4.71052
28.0446
4.58301
22.6788
6.7094
24.1484
3.93647
4.83025
30.1272
5.41185
22.5433
7.59152
24.3411
4.05636
16.2799
212.756
15.411
30.5146
30.8616
55.5723
7.47396
16.7551
23.1139
235.588
32.9917
34.4247
57.6515
8.47027
31.7
10.1404
8.21625
8.15808
227.203
7.62985
26.1638
26.4953
4.54244
31.0061
5.35967
5.49511
8.7322
9.30363
67.5129
30.2787
41.1382
17.7297
6.18844
14.029
7.59152
87.5571
105.799
8.80002
14.2379
15.1111
266.476
10.5448
122.267
28.8954
9.61575
7.14459
28.879
33.9683
4.25717
37.2436
5.01011
6.30765
9.09059
24.6097
245.695
7.92837
35.0175
11.5729
16.9345
13.476
15.5554
11.0551
11.9182
12.936
10.0289
9.52837
12.0989
7.41939
13.8327
4.3925
6.8483
26.2018
26.7488
5.26284
5.03016
25.2589
3.68892
3.19416
24.4807
24.6481
24.7497
3.60257
3.24467
4.11354
24.6674
4.25356
24.2129
4.56317
24.5583
3.96283
3.82673
26.2666
3.58724
25.0224
4.20017
25.2313
3.3222
3.9874
3.92514
22.5674
22.7686
22.9661
3.86993
3.96893
4.91037
14.6097
29.4409
27.8749
7.16746
6.29984
25.0308
4.22015
22.8143
25.4287
4.35365
5.17128
23.5676
3.91355
4.24069
23.1589
24.6534
4.2301
4.68199
23.6486
4.07638
3.70084
3.9231
22.7659
23.3321
23.1826
3.90791
3.71638
3.4131
3.15503
22.8646
22.9731
23.1205
3.47803
3.08386
3.69484
22.6487
22.7953
3.96297
23.0067
3.90485
3.75402
3.41697
23.529
23.2137
3.09624
23.3343
3.43076
3.08464
3.82111
3.91811
22.3037
22.2765
3.82952
3.92903
22.1036
3.71372
3.66431
21.8554
21.6456
3.64815
21.8669
3.7689
3.72311
22.3815
3.93579
22.2076
3.72879
3.78041
22.0992
3.83685
22.1363
4.03535
21.6987
3.95367
21.9058
3.90918
3.78065
3.94997
23.0716
23.4957
3.99538
3.74473
23.624
3.51963
3.16243
24.2796
24.0101
3.55415
24.0819
3.14255
3.83982
23.3146
4.13303
24.0029
3.88869
4.06904
23.8287
3.48383
23.7357
3.12316
23.8295
3.45847
23.8791
3.13685
2.81831
16.9788
2.6479
16.1776
2.68397
16.7957
2.7606
2.99128
3.18741
17.1043
16.7689
3.00104
16.9263
3.17208
2.82918
17.2256
2.69669
17.2516
2.83538
2.69289
17.1047
2.96816
15.8927
16.4101
3.02607
16.5693
2.87587
3.13592
2.72109
2.59482
16.2514
14.1986
14.927
2.4887
2.84565
3.00501
3.33383
14.4571
12.9671
13.8346
2.87306
3.60962
2.60858
16.5691
15.8414
2.41564
15.4867
2.41919
2.56033
3.20345
11.7762
11.9757
4.34841
12.9428
3.3999
3.969
140.429
62.5483
267.42
205.621
2.48027
17.1381
2.54112
16.9364
2.57278
17.3242
2.44537
2.44784
2.48124
17.7307
17.669
2.45623
17.6529
2.47065
2.48779
17.3406
2.58343
17.6029
2.48962
2.58097
17.5029
2.43629
17.1545
17.5386
2.40952
17.5005
2.3944
2.45745
2.73639
2.6702
14.8385
13.2285
2.6868
2.87289
12.2611
3.29787
1.88552
11.582
16.5772
28.7741
2.1767
2.96074
2.45255
14.3446
2.71161
11.0752
2.65882
11.3642
2.37288
3.34404
10.4138
4.68689
31.8242
3.46819
8.76375
5.05368
3.37957
17.7168
3.41099
17.1392
3.40878
17.4485
3.3766
3.36998
3.33822
17.2011
17.155
3.34834
17.2935
3.37414
3.38852
17.7409
3.33926
17.4217
3.34489
3.40989
17.5464
3.35563
16.7425
16.984
3.44133
17.1186
3.35032
3.39447
3.30783
3.42034
17.5654
16.7709
16.9814
3.34578
3.4535
3.32235
3.36812
17.2701
16.1073
16.8834
3.35281
3.32102
3.34762
18.0294
17.8698
3.40112
17.5315
3.37936
3.37087
3.27386
16.0775
15.368
3.6326
16.2413
3.51555
3.26007
3.42126
17.9418
3.40915
17.9774
3.40988
18.1946
3.38508
3.45944
3.3306
18.2441
18.5138
3.32923
18.3682
3.48293
3.4417
17.922
3.31954
18.0354
3.33969
3.41095
18.1462
3.44632
18.3653
18.7073
3.43741
18.503
3.41398
3.47206
3.40112
3.42251
16.6568
16.479
3.38176
3.45088
16.0207
3.39818
4.02822
14.6933
13.6529
14.6381
3.78964
3.45749
3.3683
16.1958
3.51436
15.4763
3.35271
15.4916
3.62815
3.43698
15.7632
3.58691
14.3386
3.49892
15.2425
3.50735
3.2722
3.44229
15.7937
15.6153
16.0843
3.29344
3.3191
3.31452
3.33136
16.7926
17.028
3.28829
3.36469
16.7801
3.24823
15.9348
16.4305
3.10744
3.22357
16.3697
3.18315
3.33207
16.1012
16.83
3.43083
3.38566
16.5296
3.37334
3.60016
3.52219
13.9917
13.8917
13.3819
3.35693
3.72945
3.6834
3.75183
11.0699
10.6781
11.8661
3.53494
3.91202
3.43
13.0176
11.7272
2.87989
12.6901
3.10902
3.21452
3.82228
12.9966
11.3151
4.22496
12.4916
3.95588
4.06314
208.945
157.659
2.80907
3.32285
15.1495
14.1587
3.08532
3.07271
13.4703
2.28736
1.89031
10.2539
8.42681
2.14107
9.06753
2.05337
2.58459
14.9197
2.74783
11.5686
2.4144
2.86643
12.3709
2.52987
12.3774
2.56837
8.17042
2.82053
10.9079
2.2741
3.45676
3.61051
14.9743
14.2018
3.37669
3.82919
14.1714
3.62352
3.89731
14.4167
12.8242
3.71945
13.8752
3.77218
3.51477
15.511
3.49586
15.2426
3.59201
3.43065
14.7703
3.55453
13.3281
4.47049
12.0544
4.10516
13.2063
3.67979
0.691242
0.711484
2.39001
2.31444
0.694481
2.3478
0.710498
0.668984
2.4701
0.652768
2.42393
0.677059
0.645292
2.39887
0.681929
2.3697
2.28563
0.700699
2.34487
0.674114
0.706587
15.651
15.2291
15.2074
14.9417
14.8159
14.9117
15.5533
15.1914
15.168
14.9234
14.799
14.9185
16.2828
16.0015
16.2238
16.496
16.3633
16.3797
16.44
16.4787
16.377
15.9931
16.2101
16.2186
1.26805
1.10587
1.47263
1.43183
1.23989
1.43697
1.15286
1.2499
1.43373
1.41142
1.12374
1.41589
1.23911
1.13943
16.0325
16.2531
16.2777
16.4783
16.6686
16.4652
15.8983
16.2153
16.2166
16.3934
16.6345
16.4455
0.760212
2.3222
0.783196
2.22889
0.759477
2.30623
0.783679
0.738293
0.720094
2.39672
2.32894
0.721532
2.34968
0.736936
0.740072
2.38151
0.721655
2.41333
0.722719
0.739118
2.36584
0.757658
2.21329
2.27201
0.778645
2.29026
0.780157
0.756306
17.4885
17.7574
17.6919
17.6313
18.002
17.8059
17.3717
17.4045
17.5732
17.9956
18.1368
17.9291
0.82579
0.807896
2.16551
2.01307
2.02965
0.791905
0.843908
0.772793
0.792993
1.98188
1.73822
1.9439
0.762442
0.804814
0.750284
2.25585
2.16211
0.728975
2.11877
0.734795
0.741947
0.87061
1.84154
1.65483
0.950516
1.85715
0.89038
0.929728
17.3333
17.3715
17.253
16.8633
16.8208
16.9822
17.2171
17.0148
17.1288
17.2467
16.9591
17.1141
0.742431
2.32369
0.778093
2.26767
0.753502
2.34534
0.764485
0.704051
0.701431
2.54231
2.55122
0.697064
2.49416
0.705865
0.724112
2.38222
0.715089
2.45553
0.709029
0.73268
2.40598
0.712446
2.3579
2.48906
0.718871
2.43476
0.722247
0.711701
17.391
17.3508
17.3082
16.9822
17.0321
17.1182
17.2836
17.0678
17.2127
17.2415
17.1129
17.206
0.845767
0.811741
2.12645
2.00593
0.811858
0.845891
1.99048
0.881382
0.930792
1.80393
1.60273
1.80423
0.877998
0.935531
0.839598
2.11125
0.805273
1.96943
0.807126
1.97593
0.837142
0.889344
1.83163
0.946515
1.61549
0.889805
1.81794
0.945692
0.775239
0.805617
2.15074
2.0725
2.14773
0.776887
0.803496
0.75198
0.729488
2.27745
2.26802
0.73029
0.749664
2.23198
0.750376
2.20564
2.24934
0.727063
0.727933
2.20505
0.751143
0.776605
2.09798
2.20762
0.800267
0.773016
2.17384
0.804947
0.935002
0.877695
2.03621
1.89315
1.91284
0.886954
0.925697
0.993465
1.06297
1.73174
1.56074
1.74808
0.992173
1.06402
0.936438
2.02994
1.88488
0.886368
1.90682
0.88948
0.934542
0.993996
1.73787
1.56825
1.0597
1.75459
0.985221
1.06736
16.7803
16.6836
16.6798
16.5681
16.5451
16.5995
16.7248
16.5356
16.6274
16.5721
16.5018
16.5805
16.8974
16.658
16.7773
16.8053
16.5467
16.7274
16.9915
16.9548
16.8895
16.47
16.4008
16.599
16.8554
16.9527
16.9491
16.829
16.9817
16.9453
16.8053
16.7849
16.8925
17.0331
17.0577
17.0161
0.809094
0.837009
2.17343
2.12645
0.801938
0.845691
2.19122
0.771841
2.22193
0.736548
2.32651
0.735691
0.770056
2.25422
0.807046
2.11931
0.839729
2.20119
0.848235
2.20531
0.795994
0.876121
0.838995
1.9732
1.84676
0.8367
0.878301
1.84206
0.928827
0.98616
1.71863
1.50191
0.922214
1.6978
0.992458
0.878495
1.9977
0.832909
1.89021
0.872194
0.838475
1.86514
0.925403
1.68082
0.989081
1.48523
0.927372
1.67713
0.987456
107.195
7.21993
5.52877
108.654
30.7732
6.57529
107.109
108.015
7.06714
5.19185
6.48368
31.1839
9.5164
9.4157
7.06545
30.8849
4.44724
15.8142
4.30324
18.7547
5.19744
19.1721
8.88682
6.11781
100.293
6.75552
9.04667
6.22723
6.79037
106.002
11.236
11.2761
9.08752
105.451
4.98242
18.9508
4.97097
30.2105
6.23482
30.6082
9.84006
10.7536
12.3473
14.4922
14.4246
14.2218
11.8151
14.2804
13.557
12.7686
14.2242
13.7044
14.7183
14.7797
14.918
15.1691
15.2187
15.1302
14.8242
15.0498
15.0068
14.9109
15.1199
15.0434
14.0531
13.9121
13.7618
13.0675
12.8334
13.2317
13.9018
13.4494
13.597
13.5672
13.0287
13.4121
14.5871
14.2894
14.467
14.5724
14.3819
14.4824
14.7061
14.6758
14.5962
14.1506
14.2308
14.3409
13.601
13.1582
13.3539
11.0129
10.8125
12.4102
13.7484
12.6677
13.3638
12.7848
11.988
12.8262
13.4023
12.9758
13.0508
13.2282
12.5753
12.9892
13.6781
13.5683
13.3645
12.5843
12.1768
12.6343
13.8088
13.6946
13.9252
14.3864
14.4005
14.2922
13.9711
14.2094
14.1036
13.9384
14.2665
14.1385
12.7354
1.7978
1.80393
12.7569
12.6824
1.80391
12.8121
12.729
12.7413
1.81577
1.80481
12.8005
12.6719
1.80419
12.8074
1.79749
1.817
12.9649
12.8819
1.80558
12.8867
12.6608
1.80065
12.5558
1.80114
12.6082
12.6075
1.80108
12.7757
1.76268
12.7776
1.77802
12.7234
12.8326
1.75592
12.7526
12.7287
1.67246
1.71043
1.71572
12.776
12.7071
12.8143
1.72853
12.9083
1.67833
12.8735
1.72357
12.8431
12.7136
1.76586
12.6202
1.73851
12.6614
1.74581
12.6714
12.9429
1.78243
1.7589
12.8231
1.75396
12.8834
12.8796
13.0783
13.1572
1.71622
1.65994
13.1714
1.70861
13.0761
13.0203
1.77988
1.7571
13.0414
13.1092
1.74894
12.9584
12.9918
1.72237
1.66688
12.9554
1.71564
12.9255
13.0044
13.5534
1.72523
1.71798
13.4113
13.5097
1.74551
13.4636
13.6638
13.7256
1.77064
1.76891
13.6628
1.76329
13.7328
13.5771
1.73922
1.7665
13.507
13.5835
1.75947
13.4921
13.6478
1.72189
13.6931
1.75509
13.6087
1.7494
13.7236
13.0438
1.63505
13.2409
1.5914
13.1272
13.1577
1.58113
12.8702
12.6156
1.52465
1.44797
1.52765
12.7653
12.7246
12.9978
1.63687
13.0001
1.58467
13.0989
1.58901
12.8963
12.9008
1.52141
12.8231
1.42466
12.9852
1.5127
12.7369
13.3028
1.71177
1.67117
13.3246
1.69683
13.3825
13.2428
13.2616
13.2033
1.69923
1.68617
13.2868
1.69722
13.1719
13.3423
1.7255
1.71417
13.4413
13.3686
1.70906
13.4203
13.2269
1.66778
1.67966
13.0779
1.68889
13.1742
13.1335
12.6465
1.59766
12.6063
1.55939
12.5465
12.6989
1.57758
12.6985
12.741
1.62094
1.56141
12.7746
1.57019
12.6738
12.7463
1.60699
12.8727
1.62679
12.8253
12.7865
1.58907
12.5852
1.53724
12.4419
1.53853
12.479
1.55534
12.5574
12.4923
1.56582
12.5511
1.51083
12.4185
12.6222
1.51866
12.4484
12.4291
1.49297
1.38447
12.5923
1.46414
12.2739
12.6014
1.57362
12.8514
1.55447
12.7359
12.7262
1.52577
12.3357
1.45086
12.0771
1.37925
12.2584
1.45789
12.1576
12.8079
1.60594
1.59599
12.6584
1.61584
12.7465
12.7266
12.9598
13.1006
1.63883
1.66045
13.0209
13.0553
1.63316
12.8766
1.6142
1.632
12.9098
12.9535
1.62366
12.824
12.8998
1.60458
1.65296
12.9402
13.0061
1.62516
12.8243
8.2682
1.26643
1.10559
9.3647
7.64517
1.15274
9.73026
24.3483
78.9724
6.96031
5.44001
1.12825
0.923925
7.71058
4.81419
1.06868
8.87647
1.29905
1.24487
10.2698
9.43414
1.19687
10.0183
6.12758
0.964218
4.4861
0.881908
5.41648
5.36909
1.01577
10.2039
1.34939
9.93165
1.23606
9.66596
10.3285
1.31187
10.2457
10.178
1.37143
1.30173
1.3259
10.2478
10.1507
10.3214
1.39732
10.3749
1.39451
10.393
1.3602
10.3111
10.0672
1.19652
9.05992
1.24849
9.40364
1.27635
9.89383
10.4845
1.33775
1.37442
10.1639
1.39858
10.3147
10.4268
10.5628
10.6258
1.4707
1.45814
10.6389
1.44728
10.5439
10.552
1.36257
1.4488
10.559
10.6288
1.41983
10.4382
10.4958
1.42015
1.4477
10.423
1.43375
10.4473
10.4727
10.7596
1.45208
1.42636
10.566
10.6496
1.47016
10.6761
10.9346
11.0739
1.54431
1.52728
10.9917
1.51821
11.0201
10.8422
1.48402
1.52814
10.822
10.9004
1.50355
10.7618
10.8532
1.43683
10.8341
1.49086
10.7459
1.48308
10.9411
10.1021
1.33709
10.3505
1.27845
10.182
10.275
1.27598
9.86458
9.75681
1.2843
1.14722
1.22976
9.95108
9.64091
10.0632
1.35705
10.2839
1.34368
10.2346
1.29956
10.1298
9.90362
1.20298
9.74502
1.11821
9.99194
1.20282
9.66808
10.5381
1.43181
1.38529
10.492
1.42303
10.6047
10.4205
10.5849
10.647
1.48037
1.47725
10.6508
1.46285
10.5929
10.6279
1.46204
1.47231
10.7562
10.6937
1.45195
10.6933
10.4951
1.40198
1.45667
10.4111
1.4367
10.3792
10.514
10.1053
1.40158
10.031
1.35988
9.98866
10.1543
1.38223
10.1463
10.1415
1.38329
1.37035
10.2094
1.38336
10.0788
10.1981
1.41894
10.3258
1.40114
10.2667
10.2529
1.39733
10.0596
1.35244
9.87809
1.36
9.94813
1.37151
9.99053
9.79828
1.35001
9.91744
1.2993
9.73658
9.97832
1.30317
9.71946
9.67194
1.27824
1.18273
9.8766
1.25406
9.49786
9.91826
1.35951
10.2193
1.33632
10.0607
10.0883
1.31249
9.59
1.24188
9.29514
1.17407
9.5276
1.24504
9.35852
10.253
1.40845
1.38654
10.0703
1.41389
10.1959
10.1295
10.4342
10.5911
1.45404
1.46423
10.5002
10.5346
1.44309
10.3507
1.42812
1.44463
10.371
10.4237
1.43401
10.2959
10.3447
1.39589
1.44503
10.3508
10.4546
1.42309
10.2299
1.86375
0.384459
0.396606
1.93582
1.92305
0.395243
1.86468
8.38679
8.76363
8.75003
8.47114
1.89212
1.9793
0.409227
0.38774
2.00216
1.8835
0.402277
8.31384
8.82366
8.85473
8.17685
1.90876
0.389223
0.406966
2.06221
2.03536
0.399437
1.91713
1.85313
0.399958
1.88565
0.384324
1.90056
1.84971
0.398608
8.27427
8.6784
8.72218
8.1324
1.74457
0.338495
1.79172
0.35317
1.76002
1.78087
0.339302
8.41078
7.91987
8.47122
7.76659
7.53838
7.25931
7.53833
7.24621
1.83758
1.74452
0.333623
0.337826
0.334537
1.87794
1.72768
1.73516
0.332583
1.83913
0.334444
1.78087
0.331045
1.76954
7.77172
7.95556
7.94466
7.784
1.83335
0.358059
1.74057
0.346816
1.8331
0.344544
1.73353
1.8566
0.372537
0.358036
1.94224
0.361882
1.86
1.94805
1.97141
2.40567
0.401664
0.401908
2.21226
0.381571
2.10656
7.86214
8.79114
8.77359
8.01846
7.53036
8.35887
8.46346
7.30248
1.93232
0.378586
0.382177
2.08861
2.12547
0.37057
1.92214
1.87351
0.354893
0.380984
2.08026
0.364787
1.9706
1.9787
7.79925
8.62635
7.96787
8.58438
6.72761
0.797175
0.89863
7.37027
7.79306
0.823021
6.10337
5.88729
5.00917
0.662411
0.809367
4.12564
0.761033
6.78419
20.7519
71.7642
5.00922
0.69611
0.634868
3.59763
4.43215
0.727711
4.34113
7.404
0.910241
8.55682
0.881163
8.19787
0.845988
8.0579
7.45065
0.900645
7.53755
0.961481
7.59487
7.27027
0.95293
7.24195
7.29388
0.951708
0.916227
0.938834
7.47366
7.01309
7.36254
0.853535
6.74651
0.9101
6.99537
0.908026
7.43537
7.28336
0.966022
7.1795
0.936394
7.41285
0.968097
7.04905
4.73943
0.761475
0.830633
6.85955
0.730701
5.44069
6.33691
3.45992
2.57412
0.507555
0.558307
2.77742
0.585838
3.12682
68.8224
17.435
16.4726
4.19237
0.661091
0.549666
3.18294
3.33555
0.636391
3.79771
4.16369
0.779343
0.651898
5.35146
0.680329
5.83424
3.72824
2.3062
0.443643
3.13211
0.479974
2.78436
2.52307
0.422161
9.43268
8.82189
15.2839
7.27081
7.11704
7.12169
7.04081
7.37404
2.16786
1.83859
0.35094
0.374145
1.99619
0.372215
1.97286
2.02992
0.393036
1.96706
0.353573
1.87255
2.16837
0.377904
8.14111
18.7008
15.8555
8.86941
2.45391
0.462449
2.55469
0.412671
2.94431
0.411288
2.18888
6.28474
0.699973
4.33352
0.734278
5.75242
5.02376
0.781332
7.15516
7.25838
0.93628
0.918948
7.42135
0.881903
7.01443
6.83799
0.758585
6.28982
0.89111
7.24949
5.69966
0.835645
6.81962
0.791277
6.584
0.87093
6.52435
0.832625
6.76312
2.96568
0.495197
0.610626
3.85832
0.527614
3.07869
3.52747
2.71582
2.73313
0.441303
0.538486
2.33186
3.29592
0.494079
8.4675
8.56973
7.38756
9.70152
19.6916
68.1369
2.44594
0.43333
0.413488
2.26284
2.15219
0.457267
2.55814
3.38473
0.665198
0.627323
4.69788
4.14698
0.574649
4.07391
16.5152
65.929
15.6697
0.329897
0.346468
0.213654
0.207372
0.0796143
0.0715874
0.0342849
0.0360691
0.24997
0.305886
0.14501
0.113892
25.0077
189.342
10.6665
14.3838
7.02406
29.1725
63.7634
27.8751
48.9398
19.6274
45.8647
13.114
58.6113
47.1625
165.326
15.0657
11.7779
5.04542
25.1028
5.66167
33.602
12.8264
9.22312
37.1772
6.63665
12.2776
4.99381
14.1655
30.3593
13.329
23.0719
29.0863
49.4459
25.224
10.31
20.1672
238.388
89.0006
35.5344
77.3895
42.9412
75.8667
48.6572
13.5351
20.3555
47.44
33.1348
29.0475
16.6204
5.94735
74.7225
12.4636
14.9943
170.751
27.401
71.8507
29.8341
212.824
82.8847
34.8275
32.087
29.2338
31.5513
66.9029
7.76137
203.308
11.9188
15.9364
221.024
18.7704
15.142
32.8419
5.29272
7.23418
13.4574
41.5094
37.9542
59.3205
30.4106
77.9447
17.4461
71.2575
218.992
35.147
31.5765
202.451
30.0519
95.795
50.2994
215.801
77.7243
198.388
16.9932
69.4796
29.4107
70.7718
74.512
7.77341
39.5034
31.6066
31.2272
246.233
14.9328
43.9223
89.9477
243.09
232.132
160.07
71.5731
29.0862
37.447
80.8119
41.2559
255.596
90.844
224.572
124.273
112.402
57.0533
47.4301
171.215
273.543
72.5793
529.447
39.0286
104.234
101.008
36.2511
41.0338
90.4472
82.641
32.3383
39.4146
913.779
101.291
355.916
20.1571
43.1415
18.6834
16.4278
78.2696
46.2258
15.8455
41.2018
98.6298
295.208
49.1659
760.797
68.7907
27.6056
147.998
22.5152
258.137
15.3376
46.1361
144.408
166.229
11.088
88.2432
17.1574
32.1783
24.375
24.3909
12.7843
780.341
74.2649
182.198
297.443
91.7006
102.469
111.296
106.383
44.7517
16.9913
43.1761
38.4283
43.352
112.625
72.9953
17.1565
34.0417
14.5706
35.9023
29.7164
37.3667
679.387
92.2965
62.3797
375.475
335.048
135.563
44.2625
54.5124
23.6796
70.9323
119.681
49.8221
130.898
124.397
186.745
282.654
144.945
80.8761
25.0396
54.1211
77.0376
150.8
52.6744
95.319
106.295
40.0193
109.994
96.6515
115.161
99.9243
40.6945
113.224
98.596
40.4559
60.2824
98.0883
101.694
39.39
93.6498
41.766
91.7475
109.343
102.111
114.689
39.828
35.1297
55.3367
92.8359
48.6986
84.9568
37.6836
31.9808
112.644
62.2338
39.231
77.0229
28.1473
418.202
937.555
132.801
135.231
285.684
88.0661
18.0679
49.4189
29.9675
77.5226
799.104
176.979
85.0133
55.4255
23.8822
159.584
85.9274
55.9652
31.9563
15.2652
80.693
239.668
329.681
17.5485
24.0739
101.551
107.69
41.3047
43.3106
94.3957
59.0626
99.1065
31.9397
79.8524
868.196
26.2176
21.8143
15.8504
48.5814
37.7728
17.8039
51.3786
17.1971
81.9042
220.493
38.0237
728.808
128.291
31.5417
49.4095
128.615
20.6859
42.6816
82.8071
17.0068
73.8904
236.56
87.9802
62.9455
318.864
122.026
758.088
52.4421
318.939
45.165
201.297
254.905
156.873
178.687
67.108
20.0832
143.841
45.0911
74.166
21.4324
127.997
41.0646
77.9917
35.2554
32.446
69.7785
234.472
151.493
299.904
760.145
60.3089
41.6202
16.7808
96.8117
19.8403
112.878
45.6472
125.398
154.623
269.381
33.9033
44.3522
115.07
43.8144
20.5012
55.011
42.6024
118.802
53.4348
107.799
43.4546
35.0829
19.691
40.5988
94.4362
52.0414
171.704
160.823
22.7731
54.2361
143.408
73.9788
70.6397
52.4397
23.08
21.9098
138.26
62.2186
50.2208
66.7806
51.2794
21.2961
842.418
93.0257
102.766
38.0209
96.0799
91.2367
72.2113
83.7472
36.5997
89.4148
87.3485
122.514
117.816
325.881
128.992
87.2279
74.4858
774.286
43.9783
18.2325
15.4719
37.9146
19.5061
39.7939
40.0311
47.4582
41.9951
29.8549
15.8734
20.6676
72.4965
40.887
107.44
114.261
14.4039
55.4277
273.171
84.206
76.5684
24.1636
23.8971
17.0783
336.164
92.7553
34.9212
18.6123
84.5365
30.1451
16.4045
101.478
40.4889
44.2232
36.8155
42.4297
17.0842
17.306
123.532
43.1645
44.295
45.108
44.9136
16.9647
26.1964
245.513
38.2527
63.0507
113.049
302.724
293.115
278.108
15.0113
88.9012
24.9976
49.9867
28.4574
27.5382
60.511
25.9455
284.961
61.08
122.935
41.588
241.979
86.6673
26.0422
7.78891
5.61141
12.4667
9.65861
14.6633
27.1717
263.782
62.1337
30.4495
32.4863
40.1275
31.5609
7.92587
16.8064
15.0122
19.7703
67.443
34.3427
64.114
210.478
26.2769
66.0856
21.2544
87.0321
19.7807
11.8859
27.3811
163.441
9.49595
20.6999
12.4159
5.99167
8.27772
26.6381
5.13572
27.3652
14.9011
14.9404
52.406
22.1638
6.90412
75.5398
12.1705
7.83204
34.5574
203.161
66.796
74.8184
33.6574
197.872
62.9181
15.2304
41.203
193.741
25.8126
23.4453
73.7245
6.62601
3.23489
14.3867
11.0645
24.3735
5.12448
4.04494
11.7485
19.7636
27.6676
20.0181
49.6322
9.57796
8.00784
31.8576
5.85382
12.9924
10.9802
22.5112
4.84484
32.0245
61.4838
40.786
14.9348
91.8139
26.1232
58.0747
230.851
22.8791
16.1623
12.7925
28.7376
79.2319
34.1197
17.5037
26.3657
13.018
140.729
9.56208
23.2208
67.2149
19.0218
54.3795
26.7912
28.8176
117.277
13.9899
34.6037
110.193
37.3194
53.2199
328.489
45.0751
19.6041
30.8858
31.8444
101.131
243.825
306.22
34.8033
101.119
57.5727
292.823
55.9953
102.932
19.6281
5.45181
27.2321
11.0539
13.547
6.94553
32.6269
31.5103
100.907
13.7929
267.984
19
27.6103
282.879
100.649
224.566
43.0275
33.0136
17.4424
12.4162
113.197
9.85644
54.575
37.2905
54.8121
38.2926
10.8973
24.9462
32.3666
121.283
19.3858
42.6039
90.2923
224.241
95.4067
289.276
17.3794
30.852
19.3045
51.5286
256.545
30.7592
7.06987
14.5563
9.68429
18.6836
11.1311
28.8984
297.564
42.3224
65.9379
38.3075
42.7245
199.491
16.1028
24.132
26.9712
32.3221
15.3646
40.5937
7.6445
8.99738
64.6377
20.4316
261.421
90.4545
70.2796
29.6336
96.5951
23.3949
72.8263
175.995
78.9408
21.6559
63.4246
22.1913
71.2307
20.1767
32.9631
181.486
3.86197
7.62301
12.3911
18.4224
9.11349
4.83388
5.9397
6.34254
35.545
8.68043
14.429
11.6248
20.897
5.32225
8.10165
69.9853
17.2955
27.0124
9.3064
14.0833
22.7549
21.2377
13.3937
31.4096
22.2134
179.95
10.6798
13.3252
8.29982
28.0284
5.96785
5.23756
27.5147
16.152
30.5657
72.6925
96.9336
24.6283
37.0127
222.232
70.0897
17.9486
27.9327
72.4137
8.69174
91.6812
9.80198
14.9582
10.161
45.2867
64.0757
22.9073
26.3759
13.4898
17.9765
8.71494
10.6924
19.8255
44.3563
30.9356
7.12423
13.934
16.9413
35.6596
32.492
7.79396
53.599
9.79011
11.9643
33.5126
145.691
51.0233
81.9198
21.1149
18.4469
35.3271
313.588
106.002
12.6474
34.3479
5.59321
10.5175
17.4612
22.0103
13.0231
6.65736
8.05985
57.4097
321.994
36.2485
106.24
35.2589
128.349
357.778
67.863
37.3086
128.417
14.4785
20.2534
40.7225
11.7132
64.7393
40.3493
17.7767
131.55
24.9928
27.0799
27.3564
8.29133
42.774
16.0059
21.8234
10.2175
45.5321
13.1038
15.8744
172.957
40.7518
19.5008
49.5155
12.1867
14.1813
57.3737
200.182
22.745
21.2878
54.073
14.625
73.7752
17.3817
17.0814
11.4341
17.9952
62.8124
27.9391
155.525
30.7155
52.0601
44.9322
193.168
195.19
156.697
677.47
50.3882
275.954
83.2688
74.3329
19.1079
68.223
252.876
27.5587
46.9217
603.355
28.2837
13.9545
16.2669
48.9839
14.117
42.5693
35.8131
54.5513
15.1195
7.75349
16.1504
14.3664
57.7291
15.5869
186.608
28.3232
37.4549
145.501
22.6181
91.5539
14.3724
45.9971
15.6262
17.392
161.629
215.622
43.8524
40.71
234.685
39.3434
17.8023
219.569
51.9862
42.4546
16.8163
197.177
27.6526
66.5936
32.1081
60.6467
25.7565
30.0169
23.2517
64.6258
27.1268
741.582
46.971
16.7851
88.1132
592.613
230.33
50.2247
35.0419
170.808
37.4767
186.758
188.735
201.642
42.1031
35.2597
161.934
33.7812
135.703
132.054
155.318
188.661
182.691
38.631
51.4489
156.736
41.0689
46.596
51.6569
18.5194
62.4601
17.1958
16.4015
40.4486
53.5613
187.756
188.365
209.789
221.26
32.2975
109.586
36.9532
37.9027
32.9573
11.3144
13.7257
30.7513
27.383
28.2054
14.1772
11.0863
11.4925
31.616
28.9656
14.8264
28.7485
14.4883
11.6088
68.417
63.9806
206.647
202.418
81.8652
49.8597
31.9888
16.828
32.7564
79.8824
50.4109
680.422
33.5078
50.5461
86.0692
35.7725
52.4553
17.3495
88.5484
34.8152
51.6375
44.9716
54.5708
217.03
43.0529
56.3784
59.9271
34.7433
83.7381
18.5548
19.1685
89.8296
57.4531
281.34
714.005
249.884
235.33
47.8586
223.748
59.0229
57.6559
71.6389
10.0069
12.8758
22.3332
26.0174
11.5396
10.594
23.93
8.87759
79.4115
18.0745
12.8015
20.1431
19.9577
6.89106
16.7929
61.8185
27.1603
42.3973
16.7827
53.4429
18.7731
15.0332
16.0472
37.3724
46.6557
49.064
16.8136
14.5533
29.5632
58.7545
16.3236
8.14413
10.7496
70.5693
16.6018
165.485
180.533
31.0643
172.588
43.5422
47.4068
24.7003
36.0523
53.2427
191.68
38.1549
51.8058
41.3135
14.168
12.3225
29.6754
13.3689
45.236
23.2534
44.541
78.0347
251.15
72.7494
60.4143
51.3205
36.4398
14.9838
16.1315
56.2625
15.8046
35.94
203.196
192.091
40.891
53.6003
214.473
56.0667
38.9237
48.9577
14.6272
15.6456
32.5003
14.9333
47.2482
34.3912
12.9179
38.4739
31.0863
13.7526
40.8639
14.2793
12.6859
14.5631
16.0416
47.0183
34.1326
46.403
14.67
15.7559
25.3568
25.8083
680.851
82.3111
82.1632
31.9381
171.694
185.411
41.5449
14.8619
12.2699
27.9285
13.8894
31.5298
32.8311
145.593
101.457
30.0303
88.0646
36.1081
32.4172
34.3014
203.721
29.3394
30.243
189.399
191.812
78.4909
50.171
31.9361
16.6669
79.3583
31.6113
49.7233
212.364
31.9738
31.0119
77.5671
30.9986
49.062
16.5699
76.7413
31.3316
49.4829
55.7522
16.3917
232.437
22.4968
61.4696
15.6656
196.381
29.126
12.1992
12.5167
26.8759
11.9464
22.555
32.0049
60.1448
235.913
650.374
39.199
80.6586
90.0493
51.8335
21.525
15.0528
174.429
15.2465
181.643
49.87
6.3879
15.3978
53.9928
11.2481
16.6963
6.32066
11.5154
6.55453
55.9526
17.7999
12.1846
6.67273
17.3371
11.8527
29.8986
11.1379
71.3523
13.7124
50.9109
36.474
9.70841
291.639
312.895
111.867
68.0848
16.0167
9.9711
4.53302
5.4166
5.84996
11.0636
15.2865
25.7669
7.77328
16.3409
5.47413
21.3326
7.18541
15.8708
20.6967
11.3512
28.6335
7.14196
35.3513
7.92143
24.5728
32.7848
47.5122
69.9031
45.2135
141.521
113.546
127.267
332.54
7.56553
21.8274
24.7535
11.9604
16.7625
8.80896
9.91105
73.8051
12.81
27.551
126.73
16.8787
51.1968
329.807
49.064
32.8121
8.6557
13.488
12.2284
28.3081
56.1524
309.067
36.8677
8.98239
7.4345
25.7277
10.7193
29.7341
20.9967
117.116
24.4541
20.6237
18.0843
138.532
11.6489
23.2239
36.4655
56.2788
29.9344
14.686
16.6311
8.52898
14.0123
7.20808
24.9243
6.50673
20.6854
9.92649
10.7849
23.4279
42.1943
12.7852
32.7721
9.49493
15.6556
7.15904
13.0265
5.63283
20.417
8.51168
5.09954
23.6907
9.4403
22.0986
14.3164
79.4498
14.9271
8.59297
28.5277
10.9005
25.7618
49.7135
98.5429
14.5232
17.7643
33.8775
29.2644
6.34551
5.50818
11.4042
16.3171
7.6119
18.4634
109.919
81.5423
61.089
26.8062
17.4256
15.7999
315.416
93.7604
39.6257
9.25827
16.9737
63.4608
11.012
27.1616
109.793
25.5277
6.45464
21.3558
10.9571
16.5577
9.5268
33.6333
314.608
40.231
57.5447
110.656
19.7686
20.6103
5.36745
8.56599
6.33581
14.653
29.0654
43.0547
25.298
22.4997
31.9491
303.148
27.5611
8.70811
10.7329
51.1359
7.50165
25.9357
34.8429
61.4262
34.7574
27.0996
88.5258
11.1503
35.5305
22.5465
6.49079
7.44092
42.9552
9.35293
25.3263
42.3566
30.7094
22.4084
299.73
14.7182
10.1097
24.9075
89.8772
8.9433
15.4956
57.6635
6.98243
20.3214
11.1426
33.8463
7.39192
10.223
24.8889
6.23028
7.68047
14.5233
26.1028
5.47484
9.43123
16.9422
12.6885
27.0658
6.37794
5.2006
19.9989
15.8152
4.87883
34.4175
63.0571
85.2528
27.5621
23.4028
18.077
90.9562
26.0644
16.1388
27.51
11.7266
113.51
62.1579
18.7076
15.9368
328.242
330.546
119.258
356.079
56.7643
110.527
32.0883
107.868
64.7016
27.7501
24.0239
305.748
42.5714
282.882
23.5527
13.1165
53.0861
75.2191
139.987
15.4874
21.0694
49.7225
365.177
72.404
136.788
36.1912
77.1174
21.7425
370.968
21.257
30.7094
34.0578
375.121
47.8759
36.3002
76.6218
7.72135
15.9161
9.0994
28.0489
6.73733
19.5072
10.5762
8.90318
34.254
25.1669
14.075
27.2411
12.9528
9.68667
70.5203
47.0627
33.3724
131.825
36.2833
16.0272
12.4275
70.7395
53.2439
18.3864
44.745
26.8628
312.906
24.6471
348.449
26.4116
17.3891
134.906
77.0443
28.6572
14.6482
32.6639
11.1187
54.6017
10.4591
42.7152
16.426
22.1329
23.4088
46.9888
380.635
15.6194
74.7106
36.9466
13.8165
22.0193
8.07142
34.9027
10.9343
9.4753
32.184
22.5239
145.114
38.5747
111.217
26.2206
33.0029
13.7888
144.947
28.853
37.5792
30.6143
13.2502
41.0211
14.8445
17.3573
25.9013
11.051
66.4575
9.66293
9.73652
13.5773
6.83235
48.8892
14.6427
53.9964
13.089
7.15579
10.615
50.1948
23.9318
26.8064
21.9042
11.2206
16.0897
11.2251
6.50321
11.5199
40.1962
38.844
6.59626
11.335
30.9852
14.0776
188.164
41.8506
39.7477
151.018
14.74
716.049
121.342
86.5987
57.9901
7.30068
14.0425
13.3573
53.7554
14.503
14.6832
30.7148
125.59
40.4243
13.8546
137.813
29.1038
14.37
268.763
48.2423
227.635
54.7
140.209
126.086
26.686
51.5199
202.119
210.623
28.5532
656.096
30.6573
53.9397
237.963
29.6055
56.9756
22.7602
48.8892
175.737
196.635
22.142
40.4548
46.3234
42.3957
6.52445
13.1995
12.4807
49.1573
11.9823
11.2389
22.9057
11.1493
15.6349
46.9407
48.2938
11.2441
22.5546
152.749
31.1494
32.2944
145.888
23.1054
85.2315
12.6699
16.4971
26.2013
51.2786
11.2608
159.934
41.5281
196.929
32.4749
13.1964
26.1164
13.1438
40.1985
13.3513
25.7669
13.0359
41.2435
27.5139
135.993
28.0988
137.733
40.8089
41.6082
141.57
29.1811
28.5333
42.1708
139.515
13.0932
39.9035
25.2119
12.8637
25.4672
12.9442
12.9888
153.946
158.029
136.407
28.7052
40.8445
137.183
40.6788
122.094
120.547
23.1179
33.8205
11.9492
11.4228
12.0073
22.9894
33.9985
135.332
28.4646
40.269
40.4972
134.511
23.2788
12.1314
34.3554
11.4724
23.4088
12.0596
34.1324
13.6441
26.4917
13.2274
41.38
13.4701
26.9809
13.3722
43.6842
31.5808
157.291
30.5207
149.962
45.0042
43.2234
143.916
29.5899
30.1396
42.5426
146.916
13.8321
42.1052
28.5656
13.7601
27.5332
13.5483
14.2182
147.451
146.046
10.7516
17.4245
35.7451
9.77707
33.8012
11.0174
9.42528
12.3632
23.2395
42.1491
11.017
44.45
12.0234
11.7092
12.609
12.4146
23.7249
38.6718
24.294
12.3391
12.5788
39.7706
26.7817
134.608
25.1872
40.5166
132.178
39.0523
120.466
21.6529
23.6212
128.904
37.0194
12.7484
39.0312
24.9701
12.7682
12.8834
24.6642
12.6787
131.196
129.074
131.073
27.2926
39.2911
130.031
39.5848
113.553
114.809
22.563
33.4142
11.8068
11.1582
22.7092
11.7368
33.176
132.507
27.5779
40.059
133.373
39.862
22.3586
11.5838
32.762
11.0691
22.1934
11.6491
32.992
139.124
140.943
11.2077
12.0971
22.7129
36.533
11.8628
11.8172
21.2072
15.7599
53.4398
248.499
43.9274
57.1745
47.9454
14.5142
25.9232
110.737
18.3744
690.538
74.7959
33.8939
77.4265
10.6364
36.0145
11.4063
19.1162
11.6024
19.9626
10.3099
9.14779
36.0248
23.7889
10.9425
8.46733
31.6902
12.0175
7.40088
28.7312
6.40115
14.1357
5.70619
8.34535
19.497
7.0898
5.20166
17.2655
14.6599
6.54647
5.52764
21.3002
15.9303
99.056
62.118
21.7337
15.6631
51.7283
23.6309
10.3509
23.0139
7.1046
21.914
9.40604
7.84312
29.2136
11.3538
8.7365
39.5959
28.1504
11.546
8.4742
31.9486
6.95816
22.948
10.4456
27.1698
9.0979
7.92437
25.0304
6.09402
7.32312
23.0827
16.9042
7.86305
5.658
17.8877
5.04379
6.76201
18.2533
13.404
6.40221
5.31658
12.3673
20.3094
38.0146
38.7648
19.9989
42.7794
12.9239
160.186
36.0912
43.3671
157.443
12.755
20.4872
39.7906
20.8007
39.1628
42.467
153.505
35.6773
12.5275
155.726
41.9516
12.6559
142.333
131.308
23.6406
13.9992
10.2576
82.4717
28.0915
9.15598
46.8626
62.1817
11.2988
7.94979
12.2625
23.2014
12.8674
46.8564
13.0587
35.9714
9.01251
9.87022
15.2658
32.8908
8.3584
578.683
53.2285
87.2903
206.338
151.623
155.917
17.4444
9.94518
39.6189
11.2576
17.708
39.1753
9.85548
33.6998
38.7215
11.3463
128.307
31.9244
11.9254
140.161
160.178
157.703
17.0687
37.9082
11.0904
9.49101
38.6983
16.5264
9.69578
19.2365
37.1306
19.7009
35.5403
40.2003
11.8727
33.6947
136.777
145.231
12.1411
38.4214
40.8812
151.09
12.4014
34.1899
41.4751
148.639
12.2625
18.6561
29.2794
32.7735
17.4574
11.9247
10.3874
19.4607
41.9059
10.6286
44.5106
11.702
15.1585
8.09984
9.69321
19.1834
11.8785
8.76019
59.1233
93.3056
21.6091
101.683
22.168
105.654
104.425
20.2087
31.8837
99.4928
10.7398
20.5224
97.9052
10.6246
103.314
22.6792
109.222
21.3954
31.8089
8.33426
10.0911
5.01077
10.1729
31.4929
8.4066
19.9032
31.4791
95.2217
10.4074
96.356
10.5055
19.6806
32.3613
10.4239
8.77154
5.12484
33.385
10.299
8.59743
10.8888
12.2701
28.1752
10.7301
11.9923
10.4408
10.9104
10.5312
9.48856
11.0834
26.9898
11.6038
10.4023
10.0992
87.4337
19.2586
64.195
172.239
196.942
573.527
18.2754
38.032
40.7026
11.3309
10.1244
17.9491
40.8775
10.0456
11.3822
40.5619
11.2719
40.1835
17.7791
9.92551
9.98883
40.3889
11.2251
35.9813
16.6504
35.6099
156.586
159.269
161.92
160.526
16.4896
34.5331
35.2894
18.9779
30.1909
90.7769
10.0339
18.8175
91.662
10.1025
95.7345
19.7418
94.8612
19.8646
30.6568
8.1759
9.93423
4.86731
30.9834
9.85042
8.11298
19.1622
30.4529
93.8155
10.2613
19.3702
92.7596
10.1683
30.4483
9.73645
8.04095
4.84247
30.2345
9.79499
8.07133
36.1093
17.099
36.4505
166.51
164.476
162.134
163.467
17.257
37.1717
36.7305
11.0797
9.6652
17.057
39.3788
9.75247
39.7076
11.0231
11.1218
40.0906
9.86152
17.2119
9.7984
11.1698
39.8805
10.4637
102.091
22.0859
24.4573
30.7225
26.8749
9.56727
9.24303
10.1955
17.0621
39.4548
9.43948
16.7096
10.0528
11.2593
113.906
35.9044
30.6982
11.5196
34.2749
29.9153
9.07713
13.9806
36.4853
10.0798
14.7648
8.74352
10.3931
17.2483
44.1431
146.506
18.0339
40.6162
26.1965
42.1202
43.4367
25.7228
7.62562
5.53022
5.21575
22.1433
8.28938
5.08414
12.4129
27.2713
75.1391
29.6709
47.0639
16.9168
140.994
39.2497
39.6736
16.7434
119.709
121.67
21.1283
63.2035
12.9807
18.6331
40.5862
150.529
42.5333
145.176
9.35996
9.40465
5.2091
30.7936
8.75679
5.31181
35.701
23.8085
15.9733
25.2667
15.0622
36.6547
112.95
32.1121
131.084
144.542
137.164
8.73728
12.9548
23.0526
39.2124
9.02148
11.927
22.2642
8.51136
9.80577
33.2626
13.3694
13.4635
9.84974
8.47471
8.58437
13.855
10.0521
33.6431
8.69338
13.6098
9.95001
8.701
38.2419
11.4846
21.7031
11.6521
21.9138
8.57316
4.48065
4.93426
11.0452
6.61973
5.03465
6.72874
4.45685
4.59773
7.69058
7.23596
12.1634
5.34598
4.76119
7.03327
15.1608
27.8561
81.5321
82.0022
14.4901
129.195
31.016
30.191
28.5676
118.647
28.6116
29.1979
100.836
15.7438
90.5434
15.3112
33.3491
9.90799
16.778
10.2702
33.9755
16.5736
10.2197
27.1727
13.6718
27.8252
13.5664
120.354
119.225
33.132
9.86523
16.2344
10.1266
16.4008
10.187
32.8772
121.407
126.053
5.22026
10.0661
36.0642
9.32037
9.90656
9.14375
5.2675
5.09153
8.5087
8.82056
33.649
9.40192
5.02454
8.72624
14.5783
26.8835
77.0485
14.2921
75.6256
42.9056
23.4802
23.987
26.4188
46.201
24.7751
26.646
13.8761
73.9675
14.0895
74.6497
4.28562
4.80401
10.276
6.40206
4.7915
4.30238
6.31544
117.665
38.7162
27.8756
10.217
25.8174
139.798
35.0824
29.9012
15.9679
16.1843
17.4653
30.5764
16.5998
112.161
9.96787
24.7974
33.546
25.0484
33.9492
110.429
31.4251
9.18806
14.1695
9.42413
30.8298
15.0801
9.64853
25.9828
13.0855
25.7919
13.2045
115.305
117.179
31.9219
9.46841
15.918
9.96307
32.3375
15.6079
9.84989
113.721
111.687
59.0359
22.3655
44.1401
11.1822
456.25
61.5439
38.4189
22.7614
21.3732
18.4733
35.6536
19.4308
24.5206
13.4861
71.9035
12.6575
67.3156
8.48683
12.7488
7.44288
32.2873
7.61081
33.005
8.35613
4.32902
4.03875
9.35155
5.8224
4.39258
9.10863
4.01844
8.67727
13.0445
7.82323
34.8089
8.77639
7.74135
33.739
4.22838
8.77533
5.6745
3.90019
8.90396
4.1989
3.90749
7.37245
7.11507
25.1823
17.5753
24.8158
7.47654
7.0679
10.133
33.4641
117.388
35.053
36.44
34.301
9.88435
10.2819
37.6574
119.094
35.0171
37.1228
10.3891
34.648
7.28818
17.1586
23.1466
6.72714
24.285
6.97064
7.13697
110.35
108.72
18.45
29.8123
30.4685
31.3878
18.6882
30.9876
100.081
106.203
7.76582
18.5434
7.24129
25.6224
7.36848
26.3058
7.575
12.0518
57.6769
67.5118
151.266
21.2162
43.0041
40.2158
8.13718
19.0284
7.7411
29.484
8.97187
7.53218
27.4102
10.9573
38.3875
128.788
35.5848
39.6861
10.5567
36.81
111.324
114.047
34.1867
19.7753
33.1828
122.631
116.987
31.675
19.3782
32.432
8.17991
7.36533
31.9866
12.1677
8.26722
7.33402
31.6255
4.05835
3.77826
5.47332
8.25813
8.43729
3.79316
3.99893
4.1095
8.66543
3.84223
5.53545
4.13812
8.5751
3.83123
8.09246
11.8898
6.91153
29.6351
7.22064
31.0194
7.75775
80.8121
23.1928
7.99538
18.2544
19.2637
25.951
72.4657
19.811
12.6653
12.3967
10.1628
18.599
11.6444
87.0188
8.18758
20.1649
27.9318
19.8151
27.4184
89.2368
20.5478
5.78579
9.12879
7.03257
22.8378
7.99413
6.56839
18.2884
10.006
19.0506
9.82451
48.5598
128.322
412.666
29.9106
14.5953
10.2528
33.3359
3.95371
50.5507
5.25686
7.554
70.8883
77.9032
27.0464
16.6487
6.29091
16.2133
9.2764
47.5889
13.9084
100.713
13.3872
29.843
30.9353
94.8442
125.398
55.9775
14.7591
35.2549
427.211
24.4333
8.49052
9.21654
12.805
9.68228
13.4558
23.2368
19.9505
8.32497
10.9895
6.80781
10.8358
20.1909
8.25162
82.8586
11.919
26.5599
26.7161
82.2638
84.1588
27.1956
12.0332
84.7381
27.0417
19.6268
6.69374
10.5618
8.07073
10.6463
8.13207
19.4671
6.62345
7.54334
26.2926
3.9775
6.72289
27.2165
3.94139
12.8102
45.2388
12.9686
7.52643
25.3646
106.754
27.2154
99.328
6.39546
7.5465
29.8293
3.56859
6.6196
28.4349
3.5288
23.175
89.0071
22.7342
92.9693
20.6754
8.34014
6.9875
11.0376
8.49285
20.2976
11.2355
88.9359
12.6568
28.9766
91.1291
28.4182
86.9769
27.2546
12.3686
27.8518
85.1586
21.3382
7.0798
8.86581
12.0768
22.0268
8.67224
11.6608
3.31496
6.26353
3.20161
4.2804
3.38982
4.41473
3.29585
3.33364
7.19549
3.68861
4.69994
3.35872
3.58673
4.57774
58.5975
128.387
382.89
86.8823
7.61849
3.69119
31.9974
8.41201
31.0278
7.8056
3.64967
6.90968
6.55432
15.1113
10.6774
10.8777
6.73223
6.87237
7.11565
11.7261
15.8219
6.83215
11.4638
7.11513
6.81446
7.63742
7.45663
29.3487
3.86894
29.9044
3.85203
7.6066
19.122
24.177
18.6925
9.18345
12.2449
13.3092
14.4094
9.75331
14.0662
23.5471
16.7393
17.9838
9.71686
18.1291
4.02449
35.065
5.36572
50.9522
8.08934
6.06511
6.28355
14.4699
18.0063
6.41754
13.1891
6.21438
6.11241
25.8545
7.39566
10.3709
6.67384
6.73964
9.1439
8.21178
12.1775
17.4276
6.95995
12.7705
7.29758
7.3979
27.3694
19.4589
19.8477
15.4003
10.3781
15.036
29.7132
21.1668
20.5694
14.5956
10.1909
14.7085
3.24318
3.13849
4.1845
5.09199
3.25545
3.13416
4.16382
13.9885
6.13857
6.01987
8.74304
8.80198
6.17246
13.8752
24.3162
93.6026
28.9336
8.11566
92.4472
8.0777
24.6658
24.336
8.04415
28.7638
89.8489
91.3422
8.136
23.8955
14.0227
5.96143
8.83888
6.11829
8.78438
6.11799
14.1686
5.51223
6.30088
21.3818
3.43666
5.52969
21.2779
3.43551
8.79259
60.2288
20.2263
8.92671
20.0686
15.8753
64.0142
65.6553
15.5536
5.4214
6.21963
20.6007
3.33924
21.0295
3.3619
5.34651
16.071
66.9715
16.171
66.4239
13.5552
6.08044
5.9187
8.64795
6.05404
13.705
8.56752
22.8348
84.951
27.5089
7.69703
86.7083
7.78844
22.4236
23.4984
7.96249
27.9337
88.8429
88.2726
7.93448
23.589
13.2661
5.83698
5.90273
8.2412
5.96765
8.37899
13.0196
9.88833
6.58875
25.8397
6.7642
24.8926
10.2431
6.45778
78.5094
79.4081
16.8316
57.8868
22.0806
7.26187
63.617
7.49379
16.3364
17.4938
7.86944
70.1433
23.3108
68.1428
17.9172
7.70944
84.7541
80.7561
9.68185
6.69133
24.3535
6.31553
24.4994
6.37174
9.56881
4.54213
4.48435
7.0396
2.9505
4.16444
12.9102
3.04256
8.11881
56.4576
18.5877
7.96382
18.9207
14.7628
59.6361
15.0708
54.7091
4.97199
5.42836
19.427
3.23498
5.14607
17.6115
3.18878
13.8834
23.7413
12.9264
38.2713
11.6101
6.87169
9.17064
28.8887
7.78903
10.841
45.152
19.4473
81.5745
25.1369
7.46313
77.0808
21.2155
7.19464
19.9272
8.12549
25.1438
72.5767
75.484
8.60896
18.8255
11.0897
5.13703
5.67335
7.68958
12.1706
5.42258
6.82284
102.068
336.587
14.7607
17.6299
17.8709
22.9396
30.2934
22.0813
14.9715
18.5538
18.1546
21.3108
29.4551
21.6282
2.3544
2.64728
6.34382
3.35784
3.43744
2.70979
2.34506
2.41227
3.53779
6.48091
2.78431
3.51169
2.4182
2.76419
8.25256
10.9883
8.06004
60.084
16.3796
5.80408
18.2691
20.1083
16.9597
55.2639
64.0283
21.5415
17.5434
5.95019
65.3696
21.1486
17.3149
10.3936
6.83076
7.60817
2.57223
3.19044
4.05669
7.03036
2.61976
3.79969
2.96717
2.48651
3.61499
6.76304
2.84085
3.65061
2.47826
2.86457
11.5517
8.35795
8.45656
67.832
18.632
22.5734
6.26829
68.8222
22.275
18.282
11.7199
8.71186
8.58009
66.7502
21.7616
6.16542
17.7705
21.9609
66.1314
17.9565
6.70505
4.71267
5.75964
16.1127
18.5221
5.11873
5.86531
68.3762
65.478
10.808
18.4514
6.03493
5.5006
17.0532
5.31794
11.3039
10.0371
4.6471
5.33474
13.3589
15.1099
4.97161
8.92751
7.23011
6.16873
20.5613
5.60657
19.9408
5.47633
7.46794
51.9638
59.8705
22.0226
16.0774
258.64
10.2093
36.5064
73.8031
5.65034
7.57691
10.9023
11.4271
7.2396
8.3144
14.5272
9.44536
12.62
24.255
7.90578
3.39347
11.3015
6.27022
38.5061
5.98545
7.79433
11.3607
5.18189
4.95031
11.7618
5.09286
7.50912
67.9007
17.7753
18.6824
64.0235
8.51016
6.52007
5.60441
13.5154
12.7038
5.61761
9.26859
20.9532
2.79538
5.42208
4.74171
5.57
4.92723
20.0038
84.1657
35.1745
277.842
21.228
18.0629
4.86013
4.13045
2.32701
4.10446
18.2046
4.82334
57.3585
15.3648
15.5216
56.8006
6.59834
9.84559
4.45871
4.3441
10.0097
4.37934
6.53681
6.67439
4.45833
10.2672
4.51786
10.1549
6.73799
4.4231
57.7419
15.8161
15.6526
58.2408
17.9282
2.29177
4.03271
4.7426
4.05502
4.77605
17.7982
16.5307
12.4435
50.4662
4.11555
16.3435
51.0493
4.17144
6.64919
10.3686
6.85046
10.0738
6.51944
9.7613
6.43123
9.89129
18.6057
4.93808
2.4055
4.21442
4.97781
18.4385
4.24628
7.04438
10.9304
4.75118
4.72725
10.7162
7.18664
4.65109
60.3519
16.9739
61.6764
16.5251
6.90775
4.52308
4.66789
10.4111
10.5209
4.56336
6.83696
18.8815
2.49272
5.15721
4.43472
19.2414
5.07984
4.36028
59.5585
16.0583
58.9801
16.253
20.2897
7.37874
60.487
7.45997
60.8342
9.99326
12.421
9.95414
20.3713
7.53095
61.1618
7.51026
61.1441
9.77131
12.3179
9.88457
13.5088
3.63832
19.2965
5.56499
18.9335
13.7293
3.56618
9.48891
6.55375
3.34341
3.13545
3.19366
6.70423
9.22408
10.2719
3.26804
7.44047
3.34575
10.4254
3.23541
7.35486
12.5906
5.13719
16.1248
3.26015
17.6047
3.42373
12.0969
14.0211
5.8606
3.68831
19.4752
3.73854
19.6327
13.8708
10.8512
7.69916
3.36611
3.48775
10.848
3.38376
7.73253
14.1836
5.90669
3.78129
19.7749
14.1816
3.78563
19.789
10.6952
3.30307
3.44039
7.52245
3.34178
10.5519
7.62185
3.3941
1.55974
1.37835
1.89522
1.89584
1.56477
3.33985
13.9566
9.2158
8.77832
14.6235
16.183
5.95466
3.65033
3.98848
5.77751
3.89829
16.71
50.0621
48.6946
15.8462
3.75787
3.57586
5.52014
5.64078
3.81511
15.4758
3.49813
1.44536
2.01364
1.65464
1.973
1.6239
3.61948
13.5772
8.06765
8.51206
13.0234
5.8611
4.78552
23.7352
2.43765
8.30443
15.4427
2.28278
13.8681
35.6889
4.56858
4.92749
11.8662
45.1153
26.1185
5.06755
3.28311
5.93566
182.066
3.83237
1.82534
1.80121
2.28099
1.90569
3.53035
2.45746
15.0976
5.34429
3.59099
3.80971
5.46674
3.88029
14.6882
48.9146
47.2212
12.3615
6.98289
7.47115
11.7225
15.7055
3.85812
3.6723
5.41619
5.60853
3.99299
15.1876
3.62477
1.68824
1.79881
2.27072
1.8177
2.30759
3.52152
13.5707
7.58563
12.4514
8.54369
3.4794
1.78506
2.24754
1.65622
2.24147
3.48284
1.78359
11.3664
6.72487
6.82262
11.1861
43.4341
43.7848
13.5682
4.55501
3.52845
3.90706
4.64045
3.94465
13.4148
14.266
3.76275
5.22567
3.46613
5.17713
14.3615
3.74338
11.4262
6.94467
6.88266
11.5313
3.13725
4.88426
8.27262
2.1711
3.04035
8.54725
2.24141
12.8073
37.9078
4.85717
12.7642
5.01044
37.6822
12.1592
4.67802
34.8478
11.8533
4.79301
35.7656
3.58838
1.81895
1.70556
2.29479
1.83356
3.53766
2.3169
14.9309
5.39659
3.61874
3.89006
5.43656
14.8175
3.92193
44.8614
44.2544
12.2658
7.29585
12.0571
7.47753
14.6876
3.8056
3.56151
5.28224
5.35241
3.84719
14.5062
3.70278
1.79011
1.88702
2.39459
3.64788
1.90289
2.42125
11.927
7.05541
11.6989
7.21382
13.5449
3.31026
3.4954
10.905
13.0772
3.66453
11.4185
17.2579
51.921
5.11052
17.2316
17.6367
5.04874
51.2234
12.7127
2.59384
3.14121
10.8832
13.0836
3.11219
10.4977
18.0798
5.33728
51.257
17.6733
17.6023
5.49514
52.4405
6.50777
2.99095
8.64648
2.84049
8.40499
6.71575
2.92667
44.1457
42.104
4.53543
13.2043
3.15839
2.94318
2.96885
13.3664
4.48194
4.635
3.08866
14.1724
3.2151
4.78403
3.02235
13.6312
6.36655
2.78151
8.13526
2.84661
8.23532
2.87385
6.28438
7.88885
3.40595
3.18269
9.15539
3.68267
9.74952
7.20659
5.01555
3.83961
2.65528
2.51882
5.3979
2.51583
3.44714
54.1361
182.009
6.95397
2.47437
2.53129
9.19576
7.44705
2.47325
8.76348
5.85265
3.31795
4.77754
16.2364
4.09183
5.16434
27.058
7.29329
5.16438
5.07788
7.42296
2.75727
13.189
3.32663
1.54633
13.0309
1.54111
2.78132
11.1199
39.7791
40.0892
11.0197
2.71531
1.51068
3.28184
12.7723
12.8783
1.51443
2.70144
7.19747
4.96363
5.00807
7.13039
2.02321
3.17471
1.26102
6.02673
2.0426
1.25052
5.98953
9.65516
28.3257
3.39528
3.40475
9.66635
28.2822
9.68186
3.44357
28.4207
9.70407
3.42343
28.3644
2.63445
12.1987
3.17782
1.47229
12.4143
1.47838
2.6088
10.7847
39.3726
38.9619
10.899
6.91558
4.79476
4.82026
6.85409
2.66077
1.49546
3.20849
12.6498
12.5383
1.49253
2.67493
6.97809
4.90601
7.04958
4.86064
6.11213
4.52883
4.578
6.03583
8.25465
12.5741
12.2626
8.38176
1.58522
2.88802
1.33103
1.18774
2.91286
1.18929
1.58068
1.62276
1.22044
3.06905
1.36097
2.97815
1.64946
1.21541
6.19942
4.63631
4.62806
6.25408
1.90956
2.93362
1.16427
5.76576
1.89589
1.17198
5.77822
9.59976
28.1086
3.35575
9.59255
3.3412
28.131
9.59744
3.31327
28.1272
9.59822
3.32753
28.1045
2.36483
11.5094
2.69652
1.4287
10.208
2.50835
1.39831
9.27723
13.607
21.6593
8.66224
6.62181
4.74421
6.74188
4.71335
2.03297
1.25547
2.10302
3.51245
7.11626
1.30233
1.76061
6.47301
4.65271
6.33952
4.68287
7.37436
2.15565
2.0871
6.20481
7.3384
2.09902
6.23238
8.55259
9.88334
2.12687
2.18726
8.6242
2.09841
9.80031
7.43178
2.17305
2.1446
6.33617
7.49273
2.11834
6.28115
8.48388
2.05938
9.6304
2.15603
8.43164
2.07576
9.71294
3.47367
2.2734
4.86175
2.20988
4.83714
3.48666
2.27288
31.2496
9.04523
31.3698
8.98699
10.2585
2.21131
0.866129
2.35556
2.37189
2.24278
10.1133
10.3314
2.37746
2.26111
0.878751
10.3519
2.37927
2.26145
3.44678
2.20241
4.73347
2.24893
4.79447
2.26545
3.40197
3.51625
2.22011
2.27432
4.88672
2.27655
4.91326
3.50188
10.4459
2.31156
2.40236
0.893374
10.5101
2.38719
2.28761
31.6039
9.10554
31.5216
9.14834
3.54409
2.23333
2.30509
5.00708
3.57666
2.28799
4.95645
10.4054
2.37685
0.88206
2.26751
2.37662
10.3877
2.26899
4.4875
3.38553
3.28693
4.63743
1.14948
2.11453
0.933546
0.914749
1.78234
0.902906
1.21193
5.66418
7.16159
7.42567
5.5498
1.06403
0.855638
0.850462
1.35613
1.46147
0.859954
1.04028
4.40525
3.19342
3.23745
4.33885
1.27268
1.39948
0.939335
3.0386
1.30223
0.920454
2.95558
5.67084
15.1128
2.02885
2.08823
5.50409
15.5799
5.84
2.18526
16.4733
5.9683
2.14151
16.1068
0.983778
1.27139
0.783357
0.803376
1.28062
0.804912
0.979907
5.34017
7.00283
6.87869
5.43872
4.08905
2.91909
2.99833
3.99116
1.00011
0.828424
0.799113
1.30302
1.28915
0.82683
1.00521
4.17624
3.12863
4.25506
3.06829
3.50044
2.34383
2.52427
3.28891
4.66885
6.18507
6.12491
4.72122
0.855064
1.13528
0.681174
0.690196
1.14126
0.689227
0.856506
0.876085
0.714411
1.15465
0.69994
1.15635
0.87499
0.714073
3.59369
2.63344
2.59993
3.63764
1.0387
1.15197
0.739428
2.37602
1.03091
0.742194
2.40942
5.12973
14.4035
1.91136
5.20456
1.8799
14.1993
5.06261
1.84171
13.8078
5.00681
1.85918
13.9802
0.899702
1.19171
0.720587
0.741811
1.17825
0.905783
0.73905
4.81523
6.24499
6.29063
4.77508
3.75637
2.77216
3.8207
2.72517
0.883514
0.723579
0.707781
1.16141
1.16167
0.724135
0.883446
3.71798
2.67003
3.68415
2.69583
4.62307
1.79636
1.72566
3.63042
4.59451
1.73619
3.652
5.52623
6.40339
1.69643
1.62022
5.5727
1.68252
6.34918
4.66638
1.81058
1.76396
3.72757
4.70829
1.75031
3.68945
5.47673
1.65816
6.25127
1.6067
5.44146
1.66898
6.29306
8.12571
1.87946
2.63539
1.78492
2.59882
8.23495
1.85813
23.1725
22.5219
6.71282
4.55171
6.82906
4.4683
1.51668
0.66795
0.45752
0.58356
0.592246
0.677636
1.4753
1.62508
0.644266
0.742236
0.503986
1.64426
0.640276
0.738199
24.2979
24.6383
7.75956
1.70915
2.42052
1.73482
2.4837
1.77379
7.55749
8.35499
1.83611
1.90071
2.66187
1.91238
2.67851
8.31224
1.69449
0.776734
0.673077
0.526973
1.70883
0.669175
0.772457
25.1111
25.3506
6.94536
4.60209
6.90131
4.6341
8.40551
1.85178
1.94301
2.71977
8.46509
1.9297
2.70125
1.67608
0.655177
0.515643
0.75575
0.657807
1.66562
0.758903
24.985
24.8687
2.29267
1.63755
1.59612
2.35349
3.07537
3.9377
3.99597
3.02922
2.24997
1.54025
1.56549
2.21434
0.411245
0.550409
0.354111
1.02865
0.420976
0.345294
1.00515
0.677992
1.92499
4.10301
12.3836
4.28763
0.620936
2.08077
0.687218
4.39048
2.15697
12.5063
0.701968
4.3239
2.11145
2.92955
3.87172
3.81504
2.97483
2.11842
1.40671
1.47277
2.03482
2.13812
1.50915
2.17204
1.4852
1.59894
1.02601
1.07491
1.52371
2.58036
3.44806
3.38425
2.62843
1.87072
1.31487
1.29351
1.90437
0.323305
0.431801
0.257271
0.803442
0.318544
0.261719
0.81669
0.577536
1.84255
3.99729
11.4504
0.589083
3.95508
1.80744
0.569799
3.89745
1.75872
11.3593
0.563224
3.9277
1.78225
2.67892
3.48656
3.5127
2.65785
1.95516
1.36711
1.98041
1.35012
1.9414
1.32967
1.9258
1.34058
2.19996
1.50517
1.46354
6.82892
2.17657
1.47521
6.89776
2.95738
3.80897
1.54567
1.46795
3.07013
1.49772
3.67845
21.8068
20.6061
2.24134
1.52271
1.54007
7.35247
2.33061
1.49377
7.0201
2.90582
1.46544
3.58416
1.44941
2.87727
1.47816
3.61746
20.0053
20.2286
0.600236
0.314226
1.34208
0.442347
1.32259
0.606505
0.312689
3.41832
5.09382
5.15583
3.37219
2.70289
2.16583
2.75654
2.11861
0.404372
0.35353
0.296611
0.285936
0.285395
0.349997
0.409096
0.430144
0.305558
0.376327
0.318136
0.43427
0.304581
0.374273
3.54273
5.41711
5.31796
3.61514
0.570743
0.422266
1.26764
0.297255
1.27277
0.295007
0.574399
0.618365
0.45697
0.321906
1.35919
0.322944
1.37092
0.615652
0.453773
0.400887
0.325588
0.338635
0.461042
0.323589
0.397905
3.77535
5.85773
3.87994
5.65738
2.82572
2.19643
2.79245
2.22024
0.629203
0.466005
0.336297
1.45444
0.65191
0.330947
1.39454
0.445583
0.314313
0.328894
0.386851
0.314988
0.444201
0.388004
3.71556
5.4918
5.56222
3.6679
1.00347
3.02014
8.49533
2.98362
1.01719
1.43457
1.96073
1.97787
1.42201
0.995549
2.93097
8.40754
2.95729
0.987155
0.150537
0.623179
0.145263
0.267942
0.161752
0.133957
0.252475
0.176356
0.465587
0.346707
1.03651
0.336421
0.18318
0.44474
0.192051
0.376073
0.507119
1.1018
0.204353
0.3585
0.481795
1.36298
1.92827
1.8833
1.39733
0.915851
2.72869
7.73257
2.7155
0.923598
0.944876
2.87699
7.97715
0.969428
2.80212
0.765302
6.33705
2.10449
2.2285
0.736124
1.17427
1.66997
1.62993
1.20507
0.816718
2.45846
6.83563
2.39327
0.837779
0.111183
0.38104
0.0908143
0.199227
0.108084
0.0936503
0.203431
0.15491
0.423474
0.315709
0.959626
0.161132
0.306031
0.410213
0.149523
0.292812
0.390476
0.937291
0.145853
0.298335
0.399087
1.23789
1.69516
1.71379
1.22448
0.869319
2.60978
7.32873
0.884748
2.56131
0.858717
2.50018
7.21974
0.850824
2.52453
0.290885
0.238915
0.1721
0.22276
0.00904698
0.000994073
0.0101186
0.0087719
0.000902826
0.000919725
0.00773565
0.0202607
0.001141
0.0141438
0.012133
0.00115894
0.018145
0.00102593
0.0102586
0.00107
0.0141521
0.000911625
0.0161924
0.000955569
0.00850141
0.122326
0.0415516
0.0517897
0.103525
0.145845
0.112217
0.196223
0.0676302
0.00742735
0.000857099
0.000845843
0.00532939
0.00087328
0.00620006
0.0064303
0.1872
0.0339071
0.0222375
0.0315217
0.00754931
0.000816745
0.00303178
0.00188841
0.00078959
0.00195529
0.000762509
0.00178478
0.000755792
0.00222931
0.000732888
0.00183391
0.000733547
0.00200053
0.0191992
0.0777132
0.00547168
0.00732117
0.0185274
0.0210026
0.028647
0.0295792
0.020708
0.00816623
0.0133889
0.000889235
0.000965803
0.00792593
0.0141482
0.000868064
0.0427963
0.0391961
0.048549
0.0342216
0.0531622
0.0224377
0.129284
0.054284
0.103617
0.0559804
0.0997427
0.0613783
0.101547
0.00600869
0.000826286
0.00509565
0.000795207
0.00589874
0.000807652
0.00516289
0.244321
0.239741
0.180618
0.167496
0.00725428
0.000884578
0.00548581
0.00503189
0.000854855
0.00638853
0.000844744
0.010112
0.00105466
0.0113173
0.0102504
0.000970794
0.00879795
0.000978355
0.0090932
0.000919224
0.000904681
0.00675422
0.00754581
0.000930355
0.00833988
0.0763812
0.037256
0.0887685
0.0417601
0.00450243
0.000826061
0.000792436
0.00469687
0.00545331
0.000816523
0.00407085
0.155875
0.0735882
0.140338
0.0953428
0.0326459
0.191733
0.0424166
0.170129
0.0357121
0.0513264
0.0459867
0.0418589
0.0302047
0.0349735
0.0304519
0.038684
0.00400963
0.000772138
0.00456076
0.000765891
0.00460908
0.00399588
0.000752751
0.0950053
0.0729898
0.0971946
0.0573068
0.918767
1.12672
0.236597
0.220239
0.242598
0.28923
0.266629
0.267874
0.228891
0.239705
0.217204
0.25134
0.0191859
0.131193
0.185145
0.193498
0.0174894
0.165178
0.0214848
0.205789
0.197349
0.202624
0.176522
0.0229123
0.0358592
0.32184
0.267866
0.0400852
0.293925
0.248284
0.0305137
0.2212
0.225608
0.270813
0.232477
0.0267904
0.204213
0.186896
0.144283
0.158499
0.294016
0.148271
0.322357
0.164094
0.126271
0.0996317
0.139277
0.0877501
0.0757063
0.0941616
0.0720641
0.0896259
0.0591033
0.196403
0.0592225
0.166968
0.0356715
0.150373
0.354428
0.00869901
0.0419667
0.100086
0.086112
0.0643786
0.243039
0.229223
0.215835
0.2586
0.276814
0.127042
0.145807
0.273534
0.207345
0.244877
0.259223
0.182965
0.128008
0.129512
0.143666
0.143945
0.132718
0.135611
0.139978
0.128014
0.151418
0.149318
0.151642
0.147795
937.331
10.5037
20.8285
117.384
59.5301
6.18485
13.5026
16.573
85.0078
119.185
39.2899
39.1736
89.3734
0.596815
0.958804
20.0916
0.698429
114.168
0.418718
1.12933
0.985717
40.0186
79.1402
0.167074
0.152867
0.171829
0.213162
0.346864
0.204015
560.027
0.32961
357.515
0.643708
49.1891
0.179679
12.2942
0.488928
0.422089
20.0426
0.577734
257.724
5.63295
83.2504
9.34445
11.5678
18.4922
51.2384
5.46834
31.364
368.762
18.8493
13.8261
898.136
34.9983
106.511
1395.58
496.526
80.7379
33.1303
55.948
18.9853
25.5797
0.127871
46.8638
0.567729
0.47843
136.716
15.0952
1643.37
95.882
11.6353
50.8455
9.68482
0.547765
32.0069
0.321744
14.0236
0.398308
5.88884
1.26649
4.08912
0.742898
3.53707
6.91624
1.15729
23.3826
14.6025
8.69374
23.1123
7.28951
17.8014
2.57654
1.58656
21.3556
1.55958
12.3162
8.94092
2.08508
32.4994
3.13649
26.5526
10.6465
1.87664
37.6153
16.0964
12.9704
50.6434
6.41069
40.5565
11.4962
10.0323
7.32365
32.8379
7.85206
13.4595
23.4491
248.309
7.08787
14.9017
34.1261
8.72301
1.30086
1.05218
5.51684
1.74109
9.44308
5.64996
22.918
3.81683
3.26161
2.71052
26.247
38.1206
33.2949
22.3676
2.09095
5.01592
38.6139
127.863
2.99654
12.6649
7.98568
1.03214
1.88688
6.01603
1.62944
5.41514
8.93396
25.6088
163.586
27.5918
0.614053
10.6946
4.31821
0.372716
0.828947
3.16334
0.551636
0.277701
0.200335
1.1686
1.25683
0.259416
1.31101
0.21337
0.446423
5.86995
0.610686
2.10012
0.407508
0.650206
2.26637
0.34425
1.57214
1.4139
0.246057
1.47777
0.326039
0.242867
1.06352
0.654462
0.940812
0.752585
1.60527
2.40585
2.19843
1.83089
0.274377
0.159273
0.407487
0.155439
0.39097
0.271774
0.158732
1.40706
1.9751
1.98664
1.35168
1.28202
1.11597
0.934444
1.45546
0.75808
0.581499
0.514329
0.851333
1.27723
3.29619
1.20955
3.32103
0.35674
0.183272
0.582111
0.167633
0.795546
0.318291
0.164375
0.718782
0.466232
0.67101
0.487232
1.31178
2.4385
3.00025
1.36631
13.7344
15.8631
0.736162
4.07315
0.462354
0.654584
3.80009
0.546602
0.596223
0.466056
1.14506
1.80435
1.72627
0.416764
0.65952
0.450923
1.58687
0.260425
1.05327
0.389346
1.72819
0.299764
0.894693
2.79517
0.872034
3.23415
0.714635
1.00577
7.62515
16.4915
28.0889
3.11826
5.11042
31.646
4.17174
9.17789
53.1078
12.5731
8.06049
14.3979
66.3763
13.974
21.4869
7.79619
22.3913
219.127
24.7677
2.85434
7.68128
1.5293
8.56389
21.9251
2.57172
12.182
5.13889
4.40441
4.28243
9.33862
3.66352
31.1966
1.78433
16.5068
4.34488
10.1148
3.0404
100.977
18.1995
1.5404
2.40542
6.64235
2.68372
12.2212
19.2878
33.7626
2.93652
4.46506
28.2771
3.17346
41.8616
50.646
10.7671
1.13364
1.71017
6.25321
9.36075
1.84392
7.16322
110.228
3.53175
5.22717
4.64872
159.98
0.154738
0.252036
1.07152
0.777939
0.237953
0.73502
0.158027
5.27579
6.39535
2.07423
2.58138
1.51233
0.946814
1.80191
0.575927
1.15655
0.741756
0.446182
1.21376
0.545629
0.449077
0.994985
1.57262
13.1749
2.23421
3.30272
2.59117
0.663587
1.14396
2.55862
14.4246
3.65555
3.82356
2.74575
1.09157
0.531455
0.697471
1.06156
0.449043
1.12856
0.446104
0.459545
8.52524
8.36162
61.533
4.29365
2.27649
20.0068
3.05262
25.3757
30.506
8.75814
3.59825
1.31461
0.7168
1.16311
11.1019
5.97493
4.8164
1.94167
1.70239
8.49283
1.13258
3.70993
0.801662
5.80308
1.50779
4.75979
0.460059
1.17712
0.422155
1.23304
0.529381
1.06352
0.368498
0.774071
1.65199
8.52544
1.69293
2.07085
1.84244
0.657651
0.955881
2.48966
3.57209
11.5258
2.91875
1.11446
2.19649
0.374716
1.08275
0.907381
0.295979
0.961121
0.320853
0.328871
0.641315
3.23258
3.42483
0.415993
0.495694
4.41355
0.492796
0.672713
0.70709
5.10035
3.46945
0.704422
3.82311
0.585591
0.707106
4.1931
0.687353
5.11933
0.759293
0.594195
4.47057
0.569232
2.77183
2.91476
0.42317
3.27026
0.448662
0.476829
17.1083
15.3497
20.9418
423.795
80.1683
8.90798
1442.06
75.4891
34.4138
57.9452
413.636
18.7967
159.611
100.663
43.9209
480.118
17.4599
40.5338
75.5414
25.8588
399.34
139.149
0.304391
2.24977
0.293371
2.06971
0.329287
1.78026
0.284974
0.282423
0.305982
1.8213
2.25311
2.33164
0.279383
0.375655
0.324006
2.1348
0.319982
1.9019
0.325529
2.15829
0.289441
0.330125
0.293066
0.957795
1.07612
1.13456
0.320875
0.275294
0.444473
0.583516
1.87809
2.61597
0.464871
0.495832
1.863
0.42629
0.809829
1.12666
0.468199
0.427219
1.14863
0.469607
0.341014
1.67665
2.38685
0.381187
0.417741
1.80786
0.311718
0.213838
0.229143
0.690675
0.822181
0.590182
0.21546
0.206501
0.180193
0.618349
0.41399
0.161522
0.521276
0.171104
0.17916
6.19774
2.24515
2.46529
13.3213
4.05081
1.42091
0.826468
12.4409
1.43869
4.35518
5.31377
2.16848
2.14173
13.4931
1.43724
4.37675
0.871652
13.4419
1.55464
4.3793
0.273035
0.260573
1.29111
0.820452
0.282985
0.251687
0.848834
0.226545
0.232202
0.916782
0.523029
0.239649
0.220459
0.771469
0.20986
0.263896
1.51153
1.25923
0.240526
1.06597
0.226371
0.226635
1.35971
0.301531
1.64788
0.258875
0.263119
1.16475
0.187121
0.318803
0.162919
0.743703
0.179408
0.641692
0.190358
2.06948
1.20297
0.119825
1.43021
0.0898742
0.0696174
0.0901428
0.177879
0.521008
0.587113
0.0303216
0.0162797
0.0179275
0.0241034
0.759736
0.320229
0.741617
0.0428863
0.0348621
0.045212
0.0338939
0.0171409
0.0637341
0.0166601
0.0039973
0.00776982
0.00775023
0.00399681
0.0193907
0.0759409
0.0181502
0.00419255
0.00927094
0.00424974
0.00868665
0.0798837
0.257809
0.168012
0.0162244
0.0126658
0.00983754
0.0213962
0.136709
0.116297
0.148929
0.0177992
0.0166367
0.0177202
0.0164935
0.196596
0.235167
0.436945
0.0226966
0.0272919
0.0284114
0.0238655
0.0147335
0.0421429
0.0136666
0.00344355
0.00660333
0.00356387
0.00609428
0.014331
0.0405234
0.0134891
0.00335114
0.00601553
0.00337429
0.00586398
0.04919
0.0796721
0.0509133
0.0073399
0.00867998
0.00901088
0.00687935
0.0946449
0.0723271
0.0716371
0.00895152
0.0114533
0.0106693
0.00944365
0.115421
0.0900901
0.100179
0.0120896
0.0136757
0.0134814
0.0124459
0.0825011
0.0772148
0.0842435
0.0104434
0.01164
0.0116618
0.00999992
0.0488332
0.0830682
0.0483461
0.00522955
0.00737194
0.00693505
0.00567992
0.0786378
0.0392349
0.0511581
0.00462088
0.00562298
0.00627254
0.0042021
0.0107237
0.0232449
0.0107562
0.00235638
0.00381512
0.00238732
0.00363807
0.0117653
0.0215998
0.0152404
0.00347677
0.00560119
0.00569568
0.00329272
0.029262
0.0354954
0.0239797
0.00331482
0.00482249
0.00359469
0.00440736
0.00988018
0.0157978
0.00985011
0.00269158
0.00472463
0.00279264
0.00469566
12.6209
6.44085
24.4975
18.2052
35.1302
15.8795
3.64585
14.8249
10.4885
4.86569
25.8392
24.4026
4.0451
12.7226
4.81603
5.8844
4.45237
0.968001
3.73229
2.03498
2.52767
13.5839
33.7816
30.0133
9.88666
5.81886
10.4206
2.40093
12.302
44.3063
3.96234
6.85222
7.80299
8.23439
2.1796
20.2575
2.83461
6.42194
54.6293
16.2284
17.255
6.77337
5.4579
34.7508
31.921
4.23009
4.13625
37.0709
2.05888
1.61736
13.2442
6.51164
9.02237
19.9034
23.7002
4.09525
4.594
4.11297
2.72753
22.8796
6.87837
1.6271
3.25757
2.746
0.819904
4.63403
1.48566
1.24194
9.23464
13.5947
36.8075
3.64618
4.11477
2.06535
19.6621
1.59884
11.6215
5.45694
6.47023
17.3106
16.024
5.62298
34.9453
35.3144
3.12566
2.72668
2.17388
16.7531
1.29712
5.73349
7.3723
9.66944
16.3228
1.21263
4.74747
8.35379
3.70573
2.49843
3.15606
1.56167
7.77212
6.87518
3.94839
12.607
12.885
7.62501
1.9676
2.10831
4.99795
4.49342
2.56541
5.5928
13.2615
3.16405
5.16248
13.8903
2.8624
15.412
1.93174
5.92199
5.57889
2.76683
4.31361
29.5039
0.728677
0.469169
0.483478
1.40501
0.519338
1.73126
0.648187
0.786541
0.363192
0.843536
2.33011
0.459276
0.933966
1.88402
12.1703
5.30787
4.41443
1.36419
3.4185
33.5755
3.63824
28.8595
4.96412
5.34681
26.225
18.3874
9.73
19.2501
4.68968
6.59486
23.0644
9.89328
10.1459
9.77546
24.2041
12.1641
8.74409
1.11105
1.8101
1.85584
2.40057
2.8923
4.46601
4.68806
18.2359
34.9644
12.0597
15.7388
6.23032
2.99013
5.23379
5.25309
6.52774
2.07979
9.98611
1.91513
2.06241
5.84196
1.10081
5.52484
0.969698
2.35736
7.51204
39.3048
21.4278
7.09369
42.5285
4.92176
2.5537
46.9354
5.87722
7.32438
17.3044
1.96471
4.5234
2.22507
19.7253
3.65856
6.74649
11.867
1.74009
14.313
34.1176
3.36136
6.32196
4.2902
1.20075
12.0343
2.58073
1.56295
5.48416
5.24897
3.00201
28.5028
7.05903
9.31154
14.7524
38.9332
32.7653
38.485
5.03993
14.6385
15.4292
44.6273
15.5152
2.39598
2.8835
1.82167
6.62802
5.22725
4.34745
53.4327
19.3642
9.24627
16.5154
40.5579
12.1042
2.67945
8.8637
7.77562
7.06516
32.377
13.2924
3.75344
19.8709
15.8536
5.93019
11.6493
8.42543
2.27072
35.1089
4.47637
3.57067
1.55899
6.79584
6.11069
8.60071
56.5122
16.9854
7.81274
15.4394
39.2995
23.6684
14.6884
4.97104
7.49627
3.9189
19.6301
22.5199
54.6575
8.32022
8.5388
45.2655
54.8202
15.4992
4.66876
27.3634
6.34266
10.2929
9.00265
2.23672
8.22595
21.059
3.2817
8.18165
56.4112
1.58199
7.33806
9.6308
4.09589
4.29283
3.31129
2.00852
1.32236
2.08994
2.76785
7.11908
3.52669
1.10711
2.60339
5.57149
14.9421
7.82622
1.81657
21.9607
2.31589
3.79075
18.3037
29.0563
3.99494
8.03569
1.21122
2.85478
1.46291
3.18916
8.02405
7.6131
3.84161
8.21902
51.6968
3.05387
7.62723
4.76079
2.17694
17.8011
3.67394
6.94803
1.74895
10.5856
1.39631
2.65076
1.3391
0.581769
0.661189
3.73169
1.09226
4.80386
25.025
25.3758
8.16785
1.6509
1.22375
1.78719
10.2503
0.781383
4.43042
2.98696
8.29454
4.17879
6.20142
13.759
2.69836
10.9285
8.33978
3.99512
24.8865
3.42628
26.7858
11.0357
5.31195
1.35528
5.50667
19.2787
2.1324
3.78958
4.99748
1.33217
4.77515
10.8547
25.8567
1.77785
3.58253
1.88702
16.1936
8.82444
5.93899
5.8107
2.42692
4.03285
2.96751
10.2332
3.5855
1.73306
9.57237
3.7784
1.4654
4.74695
9.27804
8.49028
17.4314
3.31058
10.1915
16.5613
2.63998
8.41863
2.935
16.6586
8.12181
4.81127
22.5341
1.52286
2.24078
3.90714
3.59501
1.71967
0.760089
1.89285
1.44655
4.97623
1.72009
19.9501
4.22999
4.94177
8.64299
3.93346
7.00794
4.12979
3.71121
1.80485
1.77859
2.0026
2.95584
1.84691
4.53391
13.5102
26.6069
13.0491
27.0032
8.6396
3.75521
7.60163
2.93669
14.5582
4.90292
11.4646
43.7187
2.70167
14.4842
2.15196
4.48851
8.04093
2.90087
2.2002
2.27184
1.33578
6.22914
2.94143
1.25387
2.07346
6.26587
3.03789
15.1332
9.84074
3.83336
3.17561
9.02897
3.3089
2.26686
4.48846
2.99983
1.11645
1.1799
6.10218
2.11617
3.40475
2.89638
1.83013
4.47461
18.9075
1.30765
2.90914
2.27221
12.1613
1.4254
1.11337
7.93258
4.18456
6.73552
24.2727
4.11562
9.19519
21.9355
2.57512
2.51049
7.15545
0.888126
1.88159
9.88485
1.03349
2.75382
4.51244
6.216
1.07808
1.38028
11.7019
2.2078
6.41886
34.6406
11.766
5.15728
13.8987
33.8387
5.4963
19.2618
2.21325
1.68404
1.16454
6.24483
0.91458
5.48294
2.97542
13.3015
5.20066
1.46995
3.71725
2.91482
5.43176
19.4903
41.4512
5.28752
16.3826
6.40036
22.605
10.9651
12.6355
32.3755
7.49469
1.22435
2.21007
3.01658
2.54093
5.87607
3.36111
7.40358
20.4741
5.48943
1.78604
4.242
5.64435
15.0815
6.21768
1.9556
3.63927
1.70859
3.32423
2.72264
12.593
1.34533
5.13995
3.32916
1.54988
2.10605
5.56055
1.06443
0.853396
5.22571
2.06649
2.19551
5.43276
38.6662
4.46526
6.77229
1.92967
5.41729
3.21126
11.2939
20.8841
12.8661
4.84306
6.52853
6.69193
2.99287
5.70592
11.052
39.1787
5.76756
40.4174
3.70104
35.6473
14.1834
13.9406
8.0706
13.1153
20.7915
20.1877
4.4305
4.15748
14.2864
4.0627
13.0169
21.6324
13.4047
8.76248
8.31616
6.37582
13.688
7.70538
20.7715
3.92776
4.373
14.1049
34.6164
3.91923
12.5564
5.26835
10.9864
1.86827
3.0404
1.88965
6.10644
10.1358
19.3117
15.3448
24.5054
15.1909
32.5672
37.1675
33.9687
58.6769
3.43755
1.87279
1.8609
3.43577
1.92672
4.97346
2.99057
5.47683
2.58988
2.12715
5.24755
1.99669
8.28526
6.2308
5.63386
3.99185
11.7216
1.78598
11.5347
2.01492
3.74653
4.02337
3.50478
1.5022
1.50216
3.84044
1.55451
3.56847
27.6325
15.26
30.2487
14.5612
6.69369
3.95393
10.8618
2.4977
7.05631
11.217
2.24668
4.36804
1.76297
1.53434
3.65165
1.65946
4.70039
3.67201
22.7488
5.09821
15.6046
4.57992
24.9482
5.93079
16.3469
33.6059
10.5201
6.22082
5.7215
33.7308
56.2426
4.21695
11.7578
6.27118
20.4717
4.41218
5.82373
15.4259
5.73633
16.2301
21.5478
4.85097
2.09578
3.99331
36.1162
1.76392
6.24616
18.2688
11.17
25.8822
4.34688
4.48378
15.8082
32.6566
16.279
5.16428
3.01114
1.35694
9.99932
4.04323
1.46713
12.6201
1.94115
1.30256
2.71848
7.27342
2.6771
1.07542
5.19157
2.93572
5.75641
6.93348
2.39477
12.533
5.27487
4.18033
43.1518
15.0167
6.53967
18.6573
8.45762
31.8082
14.6567
2.47313
6.57907
10.0531
3.29275
4.85881
8.56245
26.4412
6.00024
4.81874
1.06354
2.62293
2.88824
2.10808
11.5316
4.20269
1.26682
1.7925
0.859985
2.25019
4.26963
1.54332
31.7315
11.8153
4.77757
5.03629
9.75212
6.15559
18.9128
29.5555
0.932636
4.4833
2.7161
1.67087
1.01409
2.28599
1.45296
6.1813
6.54855
0.738782
2.22728
2.18208
6.80966
30.8104
13.1189
4.26456
18.1588
1.66236
2.79553
1.45077
5.12005
14.3346
4.6723
1.44084
0.815687
1.76633
3.35664
5.04275
1.1643
6.31858
2.69451
3.07889
1.44003
11.6334
5.2746
9.77436
28.449
2.02171
4.14631
0.831893
2.07058
1.71014
6.80326
0.986721
2.07422
1.31728
8.55037
1.65529
5.01056
3.185
0.982951
1.89824
0.938874
4.43227
1.31502
2.42644
0.781718
4.44274
2.90503
9.92148
3.95228
12.6381
3.03958
4.03869
9.91597
1.65007
4.99632
1.59804
5.07698
1.68059
1.63636
5.89344
2.63713
4.17752
13.4122
8.3276
4.14857
2.31909
9.13466
4.77094
10.1473
46.771
9.84808
5.27434
28.1966
5.41732
22.335
17.9395
4.46372
4.62178
19.4374
5.80171
5.07407
4.64344
19.5893
17.1299
5.19845
4.64411
17.8564
3.70617
33.0086
3.90023
12.7317
4.10226
3.89333
19.8451
5.15982
10.8649
10.861
3.39933
3.92481
4.40247
13.4834
21.5867
4.15176
4.43003
19.2329
1.7763
4.556
1.5647
5.23608
1.52894
1.69862
5.79635
1.96033
6.78657
13.4147
3.01222
3.50134
8.10485
1.94905
1.84415
4.17835
6.88489
14.7338
2.05403
3.94846
4.57663
16.4246
10.0931
3.29149
9.4483
15.3917
12.8574
13.0838
25.0278
5.09952
7.49045
8.4188
43.8291
36.1496
83.4994
14.0194
2.02558
4.00527
8.29369
3.87372
14.0199
6.52965
16.5596
4.13875
5.31584
19.6276
4.39255
18.5165
16.7411
15.8399
15.5702
4.40352
5.10554
4.42367
14.8635
17.0852
7.31558
18.9834
42.7656
5.53738
2.98455
1.27171
1.94527
6.19698
5.24839
1.17614
3.51596
5.60073
2.99048
7.5172
41.1902
2.52881
4.95363
2.73003
4.04436
1.78555
0.927119
6.1295
1.08555
2.01519
3.77439
16.8419
1.71243
5.64858
3.23602
20.0346
1.86778
11.8062
15.8712
22.5207
7.8665
6.52231
15.5085
3.30849
2.03908
4.46913
3.70177
7.05857
9.10482
18.5071
6.26124
4.12747
1.91437
22.4751
3.67228
5.5439
20.0078
47.5316
6.96747
19.4681
51.2676
6.05353
14.2704
2.20045
1.09123
3.58377
4.99593
6.44364
1.24743
1.82383
3.08925
17.6952
5.15272
1.90839
9.35392
3.53981
1.59292
4.52899
16.2795
5.9834
22.3467
8.558
3.51495
12.8733
3.81845
4.34624
19.493
4.08544
20.7986
11.7154
12.9306
2.93498
4.02318
9.82303
3.99878
13.612
10.4435
13.4762
15.0743
4.9054
4.30835
4.27671
17.4972
14.0462
16.1811
12.3101
11.2795
60.0031
6.25161
6.22974
21.4032
6.95235
24.0195
34.8419
23.771
6.21898
5.35398
4.22752
26.6689
6.09984
2.50772
2.65804
6.91013
16.0833
0.942861
13.8787
38.1455
2.30439
4.86284
7.05261
2.87369
10.0117
5.11154
9.057
16.6688
5.30231
7.11521
3.66868
35.3353
0.799226
1.60995
4.23321
2.39317
1.3063
1.90398
0.972007
5.58473
3.39941
2.81928
21.0388
2.82225
10.3629
7.90098
30.4427
7.50796
4.81213
4.27704
17.9179
4.67569
0.929889
0.974654
0.837813
2.50714
0.810239
1.84402
0.910827
4.85279
37.7546
16.7342
20.3553
33.4929
56.4295
11.9444
35.2073
4.85156
16.148
1.36687
7.14512
3.13764
5.76706
2.64689
3.49254
1.69565
1.07861
4.93919
1.52425
2.11634
1.90294
0.90314
2.69379
45.0015
5.68914
20.0362
7.59052
14.277
6.06682
3.01333
50.9409
8.44172
3.44673
5.72966
2.40025
1.23811
3.8208
2.09637
6.9431
3.17955
6.48835
2.04703
1.50933
1.09428
4.21273
1.85637
2.82293
16.6723
12.2582
36.4855
15.0441
32.6746
4.0345
2.94193
1.98124
14.5445
5.69423
4.68427
5.75945
10.5822
6.92418
15.5794
2.50161
10.0737
4.40369
1.84308
3.20074
4.6942
19.5085
5.42395
1.65616
3.79674
1.27649
0.955847
1.73235
5.57036
0.780739
1.60682
3.52688
2.50333
40.7885
12.2605
5.09209
2.94934
6.97263
5.67069
19.4274
32.8158
36.3631
47.315
82.8513
4.14348
6.47896
10.277
3.20165
6.63131
20.8507
2.66355
8.84166
1.69022
4.73213
1.62105
2.84076
8.09653
2.32393
1.10418
6.14209
4.08601
1.75864
1.44016
6.8471
1.3038
4.8081
6.3092
2.30666
2.11717
3.72085
1.39679
1.13559
1.44458
5.21258
2.32029
1.80136
0.909211
3.13641
7.91532
27.8713
8.27558
24.4501
3.99443
10.5304
1.87103
6.33544
3.3794
2.26868
19.7617
2.88023
1.24131
5.48463
1.85316
2.92391
5.26241
1.23662
4.57296
2.52061
24.9025
7.04729
4.74938
2.49114
22.0585
0.979028
1.47812
2.18437
4.08292
0.961359
1.48618
2.20661
6.09717
10.7048
10.7507
5.0442
3.54147
3.33635
15.6353
10.9917
17.1414
3.22747
3.66044
6.43103
9.46182
10.3239
6.27296
3.91884
21.7309
12.786
4.27947
19.6376
4.32491
4.00572
15.9674
14.1039
15.6959
14.1704
19.7887
30.8429
36.3093
20.5019
4.8429
1.94354
1.94956
6.7383
1.80337
5.67709
5.62812
19.6566
65.8962
36.7625
23.1881
16.2882
13.5015
14.0299
16.7944
6.83514
1.55009
7.85548
3.43729
14.3191
4.04031
1.94635
9.0959
3.42911
39.6642
5.7514
5.21385
48.0069
18.9401
5.69523
22.549
3.78163
2.1452
18.404
2.00949
6.5513
16.7653
6.34014
21.1488
5.36041
22.1567
49.2346
18.6838
16.45
13.9294
13.9141
15.9212
3.47774
1.45072
1.40909
2.99459
1.519
3.02857
3.45312
4.42083
2.01992
1.89947
3.70237
1.81688
5.502
4.90106
24.3091
21.589
3.26356
2.6565
1.54412
1.83172
1.62825
2.8767
2.92763
25.2095
26.6189
16.3512
12.4443
13.5103
15.1767
19.8369
16.9314
5.5909
1.21254
1.49712
2.4387
1.98133
5.13591
3.2282
20.5686
4.53647
6.99752
4.21782
23.7654
17.3408
46.1579
2.72839
5.8832
3.58461
8.53915
6.88309
39.6304
12.5863
5.98969
10.2307
3.43519
9.11436
53.9217
5.22473
4.80633
18.1424
20.1744
18.9876
4.76745
5.37157
5.6662
24.4034
4.55686
17.1703
4.9395
21.7568
4.70031
5.26266
6.64701
30.5166
8.11201
31.0023
5.6486
1.25275
1.7702
2.50887
7.02106
1.04242
2.39785
2.93469
1.65943
4.59765
13.1147
3.55596
3.05926
4.79944
1.83991
2.72512
1.35191
1.52103
0.735397
2.8383
1.47097
2.84796
2.57473
1.35545
1.19199
2.80179
1.30732
3.18214
2.41056
8.91055
7.15552
20.0067
6.255
2.35845
1.06753
0.793158
2.31836
0.814971
1.17954
2.14484
6.56009
10.5587
13.0974
6.47742
13.0384
3.12643
5.27044
11.0541
1.62323
11.0807
1.72486
2.94541
3.56178
3.52359
10.0497
11.2669
3.30109
3.8021
11.5509
3.10667
6.12967
9.32644
1.8229
2.92679
10.4885
1.82134
3.73474
14.1565
12.9477
4.21007
4.06072
12.9935
3.75309
27.1835
17.3639
15.6128
37.9176
17.6819
2.65284
4.08612
6.06331
12.0811
4.39297
32.0056
9.91072
9.81796
11.426
6.78226
14.0293
24.6178
11.9869
13.8024
13.7899
10.7442
12.5765
39.6622
35.9818
1.30077
1.67377
4.201
4.58192
3.88659
1.36697
1.49963
1.29078
4.28494
3.43206
1.47037
3.66101
1.45819
1.32333
34.8963
15.5383
1.78985
3.37082
5.06452
4.92279
3.29552
17.2399
5.4727
15.627
5.24091
41.4914
5.86339
18.1018
5.74136
1.39755
4.56572
1.64453
4.22071
1.55731
4.05023
1.39633
1.34321
4.01704
1.31415
3.31677
1.25946
1.43938
3.71083
2.22623
9.91853
1.7216
5.59149
2.56664
8.56763
1.66162
3.33259
4.24911
17.7666
12.7163
4.37882
13.9709
3.03277
3.50013
14.5987
4.3358
16.9054
4.37159
3.66435
14.5109
1.99055
5.57948
4.46913
1.80187
6.78883
1.71667
1.86191
2.5653
1.44465
0.907296
4.03887
4.57051
0.983332
2.31727
10.8009
54.3591
16.584
5.07744
6.16029
2.16111
21.3005
2.44392
4.06184
43.1939
3.20352
1.66461
4.96154
1.17112
6.01754
3.27784
1.11583
7.84858
20.4181
24.6771
6.84453
8.06141
1.51082
4.7345
3.08664
11.465
5.86589
2.39587
20.6939
25.6027
20.7493
3.07943
5.67409
3.75363
17.5296
7.02447
1.374
3.89281
1.86164
4.48442
2.1592
6.12072
56.1376
24.863
5.82077
6.35521
57.9297
4.23426
3.45022
6.03534
2.21857
21.2294
1.99274
4.00625
18.2567
4.4028
45.8262
7.05266
8.91014
5.09609
5.33022
17.9961
6.4497
12.2886
1.73626
3.84266
2.64337
16.3776
2.93887
1.47194
5.40907
1.28386
2.01019
0.875242
3.85415
0.854931
1.34063
3.69555
2.1027
4.09626
19.2329
6.60374
3.7056
2.24564
6.21845
5.56196
1.01925
2.46927
1.43646
4.48199
2.90702
1.54201
17.0321
15.1601
9.14731
54.1233
2.99622
4.57577
11.2585
2.58908
27.0195
4.39793
1.04644
3.2234
1.69845
4.82446
2.93429
1.56867
49.1798
7.39509
23.6692
9.78338
8.12488
2.30811
21.4237
4.35417
7.21304
2.48817
24.1929
1.57146
2.83292
0.888201
4.57189
1.01767
1.4023
4.53562
3.31903
21.0187
5.81331
3.77717
5.1742
16.9841
2.64801
4.87383
7.61582
2.5013
3.99146
13.3557
3.64224
9.57034
3.4366
17.5324
3.84113
3.26275
17.3969
5.895
6.52193
4.73889
7.8644
6.58206
9.46432
7.05776
8.69527
14.8973
15.4564
14.2402
16.2337
14.7143
14.3128
13.235
16.2324
4.01163
4.44004
1.51809
1.31543
1.3647
4.3534
3.98849
13.579
11.839
13.0399
12.3008
3.93945
1.44386
3.97151
1.52933
3.83322
1.39663
4.17721
3.53556
3.15075
1.49995
1.5954
3.22965
1.53931
3.50226
10.1527
8.12867
9.27403
9.31125
11.3786
12.9013
12.0582
12.2033
10.5406
10.8461
9.99923
11.2868
3.65365
1.47497
1.60463
3.78614
1.5285
3.7157
3.67142
10.8662
4.18848
12.2751
3.90894
12.2521
3.93549
10.9485
16.5314
6.99185
3.07708
17.6759
3.27456
5.53512
19.8728
17.7649
17.628
3.87361
7.4418
19.6792
3.56571
9.89697
3.66782
3.32185
8.33061
8.9894
3.64634
9.84461
14.1124
14.1939
3.77792
4.34382
15.8586
12.9328
3.76351
24.6175
28.1793
9.2337
5.48437
1.66721
2.25287
5.20416
2.46964
8.38726
9.32944
2.80466
4.49077
1.62384
4.84166
9.0284
2.65014
14.9967
4.36966
18.1277
3.54611
17.2934
3.70167
15.0892
10.6007
12.6439
3.97177
3.70548
3.62011
11.3108
11.7273
7.30574
3.45905
2.78611
1.56754
6.27264
3.6909
2.88681
13.4609
37.0716
22.2122
21.0212
9.46349
3.74599
3.21527
8.46054
7.91004
3.43842
10.0967
7.96351
2.88317
1.59368
4.19234
3.96232
2.93584
8.52898
4.72452
36.6281
12.7187
11.3426
4.73253
12.7169
11.3366
4.52122
33.8704
13.1025
10.526
4.54373
13.0216
10.4621
5.35113
11.156
11.2817
12.3885
76.5766
18.6919
31.3643
74.3732
16.7895
22.2054
25.0987
2.92755
8.63473
11.5204
7.22809
35.1032
8.44465
10.4265
15.6117
64.8041
25.1728
20.4175
70.9693
29.5265
23.3904
16.2645
30.1754
21.6048
8.54124
14.5017
50.7963
21.7951
2.59578
8.04697
8.97553
6.08333
7.50087
28.7675
74.8498
9.13671
55.4787
11.0893
30.8941
1.9935
5.52558
7.6651
11.4829
4.92211
2.56044
4.35
2.85054
10.2783
24.3876
10.1703
7.68824
7.2869
3.5796
2.18018
2.63931
17.1179
2.80653
6.0706
5.27273
1.18308
9.86744
22.3157
9.35333
2.23685
64.5418
3.22688
6.08342
8.85433
21.1072
9.08002
2.49797
3.13354
51.5435
6.49687
16.4769
7.6412
18.4068
24.0913
6.12735
15.5282
7.55307
12.1501
22.4957
5.04667
38.6504
8.23352
45.6439
48.1302
23.6561
7.21505
30.8834
19.3264
21.9595
28.1021
67.4056
63.486
4.84604
9.64264
10.4698
57.726
11.3733
15.8832
12.747
78.21
37.4253
78.28
12.539
9.00787
24.1576
20.3839
24.8653
7.70734
32.3078
4.57922
5.07532
2.57214
20.1728
2.05334
11.8522
5.54198
6.59176
1.78658
10.1646
4.85743
2.28133
4.46369
17.9786
7.12174
8.09471
2.37781
18.3055
2.69935
26.6726
5.81542
27.5847
65.1093
20.5587
16.124
7.67309
6.38608
3.09761
31.311
2.68546
21.869
10.4595
3.015
6.23159
32.313
7.71107
7.83079
2.58286
10.809
4.01238
20.0199
75.5953
12.4845
10.8283
11.4207
5.52313
7.46313
15.0467
11.5705
4.9382
22.5261
20.6535
3.82183
3.07076
2.26232
15.8203
1.62725
9.706
4.99103
11.0808
73.0407
56.5757
33.9629
11.7428
32.3143
64.507
10.9257
61.4097
17.262
32.4093
75.4576
8.37115
2.542
7.967
21.2321
26.4669
3.03348
7.07677
8.02586
2.7097
8.16711
21.9935
2.97737
27.5348
6.89757
9.33472
68.0738
8.85304
4.02766
30.9165
3.37124
12.3478
10.4515
5.40771
10.5752
3.5575
13.1073
59.0154
25.2237
20.5958
38.0649
12.4338
71.3164
69.1855
12.2675
30.1301
10.6343
27.3107
9.68367
37.5346
24.2885
21.5215
5.62613
7.9649
18.0511
27.0598
31.8403
7.99179
9.24599
22.3013
26.9912
62.3649
8.45711
22.7392
15.1379
21.0668
6.60147
31.2665
4.19306
5.44876
2.29848
13.9818
2.10544
5.02944
11.3551
10.429
34.8671
93.0732
25.8879
13.3581
46.572
3.33404
7.68874
8.72754
25.801
9.16009
3.28114
7.8977
3.40336
13.0265
27.4677
9.3134
9.90561
3.82449
8.02229
8.02849
23.8168
18.9109
29.2301
20.3391
9.49582
84.242
31.3479
41.1997
24.0468
5.59902
7.45897
2.53531
19.2358
2.6147
5.18534
20.4816
18.5482
20.1616
5.11973
3.85337
2.23726
13.1139
2.00898
10.2531
5.80108
12.2625
42.5145
10.5841
64.4306
5.61342
15.0049
22.0921
19.5659
6.71494
11.2478
4.72679
10.7695
9.62475
92.7276
3.93769
13.1677
12.3096
1.79623
10.4008
3.09086
4.15037
1.62141
3.74062
4.64301
19.8848
13.3625
44.9374
73.2971
12.1824
10.4358
3.33404
40.7901
82.035
4.08373
10.349
23.8757
64.4919
7.47093
9.52755
18.2464
17.4813
8.88052
5.58457
19.8228
4.61735
5.22903
7.52873
2.21818
12.8994
19.2668
2.62734
4.68476
12.5927
18.5447
86.4926
5.57221
7.98817
27.635
3.19077
20.2377
7.32099
2.67715
10.5751
85.2689
30.5351
12.1264
42.0442
11.7375
7.76419
3.60753
39.5059
3.39848
29.2746
10.296
39.1267
27.9155
13.676
19.5143
7.21317
5.99561
17.5066
8.9479
6.13033
2.8109
20.6289
8.02408
2.94528
22.7357
82.7255
4.34693
5.76754
2.32808
12.854
2.26984
11.5334
4.56706
9.18493
20.8308
26.3108
8.4765
32.7425
22.3836
10.313
51.3417
27.0326
44.1857
11.0797
24.7132
18.2519
25.6807
47.0535
117.677
14.5198
61.4075
38.0628
46.5578
67.6764
119.513
27.3034
62.2099
19.697
3.66515
17.6066
8.32873
68.8657
4.41847
10.8957
9.16044
2.75609
32.0722
8.64599
5.62265
8.09277
6.45051
2.47613
61.5015
69.3087
7.93413
3.69319
16.3533
10.7365
9.20835
15.0977
15.928
32.2516
9.02387
2.75438
5.8771
8.08087
6.45166
22.7984
19.7035
6.83522
9.95348
30.6258
15.9813
33.113
9.39597
63.829
22.8927
55.1907
31.056
22.1449
10.8567
3.16184
1.83354
4.16346
3.87125
4.76501
8.41436
37.4421
10.9415
9.40789
17.3253
7.35911
2.30603
5.0434
4.63615
6.63416
18.9907
14.2757
15.9231
11.9368
141.519
14.1958
39.0102
8.42616
15.1538
55.3539
8.89478
7.98498
54.1029
26.1799
11.8496
39.193
6.01261
11.3923
16.607
117.377
12.3504
9.50356
73.1618
7.29529
22.2408
3.52897
17.025
5.37281
31.852
4.41032
11.2396
95.5536
16.8422
14.2487
21.1833
12.3888
13.7924
217.284
29.7895
21.1665
5.57989
3.32836
17.5559
3.22991
11.263
11.1383
2.63091
26.0702
200.658
53.5773
60.9304
20.777
57.0642
6.90395
70.0832
13.0495
206.442
15.4845
41.5683
37.6573
72.8364
105.269
197.481
71.0669
218.927
46.1114
10.3597
18.0715
33.0056
7.88339
3.20911
9.00749
2.89973
13.4422
5.71123
3.07695
15.1689
5.39884
10.6144
3.4427
12.5145
20.4282
3.48365
77.6892
41.7173
158.141
27.2353
152.377
89.3948
10.0647
10.1228
4.83542
3.78629
66.5641
10.8323
21.1421
16.8472
8.05182
6.79959
3.01095
28.4977
2.88871
22.4426
10.3585
7.48868
9.72
2.61702
21.1769
2.93008
6.2387
29.1761
28.5386
65.6042
25.3317
9.57121
18.1952
6.99231
59.5895
57.1691
15.388
9.13452
9.15943
3.56621
1.38943
4.33739
2.79555
3.44289
9.80138
17.183
10.4348
3.46794
63.3698
4.69098
9.79566
1.51515
3.33649
2.61037
8.00814
1.34369
3.98275
2.96354
1.72948
10.3292
6.67547
4.36658
2.14942
4.58744
3.61465
8.9733
14.5577
21.233
56.6274
34.1567
11.5164
2.81853
9.64697
8.47255
72.5678
6.71919
23.731
4.03759
6.02249
2.45804
9.05327
16.0617
5.77748
24.4865
16.5388
58.4845
18.8828
6.23422
31.4418
15.6678
7.34858
10.862
9.67179
3.1532
36.0371
3.69655
69.7286
8.75905
26.8685
60.9283
9.27221
52.0905
9.5904
167.622
203.919
93.1398
26.164
4.67807
36.2839
17.9042
79.5391
12.5423
7.19536
220.443
30.9553
62.9998
99.5634
14.1434
3.92897
12.4489
8.29897
17.7875
34.849
4.62702
191.897
57.1726
24.0327
15.5337
231.605
100.333
13.8637
30.8239
55.6039
20.2859
94.6369
8.69051
26.2498
14.3014
38.179
67.2176
14.1437
37.8577
17.8761
177.375
11.6519
34.0834
41.8623
41.7425
13.6531
91.7159
14.4663
78.7456
32.7736
10.9889
26.8741
10.2704
39.645
31.1089
47.3396
10.2049
11.3775
28.1798
29.8669
8.00909
24.7059
26.1009
9.54144
13.9454
4.38678
12.1706
43.3328
60.1758
4.75559
15.0935
22.5827
6.74933
25.5575
8.51459
16.1089
25.3699
9.57169
27.3329
9.22772
26.8561
16.9128
15.8565
6.90971
118.974
25.3034
5.86116
97.8228
7.89535
35.594
4.24796
9.62061
3.53842
8.98808
23.2647
17.3974
42.6835
55.9403
46.0437
15.6763
77.6351
6.72363
2.93633
8.86778
20.2613
3.2716
6.05992
19.0808
15.3202
43.2581
47.7789
43.5194
15.4998
45.5667
37.3017
34.1541
12.5931
34.0161
43.3188
34.4193
13.1432
58.9489
34.1407
54.5635
38.5603
38.5172
78.0181
15.0958
18.6398
6.03695
75.8917
14.8874
19.1751
76.6772
18.7255
14.7015
5.95781
76.767
14.6935
18.8501
11.3004
30.3542
33.7492
30.2408
11.2853
33.9413
12.1334
32.3061
36.239
32.2606
36.079
12.1464
12.0079
31.8492
35.3753
35.8446
32.5693
11.8268
12.2107
36.9203
32.4254
12.1957
36.7153
32.9917
14.9795
61.951
57.4538
35.0443
61.4528
16.3616
42.9685
113.889
7.41165
28.483
10.1175
3.33661
28.5627
7.28452
3.29818
6.03904
13.3828
2.49269
5.01613
5.35298
16.0381
2.52774
26.0187
26.5106
9.50669
4.05204
11.4527
34.8713
32.2027
3.96929
9.70202
6.98652
2.7891
5.2906
15.5066
14.1209
2.73988
7.45634
27.6202
26.7406
12.6413
69.6744
16.2384
5.33987
62.9752
5.20398
13.1699
10.5333
28.5979
7.3786
3.76666
27.9824
3.65201
10.6594
10.7665
4.10893
39.9385
13.8788
53.6301
9.86783
4.48994
7.76323
2.71162
15.673
6.1837
18.0258
7.38805
2.91295
32.6808
31.7204
135.724
78.2141
37.1859
17.5727
27.7211
122.378
7.22
30.8192
8.87935
3.99186
24.319
3.28575
9.90462
6.87832
20.0494
3.33119
6.01603
2.89121
8.2858
19.3527
17.1209
40.1049
39.6526
89.3261
55.6405
13.4688
36.5002
32.2469
12.6159
4.99624
41.5779
11.3302
13.9343
4.61606
37.2309
12.7977
6.03582
14.8868
113.597
4.86118
16.7965
48.2222
12.1107
35.1286
12.5015
4.40757
4.69994
39.3229
11.0415
38.5944
49.3189
12.3604
30.0346
11.1805
3.74474
4.50477
35.4745
10.876
41.2471
14.9504
39.8215
43.7112
45.1827
135.877
63.9928
16.3031
47.4875
58.9815
72.7247
43.3175
20.9483
104.633
30.6617
8.62033
68.0684
7.31328
23.9966
18.7866
7.16877
86.1215
90.8424
358.667
27.29
295.693
28.1373
372.857
23.118
432.886
36.6166
44.7233
37.2467
37.3987
17.0316
65.6068
48.8387
50.3473
144.217
16.1365
18.7746
5.88981
40.7767
5.84047
19.9901
14.2212
5.60359
112.219
233.446
17.5603
281.543
18.667
236.22
29.2243
25.3465
313.838
331.672
73.398
239.685
206.131
194.91
19.9297
224.064
14.0238
50.5208
24.3442
202.334
19.1424
178.445
10.3874
33.0277
24.9828
36.1301
14.8088
6.37875
5.83977
20.3358
20.7871
11.6293
88.4653
7.8793
70.3232
26.7907
254.082
28.9735
20.2139
209.143
84.844
10.1271
126.749
23.449
38.6245
238.128
18.6026
241.389
17.2663
18.5042
24.0847
54.7195
30.5
89.8935
65.6861
233.298
20.7697
21.9045
17.135
2.7466
9.32759
6.82696
7.11427
25.0532
6.06571
60.6864
11.8415
32.516
52.4625
12.7081
26.3456
22.3769
118.673
14.2323
41.0763
16.2872
24.9334
24.165
24.7561
3.10594
8.65252
6.53035
9.0734
23.5097
6.97372
98.4226
45.5455
26.2539
31.1483
115.421
14.189
16.8505
15.4657
57.5904
10.9928
4.62899
61.0898
4.67481
15.2794
33.7147
11.6267
114.254
14.5501
27.5096
18.0886
6.44583
15.1618
124.935
6.02207
24.6322
44.835
13.9567
12.6534
49.819
3.29868
12.6001
37.6244
8.69402
7.00729
10.5009
3.82318
3.18015
6.45307
10.4393
30.0195
3.10143
6.60004
12.952
2.70138
7.34486
4.8445
17.3812
5.71014
2.49279
7.65781
3.27967
6.97632
25.2907
10.909
6.446
3.44013
10.1609
10.1165
3.06205
4.36031
1.67244
9.98715
3.0785
4.3265
27.5825
12.1247
6.8901
6.411
35.3852
95.1765
20.3898
14.5133
24.6211
6.37009
12.5863
23.5791
6.46883
51.3707
13.245
48.7365
13.2448
11.9531
1.64013
3.26121
5.30124
3.0639
4.80221
10.2064
25.9419
25.4784
61.0143
60.3959
16.2286
26.4159
7.79216
16.2876
26.3242
26.8917
16.6945
7.86996
16.4986
26.6354
12.206
31.9086
55.0632
31.5461
12.8828
42.8697
4.82345
2.46192
13.4251
5.50567
4.78742
13.6991
2.45204
11.8908
31.2817
35.6465
31.2597
11.7954
37.1079
4.98427
14.3294
2.73309
6.16229
5.3283
16.2382
2.50778
12.9107
31.4958
57.7778
59.8158
31.2084
12.8578
5.38941
2.77443
15.7018
7.48714
5.41135
15.6472
2.76607
12.9186
60.5292
31.3889
13.0147
59.9126
31.1561
5.37438
15.1496
7.45256
2.7394
15.6196
5.3353
2.75585
60.4222
15.4464
63.546
16.5953
113.552
14.4288
56.4786
4.59856
10.4357
15.1162
53.7236
4.50343
25.2523
49.0668
11.274
26.5035
10.7978
112.312
23.6153
8.35864
37.229
9.79142
19.241
13.1371
4.06392
10.1063
37.19
49.3336
4.36341
15.0122
2.41675
7.16583
13.3422
4.78472
6.64782
2.49364
4.59617
2.08835
3.67319
15.1838
4.7363
5.80413
4.14845
1.93885
51.9797
60.4256
13.1716
124.569
5.89072
25.6759
15.4416
6.63584
10.6921
27.092
3.37381
7.1886
10.1098
27.5999
3.35511
14.6314
7.68775
26.4067
16.0806
7.22023
10.861
3.86387
31.8431
7.19145
27.6258
12.2544
3.35824
6.9213
21.5727
13.2706
23.6492
15.6139
51.7235
102.467
26.6959
27.8751
122.991
5.92812
22.3519
12.8136
16.4
15.2971
48.6783
37.1559
19.3865
28.5847
12.3386
178.025
174.247
188.162
13.7925
15.9211
59.7047
19.4634
97.2005
10.9373
7.90366
12.6304
29.6812
18.8111
40.0978
55.0742
51.5543
17.739
4.18436
12.9917
12.0161
2.65355
3.55966
19.7013
3.4542
7.44444
22.9036
71.2239
75.0935
15.5231
30.7659
16.422
4.40482
19.9626
4.40062
31.193
4.25608
7.81881
12.7186
4.35269
19.1558
32.5731
4.42311
12.6976
3.9995
8.0946
28.0801
19.7296
11.7527
201.574
26.1409
21.8813
12.4807
224.365
63.4444
58.6275
26.4533
225.874
15.6027
15.1375
28.75
22.5148
68.9632
68.0427
62.0291
64.5869
224.327
211.562
210.594
2.36035
11.7741
10.8202
4.03935
4.70847
3.24689
3.22094
16.751
12.4088
209.807
12.6971
49.6649
5.54304
54.6604
186.817
214.853
72.1319
18.6609
5.96277
3.26346
3.79252
7.88267
4.47915
12.7925
201.129
19.4287
5.16
20.0367
4.25849
15.0713
13.4869
4.80324
11.4351
7.56728
4.48
12.1238
4.48621
28.2168
19.7152
28.6967
37.2223
14.9554
284.053
188.525
188.272
16.4203
14.8086
75.4677
19.5849
118.665
17.87
11.4685
32.5999
48.8831
18.0776
77.902
68.3768
55.4779
26.476
5.36879
15.6378
16.1821
3.843
4.8015
22.9969
4.71395
13.9706
18.1923
256.255
209.167
27.4633
54.9686
22.6758
6.48546
25.3742
6.9561
69.0604
5.95046
17.2808
17.8759
5.86375
22.1839
54.8256
5.71074
16.3557
5.16006
13.926
42.1104
33.9865
20.1372
358.839
74.4152
35.1054
21.4267
353.315
90.7857
156.538
46.0775
413.156
25.9784
23.971
45.0569
38.1962
116.977
104.582
82.8003
75.9317
256.136
266.851
226.536
45.4457
23.005
384.881
29.0331
100.753
12.0848
127.377
330.512
31.9824
10.3237
6.1831
5.9227
22.6283
6.84024
19.5806
380.068
17.7979
10.3809
16.5479
6.72134
30.5435
39.2319
6.59292
18.6937
14.7097
9.14684
17.343
7.90803
52.3497
31.0523
46.2325
44.0809
193.162
198.538
211.304
16.2972
232.177
31.0412
65.0598
22.9937
11.839
4.69365
14.0328
4.89585
18.5869
19.3729
4.46108
15.4513
13.917
222.165
44.74
21.7731
50.3321
234.419
192.698
23.0472
79.5148
72.2309
7.85042
15.7807
231.451
17.0055
34.1452
33.0472
66.1158
14.8783
13.7624
5.09684
17.6116
5.02078
20.4741
18.2141
4.87664
36.3795
54.1067
96.8152
15.3526
73.4603
223.84
240.513
15.5843
235.84
218.426
13.6554
23.2142
24.204
15.4415
130.313
330.883
16.3977
61.5072
19.1201
33.7223
4.04119
2.23008
10.7934
9.59138
3.10983
3.06957
18.3854
4.96686
37.2715
19.3891
4.60827
4.07995
14.9716
9.06614
6.18517
73.2621
18.7075
6.88112
5.84376
16.1414
18.9727
7.80601
38.2378
7.03796
87.3385
10.1629
7.2189
33.3716
2.62432
7.42417
2.13659
11.1606
2.20332
7.90142
2.46078
5.67621
9.26762
53.7603
15.6472
9.27898
23.4211
4.05979
17.137
74.1595
25.243
59.9179
12.4346
56.631
29.2993
4.95863
71.187
7.0646
13.0657
4.32251
2.48836
9.28151
2.78002
5.8518
6.62538
2.54995
12.5671
9.55678
41.082
9.12495
105.255
9.61624
2.16477
3.29998
1.83258
8.04043
1.74991
6.77278
2.29441
2.99783
10.1128
10.0068
3.26296
10.3846
3.39618
2.88149
2.96148
6.84589
8.70563
18.6677
12.3364
3.01278
4.80087
13.2694
204.892
15.7473
26.6568
6.69537
21.4599
56.2094
6.47194
40.9211
15.5712
3.53778
26.7689
9.5815
3.42874
4.27285
3.66208
15.3512
12.1451
3.96314
12.5345
3.51773
2.38107
6.65592
9.69279
3.10791
4.55462
2.47177
2.98309
195.851
14.1978
195.205
31.4069
58.0103
23.0439
212.123
27.1832
62.1891
217.985
18.6876
97.8418
6.46702
23.0762
10.59
34.9765
19.0678
16.7542
196.105
284.689
51.3099
100.45
18.3592
250.179
12.7459
17.4464
47.1516
64.4659
55.3568
23.7714
5.83587
212.893
15.6185
17.1685
65.8814
206.873
197.883
188.196
45.483
19.329
21.7137
19.7661
5.11842
5.19634
13.7641
6.59858
18.055
20.6573
4.41014
12.0801
2.70076
10.0825
20.1461
3.65581
3.3496
18.3255
38.9044
209.401
109.351
23.5439
18.1054
6.14869
19.3114
65.3745
5.14249
20.679
15.5491
4.39407
14.2903
17.5196
312.935
19.689
51.0281
6.40005
31.9834
19.9223
7.65309
70.7936
5.83732
6.06517
18.3401
14.7352
59.6358
66.7352
20.3633
163.957
51.9374
32.112
81.2198
16.043
214.979
5.29159
23.0676
21.9925
6.92695
13.3786
6.00668
5.9447
18.0887
15.694
211.042
22.7913
49.4833
12.7924
17.3371
5.13613
5.06763
20.9411
19.1454
4.66722
18.8808
248.421
20.9721
57.4275
27.2964
26.8588
5.7435
57.6648
68.3143
14.2703
245.065
16.8222
9.08078
155.065
83.5971
28.6112
36.0103
24.1249
19.4284
4.884
5.03299
18.9259
13.2046
18.5249
6.36271
4.65054
3.85364
42.7657
12.1779
7.69756
3.87633
12.1286
7.66159
4.98498
50.0197
15.1925
9.3722
5.00405
15.1784
9.30332
94.3398
240.171
13.7675
4.50637
6.46241
3.53059
17.9557
26.7524
8.88354
7.20221
53.2178
8.69201
22.6331
2.06156
7.17475
6.27256
2.92953
52.3343
22.3272
6.67129
15.9023
6.42593
8.9414
5.74378
15.9733
25.1008
13.6127
7.61485
26.4004
50.2903
18.3921
22.8243
16.3655
48.2802
11.3468
2.56008
8.5195
2.43951
2.64286
6.54567
8.51396
7.12477
13.7298
5.09748
3.02981
20.5128
2.87389
12.4106
66.2082
23.9602
29.5478
43.5403
12.289
4.57264
6.316
30.487
25.7877
3.44115
18.4091
127.185
60.0368
41.7747
8.26085
2.21848
2.64583
4.33667
2.56936
5.6713
7.58942
4.74315
2.27402
6.57102
2.03981
1.95957
6.80758
3.75315
27.7991
102.677
33.2921
59.1493
15.2742
10.7138
10.4292
6.04634
5.63295
2.25768
2.22175
9.37549
2.02483
7.18023
7.4706
24.8974
37.8555
54.0948
20.7566
17.9956
3.1898
2.37012
10.4284
11.9204
4.35839
6.19229
36.732
10.0859
7.39658
93.7545
40.5306
8.50416
28.4042
5.62203
40.1518
9.10767
56.3806
23.4161
6.75479
21.9499
2.79963
5.83873
13.0309
22.8063
5.34677
10.0974
108.781
6.68121
113.406
12.4047
18.0303
11.9689
11.0057
46.3935
9.78923
6.37154
103.649
10.1734
10.9488
27.1034
22.6224
16.278
40.9352
12.9752
63.0162
7.92014
9.37266
81.6217
35.0535
30.3488
20.7708
8.29858
3.72467
35.0117
7.1047
14.0662
157.363
52.5347
13.9347
11.1362
67.952
11.837
130.061
24.386
4.18389
3.06445
14.6717
5.74087
16.3896
8.20325
3.30059
4.66047
14.5311
9.31915
3.24295
3.38705
11.7228
3.36114
6.65266
3.54454
16.5464
3.29842
3.64301
11.2396
223.248
10.5254
97.7414
14.9496
21.6479
70.851
203.679
21.0234
16.26
19.5829
114.616
23.8258
35.9001
11.9665
82.3515
9.03022
10.0171
25.0446
16.8767
41.7364
46.974
8.86052
17.6478
150.591
26.1283
148.548
83.4475
14.9255
44.5552
33.428
35.6803
210.701
56.1431
18.3354
47.5678
6.41108
8.11674
27.7724
37.4151
4.70954
205.682
91.0013
64.3986
220.313
12.5591
4.94099
2.56972
3.06308
3.2715
7.55888
10.6339
17.4337
3.33379
12.4715
3.13701
9.1567
3.49824
12.6719
10.1134
5.79084
11.1321
4.1358
23.834
3.8167
20.2048
15.4418
1.81608
4.26621
5.9891
22.0832
3.5178
6.50382
47.1651
5.39678
16.3321
6.94212
23.4497
13.4064
17.6964
8.13771
23.6501
6.51719
41.3208
10.7734
7.63954
3.07781
3.22261
10.47
13.7455
3.08717
27.121
18.9746
31.7634
12.8557
38.3594
57.8546
83.7778
32.1053
21.9416
15.0378
7.87
15.1693
7.41233
2.8853
3.20014
9.87312
10.4077
2.8189
5.69104
3.26998
12.2198
15.427
3.24171
8.36316
3.96447
3.19536
3.77656
19.7627
31.1999
4.70249
10.6373
6.95992
3.93493
4.947
11.2296
30.5185
43.2196
20.6685
6.5151
9.26033
11.9078
70.773
136.686
7.70217
54.3852
11.1424
14.309
6.57681
14.0372
23.5095
2.97513
29.9614
5.25628
3.59572
9.27525
14.75
87.5309
37.8958
42.845
13.5173
7.97702
17.3502
42.2785
33.9599
25.6543
15.9846
68.7731
44.7906
6.33573
117.507
9.08339
14.8667
18.4136
13.7011
68.014
190.908
9.33685
14.0269
8.83965
25.8007
7.94542
28.8563
5.05852
2.9339
8.17109
32.611
27.1677
2.63629
5.99933
3.02354
1.55136
2.15311
9.49531
6.12802
1.31008
4.23397
5.05454
19.4039
2.48312
7.60376
4.48019
24.8772
2.66077
8.86664
73.3307
30.9287
11.7896
24.4991
29.3704
21.5318
4.41963
6.19484
2.73128
12.4585
10.1279
4.97539
33.2186
10.6403
10.2073
30.5674
72.9284
28.5593
9.52145
3.03475
6.08187
8.66503
32.1773
5.80084
8.18309
85.7303
21.7785
10.6363
40.7568
17.2025
3.0786
1.55933
7.60181
5.27475
2.64934
9.42133
1.75297
6.31282
25.1858
9.03754
5.20827
31.6095
11.9815
3.79189
13.3782
2.337
6.13987
4.59746
11.2576
2.10522
76.6308
8.00466
4.25415
19.4647
12.0031
9.57446
76.3097
9.64936
12.4332
34.4867
9.05419
3.05707
5.51339
9.501
30.6751
6.27668
1.51976
2.12544
2.96181
9.08121
4.05809
1.29237
2.51073
1.6583
4.90589
2.88916
7.6225
1.72663
4.34163
2.74306
2.78901
1.39228
1.9476
8.41323
3.81765
1.19312
5.6006
4.83274
7.84718
3.14274
54.7834
6.64629
2.52309
26.7012
8.26884
22.5876
26.4237
7.27816
8.25679
64.7918
11.4997
28.3739
5.05724
7.70685
22.1168
25.8695
8.4563
78.1777
32.2214
5.71301
68.1055
13.8611
30.4038
9.53853
24.6668
27.3787
2.47484
5.05229
10.377
12.7458
2.91426
6.5435
4.61799
1.84643
5.032
2.91316
9.49631
1.73829
5.44334
3.17554
68.4877
3.81201
6.97211
17.3227
8.50131
10.8583
8.56929
69.2848
11.1793
31.2518
2.80321
4.89172
7.96813
5.70075
8.70501
26.4316
22.4031
17.4436
2.97251
19.4536
8.74485
4.31317
2.56862
7.68836
5.55096
2.15205
10.665
6.64884
3.69272
2.21259
6.32679
3.57957
7.53013
1.54633
2.76314
4.77628
4.19987
2.62812
8.45869
64.3908
7.80018
10.5021
27.4681
18.3969
65.8574
3.67584
7.48944
10.793
4.26577
8.66013
1.34305
2.63582
1.82915
3.75763
5.44311
2.29935
24.3311
5.43606
8.81599
5.10235
27.7844
21.9346
16.9105
2.50815
4.33017
1.35828
6.52206
2.28272
1.4652
7.6158
6.13998
71.8343
17.6256
8.96365
11.7509
30.7394
4.87124
7.35285
20.9205
4.35192
8.26513
24.732
11.2643
2.92435
1.95925
4.89203
3.80991
8.74025
5.67687
23.6176
8.63633
7.52707
66.1187
68.5674
6.03694
17.2566
8.68861
30.2469
18.6711
2.38367
4.95197
7.55307
24.6933
4.27551
8.95743
23.7067
27.7414
1.68619
10.154
3.31382
2.37757
4.48726
1.43588
2.81597
28.432
30.4074
7.85321
4.18847
74.9074
18.7891
9.35277
4.52625
5.47288
1.79043
8.36511
3.15527
4.75172
1.88709
9.51412
25.2193
19.1622
8.82138
5.50246
24.2147
5.17126
9.3491
5.7456
10.2842
1.9564
3.21099
1.91364
5.97027
9.92647
34.1714
9.76736
28.8767
75.4172
37.6328
10.6666
13.4148
19.4916
93.1677
74.2023
32.934
19.4197
8.80728
79.7237
26.4219
10.1178
9.32026
3.63146
33.5941
5.81305
10.7285
3.29681
28.7738
11.9479
5.5991
32.9606
6.40965
9.5649
9.19244
10.9589
2.10668
4.9101
2.59317
6.29777
15.7506
9.48275
26.5162
5.98651
10.0986
30.5202
35.7602
32.8783
33.441
6.09922
10.6133
10.2118
31.9679
120.309
6.80095
11.9919
12.8394
36.8774
5.61274
7.36261
19.2905
32.3959
8.47867
24.9997
72.9375
154.386
7.57419
12.0358
52.9934
11.5937
39.0628
29.6336
22.9793
169.233
14.6235
13.2648
44.7852
62.3242
16.7722
104.298
142.658
13.9763
12.6219
84.6723
8.42834
47.4101
20.1988
32.7416
190.431
36.3967
52.6821
14.1805
20.7991
26.8133
20.718
3.0334
6.11009
12.8119
26.973
4.8787
7.51097
25.5568
4.56893
8.33
30.3517
38.7013
5.71539
17.4922
91.5894
165.224
32.1246
62.0107
8.52536
9.72643
38.1005
44.7242
6.93527
1.8582
2.1711
4.51063
4.28394
1.76063
1.97803
3.38507
5.87024
25.0385
4.20127
15.7705
6.09555
3.61855
25.6248
7.14647
64.9349
10.7169
28.4252
10.0997
6.20126
32.1305
5.02396
2.29705
11.0129
17.7143
2.81759
3.96887
22.7087
2.14178
6.96925
2.58838
6.07359
2.0355
2.28224
7.75599
2.16441
2.26883
5.68456
12.0496
1.84545
2.46456
8.64363
2.52563
9.03478
8.85176
1.89283
2.22681
12.2444
2.36046
4.21639
34.6364
8.50172
24.1677
7.4786
5.25372
18.9724
2.40527
2.414
8.83898
11.7537
2.31386
2.97984
6.60471
29.1553
9.89464
9.17946
110.648
6.68155
39.6209
43.8079
18.2515
3.32158
2.92939
6.07861
4.13319
10.2664
12.5446
22.93
19.4706
5.87666
3.60713
4.98392
26.26
15.2547
47.1437
45.8083
14.4027
3.832
4.93032
20.7298
3.38603
16.2336
21.1165
5.27332
2.13747
2.52932
7.77479
2.28395
11.4034
7.2464
10.8415
15.385
4.44508
2.36792
2.88781
19.4658
6.0882
39.7058
126.947
51.6632
50.6322
9.10599
8.40505
8.04206
50.641
33.4741
6.89834
5.88724
22.7535
7.95166
36.704
24.3811
28.8881
22.8882
6.33414
5.57393
6.80491
28.0665
24.6312
59.2626
111.971
8.29257
1.95282
2.5736
8.51573
2.25598
11.338
5.53495
4.17582
1.98165
2.29249
4.684
2.08402
7.85911
3.47811
24.8327
16.0126
22.5716
19.7656
8.30532
10.1332
2.3975
2.47057
2.33811
5.85999
10.6886
40.5668
65.0146
123.329
29.3581
28.2849
26.6906
42.9727
22.5383
10.591
15.4606
10.4495
98.8499
10.9256
25.904
15.9275
25.0474
30.7369
20.4054
19.9136
15.3827
20.1732
23.8745
46.1381
52.5514
30.7068
138.914
43.5252
72.4892
44.0892
138.797
64.6439
2.04968
8.56879
3.4859
1.79953
4.61175
2.27791
1.89187
3.03031
14.3656
3.25106
6.08244
3.24777
10.0419
3.13349
70.9276
29.853
46.8424
33.9141
6.74819
3.70513
7.58908
3.24646
13.917
2.92905
14.5386
12.3118
2.75648
12.963
2.74977
6.72236
2.9426
9.71424
150.699
138.689
136.737
49.5805
8.91904
4.83242
3.03298
2.47775
2.88345
8.45985
6.12604
14.4548
17.703
139.88
12.279
7.41128
9.6399
6.58807
41.3201
35.8706
43.8829
8.63315
7.45185
12.8894
63.4767
17.1166
82.8106
7.86794
13.7302
13.1033
151.273
39.672
12.0577
59.8282
15.7761
8.57406
30.4459
26.861
33.9123
22.998
7.45064
3.04627
14.1529
3.00019
10.8038
2.5352
11.3528
35.1942
41.7558
57.0857
31.5085
39.4223
156.287
83.1585
56.3398
27.4573
13.3205
18.6211
23.076
17.5807
22.1625
25.671
12.5774
3.53483
1.90397
8.19179
2.16341
4.55864
2.01884
4.45305
15.3571
11.4867
19.3837
6.64569
21.6259
42.5941
25.2949
29.4401
10.75
126.782
11.508
6.91608
13.0227
76.0684
34.0144
20.4635
4.62017
6.61106
2.69348
8.65793
13.7874
5.13695
83.0636
42.3057
35.8848
10.9979
10.6865
11.3798
32.7194
85.67
9.74233
31.6724
38.6209
21.6048
2.83979
11.2394
5.84774
9.01222
5.57651
25.6633
3.7644
11.6921
8.06362
46.8817
3.6157
8.66657
12.0938
4.37628
8.88549
19.1133
89.2471
4.8069
10.6994
13.5051
6.49733
37.1122
13.9277
11.7572
31.6274
7.23383
2.90914
4.34115
1.46937
8.56277
1.57938
2.60888
10.742
5.93507
9.66825
20.1166
11.1424
5.22778
24.6991
11.8866
3.93326
2.06015
6.42786
12.2481
3.82764
6.03339
41.0457
18.314
7.05508
34.6898
8.34556
18.884
20.9108
42.2172
9.09452
19.252
45.3139
8.6319
11.5993
1.96244
3.29346
5.22105
10.1827
3.69493
5.79312
30.294
23.8881
20.4135
42.4208
9.05546
20.1645
42.1129
41.311
19.7105
8.955
19.896
41.5212
35.8916
35.5316
7.06421
2.47054
4.25362
12.6546
12.3414
2.41999
7.25674
11.266
6.71434
29.9246
6.36471
11.6368
6.97562
12.1848
4.21661
2.38364
12.2276
2.39012
6.92335
10.9317
5.66531
23.483
10.7274
5.90128
36.5159
37.4461
30.4439
33.4123
10.8073
3.89105
44.1007
13.059
8.6375
85.6955
4.53715
6.15432
2.28847
11.7222
4.12878
5.97423
2.29435
11.7851
23.9872
20.8709
6.48543
11.9067
4.10806
2.30676
2.29525
11.8191
6.68993
8.9842
18.2425
5.36609
10.0827
4.90659
9.68691
39.043
34.3953
12.2073
42.233
81.158
36.008
10.6007
3.15891
6.36206
10.4996
6.31212
36.2532
10.084
33.5009
10.0225
33.5921
2.91029
8.89437
5.6537
30.7651
9.79435
5.79951
11.2277
37.8296
11.075
5.54717
10.4555
2.74252
20.049
2.85874
23.597
5.30392
10.0496
33.9353
33.2009
10.2549
10.3397
33.1989
10.0271
34.1884
3.21789
1.97382
1.25736
6.45655
1.23892
6.31804
3.25858
1.86471
3.41032
8.94353
5.3647
3.21402
4.84246
1.96817
1.71197
3.8841
2.84902
10.5484
3.00984
1.64195
4.47078
9.37011
43.8249
18.7746
49.013
8.81296
19.9989
4.98597
7.07832
2.8034
20.5696
2.44705
14.5582
5.29151
12.0111
32.864
95.9812
25.1825
9.91674
1.29225
2.04915
3.21222
6.48819
1.25752
2.20096
3.1617
1.51659
3.80201
8.01109
2.7223
2.56655
3.72097
1.57803
34.8088
10.2633
6.25342
3.09465
34.9141
10.203
6.28559
18.9748
17.6039
11.2641
79.2067
12.424
38.2849
3.61991
11.6142
8.18444
11.1114
7.69885
42.6327
71.1018
66.9128
36.257
25.1279
22.9006
82.2582
233.803
12.0389
254.873
35.0179
11.1304
22.2645
111.447
118.097
50.6211
20.2977
21.0526
69.395
216.2
10.607
209.954
38.6416
10.4032
21.4229
215.605
223.582
63.3675
68.1868
218.206
38.8569
6.14892
19.5482
50.0703
88.5972
9.11064
23.4
37.8585
5.63807
15.8673
36.2908
72.8109
8.73125
21.4416
242.499
73.7155
25.1747
21.464
254.328
219.618
16.0887
4.68765
21.0867
4.80538
31.693
4.79656
8.16971
12.2932
4.30247
20.0973
26.0574
4.28515
6.90712
11.2129
4.42152
7.04436
24.7677
72.8053
62.3803
16.7428
14.4081
26.8746
21.0442
3.75462
3.78121
6.08001
4.4577
12.7185
13.6942
29.1316
249.586
16.5088
14.7561
7.22713
74.1573
66.0815
242.299
231.487
12.5381
4.70029
7.82389
12.4376
4.65134
30.4866
22.2706
12.0415
4.4907
6.76655
11.8771
4.37495
27.5323
21.4417
239.112
27.9934
67.5541
65.5296
28.0999
97.9772
9.7653
79.1185
21.552
18.1104
280.003
27.5256
241.742
63.4376
66.2316
6.14687
3.90237
3.84823
21.2719
12.1936
3.06055
13.8567
13.7977
12.9696
234.316
23.9101
29.4983
22.8938
65.2944
65.4795
6.57479
14.7961
234.954
14.5803
26.4121
238.122
63.2258
65.8766
5.75126
3.5752
20.8161
3.56176
13.1669
12.4053
2.7315
12.0673
13.2709
216.761
21.8538
28.9631
78.0511
126.817
44.1654
28.2652
26.9767
107.265
13.4846
278.153
289.4
72.9772
14.3294
27.9287
400.179
338.01
105.046
18.4698
16.94
380.046
36.4638
102.085
31.6188
59.08
278.025
332.635
65.864
10.9018
21.9232
67.6056
13.716
105.926
49.5082
101.274
11.0196
39.0684
93.8401
22.8832
428.087
40.649
168.24
26.9167
15.2355
23.8058
278.02
231.714
223.216
3.07442
12.4206
13.0967
4.20179
6.53156
3.76356
3.62978
3.33357
13.1789
3.69157
17.6563
3.56082
10.4486
4.02581
4.20142
27.4285
19.2315
4.11695
11.4053
6.98901
4.12621
4.10827
28.4338
4.42914
20.5064
7.07217
11.2524
4.21928
3.98812
2.82162
11.1543
12.9669
18.5389
3.40544
3.48347
58.3885
20.2521
49.4889
7.89197
94.6881
12.3862
35.6892
57.9529
23.0628
66.6519
9.44151
107.05
12.6351
42.4265
41.4491
11.8229
6.06026
6.52296
9.04162
23.0943
25.0447
29.1567
97.9612
46.8472
54.5751
37.7862
10.3304
103.254
108.068
413.61
22.2638
24.3007
15.0467
346.373
13.5096
27.7067
32.0413
15.5894
411.219
17.5962
33.3722
38.708
128.348
314.1
81.8522
20.7213
4.6113
33.5106
5.68024
11.5506
4.96764
19.7309
83.1245
80.7294
243.133
48.8319
237.509
16.2826
22.4036
5.03748
6.04057
5.28743
9.82715
15.8567
54.7411
24.4113
41.5865
36.5494
330.152
304.417
92.5499
14.0436
7.6646
47.7161
7.27419
29.1064
6.02027
27.3864
376.936
389.152
99.6317
23.2852
26.3176
5.1803
6.13751
6.2566
11.1945
17.8818
93.6491
21.1627
43.3606
39.8899
19.0208
8.48772
96.9536
14.5533
44.3519
40.9069
42.1034
114.345
51.8378
7.70527
12.587
39.3268
12.8501
40.2069
4.43714
8.17034
42.6629
13.2961
8.11749
13.3002
4.45984
4.34283
11.5062
7.68985
40.6807
7.94202
4.20122
12.7673
10.951
3.53597
25.2181
7.0955
3.92403
12.8787
33.9699
21.7417
102.225
8.53776
11.7658
16.3082
101.294
12.1875
7.51425
4.16487
40.7787
4.10574
38.6315
12.7398
3.33823
5.10456
17.3497
8.27081
6.24425
8.83726
2.98435
3.69141
14.2412
23.8615
7.16901
6.41547
11.0169
4.03561
7.36157
2.84241
4.33319
15.4679
12.8855
2.5592
8.05017
36.4058
36.4216
11.3718
34.0836
7.02368
6.7626
11.8651
7.2037
4.04479
12.2439
2.3864
12.4183
2.41998
7.12731
37.0211
40.6278
30.9017
12.1321
35.8852
12.7914
39.519
39.0366
44.3364
13.0847
41.7145
115.234
28.6071
11.8195
37.1733
41.6307
41.5704
8.20528
2.86796
5.0002
14.1067
14.3905
2.90594
8.05262
12.872
7.39898
38.5703
12.6769
7.55148
8.29356
14.9777
5.07561
2.98481
14.6045
2.94515
8.35998
41.3986
40.7866
12.9356
7.59428
38.8018
12.8719
7.6104
47.6798
41.3804
14.3539
8.64535
39.8999
16.5006
8.1956
11.2592
4.14831
30.6672
7.05258
14.7634
3.8538
25.1016
52.5133
114.035
10.7332
17.0414
6.46517
3.28702
3.64641
23.5601
8.62081
13.9253
39.9022
7.6245
12.8314
8.06098
33.9105
6.72968
11.1318
11.2537
35.8228
37.3129
35.985
6.80702
11.65
37.1111
11.2999
36.3294
35.5941
35.9896
4.86395
1.93507
3.04239
9.36484
1.80502
5.17112
11.1577
6.91423
10.789
3.93653
43.8995
3.45525
36.8323
8.54251
12.0581
35.2466
10.5705
43.5756
4.12331
2.7535
1.44388
6.87272
1.66691
3.41274
8.85029
13.6626
19.3352
88.0801
2.29204
3.8185
6.0715
11.7525
2.2361
3.90689
6.55967
2.32825
6.87553
3.95717
11.9061
3.95562
2.34049
6.77579
2.49283
4.30647
7.36793
12.2816
2.53066
4.20495
7.11548
2.44848
6.95439
12.2868
3.9912
4.15479
7.1017
2.37449
6.24507
2.0296
10.416
3.51961
11.0446
5.7278
2.08274
32.666
34.5671
8.96773
21.1778
4.74691
87.2217
5.10949
10.8106
29.3518
22.6072
6.50307
3.58191
11.5697
2.19308
6.73464
11.28
2.12849
5.7175
30.5649
10.8013
23.396
10.1957
23.5378
30.3184
5.09219
13.622
10.9998
89.5564
19.7185
9.11351
34.8575
33.302
19.5182
42.4412
29.514
30.8374
24.8953
9.97441
83.1263
86.9456
256.96
17.7499
18.6138
10.7499
10.3638
247.683
19.3063
24.0355
10.991
11.693
264.123
20.825
25.5133
222.87
35.2412
14.5653
33.1606
5.06635
68.3051
20.0133
7.87067
35.0562
15.3265
36.7631
5.46645
69.559
20.7937
8.07366
20.0423
19.5719
3.88507
3.92964
9.63967
9.55155
5.30439
71.3095
71.1576
40.7952
225.83
20.0532
3.81009
19.5851
3.82004
9.40432
9.44334
4.19686
70.8845
63.8869
222.838
39.8781
228.361
13.5596
12.2709
3.1513
4.17287
6.6112
18.9025
3.71255
40.4772
18.4567
28.9333
28.2007
73.3651
71.7123
41.9006
225.674
20.9025
4.22514
21.3143
4.19969
10.1214
10.2182
4.59454
77.6283
78.9574
241.422
46.2022
235.322
12.78
13.6506
3.3419
4.30756
6.92878
19.0553
4.00522
44.9077
20.478
30.7294
33.2383
5.25316
5.50324
10.6912
10.7194
25.2113
4.5243
4.62499
4.31058
7.27729
22.2061
4.08823
14.3736
3.50612
4.75516
4.67028
8.33574
25.5041
4.96637
17.1345
4.02853
5.44376
20.9764
27.6278
281.975
11.3471
19.5881
26.3231
11.3868
268.291
31.0927
29.4599
19.5437
286.514
21.1666
55.8971
19.7329
96.8151
28.208
90.9631
23.0948
30.8411
320.795
13.3944
26.3567
37.5791
13.6996
407.299
35.8217
39.3065
23.7436
373.447
22.1021
54.7088
24.6725
102.528
35.4756
113.666
31.5976
34.1518
47.4527
281.908
43.8451
259.619
81.1967
49.6619
298.652
87.8064
6.65841
44.9677
6.43277
18.7085
9.49149
30.9235
4.83333
6.95618
7.21385
47.9925
20.2505
10.1706
5.29784
32.0243
9.56883
80.7516
24.35
83.8111
17.9231
17.2314
46.0812
5.00707
9.75681
9.72792
4.63449
4.12208
19.1582
4.05376
6.06596
43.9776
6.30639
18.0907
29.3001
9.00125
4.59227
5.85786
5.63651
37.849
17.9266
28.8779
7.42969
4.44056
7.98572
76.4677
50.2574
15.6372
41.5336
9.96482
15.9273
4.49291
8.8062
9.10747
4.2031
17.6964
3.68669
3.70262
243.639
29.0746
28.1392
40.8819
246.639
41.2462
74.033
235.091
39.6997
71.3535
23.2183
77.2827
79.2064
8.92354
16.8947
240.187
16.3283
18.4157
37.0791
26.6378
28.7998
10.1058
238.798
8.91942
17.3026
22.8007
10.1599
241.917
10.4022
18.7889
23.5189
4.36823
4.72273
9.17585
9.33297
3.86117
3.84813
21.5158
3.79631
20.9115
3.95187
6.70666
3.22295
4.41357
14.2068
3.77165
19.901
3.65557
6.44197
4.21112
12.5547
3.09607
7.83556
55.6361
8.47017
22.8619
11.9236
36.1749
5.91808
7.61576
7.28261
50.2917
21.2034
10.7219
5.52591
35.0516
10.7677
96.3486
27.644
89.5839
19.1191
20.6659
51.6974
5.78575
11.3256
11.1813
5.43863
4.68566
21.9807
4.83253
7.59919
52.2103
7.62348
15.6644
28.4957
11.8159
6.13993
7.79933
7.60017
53.3382
14.256
29.5132
12.2524
5.87966
11.6642
104.396
111.118
34.316
51.3727
24.1834
22.7348
5.71269
31.7251
27.2121
6.64057
12.1661
7.01806
6.82095
331.835
31.3724
29.7405
49.8391
324.952
48.7336
96.9159
174.989
34.9623
84.4301
31.199
105.772
92.4877
10.7184
19.724
331.016
22.6766
22.9984
48.6537
36.1549
34.2343
13.0174
333.472
13.8903
24.6978
31.475
12.6813
277.093
11.4861
22.6235
26.4883
5.7578
6.44579
12.0196
12.5648
4.97889
5.29788
29.494
5.09658
27.4525
4.78203
8.4421
3.99428
5.70783
17.5979
4.63076
29.2493
3.74941
6.80472
5.99845
18.0618
3.25382
4.67717
42.3934
13.7203
8.12349
4.65221
13.7682
8.18449
3.01226
8.53983
2.04674
4.74857
3.0389
2.0313
8.47934
2.87756
1.93897
8.20095
4.61198
2.86739
1.94226
8.22103
4.23425
37.2894
12.4694
7.16339
4.21192
12.5102
7.17892
2.75807
8.32081
1.94275
4.7786
2.80609
1.90914
8.05559
2.68948
1.83675
7.64031
4.54922
2.66718
1.85683
7.78949
1.63742
1.71512
3.52532
3.24184
2.79388
1.50569
1.70273
28.4977
31.505
10.2683
6.2291
27.4447
42.5048
6.73122
26.1272
23.4017
6.87621
4.74936
6.06399
28.463
21.3035
30.725
9.85969
108.575
9.93064
60.7092
7.24959
43.1415
25.091
5.30116
15.9521
4.28738
23.8495
5.6821
18.773
47.9204
33.7137
10.428
7.63969
33.1917
62.5079
11.3062
74.2868
156.818
7.06986
12.838
11.9091
58.6136
121.384
6.17141
10.6561
13.1225
39.8222
7.20455
33.177
8.35217
33.6365
9.04626
39.1498
45.7108
13.1507
11.9872
6.35097
121.233
110.287
21.2415
23.8645
17.5147
5.86139
14.7193
10.4924
9.5242
21.3634
13.7404
4.89734
9.09108
26.603
28.8757
23.6679
5.62059
6.36912
2.97712
2.7837
5.78784
6.31577
11.4152
2.46908
2.53363
3.57612
21.1239
9.52759
3.21517
16.6517
4.27682
2.64153
4.23611
25.3227
15.2112
4.60064
19.8113
5.39705
3.52225
13.9554
5.42913
8.03761
10.281
20.8466
25.4576
20.7551
25.3515
3.52439
1.69071
1.66631
3.41267
1.55049
4.26817
2.86024
15.9393
12.3206
16.7437
10.1562
20.2576
23.8911
25.8222
17.5552
6.43012
8.32027
49.6612
28.1401
6.01872
7.88533
28.3533
5.6702
4.84538
22.4524
21.4387
5.63836
24.1244
4.696
7.69379
82.8767
4.61614
35.9545
6.63928
8.84992
32.8353
5.3671
23.9985
3.79778
20.8184
4.85174
24.7764
4.37194
10.9941
11.9829
43.4675
9.60035
6.01907
103.898
5.83727
9.81363
110.492
13.9659
11.7847
9.21467
20.7437
17.4331
13.6062
9.49048
30.9407
6.08274
43.3709
6.91851
59.6864
9.85061
1.71194
2.79225
4.44334
1.48398
3.33898
1.66876
1.63638
1.664
2.07913
4.42384
8.6477
1.52521
2.22053
5.37404
2.00743
8.51491
11.8231
2.2175
2.40165
8.37238
2.14708
14.0875
12.1605
8.45101
55.9751
25.2977
9.37416
6.44323
39.0076
9.07212
27.6647
10.1729
12.4537
114.786
5.5718
99.6873
5.40049
54.3749
8.56845
10.7475
36.917
25.9001
40.5959
52.0686
26.3681
98.2744
52.982
122.172
1.61761
3.01871
3.13343
1.53161
2.7017
1.42458
1.65928
19.5649
28.1324
23.8519
24.7354
66.0539
28.9214
16.6486
18.3458
21.3778
62.8685
129.096
41.1753
1.9535
4.87618
7.69509
1.4754
1.92462
7.17838
1.53959
2.25075
4.00258
10.4346
16.2794
2.59121
3.6052
8.01273
1.94329
5.31559
9.12857
1.84281
2.02503
7.13087
1.6374
2.1111
11.3225
2.49225
13.5631
3.11829
2.31273
5.28412
3.0075
10.7003
6.87699
2.93875
14.2445
2.7282
2.6914
2.58217
2.48135
5.90387
12.5495
2.08328
2.75469
9.06661
2.55391
4.69267
4.8494
2.25949
2.06407
8.6906
2.38784
2.66549
12.208
10.1901
3.8738
2.88896
6.2499
3.18878
35.7436
50.912
32.695
19.097
25.1984
26.7108
28.0486
21.5608
27.2783
39.2001
31.8369
32.0521
3.22938
17.4707
2.77339
13.965
11.763
4.01238
3.11029
4.38971
5.07295
28.9421
13.0335
18.911
5.98259
3.64223
5.11968
28.39
32.92
7.82413
24.0991
6.83133
5.92072
2.99336
11.3879
16.0871
3.11254
7.00982
3.09878
3.45087
52.0105
146.057
31.9265
138.733
69.6065
30.8051
27.9248
44.5135
5.74554
22.5073
16.6299
3.04907
3.84064
26.8407
4.81236
10.8079
6.39596
135.434
65.7061
14.2553
10.4411
47.4042
7.74679
31.375
53.3815
8.6475
11.8233
34.8114
6.65047
6.65608
21.5304
5.37954
33.3147
7.48364
4.6214
30.2656
2.12916
7.05424
2.77502
10.2284
2.25723
6.12506
2.71015
2.17901
6.67154
4.41628
2.57035
5.30802
2.45647
2.43525
5.82161
27.6218
8.26794
32.7802
9.15812
36.4893
31.2037
25.1779
28.5711
4.99279
26.6147
8.17977
25.5365
8.06311
13.8932
82.5723
16.5422
24.6442
24.0479
32.1392
12.9015
68.8904
9.95088
10.1555
5.81153
3.53952
35.9537
3.357
11.3597
31.1543
5.72177
1.78053
1.30472
2.97029
1.94373
3.21315
5.22698
6.17809
4.01751
2.17635
1.3875
2.07324
7.61297
3.43282
27.7874
8.16715
8.89036
25.0678
4.81651
6.41498
22.605
26.565
7.40325
4.24102
3.04268
2.12775
13.9885
5.30411
10.9816
3.70165
1.88459
5.30661
69.9947
9.09249
31.953
6.84936
7.97701
2.77354
7.79475
6.77781
1.608
9.16714
1.77255
2.48387
16.6067
52.9253
18.5243
18.6995
22.5325
21.6979
6.50138
4.10985
76.6094
4.24522
14.2798
8.21775
2.81187
1.74871
5.38258
2.73457
8.62885
5.09468
7.58482
3.82989
2.30691
1.64015
2.53293
5.82775
4.76054
27.1393
24.6373
3.53753
5.17935
19.2736
61.0371
6.65803
3.54069
12.3028
1.82371
1.16217
3.21692
5.87008
1.21031
4.80413
1.73766
1.98483
6.76999
1.42082
3.50936
1.2805
2.14693
5.24142
3.01883
29.8367
4.8907
8.41044
5.36605
9.96814
2.792
2.29336
8.3008
3.28534
13.5708
3.6406
2.136
6.79465
2.38574
3.96966
7.78633
14.8354
2.46016
3.79456
7.54076
6.86468
10.8787
2.22295
3.29545
2.15351
7.30618
10.3559
15.4138
8.55606
16.6314
8.07423
37.7284
31.3867
13.8773
8.7888
7.17111
11.0451
6.54669
1.91947
3.11353
8.47737
2.06037
5.64161
9.9667
1.95057
3.71275
1.21354
5.27169
1.34634
1.74975
6.28264
3.2448
11.6585
5.68696
29.2509
3.4405
5.35868
10.3568
2.98945
4.8004
7.8769
27.0119
2.76344
4.8309
9.64201
9.31676
5.59658
36.6545
6.19019
8.44427
5.2081
10.0684
1.74645
2.61163
1.77093
5.44607
7.7981
27.6462
29.3365
9.42269
6.78043
40.1613
6.39148
9.81494
5.28922
1.77012
2.51689
8.36636
1.70535
5.50114
7.96591
12.651
6.19696
8.9244
5.29814
7.14982
3.21106
8.88392
1.81738
10.3435
1.97722
5.41143
64.0407
28.5738
19.7615
7.65334
21.9316
7.0122
1.61274
7.46651
5.79012
2.72972
4.53373
2.59961
1.68468
1.55351
7.13183
4.10753
2.37214
4.31501
1.49364
2.48881
7.40827
25.9953
22.8341
17.6763
6.9052
19.8227
7.68374
23.4432
4.98546
8.0254
4.71236
4.99825
2.78145
8.5912
1.76791
8.28921
1.73129
5.18172
22.3358
20.6013
7.31453
22.1395
4.22776
6.85109
4.49272
24.197
25.4782
2.10229
4.57876
3.21882
18.8254
3.48985
1.82418
6.42571
1.60423
1.13634
2.60301
4.90054
1.09405
1.68787
4.61855
2.5666
22.3267
4.73487
7.9651
2.72166
4.40306
7.49403
1.97686
6.32364
9.46418
3.18096
5.93159
2.02919
3.09113
1.82816
2.58166
4.74825
8.9442
5.59165
1.63554
2.82491
6.41538
34.3648
3.65446
12.2578
6.35316
35.7357
3.71515
10.3368
32.1252
10.6718
31.2087
6.42947
3.88921
13.5002
42.6802
37.5189
3.72297
6.7994
3.49532
1.35681
1.98801
6.18711
1.35469
3.51374
6.1794
1.54275
3.99756
2.25895
8.66121
1.51263
4.56553
2.32506
1.52284
2.35273
4.68121
6.67706
4.44619
1.54955
2.28621
8.15801
27.5321
5.51492
8.50133
5.32563
14.2378
34.1201
11.7668
39.0098
4.39271
8.0225
1.67061
2.37384
4.63589
1.61937
7.51391
7.10742
4.63126
25.6857
87.7669
4.73932
8.65719
3.94676
1.37853
6.31018
2.10107
3.62772
1.43512
6.76862
9.25504
27.3586
25.5218
83.0449
13.27
29.4257
36.4124
9.39915
2.23024
4.96357
2.07863
6.05799
2.57566
5.89891
116.027
60.2059
5.92923
17.4078
3.31547
2.88191
13.4459
2.52055
10.2119
136.184
131.289
43.7271
11.5954
2.56498
5.70689
2.73645
9.0817
9.19664
2.69865
45.0838
26.1424
31.0545
28.3988
13.2169
2.50515
2.63671
12.9753
2.91598
9.4224
5.85196
19.409
23.4395
25.3883
15.924
14.0655
8.76415
16.8368
6.25395
21.8757
25.0187
25.6744
22.9819
22.5654
38.3037
26.0118
24.0404
19.5045
11.0496
18.5588
13.7499
22.423
24.0077
23.7959
22.8571
3.46222
2.32273
1.9991
7.74196
2.20477
4.22286
4.25209
17.4651
16.1261
16.1555
17.0297
3.75662
4.47471
1.28696
1.45531
3.89609
1.25646
4.4222
19.6278
21.7586
19.6441
22.2723
17.6959
13.818
15.55
17.2525
3.53931
1.25918
1.4177
3.60448
1.25101
3.19083
4.18799
5.94246
22.451
35.5798
5.25527
8.49675
25.3626
4.77256
6.33728
24.4608
54.8189
9.02249
26.7896
8.92587
5.80068
9.02035
5.42727
111.255
102.535
11.9638
39.3829
11.04
16.8904
20.7479
18.7609
19.275
9.05294
12.3897
5.26522
5.66474
12.4238
11.0596
15.4816
7.78802
2.3401
1.33566
1.51994
3.019
1.49898
2.76691
2.48419
17.9327
4.22192
16.6892
3.04584
20.8991
3.72605
12.6549
18.4137
20.624
5.05097
3.35614
22.8424
14.6834
3.85222
20.9258
4.83276
27.4679
5.63599
22.9825
24.6819
4.30083
14.1495
2.61064
2.86416
5.41936
9.89104
3.26474
8.58184
10.2353
3.55233
13.6287
2.3928
16.3968
2.66205
7.75882
4.56083
5.89588
2.11125
1.91257
6.72818
6.54294
2.04548
110.892
27.2118
34.8134
58.9101
12.6692
3.93011
18.3957
3.37891
17.9173
14.2461
3.083
10.1217
2.10161
1.92779
5.17188
7.39147
2.23306
7.53808
12.2133
9.63712
2.41361
2.33407
2.61312
5.51299
5.10632
4.21268
2.78372
1.85893
1.61594
3.11291
3.33585
1.79427
42.2139
61.6023
27.4087
127.55
37.1864
25.2585
23.078
53.7827
126.896
8.54971
2.63037
1.97714
8.05895
5.10381
2.3128
11.5748
7.51606
2.08286
1.56812
4.51915
4.00385
2.05082
7.1985
6.51322
32.7296
29.7706
5.33253
5.67924
32.5565
6.16805
7.83833
64.988
35.8677
10.0374
35.8645
10.6908
8.21969
6.67235
6.06769
29.529
30.7008
5.87615
31.5944
6.9619
4.54101
16.0206
20.4793
3.12257
4.22002
22.032
3.50457
5.32646
23.5881
25.0001
6.57446
23.8355
5.48103
5.99253
5.2646
5.70498
25.1113
25.7268
5.11984
24.7143
5.85354
13.5698
47.6449
12.0346
123.769
5.82849
10.9251
9.62076
105.144
28.7956
9.58001
57.3888
11.5558
6.98829
10.2056
6.27976
31.6259
27.7175
41.2179
7.58641
6.6738
42.8849
15.519
88.4239
25.435
2.61743
7.6724
4.12509
1.74336
1.73027
7.5358
2.63518
4.34127
7.91415
40.2952
12.6889
7.94405
4.32333
12.7412
4.35594
12.9951
40.3486
7.91741
7.94036
12.7989
4.37123
2.60023
4.10252
1.71311
7.50661
1.71614
2.58301
7.49398
11.5085
3.86869
6.91941
37.6079
3.79571
11.8947
36.2563
34.9118
11.1899
10.8872
38.0671
6.86436
2.32869
1.52371
3.81297
2.28492
3.7501
7.09559
11.5953
6.92818
3.7941
37.5802
3.76613
11.7796
37.1163
17.9146
4.02406
42.2656
9.63164
92.9103
13.1101
4.83376
13.4248
22.8698
76.6663
10.2747
6.76186
2.02506
3.47937
6.23617
3.17956
11.2788
7.26739
2.40595
4.3753
1.66843
4.64205
8.69946
2.64165
30.1829
8.44734
6.1637
5.46318
33.7073
38.624
11.8976
37.6663
11.8922
37.6475
37.5995
2.78439
8.03929
1.77002
5.06487
9.94385
2.68458
1.81981
4.68646
10.5578
51.1442
21.2467
8.30476
17.1624
5.56877
4.55004
13.4879
44.5414
8.00718
8.09531
14.771
4.44495
2.80426
5.14199
8.81897
1.94208
8.11885
1.83704
3.08562
41.54
13.2958
41.2477
40.0299
12.9889
40.1865
17.2895
4.93166
8.1756
50.4371
47.2099
4.78978
18.5591
10.9979
1.92918
2.76156
5.03263
2.88977
8.77425
5.84928
31.688
30.7321
14.8669
40.4871
7.94053
4.43596
43.0039
4.57591
13.5092
113.586
19.1312
56.3995
21.9297
50.7664
17.1817
47.672
18.3886
13.0851
4.37229
39.7923
7.75997
13.0514
4.36897
39.7203
8.32602
1.8095
2.68623
4.91274
2.66739
8.4213
4.86694
12.9041
39.1558
7.60725
4.31816
4.29682
38.9791
13.0124
51.4286
18.8328
52.2146
18.7342
35.3084
35.7392
38.191
6.84749
11.0407
6.96961
36.6703
14.1451
7.96513
2.62162
4.45745
4.16816
10.1857
16.9727
37.3361
44.2378
12.5324
3.80384
2.42878
7.27821
3.89964
7.80434
11.9589
41.8002
11.4735
7.87493
7.35987
50.0699
3.383
2.15028
10.9454
6.72925
2.1404
3.4268
10.9692
6.5792
10.4832
35.6596
10.3931
35.4829
6.61531
5.93654
33.281
9.355
9.06566
6.05502
33.2425
3.70199
7.09626
2.34351
11.7088
2.32642
11.6462
3.71856
36.3368
6.8123
11.0795
36.3041
6.83389
34.7908
33.8626
11.9055
7.04575
2.33656
3.76185
7.07685
11.8423
3.79955
11.7686
3.7673
7.09509
2.32336
7.02834
11.7921
3.76871
36.8576
11.2085
6.80673
36.5243
6.9052
3.5123
2.17754
6.84116
11.1187
11.2532
2.19369
3.48142
6.12316
8.48541
32.2907
5.68515
9.32551
33.6992
3.51637
6.93838
11.0921
2.14233
3.35774
11.4167
2.20759
6.18341
33.8378
9.48168
9.51519
34.0868
6.14635
34.776
35.88
25.2946
4.19033
8.6804
4.22707
16.0244
5.25802
15.9354
44.4009
93.7529
9.57523
14.0052
47.6026
8.31347
99.2883
33.7694
5.07881
30.6181
7.45492
24.4982
37.9259
6.36962
36.3947
5.51432
14.5469
38.8619
7.06994
25.7666
68.0904
4.73784
13.6697
2.839
2.65286
7.0133
6.1063
2.63035
23.9364
23.1718
31.5889
15.8358
24.5787
24.9865
32.695
17.0618
31.7802
71.4729
41.1189
41.2959
21.3528
21.7654
3.6985
3.49801
4.22211
8.56781
14.3386
22.2622
22.4053
3.93797
3.69598
4.41723
8.97462
14.8608
72.203
32.596
41.8139
42.1618
239.601
238.601
72.1779
8.93132
4.42419
4.53639
26.4819
3.85307
16.3311
16.6292
13.7864
2.70537
2.90442
4.86513
3.56452
7.16006
6.23837
29.0147
5.36283
10.689
5.17012
19.4078
6.39173
18.6907
49.1099
252.682
18.5041
17.555
84.887
10.1711
80.6349
38.8133
6.42806
41.291
11.1102
29.4031
52.1521
7.89681
38.4539
6.12838
10.4154
37.6858
7.8133
27.986
49.112
6.84735
17.0084
3.61956
3.89116
8.37371
9.59639
3.63088
34.7973
29.571
41.4706
24.3781
32.4144
28.9284
40.4896
20.6806
42.9468
85.3224
51.6199
52.4928
26.1602
25.5138
4.52322
4.54688
5.30514
10.1419
17.8916
24.0737
23.4372
4.19697
3.97973
4.87639
9.54102
15.828
82.4964
36.5146
49.3074
46.2986
280.806
279.565
87.4081
10.2097
5.02988
5.02729
28.0109
4.50484
18.2503
18.1265
16.009
3.50458
3.16538
5.74054
4.214
7.55277
8.18973
25.8487
9.55414
16.7582
21.7647
8.536
15.9396
33.3871
30.2806
24.6426
23.7449
22.8469
72.3802
235.11
9.50637
243.506
3.99973
4.2002
8.55138
8.01826
21.0074
3.51014
3.4237
3.39704
5.92167
19.5733
3.49544
13.2471
3.97438
2.84524
3.37432
5.63489
12.0468
2.72164
11.3909
3.35209
2.76377
20.1648
10.3516
11.6285
18.1499
23.8298
240.968
10.1438
27.8018
27.4345
18.188
230.462
23.9556
17.9059
51.3449
82.3721
24.0945
130.608
75.9048
24.2508
25.7179
16.5505
248.559
258.341
27.6076
9.37009
4.64775
4.77896
17.0119
17.4614
6.17808
40.6826
16.381
5.91172
39.3348
26.8075
8.62642
75.2387
40.8389
17.1856
6.25945
39.8876
28.0367
8.78332
74.2481
11.3186
40.7522
44.3982
7.07347
9.06112
52.0887
8.21621
27.6878
17.4652
274.751
10.486
10.5899
19.742
20.0534
55.6526
272.609
11.9214
87.6195
27.5223
12.0697
43.0731
48.2594
7.71145
9.57832
58.3638
8.56212
32.8464
20.1618
337.842
12.6782
11.5922
21.9848
21.7474
60.3182
311.405
12.5676
100.262
30.3453
5.19073
14.6628
2.89153
3.14269
7.53728
6.7554
2.90189
25.8061
25.3682
33.5979
17.6819
26.5409
28.0853
36.2292
18.543
18.111
29.3435
10.9141
11.017
6.03291
31.215
3.52583
11.126
3.60715
5.84771
32.4355
9.47879
19.025
18.1452
9.73129
9.25451
16.9693
17.6441
8.89721
6.17823
11.4218
3.82941
34.8793
3.70288
33.2261
6.36499
1.39885
2.16358
3.864
5.79442
1.50493
2.01134
3.42941
12.9021
41.0025
15.1459
31.3831
5.55558
8.82944
8.38353
29.2801
9.6834
5.11573
20.0758
7.59219
27.8608
105.655
45.0751
17.9094
16.5611
5.56531
29.8967
3.31795
8.90484
21.303
5.36197
3.18504
7.98236
11.195
48.4233
11.5831
52.9404
7.62037
10.22
15.4143
12.9749
111.873
7.98676
4.68033
9.05064
17.9822
2.8581
18.4622
2.90485
4.54228
11.4427
30.1697
10.2514
41.5589
13.5204
4.14485
6.81841
15.3731
6.91199
38.5101
41.4635
7.40331
3.99095
16.6501
15.3719
6.64026
47.7705
30.2776
10.6753
10.6348
49.2374
16.6427
45.314
38.2879
14.1498
40.8205
18.9257
5.01787
8.29151
51.5157
50.991
4.94417
19.0811
9.34356
1.95986
2.9126
5.92723
2.93693
9.2163
6.00965
32.0355
31.6871
18.2636
49.2959
7.89155
4.68846
49.1341
4.71309
18.127
30.3283
30.8462
33.8603
33.0698
30.6848
6.11166
8.31688
32.2602
5.60872
9.08458
2.05996
2.96576
5.88319
3.21956
9.17234
5.86482
21.6893
53.5568
10.51
4.8365
5.69892
112.058
18.5236
30.009
30.0141
82.0509
10.4834
10.9802
42.7389
51.225
18.8727
48.8947
14.5392
15.464
9.56023
267.542
290.114
18.9435
10.1954
83.3035
27.3264
100.847
11.7028
11.3153
44.034
54.8157
22.6626
57.6671
18.3433
17.174
11.1535
337.341
308.239
20.9749
11.091
93.3741
33.7701
31.505
21.6252
27.8755
34.5265
23.46
28.8947
15.9505
16.8542
22.9806
103.305
8.48246
16.0072
8.29832
29.6705
8.28545
3.07442
5.24038
5.1338
10.0286
20.3137
29.7499
5.48596
3.1686
10.0614
5.41445
10.0595
30.2722
15.0892
9.92288
7.716
105.36
3.55854
2.27162
7.184
11.1507
2.27008
3.54216
11.148
6.40907
10.3131
34.6717
6.49578
10.1532
34.2205
3.62332
7.17944
2.31898
11.4178
2.30669
3.66323
11.3194
6.2677
33.3873
9.74958
9.90087
6.20859
33.5474
3.73026
2.29774
9.87164
11.4309
12.8638
2.42122
3.57331
7.05457
10.9018
45.9279
7.34897
10.643
42.18
4.16184
7.85802
17.1227
2.75776
4.36952
15.651
2.63976
6.39433
33.9717
9.67147
9.74602
36.6076
6.2178
8.50934
20.451
8.78395
34.6452
12.2972
3.76694
6.65589
11.6721
36.2813
6.46236
31.5916
5.49459
10.0966
3.3256
10.61
30.2505
5.68097
28.3251
10.5341
10.2558
43.0912
41.1305
19.7107
30.6082
25.2686
19.8496
31.0153
25.3048
37.8039
37.9934
30.1798
36.6593
37.9688
63.7667
67.5272
242.464
23.5437
39.9597
31.9704
26.3632
39.4466
35.105
45.1254
42.0142
37.421
251.245
39.309
42.2516
47.9231
276.837
48.9943
79.1301
8.19053
19.6606
14.5447
11.7821
15.1237
39.6447
40.8265
5.81729
70.7777
8.1048
7.3229
24.2686
24.5333
72.781
9.0817
250.363
15.7462
24.6903
16.4844
10.6206
9.63359
236.616
10.4044
37.5911
38.7659
5.95314
49.0675
7.82126
7.32701
23.9403
25.5602
69.5751
9.69974
125.085
16.1412
4.97173
15.4002
30.7973
4.92694
22.5305
6.11109
4.28292
4.9577
15.0295
30.6456
5.05629
22.3822
6.14291
4.30247
6.05664
16.2388
40.5946
40.6778
30.4998
8.26605
8.38085
5.14788
31.5184
4.8914
20.5373
4.33901
5.74284
28.0791
5.19078
32.2451
21.3065
4.73785
28.9224
5.57372
4.53203
4.46158
3.50442
13.9123
13.9771
3.77942
21.5127
3.8779
2.33442
3.1741
6.07765
5.37619
2.32068
4.03664
2.53083
3.75883
9.66746
14.0614
4.22069
8.35294
3.97507
4.0376
3.38625
5.13418
6.2992
2.46147
13.2196
2.60062
2.44852
4.28892
4.0726
7.98687
13.612
22.4863
3.66003
3.24545
5.55721
33.1665
5.94897
17.3336
5.03747
6.70615
24.42
5.35634
30.7234
15.7478
5.13234
23.5618
6.11221
4.61087
4.88391
5.39335
10.2691
9.72836
4.74737
16.5043
4.50483
3.03713
3.28279
6.15738
6.7096
3.17091
5.20175
2.81379
4.82525
8.9734
9.26004
4.47841
24.1923
4.09821
4.31499
3.1107
6.2905
5.78224
2.96598
8.31602
2.71525
3.08025
4.07601
4.33385
26.2284
9.09781
16.8336
5.17805
3.05061
5.11653
41.5294
16.0509
8.28107
5.17802
14.7417
8.30832
3.31525
9.35015
2.30315
5.93713
3.26119
2.33575
9.54664
3.36237
2.42405
12.6162
6.10532
3.46515
2.3639
9.94041
5.31036
50.1953
20.4561
8.22308
5.36667
20.21
8.12786
3.52833
10.8461
2.48429
7.67993
3.49652
2.49762
10.9613
3.56567
2.52745
11.1435
7.7094
3.59357
2.51745
11.0892
1.70714
5.57359
2.53823
9.66208
2.37904
1.65427
5.9767
1.41224
3.91608
4.48581
1.21974
4.61063
1.40654
1.23217
1.78514
2.14912
8.74376
6.87556
2.23374
6.38362
1.87967
3.44115
20.4859
19.3842
4.44968
3.76304
17.6128
4.14138
2.56816
5.48227
5.2117
2.71804
8.89174
2.40304
2.42532
2.8173
2.6719
15.8236
7.89597
3.18153
12.6078
2.39536
1.42645
3.0545
4.23859
1.23437
3.77516
1.41389
1.28533
1.65494
4.68236
8.45634
2.12904
5.2424
2.2396
1.55929
1.93261
2.17732
7.50784
11.9441
8.15083
1.96141
2.42694
1.29321
2.83006
2.32611
1.47062
2.69006
1.30982
1.46685
2.79101
8.5788
10.158
2.58268
2.60622
13.068
2.63103
2.51085
12.2856
6.3662
2.38892
9.43765
2.6982
1.94742
2.39681
1.65756
6.46797
5.69793
1.9986
9.66038
1.77552
1.53721
4.16063
4.30935
1.78083
3.73497
1.5113
1.67339
1.67997
1.96199
2.99852
3.72597
3.38411
1.94385
1.74255
145.643
17.5337
4.09307
19.6979
3.35239
14.9202
21.091
3.61445
14.1364
3.48978
10.6552
2.58555
7.86851
16.6046
3.22252
11.3419
14.6046
2.75711
2.63867
8.37
5.48743
2.98119
25.5721
31.787
29.2152
25.8309
4.2507
1.61505
1.71916
4.36393
4.89123
1.55031
3.93393
3.05646
1.98879
3.25935
1.74739
3.46998
2.94148
1.99584
25.0097
24.5939
24.3303
25.639
24.0865
22.8243
23.561
23.4796
4.54377
6.38069
1.81793
1.5965
5.65228
4.90504
1.54562
25.784
27.7731
28.083
26.175
29.3236
44.4903
66.7724
26.8781
25.0188
22.4199
27.5138
22.0054
9.3381
2.41449
5.14475
2.80784
13.3972
9.20865
2.27915
4.30083
1.45727
3.51639
1.61786
3.86577
3.77044
1.59137
41.1082
133.708
61.8776
23.8373
22.3357
23.4249
22.0465
6.146
9.93135
2.56407
1.71474
9.80213
5.52523
1.88517
1.49911
4.64377
1.12468
2.87956
1.53918
1.09821
4.4906
2.06094
11.089
7.63965
2.84284
1.9695
5.84202
3.07564
1.7433
7.74439
5.51113
2.78705
1.84548
5.3581
2.53969
29.0393
12.1928
33.3236
15.983
79.2008
31.0008
3.17785
4.57128
10.7919
4.90406
12.0279
27.0204
7.96015
12.7002
7.19129
6.47725
12.1962
6.8837
14.3862
15.291
14.2406
15.3859
14.47
14.2126
13.6391
15.2027
3.75604
1.39401
4.06544
1.266
3.76979
4.01508
1.27044
13.5443
12.5765
13.3703
12.7683
15.3639
17.3916
16.3379
16.2628
15.5728
16.0854
14.3354
17.6714
11.047
4.80277
6.10114
9.37329
11.3291
8.637
10.4689
6.23955
15.7667
17.7204
18.367
14.2747
32.2544
4.39724
6.44052
4.78056
27.7593
15.1004
2.37721
3.96664
8.81421
3.83954
6.69095
22.7576
78.0152
7.46643
5.5863
6.51537
32.3516
30.9352
18.2276
16.4925
16.518
18.2204
19.8845
20.4191
21.012
19.6482
3.64558
1.39037
4.07207
1.27659
3.75034
3.9899
1.28265
19.0547
18.6064
17.4223
20.3446
19.1968
18.9971
19.1555
19.1712
5.05227
1.83259
2.43319
7.98697
5.61654
1.75333
7.14062
10.072
95.5891
6.61324
8.26765
12.0994
19.6575
40.1428
105.631
14.6438
5.2506
2.26471
1.47815
6.18442
1.63879
8.92982
3.9227
26.7624
30.7995
39.6333
4.04877
15.5313
6.01666
6.14339
16.041
38.5462
9.38709
15.7843
8.91324
41.6968
4.22893
6.90635
18.1961
6.41283
47.978
16.7669
8.43862
15.2792
8.58551
6.23189
1.92394
2.74925
8.54601
6.01704
1.9704
8.82679
14.2845
7.46372
7.88575
13.5212
38.5144
43.8819
6.49513
2.86736
2.15462
9.72602
6.98742
2.0549
9.17966
36.5659
34.8076
32.2764
3.57638
14.5132
5.76898
13.1411
5.46887
36.2139
8.49484
12.529
6.91618
102.7
27.9411
3.23229
8.62393
4.98905
10.9668
4.88086
19.5058
8.138
13.9099
7.77482
27.1874
9.92492
24.8638
83.0022
8.59332
16.2545
21.0579
20.3747
4.56
19.0204
4.43254
19.29
20.1029
4.34288
19.5586
3.70735
13.3061
3.28063
18.3875
15.7869
3.89547
19.8084
17.4054
4.20681
3.54868
19.0924
17.2417
4.08496
78.0661
11.9863
14.6657
34.5749
5.62338
1.33312
4.28125
1.99503
3.88001
1.90238
6.28781
9.2469
2.57593
22.4552
4.37074
8.25178
2.75455
24.688
22.0421
19.9171
10.7692
31.1581
3.03556
4.55515
2.88689
11.9108
27.9724
8.8278
2.50364
12.4337
3.32291
13.0476
8.67347
2.43561
30.9628
15.129
28.7042
16.4227
5.58941
1.55777
4.79389
1.84438
4.5767
5.92195
1.76982
33.4538
19.6008
17.9021
36.3298
8.78552
13.6153
3.26686
2.29568
13.4868
8.46008
2.36794
21.9339
4.10518
5.24616
3.76843
24.7025
7.19479
1.64069
4.58787
2.16079
5.00688
2.48433
6.74724
73.6821
25.2352
29.9127
16.7941
36.3987
7.17821
3.33986
4.18327
89.3103
13.1445
34.4623
31.8018
10.9368
6.37273
11.7826
12.4691
6.5404
12.0571
53.0742
23.4765
38.4748
24.9593
4.90031
2.62202
7.42309
2.66242
12.5166
10.0764
2.32441
7.19872
1.59989
5.01127
1.95107
5.17045
6.41775
2.0693
124.078
48.4853
21.5561
24.1656
40.467
6.61121
13.2279
2.88929
2.25264
12.1435
7.74735
2.25262
3.53206
5.39699
1.26032
1.73845
3.4247
1.27168
5.52229
6.93049
27.9124
4.4312
4.85786
6.28403
13.502
35.4639
13.7755
34.4705
13.0529
31.2335
12.0976
33.5649
3.57333
1.74873
1.31613
5.70376
3.6528
1.28202
5.56846
12.9067
2.35543
7.51765
3.65228
3.52609
6.86308
13.9329
29.5988
4.92982
7.81949
5.37579
26.976
44.6159
105.808
11.25
2.28439
3.12149
6.95692
3.34939
10.0225
9.15648
33.1052
5.76884
8.09953
5.62196
35.6456
3.09134
1.64193
5.16173
1.23411
3.26705
4.80399
1.20613
6.44902
15.0474
94.3237
4.69923
41.8194
3.96814
8.18542
8.44098
15.8177
8.29298
19.0557
9.54609
27.8102
10.493
25.7678
14.5463
7.81167
2.49902
3.72233
7.89458
14.4238
3.73198
37.3495
6.27245
8.19389
41.9861
5.88199
14.6077
2.51016
8.09055
3.93726
15.3629
7.9046
3.75139
36.8643
5.84711
8.19875
36.592
5.84764
15.8714
13.5763
11.0808
17.9683
19.7054
22.2172
22.9048
17.4518
20.9614
22.4587
22.8563
21.4733
13.04
6.26682
8.47796
9.79206
7.47204
10.5585
5.43336
12.968
5.18924
12.7564
60.6995
9.60243
7.15718
13.6379
64.6228
6.74868
40.4926
10.3074
9.76333
127.149
9.8487
16.6633
12.1518
15.0725
19.6148
15.7884
19.1467
17.4187
20.2607
20.3122
20.5932
19.8111
21.0175
21.9187
21.3112
21.4329
19.5683
18.7888
19.3451
18.3377
29.8739
5.79418
28.2218
4.90642
26.9319
30.2067
5.39191
31.4181
6.48954
31.997
4.93062
28.2971
35.1774
5.48398
28.1605
18.4761
4.54364
4.50644
23.8643
23.9322
4.97253
66.49
225.766
236.639
6.90982
1.99948
3.23641
6.98209
13.7635
2.36281
5.17804
7.53002
2.15799
7.6034
3.55156
14.9787
5.5879
2.43422
33.7725
29.9539
31.9513
31.2072
40.3171
42.0704
69.4698
35.1925
14.5559
7.86263
4.24673
4.44311
22.5946
23.3264
3.37903
38.6993
38.0188
63.67
33.1596
18.4301
4.8152
27.9741
4.62791
23.5461
23.819
4.38453
8.28991
4.76532
15.9279
4.69313
24.5696
24.6724
4.03148
72.7291
247.139
250.461
12.8209
12.7336
4.22239
3.96177
18.1169
8.18656
4.02334
8.00068
51.5967
19.445
4.99839
4.99316
50.9877
8.00551
11.1765
24.1141
29.3303
10.3861
11.8056
32.1243
31.3232
11.811
7.52199
17.5687
4.19619
38.4975
4.65712
6.84778
46.2895
33.2399
32.1834
33.733
6.88659
9.0153
10.3132
40.8065
11.011
7.31401
49.9117
10.8438
44.9504
21.7555
30.3569
2.00251
6.1062
2.94281
8.99285
2.00588
6.06056
2.95529
2.14407
8.95973
6.9378
3.35914
6.13587
3.30026
2.26349
32.5515
34.5327
7.58707
15.7445
14.1015
11.3326
105.033
6.83965
12.9795
41.4301
36.7053
7.82048
46.6525
4.60811
17.8224
50.5048
7.51643
4.70173
13.2308
40.4556
36.5894
15.5474
3.95438
2.11083
6.51747
1.51523
1.51878
6.50416
3.9444
11.8963
33.2756
34.212
11.5545
10.1752
21.2662
5.40873
115.023
5.72097
7.99323
37.779
8.60466
39.5245
6.58944
34.952
42.2929
7.18367
36.4052
7.98444
35.2178
6.06593
32.2436
39.4982
6.86011
33.5037
22.3689
5.79714
5.63654
29.1513
28.1439
6.27789
90.4111
324.968
312.422
10.0559
2.55766
9.4126
4.52287
19.9707
7.14714
3.06297
42.2583
34.6993
37.163
39.0329
9.17802
2.5437
9.48585
4.27275
18.3959
6.99688
3.01034
53.1748
52.8243
92.9186
44.1186
50.1304
50.094
84.9027
43.0028
19.8806
9.9898
5.80745
5.76515
31.5233
30.9436
4.50189
20.8773
5.34653
31.0624
5.4687
27.0288
26.1563
4.97639
9.31186
5.27639
18.2121
5.37591
28.5653
28.0478
4.48718
83.2769
292.011
284.181
15.1196
15.4535
5.08806
4.76832
21.5059
9.88659
4.72727
54.7137
21.482
56.1423
144.839
22.1113
61.9815
49.6088
7.98342
11.5113
7.95794
49.6578
19.9376
3.39961
5.06664
10.8477
5.05961
19.8978
10.88
50.3181
11.5635
8.01206
8.01621
50.2208
48.6971
7.84498
11.1704
48.7288
7.85754
18.968
3.28795
4.81843
10.3568
4.91715
18.9301
10.3408
47.9423
11.0786
7.58032
7.76336
47.604
14.7088
17.8891
10.9672
103.074
8.48733
37.0973
13.9111
43.2897
62.3177
14.6007
13.2484
22.9671
224.129
7.82551
14.5505
15.773
10.0413
114.097
10.5241
39.6768
15.8365
47.298
64.486
23.0517
14.1896
24.6935
232.177
9.22495
32.3864
5.33572
32.0052
7.97183
28.2146
38.4691
6.34322
33.2132
5.82026
34.3321
8.71494
30.0363
39.7658
6.65877
39.0323
229.015
15.0092
15.4767
66.0185
66.6059
8.26934
10.8575
32.8906
30.6866
25.9743
10.2934
26.7801
2.52681
10.4455
3.96873
11.6494
2.65866
7.86765
3.81663
2.46498
11.1689
7.27722
3.62545
2.41279
7.46946
3.72891
9.92956
6.82468
42.9782
6.95755
9.90214
4.88461
2.36894
1.7364
7.60363
1.73805
7.62146
4.8679
18.5258
46.756
46.7953
18.5167
18.6431
47.3128
47.1777
18.6512
9.90895
43.5436
7.00002
6.99048
9.90054
116.923
49.2705
8.91506
16.5276
16.7306
20.7451
8.98199
17.2506
43.4369
44.5767
9.5066
6.49937
33.2824
6.33287
9.60539
17.87
44.2923
17.19
45.6354
4.64764
2.28332
1.66037
7.30242
1.66509
7.27046
4.68257
9.39021
31.9545
5.98515
8.99205
6.21357
18.0208
46.0403
45.8644
18.1484
30.387
32.2354
27.0323
34.2383
3.88866
2.212
5.48257
2.55241
4.60788
4.25602
2.50643
29.1558
28.567
31.0252
25.5307
31.9212
36.8975
33.215
35.1041
26.0706
15.6451
21.2197
20.9586
32.3107
34.1238
30.4326
35.1854
32.8304
29.3262
26.9751
34.5674
4.52622
2.84622
6.22381
2.50963
4.8027
5.45058
2.81056
27.6964
18.4917
24.8998
20.891
35.96
40.7185
37.5368
38.216
38.8085
35.7185
37.0072
36.6088
76.9295
260.987
267.646
8.15297
3.82847
8.40186
2.41209
15.9198
6.30551
2.81215
8.89842
4.03535
8.64962
2.485
16.9801
6.63919
2.8397
44.4284
44.3745
73.4507
38.9842
46.7955
47.1511
78.4637
40.8293
5.92809
4.41333
2.47473
2.84241
5.2285
4.65565
2.61618
26.9988
28.3185
28.9775
25.5624
3.16437
1.77895
3.85935
2.06223
3.30614
3.59681
2.0466
25.7973
24.2354
25.976
23.0443
26.9465
27.9815
28.4408
26.6154
24.7704
17.2802
22.2428
20.8449
30.0338
29.2062
31.084
27.2017
3.32903
2.20496
4.58902
1.90472
3.92641
3.58237
2.17275
28.2393
28.5327
30.1107
25.8645
29.294
32.6702
30.4154
30.9437
28.3524
19.6016
24.1221
25.2613
17.9871
26.4047
22.4734
23.1655
9.16895
17.5018
260.998
270.319
27.7331
28.7543
13.3174
12.9676
18.0655
8.84244
13.4105
14.0387
18.8467
9.19824
16.7555
9.24875
9.33358
16.67
7.2043
3.23749
10.046
2.3093
10.1636
2.33394
7.11845
43.5869
44.8092
42.4145
42.2548
17.2591
9.91893
9.64306
17.7266
4.06134
6.37428
15.8472
38.0248
4.16602
6.23112
15.1588
2.61976
1.80405
5.44368
9.58761
1.88882
7.55859
2.48199
2.75095
8.7258
2.01326
5.94865
2.81788
1.96842
8.34104
3.84851
34.144
5.3264
11.741
5.89367
13.8624
3.53839
39.8892
38.7596
16.0881
9.04467
16.3549
8.87821
39.2734
35.4305
6.87901
3.09326
9.84864
2.24014
9.73135
2.21456
6.97179
40.9628
41.5496
15.3077
7.582
8.43257
13.9163
31.3719
114.123
34.6507
45.081
44.195
51.313
8.11873
11.8511
8.21095
50.2985
20.5586
3.48392
6.36093
10.673
5.27668
24.7885
10.7445
56.4807
12.1674
10.9809
8.53405
137.19
9.63343
17.4782
9.5218
32.4968
3.94539
5.72487
11.5329
6.21011
30.6307
12.0927
16.9091
8.33376
9.18009
297.63
131.061
73.4734
36.0715
35.5855
38.0439
77.5983
38.591
44.3522
51.1382
38.2069
43.362
4.52706
18.5602
4.64863
9.22216
4.72869
4.71987
13.4524
4.27633
4.17828
17.5084
8.60057
12.8493
4.33143
4.33666
4.55106
23.2098
4.91788
22.7138
4.81055
18.1586
4.631
4.43937
29.205
3.90887
28.9761
5.32346
8.71117
5.19108
4.88631
14.6935
5.10585
33.0367
6.07419
4.77547
9.7806
5.04941
5.22408
14.8993
34.1329
9.92794
4.99021
6.1375
4.85014
19.8776
5.20137
20.3008
4.91845
14.6126
5.04743
5.85469
19.8084
2.90313
19.5328
4.46634
32.2903
4.37658
4.8927
20.8098
19.9935
4.80556
24.6837
4.71617
4.81758
5.43649
7.04589
33.0384
34.2737
31.1264
5.88108
6.11379
5.03035
24.9049
30.2589
4.86399
28.0194
4.7386
5.28022
5.2018
24.8917
32.2182
5.39115
28.6149
5.04051
5.67688
287.883
284.521
304.037
335.124
86.8114
86.4732
315.608
14.9034
36.0832
38.5143
39.3494
15.3405
39.1685
2.96486
4.44592
9.07977
16.6367
2.97868
4.43993
9.00355
2.07268
1.62832
4.07377
6.88179
1.51743
2.29012
6.339
2.05638
6.39654
1.50733
4.0831
2.06689
1.50145
6.34353
2.99563
17.0347
5.6563
9.65862
3.45751
4.51097
8.98505
9.62741
6.77836
42.0548
6.82415
9.53308
4.78592
2.39653
1.81175
7.39908
1.75242
7.46804
4.74206
18.3727
46.7362
18.5155
46.39
9.81601
42.9309
6.99939
6.94666
9.89957
18.0185
44.9599
45.4964
17.8249
9.97714
6.99031
42.6232
7.01943
9.92196
23.855
31.3938
129.389
5.23606
2.66476
1.85847
7.92593
1.91551
8.37243
5.02817
10.0905
46.5031
9.66873
11.689
7.20417
19.6238
48.4084
54.0434
18.8527
15.4043
44.8081
39.2411
39.5525
15.4374
39.1159
12.9737
40.547
88.18
7.58755
8.52145
89.795
13.3077
11.9259
20.655
14.7514
18.3327
17.2827
57.7379
18.8355
13.1569
6.64432
173.041
9.78864
12.1084
15.474
7.66722
4.99444
31.8858
5.83133
31.6475
5.23362
5.44909
30.2211
4.55261
4.22549
22.0518
21.8151
4.43414
25.6108
4.31795
4.85579
30.7423
5.04524
26.218
4.72793
5.22809
28.6221
4.68276
30.2256
4.61214
25.483
4.89462
28.1554
4.42567
8.07861
61.454
33.0579
6.9479
39.0547
14.1978
5.97468
8.63082
9.02364
71.4971
35.4445
16.8307
6.69728
40.9154
15.9185
236.241
250.251
8.51811
26.5031
68.4402
24.9922
6.46395
31.1989
31.9749
5.06013
5.65859
34.1762
5.41407
10.9733
142.792
305.901
19.5459
30.2339
32.9654
16.7931
25.9171
21.5003
22.1025
11.5545
302.894
10.816
33.5302
16.1174
15.6924
14.732
20.787
10.1647
5.95374
36.6261
7.72538
37.9245
6.67351
6.4925
33.8326
5.80738
5.44523
21.6622
22.124
5.47023
27.7829
5.61386
6.01529
35.1216
5.77225
27.0045
5.58956
6.32121
32.1163
5.67256
34.7364
5.89538
24.9147
6.20147
30.1251
5.52056
9.80806
82.2672
39.7792
10.1949
46.2567
19.4992
7.50414
9.91514
9.51587
77.2886
38.5926
18.2938
7.39637
46.2549
18.3082
291.146
274.262
9.68922
28.9735
78.213
30.8851
7.77803
37.366
35.9939
6.02763
6.50122
40.0946
6.78462
5.5225
47.9044
19.8714
8.18628
5.51702
19.8349
8.21999
3.86582
11.2886
2.81698
8.14829
3.84908
2.8283
11.3286
3.85402
2.83207
11.3604
8.14712
3.85168
2.82583
11.3143
5.32416
46.0664
19.8941
8.0495
5.4602
19.4439
7.82002
3.76165
11.1991
2.79564
8.28287
3.75167
2.80122
11.2372
3.76602
2.84828
11.478
8.33676
3.84061
2.80029
11.2835
1.70768
4.27727
2.14282
5.83202
1.70128
2.14224
4.31262
11.4718
5.24927
7.01756
7.17833
15.1196
5.27425
134.724
13.5153
11.3768
9.17159
133.644
9.93855
10.0492
26.405
14.314
62.3485
41.1998
15.9313
8.08035
13.8265
20.4884
16.6214
18.1571
19.9399
20.6432
19.2921
5.76166
8.99779
134.845
11.4491
17.3268
14.6738
18.223
19.575
20.1368
20.0132
20.1421
19.8242
20.1221
16.1144
19.3112
18.746
65.1653
14.947
5.62321
137.196
10.524
24.5908
22.0846
4.99534
5.49022
6.02436
21.909
23.4264
27.1928
9.87406
23.5038
5.15546
39.3749
6.52449
22.2545
40.8751
16.8123
45.9749
6.83009
146.899
10.524
27.6646
11.1363
6.64006
11.2648
6.65641
16.9011
36.7076
16.0568
38.1933
4.25957
7.94354
1.54081
1.95453
5.11757
1.49491
6.23385
10.8841
6.03815
6.57694
10.1231
4.19154
1.49944
6.02518
1.9733
4.12291
1.51117
6.09698
2.07255
4.59337
1.62837
6.46816
1.54586
2.22893
6.2087
2.72514
8.22218
3.56715
15.2694
2.54477
3.8206
9.59355
2.87636
4.88236
10.9775
16.7465
3.21554
4.05359
10.3846
3.33932
13.9408
4.91261
30.3999
3.41102
4.87046
13.0456
2.33602
5.53831
1.68005
7.10462
1.72904
2.26334
7.3546
3.30079
4.50649
29.3695
12.2121
4.81589
3.16387
12.6479
13.9688
34.2285
14.6388
32.5537
7.65421
5.26127
35.4163
7.14403
5.64821
3.64283
5.67125
1.34375
1.75975
3.72495
1.37282
5.18117
7.95356
7.673
40.6733
8.68706
6.01479
3.81423
1.48453
5.71909
1.84885
3.91926
1.42985
5.55881
16.0164
14.3493
4.4694
4.4534
14.271
15.8715
4.56355
19.6689
48.8325
5.69159
5.1096
4.77409
27.2425
23.0394
16.6544
4.36732
15.6808
4.75909
14.3728
4.52308
18.7028
17.8913
4.46022
18.8514
4.62042
17.407
4.63706
19.6651
11.9709
12.9931
4.03125
4.1258
3.95183
11.7857
13.198
11.2567
10.0599
3.52432
3.44958
3.68556
10.7066
10.6231
11.2123
3.84074
3.59696
10.5113
3.76457
10.6765
11.0484
12.0872
4.04936
3.62127
13.1459
3.87003
11.6009
13.4066
11.3297
12.8099
4.07632
4.30269
12.5961
11.5879
4.09591
10.3675
10.0946
3.61813
3.58394
9.84192
3.76207
10.7473
10.5978
3.87927
10.3202
3.72597
10.0695
10.857
3.88788
11.1177
4.17599
13.2957
3.77586
12.4625
3.96529
11.674
16.1182
14.4792
4.23875
4.36569
15.9274
14.6771
4.27636
17.9794
19.7447
4.14535
4.11337
18.3163
4.22588
19.3596
16.4981
4.17619
14.9683
4.11403
16.7001
14.9748
4.23561
17.5407
4.349
18.7238
4.1243
17.3652
4.25244
18.8792
44.4173
8.3392
8.536
116.888
6.48188
17.3311
10.3852
3.00918
3.99656
11.2845
4.1491
16.1783
18.7721
5.39882
12.4506
3.17762
11.9287
24.3199
4.42451
38.6066
8.11133
5.84256
6.03111
36.5125
1.87302
1.47724
4.13883
6.19019
1.90137
1.45336
6.04056
2.37506
3.1189
6.98018
12.4371
7.6729
2.3193
3.18398
1.7882
3.92095
1.36366
5.25933
1.39062
5.66674
1.74842
2.48956
8.45915
3.39467
13.3563
2.52983
8.25884
3.3364
18.5407
38.5785
41.0492
21.2377
138.337
49.9593
6.51085
12.0001
7.29306
35.1832
16.7554
4.01683
6.01014
15.339
37.2933
5.8152
32.2334
4.88127
13.3984
3.71377
14.1438
30.3404
5.35529
13.348
8.22582
7.98988
15.1446
36.8852
35.8815
14.431
32.1486
33.5787
14.0138
8.26155
10.3704
8.1849
7.46788
129.184
7.28386
15.6205
12.5827
11.8823
132.532
7.97468
22.369
6.00794
36.0086
54.8927
9.25013
11.1633
13.7087
12.4804
11.6696
12.4105
12.2383
26.8334
10.4081
11.1588
11.7215
14.1743
13.1003
12.9874
46.1973
8.856
9.42148
108.063
8.11115
35.8819
16.1068
11.5075
4.42763
3.86355
14.3866
12.5465
4.76058
34.8998
8.15453
6.20073
29.2609
7.01843
18.6326
6.27365
17.0286
4.13307
14.1077
27.156
5.30791
15.3722
15.9815
17.1643
18.7803
20.0476
19.0975
15.8024
17.349
17.6018
17.3473
19.4508
18.5986
33.2144
5.22547
7.50006
32.4274
5.53682
14.1833
8.9307
2.6566
3.77316
8.26393
14.72
3.73845
14.2666
3.65481
8.25112
2.6858
8.28508
14.1302
3.76825
33.583
7.59438
5.54946
34.1897
5.54025
9.26929
16.6584
15.9706
37.1141
37.5197
8.67904
14.9038
15.0558
40.1715
39.5434
2.251
3.07009
9.14264
9.56989
2.31748
7.2059
3.02287
1.71144
3.5614
1.37231
5.92291
1.75618
1.34803
4.95907
2.22802
6.83118
3.01518
9.37258
2.22659
6.93489
3.01105
20.3228
6.95793
126.762
5.84593
26.3409
48.5489
4.78556
11.5607
8.87737
3.03362
2.34082
10.1465
6.93115
3.16942
18.2117
6.38639
39.1362
4.26548
16.8402
41.4355
4.41684
12.676
3.84666
7.81906
2.48645
7.59605
13.3414
3.40755
12.3105
17.6685
18.7486
124.154
48.5477
12.8829
25.9703
20.4042
41.0861
42.8066
19.7794
4.32579
4.13382
19.8366
19.4878
4.36538
19.9768
22.1241
52.1966
9.31254
5.21305
36.3638
23.7085
5.1822
20.8656
4.57758
5.99824
21.7688
24.1692
4.80543
20.4574
19.8825
4.116
19.4396
4.49821
20.2388
19.3553
4.41851
20.6911
3.91623
20.2828
4.11197
3.94819
20.3207
20.766
20.9348
18.0829
3.71399
3.99171
3.95813
18.8262
20.9021
20.8492
3.91295
3.78326
19.8844
3.93854
19.4723
20.6554
21.0139
4.18035
4.05088
21.6849
3.98891
21.2455
21.245
19.6414
3.88435
3.99037
19.8307
19.4711
3.86323
19.9482
20.1124
20.4719
3.79009
3.93361
20.4049
20.0773
3.83567
20.1589
3.88306
3.79639
20.0996
20.2047
3.85545
20.3953
19.5368
3.96353
19.3406
3.93912
19.5293
19.3245
3.84521
20.9247
4.35601
20.3073
4.25164
20.3847
4.39916
20.8457
21.6347
22.1887
4.76553
4.72728
21.5869
4.6229
22.3369
21.0389
4.5365
21.1594
4.74824
21.2002
20.6131
4.54227
21.5495
4.33327
4.59836
21.9973
4.48942
21.4196
22.2182
27.9754
24.5278
26.1915
27.8001
24.2146
26.1949
28.8586
28.6849
27.437
21.8744
21.448
24.1801
1.68407
3.5714
3.14758
1.8885
1.6719
3.67644
1.89126
1.50114
1.80155
4.73578
5.2296
1.51116
4.52982
1.6761
1.54249
3.73007
1.39895
4.00847
1.50879
1.45204
3.86625
1.53387
3.93032
4.84897
1.63471
4.3642
1.58799
1.63839
26.2954
25.7394
25.3462
23.0852
21.1817
23.2572
25.0668
24.0167
24.5771
23.0427
20.7416
23.466
25.484
27.8817
26.1747
25.7567
28.1147
26.0078
24.2216
24.2293
24.8121
28.9057
28.7014
27.2298
1.94744
3.29173
2.92382
1.72713
2.81598
1.70751
1.95476
24.1536
24.1268
20.6754
252.965
8.68962
8.67689
12.2654
20.9786
12.6936
16.6561
20.5895
12.5081
16.3898
19.4674
12.0778
11.0966
20.5079
47.5464
46.6441
8.23569
3.64437
11.6245
2.68834
11.5166
2.66572
8.39582
48.5214
50.2858
18.8713
10.3907
10.6494
18.4957
51.0475
124.058
6.2018
34.8926
7.95014
5.83897
36.7968
8.55616
4.44415
3.12253
9.32205
16.6544
3.0943
16.4708
4.49548
4.15927
14.7918
2.83931
8.89349
3.99146
2.92458
15.5488
6.72576
40.6916
9.55308
40.0913
9.40204
6.82303
30.4763
13.9759
23.2379
15.1233
11.224
3.78538
11.9201
2.75294
12.8713
2.83898
8.79422
6.43848
2.18796
1.67254
4.69356
2.14587
4.50501
6.86947
147.656
57.7744
7.13612
4.13092
2.07786
1.66355
2.13936
5.91107
4.63971
39.3257
17.3296
16.8528
40.9332
31.6088
26.0627
28.1948
28.6632
24.8512
27.2596
32.3243
30.5796
29.3281
22.2654
21.9689
25.309
30.3621
32.9785
31.9254
30.8933
33.5991
32.7619
27.9722
27.7858
30.3912
34.6299
34.6512
33.5758
2.31953
3.95572
4.38499
2.4639
2.4966
5.12229
2.18567
3.6679
4.16614
27.2358
27.2476
4.95294
16.2232
4.8941
2.55049
5.69373
2.66764
16.2554
2.24785
3.76256
7.88829
2.53095
5.39513
15.5703
2.41906
7.33778
2.13187
3.5825
26.1027
22.9457
18.6527
82.5997
33.0252
32.9095
301.228
9.95362
294.312
22.2656
10.0622
14.1991
18.2637
9.94913
13.9167
33.6474
33.297
35.5038
270.438
266.318
72.421
36.7079
73.4885
42.3628
35.216
70.2311
40.934
2.20956
3.63182
3.89863
2.11662
3.27771
2.25009
1.96748
46.3606
46.2691
14.4905
20.5786
12.5999
61.2428
6.00544
8.15946
24.8073
8.61193
53.9006
26.2597
19.4896
11.0308
11.4092
10.6148
18.4707
10.624
51.4352
5.54506
7.90248
24.1515
7.8406
51.8437
23.9921
18.4664
10.7132
10.644
96.2343
245.239
60.4051
28.9139
29.5887
31.2636
38.7937
30.2403
34.3103
67.5291
32.657
37.5803
3.5126
11.6633
13.2178
3.35364
3.35214
18.8624
3.14423
2.88569
2.57362
16.5442
7.13672
3.21603
2.07709
11.6566
3.00449
14.1836
3.78436
8.48221
3.58492
2.8648
6.05775
2.733
7.45275
6.46329
1.6944
1.8834
12.1974
2.15165
3.86819
16.5816
7.8945
3.7443
3.94397
11.8653
3.90988
3.98011
4.03486
16.6898
8.19884
4.08912
4.12179
12.1093
4.02484
21.5447
4.36019
21.2564
4.15423
4.19065
16.6443
3.99484
26.3356
26.3228
3.48485
4.72968
7.9661
4.63535
108.037
202.299
163.743
34.4813
78.1002
42.4053
32.9365
55.1958
256.799
258.774
2.81724
12.3506
24.928
3.58565
13.2299
2.97414
4.27781
1.89148
2.05061
3.49585
3.24845
1.79812
2.07619
4.08231
1.88342
6.02053
3.96221
1.61679
1.66053
5.22982
1.93612
2.11258
14.8361
4.80845
2.32975
1.90927
6.60393
3.29898
6.95151
41.1136
9.77948
6.98942
40.9259
9.74159
4.55113
3.15601
9.49225
16.6816
3.1747
4.53469
16.7172
4.59129
16.9724
3.2422
9.57729
4.62618
3.20762
16.815
6.90476
40.715
9.64032
6.87742
40.7493
9.68155
43.3835
18.146
17.9716
43.9878
7.29183
2.51367
1.8984
5.18631
4.95545
2.49385
7.64718
10.0988
4.33547
3.12229
16.5039
3.17824
16.7731
10.1041
7.29363
4.95004
1.82535
2.33628
4.93713
2.36364
7.31537
43.2121
18.8183
17.9962
45.1571
43.6775
18.0206
17.9434
43.765
7.19309
2.24479
1.74728
4.82018
2.2575
7.11908
4.86193
9.95226
4.082
3.04999
16.2354
3.02953
16.1436
9.99765
7.21422
4.90077
1.75852
2.28464
2.2709
4.87828
7.24574
43.4298
17.649
42.8482
17.8044
31.5201
30.3853
75.977
274.027
9.43298
270.813
21.3909
21.6277
17.4583
10.3287
17.775
13.4759
9.53668
17.7544
13.3507
33.7675
6.79609
38.2148
6.64667
6.15922
35.864
34.8646
31.3811
30.3011
5.70313
5.68742
5.67696
30.9262
30.9533
33.2609
6.53718
6.04178
35.076
6.06459
33.0836
35.1138
31.9371
5.91331
5.63931
31.9923
5.6925
32.5561
31.583
43.8225
7.61782
18.4331
43.7327
74.7559
9.77607
37.9243
45.6439
47.2344
8.14383
19.5096
40.3022
78.7139
10.277
38.2067
6.88268
6.92313
35.7478
36.6575
7.75439
36.062
77.2763
31.4307
31.9371
287.731
284.136
18.97
65.0821
26.2943
46.591
8.21827
117.181
17.1438
38.865
68.4122
68.127
28.3416
8.6476
255.071
16.937
39.5841
264.583
9.54475
9.13018
30.2517
39.2988
6.59368
6.74122
32.6005
8.72175
34.1449
34.3209
30.331
36.8299
5.33682
6.57246
30.8966
34.7789
4.96197
27.0077
24.4432
4.00489
4.09915
4.20976
25.8508
25.8973
28.2642
4.72979
27.9084
4.09826
28.7382
4.34125
27.3123
29.0138
5.7863
30.3101
4.5446
31.7353
4.73827
28.1341
112.506
8.61224
11.7999
51.5568
13.0345
39.7309
233.056
15.0948
17.9075
13.6047
171.022
11.5744
7.02123
65.4798
18.1653
47.0458
12.4008
16.9774
12.9108
27.5415
6.70884
34.4747
5.5798
29.6426
31.1787
5.79363
24.232
22.6232
5.33461
5.03713
23.3357
5.31913
23.7266
25.8385
7.11521
31.1454
6.08028
25.5258
29.7051
5.87651
25.9479
5.05672
27.0424
5.02204
27.7285
5.28944
25.4297
234.252
6.90311
83.7644
14.2224
59.3213
26.5828
107.343
69.2321
28.9735
9.45556
249.056
23.8666
42.3917
11.0856
9.50051
8.47027
59.2658
7.76832
32.4482
7.34885
36.8317
15.4799
35.6927
37.538
38.6484
9.23061
2.95603
2.19315
7.12967
6.87631
2.88962
9.5303
14.3643
5.07215
20.8115
3.6966
21.1057
3.75847
14.078
8.98215
6.49815
2.11535
2.74436
6.65574
2.79151
8.7802
42.9312
40.7347
8.54807
14.7895
8.66338
14.5562
6.14027
4.30233
18.6155
39.4288
4.32943
40.0612
6.18154
6.36162
43.519
4.60452
19.7259
6.48569
4.51475
42.0569
8.3096
14.1449
14.2277
8.44313
35.6596
34.3947
12.5692
4.84823
20.2638
3.62259
19.3191
3.53231
13.4998
9.97248
2.47705
1.95975
5.3772
2.56938
6.52978
7.7748
7.6857
6.24869
2.68506
1.9882
2.61277
8.39867
5.83025
139.967
22.5384
28.7898
53.1119
50.576
50.5756
15.7615
23.9331
16.3107
7.35822
10.016
43.7064
10.0931
43.9932
23.8604
16.1917
16.3164
15.7678
23.4693
15.7885
7.07504
9.81636
42.8353
9.69719
42.2262
23.0165
15.8817
15.7028
8.3318
16.3582
4.99853
5.20146
4.41793
28.2155
28.6986
15.5305
22.0431
4.19551
4.28666
4.28924
19.0749
19.1574
67.7746
257.358
260.512
11.5236
4.26286
4.08116
11.3421
4.17784
8.16389
15.0433
11.98
4.70484
4.36618
12.0909
4.41756
8.7052
15.6423
4.73167
5.91165
1.67299
1.78173
1.67227
4.9663
5.19541
29.5641
28.9839
29.4606
29.1848
30.0685
32.3782
31.3664
31.0181
29.6802
32.9009
30.1801
31.3078
3.46157
2.11702
2.46632
3.6308
2.45335
3.78767
3.38387
4.68386
1.80389
1.86297
4.65345
1.74256
4.93473
4.44936
7.70154
7.84537
3.50518
1.80184
15.9285
5.69193
2.24246
66.9684
253.261
249.634
32.1989
29.1099
30.0113
30.0525
8.0987
14.3609
4.4151
2.03258
2.46287
22.4499
6.02882
37.3312
38.0405
66.4921
31.9259
15.9825
4.86725
8.07917
5.0224
27.5791
3.50132
28.5129
5.27818
1.93586
3.88989
1.8321
4.25602
1.97566
4.44825
8.38524
8.23917
3.81269
1.99046
16.6727
6.31743
2.53649
63.1129
259.94
111.429
34.5805
33.5443
32.8193
34.3638
8.045
7.50628
3.08108
2.14375
2.52878
10.3343
6.39993
39.0369
39.0065
68.0427
33.8805
16.5962
5.55943
8.76861
5.19395
29.7811
3.94632
25.0676
6.40373
1.84013
5.25776
1.91742
5.63151
2.07304
5.62049
8.73496
14.4338
8.77641
14.362
6.25989
4.28995
16.5129
39.2516
4.27026
6.23653
38.9338
6.30975
38.6999
4.29377
16.3086
6.33372
4.28169
38.8506
8.6324
14.1417
8.56624
14.2035
46.9814
21.706
20.924
47.554
7.75358
2.57139
1.98461
5.25763
5.31007
2.58839
7.72733
10.6098
4.95675
3.49311
18.2862
3.51474
18.4186
10.5416
7.73639
5.36072
1.97564
2.56126
5.33821
2.57461
7.7158
46.1142
19.1968
19.8471
45.618
46.6837
21.7473
21.5852
47.1789
7.39567
2.45041
1.88146
5.20812
2.44317
7.45792
5.17386
10.2054
4.76444
3.41945
17.9237
3.38368
17.6694
10.341
7.5063
5.29208
1.91147
2.50739
2.4839
5.24347
7.59309
46.3066
21.5598
47.2672
21.3864
24.5809
4.32933
24.3606
3.87664
26.2327
4.00135
22.1161
24.3856
24.2387
4.1764
4.1246
25.9382
22.0233
4.09642
26.6099
4.49252
28.3213
4.23576
27.6197
27.7197
4.1431
21.7035
3.8943
4.01674
14.9072
18.6092
3.97255
18.6045
21.8553
4.40588
23.1996
4.01937
4.14398
23.2814
21.2618
20.7742
17.3966
4.04552
3.6305
4.13114
20.7547
16.9579
21.6345
4.46574
4.12311
22.0498
4.20646
21.3509
22.6414
20.6726
3.99695
3.60592
15.2467
4.08357
19.7207
16.4417
25.2931
4.60721
4.62633
24.8394
26.183
4.82934
24.4119
24.3251
22.9676
4.87432
5.08355
23.1307
24.1987
5.00794
23.9571
4.65885
4.73605
22.5514
22.9175
4.85922
23.3937
25.9226
4.80005
27.5011
5.09253
25.939
27.2112
4.99996
16.4273
22.143
3.83215
3.89395
19.3146
19.658
3.83169
10.7789
27.2145
3.94576
4.01668
7.62979
3.84931
7.60284
12.3164
3.90199
11.5028
4.32773
8.80597
15.2971
4.00876
14.4503
3.90566
13.3012
3.75939
17.7848
3.81883
10.5638
24.1852
4.91242
26.6414
4.31575
28.0852
4.3283
21.5292
22.48
22.6294
4.03686
4.0215
24.4787
20.1678
3.9993
26.008
4.95275
29.6021
4.44131
27.2399
28.9748
4.3633
19.6984
4.07781
4.15882
13.1463
16.9598
4.01521
16.0538
28.3258
5.14622
28.3492
5.19042
5.19305
29.5427
26.5457
29.023
28.3741
5.46846
5.67283
5.52994
29.5304
27.507
30.3197
5.39147
5.39834
31.1115
5.43603
30.5307
31.0564
26.4631
5.23956
5.46751
21.3745
5.29031
24.0792
24.317
30.626
5.14712
5.18411
29.4952
30.1497
5.22157
30.2329
32.3823
39.4228
6.59783
6.79371
33.967
34.5957
5.8423
31.7132
5.40041
5.82597
31.5123
32.1665
5.53278
31.4255
31.0037
5.25236
31.0495
5.8853
31.9888
30.5413
5.37819
14.3956
24.4697
4.275
4.82322
18.0315
21.569
4.20295
255.418
26.3934
10.2047
4.16125
4.40553
17.9656
5.04825
18.0689
8.37397
4.14001
9.53067
5.56393
29.8543
12.0831
4.29544
11.0408
4.78885
15.3795
4.68741
18.2975
4.21906
8.5273
5.99819
50.4776
24.1068
8.28832
5.97774
24.1391
8.33533
4.48433
16.6455
3.38964
10.6732
4.47002
3.40119
16.7008
4.50148
3.42017
16.7395
10.7026
4.49871
3.41722
16.7303
2.09497
5.74533
2.63517
8.08986
2.65345
2.08336
5.82247
2.10555
2.66538
8.18343
5.8812
2.669
2.10289
5.88369
2.04524
5.71959
2.58462
8.01214
2.03483
2.5969
5.74759
2.05813
2.61353
8.03849
5.79616
2.61117
2.06231
5.77222
5.84162
48.3476
23.4335
8.15127
5.9085
23.2297
8.0482
4.41134
16.0789
3.38407
10.3908
4.39611
3.38942
16.0804
4.44524
3.43331
16.3234
10.4528
4.48009
3.40977
16.187
2.09326
5.76036
2.63843
7.99823
2.64076
2.09013
5.78249
2.11106
2.65779
8.02479
5.78968
2.66043
2.11069
5.80393
2.09635
5.71558
2.63265
7.85354
2.10521
2.62379
5.70457
2.10242
2.65745
7.89388
5.76018
2.635
2.11586
5.72708
4.91017
22.0981
6.66232
54.5572
7.61553
4.66923
23.7478
4.14735
18.4677
18.8172
3.8734
4.14619
19.4074
3.83995
4.95952
9.30639
54.2461
21.3557
8.45774
4.94238
23.1906
5.25886
12.5508
10.7476
7.15029
10.0226
25.8691
23.8278
5.35352
6.08177
39.2763
6.39429
15.5445
9.84305
36.218
5.02885
9.5881
131.81
9.23319
5.35266
5.71508
8.88292
11.1674
14.238
15.7112
9.11015
8.06115
15.2183
4.86283
6.43655
4.21768
18.4938
18.6259
3.97374
4.16418
18.7029
4.08837
4.51916
19.6969
20.5203
4.86837
4.98881
19.3986
4.61657
4.50456
5.92716
20.0323
21.878
4.61907
5.424
19.4653
16.65
3.0816
10.3103
3.86951
11.33
15.3732
4.07836
36.3912
5.91427
7.67796
36.6332
5.84217
17.2383
3.17948
12.0162
4.24736
17.396
11.866
4.1965
35.3414
5.38187
7.48947
32.5615
5.69048
4.34817
1.64258
2.04885
8.02003
1.58835
5.46026
6.13702
11.715
8.45774
7.51063
13.0519
16.5566
35.0287
16.3529
35.7455
4.19322
1.92836
1.49904
5.82006
1.51806
4.15314
5.88877
17.6631
116.202
24.6782
40.5128
5.52838
2.34291
1.74353
6.49274
7.23926
1.81967
5.04515
34.4473
34.9349
15.2511
9.90288
10.729
14.1807
5.7686
2.41734
7.70314
1.90032
5.84979
7.59542
1.87558
32.4921
30.1546
13.2189
2.74985
8.82135
3.55588
13.8053
8.01546
3.81322
19.3313
38.8427
4.39714
6.40462
18.1481
4.56075
44.3076
12.624
2.53273
7.76682
3.28488
12.3168
7.84898
3.37083
25.4871
4.87665
8.18694
29.6964
5.57234
121.914
3.96231
14.3504
13.5112
3.94728
14.4239
3.9056
4.00295
3.96275
16.3641
15.4824
3.87191
15.4396
3.89011
3.94469
3.92476
3.78184
13.6112
14.561
14.5158
3.86421
3.85005
2.77326
7.2824
10.2289
2.78901
9.07517
2.46982
3.09254
2.73954
7.29643
10.9469
2.63218
9.27693
2.41124
2.9908
3.03658
3.51205
11.5696
12.1468
10.6933
3.31763
3.2599
3.71498
11.68
12.6344
3.85661
11.7992
3.81323
3.76413
3.50916
10.4281
10.8841
3.05225
11.0652
3.28039
3.32577
3.65419
3.67536
12.7343
11.8597
11.885
3.76698
3.53054
3.63467
16.2341
15.4142
3.75236
15.2931
3.76942
3.63333
3.35311
12.7791
12.4865
2.83949
13.8926
3.06183
3.17827
3.57122
3.64524
14.4876
13.2671
14.3067
3.72624
3.4496
39.218
38.43
12.6104
18.1183
18.1861
18.6574
12.8012
18.3066
38.2698
38.3062
2.3059
6.83124
9.50491
2.80879
2.89635
8.66282
2.21542
1.92318
1.66482
4.12102
5.98793
1.56745
2.07612
5.45332
1.84006
4.93332
4.3174
1.45722
1.50765
6.03493
1.76932
2.43083
10.8917
3.51166
7.8345
3.09899
2.67847
6.98562
4.68672
3.59706
13.1281
18.7673
4.70021
3.58558
18.8295
6.46643
8.46741
39.3967
39.4071
6.44304
8.50011
4.66292
13.1099
3.54429
18.8181
3.55936
18.8186
4.64806
6.49704
39.2365
8.5618
6.51439
39.4148
8.53734
45.2469
128.373
16.4307
34.9003
32.9767
20.3427
15.9044
28.0301
2.15368
6.5292
2.76481
8.50813
6.46296
2.17148
2.7476
1.6993
1.39021
3.53257
4.63366
1.40073
4.63583
1.68725
1.71824
4.72649
3.56278
1.42668
1.41358
4.66829
1.73205
2.13424
8.48055
6.40181
2.71677
6.4297
2.72577
2.12341
4.07384
14.3042
13.2007
3.98892
14.3278
4.05343
3.98922
4.07126
18.7758
5.25176
17.8868
4.31767
16.2577
4.34832
3.8942
3.61329
13.2513
15.6411
14.5322
3.7905
3.83241
4.39084
17.2689
3.8371
14.222
4.29433
16.6711
3.90515
5.27912
38.9695
8.66815
31.3735
6.88357
21.332
6.43837
4.43359
3.96879
14.9405
20.6301
17.7445
3.88848
4.78498
3.7764
11.5025
12.198
3.89022
11.299
3.79517
3.87494
3.5252
10.5796
3.3826
11.7821
3.40721
10.715
3.44834
3.60472
3.48901
12.2114
12.295
11.3305
3.67964
3.45204
8.49282
6.96787
36.3695
7.28855
147.324
5.60492
9.69257
7.8994
66.9598
10.417
149.287
8.3678
6.60612
4.23373
22.7188
26.0418
40.7001
4.7005
5.52603
32.7283
35.0869
11.9566
17.4079
17.0385
15.6686
11.6654
16.5702
37.8734
36.9301
1.75524
7.05675
2.32466
6.10717
2.21812
5.03086
1.82881
1.71695
6.74013
2.14784
4.76005
2.16873
1.6996
4.83362
4.21655
3.32295
11.9589
16.4777
4.50966
3.25358
17.1793
6.11914
8.31545
38.798
6.32856
36.4211
8.05529
4.43744
12.4927
3.47598
18.5992
4.56437
3.38963
17.8518
5.69408
29.9654
9.35421
6.45823
34.8993
7.36195
47.1285
27.7275
20.7048
12.8817
8.36622
13.1324
41.347
18.9624
19.3431
14.9536
9.03643
13.8042
1.96064
2.49442
5.44136
7.73335
5.94018
1.92829
2.50508
2.0249
8.08738
6.3651
2.65526
2.06701
6.18416
2.59504
3.76061
17.2666
3.81113
18.1347
3.88671
18.1133
3.68583
3.66375
18.2476
3.74773
18.0723
3.70555
18.2613
3.70741
3.62548
3.56031
18.4058
18.1996
18.3532
3.54429
3.65994
3.39632
17.9987
3.23708
18.1076
3.33378
18.2361
3.28848
3.58931
19.0523
18.8516
3.93573
18.6058
3.77415
3.73064
3.45796
3.50015
18.1328
18.4958
18.3215
3.34672
3.62491
3.44506
17.1237
3.68777
18.0333
3.57235
17.9434
3.55857
3.24275
18.25
3.16309
18.1651
3.19748
18.2677
3.20847
3.28861
3.40101
18.3275
18.1431
18.2625
3.40732
3.26269
3.98275
18.4538
3.86777
18.2145
4.00204
18.5419
3.8353
4.12242
19.747
19.0883
4.17379
19.1131
3.98837
4.32314
3.93773
3.67617
18.3319
18.6638
18.657
3.78742
3.81765
24.1022
25.2108
24.6728
24.9193
20.8603
15.763
18.9378
18.0829
22.8877
22.6034
23.7889
21.3432
20.9391
21.2406
20.3448
22.1385
18.4993
14.0977
18.2143
14.0769
21.2478
22.7563
22.7325
20.9456
23.6654
24.6859
24.4211
23.7418
22.3326
21.0597
21.1627
22.0592
23.3208
22.9959
23.8306
22.7957
14.6156
14.4162
17.857
11.2348
14.6777
13.2222
16.9946
11.3816
17.8257
22.1337
20.5891
19.8928
45.1013
45.6913
10.2476
3.14301
7.53341
2.4146
7.6479
10.102
3.17336
16.6545
5.96968
33.9261
4.94841
25.6387
4.38417
17.2837
45.1058
45.8684
10.2292
7.59626
2.45374
3.48886
7.59431
3.23235
10.247
15.1005
21.8078
14.9187
22.2452
9.43167
7.43797
43.8929
7.07631
9.73464
4.25108
1.67131
2.03456
7.12638
1.61436
5.77605
4.87006
9.28805
6.90069
42.9026
9.22468
6.94942
4.11207
5.45189
1.56512
1.98981
4.05981
1.58363
5.53087
15.56
31.9071
23.8106
16.5498
46.4501
47.814
17.4547
6.75158
38.2374
4.54542
39.4136
4.7345
17.154
10.7706
3.61721
2.65324
10.5854
3.51083
8.22765
11.7912
10.4197
7.69626
3.33188
2.58778
3.42438
10.3004
7.81729
153.804
54.8017
22.1007
11.6343
19.6542
15.2244
26.3959
27.1884
27.0461
26.7979
25.7285
26.5178
24.5551
26.9025
26.8209
25.4543
26.3302
26.3612
28.0892
28.7876
28.9638
28.0854
26.9959
27.3085
26.8101
27.27
14.0814
227.319
8.25914
16.8572
23.962
19.5523
22.3528
17.7921
23.8482
21.0722
25.8302
22.9057
24.8255
27.2896
27.3361
27.2801
27.7389
27.7554
28.4467
28.6527
27.7507
3.71032
6.42067
1.88715
1.76187
4.34859
1.77776
4.50012
27.3654
27.5184
27.543
27.318
3.31672
2.23039
3.08701
1.97329
3.52162
3.01289
1.94151
2.87932
2.04207
3.11076
1.82207
2.80644
2.05022
3.32801
22.6427
48.3407
22.9893
9.99527
15.8901
15.8455
48.9324
23.3274
23.2645
22.9751
48.4867
23.007
9.88586
15.734
15.7027
48.5663
23.0947
23.0634
3.13074
1.4058
3.84832
1.5091
3.61632
3.31855
1.49364
26.9642
25.0936
24.8801
26.72
27.4157
27.1868
26.9
27.669
2.52049
2.2098
1.4591
1.7028
2.39008
2.29367
1.49286
2.88104
1.27687
3.17525
1.30344
2.72646
3.35678
1.35003
27.9267
27.9722
27.5211
28.2839
2.77656
1.66161
2.63247
1.89636
2.54803
2.92734
1.65804
6.22275
1.51422
1.80565
4.97507
1.80836
5.16413
6.2261
8.58749
11.5996
2.24243
2.92027
2.30473
8.52136
11.1062
29.3137
23.9486
28.4008
25.0787
67.2877
79.7529
6.15262
1.53972
1.86323
5.24442
1.81209
6.23386
5.24164
9.21107
2.59027
2.9509
9.77938
2.4297
10.6132
10.1036
32.4362
28.6854
27.0412
35.1029
4.21235
1.40635
1.35946
4.23163
3.97548
1.34314
4.48352
24.4091
24.4673
23.4961
25.6861
4.07178
3.87705
1.19883
1.13988
4.01484
3.90858
1.21981
23.2057
22.3192
21.8594
23.5757
4.32418
1.4075
1.30753
4.57093
4.25988
1.32849
4.60724
3.95202
1.24059
3.5231
1.15719
3.77472
3.71215
1.231
24.8785
26.7409
26.2964
25.2888
5.54541
1.79571
4.63928
1.46454
4.12281
6.05217
1.75845
32.0124
27.7323
29.0953
28.6894
88.7665
90.4114
12.8899
14.3265
4.27358
1.97488
25.3897
6.23273
2.68325
11.7819
2.74834
8.55578
3.60895
6.83078
11.1287
2.79179
35.5904
29.9374
29.8905
36.7474
5.00488
1.51864
3.3918
1.714
3.98107
3.73282
1.73801
20.3714
44.4255
20.9911
43.366
12.4293
9.84979
7.7138
10.8009
4.95254
1.72583
2.25064
6.38148
1.76901
4.65319
6.91017
13.6418
8.95088
14.2647
8.55475
5.15506
7.34518
1.8245
2.29882
5.25226
1.80647
7.21784
18.9732
37.7655
17.4715
40.3259
15.3169
3.97276
3.04762
9.75949
9.80819
4.00134
15.1826
22.2697
7.44508
5.38004
46.6244
5.36416
46.3083
22.4283
15.5123
9.90769
3.07009
4.04952
9.88917
4.03664
15.5917
14.5922
3.78421
2.9487
8.37205
3.89615
13.4678
9.21012
22.2286
7.36671
5.32248
46.5713
5.29424
46.5071
22.3689
15.2354
9.80844
3.01097
4.00155
3.97276
9.64509
15.4653
11.5482
11.4056
14.4515
8.63565
11.7773
12.489
15.0627
9.34999
8.64035
16.7814
244.872
247.457
29.0719
30.3806
5.52448
31.1845
5.58329
31.0849
5.34944
30.3836
5.82304
5.53993
28.4968
28.8057
5.21333
29.1516
5.58045
5.28628
5.65942
6.84465
30.533
29.7147
29.4756
6.10523
5.95799
16.6226
112.992
8.527
233.968
24.989
60.2327
28.8854
7.057
33.9324
5.6906
31.8658
6.23872
34.2399
6.11398
8.98225
8.68286
63.5673
32.3387
37.7038
16.776
6.83532
28.7202
11.3163
8.33627
237.66
8.38858
7.95547
29.8315
30.0273
5.30378
34.6618
6.05815
5.94449
15.3308
9.37915
99.0376
33.1098
55.6081
23.576
7.27391
4.28621
26.5254
25.5721
4.47512
4.52128
26.5813
4.2496
4.12014
26.464
27.3196
4.19955
4.25974
26.9868
4.08846
4.38942
4.81384
25.7894
27.3076
4.62768
4.55612
26.8235
5.68884
24.9216
5.29647
23.6584
6.01861
5.27779
26.7613
8.74763
10.2902
71.2773
9.55779
9.80369
59.4037
6.12716
5.40125
25.4351
33.2351
5.37889
6.48444
30.1334
4.74063
23.2937
24.4696
4.60868
4.65955
23.2796
4.68402
4.83569
20.6801
4.97524
22.4588
4.79281
4.99798
22.1233
4.83883
4.94338
24.6503
23.8405
4.76191
5.01362
23.4258
6.29793
30.8269
28.9974
4.62474
4.76653
34.6436
5.96865
12.2741
10.0238
85.3558
9.10196
11.1308
93.4892
6.63965
5.33957
29.4049
35.5366
5.10166
6.702
36.5444
19.82
4.84012
3.98061
13.998
14.0765
5.2418
19.4019
24.8674
7.95114
46.6649
5.62144
53.7706
5.85993
23.1066
18.4782
13.5719
3.62626
4.42101
13.7444
4.56162
17.8959
41.0286
41.1877
6.80563
2.14072
2.70725
8.53606
2.16595
8.86558
6.5891
18.7758
13.1374
13.223
18.5392
6.8783
9.00639
2.19761
2.73199
6.90932
2.18428
8.96527
18.923
13.3467
19.0519
13.2875
40.518
38.8348
22.4325
7.35665
45.097
5.50414
44.7814
5.46872
22.5757
17.4678
4.2456
3.43004
12.8026
4.28276
13.2618
17.1343
17.5731
13.4596
4.34018
3.46099
4.31534
17.6568
13.3957
22.6664
47.5723
22.6705
9.81659
15.3993
15.4774
47.553
22.5491
22.661
22.0277
46.2134
22.0529
9.65995
15.2918
15.1724
46.5216
22.3698
22.1861
3.95441
24.208
20.4455
3.52351
23.4429
3.60764
3.85468
4.19482
25.1485
23.8376
4.32074
24.4688
4.34127
4.16716
4.06413
3.73547
18.7111
21.288
22.5067
3.6843
4.17732
2.34878
5.98197
15.1751
2.20596
8.32752
3.35619
1.7578
3.18658
8.53985
25.8128
3.7186
15.271
4.36389
2.35949
3.56934
3.41825
24.3924
6.74375
15.2143
4.3666
3.72205
3.3412
14.6396
15.8012
3.18685
11.8958
3.27147
3.19265
3.89895
26.3198
25.317
3.28167
7.25475
4.50334
4.6377
3.49377
3.35692
13.2189
6.93455
9.29951
3.32795
3.74213
4.55448
24.2318
23.1928
4.48375
22.554
4.48713
4.58409
4.22745
14.9392
10.9818
3.97778
16.9155
3.7271
4.28992
4.28339
3.76371
19.9894
12.8255
18.6138
4.27653
3.76711
23.785
45.8893
21.8871
52.7611
6.90968
2.0608
2.52139
7.81759
2.02926
6.14758
9.86005
18.3275
12.9368
12.7146
18.1751
5.61767
7.42102
1.92339
2.42722
5.38936
1.94901
7.74651
16.6598
10.3192
15.4045
11.6974
32.8414
37.5359
151.623
15.0963
3.9967
3.05794
9.74685
9.73779
3.99786
15.1299
21.5857
7.32976
5.28887
44.6589
5.30353
44.9413
21.4619
15.0417
9.69428
3.06915
4.00078
9.7185
4.00739
14.9629
15.5701
4.14189
3.18053
11.9426
4.07163
16.3952
10.6921
21.332
7.23579
5.28009
44.323
5.27031
44.1242
21.3365
15.0921
9.72373
3.10937
4.00728
4.01889
9.93286
14.9263
4.18968
26.2838
4.38772
25.3492
4.16269
26.2013
4.40411
3.8606
25.021
24.3623
3.46465
25.7795
3.7798
3.56575
4.11353
4.05779
25.0873
24.6907
25.7827
4.32795
3.83001
3.79969
19.849
4.0525
21.3199
3.8195
20.6771
4.04608
3.66964
19.6935
20.5397
3.55052
20.5249
3.59119
3.57273
3.72307
3.86417
22.0594
21.4045
21.1835
3.9796
3.60792
4.60627
23.2383
4.52366
24.3856
4.6017
23.3158
4.53599
4.54987
20.8481
4.32596
21.9331
4.5027
22.1623
4.34939
4.53804
4.21447
24.2427
22.8946
23.2655
4.46429
4.31127
3.0912
17.2568
21.8952
3.12258
19.4761
3.06792
3.21634
3.3732
17.8475
20.1732
3.50106
19.3547
3.48403
3.4736
3.2678
3.69121
22.7424
21.2951
20.7848
3.4649
3.45118
4.281
26.3068
4.24771
26.331
4.18027
26.3384
4.30623
4.32294
25.8949
26.0373
4.46178
26.0905
4.2984
4.48094
4.42179
4.57047
26.4163
26.5025
26.4313
4.4239
4.58609
5.28489
28.5462
5.13405
27.9721
5.27404
28.743
5.117
5.06548
29.218
28.5637
4.92151
29.0189
5.0022
4.97348
5.09328
4.88128
27.5163
27.9089
28.2047
4.94274
5.02873
4.7197
28.3414
4.51609
26.8434
5.08075
27.3918
4.48156
4.94875
28.2799
5.05427
27.749
5.23335
27.8012
4.96417
4.68974
4.70109
26.8917
27.2804
27.1996
4.56527
4.77887
4.77534
25.6936
26.0489
4.63593
26.2766
4.74538
4.65647
4.88971
26.8777
27.6073
4.78979
27.3126
4.84918
4.84676
4.90312
4.74433
26.6442
27.1867
27.0634
4.77141
4.87415
5.65028
43.326
21.9764
7.19135
5.51792
21.893
7.57664
4.48376
16.1818
3.56638
10.7478
4.53742
3.53268
16.0401
4.40627
3.51016
16.2939
10.7873
4.3854
3.49401
15.9418
2.37169
7.74734
2.90871
9.67465
2.90155
2.37475
7.49723
2.34247
2.95947
8.90269
7.95072
2.86503
2.40241
7.01315
2.30688
6.18386
2.82228
8.28003
2.31642
2.80675
6.18382
2.29438
2.80933
8.34957
6.48848
2.7884
2.30725
6.23393
4.87885
23.2149
19.6486
5.86525
4.79049
19.4303
5.98173
4.03154
17.2224
3.38188
13.7991
4.03715
3.37493
17.1498
4.08173
3.39909
17.408
13.8223
4.05325
3.4118
17.1847
2.34763
7.79698
2.89155
10.0573
2.87601
2.35925
7.74903
2.30382
2.78917
9.90003
7.53481
2.82334
2.27701
7.63434
2.22934
7.32061
2.7369
9.43675
2.22636
2.74438
7.26154
1.83639
4.18146
1.54217
5.42261
1.82943
1.52838
5.35293
2.2479
2.74941
9.44739
7.33624
2.77108
2.23556
7.25479
9.1822
11.5846
12.1643
22.1961
4.34752
17.5322
5.20583
17.8028
21.4472
5.01361
43.5396
8.73945
9.47612
159.454
6.95157
149.232
17.2852
33.4601
16.5406
9.88128
13.5468
12.8333
30.3406
46.5017
5.70112
8.55126
27.7421
81.1237
5.90313
15.8571
32.892
16.0995
28.7669
5.0066
6.55851
76.7814
4.95412
26.994
69.713
16.1607
7.19825
2.74339
3.50231
3.68327
7.68014
14.4784
29.1602
4.40098
10.9584
4.73056
12.7252
19.1111
5.62414
247.862
7.33251
7.65451
9.67336
15.7172
3.63786
2.7516
7.0206
3.70371
7.594
13.2617
27.8882
6.34507
4.57613
48.6318
4.8503
23.4397
61.5048
61.3066
63.3409
5.97456
10.0138
35.1188
263.949
7.49782
1.50873
1.83509
4.37456
5.2832
1.49588
4.02982
1.84793
1.52554
4.1928
5.56349
1.88334
4.14398
1.52139
1.87717
30.3056
6.12135
5.8288
189.155
4.74215
29.004
19.0978
4.19377
17.8719
5.24201
15.6723
21.7207
4.5865
10.0014
6.34997
3.71498
2.63631
10.8362
6.07172
3.51939
12.1046
3.4428
8.6526
4.15047
7.35048
13.8615
4.0077
32.5657
6.72209
5.41348
36.1642
5.09175
10.1319
3.86999
2.55829
6.8655
6.17457
3.36183
11.0795
22.4064
33.8821
5.49507
5.02864
26.6194
25.9975
4.7552
7.6253
11.2857
11.1676
13.937
9.59271
12.0516
13.2308
9.89814
12.0257
16.084
30.999
15.5884
7.53937
11.4493
11.1887
219.606
7.55128
7.8296
10.0258
15.7333
31.4874
15.6042
1.6009
1.99005
4.44405
5.85455
1.60885
4.33561
1.99793
1.52643
4.19069
5.72561
1.85921
4.23265
1.50216
1.88458
15.4404
3.65516
13.7993
3.60936
14.2153
14.6493
3.72596
20.792
6.95987
55.6195
4.72401
22.9632
46.8099
4.4266
16.6928
16.2622
3.62021
3.87794
15.4856
17.7434
3.83837
4.86585
18.5606
37.4728
6.42255
6.49546
18.9095
4.79327
3.97959
3.30315
11.9684
15.9124
3.21998
4.08736
15.4359
3.87027
14.5383
11.606
3.05382
3.12901
15.0126
3.79636
4.99506
38.3838
6.87057
20.1397
6.65099
5.14863
19.3943
12.494
8.32641
12.6423
8.2083
3.98282
1.69498
1.42813
5.04843
4.02736
1.41288
4.99096
15.8605
19.7263
15.4401
19.9362
12.2082
7.63138
8.00734
11.6622
16.1448
20.2776
16.31
20.1423
16.0377
3.49309
16.0592
3.44889
16.0863
16.0213
3.53083
16.4497
3.81954
3.78418
17.3924
16.5759
3.73597
17.2198
16.0405
16.1265
3.47919
3.6173
16.0321
16.1333
3.57195
14.4313
3.58613
13.7125
3.59421
13.7566
14.4366
3.57644
15.0893
3.50451
15.7276
3.48135
15.1187
15.7065
3.53022
15.093
15.8277
3.58293
3.50908
15.1482
15.7324
3.55786
4.59056
18.0482
6.30826
35.8718
17.5733
4.67952
6.21292
3.45486
2.62055
8.23559
11.8687
2.69826
12.2731
3.3514
3.56875
13.742
9.03366
2.92315
2.81285
12.9195
3.67159
4.4668
34.9103
16.5265
5.80802
17.0489
6.0593
4.31678
22.8902
9.84721
57.9095
4.95734
23.4108
55.7168
5.24272
18.3006
4.20011
3.84337
17.9065
17.0197
4.18366
19.1906
17.9568
16.5728
3.89612
3.67464
18.076
16.5653
4.02152
8.33904
13.9363
11.1754
6.64249
12.432
10.5868
15.8898
15.3114
13.6571
17.5622
17.5965
17.7037
19.0115
17.9599
18.2112
17.6331
17.566
17.7311
3.7654
18.6242
4.73735
14.5997
4.76728
14.4549
3.75408
2.95033
2.29935
9.28131
6.72349
2.87884
2.32524
10.2857
3.72556
18.5234
4.73046
13.3601
4.75125
3.67783
13.9999
2.9983
11.14
7.22527
2.38234
2.37212
10.8803
3.01025
8.37254
6.3447
43.7503
8.24491
6.58679
3.53268
1.54922
1.27177
4.35953
3.4692
1.28941
4.49249
13.4981
19.2746
14.6184
18.4271
9.21917
131.535
6.88751
10.6641
8.42555
12.8151
17.6901
12.734
17.7944
15.4068
15.8996
16.4901
17.2167
17.6167
17.2632
16.9575
17.6406
17.2236
3.81595
4.68124
14.6713
20.2615
15.2081
3.71133
4.84431
3.36067
2.52523
7.65583
11.6406
2.57639
3.20847
11.7724
3.03674
11.1856
7.48854
2.35404
2.39272
11.3722
2.97802
4.40231
28.6297
16.0892
5.34435
4.07324
16.5397
6.00567
6.934
12.7272
12.2113
15.3533
17.0987
15.0288
15.4733
16.8834
15.1823
1.25698
3.20559
1.18083
3.30375
1.19272
1.23642
3.08549
1.34189
2.43089
2.74591
1.46523
1.33443
2.74681
1.47351
1.24382
1.17454
3.23134
3.00787
1.17855
1.24208
3.02236
1.1128
3.67595
1.13337
3.44334
1.14545
1.10897
3.54009
1.06468
3.54313
1.01443
3.53093
1.03131
1.03715
3.51524
1.09415
1.10344
3.36416
3.46387
1.12857
1.06807
3.4587
1.52445
2.17228
2.52422
1.70866
1.52205
2.55559
1.70988
1.38305
1.27534
2.83392
3.17267
1.38393
1.2755
2.87584
24.1447
24.84
25.8867
29.294
79.6746
32.0433
28.8422
77.1201
32.0075
20.2351
5.09978
14.202
4.02719
14.4263
19.8411
5.2134
42.2096
9.53921
7.2548
7.23444
42.2571
20.3678
15.1086
4.07638
5.2944
14.65
5.26685
20.5257
259.473
68.2459
84.5913
6.61243
1.80048
4.74256
2.14731
6.20071
4.93491
2.19147
40.8952
20.0032
19.8605
41.3181
8.90421
2.79696
3.49025
13.3264
2.78046
13.1569
9.0247
38.959
19.2
38.0464
19.4229
8.55607
11.8341
2.67165
3.43183
7.86103
2.73558
12.6665
21.5497
23.6468
22.4901
21.4672
28.2261
23.0371
26.4753
30.7791
24.659
42.7323
9.63473
7.30685
7.33899
42.4961
21.3835
5.47107
4.32828
17.1124
5.45176
16.9785
21.4366
21.1842
15.8973
5.36036
4.27237
5.40275
20.8663
16.5972
1.47309
3.25341
3.33925
1.65091
3.33631
1.63313
1.49087
1.22923
4.38913
4.82768
1.7336
4.04339
1.43732
1.27391
1.23595
1.32337
4.05159
4.31976
3.98052
1.27154
1.33697
1.43837
4.05546
4.12614
1.50218
4.23343
1.48965
1.43819
1.41017
5.02007
4.97289
1.72229
4.62673
1.5218
1.50012
1.42133
1.38486
4.2623
4.60109
4.39971
1.39719
1.4421
2.09289
2.90895
3.23492
1.85711
2.95223
1.83562
2.10964
1.41381
3.82593
4.03323
1.51949
3.97694
1.48892
1.44271
1.36737
1.35006
4.10376
4.14794
4.05442
1.32043
1.38636
3.04546
26.7529
6.69725
2.95783
13.7298
1.89177
4.57888
2.27896
15.0241
5.67149
2.1554
8.07487
3.34919
1.70187
1.83415
1.40237
4.96611
4.923
6.18701
1.51602
1.52617
24.1532
24.5706
24.0294
23.4442
23.2214
23.4804
24.4642
23.569
23.8843
43.2023
41.2645
14.0723
20.7266
19.441
36.7392
40.0342
23.8594
24.8544
24.5014
23.4404
24.1155
24.0196
24.9833
24.7122
24.781
26.1222
25.3121
25.8431
25.4271
24.9614
25.6662
25.1608
25.0219
25.5858
24.0624
47.9842
24.116
14.6491
19.6105
19.1018
49.3434
26.4393
24.5441
23.7569
23.5303
23.7338
23.3409
23.7656
23.5448
23.7312
24.2241
23.8935
1.16596
3.66816
1.09406
4.15198
1.10454
4.09204
1.14118
1.43994
5.17098
11.3782
2.4311
5.48421
1.3844
2.49485
1.39709
1.98762
5.02363
9.71773
5.32138
1.30964
2.24388
2.29516
13.2583
1.76596
9.31175
2.23684
9.67103
1.90673
2.9395
17.7815
3.37929
15.1957
3.29917
15.077
3.11159
2.44307
2.29374
10.0063
10.8929
10.6773
2.07412
2.64006
1.12387
3.99388
1.07965
4.1928
1.08173
4.23216
1.12445
1.21917
4.54551
1.43278
5.48154
1.21323
4.62103
1.50218
1.23456
1.76933
4.77641
5.92895
4.6998
1.2562
1.61656
3.61419
7.35456
6.56645
4.13079
9.27757
3.95904
3.51382
3.37475
15.7812
3.42249
14.8189
3.51589
13.9388
3.21506
3.16489
2.57466
6.96491
10.9177
10.5222
2.94934
2.84371
23.748
22.8576
23.5625
23.9794
23.8787
24.0569
22.7491
23.2846
23.4342
19.9508
20.6392
20.8077
21.6016
22.3174
21.5761
21.3871
22.202
21.5489
6.91331
1.82406
5.10762
2.21825
6.8724
5.1162
2.2281
41.5678
20.1189
20.2438
41.4878
9.05735
2.8073
3.52555
13.3888
2.8044
9.06103
13.3714
41.5851
20.6578
41.4981
20.4272
8.9874
13.1574
2.77558
3.50663
8.92145
2.79099
13.2661
21.1931
5.35639
4.28285
17.092
17.0366
5.34269
21.2435
41.8411
9.26136
7.28336
7.14995
41.6804
21.0563
16.7364
4.25573
5.37757
16.9193
5.31439
20.8821
21.3835
22.0939
21.2957
19.5404
20.338
20.4113
22.0049
21.1285
21.2248
21.438
5.49402
4.36509
17.1818
5.48238
21.4891
17.1496
42.5493
9.67234
7.34054
7.38211
42.1369
21.2773
16.8607
4.34268
5.41872
5.45543
17.0163
21.0751
24.1002
23.9689
24.0409
23.6743
22.9833
23.5991
23.3354
22.7495
23.4186
1.89469
2.37625
1.6441
2.33512
1.66022
2.31875
1.88294
103.446
9.39388
8.70036
82.1996
9.04629
41.2644
10.3871
28.9381
4.89519
69.3647
27.1532
8.24442
32.2164
23.8699
5.92514
4.60318
29.6458
25.3011
6.80084
40.8913
7.16341
5.31825
21.0295
20.8096
7.09966
41.2431
14.0306
9.1243
9.21173
40.5441
20.5038
5.24198
6.9452
20.6003
7.01013
40.3826
8.61125
2.09127
2.63383
6.75989
8.70046
2.60738
6.68763
12.5161
3.15159
3.9627
15.6997
3.21264
15.9402
12.3603
39.0849
39.2875
12.6606
16.2951
3.30377
4.03377
12.7837
3.26965
16.1377
39.8306
39.6058
18.7071
3.87696
18.2249
3.97979
17.9733
19.0547
3.90932
19.262
3.83231
3.89075
19.8662
19.9521
3.88628
19.2011
19.4446
20.81
4.03283
3.95466
19.9162
20.1864
3.9462
13.5584
9.00516
8.89225
38.8391
6.35721
4.95941
19.3276
6.62459
19.786
36.9324
39.6043
20.2815
6.85
5.0573
6.76837
39.9721
20.0825
31.5158
9.98039
195.921
7.1829
42.4106
100.104
6.26729
21.8078
4.2857
18.8907
4.04996
20.3914
19.9385
4.47045
23.4049
22.4301
5.20816
4.14045
25.8181
21.0967
4.79221
22.3522
3.76589
24.0917
4.09236
22.9354
23.489
3.85951
21.3083
3.77791
3.88799
20.5236
20.6375
3.83809
21.167
21.6517
21.712
4.0877
3.95934
22.6059
20.9252
3.915
9.8713
11.4501
7.34891
94.3258
14.7117
31.282
9.34345
50.38
40.9628
22.2478
222.342
9.33479
14.0246
100.984
24.3876
43.6768
43.4491
13.9765
19.6183
19.6927
42.4111
42.8921
22.3219
21.2301
20.3776
13.2739
8.78743
14.8153
17.6964
10.1076
16.3219
42.2153
41.7169
14.4228
20.1962
20.1499
41.8382
41.49
21.6576
16.3156
20.5419
22.8071
21.6222
21.9313
14.608
18.7369
19.5997
32.5793
5.25154
28.5343
7.48963
27.8954
35.209
6.90942
40.4251
7.41245
14.8626
93.5049
108.411
8.33082
37.36
59.1312
13.3679
25.2709
84.6409
242.159
14.5499
12.5289
15.4459
15.0978
12.4999
17.7666
14.5217
16.6655
18.654
15.8359
19.913
20.0889
20.7008
21.5672
22.333
21.6102
20.5938
21.9995
21.3841
7.78095
1.90306
2.28097
5.67573
7.16647
2.36104
6.03351
12.1792
3.07043
3.96132
15.5466
3.16604
12.2513
15.8324
38.5837
37.1468
11.5875
14.2617
2.83355
3.59463
10.8016
2.93984
15.0367
34.6904
35.2321
21.1648
5.36054
4.28202
17.1058
17.0528
5.3326
21.2556
41.4565
9.15514
7.06156
7.08731
41.3349
20.953
16.9897
4.24496
5.25995
16.9465
5.27752
20.8988
32.4578
5.89046
5.00456
18.9676
6.69731
35.7243
19.664
48.4626
9.38396
7.09416
7.37381
41.8787
22.7341
17.088
4.36099
5.25678
5.44742
17.9068
20.9837
10.511
15.3281
14.5758
15.9425
18.8378
16.5958
17.0577
19.1971
17.0383
22.5969
20.7663
22.9706
23.5714
22.9431
23.4509
21.0977
22.4788
22.8242
4.7261
22.1781
18.6758
5.67786
4.68913
18.8268
5.7272
4.07806
17.3941
3.46773
13.9249
4.13462
3.42452
17.1522
4.00988
3.35131
16.737
13.7012
3.98327
3.37027
16.8693
2.2678
7.36035
2.79222
9.32391
2.79314
2.26957
7.30434
1.84786
4.50792
1.55853
5.54075
1.83716
1.56793
5.53925
2.24802
2.74304
9.323
7.30618
2.76352
2.2336
7.29816
2.26119
7.57669
2.81982
9.58861
2.28445
2.78757
7.48409
1.82927
4.51839
1.5476
5.55484
1.82673
1.54729
5.57942
2.23134
2.73485
9.44137
7.3356
2.74688
2.22447
7.37821
4.88086
22.3845
19.0658
5.9111
4.89116
19.0364
5.89469
4.15511
17.0117
3.48962
13.9528
4.13641
3.50279
17.0907
4.15284
3.50422
17.1332
13.9655
4.16046
3.49987
17.1126
2.28997
7.4155
2.79971
9.54115
2.8148
2.27804
7.48625
1.90264
4.69417
1.61919
5.77971
1.90803
1.61534
5.75418
2.31421
2.85189
9.63293
7.58967
2.84412
2.32086
7.55818
2.33433
7.58279
2.85641
9.6818
2.32899
2.86496
7.60356
1.91732
4.73286
1.62875
5.79512
1.91771
1.62863
5.79735
2.33059
2.86369
9.68753
7.60617
2.86156
2.3315
7.60626
12.0939
11.2296
10.7962
12.605
11.6148
11.8695
11.4753
11.8417
11.571
9.5103
11.0713
10.279
11.7979
11.8393
12.0037
11.7924
2.59627
6.66883
2.13472
8.72353
2.09233
8.47989
2.63939
3.1566
3.80567
11.588
14.6064
3.12988
11.7442
3.83461
2.55122
6.42936
2.02146
8.19432
2.04446
2.52684
8.32463
3.20577
12.138
14.7625
3.92611
11.9007
3.24601
3.89006
13.3077
42.6366
11.6057
12.9363
11.9709
3.61344
0.974141
0.970479
3.24961
3.52199
1.01837
3.33458
3.94557
1.27526
3.80203
1.1365
4.16525
3.65023
1.17483
13.1419
13.8052
13.956
12.9644
13.7868
41.653
13.1707
14.5941
12.4596
12.545
11.9445
12.1569
12.3323
2.85303
7.0849
2.22777
9.41382
10.4877
2.31576
2.72312
3.80642
4.30321
13.6736
18.0842
3.56725
14.4389
4.73421
3.0892
7.67547
10.9428
2.42478
2.96975
11.1874
2.476
3.45779
12.6292
16.2666
4.00151
13.4949
3.32249
4.15637
13.5024
14.008
13.4248
14.0543
12.9643
12.4083
12.4405
12.928
12.9711
12.3353
12.4362
12.8873
13.4845
13.9794
13.9908
13.445
11.1635
14.1345
14.0629
11.1986
7.91058
8.59183
49.8078
6.59642
8.68352
7.64979
37.8762
6.00993
6.13537
7.61577
11.3208
14.2351
14.0788
11.7676
32.2313
17.6488
33.1071
19.6177
8.66367
2.76073
2.3165
10.4714
7.09981
2.27794
9.50774
5.48213
1.82931
1.53261
4.3605
1.81357
4.43778
5.39788
46.1193
39.8549
6.49244
4.51516
1.8904
1.57258
5.72191
1.86959
4.98602
22.0342
16.6945
17.6419
20.1634
143.197
15.2427
14.638
14.5794
15.3071
15.9666
16.4658
15.9867
16.3885
3.02772
0.673457
0.689342
2.83498
3.0101
0.668877
2.85215
15.3494
14.4441
15.3209
14.5938
15.7838
16.2299
15.8675
16.1835
13.1544
13.9329
13.3228
13.846
11.4695
8.16071
10.0289
9.71156
12.4471
12.0479
11.4032
12.7652
12.6549
13.2983
11.4372
13.7283
12.2869
14.5127
11.4845
15.9464
7.97974
5.90584
33.5864
6.15955
7.58282
8.11836
33.9224
6.05189
6.2467
7.74617
11.9944
14.5707
15.2719
11.357
15.5095
14.7162
14.758
15.4193
3.23062
0.815365
3.34286
0.786936
3.35935
3.23358
0.786266
16.1498
16.3841
16.1229
16.4302
3.10134
0.733086
0.70952
2.88861
3.06467
0.733501
2.93046
15.4695
14.6547
14.6489
15.4862
16.135
16.3332
16.0088
16.4315
13.2247
13.8419
13.236
13.8279
3.24145
0.880962
0.9009
3.23071
0.893472
3.26461
3.21128
12.7594
12.3362
12.2569
12.8243
3.31271
0.842734
0.87918
3.30358
0.867822
3.32477
3.30281
3.27362
3.28723
0.897715
0.890387
0.898384
3.25496
3.311
12.6462
12.1239
12.1125
12.652
13.2765
13.8929
13.308
13.8735
16.3525
14.7252
15.3875
15.6153
19.0921
26.2732
22.8608
20.0971
3.77146
1.08369
4.17194
0.91293
4.46002
0.91282
3.71904
3.22708
0.848764
0.806476
3.14742
0.832871
3.13211
3.27779
18.0172
18.7136
20.5801
16.7608
3.31748
3.26669
0.851561
0.826241
0.836933
3.34292
3.23335
16.9968
16.4647
16.1646
17.4007
8.22829
12.3385
12.2798
8.28357
6.2517
4.70842
35.1309
18.0337
6.20887
4.74455
35.4316
8.12763
12.0689
12.1178
8.07768
6.33216
36.0782
18.2126
4.85372
4.81135
35.7689
6.38217
19.3858
15.7475
19.3885
15.8
6.83136
2.55764
2.07356
8.7013
6.80659
2.08048
8.72921
5.20322
1.75525
1.45918
4.27702
1.72375
5.2831
4.20989
38.1818
38.5992
5.16614
4.15348
1.70092
1.4435
5.14473
1.70707
4.17537
19.4722
16.2814
19.682
15.9763
38.0602
38.0907
13.9051
14.0316
13.3953
14.6197
3.28593
0.936729
0.89809
3.18272
0.908197
3.27358
3.20065
3.60885
1.02196
4.01128
0.922445
3.90253
0.942744
3.66461
14.0495
14.2875
15.0843
13.3732
14.8534
17.2624
16.0705
15.7574
3.31521
3.26104
0.884843
0.86778
0.887825
3.23421
3.33696
13.2433
12.2608
12.669
12.793
8.6069
12.4292
8.38742
12.6116
8.36956
5.50023
30.0565
6.22864
6.91645
134.879
6.78966
37.319
20.7245
4.94283
5.15106
43.6745
6.49448
9.3457
13.8395
10.4889
13.0901
15.3565
14.5298
14.524
15.3829
3.27502
0.836268
0.872068
3.31214
0.845975
3.25444
3.32453
3.18023
0.792497
0.807044
3.15535
0.814442
3.16423
3.15015
15.9708
16.297
16.0455
16.2266
3.28781
3.30308
0.874951
0.835907
0.846001
3.33032
3.26623
15.4081
14.6233
15.45
14.5835
15.9064
16.2192
15.9282
16.1755
20.5867
3.51936
3.60355
20.0009
20.0464
3.57337
20.5173
21.1934
3.45258
21.8868
3.59692
21.7046
21.3379
3.53611
20.6647
20.1945
3.63169
3.65527
20.1079
20.7792
3.59603
41.7938
7.20636
21.2674
5.44245
21.4129
41.6315
7.22578
14.3369
9.43512
9.46866
41.7566
21.46
5.47433
7.22699
21.4765
7.24378
41.5909
18.2867
3.66713
17.7385
3.68406
17.664
18.3553
3.69893
18.936
3.79456
19.6021
3.77052
18.955
19.5732
3.76316
18.9105
19.5949
3.71194
3.73246
18.9742
19.5352
3.72539
12.9698
2.56204
8.782
3.14326
12.8518
8.86829
3.15589
16.0645
3.78362
4.47132
18.2256
3.77689
18.0718
16.1093
16.0751
18.0553
3.76475
4.46703
15.9964
3.77368
18.0731
18.9165
3.54297
3.6063
19.4633
19.4874
3.59361
18.9112
18.3602
3.56916
17.776
3.6523
17.7756
18.3827
3.60309
18.9495
19.5965
3.63838
3.68082
19.5342
18.9901
3.62859
21.3481
3.52401
21.9657
3.62071
21.9315
21.3923
3.61766
20.8274
3.75047
20.2433
3.76489
20.876
20.2055
3.72213
20.761
20.2084
3.68188
3.72565
20.8108
20.1537
3.68368
14.1322
9.41536
9.39163
41.4491
7.26373
5.48728
21.7993
7.21271
21.431
42.5561
41.3972
21.4239
7.22116
5.48066
7.20894
41.4405
21.4133
21.3812
3.47553
21.6817
3.44039
21.584
21.3829
3.40445
21.1537
3.30158
20.9465
3.29581
20.7754
21.287
3.36213
21.1607
20.4727
3.44493
3.33261
21.0782
20.6745
3.40615
41.054
40.8358
17.6875
21.1281
21.0184
41.1317
40.9241
15.0681
3.66489
16.4975
3.5784
13.66
17.6336
3.54366
12.5184
3.11928
3.15871
9.90888
13.8142
3.22121
8.70167
16.2457
19.2118
3.49989
3.36947
18.5259
17.2291
3.44541
20.9946
3.56633
21.6488
3.47131
21.4772
21.2617
3.51624
19.9472
3.67698
18.0546
3.57811
19.179
18.9586
3.58677
20.4963
20.1411
3.4792
3.48986
20.8647
19.6441
3.52829
42.802
42.2679
17.7485
21.2535
21.3847
41.3803
41.6826
19.1523
3.19089
20.5365
3.30342
20.3107
19.5268
3.22157
16.0164
2.84845
3.10794
11.0732
15.0087
3.04121
12.2796
18.6624
19.7163
3.34089
3.31928
20.07
18.0333
3.26228
20.5675
3.51735
3.49253
20.0988
3.47089
20.6007
20.0868
20.886
3.36702
3.36376
20.9398
3.42351
21.2532
20.625
20.4739
19.8044
3.47465
3.39939
3.46365
20.0105
20.2438
91.8523
175.86
15.5549
2.54823
16.639
3.08089
14.1429
2.70151
17.5786
13.1671
1.85871
2.47252
10.3153
2.33332
14.6804
8.81349
16.7046
18.923
3.18958
2.95744
2.8189
18.2927
17.7726
12.4395
2.58194
8.44105
3.21671
12.2389
8.5547
3.18485
16.9971
3.84717
5.19627
18.952
4.18995
16.3725
20.9721
15.5983
18.7528
3.91582
4.6485
15.3549
3.84316
18.8805
8.64773
6.62119
38.0594
37.611
8.55814
15.8782
12.6003
12.7027
37.154
6.58385
8.4458
37.4782
8.52308
19.0479
3.52334
3.49437
19.5713
3.4742
19.0259
19.5785
18.4453
3.32445
17.5803
3.28318
17.8761
3.39563
18.2132
18.9897
19.3178
3.46846
3.3433
3.43792
19.5126
18.7834
155.593
7.51612
6.84029
23.6636
9.24237
49.3344
34.5857
15.0533
12.1933
11.3959
35.7295
5.97841
8.15635
7.51106
35.4534
19.4011
3.21451
3.34588
20.5464
3.19655
19.6177
20.27
16.7613
2.23867
2.57228
11.5169
2.68403
15.8564
12.603
19.0119
19.4577
3.35742
3.08275
3.15855
19.9079
18.4726
18.4275
17.8415
17.9924
18.2635
18.9782
19.5408
19.4392
19.0667
3.11606
0.773179
3.15758
0.760206
3.11495
3.15946
0.760539
3.02735
0.757609
2.93757
0.751834
2.99065
2.97347
0.756882
18.8725
19.1336
19.3197
18.6962
18.5229
18.1283
18.075
18.5937
3.04455
2.99089
0.752773
0.74827
3.04579
2.98975
0.754575
11.5357
8.02123
11.711
15.5937
14.745
14.483
8.16729
12.1765
11.9529
15.4798
3.35171
4.05164
13.4722
15.7192
4.00088
12.8909
18.7005
5.23731
5.93257
34.3941
4.69039
34.86
20.9416
18.5714
36.459
4.94451
6.31128
18.8336
4.86836
35.0763
16.8612
17.3038
16.9323
17.2283
16.6411
16.6125
16.5275
16.6881
2.80757
0.673868
2.80999
0.704537
2.79736
2.84077
0.679569
2.80915
0.700791
0.737155
2.85937
2.78824
0.707672
2.87926
16.5464
16.3794
16.3481
16.6047
2.82203
2.89281
0.714318
0.711496
2.87299
2.84372
0.698867
16.8643
17.2563
17.2282
16.8942
16.2162
14.9305
14.8236
10.0169
7.46176
155.05
11.211
12.2906
8.10218
12.0038
17.1782
17.4353
17.5733
17.0525
3.07649
0.768898
3.1434
0.757556
3.10057
3.1196
0.754739
16.8626
16.5499
16.5642
16.8705
2.97703
0.734911
2.88484
0.726054
2.94119
2.92098
0.738621
16.8238
16.4626
16.5477
16.7131
17.2317
17.6818
17.6409
17.2575
3.01033
2.97918
0.748952
0.7336
3.03329
2.95542
0.744694
18.0261
17.7002
18.1112
17.6204
2.83347
0.745398
2.83591
0.740416
2.79549
2.87663
0.737853
18.4326
18.8765
18.8498
18.4637
2.78447
0.777308
0.758408
2.86765
2.79376
0.776991
2.85722
18.4386
18.9522
18.8565
18.5304
2.85285
2.90235
0.734895
0.722015
2.89757
2.85521
0.729988
18.0215
17.6468
17.6172
18.0515
21.1913
22.3141
22.4096
21.393
20.5803
20.0881
20.4141
20.2737
3.3406
0.855245
3.83115
0.990147
3.81939
3.3959
0.856789
3.14176
0.808464
3.07124
0.838693
3.05963
3.14539
0.825343
20.7708
20.9379
20.6347
21.0553
21.0866
22.5454
22.6242
20.8279
3.33635
3.64614
0.986266
0.865844
3.7814
3.31628
0.864022
41.4539
41.6939
18.0244
21.5528
21.5316
41.9964
41.9237
27.9924
24.1546
30.0661
23.8647
35.0645
82.7259
100.107
31.889
13.0399
3.70335
5.88063
2.61108
24.4201
11.795
2.45718
4.66233
1.17438
1.02982
3.6494
3.79715
1.26384
4.27435
53.0101
232.356
76.3599
5.52089
4.18198
1.54242
1.07088
5.8314
4.00788
1.42573
26.323
23.792
23.7343
25.6118
41.6064
41.7852
17.9336
21.5469
21.4885
42.0068
41.916
49.1491
24.7706
26.2608
32.8834
10.3768
2.01168
4.99398
1.33216
5.23374
8.94716
2.21341
21.8941
2.68562
6.88941
2.70497
7.91981
12.0782
3.21236
210.758
91.335
69.4106
28.5661
27.966
70.433
11.9805
4.48213
1.30509
1.6989
5.19818
6.54548
2.19811
21.9816
22.3896
21.6646
22.5669
3.12836
0.874105
3.07657
0.858311
3.06847
3.14313
0.877648
22.1174
22.4377
22.0497
22.4924
3.23974
0.908645
0.937139
3.34646
3.41849
0.894207
3.19293
21.7455
21.289
21.6642
21.3869
3.27129
3.55711
0.873689
0.938428
3.29653
3.48995
0.880709
22.3198
23.0957
22.8068
22.6731
19.1267
19.1691
18.5271
20.0528
19.2702
19.603
19.1153
19.7785
3.27165
0.786931
0.796416
3.20516
0.798783
3.20972
3.26178
3.39879
0.844948
0.904691
3.74419
0.833359
3.41402
3.58948
3.37266
3.41349
0.809304
0.862883
0.818207
3.34354
3.48451
18.758
18.1474
18.6252
18.2494
19.739
21.9683
20.3194
21.0377
19.4781
18.9359
18.1735
20.2949
23.639
29.1402
21.4175
39.3016
3.53132
0.892989
3.211
0.837028
3.37591
0.948559
3.29047
4.97131
1.51535
9.16137
1.31063
8.55594
1.2053
5.43012
18.6549
16.9277
17.9744
17.5075
27.2579
95.9082
76.2263
30.1019
3.75608
3.51054
0.871316
1.11205
1.02755
3.39181
4.05113
15.5679
3.13367
3.71761
12.6035
15.5172
3.72547
12.6409
17.6646
4.57099
5.37677
23.0882
4.43293
18.6101
21.0242
17.4076
20.4494
4.3781
5.31196
17.3357
4.38901
20.5562
8.76539
6.86364
38.73
39.0592
8.83485
16.0798
13.2049
13.1823
39.4804
6.9278
8.92707
39.3433
8.90201
9.23798
7.08952
48.0869
9.02624
41.0905
15.9671
13.1974
13.1443
39.6036
7.00019
8.95028
8.95473
39.8352
17.4162
18.4011
17.9532
17.7258
3.21278
0.781308
0.791713
3.18887
0.789619
3.16426
3.24032
3.23058
0.789353
3.20234
0.79446
3.18815
0.789394
3.25493
16.8477
16.4988
16.4766
16.8443
16.9242
16.6146
16.4904
17.1289
3.27344
3.3582
0.800165
0.806318
0.795714
3.3097
3.3086
17.282
17.6864
17.2481
17.754
24.9727
19.8892
21.3487
21.8159
6.2137
1.79003
1.1184
4.65418
1.56867
7.77274
4.27265
7.28642
1.84358
9.41555
1.45755
7.81395
1.63529
6.14121
156.608
83.8638
181.509
40.6079
5.17462
3.7071
1.03368
1.23388
1.38032
3.95898
4.48916
32.9074
27.2424
63.5686
23.6823
4.44488
19.5727
16.9544
5.28079
4.46421
16.8935
5.26348
3.84521
15.5137
3.3114
14.3314
3.8101
3.36866
15.7506
3.88978
3.45113
16.0204
14.6761
3.91301
3.42277
15.9223
2.53806
8.64672
3.03994
12.4522
3.0509
2.52972
8.66865
2.07765
5.26173
1.73364
6.79409
2.06884
1.74059
6.83395
2.52863
3.0269
12.4205
8.59445
3.03978
2.51737
8.64566
2.4014
7.35318
2.81257
11.5634
2.33608
2.89208
8.01329
2.0169
5.1054
1.70788
6.71613
2.03797
1.69232
6.61221
2.45332
2.98331
12.0293
8.4955
2.95257
2.48
8.35434
1.30336
4.33947
1.48432
3.70949
1.48956
1.29895
3.72844
1.27057
4.22167
1.46271
3.6699
1.45132
1.27979
3.63371
1.26969
4.14916
1.4399
3.60139
1.43662
1.27245
3.59778
1.27103
4.14611
1.43892
3.59887
1.43898
1.27078
3.59241
4.23329
18.4946
16.098
5.03372
4.26565
15.9909
4.9918
3.72473
15.0506
3.29748
14.0078
3.72319
3.29736
15.0846
3.72243
3.31502
15.2334
14.0566
3.74867
3.29481
15.1371
2.49681
8.55281
3.01519
12.1511
3.00333
2.50798
8.45807
2.02135
5.07549
1.67015
6.51583
1.99398
1.69084
6.58962
2.46578
2.92102
11.9696
8.23131
2.9703
2.42887
8.3279
2.38117
8.05767
2.85979
11.5707
2.38396
2.85806
8.06321
1.95453
4.94064
1.64486
6.43855
1.96209
1.6397
6.40665
2.37729
2.87031
11.6074
8.12919
2.85492
2.38812
8.085
1.26687
4.18973
1.42979
3.57471
1.44582
1.25486
3.60675
1.23895
4.08821
1.41037
3.54113
1.40717
1.23991
3.53261
2.59826
9.98931
12.1995
2.71924
2.46186
10.8531
2.81797
2.50932
2.40332
8.25406
10.7218
2.22762
10.0231
2.65644
2.33538
7.72301
1.89093
6.81497
2.03573
2.17087
8.99435
2.72874
12.3498
11.7121
2.98876
11.4427
2.91385
2.83811
55.9989
48.2649
6.74884
1.85109
7.98592
2.17347
7.85545
6.9076
1.84681
31.6315
20.1331
26.9292
52.757
19.9825
33.1704
66.8693
5.36725
1.37341
4.43922
1.56496
4.4957
1.57709
5.19775
29.6327
40.4662
21.0207
20.2026
206.658
27.2881
63.6144
237.367
70.0153
6.55797
7.52453
2.16093
1.81614
7.71141
1.834
6.32399
13.3061
3.67616
3.23622
14.3852
13.4836
3.21577
14.3463
11.234
2.71916
2.33947
7.77686
2.7608
8.41061
10.8426
11.8184
10.0417
2.86216
2.41761
12.33
2.81906
9.35279
2.8696
12.0478
2.78885
13.3916
13.1942
2.67327
2.96169
2.92704
2.97742
13.5483
14.4288
13.7687
2.8189
3.02107
2.76293
11.1117
12.0153
2.36378
12.7801
2.62639
2.53507
2.99795
14.0051
14.4863
3.07216
13.896
3.04545
3.04813
2.14553
9.03132
10.1875
2.58243
2.29613
7.85482
2.4398
1.73054
1.43137
4.89367
6.7611
1.49353
1.63413
6.15246
1.87878
6.56034
1.7122
6.1866
1.61157
1.99887
8.41778
1.99333
9.04627
8.58283
2.10395
1.87231
6.70696
2.27861
34.6673
40.0589
19.9363
14.9207
17.6734
16.3319
4.5815
1.32143
4.30627
1.53647
4.10318
1.49673
4.93207
5.98036
1.61774
1.97668
6.35519
1.68045
7.66787
4.98496
20.7625
20.8867
19.0718
24.0006
5.46773
7.16421
1.77856
2.03896
1.72863
5.9705
6.51754
30.1955
40.1213
124.474
19.6291
3.07621
12.9515
2.90042
13.5101
2.98585
13.5536
3.03084
3.12354
3.11983
14.0951
14.663
14.116
3.13436
3.11634
3.09742
12.981
3.07238
13.5355
3.0348
13.557
3.11688
3.11591
14.0892
14.662
3.09923
14.116
3.08735
3.11765
2.96708
3.04104
11.7464
12.3048
2.98194
11.6922
3.04303
2.79608
2.50751
9.89955
10.9876
2.57394
2.74548
11.0342
2.82477
11.0929
2.67459
9.97706
2.61322
2.86974
11.024
2.95942
12.3123
11.7402
3.02551
2.91453
11.7103
3.04886
3.14343
13.7277
3.05548
13.8629
14.4028
3.14823
3.05953
3.38125
3.77734
17.4139
17.1608
16.2529
3.72393
3.353
3.38576
14.6223
16.4351
3.65894
15.4191
3.68686
3.38125
3.12985
14.4982
15.747
3.01378
15.0745
3.05148
3.08963
16.8479
32.9675
33.0526
16.8106
4.65459
1.48077
5.84703
1.77586
6.03519
4.54433
1.49237
13.628
11.0838
11.3198
13.4804
16.8067
31.432
32.8117
16.5182
4.69198
6.12643
1.79549
1.54207
6.10151
1.50778
4.70742
13.7295
12.0198
11.6817
13.7827
12.6831
3.52785
3.02032
14.1924
12.9183
3.06242
13.9503
10.5303
2.67993
2.21215
7.5425
2.65778
10.6343
7.42955
10.4875
7.47751
2.60499
2.18561
10.6551
2.62706
7.39022
3.11315
13.0521
3.03078
11.952
2.99197
3.1331
12.3861
3.32206
3.53439
13.2306
12.0661
3.28638
3.56193
12.4628
3.33206
13.85
3.61665
13.9018
3.57939
3.35679
13.1064
3.09127
11.3243
2.75949
11.3074
3.00667
2.92531
11.7741
16.6202
32.4894
16.6579
32.2943
14.1108
13.3037
12.6192
14.7124
4.62073
1.57022
1.82611
6.05394
1.54512
4.73145
5.93081
4.58395
5.92339
1.51055
1.80062
1.51797
4.58915
5.87857
13.8192
12.2442
12.3387
13.7896
16.8004
33.9387
17.4388
32.6136
3.10532
3.077
12.9073
13.6114
3.08759
3.0888
13.5084
3.12889
3.11078
14.0741
14.6319
3.132
14.0642
3.10199
3.12471
12.8998
3.08912
13.5078
3.1218
3.10091
13.4859
3.10581
14.2283
3.05029
14.6922
3.08554
14.1039
3.07472
18.4005
18.0701
18.0465
18.4523
18.6651
18.9539
18.9472
18.6963
18.7363
19.1675
19.0516
18.818
18.3617
18.0904
18.0325
18.4088
11.3949
7.79012
11.3295
14.7281
13.7328
13.7081
7.82369
11.4608
11.3233
17.0949
17.603
17.255
17.45
16.7313
16.5528
16.6039
16.6745
16.8185
16.8051
16.6798
16.9942
17.0277
17.3338
16.9619
17.3973
16.7319
3.55953
15.4936
4.63407
18.7703
14.2783
4.20143
31.7615
5.97646
7.2908
5.74697
33.443
31.1206
137.902
5.97138
6.59925
30.7717
5.30984
17.3863
17.7022
17.7048
17.3648
17.0362
15.5826
16.3702
16.8099
17.1342
16.8787
16.7924
17.1231
17.4025
17.7775
17.7117
17.391
18.2277
17.9815
18.3759
17.8328
18.6066
18.9963
19.0032
18.575
18.6127
19.1236
18.9886
18.7558
18.204
17.7366
18.156
17.7923
15.0021
13.9097
14.2576
13.9966
10.7121
13.4805
11.9003
9.78058
12.6472
18.4754
17.5012
18.1445
17.9308
18.8652
19.0495
19.1595
18.8033
18.7374
18.8793
19.0837
18.4706
18.6556
18.2207
18.1845
18.6333
18.3791
35.9352
36.0653
14.1578
16.187
15.5154
14.9862
10.7791
6.23165
9.63683
7.38445
13.1981
13.7278
12.0882
14.7101
11.9976
9.76438
13.1198
8.59283
17.3604
17.0539
17.8006
16.5
17.3981
17.5038
18.0219
16.8041
17.852
18.6784
18.4008
18.2026
16.8106
14.9728
16.1021
15.8221
17.9367
35.5754
35.0301
16.2811
16.7388
17.2532
15.6719
15.3079
11.7283
15.2796
12.2602
16.6677
17.6673
17.5758
16.7924
14.8597
10.9592
14.0673
11.9389
18.1959
17.5162
17.9241
17.9091
18.4969
18.8767
18.6523
18.6813
18.2757
18.1013
18.3963
18.0042
18.3919
18.1904
18.5457
18.0819
10.3658
15.419
12.766
13.0256
7.33231
5.09157
34.6896
38.303
133.12
5.91607
6.09612
7.38609
42.1056
8.55299
6.14372
9.32064
7.50534
84.6685
8.0629
9.78696
7.44671
17.7344
3.85942
15.1652
4.63242
17.8232
15.0914
4.61809
34.1746
5.99543
7.62154
5.99397
34.0232
34.2745
6.04544
7.65154
34.3973
6.02164
13.7506
11.3238
13.796
15.7165
14.7011
14.7463
11.3152
13.7445
13.7829
15.8975
16.6859
17.3391
14.604
14.8595
14.0146
11.9079
16.097
13.259
7.84795
9.68272
11.4113
16.6755
17.7911
17.1776
17.6237
13.5768
11.0988
13.4985
15.4104
14.5954
14.4986
11.151
13.6501
13.5789
16.0352
16.6947
17.3823
14.789
14.162
10.8249
14.89
9.91746
16.5351
17.6762
16.7652
17.5873
13.1627
7.43354
11.5063
8.88517
2.78015
16.7179
16.5764
2.73456
16.7181
2.75387
2.75768
2.81641
2.83525
17.2518
16.9467
2.82951
16.9558
2.8239
2.81499
16.9501
17.2489
2.80839
2.82911
16.963
2.793
2.78214
16.5325
16.6743
2.75955
16.6977
2.75291
2.79009
13.6844
12.9316
13.7782
14.8683
14.1547
14.1101
12.9857
13.8775
13.8375
31.9045
4.40065
5.70293
16.5694
31.7907
5.69507
16.6384
7.23771
10.6863
7.2729
7.30968
10.718
7.29873
2.91245
16.1005
2.78759
16.434
16.0284
2.91147
2.79176
3.00281
3.0221
14.9942
15.5079
15.5173
3.0381
3.00236
2.99729
15.6057
15.0289
3.05781
15.5405
3.04498
3.00156
2.92568
16.4678
16.0129
2.82222
16.0112
2.80922
2.93333
14.9183
14.1608
14.1543
13.7844
12.9686
13.8327
13.8809
13.0067
13.8752
2.91886
16.1769
16.4825
2.7919
2.79055
16.2063
2.91766
3.00351
3.07867
15.1913
15.7006
3.08029
15.7038
2.99627
3.01849
15.6782
15.1921
3.07604
3.08834
15.7041
3.01265
2.89917
16.4536
2.75584
16.2173
2.76901
16.2142
2.8878
2.71051
16.6653
2.70968
16.564
2.72917
16.6271
2.69372
2.74314
2.75437
17.0907
16.8756
2.76244
16.8415
2.73369
2.74624
16.881
2.77993
17.0868
2.76366
2.76422
16.832
2.70656
16.6099
16.6966
2.69606
16.6497
2.69319
2.69793
2.9154
18.9107
20.3648
3.36563
18.8143
3.33693
2.90467
2.82517
2.83765
17.9516
17.7275
2.81128
18.0792
2.84666
2.79916
18.5115
18.2346
2.76355
2.78087
18.3545
2.78082
2.91591
20.0976
18.1496
3.11258
18.5518
3.21929
2.9031
17.765
34.4814
34.8292
6.20912
44.3409
4.76897
21.7197
28.0802
11.8838
3.97202
12.6746
13.6989
206.725
29.3321
46.9284
25.2396
6.49181
13.0153
196.755
7.13501
79.2595
6.06458
23.9104
5.25319
20.9294
22.6235
3.28747
24.5885
3.59429
4.2014
17.3347
34.1199
33.9519
9.02264
65.0793
26.1315
4.81951
4.54364
68.9734
10.4945
5.70284
7.99559
141.649
8.75847
6.7988
6.19377
8.1692
8.86914
5.68964
7.77181
25.3674
3.83009
32.2664
4.18827
64.1372
6.16597
2.87691
18.9694
3.33553
19.7697
2.91327
19.0711
3.16513
2.7972
2.78964
19.0174
19.2716
2.80777
19.0511
2.76834
2.80053
18.6513
2.79185
18.7869
2.80171
2.80316
18.8387
2.84722
19.7094
19.3909
2.93968
19.2149
3.05219
2.79594
2.79171
2.77064
16.6392
17.4222
16.942
2.7532
2.82018
2.82525
2.83458
16.9608
17.3733
2.82298
2.83793
17.0296
2.78916
16.4706
16.6706
2.75605
2.78841
16.7183
2.756
2.83882
17.957
17.7234
2.98059
2.86706
17.3129
2.90538
2.98555
16.8197
17.7898
2.79351
17.5518
2.79072
3.14882
3.37534
4.00321
18.1905
23.0149
19.4279
3.34352
4.38713
2.99076
16.3836
16.4228
2.96052
17.1195
3.04661
2.87265
3.5955
22.3524
27.2846
5.95753
20.5417
5.04127
3.86841
30.2386
4.20084
5.02845
16.37
30.0631
5.37348
16.271
7.19059
10.4378
7.09844
6.26982
10.0542
6.83022
13.6451
11.1464
13.5147
15.1762
14.1507
14.2576
11.1749
13.4128
13.4025
13.7332
12.7496
13.6934
14.828
14.0617
14.033
12.5039
13.5067
13.6282
2.80747
16.5102
2.71577
16.4863
2.71501
2.78236
16.2893
2.95577
3.06376
15.1852
15.6989
3.04998
2.97552
15.7243
2.92199
16.0542
2.99303
15.2671
3.01932
2.89304
15.8311
2.84111
16.3786
2.73645
16.2074
2.86349
2.72745
16.2019
3.75186
18.3728
2.92877
17.8881
3.06734
3.43229
19.0524
5.49155
6.73272
164.082
78.4153
7.87939
6.51475
37.8282
4.75519
25.6855
7.25693
91.6245
7.7148
4.30791
28.0502
4.26945
18.7061
3.50499
23.9024
5.01436
3.27687
20.5952
1.24094
4.01056
1.39813
3.47846
1.40088
1.23843
3.48791
1.22076
3.97264
1.38692
3.47256
1.37552
1.22987
3.45966
3.88168
16.7966
14.5459
4.57145
3.89712
14.4939
4.5565
3.43221
13.8628
3.06939
12.8867
3.45126
3.05567
13.7952
3.4329
3.08455
13.849
12.8975
3.45079
3.06057
13.7815
2.54033
10.6346
2.97431
12.7369
2.93535
2.58396
10.2105
2.04769
5.3323
1.6691
7.63706
1.98897
1.70638
6.53037
2.44661
2.77838
12.1075
8.48416
2.8524
2.36098
9.4566
2.22612
7.52046
2.67024
10.7035
2.23073
2.66116
7.5124
1.851
4.7324
1.58794
6.32207
1.8907
1.55794
6.08963
2.23968
2.70336
10.7488
7.80626
2.67108
2.27673
7.57928
1.26362
4.27703
1.41997
3.90408
1.44208
1.2503
3.66428
1.18897
3.9364
1.36011
3.53285
1.33947
1.20361
3.42807
1.16616
3.37053
3.04521
1.04528
1.05778
3.3929
1.15288
1.30945
4.59095
1.49551
3.87426
1.49369
1.31095
3.87247
1.17088
1.0628
3.05077
3.39992
1.06159
1.17223
3.39918
1.30684
4.59244
1.49311
3.87468
1.49197
1.30823
3.86945
1.16139
3.38105
1.04773
3.03339
1.05028
1.16021
3.38546
1.16749
1.05897
3.39884
3.04174
1.16913
1.05688
3.39274
4.07673
17.2213
14.962
4.78499
4.09538
14.8283
4.76588
3.61119
13.9647
3.24449
13.6651
3.56957
3.27932
14.0554
3.63591
3.32113
14.3764
13.8448
3.65422
3.30448
14.2307
2.62032
10.7743
2.99642
13.2133
3.01048
2.60667
10.8445
2.20425
6.11481
1.82282
7.63185
2.20104
1.82459
7.65648
2.62984
3.01353
13.2244
10.824
3.02112
2.62469
10.8672
2.5772
10.4176
2.93101
12.695
2.55455
2.96001
10.4669
2.18168
5.98296
1.81807
7.56412
2.19293
1.80934
7.47933
2.60024
3.00095
12.8684
10.7231
2.98494
2.61405
10.6
1.32659
4.74878
1.52573
3.98459
1.5265
1.32495
3.97556
1.1697
3.38758
1.04993
3.03371
1.16431
1.0533
3.395
1.3249
4.66655
1.52441
3.95287
1.51804
1.32948
3.91949
1.17852
1.06731
3.05987
3.47512
1.06046
1.18314
3.42588
2.56918
16.4584
2.67097
16.3095
2.67045
2.58269
16.4555
2.57617
2.57658
16.6582
16.4875
2.6058
16.4967
2.5465
2.59045
16.5235
2.63058
16.675
2.61777
2.60553
16.502
2.55897
16.2851
2.63436
16.4334
2.6638
16.4582
2.54055
13.5626
12.6429
13.4385
14.287
13.5079
13.5778
12.5652
13.2803
13.3351
2.89312
15.563
16.1885
2.79464
15.6865
2.86153
2.81081
2.9524
2.9759
14.6327
15.3213
15.2386
2.91982
2.97767
2.91384
14.9726
14.4524
2.70175
15.1376
2.83029
2.85163
2.90873
16.2561
15.8267
2.81664
15.7619
2.92026
2.81392
4.8258
27.5751
7.10189
121.751
27.603
5.97504
9.91623
12.0144
9.56392
7.96004
11.5151
8.88149
2.76604
15.4114
2.7728
15.8577
2.75808
2.81595
15.281
2.53292
2.11491
11.4619
12.9756
2.29955
13.8679
2.37098
2.6377
14.7437
2.58038
12.6429
2.43745
2.75507
14.4591
2.68138
15.765
2.66406
14.7968
2.72837
15.1053
2.53916
2.63947
16.5199
16.4776
2.68315
2.6106
16.569
2.69392
2.68525
2.72918
16.9173
16.7204
2.70661
2.70845
16.7036
2.66723
16.6068
2.65808
16.883
2.69005
2.63487
16.6759
2.65583
16.4963
16.5683
2.69224
2.67569
16.571
2.69199
14.1219
13.4875
13.4468
13.2366
12.9969
13.277
13.2928
12.8663
13.2943
2.51099
17.2996
17.0051
2.42013
2.47319
17.165
2.45619
2.54962
2.56932
17.0139
16.8091
2.56432
17.0117
2.55113
2.52711
17.3573
2.49874
17.23
2.53967
2.48763
17.2199
2.53087
16.8244
16.7713
2.46552
16.9652
2.47382
2.52772
29.0461
124.281
2.44926
16.8287
2.37265
16.4553
16.3297
2.39465
2.40897
2.67955
3.11623
14.8824
14.5452
15.2299
2.76981
2.93553
2.48947
16.81
16.0437
2.4175
16.2034
2.52529
2.41181
2.59737
15.7749
14.8852
2.65811
15.515
2.5237
2.78544
2.48011
17.3425
17.1575
2.40989
2.4657
17.3765
2.4252
2.50232
2.50366
17.5659
17.6041
2.5151
2.49184
17.5338
2.49601
17.4089
2.4959
17.4822
2.50935
2.48229
17.4602
2.48721
17.1882
17.4915
2.42667
2.47781
17.4367
2.43335
16.6987
38.7388
32.88
2.41907
16.7828
2.38009
16.5345
2.41032
16.5016
2.40372
2.45574
2.37318
15.9328
15.5759
15.9983
2.39276
2.4809
2.41696
16.6309
2.40445
16.2791
2.4218
16.4003
2.38237
2.48208
15.963
15.5511
2.58741
16.021
2.49277
2.53954
2.43655
2.2082
15.6592
16.0779
2.34801
16.2892
2.317
2.48792
2.54963
16.4868
16.6256
2.51676
2.52684
16.5076
2.49165
15.9519
2.58369
16.3982
2.5193
2.50013
16.3749
2.44652
16.3695
16.5944
2.427
2.49665
16.4833
2.35947
1.53696
7.60605
1.87978
9.16324
8.28804
1.65205
1.74131
1.23289
1.07972
4.46521
5.24205
5.11439
1.12275
1.16718
1.34042
6.34728
5.29882
1.2762
6.47619
1.20276
1.44271
1.40748
7.57862
6.41691
1.50537
6.30899
1.61449
1.31687
5.37908
29.2409
6.93243
29.1016
6.84762
9.97773
12.2788
10.0035
121.525
111.397
10.2073
12.3511
10.0558
13.1555
12.8543
13.0295
15.5554
15.1707
13.6093
12.9681
14.3391
13.1552
2.01885
9.23854
2.05249
13.8994
2.22307
1.82915
11.1321
2.00439
1.93998
7.12181
11.6765
1.75296
2.20572
10.0775
1.79427
8.4775
1.42771
7.51721
1.58671
1.62166
8.12643
2.22428
14.9091
2.54688
14.091
2.40134
2.39652
12.8539
13.1781
13.0152
13.175
14.1824
14.0083
13.4421
13.1043
13.6865
13.2897
2.12115
2.06788
15.6239
12.433
2.20138
1.95366
14.8964
2.18473
2.26085
15.7531
14.3522
2.30084
15.2268
2.11432
2.22324
16.1411
2.35107
16.1254
2.31049
2.27906
15.8139
2.04424
10.8301
1.712
12.2141
1.8385
13.7343
1.93796
0.658089
2.69724
2.79205
0.60445
2.78337
0.661964
0.583683
0.890638
1.21838
3.66562
3.65773
0.975138
3.29756
1.0704
0.66522
2.62065
2.80367
0.551066
0.684323
2.77954
0.56561
0.819932
2.98047
3.37589
0.881102
3.07665
0.781101
0.955106
15.4107
14.7986
15.198
12.3992
12.2585
12.4884
15.3661
13.2006
13.1488
15.7868
15.3503
15.4337
15.8272
15.9537
15.5766
12.3112
12.5886
12.5419
14.6934
15.0014
15.0749
14.2047
14.8455
14.3606
6.44199
9.54458
9.44097
10.7772
12.2241
11.2592
13.6654
14.808
14.1463
13.72
13.3804
13.8722
11.5552
12.2978
11.4886
15.0866
15.3582
14.6186
0.588587
2.79999
0.605458
2.74592
2.78742
0.598509
0.605057
0.581711
2.71981
2.75302
0.581147
2.76192
0.59969
0.567389
15.6281
15.3356
15.8443
17.6604
19.9387
16.7849
15.486
13.2321
13.2552
12.6777
12.395
12.6567
16.1049
16.9404
16.3962
12.6179
12.396
12.6391
15.5715
17.7072
16.1171
0.668278
2.77554
2.79091
0.619543
0.665904
2.77878
0.627299
0.721737
0.754706
2.85825
3.11671
0.6821
2.85377
0.78874
0.660708
2.77922
2.76823
0.603498
0.629504
2.75589
0.624435
0.741667
2.92747
0.834083
3.14605
0.757081
2.88971
0.810134
0.572813
2.66779
0.592551
2.72
0.569218
2.66361
0.595125
0.545505
0.509818
2.43251
2.52281
0.516949
2.55417
0.53732
0.546899
2.57549
0.520445
2.44961
0.519358
0.544728
2.5733
0.571145
2.69512
2.60607
0.576738
2.64141
0.591651
0.560614
2.2958
11.468
13.0623
2.73447
11.5305
2.51232
2.5035
1.91155
1.53222
5.54228
7.20653
1.74596
8.38213
1.68152
2.1372
9.44551
6.54376
2.29387
2.00313
9.17587
2.37973
2.10273
12.8349
9.64938
2.0878
10.9956
2.31557
1.88164
31.827
3.16467
13.7584
2.89726
12.5877
13.2428
2.93998
3.10461
3.24029
3.23609
13.9794
12.6886
13.3005
3.04897
3.48598
3.03517
14.2744
14.3943
2.74792
13.8103
2.88818
2.85953
3.43175
11.9229
11.9893
3.58877
12.6736
3.33225
3.75771
31.0424
2.65502
14.158
13.8993
2.7537
2.59478
14.3912
2.79039
2.53733
2.38078
15.2619
14.7311
2.51592
14.9176
2.37426
2.65251
14.631
15.2069
2.66467
2.59819
14.8311
2.74859
2.48669
13.8904
2.22083
14.0792
2.42288
14.4827
2.30289
2.88937
10.925
2.93029
11.7002
2.69082
10.1442
3.19077
2.99287
3.54599
5.2899
6.44546
3.13367
7.37339
3.13964
2.82026
9.02967
2.5923
6.13635
2.84241
2.61101
8.2134
3.06124
10.9642
8.22206
3.81854
9.24068
3.48005
3.22342
1.25444
1.20495
4.74029
5.82185
5.68126
1.11862
1.37477
1.27196
1.34005
4.89174
5.48394
1.17354
1.46467
4.81332
1.11151
3.68232
4.18352
0.95038
1.03746
4.07636
1.0065
1.44487
6.90236
7.54425
1.84391
1.65022
7.09189
1.59306
1.11013
4.49688
5.00278
1.17463
4.38034
1.07885
1.22612
1.08175
1.03915
4.17482
4.42104
4.56264
1.02335
1.10875
1.02725
4.11535
3.83103
0.980956
4.00594
0.984632
1.00861
1.18609
6.37433
5.06829
1.40083
5.22593
1.23286
1.32988
15.3255
16.7164
15.8445
5.44272
29.0456
6.85346
29.7436
6.83957
10.2397
11.8467
9.92662
14.2864
15.0543
14.543
14.9377
14.793
15.2732
9.93279
11.9076
9.86666
14.9908
15.5873
14.7526
38.2578
121.057
13.2308
13.0189
13.2515
16.2475
13.8342
13.8892
12.9855
13.159
13.2377
120.361
19.0993
37.4808
30.1485
29.3066
34.9581
12.6998
12.3987
12.7471
15.8449
13.7044
13.5479
12.5182
13.0356
12.8831
15.6015
19.3999
18.1344
116.22
0.959577
3.87514
1.07881
4.19666
1.01861
1.00497
3.87469
0.873735
0.828741
3.29909
3.35344
0.866835
0.841905
3.33435
0.928929
3.71944
0.936365
3.57868
0.917074
0.951687
3.7023
0.890243
3.45273
0.88407
3.43385
0.856989
0.930341
3.37479
1.61909
6.13419
1.33096
7.87928
1.52615
1.40549
7.30662
1.9876
2.24279
13.2419
13.8985
2.06233
2.20387
11.8787
1.74885
8.11533
1.61284
10.6249
1.84851
1.53282
8.91149
1.86202
8.58556
2.0002
12.7427
2.10412
1.74801
10.2993
1.10757
3.30504
1.01802
2.92319
1.00609
1.12105
3.25237
1.22555
4.30778
1.38753
3.61575
1.3958
1.21881
3.64107
1.09767
0.993511
2.88055
3.18092
0.998692
1.09168
3.20228
1.2249
4.33598
1.38843
3.61852
1.39765
1.21936
3.65442
1.10553
3.59221
1.02075
2.95372
1.00512
1.12653
3.28662
1.09485
0.994387
3.18205
2.88588
1.09202
0.99627
3.20842
3.55002
14.6331
12.6853
4.11461
3.53451
12.7373
4.1343
3.20544
12.4451
2.95899
12.1132
3.22838
2.94468
12.3481
3.18833
2.93026
12.2184
12.0425
3.17577
2.93799
12.2638
2.49613
11.1887
2.7694
11.8389
2.74959
2.51233
11.1488
2.18437
6.55818
1.84017
9.23996
2.17626
1.84752
9.2689
2.47192
2.71323
11.7966
11.0835
2.72128
2.46335
11.1101
2.43832
10.4783
2.70767
11.749
2.42018
2.70594
10.8438
2.15765
6.43028
1.82942
9.19985
2.16478
1.82262
9.11085
2.4493
2.7034
11.7585
11.0512
2.70646
2.45225
10.9999
1.15875
3.53878
1.04988
3.10313
1.04635
1.16298
3.51993
1.31502
5.28209
1.53707
4.13714
1.54285
1.3103
4.15345
1.14981
1.03563
3.08619
3.48864
1.03875
1.14629
3.50178
1.13207
3.32172
1.01904
3.01231
1.12541
1.023
3.40116
1.29841
5.18305
1.52768
4.11628
1.52205
1.30203
4.08404
1.13687
1.02872
3.04444
3.47164
1.02682
1.13898
3.45048
1.15008
3.5694
3.1571
1.03881
1.04352
3.5571
1.14569
1.31127
5.27047
1.53244
4.15454
1.53528
1.30847
4.17023
1.14672
1.03451
3.14138
3.51599
1.03529
1.14421
3.53463
1.29843
5.24444
1.52332
4.14296
1.52242
1.29968
4.13957
1.13402
3.51088
1.02736
3.08707
1.02381
1.13811
3.49892
1.13453
1.02651
3.50213
3.08735
1.13582
1.02502
3.4974
3.64665
14.5008
12.8039
4.26771
3.66111
12.7538
4.2525
3.24649
12.0282
2.95445
11.9548
3.21607
2.98238
12.1519
3.26977
3.01835
12.3006
12.0358
3.28458
3.00404
12.2486
2.51159
11.2155
2.76795
11.9209
2.76581
2.51278
11.247
2.23158
6.69117
1.88821
9.44175
2.232
1.88783
9.43131
2.52656
2.78348
11.955
11.2878
2.78307
2.52688
11.2799
2.49492
11.0812
2.72285
11.8334
2.47251
2.74837
11.1786
2.21995
6.68468
1.88627
9.44296
2.2302
1.87817
9.4136
2.51331
2.78202
11.9114
11.2856
2.76848
2.52529
11.2491
1.16489
3.55713
1.05149
3.14865
1.05153
1.16471
3.57208
1.34231
5.39858
1.57573
4.26132
1.57544
1.34223
4.25315
1.1723
1.05713
3.16459
3.59557
1.05781
1.17179
3.58906
1.15631
3.54097
1.03523
3.14437
1.14757
1.043
3.56686
1.33448
5.39457
1.57379
4.26218
1.56692
1.34042
4.25137
1.16457
1.05548
3.16162
3.59668
1.05019
1.17011
3.58722
0.445662
2.36563
0.452203
2.26629
0.450036
0.445716
2.3931
14.4563
14.3311
14.6178
12.2217
11.7823
11.9988
15.3659
15.1784
15.0475
14.4125
12.2307
12.3357
14.6913
15.1903
14.8765
14.354
14.8353
14.7093
11.5619
11.6673
11.7726
13.4857
13.7629
13.41
6.23238
8.88577
8.97252
12.2348
12.8226
12.9783
11.3219
11.7589
11.0373
13.1369
12.5777
13.0569
10.7049
11.4662
10.8013
13.7219
13.2698
13.3552
0.499961
0.494934
2.31465
2.46771
0.480766
0.519442
2.4226
0.467285
2.37601
0.453835
2.27502
0.463598
0.44907
2.40642
0.510501
2.60339
2.54691
0.537735
0.536979
2.51318
0.505861
14.3656
14.0588
14.3032
14.801
14.5247
14.561
14.7026
12.2522
12.4738
13.4051
11.94
12.3248
14.5887
14.8203
14.5222
11.674
11.5696
11.8252
14.0393
14.2773
14.3171
0.718129
1.47628
1.54829
0.766221
0.769404
1.53469
0.715094
0.680082
0.592806
1.77494
1.90304
0.624978
1.71004
0.643864
0.719888
1.50813
0.699425
1.64958
0.656463
0.766717
1.54743
14.8806
14.8282
14.8439
14.8611
14.8415
14.8231
14.9142
14.9158
14.8773
14.7771
14.8096
14.7897
14.8747
14.7572
14.8136
14.6678
14.8658
14.8818
14.9217
14.6585
14.8312
14.8694
14.957
14.9394
0.930962
1.31514
0.869203
1.40541
1.3483
0.94032
0.85859
1.01714
1.30284
1.30087
1.12143
1.32638
1.11614
1.02433
0.885587
1.44433
1.4171
0.818821
0.823467
1.40473
0.878857
0.963596
0.99207
1.51336
1.4284
0.897442
1.05138
1.42748
0.887235
1.4708
0.753106
1.52189
0.817991
0.822457
1.42858
0.958656
1.42337
1.40734
1.03068
1.04262
1.40525
0.949612
14.8722
14.9346
14.9634
15.0213
14.7926
14.9947
14.904
14.9996
14.9793
15.0056
14.8545
15.0364
0.738829
1.48857
0.807608
1.4517
0.750004
1.56683
0.795729
12.0746
13.4373
12.629
8.42054
10.4108
10.1842
9.9318
12.4906
11.9595
10.8032
11.0316
10.75
9.99976
8.73226
11.1062
10.9586
11.047
10.8721
13.5162
13.182
12.972
14.0014
13.3283
13.8541
11.7933
11.224
11.75
27.0505
13.7045
13.7272
14.4295
14.0267
14.118
11.1916
11.7032
11.721
14.3005
14.4579
14.1846
12.8953
13.5593
13.7274
13.8304
14.0969
14.1726
14.4696
14.6221
14.4287
11.8112
11.0897
11.5487
26.5899
13.6539
13.5686
11.1179
11.6665
11.6243
13.8709
14.2277
14.1839
14.3824
14.6652
14.4414
13.8606
3.61413
12.485
3.45008
13.19
13.1303
3.76718
11.7218
11.1898
11.6528
26.6993
13.5121
13.5401
13.0722
15.8479
4.13657
3.72693
15.576
3.59468
13.8173
15.9515
4.21559
31.6991
5.34721
25.5402
15.7137
4.35623
11.138
11.5717
11.6015
12.431
3.10468
12.8131
3.379
12.2853
3.25841
13.1482
12.2619
3.30063
13.1387
3.29834
12.8022
12.3961
3.18198
9.84611
11.0156
10.8822
11.1085
11.0858
11.0895
12.9573
13.2688
3.74676
3.32957
13.47
3.46102
12.4948
12.3398
3.25933
12.8171
3.46229
12.6554
12.8115
3.20711
11.1277
11.0704
11.1043
13.0718
3.74302
12.8948
3.30076
13.6541
3.48397
12.4001
15.5701
4.33421
13.8141
3.62965
4.17519
15.8796
13.0409
97.5747
7.81453
6.32075
6.85256
26.671
13.5061
13.5243
11.6596
11.1099
11.5991
31.5207
5.38352
6.4586
98.9829
5.26173
25.537
11.5579
11.086
11.5678
25.0957
4.30971
5.14124
15.3769
5.28295
15.6784
30.9825
14.6545
14.5729
14.5415
14.419
14.5421
14.5012
14.5938
14.4016
14.4712
14.6025
14.6031
14.565
14.8411
14.8536
14.8941
14.7998
14.5183
14.7626
14.8642
14.9195
14.9213
14.6487
14.4589
14.7081
14.7495
14.7917
14.7017
14.1284
13.7064
14.3361
14.6786
14.4571
14.5935
14.5859
14.0874
14.4774
15.7474
4.06696
30.754
5.1554
15.49
24.8176
4.25091
9.16884
10.8365
10.8145
11.175
11.2896
11.2418
12.7869
13.966
3.78068
3.63648
13.5412
13.3804
3.43227
14.3491
3.59565
14.0158
4.04701
13.5894
14.6568
3.7929
11.3302
11.3563
11.3014
13.0047
4.06166
15.5531
3.74424
13.7159
15.3066
3.57251
8.87765
10.4739
11.6762
11.862
11.3812
11.9034
27.5201
13.9777
13.9651
13.9092
14.2294
13.7608
11.4212
11.951
11.9389
10.2572
13.2127
12.6489
12.7524
14.1309
13.3665
6.67335
9.0944
7.57938
96.0647
7.64272
12.0623
9.17324
11.7574
11.3346
11.8443
27.4544
13.9755
13.9286
11.3994
11.9502
11.9124
5.09501
6.70915
24.8794
96.1848
6.23832
30.8233
11.8326
13.0635
10.5963
1.13516
3.56742
1.02411
3.22032
1.02324
1.13179
3.64068
1.34221
6.36862
1.60483
4.54024
1.57915
1.35568
4.98022
1.15725
1.03425
3.48404
3.70901
1.03635
1.16128
4.03914
0.855342
2.6784
0.929642
2.96848
0.932253
0.853357
2.68894
0.858234
0.938563
2.68223
2.97747
0.860207
0.936738
2.69741
1.38209
6.12378
1.63538
4.84178
1.64554
1.37571
4.96585
1.16906
3.91954
1.03045
3.35025
1.0332
1.16585
3.93687
1.17422
1.03882
3.86998
3.35761
1.17183
1.03834
3.93901
3.29213
12.5247
10.6888
3.77626
3.23167
10.8372
3.85522
2.93339
10.6412
2.70363
10.6583
2.92453
2.71036
10.6049
2.94382
2.67918
10.4792
10.6219
2.89476
2.71734
10.57
2.38024
10.7653
2.38904
11.6425
2.56579
2.23316
11.4022
2.14663
8.68875
1.89709
10.1468
2.13693
1.9071
10.388
2.32033
2.47745
11.0018
10.6526
2.47748
2.31367
10.9518
2.35833
10.7411
2.52925
10.7457
2.3522
2.53616
10.6965
2.17231
8.49153
1.90919
10.1096
2.15473
1.92198
10.1267
2.36242
2.51334
10.7075
10.6259
2.54221
2.33947
10.6607
0.855806
2.66826
0.930086
2.93822
0.855135
0.931104
2.665
0.85762
0.930019
2.67306
2.93819
0.855615
0.932121
2.66601
1.16025
3.8382
0.991676
3.36084
1.02393
1.11989
3.96022
1.37
6.17271
1.62105
4.93596
1.62914
1.36428
4.99968
1.16386
1.02737
3.36698
3.91472
1.02954
1.16008
3.95747
1.16704
3.90027
1.03022
3.31348
1.16516
1.03159
3.89151
1.37544
6.04778
1.62932
4.91225
1.63767
1.36996
4.90652
1.16753
1.02967
3.31242
3.8954
1.03226
1.16379
3.88873
1.17479
4.56237
1.03444
3.64226
1.02734
1.17915
4.5046
1.36289
7.60258
1.55982
5.19814
1.58138
1.34237
5.40832
1.16192
0.998325
3.56358
4.2644
1.01347
1.14385
4.42096
0.783787
2.6253
0.832101
2.88129
0.840865
0.775411
2.73702
0.80716
0.873034
2.87342
3.1051
0.814056
0.865185
2.95745
1.27584
6.29474
1.51474
4.80137
1.4756
1.30002
5.56868
1.05036
3.70792
0.917511
3.23613
0.92879
1.03391
3.81407
1.0902
0.970001
3.98406
3.56394
1.10878
0.958984
4.36172
2.61491
9.49901
9.1477
2.87577
2.58953
9.25176
2.90672
2.42216
9.51779
2.27237
9.67459
2.43172
2.26715
9.45723
2.40211
2.24307
9.24828
9.56512
2.3809
2.25399
9.34652
2.10209
10.2553
2.30294
9.94724
2.24401
2.1545
9.91771
1.90447
7.71168
1.67801
9.1242
1.88047
1.69735
9.1951
2.0547
2.15979
9.68567
9.58415
2.19247
2.02632
9.66778
2.0316
9.95179
2.15821
9.87995
2.02453
2.16453
9.88234
1.88123
7.8062
1.67196
9.16254
1.87271
1.68038
9.29139
2.02577
2.14852
9.74953
9.6181
2.15791
2.01685
9.74819
0.783159
2.58153
0.841455
2.77053
0.780971
0.84487
2.53921
0.7814
0.841569
2.45432
2.7338
0.778132
0.844681
2.49289
1.06971
3.7063
0.966196
3.07433
0.949947
1.0891
3.60704
1.23128
5.49537
1.4413
4.43708
1.45585
1.22035
4.46117
1.05205
0.92885
3.01862
3.52188
0.935619
1.04359
3.53846
1.04585
3.68086
0.92751
3.11271
1.04344
0.930425
3.64524
1.22285
5.56986
1.43644
4.46192
1.44384
1.21666
4.52822
1.04541
0.926704
3.07207
3.54399
0.930376
1.04073
3.59687
12.9047
2.91804
3.04203
12.1704
12.6442
3.12541
12.2747
11.905
11.8534
12.64
13.3189
12.9361
3.59569
3.21467
13.9685
12.3517
3.32496
104.17
24.0701
24.0627
13.2028
2.98001
3.43747
12.4265
13.6283
3.25125
12.3504
12.9637
3.0678
12.1617
3.04248
12.6947
12.2253
3.16521
12.9396
12.7998
14.8826
11.8201
2.83618
12.1055
2.79101
11.898
2.7724
11.9889
10.2745
10.632
10.5843
11.7637
11.6704
2.86524
2.80043
11.641
2.78714
11.8644
10.3805
10.5284
10.4508
11.654
2.83359
11.6241
2.87379
11.708
11.5808
2.78185
10.5462
10.5868
10.5132
11.9876
2.81388
2.81847
12.4422
2.78673
12.2288
12.142
12.2453
2.99577
12.3075
2.82337
2.86052
12.5018
12.1333
12.9088
13.6914
3.02778
3.02577
13.1286
2.96069
13.3657
24.1998
25.1631
12.6913
10.9492
12.765
12.3195
3.09197
2.96868
12.9168
12.3592
2.9105
12.6962
12.6287
10.9952
12.7843
12.6912
2.85452
2.96239
12.7451
2.90116
12.4646
13.0527
15.0432
3.056
3.04824
14.2544
14.4236
3.14898
14.7344
16.9045
32.3864
4.37438
4.26853
22.2759
19.4928
3.76793
15.9188
3.18318
3.79883
16.3854
18.6219
3.39719
15.2677
15.3411
3.18379
14.8016
3.71647
14.5572
16.2462
3.39853
13.616
13.5188
2.7832
2.83759
13.7308
13.4849
2.80873
13.5437
13.319
2.74907
2.76621
2.78276
13.3532
13.5255
13.4817
2.76022
13.2944
2.74262
13.4093
2.77433
13.3255
13.7186
2.84309
13.8973
2.79654
13.8761
2.81709
13.7134
14.2585
2.98904
14.1029
2.89511
2.95015
14.4879
13.9404
14.2543
14.1085
3.03067
2.91541
14.4516
2.94451
13.977
14.5408
3.04255
3.09245
15.3772
14.8461
2.98796
14.8634
14.033
2.85446
2.87701
13.5734
2.90941
13.7637
13.7988
12.1893
2.59653
12.4087
2.7004
12.1349
2.65906
12.4802
10.2743
10.2761
10.2915
11.9121
11.6381
2.61787
2.75356
11.587
11.9042
2.67521
10.3119
10.3388
10.2611
11.8813
2.5389
11.4768
2.51901
11.8385
11.5246
2.60814
10.2222
10.3092
10.2292
12.2238
2.75158
2.78006
12.5256
12.2108
2.7147
12.5308
12.7547
12.5748
2.65766
2.60724
12.5329
12.787
2.64242
12.204
10.6563
12.4965
24.8763
24.9875
12.9339
13.1003
2.71258
2.66345
13.1503
2.6768
12.8732
10.7444
12.5467
12.5749
12.9598
2.68641
13.1508
2.70869
13.1506
12.9798
2.67614
12.7068
2.60114
12.3911
2.62661
12.4711
2.6399
12.6375
13.0352
12.6664
2.73697
2.71311
2.77176
12.7609
12.9129
13.4158
13.7849
2.92527
2.88217
13.4682
13.6994
2.85255
12.614
10.7594
12.5588
24.8133
24.8164
10.7304
12.5214
12.5239
13.1273
2.78625
2.88761
12.8394
13.1547
2.81909
12.8324
13.2997
2.74868
2.84047
13.3681
13.5548
2.80741
13.1465
11.3846
1.96162
1.79104
11.1264
10.9344
1.88422
11.4614
23.4607
11.885
22.8882
11.5678
11.7549
1.97678
1.905
11.8033
11.5062
1.92857
11.64
2.00946
1.98476
11.9226
11.8692
1.94738
11.6997
11.2693
1.74603
10.2428
1.82322
10.6462
11.106
1.85212
11.4626
21.1093
22.2613
10.4327
1.78607
10.7823
2.08269
9.77615
11.0356
1.9695
10.6422
10.6919
11.0649
9.78826
10.3141
10.2255
10.1037
9.49487
1.81306
2.04881
9.18958
1.97287
10.4656
9.39246
1.63676
6.67156
1.67187
8.25976
8.44878
1.84863
10.068
11.2184
10.8929
10.7794
2.17987
11.1766
2.14549
11.1386
2.07583
10.9216
11.6001
2.06931
11.2626
2.17003
2.22754
11.5247
11.352
11.8723
12.1155
2.35749
2.3772
12.0917
2.33234
11.8855
88.8524
12.0532
10.9308
13.3381
11.8255
2.10681
2.28869
11.967
12.0426
2.26226
11.7514
20.8037
12.7236
20.5333
11.6402
2.25112
2.34665
11.4045
2.30078
11.3924
11.6447
13.6024
2.57712
13.4995
2.57808
13.6291
13.4463
2.54865
13.6363
13.5853
2.40162
2.40749
13.5159
2.45851
13.6984
13.4784
2.5252
13.1853
2.43897
13.353
13.3138
2.4972
13.7472
2.5382
13.7586
2.46116
13.7399
2.51
13.7982
13.422
13.3949
2.70044
2.64861
13.6164
13.2426
2.70275
13.3387
13.2243
2.75156
2.6916
13.4341
2.72124
13.1281
13.5557
2.7456
13.8463
2.77901
13.7685
13.6342
2.74278
13.2057
2.64609
12.8564
2.66321
13.061
2.6894
12.9917
13.0905
2.59023
13.3511
2.63036
2.59423
13.2766
13.1825
12.741
12.3986
2.47562
2.52306
12.6128
2.53536
12.5242
12.9451
2.53786
2.48139
13.0061
12.8151
2.54132
13.1364
12.8899
2.62609
2.57578
12.7794
2.58849
12.9925
12.6737
11.2676
2.35442
11.6609
2.3852
11.3979
11.5225
2.31284
9.02755
9.21582
9.34961
9.60424
9.55637
9.47993
10.7927
9.83659
2.01922
2.10534
10.0204
10.6463
2.1586
10.9451
2.24186
10.292
2.0624
11.0715
10.1763
2.20328
9.23304
9.43677
9.35501
11.1156
2.33773
11.2399
2.2039
10.9974
11.3622
2.26342
12.3253
11.9987
2.51881
2.53323
12.0836
12.2312
2.55946
11.8527
9.87806
11.5595
22.4341
22.5581
12.6731
13.0019
2.64991
2.6578
12.7679
12.9058
2.62236
9.6989
11.2814
11.3421
12.4337
2.54499
12.2791
2.61294
12.183
12.5271
2.58571
12.5587
2.5684
12.6574
2.63065
12.7818
12.4518
2.59567
11.9901
11.9021
2.43488
2.51468
2.4807
11.7599
12.1313
12.0519
12.1745
2.4212
2.5046
11.937
12.2938
2.47556
11.7614
9.94432
11.6179
22.5353
22.8227
9.82517
11.3362
11.4814
11.8211
2.3894
2.38619
11.466
11.6937
2.43676
11.5952
12.2108
2.55199
2.55402
12.5583
12.4417
2.51992
12.3484
11.0925
14.0802
5.04409
37.8323
5.20579
10.3327
38.5388
26.0524
181.884
37.4401
23.7204
81.3705
21.3597
94.4909
9.31048
7.46835
4.15653
22.3939
3.82619
24.7047
10.5625
41.5518
11.2055
28.4411
23.4772
38.4607
54.9065
73.8157
9.65874
22.7812
25.4372
19.4858
35.6464
191.351
193.699
93.365
12.8054
40.202
51.2884
43.6817
16.3758
28.7222
9.7342
22.6352
19.2203
208.238
7.82415
28.3722
25.9874
8.06184
11.1027
4.37816
27.5452
4.01797
9.73838
24.0131
17.5809
58.3182
38.8203
42.4141
79.1118
15.7795
19.9042
64.3948
198.171
25.8894
48.535
97.8635
45.9691
15.6373
36.9021
50.3571
39.9524
18.4889
92.1177
54.8167
65.8312
47.7033
25.3973
37.8711
10.1725
10.8831
21.6322
20.9528
14.2425
5.72905
45.3609
5.96366
16.8929
55.1106
34.7322
43.2508
13.8075
35.8708
13.4653
153.952
81.6985
92.4815
46.7676
17.6779
87.4302
18.4457
32.5918
32.684
25.6328
13.864
10.2101
3.96921
37.9332
10.3834
8.87912
178.47
61.0057
21.5281
24.0769
22.5691
7.11209
10.1237
3.53077
22.3534
10.092
7.25542
21.6911
10.4268
37.2934
21.8466
10.3855
16.427
12.9207
5.41136
42.7485
5.48382
16.4551
42.3042
75.8137
67.4909
78.6622
79.3168
21.0222
36.0348
9.40925
10.0871
19.0287
132.603
40.0571
35.7266
12.8239
10.5136
4.52008
39.1445
4.41615
36.5185
13.4329
37.1517
31.3598
13.9344
19.3465
6.23385
79.0197
5.51247
54.7629
15.9874
12.1224
8.56788
3.43833
21.7107
9.13242
4.0573
33.5307
39.9515
43.9935
5.91315
3.29711
7.85407
21.5145
7.16981
3.04573
16.4039
14.7871
37.6608
44.9036
14.1937
51.8598
40.6686
15.3517
132.471
62.8611
20.0333
66.7896
42.786
44.1201
45.136
28.5961
19.3905
138.883
60.0839
112.152
18.5145
5.67949
46.3702
14.9679
16.095
6.11495
52.368
21.4999
36.7033
8.25364
170.897
10.0583
22.4566
174.431
84.4144
59.1339
23.0602
15.7388
7.52599
160.867
6.37885
63.2276
19.8914
8.03327
19.6493
167.146
14.5892
20.4583
22.8152
6.32828
8.88023
19.9075
34.4327
9.92761
17.251
32.4086
59.5338
6.57519
17.9667
13.6349
15.1731
23.9885
46.1393
51.3839
41.9792
80.6755
7.18635
19.71
24.2525
16.6353
101.137
20.7697
86.562
181.388
35.5168
39.4248
2.8411
8.86138
5.93872
17.0174
3.1177
7.27331
5.16768
14.7954
49.8874
37.599
15.4308
35.8049
46.2689
11.8574
22.2518
37.0226
10.7582
26.7043
39.8133
36.8289
15.5259
4.82447
10.588
14.9198
38.7691
10.0294
35.8421
49.1024
22.1557
69.2734
19.3744
179.234
72.3647
64.1705
35.6963
4.88082
10.8315
8.77962
14.3106
9.64694
25.0447
24.8463
83.2808
21.2067
13.6113
18.9991
5.95417
73.0187
5.87872
13.8168
71.8105
9.39989
6.55805
3.51974
19.8288
3.46217
9.5025
19.3623
31.9587
31.5949
13.1241
18.3902
5.669
68.8162
13.0316
5.69098
69.3028
33.3382
33.8984
77.1551
33.5804
15.0844
78.138
14.8248
29.361
29.1452
19.9513
9.23032
6.12825
3.18859
19.8268
9.25025
6.18436
74.4071
32.596
14.2075
73.3437
14.3965
20.4878
6.42261
9.50188
3.25566
20.6557
9.44329
6.33768
16.1477
21.0421
6.00549
75.0797
13.8791
6.64574
85.7466
13.0271
9.0997
3.77561
22.1631
4.59042
9.67289
33.1503
50.6169
65.0013
20.9334
23.859
8.97018
17.8711
8.14205
168.812
41.5544
33.7674
9.87717
30.6934
17.5087
37.9825
21.4476
66.1875
143.461
8.94318
31.2454
18.5103
29.9286
17.6055
37.1615
55.2213
67.9425
64.1728
15.4312
39.8439
78.466
36.5535
72.6948
18.5127
50.0076
150.994
67.6166
6.16819
19.6875
14.9659
64.0002
6.5775
17.2127
13.8114
5.23705
9.12631
44.7738
13.6065
18.886
11.6492
4.42547
26.0797
87.1337
20.6089
6.86391
8.50141
188.748
22.6256
58.6468
19.751
17.0263
43.3615
71.9072
21.4525
83.3555
20.1809
35.797
10.4079
17.5511
9.37852
38.5814
16.7773
3.09152
7.74559
5.19954
8.5174
5.708
19.1322
36.8931
33.8368
77.4896
17.4801
34.4253
92.1746
15.7848
21.1227
3.72962
11.1103
7.51923
23.3095
10.3864
6.99629
20.8189
29.1823
149.271
59.5278
10.8105
25.0424
12.3679
43.9847
4.55938
10.0585
31.9128
8.00576
13.4997
8.71615
3.88967
5.09775
10.3812
14.967
34.8612
14.6513
5.1585
10.0594
15.9828
43.1484
23.3185
5.45177
6.6169
64.0075
11.632
60.9877
90.512
11.6808
24.9881
9.6996
3.65453
4.52104
26.2039
9.58719
17.0154
6.13355
51.0266
11.464
19.8168
5.57788
43.006
24.4107
11.3564
25.7532
9.64259
23.1186
178.915
4.99569
18.2372
12.4343
28.0652
10.6886
6.02742
12.5151
46.3981
28.1921
18.1625
12.9531
69.6242
186.252
73.3025
27.8545
190.898
28.2934
173.717
27.2486
7.2089
25.7804
68.3662
9.93108
25.4507
186.97
45.9509
13.4808
68.1493
30.8652
18.0928
25.2731
5.44292
15.8221
45.0398
6.73435
65.5722
18.1881
31.8841
11.0788
46.9883
22.4946
13.7572
26.5819
24.0342
13.0501
9.44054
171.675
49.476
187.915
86.0461
49.8781
64.9229
24.7229
72.3069
18.6688
165.109
40.8618
62.7246
28.8986
4.90748
8.05915
9.92942
10.5931
26.5664
12.3202
55.7069
210.72
29.7186
83.4652
61.3491
188.12
19.8085
80.1983
28.5223
75.1121
24.8303
167.767
40.8271
3.56204
20.8593
8.38431
11.3442
6.32438
4.39053
8.7305
6.93585
64.9117
10.6821
13.3239
14.294
5.164
24.9465
25.6866
190.284
62.6047
94.0289
26.5889
11.3985
5.32856
30.2946
8.38245
14.3989
4.37611
29.0586
15.739
10.3544
26.4058
200.716
7.10878
26.656
70.0698
12.746
29.5989
19.3696
4.86929
6.20846
50.8387
10.4494
35.4704
65.3368
216.714
64.3715
24.8118
40.6376
176.309
60.1748
225.131
24.2997
96.8223
189.002
75.2285
138.467
40.594
22.4386
22.8935
5.89688
4.13104
8.40566
8.53202
10.9877
20.7488
40.1006
25.3687
15.9858
5.16635
10.2023
64.957
16.6099
25.892
47.2234
152.484
78.9193
190.832
19.712
47.6417
73.5163
52.217
160.814
24.1015
12.0358
21.2579
25.7193
44.2195
158.399
175.12
67.4178
11.6769
77.1361
34.5686
16.8853
51.4962
21.136
5.73222
29.7144
3.72782
8.66092
3.14971
7.44815
20.8476
8.79922
191.038
20.739
13.1248
29.0559
21.7658
6.15839
3.78733
12.7528
23.0431
9.26191
7.4374
9.13218
4.53217
7.85405
9.72088
5.04367
267.1
44.2738
2.6717
18.9926
9.79947
7.27211
7.37104
26.9091
20.9061
4.58894
19.1109
8.89448
19.1281
15.6963
153.057
6.585
24.2622
31.7104
26.9385
112.674
117.137
91.5688
52.2938
92.3565
123.861
99.9406
154.043
395.834
126.105
10.224
32.5067
17.2574
49.7675
193.836
20.8734
75.6857
97.934
26.746
43.7826
102.448
34.3545
4.96252
8.39
11.7333
24.1825
10.1264
18.1205
71.6588
150.005
27.8602
3.86255
2.15453
10.0877
11.5502
3.24597
2.5691
15.2094
10.1119
25.0053
143.605
105.462
23.0247
33.5873
17.138
6.83144
17.8034
10.8439
53.9088
15.2593
5.61713
21.5956
5.91876
30.9864
7.25376
53.5023
4.38122
23.2128
10.3968
158.561
50.2164
5.92924
17.0692
11.4939
45.8071
18.4813
12.8548
183.602
60.2983
46.0242
52.0628
67.7027
23.4373
158.517
28.2869
15.2255
110.24
33.3326
77.5042
71.5745
180.618
11.5288
48.427
6.56032
13.8838
5.42179
13.1682
31.5837
19.4359
29.1693
53.7713
13.9494
43.0306
90.1814
8.38421
3.57891
11.5707
23.029
4.32989
6.56239
23.3951
9.13491
190.921
21.2496
41.3237
11.0552
22.1884
26.4911
4.35454
6.69103
11.2597
23.1314
13.2107
4.01649
7.62376
5.38395
20.3463
33.1158
12.5598
18.7693
6.76628
10.3811
12.7227
5.06441
31.3783
7.27627
22.7326
15.644
4.16564
47.8541
181.772
29.1424
19.0728
43.3851
12.9014
23.5264
10.5319
63.9893
82.5712
10.7019
6.25788
22.1255
3.27562
19.1178
3.65045
9.49597
24.3374
63.7045
84.5244
32.4105
180.698
21.4332
6.01507
13.6616
51.9281
6.84818
24.2356
74.774
48.278
169.113
15.4238
32.2783
22.3165
27.7187
18.8493
10.999
8.55271
170.648
50.7722
194.698
10.6751
28.6724
76.7533
48.4824
15.1446
18.1883
5.77659
9.8876
4.14295
22.3503
3.44232
22.8061
7.33851
8.85678
20.9967
12.8349
172.997
6.48977
27.5751
20.4971
3.19332
19.6364
6.37397
9.26205
5.52623
3.58468
8.37876
4.56055
25.4091
7.10887
9.89227
9.28216
3.92288
11.6214
26.4487
45.093
223.51
48.6752
29.256
10.5594
30.4158
26.6641
175.554
194.632
63.3901
90.8609
12.2615
7.7118
23.2707
22.8562
18.297
54.5458
29.7286
73.1314
10.4606
14.8613
18.6435
22.8468
12.4371
4.98048
27.8043
6.30971
13.4401
52.7345
56.6031
189.317
24.3164
86.8652
25.1473
167.348
64.4938
163.639
3.68781
20.7124
8.83426
5.34984
3.06049
10.9118
6.8036
5.08798
31.5058
26.7405
12.9996
6.65999
14.7766
10.3545
210.872
22.9665
52.6949
25.1583
22.7552
9.67047
3.6637
5.86
11.2158
18.7011
6.8994
81.6102
49.8667
31.1554
11.7506
4.88693
19.5568
13.715
10.2487
47.9527
84.1352
29.1446
11.9437
64.1588
15.1834
12.9586
9.35715
19.7177
181.787
6.36243
22.4482
69.8729
9.22678
6.57105
4.65804
22.6628
3.83755
12.0772
21.494
19.0337
45.2103
154.43
20.6345
66.2322
10.4095
21.7035
4.35125
26.2719
8.69881
5.48171
48.8009
25.6962
50.4991
151.297
69.4636
90.7082
18.0633
8.63478
36.443
180.347
9.50005
21.0436
12.6082
3.8593
7.5974
21.307
4.06868
23.8257
11.1524
20.4746
12.6373
41.139
24.6758
10.7387
13.4817
43.2135
5.49117
9.3045
18.3007
4.52356
27.8744
62.2431
45.9561
45.3533
39.7533
166.432
33.7309
17.3253
74.4052
38.4867
88.8679
23.0458
77.9241
52.4349
181.585
19.69
58.4746
17.1976
71.3543
11.6069
6.93333
17.2785
84.073
5.60238
15.8686
60.927
8.17691
3.3987
5.16936
17.8103
2.98202
9.4973
19.4445
10.352
38.1251
4.83245
20.2425
9.19094
5.23698
45.7707
23.8175
37.1391
150.998
43.6378
61.5629
42.9549
8.61141
5.12304
12.4304
19.6075
9.66913
25.6039
141.515
32.7743
21.8696
54.8703
19.9407
5.4038
14.1578
16.2127
10.7856
71.4253
62.3509
150.651
157.424
24.8681
10.0216
59.6451
18.3631
42.0347
34.3197
42.9924
158.047
20.2443
7.86095
14.4664
18.9672
23.7029
77.0402
368.176
63.5704
431.744
171.718
65.8261
10.1681
45.1357
95.0426
239.206
18.1748
26.9711
36.7459
12.6246
32.297
18.9042
112.274
13.7437
42.4252
137.654
46.4108
60.7049
457.036
629.601
32.3887
420.193
24.2532
26.1527
401.759
76.1232
368.328
34.902
150.176
431.666
402.617
105.68
403.105
21.0964
40.9816
38.3231
205.036
43.3639
68.6838
100.567
26.4222
35.6566
156.54
24.948
309.752
16.1108
34.0997
50.9521
94.0139
58.7999
45.5244
9.47517
421.037
25.9371
17.335
81.4869
314.377
321.775
409.404
59.0813
31.354
45.7276
24.973
8.75427
7.44362
19.8298
9.6535
34.3882
27.9933
24.6733
30.1014
499.172
412.871
50.8069
42.2454
97.2762
9.06749
31.4579
8.82621
99.7151
26.9313
8.64272
23.0793
9.93649
28.6693
9.00299
101.577
8.4631
26.6104
22.2702
375.897
28.8125
467.955
24.6282
39.4769
100.479
69.4929
37.3909
21.0283
357.908
90.6578
144.967
32.519
163.479
11.0104
20.9279
20.5634
31.6415
34.1846
76.282
85.5076
78.1796
256.538
357.174
335.279
28.2834
88.8703
8.0332
8.89789
15.3032
22.7049
8.20727
51.7977
366.776
27.0591
128.823
40.9024
83.2658
134.046
344.017
25.4171
308.67
19.5182
8.26612
27.7423
4.1754
35.982
6.20048
8.02183
35.1326
11.4253
7.0753
33.4855
9.21749
18.0203
28.6523
17.7873
26.2002
26.6041
8.95914
97.4321
8.97955
30.0374
128.314
44.8987
28.0937
48.0048
55.6658
36.7984
35.7705
327.772
17.4357
165.737
302.014
174.898
62.5006
10.0329
13.6263
24.3923
33.5921
10.4779
33.063
9.31536
48.2612
76.3652
209.816
14.0518
45.5632
420.337
23.8845
176.929
370.626
65.2701
104.166
32.1072
249.1
37.3089
12.5033
11.1985
54.6418
11.3729
29.4348
39.407
14.1611
29.1538
26.2924
191.814
37.6565
11.3564
43.3975
13.1445
39.6235
79.7759
11.2432
25.3028
32.7035
11.7352
32.3234
36.8389
443.523
529.636
49.0366
54.0162
125.85
396.011
21.0546
38.7274
19.825
68.9132
49.6064
52.6829
382.515
153.838
39.5876
238.173
338.444
53.631
398.274
38.3311
62.4166
414.181
31.9311
161.329
41.2797
140.014
23.7147
358.32
53.4326
31.7695
31.9261
400.533
28.6201
26.4323
148.186
46.2788
10.5452
18.2477
9.50502
25.1329
29.936
56.5465
10.3543
8.59767
8.38864
86.5063
54.0018
37.519
21.6132
22.8655
17.1962
7.44346
7.2491
38.1713
10.0738
28.7972
9.23202
5.08419
8.78176
36.1616
38.8667
10.175
25.0269
9.3814
9.55072
191.122
373.578
208.273
93.0138
20.9067
20.2378
177.261
13.7253
48.7778
73.7994
8.33843
367.349
176.444
35.1275
33.8063
8.29808
7.39475
19.3402
21.5418
8.46862
113.564
23.3075
50.5982
53.9212
99.6678
112.496
450.926
37.2556
43.7601
33.8208
501.926
127.052
55.2825
37.6374
11.1536
33.6653
10.0855
42.9593
22.7707
11.2361
203.058
523.084
24.8692
25.7947
9.87199
5.61496
42.8602
10.9155
8.13361
29.787
531.589
200.089
28.4072
56.7842
43.4314
523.739
378.063
345.153
24.6863
291.841
20.222
84.7107
35.7818
205.48
42.6623
122.157
16.1128
422.077
57.4242
38.8252
84.6178
37.561
9.91601
9.6847
28.378
25.0743
22.8478
50.512
60.8098
31.4871
24.5828
484.628
13.5528
11.2216
29.407
44.128
37.4151
11.6244
11.2185
43.5796
47.8453
105.565
23.4657
217.336
27.9372
27.9845
198.995
12.482
24.2339
40.3204
101.701
9.71438
7.24481
10.2053
17.3526
29.2393
7.48665
7.38769
25.3779
24.0321
394.221
21.6647
22.9388
8.98726
85.5924
88.9322
347.331
146.269
368.486
350.934
82.5353
28.4586
7.41177
9.19741
16.4913
7.3379
26.6037
26.4987
36.2935
7.25044
8.63855
30.1767
8.54836
21.6577
20.3402
89.1017
38.0485
32.0689
26.0437
27.0556
28.9946
8.86708
19.0049
10.5101
9.37399
101.981
25.0851
279.961
84.0313
77.6321
45.2164
37.5821
77.1949
21.7573
23.8021
437.312
6.89925
22.9229
26.8641
4.60452
6.2152
17.1774
6.06316
34.4609
478.12
56.8481
50.4881
23.1878
170.999
20.522
21.5763
20.545
390.757
7.43947
41.1891
73.8135
174.773
33.9266
21.1416
33.8348
330.378
17.2391
7.38226
7.74939
19.7563
7.37967
30.5345
25.9806
76.8434
132.763
40.8166
9.079
20.9602
377.033
25.9519
94.9513
307.49
337.827
173.638
88.1119
44.7136
356.218
27.9812
19.1996
24.6465
38.9422
67.7116
135.968
332.419
26.4938
25.9658
17.0851
125.445
73.211
350.671
357.536
29.5301
67.5489
132.611
289.505
17.371
3.82642
6.55991
9.90903
5.32233
26.6194
6.94193
26.7281
5.93432
7.21034
30.6704
7.08413
16.5478
16.819
45.1271
39.6375
20.0506
23.5921
29.8604
67.1701
6.96044
8.58556
6.94082
17.2429
24.3867
71.4607
44.0966
149.364
23.8848
156.417
304.859
71.9294
20.401
247.819
66.0904
34.9997
78.3453
313.094
28.9542
356.093
137.545
119.69
265.727
46.1721
106.328
205.639
14.9985
452.229
27.1028
39.509
51.5396
329.236
88.4227
179.932
22.7977
225.919
48.8747
30.5042
42.3139
27.5356
42.4313
80.9311
20.3708
235.688
462.367
87.086
519.852
61.8935
31.5021
115.087
452.531
6.3474
9.66895
26.376
40.3599
14.5104
8.22108
9.37455
9.31406
26.6498
9.37311
39.9814
10.0594
35.9751
10.5016
10.562
9.24404
21.087
22.8101
9.06413
49.4412
7.63941
9.68417
61.5054
33.9837
52.9662
14.8744
16.4174
24.2904
13.2053
90.8718
9.7688
20.3194
23.3997
47.7119
8.55273
15.1859
27.445
223.523
43.1405
40.1821
60.5756
12.0884
27.8025
396.429
19.79
393.208
39.5366
38.5429
123.538
9.03083
35.4502
18.1861
10.2091
22.4896
9.69386
8.53516
66.0935
665.192
133.493
267.791
118.956
218.033
553.738
249.033
568.34
211.32
14.9247
66.7105
37.3794
120.002
24.9532
57.7384
135.145
661.401
88.5325
657.805
32.0067
273.305
54.5633
7.89941
11.1998
13.2464
44.5957
11.1359
21.1157
6.35408
12.3067
31.9161
24.4756
42.7544
13.5123
39.8581
11.73
22.9834
171.288
11.1699
41.3371
66.2218
44.5383
12.5865
41.5186
47.1126
62.3584
175.011
32.273
20.3945
54.9876
165.824
474.708
68.7123
32.8535
11.7894
35.4452
41.8614
7.44679
28.0293
9.97732
10.5253
449.816
33.8709
66.9653
53.0594
474.514
31.2687
30.7918
12.5979
14.1449
13.6708
43.4017
54.5089
66.9667
45.9112
22.1328
14.5159
173.923
23.7636
46.436
179.781
32.797
436.128
23.3213
42.6334
70.8186
46.4756
202.628
14.3037
70.6888
22.2429
43.6143
421.153
18.9375
10.0281
39.938
5.5185
6.87023
40.999
11.9061
173.335
405.082
66.6142
192.972
389.818
39.8356
33.4656
185.818
56.1838
42.666
72.5325
43.2177
421.194
72.9267
516.497
47.283
75.747
36.4718
203.038
478.429
48.14
27.057
46.7134
53.6166
219.223
83.1262
441.872
187.608
8.20264
47.8008
11.7989
12.295
11.9772
6.21808
21.9799
15.092
50.0504
122.973
28.0744
55.6429
37.0355
15.9191
14.2961
71.5882
35.1012
214.232
17.3621
24.1197
56.1532
117.192
39.7698
26.6836
17.5939
58.1
71.152
38.0504
646.822
546.305
127.495
78.6739
144.902
256.82
66.407
208.218
559.144
37.9935
141.365
20.1167
28.5013
66.7305
68.1866
43.2317
238.993
68.4327
37.0987
11.2183
16.127
17.6984
27.1764
36.9836
38.1558
192.512
14.1413
60.3519
17.6876
24.5783
271.687
212.115
70.4896
35.404
123.216
589.174
127.459
79.3772
99.0904
56.9255
59.8214
31.5345
247.503
538.094
10.4871
17.0967
61.1239
39.3594
26.285
15.7085
13.4713
19.7364
41.4151
51.9312
13.5342
14.674
52.4809
16.5119
68.0451
202.194
645.43
82.3952
41.2444
30.7853
12.9375
55.3597
229.734
15.6864
92.7414
56.7757
11.1139
35.5209
71.8242
15.0555
28.4104
11.9862
18.1299
51.2
78.2186
15.9113
14.5389
37.1459
55.2865
15.1725
142.391
272.26
668.857
59.9327
45.009
132.927
58.8038
88.3029
39.5446
34.5746
26.6491
682.737
97.442
81.4406
35.9016
37.5046
8.94795
16.7667
55.7919
68.2211
12.8358
18.3345
29.9758
71.0256
217.445
29.7604
108.59
51.4478
24.6481
528.241
48.8865
25.2818
14.3661
63.7016
61.7506
13.1875
36.7046
23.8108
12.4954
9.34759
50.7581
15.1912
434.335
37.2832
76.1162
54.0164
29.2177
215.93
29.0817
107.233
516.315
24.1165
47.2152
23.0604
60.1907
202.012
59.9385
435.815
175.817
188.97
36.2966
55.2508
43.6005
475.566
284.953
36.4906
186.14
76.2316
31.0756
43.1603
11.8631
24.8488
13.435
38.2328
74.7088
177.813
51.9055
214.999
81.3262
462.044
44.6895
108.948
524.139
61.089
208.771
24.981
12.5322
13.5221
37.9582
9.98026
51.4333
41.4295
65.5865
62.4052
85.6362
28.6695
505.186
58.2377
57.2152
83.0077
14.586
28.2871
14.4447
27.6464
242.699
86.6511
461.449
193.247
244.99
565.231
601.736
37.4179
14.3631
14.6156
50.8474
52.8943
15.4101
33.1486
211.812
33.2324
66.8512
325.228
49.1096
38.572
16.9375
16.3348
20.5589
58.0205
62.0612
16.0529
227.268
259.024
48.4846
211.547
41.1079
267.029
24.2232
10.4322
23.0661
15.1245
64.4296
29.2108
9.73649
62.1692
28.3544
647.437
49.427
276.552
71.6899
19.4408
72.2091
596.653
101.422
16.2376
53.3189
7.76524
15.8373
14.4135
59.8607
8.20441
60.2844
193.831
16.4782
29.1197
53.0898
235.039
17.541
105.392
71.5984
707.604
31.2334
256.531
72.3009
111.889
17.5736
48.9451
704.008
53.5155
227.19
39.3612
38.9511
17.8818
136.75
46.7074
52.9109
109.942
552.313
559.122
79.1198
609.921
50.6788
225.474
278.859
251.554
583.714
49.2086
13.88
36.0672
17.5251
43.4602
42.4531
14.7133
42.6021
42.9633
202.733
31.8662
52.2833
215.589
167.412
52.6625
99.1332
15.4984
25.9613
56.1774
67.9523
16.3154
47.9792
61.8143
232.14
74.9022
56.0111
639.739
231.858
32.3651
203.457
56.5859
247.252
43.8571
116.78
65.5318
583.843
49.1388
13.9743
46.8312
71.5786
22.4966
48.6725
24.4045
12.4137
10.2395
32.1113
34.0293
10.0904
37.6566
13.0385
9.64404
193.148
55.1438
95.4933
13.6368
512.506
40.2823
38.1943
97.6293
59.3487
26.4975
562.761
62.6426
168.863
32.8532
167.264
12.0196
26.814
15.2647
40.7453
22.728
86.7996
43.9324
22.4996
32.819
12.0086
64.671
12.0806
38.9056
102.078
64.5596
45.4222
30.445
19.4194
40.0413
220.661
14.7807
151.983
29.7334
12.1382
508.097
200.883
5.1407
18.5322
9.82353
34.9676
8.90391
6.82852
10.1594
24.6372
23.379
11.7412
10.4483
8.9616
47.6642
35.6155
39.4417
126.105
165.39
26.5354
26.8993
177.855
50.8827
37.4829
41.8841
90.8154
453.639
168.715
48.6223
9.54978
11.2144
8.28841
35.9059
11.6859
23.8233
131.415
23.106
42.4217
192.511
33.9991
374.276
168.212
57.5509
11.225
159.709
44.1083
29.4399
390.4
19.7052
471.043
36.7989
175.37
89.5174
23.2424
10.3487
11.8474
34.5318
30.3687
10.5605
34.3342
11.8356
21.377
104.061
16.5099
28.7664
30.4202
9.39548
12.3729
27.8526
22.8795
11.6137
53.2314
9.75175
10.6476
12.9256
52.4587
175.013
61.6074
38.6408
35.1128
18.0032
50.3748
523.066
58.3132
253.15
53.602
36.158
13.276
48.0004
29.0926
12.7908
33.6039
12.6738
12.4109
42.865
53.9804
106.715
191.739
25.5468
29.4402
14.7255
26.7418
10.7899
25.4105
9.82391
11.8587
63.8214
16.5034
207.317
31.2717
34.0882
43.6047
48.2261
13.545
14.9378
7.01405
16.0762
51.5181
7.64026
58.961
13.68
13.639
34.5725
53.7955
15.9091
45.4199
14.2489
13.8131
9.08581
25.0133
19.6417
4.39523
5.11898
39.8513
8.52535
17.483
58.693
18.4985
54.3308
10.1115
5.57937
16.0778
58.9873
5.37498
10.7401
51.6002
10.0709
69.5451
5.91161
15.9992
4.98891
13.0481
56.0404
6.9564
14.0559
2.80651
4.1487
2.49148
7.72536
15.8047
14.8385
47.2148
14.5478
51.7813
8.59349
4.39626
14.7106
50.3977
4.37174
8.54025
50.8687
4.61876
1.71152
3.0315
8.67179
1.82043
4.49689
9.43819
4.26336
7.05198
2.45911
13.6244
13.5964
2.44211
4.30926
9.11026
15.681
49.1176
9.23861
48.4649
15.4132
4.63058
7.62613
14.7872
2.67236
4.68232
14.4754
2.64219
8.32084
45.7332
14.1046
45.533
8.42859
13.8
15.0824
10.48
51.3583
4.75255
14.9101
55.2859
4.81246
44.8104
13.5559
44.8943
13.4545
8.53721
4.99703
3.26045
1.67378
10.6638
4.19553
2.8477
17.0801
13.6998
6.16322
23.6488
114.139
5.85666
8.41902
2.58618
4.32195
1.59112
8.45703
4.2598
2.58427
24.4501
23.3725
120.396
24.8528
29.7274
4.60194
2.70538
14.4871
7.31037
4.70451
2.66818
13.8608
8.39079
14.179
31.9755
40.7223
14.6034
7.84659
8.96758
48.6536
15.5711
9.18777
46.0739
15.3496
4.32504
6.66273
2.39324
14.9598
2.52027
12.3666
4.10868
55.1969
112.668
42.7187
4.25427
13.5855
9.07022
12.295
47.7581
8.58333
15.1795
56.7047
16.0554
18.6485
62.0223
16.3917
63.1274
5.79462
16.0088
11.7014
17.2583
57.8155
12.7848
33.5904
32.2033
27.042
30.2058
2.44278
4.72863
6.89714
13.0033
5.83363
2.61064
4.27802
18.2921
71.3284
5.98529
10.9007
5.50217
20.0018
62.5499
30.3599
15.4315
71.0408
34.0456
14.2758
162.045
28.8653
12.0961
64.2936
13.6231
25.1426
17.3658
5.14224
11.1124
42.3367
5.72636
20.2482
57.1775
3.56071
9.79059
6.81318
19.3965
3.64629
9.64183
6.51204
3.42915
5.70107
7.81574
17.9928
9.13303
3.20033
6.25777
13.9092
143.941
6.98695
26.8964
16.4968
7.39642
9.51091
15.3929
2.81975
5.2169
8.39034
2.97624
17.053
55.785
66.2599
16.2451
9.57635
30.1779
8.5423
18.4231
10.7204
4.14781
6.20343
25.3295
3.49029
12.5988
19.2941
53.2344
51.4235
18.081
3.24649
5.39733
9.08409
6.41398
9.0321
16.3846
14.7781
43.0096
13.0207
120.393
11.7036
31.6074
14.9967
59.594
45.6529
44.0909
155.252
18.0118
3.48872
6.15891
10.3056
6.07422
10.1756
18.3953
54.6848
10.3005
21.6341
11.1595
52.1881
46.6492
47.8888
60.5089
12.8861
25.6105
12.5667
63.3218
51.0339
50.3912
6.33604
21.6131
3.87633
11.7403
6.68962
3.7806
20.1325
12.2378
65.1336
20.0386
12.161
65.491
20.2017
6.54696
3.94289
12.1133
20.6814
3.94137
6.54163
20.6804
5.21515
14.7147
9.34189
2.60444
3.25625
15.6148
4.13152
11.5507
65.5618
20.4589
12.3982
58.9723
18.9644
6.35242
4.08017
11.568
20.9862
3.90343
6.72079
19.5175
3.43945
5.48008
2.31929
11.1341
2.23531
3.68104
10.2633
5.6711
9.36412
15.9121
55.6289
5.11505
17.2021
10.8074
3.28903
5.33442
2.00669
9.38302
3.05284
2.10945
9.99321
5.98018
19.804
13.9656
57.9938
6.69789
17.7016
11.6026
16.0934
9.55528
5.27476
54.1366
16.5637
5.08621
52.3733
49.3525
15.9744
49.8946
15.8256
15.6326
9.28229
4.83235
49.7323
15.4051
4.93449
50.762
18.6398
54.088
62.4318
18.6525
68.3669
63.8474
4.28496
6.43397
2.39149
11.044
3.97479
2.64104
13.2448
8.37743
15.8028
31.0503
8.60862
29.3678
15.2609
4.43352
6.42696
2.68392
13.8107
4.50996
2.6745
13.4092
7.84697
22.0316
17.6956
7.94845
28.4841
14.0851
16.5731
56.9671
53.1694
16.107
49.2956
51.6446
19.258
6.26962
66.8639
11.3119
61.2566
19.5602
6.20319
57.3507
17.7616
17.9941
57.053
11.1468
2.57794
6.21059
3.83921
6.14457
11.2442
3.81618
56.9627
18.0972
17.9755
57.1003
18.961
58.8922
11.2806
6.28355
58.994
19.0615
6.26147
45.536
17.5243
50.0751
58.1083
19.1797
56.4726
68.5238
19.5222
61.8097
19.4573
60.0368
60.8528
11.6585
2.75931
6.45339
4.03881
6.46463
11.6991
4.00425
55.1119
18.2383
18.5085
53.6949
18.8209
5.74358
10.6932
54.7865
58.4662
6.02026
18.2867
58.5783
18.6231
18.7159
58.6818
19.7051
61.5798
6.61329
11.5449
19.8995
61.0007
6.52022
19.5593
3.3079
5.92734
9.04316
5.48143
8.89712
16.2993
29.8091
6.88221
14.2694
133.475
8.05078
20.2847
70.6929
16.153
19.7197
52.8995
39.0723
11.1951
17.9003
10.0862
51.9001
164.97
31.1752
23.5396
61.8649
63.5127
18.4783
3.5789
5.95304
9.69655
6.04809
10.4109
17.5585
59.0583
11.3235
18.9271
58.9574
11.2115
52.7045
51.003
59.6219
11.2923
19.451
11.4613
56.4978
36.1809
46.9323
131.992
45.1369
57.3296
6.3158
57.7833
20.1031
11.8067
19.2585
6.70373
10.9179
4.16706
12.3876
2.76961
6.63056
4.1572
12.0414
2.80285
7.21649
65.1343
20.7224
12.4968
20.9787
7.10777
12.7437
4.44115
3.02757
6.8363
12.2319
12.3292
3.01932
4.37973
3.16489
6.6045
14.2248
10.7123
7.25141
5.05382
3.97962
22.5429
94.3411
69.6446
27.3385
11.0726
16.1303
4.38963
24.0921
7.70865
5.50411
33.7609
25.3333
29.3156
84.5111
47.3589
15.7383
227.316
20.2886
7.81781
4.02103
14.6294
25.609
6.59663
11.8352
30.6865
76.7826
19.3947
6.88508
174.802
9.12429
22.7289
157.63
21.1745
27.7817
71.4445
62.5398
15.0307
19.7639
83.718
12.056
18.0007
2.83029
3.98918
6.77649
4.74901
8.3981
13.1128
75.8646
57.7851
5.88211
10.1431
4.07192
21.2306
6.97574
3.53224
23.1642
7.80053
20.8639
12.1882
159.577
16.9288
6.31597
25.2484
10.6273
22.8152
68.5809
13.4169
18.0708
47.4234
3.08342
7.26391
13.8383
4.6139
4.7359
7.28787
3.08883
2.72172
5.74037
15.1815
10.1317
4.30318
3.56424
7.30401
163.087
66.2548
21.5075
80.7943
12.9538
8.41396
65.8054
25.399
7.39085
46.1527
21.8711
204.661
65.2959
24.2769
19.1844
4.28632
22.0241
9.64548
12.8185
32.2235
5.20111
26.8046
11.9059
77.8615
20.012
14.4769
5.94648
20.8802
12.8458
34.8332
7.19801
11.1585
20.045
4.17927
6.33969
11.5076
22.9496
3.83491
7.21494
13.2576
2.71756
5.17007
3.72006
16.2383
2.25107
7.30111
4.49967
3.05837
14.32
9.59366
5.55664
8.38926
5.06475
3.27769
15.6105
48.5199
15.2936
55.096
15.8501
5.60208
9.43794
10.3789
17.3593
49.2317
52.7746
9.14851
4.75783
15.9354
9.03687
16.1183
53.6158
52.2275
15.7955
17.5313
9.11151
5.45499
59.3442
15.5872
4.90242
10.9721
50.7147
5.27725
3.67952
2.9725
17.4641
2.32086
7.87069
10.4017
18.689
53.0749
59.1267
17.8408
15.6165
136.717
21.7591
53.2169
10.8229
17.2563
5.7433
51.0785
5.80366
56.1065
10.438
15.4506
125.833
22.2051
44.9248
7.54847
15.4827
32.5779
13.029
112.028
8.97599
5.90696
15.0312
18.2928
12.8723
52.3406
48.38
41.2614
14.1444
7.36271
33.9148
132.556
8.10525
16.4359
53.5289
64.3219
9.87365
6.07597
3.30687
14.9952
3.55733
8.47046
17.4412
16.4653
45.1105
10.8143
9.59089
18.8154
45.1171
34.1213
75.6783
27.8624
185.382
5.12416
16.7674
11.034
40.4292
5.73384
19.2396
9.24976
4.07727
23.6162
10.1186
6.08399
3.48088
11.8226
7.99613
167.02
19.406
68.7576
52.8131
19.7697
64.6754
23.449
34.4905
152.352
20.7096
8.24441
13.0544
4.20717
11.0645
24.5519
7.3771
55.7502
21.2436
9.75798
11.8944
40.5903
59.7764
42.4328
17.1803
8.44808
3.50396
5.25685
9.32944
6.05377
19.4227
149.784
50.4496
10.4161
16.2004
56.7316
17.7907
38.0892
13.0269
161.219
67.7277
25.4454
52.4869
60.6231
52.5217
19.9637
16.603
69.8748
149.109
19.2492
13.4534
9.07286
171.3
6.60152
68.4101
25.5253
36.7932
148.382
12.6542
25.0273
18.3633
21.42
72.3292
21.5522
129.336
6.92636
15.7
35.7956
14.5155
20.2191
129.254
50.1304
23.7634
11.8629
18.325
47.7926
20.9994
57.5678
169.389
58.725
72.2115
5.90993
27.0352
14.0459
7.7105
5.29493
16.7459
9.03393
9.62646
95.1009
39.5675
21.8704
11.1765
30.3032
17.2753
5.69226
15.0982
3.70386
9.3555
5.24805
3.88717
16.7473
5.92161
4.03828
16.097
10.6736
6.22485
3.95509
20.4458
60.6821
46.8406
151.192
71.8873
12.9712
21.8295
13.2504
69.7333
23.3821
17.7946
4.34775
9.3521
7.3076
13.3336
30.6925
64.5915
65.9061
22.616
6.98944
4.25795
12.9353
7.08994
13.1137
22.1973
78.6551
22.9678
19.6606
13.8985
179.755
7.70424
13.9364
4.50458
23.3176
4.60946
24.3067
7.45141
21.7973
56.0427
19.4419
193.246
36.1899
10.4353
15.4181
6.6045
48.1447
5.63118
11.3225
30.0415
14.6215
74.125
22.7257
82.3249
13.8185
24.1097
62.1617
13.2251
19.7549
70.255
12.0684
65.3947
58.9619
16.3899
7.83612
3.426
4.41865
9.8615
5.42174
15.9277
20.7583
7.19617
13.2273
4.14672
12.2892
22.5746
6.69507
48.0445
15.3793
154.121
8.01525
9.45668
26.3098
71.0554
78.2799
6.74627
4.56944
12.3902
23.2613
20.7315
4.2437
7.45793
8.98091
17.8579
28.5868
46.6074
9.12414
13.9503
5.3003
9.70873
16.892
3.15236
15.9442
3.43391
5.01664
12.0006
72.3256
22.2362
61.8236
13.6014
19.3348
65.4615
84.2925
10.1212
3.99847
6.13435
19.7043
15.1512
4.13219
10.5358
19.0553
10.7894
66.1097
12.1891
16.4921
12.5109
23.9784
6.50137
5.06183
19.7555
4.46709
14.9949
22.2376
19.55
82.0907
27.5129
14.2071
54.7397
202.047
38.9139
70.4452
90.5889
62.9204
18.153
43.1671
88.416
23.748
21.0088
29.3679
218.219
206.505
71.7851
26.6558
24.2506
82.9022
22.4654
8.45897
11.741
78.3812
7.22121
63.9881
26.6143
16.6704
28.7719
5.59561
11.1283
6.3939
20.3597
41.0718
58.1714
16.9192
40.5956
21.1141
22.2163
56.9297
65.2362
22.5094
78.2625
70.2143
13.8132
6.26431
57.0878
9.51524
5.38281
19.6379
34.185
49.454
19.4483
17.6393
55.5885
167.746
73.438
17.0805
7.37922
4.46227
21.6176
4.66821
24.5005
13.2119
4.52171
6.39602
21.9039
12.1806
7.01311
13.3009
4.23402
5.10914
15.0111
10.3198
26.3108
8.02593
5.87839
17.8813
22.6396
7.24122
13.382
65.9995
70.3533
7.57581
22.0984
13.1348
7.37043
3.12241
4.53139
7.33529
13.5446
4.51466
63.59
20.8497
21.3757
61.476
22.1242
13.1241
76.3933
7.4497
23.0224
69.1634
7.32077
8.03719
15.535
25.2445
73.5081
8.52883
14.2662
23.6895
4.99242
7.85755
14.7506
3.45389
5.16127
14.0539
3.43508
7.53211
19.8424
69.1548
10.7759
13.0692
22.9415
6.50689
45.0667
18.6283
180.362
29.5499
62.2039
70.4215
165.581
13.2969
66.1341
19.9704
76.4269
21.3635
23.122
42.5906
17.611
210.878
32.1152
5.57771
8.03574
14.9423
10.2115
16.3892
26.184
210.018
29.2161
14.9345
20.5807
87.8505
73.9892
81.7913
76.3591
29.1468
91.7843
37.7602
199.135
190.869
27.456
34.8821
88.4763
18.3548
3.86789
7.08109
13.7718
5.90002
11.3023
23.0961
33.0565
8.51783
19.3911
86.0364
10.0412
26.7166
190.198
53.5979
12.56
15.1919
9.95383
69.6286
68.7879
57.6923
39.1652
24.7798
9.01935
5.9527
13.8301
40.2414
9.01395
103.063
23.6712
40.9712
50.6782
31.3519
14.6532
7.62494
8.87199
8.471
17.4403
30.8834
219.567
119.31
69.337
427.294
17.5736
8.36014
49.2328
11.0131
21.252
7.9204
37.9694
12.6423
16.2968
7.95946
5.08697
9.65564
29.3477
5.6804
29.6604
236.569
36.1625
19.7978
50.9315
97.1347
453.871
210.782
58.4209
74.4997
40.0962
139.309
22.7277
8.98286
17.0719
9.09165
40.5356
7.48124
36.9416
23.0752
40.9221
8.17903
9.37461
8.78917
18.9177
43.8746
109.988
37.5805
43.0735
24.9842
372.418
438.106
231.115
460.764
51.5585
11.1257
33.6072
100.886
13.1483
39.2923
181.839
41.7804
7.83341
25.8747
37.8774
11.5325
18.2607
102.358
11.6374
37.4538
167.411
99.1545
46.9722
30.9047
23.8484
6.30424
6.11386
33.2508
27.9354
14.1958
7.31441
6.94682
9.28491
90.799
16.08
10.9117
33.3234
22.6846
6.65027
7.46068
38.0118
35.8602
6.73478
20.5512
10.367
7.63572
59.018
319.221
122.793
41.0521
35.4946
7.06411
70.4894
11.3248
178.829
17.9152
21.9298
20.8062
8.5561
12.0912
8.75697
69.3517
29.2562
14.3094
15.229
6.9631
6.16395
6.17746
31.3453
23.1454
313.954
364.041
173.739
368.668
42.0711
23.6549
16.6687
79.5275
29.1669
7.15452
7.19695
21.7866
7.74974
16.099
28.0329
79.1279
172.026
359.479
42.0732
166.756
347.673
23.5535
358.639
30.7517
38.1723
17.0689
39.0783
17.6503
174.277
31.5565
26.2444
389.17
40.1714
34.9899
102.256
17.981
412.457
24.8723
19.3869
136.279
39.7534
65.0339
26.9557
50.5063
8.0368
43.2717
12.7753
119
11.6559
5.56187
9.38411
30.8037
6.23946
18.2443
6.81236
4.25904
7.38563
13.9677
25.9273
7.22115
7.01562
26.2269
6.52059
34.9749
41.6592
20.441
192.759
33.255
12.2959
23.2561
46.8009
36.6726
93.1436
407.621
16.9013
181.465
25.0682
102.434
41.5388
31.7228
38.6761
16.5151
401.04
6.98202
13.0113
6.89802
18.7783
29.9402
6.07479
6.50482
6.21126
6.75817
37.1251
32.0126
14.9499
10.174
6.69048
7.19028
40.452
77.3519
37.4386
19.398
19.8669
10.8545
6.56642
10.2928
18.6947
3.71875
30.0746
4.21654
5.18361
44.3507
328.543
87.8454
20.7957
96.1187
46.3828
20.6148
16.6672
373.901
35.361
339.398
159.261
17.7916
31.7997
18.6337
5.8039
6.95906
67.2508
8.97054
16.3905
78.3953
37.356
23.1115
35.2927
97.6778
39.8374
17.2861
361.332
22.3713
31.0826
36.4147
19.7681
386.364
39.9136
10.3504
154.899
4.39241
11.0586
22.3075
7.1559
6.17121
9.01628
4.76623
25.4861
127.797
15.0994
12.906
45.8165
58.4965
9.71943
506.176
182.213
97.1943
461.498
43.328
8.71297
7.5016
5.58333
25.904
9.88677
12.69
20.775
12.791
23.8531
9.76627
45.8789
44.7562
8.91362
49.1087
8.63039
35.338
8.09378
19.1081
10.5586
23.9586
30.0273
46.1792
88.8613
51.8775
420.262
190.325
111.853
404.22
475.235
39.0581
25.8648
19.2669
210.547
17.2746
51.0382
23.4496
433.277
28.74
35.1826
52.8042
189.21
44.6857
117.14
54.4024
99.9542
39.6504
7.42234
13.8437
22.9782
38.9106
8.40833
10.8894
17.4908
8.13741
11.9556
39.7732
7.16633
8.72323
34.7257
5.36584
8.33111
23.0512
8.45286
16.0325
7.26201
8.0065
30.9879
41.0731
212.749
118.2
188.922
223.479
535.069
49.4805
18.3583
203.125
21.381
486.973
115.066
218.728
65.7199
32.983
101.476
41.1453
50.0766
34.8834
60.6
409.862
49.3025
195.569
107.889
435.818
417.697
22.8937
21.8559
496.447
49.7456
42.6069
10.9023
39.48
7.00284
7.52932
22.6408
5.24479
31.7213
37.611
44.5482
20.7029
93.8946
19.3668
26.6518
230.342
438.141
44.2483
44.0003
7.7167
9.92125
39.6033
5.33169
8.92596
28.0523
5.00246
9.47747
35.8478
18.6102
7.6824
39.1729
8.24815
9.21552
10.2337
10.0327
17.55
22.2743
7.874
50.7335
8.92248
42.1491
35.5294
419.827
18.1613
19.575
15.6806
53.5865
36.6931
8.92956
68.1346
9.89966
12.6941
26.262
15.8145
217.88
44.3449
111.169
41.5385
11.3774
12.6136
7.15768
18.6565
7.15078
33.1701
6.1034
29.8088
34.8524
189.158
22.0782
12.9563
94.5116
8.88581
55.5378
369.235
26.4416
6.29505
32.095
11.7411
15.433
51.0698
7.51182
87.6637
352.288
178.234
16.7546
7.38382
8.05348
14.0249
6.69012
35.8815
28.5349
36.343
94.2324
40.1795
15.5436
186.108
22.6158
22.7755
35.4617
188.559
13.2138
94.2216
36.5294
9.32974
39.1551
29.3233
17.2849
385.906
15.695
37.5148
180.068
92.8635
56.0539
16.96
206.986
399.716
23.6618
40.5394
40.2417
31.1568
35.1347
56.6868
17.8044
8.06419
5.77506
4.62816
31.853
4.1891
20.8451
10.6318
36.3828
24.1847
52.4538
7.93689
101.859
9.55755
26.5957
30.8096
19.3377
11.1144
6.6566
42.0949
14.6855
8.69479
159.951
382.051
59.7501
35.5873
362.411
23.8132
194.07
107.352
13.8168
15.1103
6.63177
8.03707
28.2277
30.4554
6.87929
12.7782
5.24957
5.4609
33.0823
24.2964
17.0765
6.64743
5.9281
96.0744
36.297
85.1127
9.39081
375.837
21.2927
36.665
185.769
374.653
15.7174
21.9773
93.794
34.9459
339.202
14.8047
16.9616
33.2883
55.4812
7.97025
9.08051
16.2019
34.8861
13.158
27.8709
32.6469
31.2448
6.32715
6.56476
6.92898
14.2046
16.8553
97.06
87.262
38.9223
384.837
179.189
355.79
92.3335
343.665
20.4724
7.35534
4.37313
19.1255
8.6498
5.70986
34.5057
29.3093
6.25507
6.35371
33.4304
19.5102
7.27938
12.9457
5.64452
24.912
40.199
9.52919
12.9101
7.44687
8.89098
8.00535
17.4013
14.4062
8.26394
39.4374
7.14147
6.53424
6.19924
4.81674
8.9846
33.8601
4.40559
23.272
7.39251
8.6842
36.8069
15.8558
8.0935
29.3976
9.63752
7.54007
8.28574
58.9966
17.2714
9.70763
28.8325
14.0918
7.35632
6.69676
8.0794
32.1183
38.3862
12.445
8.46552
8.61006
471.571
473.471
52.7444
209.476
90.3621
32.1245
143.662
24.69
8.91201
16.1897
43.2846
56.7414
10.3332
18.6596
49.7967
8.83782
34.1129
8.87191
17.7043
25.1181
11.3395
231.022
44.4255
60.1424
179.102
510.5
158.878
98.2183
26.6103
191.211
25.9811
13.3755
95.733
44.2242
10.7182
199.978
49.3313
22.8534
248.563
43.4733
26.3862
12.5766
46.7918
11.9264
26.0822
47.0184
11.6297
236.871
554.211
106.996
244.725
57.9883
17.5895
585.453
61.526
29.0607
153.471
234.355
69.9131
553.83
218.853
40.4486
43.7844
190.579
69.6753
12.5734
46.7211
11.6682
32.373
25.86
16.2142
29.9394
29.466
58.2715
10.6647
23.5684
105.255
11.9397
676.533
202.471
112.865
45.6875
12.6035
6.56108
11.4132
13.2727
43.7236
11.5161
15.2076
25.6287
170.332
53.6778
16.0904
22.2222
46.8393
12.2656
96.5422
60.7277
17.3125
16.1378
32.1908
17.3146
776.274
29.9135
75.4472
146.125
197.561
37.19
173.934
602.159
68.6958
36.9841
123.686
27.8946
198.296
576.832
109.296
55.7194
13.9964
31.2528
14.817
56.6454
30.9191
15.9604
280.94
672.81
44.181
801.759
54.3695
83.9794
33.6308
220.581
501.051
562.652
232.969
55.8097
246.591
26.9789
536.234
33.6778
87.8677
155.031
52.3278
57.7447
528.504
24.5626
276.361
20.4769
124.32
62.8395
71.9284
636.726
55.0693
101.585
37.162
32.7676
18.9233
117.54
13.9932
28.6141
12.1536
32.7381
65.6413
49.6487
19.9776
155.722
28.4286
214.056
37.8791
54.7861
621.528
34.9636
32.1658
62.7941
269.751
16.0615
22.2669
14.1275
33.5675
10.4504
51.6407
13.6447
13.0432
39.3179
27.9648
11.226
12.388
43.3968
12.6423
13.1873
31.2888
48.7158
14.9594
13.6745
44.7705
13.5528
96.1395
228.962
44.2323
222.512
37.7078
16.5241
49.5683
51.5369
39.6082
191.976
676.697
26.1463
29.4939
150.729
75.5925
89.1898
180.166
33.4197
35.9096
155.661
177.134
242.527
50.3855
41.3313
198.272
37.593
32.7515
49.5773
169.705
186.936
36.5683
225.383
190.806
60.3264
231.628
68.8707
16.7155
291.772
52.7138
20.1267
36.5094
242.502
166.996
59.9222
34.4189
60.2685
105.343
26.5268
68.9477
117.026
47.1626
25.8422
683.945
33.5554
9.06543
42.7504
10.9959
41.0698
11.6826
14.2618
11.9628
10.3081
46.1043
13.3761
7.81023
41.7235
6.19799
10.5469
39.7294
37.4218
570.827
61.4118
27.153
177.643
11.0917
18.3474
40.6341
9.17034
26.5646
8.78749
10.4915
12.3821
9.99819
78.3612
43.4288
25.0799
29.5995
12.4553
12.5731
45.3337
12.3429
27.7595
12.0501
11.9297
43.7171
9.21603
11.1174
18.5653
23.6029
8.66417
32.2555
8.27052
189.73
19.7982
44.9766
221.365
41.5123
29.6265
9.68724
41.6046
9.30451
10.3037
19.3822
10.8614
474.016
47.2758
23.821
15.3337
9.6057
54.9659
22.0045
13.6444
184.437
474.667
90.7573
42.6005
10.8988
22.2438
10.4502
22.5147
40.5613
11.9121
60.9148
29.6504
96.227
28.3311
226.545
488.533
48.4062
55.2996
27.4117
22.4912
37.4667
45.3061
8.71357
7.96203
17.3571
22.7703
9.9902
52.4103
231.313
197.763
59.4176
21.1559
27.0312
545.739
183.654
55.4808
43.6717
44.1179
86.8498
164.788
26.1237
25.8046
215.187
52.7524
27.9998
48.4774
12.8013
44.1035
10.3933
6.49244
42.2116
13.957
6.28191
40.1998
27.2384
54.2991
250.111
220.689
113.795
199.657
29.8233
65.555
60.8058
28.8903
103.271
19.096
13.7959
12.8024
63.6092
31.7813
41.2193
11.2844
11.1879
6.30333
11.222
40.01
11.0544
215.74
58.3492
271.034
46.906
24.2104
15.8283
10.5553
48.0793
10.8342
52.969
22.856
50.9937
13.9722
6.98209
15.3207
13.2597
56.9301
13.4389
5.91407
8.47677
39.4783
10.5315
11.6514
9.9903
5.70063
6.53552
14.0039
10.604
43.4027
6.74109
13.1109
10.6344
11.7849
10.5405
21.7406
45.2745
44.4646
10.3742
11.6121
10.9799
27.5483
17.9671
12.28
41.12
9.11211
9.43072
648.362
28.1417
56.5282
266.955
28.2168
181.213
40.2249
48.2814
59.7912
203.786
55.4094
49.335
195.105
20.9395
213.905
24.9751
47.3474
156.588
51.7972
14.2907
211.452
33.0471
15.511
96.4775
690.7
143.6
24.3794
44.506
12.9185
13.2387
12.0458
26.9711
42.6265
60.0482
59.0721
698.614
31.1582
275.746
18.4106
102.671
19.3491
15.2663
27.3649
11.7544
68.9922
10.4524
37.0625
491.519
52.6869
205.197
89.9569
22.8733
23.5049
47.5867
8.91832
20.7294
83.8736
9.56194
16.7246
9.27531
39.1055
10.0398
19.8788
36.1103
8.72809
205.754
169.648
47.0592
12.521
9.55098
7.71447
40.2605
22.6838
10.2241
40.9651
197.462
22.6914
19.0145
44.0204
179.096
11.6499
11.9947
17.8608
24.7548
8.82972
36.7749
10.5464
13.2759
49.7626
9.78592
21.5397
9.65748
14.1473
44.9931
29.1114
580.176
45.7499
55.6446
58.4163
108.345
15.2503
61.4605
234.949
24.693
611.598
28.3463
47.2629
44.0115
15.726
231.817
47.6143
48.2292
14.097
195.877
20.641
53.6122
24.7829
43.6858
31.1751
57.3615
38.4317
10.7506
12.2323
115.968
15.9636
288.347
59.3255
227.839
632.414
53.712
123.432
206.923
10.596
45.4025
58.7987
10.1014
12.4289
20.6152
13.1042
17.6487
61.1799
100.838
252.351
29.2557
52.8875
60.1534
12.0286
49.6774
13.4227
29.0636
13.2894
12.8202
26.0089
14.8817
28.5883
200.58
28.0861
46.4992
47.4404
11.9535
52.595
78.6923
22.6009
757.107
159.56
32.0757
44.7797
13.9551
43.4661
168.75
31.9837
62.5907
29.6908
27.5365
133.846
28.6827
13.7746
16.5807
38.81
86.3939
18.9198
212.34
617.636
243.298
11.7843
55.2647
14.2942
7.61816
48.0219
12.8152
7.03313
9.9617
12.0428
44.9208
61.9802
14.179
13.1134
20.5634
10.9127
28.3409
53.7928
18.094
15.8116
24.7927
11.9113
11.1804
12.9575
31.4136
6.14158
9.31105
44.6184
6.43255
193.084
28.0887
62.767
279.885
48.532
685.788
32.9558
51.4267
14.6607
14.6387
31.6981
14.9678
54.7401
173.243
26.5997
43.0949
159.519
46.4824
31.5068
16.6614
13.3885
16.8991
45.1943
15.1452
61.1384
2.43718
9.70911
6.57121
3.71531
2.60865
5.77252
3.45335
2.83996
12.4519
6.76337
3.91933
2.73254
7.22191
4.11398
3.5632
5.72024
10.9869
16.7363
3.65101
10.5293
5.59457
3.33385
9.62631
15.8621
5.19754
9.83613
3.30513
5.21838
12.1261
7.41354
25.3027
3.82516
12.3896
29.8725
4.15551
39.7095
13.3109
39.1982
13.4477
14.5116
7.38602
44.6939
4.70457
15.0043
42.4971
4.44068
66.8094
15.2921
9.90029
64.2071
14.5604
44.6351
44.8461
47.2298
44.691
9.83846
62.1606
14.4401
63.2573
14.5414
13.7832
72.2208
15.8015
17.8721
152.582
65.7799
59.6065
11.2168
24.1489
21.7732
48.3936
51.9237
3.25488
5.10898
15.0216
9.19715
9.18793
5.10563
3.26128
3.12355
9.53448
5.16551
14.6441
3.27881
9.00263
4.85193
51.9352
55.7626
16.2558
10.0541
56.3818
10.3224
16.1099
10.2029
3.50806
5.45323
16.7519
16.7997
3.49762
10.1929
16.7578
63.7943
11.7618
10.8636
17.8979
10.5033
18.128
3.78858
5.71146
10.9845
17.3782
3.64514
50.6077
50.4571
30.2666
15.0836
151.506
21.0839
53.6931
56.8783
56.8792
11.492
17.1768
66.1813
18.1306
146.568
63.2165
43.0211
16.9043
15.4055
48.0803
11.7948
4.94798
46.5156
7.8803
15.9662
29.2321
4.45051
28.5606
14.605
12.0305
20.0673
14.9298
18.5807
3.81433
6.39953
11.3832
21.3251
4.0171
15.3033
9.58178
50.2608
50.8264
15.211
54.4685
50.4425
55.2751
10.1257
17.2655
52.8293
16.2839
4.06149
18.8599
10.9395
6.06845
11.3997
3.90127
6.39669
3.59486
16.5677
11.1205
6.10143
10.1913
3.91671
5.44843
45.1631
44.2623
16.0233
10.1291
50.5301
9.91922
16.3323
10.1114
3.52013
5.32059
16.7996
3.46799
10.3026
16.4164
8.74953
13.5811
2.98985
4.95653
3.1466
8.72258
13.7198
14.7139
47.8979
9.18179
9.20533
14.7036
50.3034
51.2729
59.0535
10.6533
6.51128
19.2848
10.9783
20.2462
56.2586
50.1898
19.0403
17.0741
58.9236
24.9779
6.28489
11.7582
10.5872
20.8814
68.475
31.9422
43.0567
170.315
7.68684
2.79104
4.15335
12.4751
2.85218
13.1631
7.40432
14.087
8.86637
45.1523
8.91697
13.9096
8.52687
12.5942
2.90498
4.05468
2.76969
8.26384
15.6425
13.1387
9.11648
43.879
8.41281
14.5317
28.8397
75.0825
83.5537
27.5784
14.4271
8.91426
48.8317
13.6363
47.0064
65.7958
19.7978
22.5694
176.724
27.4345
8.85621
12.491
16.3827
33.387
79.4372
2.94081
4.31723
8.62365
13.3538
2.96325
8.56317
4.30266
2.72874
7.91017
3.96808
12.5648
2.68507
8.0801
4.02336
9.41662
4.71553
3.06784
14.472
9.5002
3.0762
14.359
21.687
11.2426
21.8374
11.2501
57.7794
58.5858
9.58703
4.91282
3.28126
14.9412
9.77676
3.21391
14.629
57.2892
58.4365
8.33233
12.7671
43.7123
47.16
12.8001
44.2763
43.0741
9.14814
59.7736
14.3127
54.5997
13.9103
39.6802
39.3084
3.08251
4.97618
9.11343
14.2353
3.20873
8.82854
4.70536
2.9449
8.04999
4.2105
12.4265
2.80586
7.90263
4.62895
8.15278
12.8025
42.6329
12.9021
42.2931
41.4652
41.378
8.47984
13.8045
43.8763
13.4518
43.0375
39.5442
39.9691
14.2141
26.4905
33.0945
13.645
10.4623
6.85169
21.1904
67.0506
6.40909
58.7547
11.0808
9.21482
47.1468
17.4681
5.40436
5.60946
49.9425
8.86573
16.0382
44.297
42.2448
16.7351
67.9732
64.5396
42.9283
11.8922
8.8357
45.5386
8.13921
14.3094
4.74251
3.40174
10.151
9.80516
5.12815
14.9194
15.796
11.141
5.42971
3.52033
16.561
10.6566
5.1293
60.1134
59.6294
74.8835
179.664
23.7829
6.57246
13.5962
4.24668
12.4319
25.7364
6.46536
54.2514
14.764
9.04364
48.2544
9.85121
19.8527
11.6036
4.01429
5.51997
15.7485
17.1591
5.98522
13.2328
25.6993
13.5981
24.8095
8.27978
5.05661
15.8516
43.4557
5.09422
44.7517
8.15127
8.66566
47.3097
5.40266
16.2487
5.29428
8.86744
46.3549
12.5176
22.9057
23.2348
12.2722
15.9603
46.1078
15.8072
46.3829
10.7945
6.69761
25.8358
67.1505
6.70525
10.7643
68.0125
5.5129
9.04938
2.25446
3.08324
2.25216
5.39149
9.23616
10.3386
64.4721
6.26198
24.329
6.31734
10.2881
64.2056
16.1119
43.8247
16.0971
44.3516
50.5213
9.84814
17.9235
5.71563
52.2567
9.50825
17.3874
26.9841
12.5462
14.2069
49.0534
16.555
5.61824
8.38456
9.25808
17.3081
46.2554
20.2576
52.4478
17.8797
57.5688
6.62401
2.63176
11.6034
3.68584
6.95093
2.57484
11.1055
11.748
8.47321
40.5898
13.0954
7.79055
23.2816
68.9699
25.6029
62.9152
6.43583
10.3661
2.4423
3.64216
2.54897
6.08505
10.9003
14.9605
74.0171
6.81687
30.4096
8.20508
11.5055
162.398
27.9864
6.84993
4.57702
14.1514
7.08525
27.0452
14.4126
80.5459
17.3474
15.3206
11.9545
182.026
28.6831
14.1876
4.58447
8.55849
7.18234
14.4337
34.113
25.0074
4.83054
14.0944
6.89624
19.1187
7.35867
21.5725
91.6536
19.8137
22.1886
14.6303
226.011
32.0098
5.34674
17.1985
10.7112
15.7272
8.49255
41.9034
88.3446
211.499
70.7378
11.7247
19.1511
12.4933
62.4402
9.42022
15.1747
5.69108
51.1914
5.42876
9.17684
36.6207
12.2942
71.1427
17.5128
17.8093
83.4017
11.7025
17.1235
26.5979
13.7866
21.6264
196.326
19.7835
58.2189
52.9404
21.4867
10.836
20.0299
6.10036
54.1902
6.45431
10.109
58.7118
16.8925
30.5794
39.5592
15.5597
18.3387
12.6201
6.18418
3.92209
19.4432
11.744
5.844
51.6829
52.732
37.0432
88.8499
17.1405
8.118
9.52881
197.722
31.405
72.9062
62.4443
51.0168
10.3146
14.2018
54.7135
9.50468
15.5216
3.59986
10.3511
5.12715
10.1252
5.50459
15.8614
23.9257
56.483
65.1901
21.0066
9.03136
4.14614
17.6408
5.33145
15.3147
10.175
3.87178
20.0985
10.9812
38.4173
16.951
208.278
10.9149
28.1945
103.466
80.8504
35.0845
15.371
72.916
29.5233
8.09651
90.4965
13.4899
8.96954
218.803
80.9772
63.6374
17.3898
14.352
79.3697
11.7799
18.4566
6.10525
4.62791
11.4008
6.97533
12.1132
17.031
22.9271
21.2741
8.64504
5.03421
28.8563
7.35796
14.7069
59.1606
62.5604
20.1517
40.2615
222.461
17.2404
26.4462
8.50704
5.19716
15.6595
26.4995
32.3653
5.4473
7.91922
10.9577
63.4574
17.2436
7.0779
41.6667
11.3792
6.3682
14.4774
75.5859
20.4808
93.0469
21.4649
13.3844
72.2908
7.49001
31.5677
14.988
92.0818
25.347
12.6565
15.9591
50.8029
19.0546
67.3087
7.33981
20.5682
10.4636
57.888
23.6028
12.2566
24.2912
57.7851
20.261
11.3071
5.85468
3.68478
15.2811
3.91192
18.3068
9.77317
61.1574
65.7879
18.4418
57.5802
10.6189
11.3535
16.9625
12.2935
6.58803
4.55652
21.4244
4.29872
12.9966
20.2169
57.0241
49.8802
4.06777
6.65321
12.2678
15.5798
4.42932
6.21323
10.112
3.85372
8.82732
19.9844
5.23322
5.66361
10.6298
3.6421
9.67405
37.4829
18.8231
198.516
52.5444
14.6394
60.9606
51.4267
11.3067
64.8335
20.084
59.1379
17.7374
27.0493
193.795
36.0147
9.74151
3.55597
4.82865
15.2935
18.1391
3.31961
9.80191
26.4385
66.6019
22.3897
82.4054
13.7792
47.7895
10.589
9.0571
16.7909
8.3521
4.71636
12.9346
3.0636
7.50265
14.7243
3.25703
34.0902
186.083
49.3427
2.94903
8.15933
11.1654
4.67944
4.11238
6.73684
3.29463
68.0716
56.3879
6.83654
12.3711
25.5542
58.6365
10.7102
7.6813
21.4527
4.19424
2.95058
7.05145
11.3248
3.01282
11.5251
4.01261
4.61413
19.2345
3.5741
8.35623
3.29951
5.10707
14.0361
6.41513
41.2115
9.07645
17.1889
10.7801
17.4792
5.87194
69.1413
22.0603
58.3257
26.5192
19.2928
12.4258
6.44448
34.9808
17.43
7.37444
46.1912
16.6548
6.35674
4.07476
12.8435
5.61396
23.1968
9.98198
97.5533
45.9947
251.515
34.1675
11.4125
14.7011
32.7419
234.409
43.1752
8.92626
20.4186
6.88821
4.87254
13.3917
23.0992
4.64348
7.36629
21.2881
6.63508
16.2975
11.4638
3.94358
4.33174
17.841
5.69618
11.1854
65.4632
18.6789
12.2811
59.5473
16.6666
22.5363
58.0622
63.3409
209.386
29.2802
84.5966
11.4867
7.39206
3.0334
4.43344
7.11623
12.0292
4.088
47.8028
17.6524
18.5375
40.9602
14.6668
24.1632
5.12849
7.881
5.23425
19.0628
28.3863
57.5802
22.9846
20.8488
63.4223
17.4854
6.82573
44.0297
9.09216
18.4277
5.93813
34.3261
6.16749
12.2633
3.89825
17.743
4.09127
5.8041
18.6681
10.4414
64.396
17.7654
11.6281
15.9361
55.0536
10.2729
14.0111
49.1317
9.40066
15.7248
52.3651
7.92557
26.1295
80
11.7277
12.6203
30.3007
7.35897
5.24899
10.3719
3.73051
15.4541
3.59622
5.69559
15.9939
8.27548
17.4548
88.9508
37.0242
13.6464
9.8083
31.6667
14.253
3.21434
7.96264
4.274
13.0741
8.58942
4.53723
212.713
51.9684
38.9009
24.4935
82.3045
8.2931
12.0944
30.7882
7.48212
67.1972
18.8309
3.49322
10.4435
5.35772
15.8029
10.5686
4.97273
91.1631
27.9352
75.2663
31.8952
21.4477
6.33693
54.4966
11.0463
19.9564
6.84134
59.1519
22.9245
65.2849
59.4946
28.6454
65.9938
75.4126
21.0769
58.4513
24.0816
59.411
10.4716
16.9865
15.0897
55.7488
256.635
14.5539
11.7214
35.2522
19.8854
95.4699
46.665
71.422
32.3038
28.68
80.1633
73.9848
9.45097
6.1397
17.1259
27.8038
8.88675
6.38557
32.702
15.9161
28.1734
276.562
99.5387
22.5864
22.8846
9.96279
18.8401
7.98982
50.0986
6.66561
36.1362
13.1721
15.0465
72.8821
20.6554
14.041
84.9034
22.1074
3.55092
12.92
9.12972
5.30678
8.37921
4.70079
3.79502
19.3272
30.8921
16.9947
60.3679
19.5422
7.27534
11.6997
10.9595
23.7199
45.1616
68.2434
13.2699
31.6881
7.73151
80.7524
11.7943
27.7434
28.9247
19.9141
15.7458
241.999
72.7334
51.8082
30.3675
17.3862
33.4783
16.1976
13.7829
21.7958
4.85845
6.6865
14.737
20.638
4.62677
69.5397
61.6518
26.1942
17.5568
13.999
21.9525
12.8604
4.27897
7.02025
18.3542
19.4662
4.68108
12.1381
3.71576
6.73156
2.80719
11.1187
2.74784
10.6432
3.824
4.96929
13.1488
26.7868
7.03825
14.397
7.411
4.75932
5.32884
8.39821
16.3659
29.5148
15.7335
5.53463
7.97684
6.7207
22.9497
11.4733
55.1546
7.15484
20.2464
10.7096
4.16194
7.73576
2.85165
10.9635
3.0213
12.4144
3.98003
6.10815
10.0695
49.5174
16.0895
18.4118
9.46914
6.04616
51.7895
55.8006
17.3548
69.1198
11.1931
11.7979
16.3641
11.1602
13.5602
5.12051
3.46618
19.0531
3.73292
8.505
18.5172
13.5963
76.7175
19.6342
12.699
10.3496
4.07862
17.1314
5.2933
15.0625
11.4491
3.83758
71.5569
61.1035
65.8862
12.8029
18.5618
74.7149
18.9651
25.88
241.589
14.9357
96.2958
21.8014
253.023
36.938
46.1243
4.89916
21.9069
7.15286
12.9111
7.15804
14.7042
4.72918
5.3991
25.1178
8.94479
16.2849
7.9166
5.86376
19.819
15.4765
10.8963
34.1576
116.139
17.3503
9.79866
88.8167
19.7803
33.2101
17.6411
37.6191
13.2932
27.4161
7.83349
63.9235
12.0421
8.48825
71.6985
23.1983
63.1554
25.0442
53.3871
73.2449
91.5721
52.2141
18.4733
42.7718
222.657
27.5966
16.7879
32.5209
4.57113
7.10072
14.1024
18.0015
12.1802
4.92637
6.46411
4.12435
21.5288
10.0544
5.37637
3.88535
12.4233
5.77976
34.3528
410.407
17.2169
41.0312
181.119
14.4036
9.49882
26.8467
22.5572
5.82604
41.5114
6.53178
6.86798
12.1147
10.7591
110.759
30.0505
24.6762
55.273
7.69058
8.88686
52.4222
90.1219
35.459
21.9443
33.4617
12.5447
6.00756
28.8972
35.8358
6.18198
11.9891
7.56506
7.0513
7.36748
8.49163
50.0734
15.2597
12.1214
25.019
6.55511
6.48115
17.0407
11.1289
6.7465
27.3811
5.53887
5.40468
5.43053
7.55653
30.2274
4.05765
20.5684
6.52673
3.742
7.33482
7.1792
15.599
12.7117
37.352
6.43973
5.81309
5.69524
27.2403
11.9829
6.32217
5.46235
13.8916
6.60614
5.31317
21.5704
32.7527
5.33133
11.9594
6.13767
6.2293
6.55461
4.1488
28.9386
18.5343
6.22459
33.5803
5.28975
3.40874
8.6873
17.2745
6.11248
6.34961
3.79562
4.6614
41.825
26.2998
29.2076
37.3495
95.9198
156.97
362.553
10.1399
6.81135
20.8967
4.39321
8.40937
29.7359
4.70657
51.9866
43.2403
37.8288
60.1478
58.1526
93.8981
49.8371
160.235
15.1598
201.669
49.0312
114.797
28.0386
41.0141
69.1367
9.30025
8.39786
30.1863
24.4074
38.9845
8.45588
7.963
12.4644
116.029
14.7235
44.9747
28.6961
57.1053
9.80704
10.1194
53.0723
8.86589
29.548
11.848
45.8194
8.33903
24.5204
17.2883
27.3169
15.6008
26.8078
32.9262
37.8436
23.273
6.10268
3.57047
10.43
3.64783
6.41476
8.70932
3.5702
34.2372
54.6162
38.2792
46.4897
17.4437
464.899
39.1613
49.8692
14.8626
358.945
30.2262
8.31132
34.0479
5.87927
22.3887
43.3399
6.5431
22.8421
7.13797
19.5781
5.90385
13.3712
31.3185
6.17895
18.8453
35.775
5.71959
5.25937
12.8456
10.6888
5.6723
29.3356
49.6752
41.6871
33.1112
14.1994
35.2555
375.564
13.1261
40.202
22.2524
29.794
33.0827
20.4313
20.7626
14.7381
23.0384
13.4387
5.09389
9.14642
3.08135
3.15259
7.45647
5.37122
3.08632
51.4449
86.7642
151.328
42.9269
44.1938
35.2974
51.874
31.8359
20.132
6.08815
11.2646
6.93924
36.6718
28.9915
5.02144
88.8074
361.617
152.446
35.0346
21.6906
30.8684
24.1806
8.75973
19.025
6.07249
3.69843
28.1174
6.97777
3.97988
41.3575
12.6892
178.564
22.4959
93.6978
57.4176
9.1967
20.7921
5.84116
37.0676
6.28272
11.6591
13.9736
6.37288
364.331
33.9646
40.2629
12.2949
6.70038
55.4658
24.3994
7.84147
377.849
14.7546
13.336
39.5509
52.8857
8.40987
23.1075
7.36531
38.328
32.1576
11.6373
88.7047
53.6971
33.6725
8.64535
167.441
39.0922
21.3461
155.01
44.7705
53.8115
88.7296
36.8032
5.23605
29.6019
5.58517
20.6342
11.7097
7.12865
11.1115
6.99597
13.2149
5.99796
35.9029
19.7082
5.49146
360.628
155.145
90.4038
358.505
13.7889
32.9936
6.14771
6.52845
20.4614
23.786
6.08123
7.91684
39.3809
8.15756
23.2855
7.39213
8.78679
27.3787
7.53787
7.44372
26.9506
13.958
7.79872
23.6895
7.08515
8.40971
48.6887
11.8839
39.8797
8.8308
10.2081
35.507
7.99947
14.3045
8.18864
51.8044
7.0766
17.1266
9.76245
9.28694
32.4806
50.1808
8.06413
7.78489
44.1739
10.7328
10.2527
13.5042
43.6169
95.7829
9.08726
23.4454
48.5197
7.82739
24.3768
7.10674
32.3519
7.09491
7.70988
35.2169
13.6639
99.1229
174.849
41.6817
35.8694
62.3928
24.2732
67.3315
48.4461
107.28
199.089
458.768
481.962
62.8322
199.617
25.9364
53.9193
65.0358
9.70425
105.683
11.4696
14.4096
14.8886
25.1804
16.2389
23.0046
39.487
68.847
430.822
26.7713
46.0217
192.701
15.0615
44.1338
181.383
14.1036
15.7112
411.45
37.2677
502.831
563.464
62.3956
106.14
51.6702
23.1375
45.709
188.156
168.279
33.2755
21.7232
40.1929
12.8088
41.1079
21.3668
9.63396
11.9106
45.7458
9.57183
49.2414
22.4524
595.618
21.9575
233.554
59.9333
40.0084
109.086
56.3679
28.2835
16.9963
177.051
16.0373
30.1614
111.449
11.1372
62.6539
9.66637
29.2045
555.604
5.64149
11.0977
9.48197
37.5603
9.14675
5.71801
10.7729
7.9304
54.5171
13.4401
10.6953
24.9849
11.23
6.12231
9.60225
14.8268
38.6384
8.87299
35.2653
8.12422
10.1034
47.5361
166.996
45.4729
168.027
43.1248
17.6974
20.4807
181.933
24.1593
616.817
52.548
24.405
243.116
103.885
31.8607
37.6383
55.4925
35.2406
30.5934
11.3786
24.8772
109.384
16.0701
203.797
23.29
43.3484
47.9381
179.684
231.963
64.9449
23.693
631.623
48.7097
52.7576
11.8726
23.1079
14.3593
26.0787
15.8971
45.9162
51.1931
22.6571
12.7387
11.6918
13.1277
46.1671
24.4055
55.8464
19.8602
23.8861
45.6503
645.712
254.527
200.318
59.8433
12.1845
10.3307
30.066
15.6963
11.2124
22.8632
27.152
16.5911
10.8826
13.5459
64.1164
36.1538
9.60726
62.7116
214.257
272.044
51.7962
30.2825
242.605
68.7582
54.4535
32.0279
99.1651
656.637
149.607
15.892
13.3503
48.7736
6.94588
56.559
7.48303
13.4448
213.377
46.9937
15.8693
45.5611
190.115
52.7046
49.8685
27.8711
52.5825
25.5655
248.297
16.6707
110.641
70.3803
702.294
55.9815
52.1246
20.6243
48.7262
24.775
67.8488
42.5358
111.843
241.862
562.546
209.848
46.5962
175.349
58.9781
100.572
39.4497
17.982
578.961
27.1083
21.8841
32.3779
39.0879
18.2574
23.1551
64.8736
34.0146
44.5134
47.1288
48.5926
183.862
13.4401
42.0054
220.628
14.0447
11.3547
105.786
23.3133
14.9195
29.0279
34.886
10.4778
9.44862
10.8765
20.8073
40.1998
9.68317
10.7764
19.3858
12.6179
174.026
43.5862
46.9556
40.3602
13.5621
41.8998
8.93379
56.7555
38.1967
8.83957
10.4143
16.6408
12.1911
195.28
576.721
180.626
7.94952
33.053
19.8861
12.3481
15.8626
10.4817
8.86349
11.8433
18.8558
46.1606
10.578
12.7309
46.0966
9.71099
9.05752
41.767
11.0249
6.0486
5.70734
37.4593
9.7141
21.9463
10.7761
12.3617
46.6694
47.8919
10.791
21.3488
656.732
55.029
626.707
48.2784
30.4936
225.507
108.294
16.0829
46.6105
13.5102
45.0042
172.113
188.682
14.2211
43.3163
25.8845
13.8512
19.1674
12.5521
37.4652
67.1297
11.8304
215.437
242.784
46.9638
39.2192
13.5995
203.711
12.8588
187.562
49.2969
23.3866
36.2609
44.1925
19.3954
24.3774
51.4845
25.4127
48.5347
37.5062
191.526
46.724
112.156
70.9385
81.068
15.931
245.44
26.3341
662.168
55.3206
10.4658
9.21267
44.3718
6.12759
11.9147
30.416
5.82853
27.878
55.7776
60.4979
27.5772
16.4099
10.1534
43.5549
11.205
19.5308
9.39202
40.3823
22.4361
44.2133
13.9132
10.5214
46.5433
10.7348
22.6222
637.896
68.54
117.513
251.244
31.2718
12.1307
108.472
16.9341
62.433
37.6551
10.7152
195.181
181.592
62.5299
8.98826
11.8118
14.5724
12.9801
28.4137
50.9079
608.964
21.7604
17.2164
64.0113
62.1603
26.0206
13.2234
10.2508
16.0572
49.9929
31.8078
229.313
21.1231
42.9505
50.1012
183.622
105.244
39.8853
41.3461
11.8675
162.244
28.7431
37.2377
182.662
67.5998
221.705
107.362
540.14
5.15408
26.6867
7.92211
4.96939
7.26108
13.4523
4.69648
9.17304
10.3862
13.6426
24.4546
7.60823
35.9564
7.78431
8.94834
54.2797
8.49092
17.5366
10.3148
7.90198
41.8529
112.45
36.3156
62.6201
106.401
175.708
544.947
205.582
33.9162
46.2577
56.5454
39.1378
19.3054
22.7781
243.485
109.808
63.1342
16.5885
610.848
51.5173
65.6402
42.6752
23.3241
23.4755
208.373
41.1836
44.459
14.9645
170.934
48.5023
56.4457
13.8731
57.8465
11.113
8.31261
6.48323
48.4884
25.4682
59.1974
174.326
51.246
197.321
37.6164
23.3237
22.1747
41.3652
34.5032
17.4075
29.7304
20.702
12.1273
5.60497
10.6498
40.461
5.81139
11.0721
44.8624
9.81804
20.2825
42.1819
12.7516
20.5655
13.2595
9.80614
11.5463
20.3131
13.4463
9.29876
55.0646
8.00145
7.48643
9.95093
27.1535
45.6354
28.2267
20.4717
14.0549
9.99495
33.9587
102.641
39.1006
61.5107
19.3569
169.968
40.2793
43.1035
16.8938
20.0843
67.184
202.454
22.3742
46.1107
8.27352
5.28856
26.0582
5.53461
9.21843
5.08974
14.0334
13.9136
47.5014
195.296
52.6828
42.9486
48.4712
15.2843
9.97529
40.29
17.4018
10.817
18.7569
9.53403
11.194
13.2367
40.8566
176.709
36.5383
40.4799
45.517
12.239
55.9365
43.1761
111.238
12.1295
183.791
14.1177
46.094
35.4819
19.6467
11.2464
9.6915
37.703
20.3006
10.7005
64.0874
47.5851
552.929
27.6167
103.898
218.267
15.9746
32.3693
9.38228
9.39805
16.0526
19.1403
10.1848
27.6039
4.86202
8.50353
35.8625
11.2355
8.22397
5.13181
9.98147
4.80091
7.43828
4.81271
24.7584
4.55426
6.80921
8.88873
18.2586
200.729
38.9453
15.5454
168.918
31.064
19.3646
19.2189
29.1801
39.1554
25.2313
543.474
28.0191
47.1962
65.9421
57.5119
107.468
215.663
20.6316
17.3707
569.598
28.3243
167.191
58.2628
52.6474
33.5865
103.241
44.786
19.9697
33.8889
32.1969
31.3767
59.6347
9.81376
12.8971
33.6593
52.6495
9.3036
577.127
220.93
16.6592
38.5806
10.576
8.4484
41.3316
8.89886
14.2173
19.0251
9.16702
58.0695
9.94513
46.136
19.3886
8.75537
27.8317
11.5964
39.3673
8.6467
45.9685
9.11046
24.3033
217.695
252.639
41.8986
14.0302
9.30706
9.90028
17.5592
35.2747
10.9341
54.4265
23.0474
43.9938
28.8953
46.1402
12.2424
20.6617
10.3209
19.7822
48.8435
12.1876
63.7493
39.6972
72.7368
35.2706
70.6205
32.2283
17.2643
645.437
25.4749
16.1067
22.8363
45.095
10.1303
50.929
14.298
10.9856
54.7862
24.1072
204.448
240.841
25.7312
49.9493
40.3326
6.20028
8.58088
10.6108
28.9538
10.3063
11.7234
618.428
19.0855
40.108
10.2275
10.6635
21.6331
34.3333
9.3087
182.532
59.804
217.619
49.211
42.1068
6.10367
11.5091
13.226
48.2541
10.5164
11.8202
16.5948
12.4924
22.1841
10.0462
30.0383
62.282
8.84449
174.051
42.855
112.591
47.7898
33.2347
79.2341
67.9118
114.061
25.6412
15.8391
11.6335
14.9304
40.9707
9.58389
33.3494
13.4005
8.25753
41.2893
23.0426
186.025
152.818
20.5594
47.3249
10.1565
4.38891
13.8793
3.07465
9.71905
14.6015
3.11833
23.8023
12.4636
23.1123
12.7281
61.4492
61.0004
10.2958
4.44186
14.8777
3.16631
10.2492
14.8769
3.15193
61.1855
58.9262
60.2409
25.0732
9.80847
6.15038
24.414
62.0676
9.38012
24.0671
13.0853
13.2989
14.1224
24.101
13.2917
59.2624
6.11543
23.8518
9.2372
24.0139
9.34585
58.7325
65.8838
6.55686
25.2491
10.0229
10.0033
26.6724
62.471
15.1428
36.9658
14.585
67.5781
6.65517
10.5052
27.6825
69.7485
10.1913
27.2796
14.6141
35.7051
14.2324
10.1925
61.9006
14.6713
61.814
10.1459
14.675
6.1888
4.10826
12.8582
23.8439
4.13632
23.8646
6.15822
6.44511
24.4427
13.1726
4.26355
4.28438
24.4121
6.39902
9.70649
60.018
13.6549
60.2143
13.785
9.63807
43.3298
45.8868
14.5428
4.68476
10.055
3.24313
14.832
9.74365
4.62714
25.6914
10.4877
6.51134
59.9946
23.6558
6.74123
65.1866
56.2716
50.4767
13.8665
8.68309
3.15721
4.34521
9.3094
12.6744
4.48389
11.2059
66.3854
15.2383
10.5777
75.4447
15.9426
8.36352
4.90159
13.949
41.5423
4.97586
7.65131
32.9938
6.91251
25.8103
4.40797
14.2245
4.51966
6.64064
27.439
14.6434
21.1356
11.2567
180.373
17.8614
80.2566
36.269
29.2281
200.887
11.171
3.51026
2.74257
6.88402
7.09913
3.8776
10.6854
18.1701
8.98518
6.29851
53.6004
20.667
5.84667
48.0917
12.4862
9.60665
2.86786
4.28862
7.78492
16.4969
3.98201
67.2824
25.7466
26.2833
64.8586
9.82457
13.6843
49.2267
56.5592
9.3218
14.2897
6.29893
4.22237
12.9775
24.7395
4.20376
6.34072
24.054
6.19302
18.984
11.9903
4.02402
4.14584
22.3517
5.86122
9.92884
62.1161
14.1152
9.94142
60.6619
14.2261
51.9454
23.9317
20.1799
60.4196
198.589
14.8913
6.92311
4.96596
28.5812
4.77025
15.7262
26.8416
10.1721
6.95743
2.54719
3.48167
3.39588
6.54256
10.8087
39.1236
15.9061
15.8814
36.0318
61.8106
62.3364
9.54418
12.5598
44.6606
205.501
8.64251
16.1233
36.9643
4.8616
3.3823
10.6387
14.6568
3.43732
15.4297
4.76048
5.67358
16.8647
3.79297
10.6566
3.74383
5.51578
15.5676
7.3506
79.0066
10.9458
26.8763
11.3368
29.4923
7.12552
67.406
25.9013
26.9576
65.2077
10.884
3.41558
2.51499
7.00039
3.42838
10.7953
7.06961
15.7871
7.33513
4.99117
28.7837
4.99895
15.8315
28.684
11.0483
7.11527
2.57466
3.49741
3.50405
7.17858
10.9997
66.9467
26.5481
66.4798
26.7728
8.91409
3.97621
2.87302
12.7894
9.01348
2.84189
12.6408
20.9342
11.7116
21.1716
11.5797
52.355
51.5546
8.76982
3.8985
2.77062
12.2739
8.67464
2.7896
12.4161
53.1042
53.6572
58.7337
6.13635
9.20926
23.5744
23.8945
9.33718
57.9265
13.4049
24.1279
13.4019
59.5553
6.20102
24.2473
9.44355
24.2108
59.6729
9.43987
13.0608
23.8626
13.2568
56.0914
5.86567
9.03345
23.1094
8.9001
22.8381
56.7725
12.1627
22.1517
12.3271
54.9443
5.74552
8.60784
22.1224
54.2363
8.71448
22.4021
12.8067
22.6347
12.5979
5.74575
21.5286
52.4727
7.96278
8.48415
22.356
5.53668
4.00478
2.99311
9.00249
13.1763
2.92354
12.6762
4.14725
4.01622
12.3392
9.01906
2.87765
2.92804
12.6727
3.91519
5.78428
54.3658
9.06005
23.754
8.60967
22.5731
6.04236
39.7428
74.4044
186.77
48.4863
14.9228
14.1135
73.2514
16.2208
11.0158
26.3699
63.1561
63.5834
26.304
7.34305
3.67597
2.83089
10.8721
7.37133
2.8344
10.9009
26.6806
65.0237
27.6592
63.9097
14.6014
64.1776
10.4587
10.5752
14.5529
19.9152
10.7691
11.7952
18.1306
41.7335
52.6785
197.931
7.62735
3.62851
2.72972
10.7277
7.29087
2.77521
11.3118
20.8035
12.6765
12.0021
22.1818
32.1379
66.8464
29.0415
77.2726
53.3312
53.5775
5.1611
19.5599
8.94996
29.8496
5.82241
18.1754
7.33764
3.68166
2.72347
8.92668
11.0587
2.81279
14.0084
3.57295
3.74248
11.3237
2.90745
7.99037
2.80576
3.99973
10.7008
4.99804
27.0879
15.0054
6.96323
16.1122
7.07514
4.9021
6.54374
10.1767
25.693
61.7769
6.71707
9.88301
25.2459
4.27065
2.99133
9.56906
13.3504
3.05655
4.16287
13.5963
4.44614
14.204
3.23974
9.80922
3.17369
4.54896
13.9527
6.27724
60.1651
9.13144
24.1584
6.08565
9.47699
24.6277
27.6108
15.0331
15.3961
26.8269
73.2469
81.6069
11.7461
5.21762
3.65985
16.1498
3.74914
11.4241
16.6071
28.4825
15.9112
29.8214
15.6847
69.7788
67.6133
61.3878
60.6665
7.08527
66.0462
10.5493
26.4797
6.95654
10.7678
26.8701
4.83769
3.43536
14.9757
10.4975
4.84656
3.43377
14.9999
7.19008
66.9726
11.0353
27.2567
7.225
10.946
27.2218
4.78003
14.6154
3.34261
10.3842
3.39289
4.70138
14.8236
24.8832
14.4677
13.987
25.7809
10.4476
4.56665
3.48445
15.4285
3.33011
10.9446
14.6615
59.2555
53.673
23.7556
12.7495
22.3819
13.3582
62.4275
64.9148
56.2439
57.4606
8.41802
41.5091
6.46601
17.2359
5.66084
10.4976
32.2869
12.8952
75.4505
17.76
12.5717
78.3021
18.2122
8.34937
5.61411
17.2816
30.8066
5.68308
8.20264
31.387
2.82732
3.88775
7.81948
11.0855
2.89959
3.72076
7.39237
2.90395
8.05826
4.30904
12.0794
3.94978
3.06573
7.84341
2.94999
3.98117
12.1422
7.91025
3.99475
2.94133
7.94104
10.7769
71.081
16.8431
11.9939
64.8659
14.7081
7.4505
21.311
13.2598
4.69316
5.02916
24.0127
6.52631
7.31209
5.47353
29.9108
15.5809
7.92722
5.13795
27.4938
206.479
83.9545
15.1687
27.278
27.9345
70.341
72.897
41.4469
54.2962
13.0988
26.7165
24.1584
68.9253
61.6698
37.2844
276.932
12.4041
15.3479
50.0257
9.82999
99.6626
88.9222
78.972
18.9811
11.8352
4.50032
5.84279
6.31825
13.2758
16.6638
19.7281
7.54187
14.644
4.59289
21.2548
6.50961
13.6582
34.7289
14.4187
8.54293
73.711
9.37862
87.2449
30.3031
34.9386
75.7451
89.2417
36.6844
274.053
99.7901
5.02816
6.22608
13.2261
21.6855
15.688
4.6417
6.91203
5.31482
16.2273
8.79817
24.6059
5.97913
20.9823
7.31583
69.9622
18.4192
11.4897
61.5899
12.6906
237.042
30.4357
17.7373
8.95652
5.69664
33.5205
8.39114
16.6173
77.5237
18.8212
14.2729
90.7845
13.1085
28.3756
7.49844
19.77
5.54495
24.1186
8.13265
15.3268
22.151
57.2921
49.7374
79.829
98.9128
20.871
32.9271
38.2025
264.351
16.8575
32.593
30.6593
17.5223
11.4391
55.656
6.7198
27.0859
10.1
66.0481
7.47431
11.7859
7.9896
78.8626
29.4786
73.1982
12.2861
7.69321
4.33683
17.3049
6.64278
19.4534
4.58891
13.3271
6.26397
4.41328
5.70635
18.5835
12.081
12.5524
6.61251
4.03527
21.8502
43.9891
52.2402
19.5141
13.9665
10.5147
52.0881
15.4134
9.75381
7.4948
12.3169
3.09643
4.06235
7.93554
11.5197
3.06998
18.4311
8.6744
90.2202
44.5132
245.409
13.5956
11.0056
3.63096
10.7665
4.70588
14.854
3.4138
10.3495
5.06959
3.68971
5.35674
16.222
11.8116
11.1967
5.18145
3.7909
10.5501
69.9793
15.7278
64.2714
14.79
19.4509
49.9748
22.5923
29.0304
64.5988
26.9952
30.6435
73.8683
29.4202
11.3091
70.8909
15.8589
70.9137
15.9056
73.379
29.4054
29.553
21.0291
6.32081
9.8911
35.9269
6.73933
19.9524
39.5838
15.1137
12.411
3.7148
5.29506
9.68576
20.387
5.18807
85.2663
32.9754
34.1592
81.0913
14.6048
4.523
3.50225
9.21333
9.52938
4.74042
13.9777
21.8404
12.4877
7.46371
62.0093
24.7109
7.76985
51.058
4.11691
6.11669
13.7044
17.1196
4.45664
11.2602
5.53066
3.85799
8.86892
4.84351
15.2194
3.71027
10.2486
5.1119
292.463
76.8287
13.3762
16.6216
21.0453
59.0451
20.0661
38.114
21.9083
108.793
10.6172
14.4254
38.5256
15.8864
43.8457
91.0884
28.9085
41.4276
24.0911
16.0824
6.03374
33.0661
8.51866
18.7647
5.82475
28.6675
63.6328
30.9598
26.8249
74.3234
272.099
101.247
11.2494
4.36735
8.81568
3.17115
7.7234
13.2126
4.17143
21.3874
7.31308
4.95934
22.1297
5.31956
25.2585
15.8963
15.2672
85.0213
18.5256
102.824
20.9811
57.8589
110.297
43.5538
20.5771
27.5509
275.872
24.0806
32.8505
89.8469
38.0407
4.62233
13.3173
10.72
3.28224
3.43214
17.1086
4.3839
7.52657
48.677
27.0271
10.6308
7.35664
23.4396
11.761
5.09561
3.79729
9.70966
15.4921
3.6585
5.18606
13.2332
8.47918
77.2605
30.3525
11.9049
8.05177
32.142
12.6695
6.23255
20.0773
4.5954
13.5412
6.41561
4.4667
19.1946
5.82686
4.04224
17.1991
12.7689
5.58209
4.19421
18.0647
74.292
28.1266
68.5512
27.1716
62.4758
66.1845
26.6171
5.05234
15.1184
7.1266
15.2359
26.4915
7.17247
60.8934
9.84755
14.2769
10.401
59.8763
63.6519
10.6743
14.9108
63.6951
10.7137
68.5432
12.0653
15.3964
80.8982
11.1316
26.664
4.98081
14.7787
6.88497
15.3517
25.79
7.07722
63.9088
14.8161
10.3041
61.9428
10.632
35.326
24.5249
47.9927
62.7982
26.4252
60.6204
13.7227
62.9497
247.91
11.1933
17.0968
10.308
27.076
70.4118
54.6327
30.7359
22.9944
30.9499
18.8548
37.0435
8.29147
3.91639
3.23535
11.9765
3.13163
12.5727
8.41818
14.8876
12.317
4.07872
5.62331
5.30176
11.3299
16.7505
22.5041
34.7503
6.83066
9.63341
7.0931
20.8302
36.4292
273.918
41.7594
56.8354
99.8206
69.8274
66.0336
19.7237
4.09767
5.10485
10.6284
5.33177
12.9831
15.4641
24.4368
7.66674
9.66888
43.5491
7.12245
27.6122
37.8014
12.1421
35.104
92.363
9.03325
78.1642
13.001
8.50133
15.9574
25.1884
27.5195
14.9181
16.5245
29.4239
17.3372
28.0996
19.0784
12.671
4.60515
6.07933
14.2238
17.3177
6.09713
262.972
35.8953
93.0175
10.289
13.4378
9.40197
41.7874
79.6015
74.2701
92.234
22.0634
5.13683
16.1828
7.42017
19.43
6.78983
26.7566
32.0593
8.72608
58.5971
11.7396
29.5558
8.37485
71.603
84.6809
43.6171
216.706
55.7407
72.0437
7.6711
28.8523
11.1993
29.716
11.5623
69.868
18.071
30.7542
17.1818
15.8329
29.1948
16.3766
15.6821
20.6301
11.7476
205.447
60.3685
6.55931
27.454
10.5264
25.8383
9.65449
66.0476
23.2611
14.8049
13.3833
78.6878
73.8192
3.97757
12.5292
3.16137
7.86665
4.19496
11.7213
3.02476
5.17826
27.5523
15.0061
7.388
15.9683
7.19375
5.1379
3.82928
2.82065
7.64995
10.7509
11.3876
2.92699
3.71391
4.57229
22.5178
14.9836
6.54519
13.5982
6.14902
4.80339
3.54064
2.78992
10.8251
6.98847
9.85412
3.59165
2.82506
10.2209
3.94907
19.9203
4.96378
12.7295
3.77708
15.2531
22.0137
243.248
14.6881
18.7957
25.9203
34.1904
75.716
32.6083
81.7877
39.3597
268.362
54.4843
98.6786
9.35464
4.77542
3.40727
13.1555
9.00648
3.60432
13.8233
62.6343
9.08215
26.8869
10.5453
13.9632
31.087
43.667
19.0744
30.2795
17.6909
79.7403
9.00842
13.7006
36.5111
12.9218
83.8534
35.0235
303.539
15.6258
25.0692
21.8937
104.72
12.978
6.19633
4.04391
15.8913
11.7443
4.4502
17.9476
31.6512
16.7205
17.8907
29.3205
86.4755
90.8436
14.5654
6.37362
4.79116
21.103
15.1239
4.6745
20.3437
76.193
69.9709
35.4627
22.8805
6.75659
9.78892
20.9141
37.7312
9.36483
65.9278
111.129
11.1925
22.132
47.7856
14.4927
315.759
33.0223
6.64768
18.2064
8.04501
30.1995
19.2115
9.55207
80.1954
14.271
18.0077
85.2665
13.3984
98.3891
36.98
58.8491
10.6718
168.309
25.2816
51.2858
179.124
15.7768
36.4501
40.6214
151.514
437.611
13.4207
15.4396
48.872
64.2279
9.371
12.4952
43.3622
14.615
47.1846
56.9511
43.5267
12.9431
51.5351
8.37489
8.91246
58.6435
39.6801
35.2822
25.1365
7.99707
7.53689
7.88485
36.0697
25.099
45.7173
14.5372
10.5318
100.161
9.31608
49.3372
64.243
33.9523
7.65355
7.61557
21.0284
7.92438
30.3941
24.0134
37.9343
50.935
99.7846
443.742
14.2975
158.836
23.4365
30.7107
23.1247
41.0135
15.9489
451.319
16.0888
183.19
15.95
28.7459
21.1195
31.9744
42.3866
8.05519
7.36555
40.1576
32.7867
7.3514
22.1694
12.5312
7.06058
7.57385
7.38841
19.4035
14.6658
30.6685
7.85447
35.4038
7.2302
38.5402
7.43099
27.3873
23.3163
7.27433
15.0248
7.57976
23.6354
7.32594
15.2114
26.7645
18.4239
20.15
21.0117
12.8137
18.8661
31.4357
27.703
25.3158
12.5822
157.204
44.5278
13.9674
388.387
24.588
32.1274
30.6545
30.359
34.3959
31.8723
20.325
24.8015
27.0063
35.7676
36.4149
34.444
2.49902
4.63858
4.07946
2.84459
2.44021
4.86166
2.86004
3.03975
6.40945
20.6174
21.1844
4.61049
9.32324
4.75799
2.46385
5.52467
2.3861
9.40321
2.27517
2.92035
6.40572
2.66366
4.38375
8.37594
2.92807
5.94065
2.84855
3.11806
18.1162
13.6087
12.2786
89.7062
41.1092
12.0825
9.81503
55.0667
23.2252
47.6703
392.162
14.0902
34.2971
154.156
45.2851
154.025
43.5606
87.3595
12.1004
380.961
34.1645
55.2958
35.374
32.0603
37.2742
93.3149
97.9034
53.0818
39.314
50.4305
42.6765
36.417
50.24
42.7313
41.1239
44.4121
35.4533
22.3502
26.7553
29.3205
34.3386
22.3549
29.455
41.296
32.6627
34.8402
4.07255
31.3792
7.11161
5.24047
6.67703
9.41876
3.71432
3.16151
3.2941
8.74494
5.10946
3.41978
3.24353
7.57377
4.9367
39.5893
5.42876
29.0785
7.20746
6.2004
20.2778
6.84891
10.6862
19.6081
6.17814
5.35894
38.4758
4.675
5.43124
5.73899
16.2716
40.8426
5.44901
7.07529
11.0032
5.74765
16.972
5.68607
18.4457
5.43958
5.50977
12.2046
6.20112
10.2469
20.5751
2.95657
4.73872
31.4419
3.41741
156.856
46.6068
57.0592
50.0789
37.0049
46.1163
370.092
134.246
86.3666
37.4503
35.7482
43.3419
84.3387
359.039
399.825
54.6706
87.3744
151.711
3.07633
5.50968
7.20971
3.52059
4.79842
3.18418
3.02578
3.23481
6.17731
4.68227
2.83933
3.21554
4.77039
2.95132
36.4222
6.94558
7.23193
26.9256
34.0704
7.45225
29.1645
57.0428
403.64
23.7891
35.6936
91.0225
160.389
12.6977
42.097
7.17396
9.91835
37.0795
47.2532
8.44343
34.0462
46.4248
8.36694
56.2581
23.0857
89.2831
41.7676
9.70769
38.3057
7.04861
14.5607
9.28975
8.16129
13.9921
49.5269
10.307
5.87583
3.82984
3.87899
4.13925
8.76612
6.17705
147.48
435.482
93.9305
60.2465
48.1975
97.5202
42.8645
34.4422
6.64543
6.06127
49.3291
7.67664
23.6482
12.2015
173.642
458.798
12.1133
6.31445
4.01587
8.12092
4.52505
23.9024
6.72781
27.4732
6.73387
6.68077
21.4355
28.7658
6.63275
20.3505
31.8796
34.0108
6.59362
7.43764
27.6017
38.2985
6.75187
25.0982
6.57872
6.83437
14.3197
20.6459
6.62166
18.2175
34.0332
7.13668
45.4131
8.03369
41.2513
35.732
6.83648
14.929
7.08815
19.7549
7.04293
21.6751
7.68947
13.2991
12.7105
50.7299
7.61529
7.87863
14.5714
6.78126
37.3344
468.82
60.0402
178.411
99.2907
19.1965
6.85914
29.5046
7.07661
21.6031
26.5748
6.73434
51.8356
8.17706
6.17053
12.4486
9.49144
39.2161
24.5675
7.62817
5.17225
12.0779
4.37373
13.6048
4.45318
7.27148
47.9965
163.387
104.061
52.9472
28.583
16.276
25.377
18.6943
9.22897
7.32654
36.8989
5.35626
25.8627
5.12185
10.4167
41.6684
57.0298
64.4839
37.1132
51.6449
7.24434
32.871
7.46519
10.349
11.8463
23.0713
15.6009
21.1661
7.83717
7.43517
7.99292
24.2017
13.2438
191.255
53.2859
61.888
158.537
15.5346
7.24651
7.77681
30.6802
8.21237
24.9781
19.7431
495.246
148.709
97.0217
41.1719
5.5193
8.7314
10.1785
9.33422
11.8904
36.4327
17.5819
8.12943
9.62621
40.9007
44.536
8.41577
16.44
528.954
28.2754
58.3411
10.6971
9.17323
44.6423
8.57703
35.7597
27.3257
8.12541
9.58889
37.3303
40.7464
8.39857
25.2349
17.5724
10.8242
13.8415
7.91364
55.9264
8.74584
22.7866
173.88
206.908
20.1077
220.248
63.8733
19.8348
50.1996
28.0957
35.8216
40.9444
24.5212
30.1182
48.9017
30.6484
45.1935
15.6542
52.3358
31.141
9.68477
59.1904
10.2483
13.5909
66.8133
26.5103
614.92
15.8008
20.8932
27.5767
11.4446
34.0149
147.182
96.5326
11.3462
38.158
10.0596
10.1519
33.929
5.42947
38.3512
5.53853
9.30249
9.42069
19.3208
33.5531
11.6555
18.7839
9.59317
10.6806
9.0426
9.26395
14.4773
30.8481
17.6067
8.18622
10.0981
10.7851
38.7413
17.5115
9.19592
40.1665
9.41915
10.6109
12.1163
9.6321
18.2448
52.9635
43.3479
10.1207
12.2269
22.06
32.5947
20.4136
35.7594
53.1647
631.832
62.8959
28.6146
237.335
67.0081
16.4051
50.0185
13.5345
180.603
56.3044
204.573
46.1624
14.8728
48.4667
591.091
21.9072
200.738
21.5253
36.3116
149.4
37.2232
42.7394
166.04
41.0616
149.373
138.23
17.9736
26.9662
32.1641
637.569
52.8632
92.351
38.0821
7.581
18.2166
10.0566
14.437
46.5698
8.7184
106.346
205.939
65.3483
532.006
53.0744
41.0578
32.915
66.7199
25.1826
11.0754
44.1678
6.1898
13.0977
54.7653
7.94266
166.754
215.068
11.5583
5.4868
8.30825
4.7169
7.48534
14.418
4.85457
64.8945
12.7073
10.2132
31.2255
15.776
51.5506
39.5999
529.423
18.666
14.9849
56.5754
209.599
38.6647
19.2027
46.7561
164.866
104.618
11.278
37.8357
50.3849
27.3179
163.954
45.5578
37.1718
11.2829
7.99633
28.743
23.6766
9.49131
45.3433
48.2533
99.1958
37.0171
10.7907
157.126
43.238
11.7924
61.2101
27.1806
44.3057
528.291
199.528
14.5623
103.57
28.6679
8.86467
17.1437
8.79122
27.2255
17.2353
8.84409
15.4091
8.72748
19.2092
11.8751
60.8926
25.2854
8.37428
182.25
50.5863
57.9625
113.785
45.0973
24.5308
11.1053
6.12915
54.8363
13.1436
10.32
17.6526
9.03281
29.5991
8.89146
17.3949
28.4531
8.81189
580.102
41.1056
7.9973
9.94516
5.61986
11.4077
28.3927
9.8188
10.3403
45.6486
9.14249
23.1205
11.8953
38.7086
8.54634
14.0386
182.486
42.0001
52.6329
45.1454
55.3222
13.4343
10.1702
9.75332
19.2178
31.8562
32.3585
10.1206
10.1103
5.39512
9.55807
38.3713
9.29798
9.89589
9.77602
5.30435
5.86829
10.3943
10.9061
41.6974
10.8359
5.87107
10.4215
9.62786
37.045
8.7986
13.3596
10.1727
33.9283
8.18699
7.65909
11.1977
66.2216
12.1474
23.841
12.7259
5.72649
10.4489
66.9554
29.0818
46.0438
16.3327
42.2379
11.6058
8.64856
22.732
15.9922
8.02597
25.4683
8.5393
8.28299
9.1177
9.06105
28.9063
17.3706
27.8046
9.32741
9.03769
43.1947
157.059
15.1519
17.579
171.74
39.5526
14.959
39.3231
97.3627
10.7365
26.5887
61.3301
9.73239
46.1644
17.9738
527.608
18.2752
58.7882
200.662
11.3295
4.32435
4.12302
6.55114
4.51021
10.4357
6.73385
41.9046
15.7309
7.70201
9.61946
8.81405
16.1894
51.0733
167.78
150.961
61.1304
42.3841
93.917
40.3153
39.4937
8.17765
7.71042
13.2228
8.72959
15.6417
35.9373
12.5701
4.2467
6.42135
7.86063
4.75936
23.2049
7.08771
56.4106
33.9408
50.7147
38.1675
36.9423
22.9593
25.8469
33.1651
58.6546
476.05
187.505
90.8802
10.0611
34.4299
8.70547
4.76742
37.7108
4.91562
9.2434
11.2361
6.71463
49.5907
8.81793
40.0612
21.7443
5.2243
38.8073
27.2793
27.0414
41.2612
44.698
59.2715
160.896
12.8241
40.3715
179.162
14.1961
19.1763
28.5288
18.582
28.5874
18.3264
23.6894
15.4796
27.1354
166.404
54.3146
179.559
587.663
58.1419
204.552
33.8816
58.7143
31.151
38.766
16.7559
132.401
17.7482
140.247
53.4816
27.746
29.7565
223.918
185.611
19.8662
33.2342
20.5469
582.766
24.4871
14.3784
120.778
66.3996
81.5369
34.1408
24.3555
20.5703
10.0593
17.2466
41.8676
8.4311
45.9839
9.59174
8.75375
7.25123
37.821
8.53961
5.0311
25.5015
4.75643
9.22192
5.19517
4.33311
11.9078
7.42202
13.5108
4.82881
4.40613
6.9123
57.8454
37.6672
7.70282
25.244
8.8927
10.951
4.45771
4.65145
10.9515
6.85699
9.40032
4.76427
4.61365
14.1689
99.889
61.0861
191.187
27.323
58.5551
44.0537
9.09994
25.6576
34.3941
8.27853
36.4668
8.48172
8.82809
12.9331
37.7263
161.906
50.5278
54.0734
40.9067
12.0584
24.4877
35.8336
33.4969
25.9713
16.08
156.875
37.3461
39.9351
14.2374
16.6332
59.153
183.567
17.712
42.5931
25.6235
18.4288
27.5776
17.2527
6.38794
22.168
4.34426
4.21368
11.0045
7.42366
4.02295
33.5665
41.4031
47.2094
30.4018
5.81751
3.72583
3.81239
7.39561
8.70925
3.76736
5.65149
24.2346
14.4479
16.5377
21.7663
8.26971
16.8548
30.4285
7.76948
25.2749
8.8456
8.30027
8.73122
34.0291
52.0767
11.8152
35.0027
12.5412
8.57053
8.98886
26.3369
43.9736
56.1965
36.4477
10.5104
13.744
8.95792
26.6414
9.07405
17.7733
8.75467
17.2791
9.58874
10.3567
41.2888
11.4443
5.45837
43.3833
10.0494
5.56422
10.4627
7.95197
62.7138
12.5139
45.5501
12.1509
5.9123
4.80467
8.58575
7.58317
13.7683
4.99652
7.71328
5.49506
4.57294
4.815
12.1846
6.99543
7.21778
5.04764
4.52348
8.97433
39.216
9.28309
23.3722
9.89801
26.8027
8.41695
9.43186
19.0404
12.5577
50.3402
9.9431
19.0522
10.8987
9.03173
9.52651
14.9284
45.5042
17.7034
8.25217
10.3224
6.80473
3.24303
9.47186
2.50519
6.65567
9.73733
2.53134
19.0772
11.4809
18.8393
11.5716
29.3471
72.9461
31.2249
64.0354
7.02164
3.32537
10.6045
2.63722
7.31123
10.0925
2.58594
28.5413
59.6374
27.8969
61.3782
22.9006
13.2237
6.25141
4.48674
13.3391
22.7699
6.28337
54.5171
12.9011
9.41651
9.34239
55.0509
54.3801
9.27213
12.8745
54.1207
9.30361
23.0275
4.51467
13.5646
6.37655
13.4118
6.31909
23.268
22.7324
4.3968
12.8148
6.0301
6.17412
13.2189
22.0125
55.7508
9.56306
13.0882
56.872
9.44236
23.5197
4.51653
6.44509
14.2129
24.1906
6.34569
13.6997
54.0561
8.94742
12.737
9.18897
52.2306
4.57355
14.3253
6.61442
24.0407
14.07
4.76024
6.30744
3.33448
2.46495
6.56967
9.69187
2.5717
9.67394
3.17043
3.41468
10.2903
6.85614
2.67334
2.62741
10.1164
3.48627
4.60094
23.1703
13.4381
5.67363
13.4558
6.57764
4.23418
26.592
66.079
62.2141
58.2555
24.8143
59.0149
13.8518
58.2468
9.82287
9.92141
13.6203
25.687
59.7845
25.6893
59.0401
7.26944
3.30975
2.58359
8.70001
6.298
2.64703
11.0323
14.478
61.0379
10.3412
14.3393
10.3756
24.447
36.0915
23.0098
49.003
23.3626
56.5786
56.043
59.7445
24.505
58.8053
4.66507
13.9693
24.3013
6.60717
4.67061
13.8979
6.62157
3.53853
2.75156
7.08579
10.6793
2.74178
3.58197
10.4403
3.43596
10.028
2.62098
6.78786
2.63727
3.41454
9.9994
4.85766
25.4093
14.7107
6.9234
4.89582
14.5063
6.90822
11.851
9.67861
54.6597
8.96415
13.2358
16.6483
25.0398
14.7523
27.2629
15.0011
46.1761
7.7932
78.8891
9.91301
220.989
11.0791
19.4935
32.7125
21.6779
29.86
3.9667
5.10406
14.6212
18.8948
11.6227
3.9204
5.27804
3.12276
2.4927
6.50867
9.75082
2.47537
3.19685
9.39981
3.05027
9.65645
6.19095
2.37553
2.40335
8.72004
3.00345
4.1193
20.739
13.4612
5.64495
4.24578
12.8667
5.49213
10.3298
7.20047
25.7365
61.1415
60.4392
7.10721
10.4657
13.9928
22.4239
13.9058
22.5993
10.0998
25.3635
59.2084
6.93154
59.5199
6.96583
10.0475
14.3783
24.13
14.6064
23.3828
77.9671
68.8195
21.1178
31.2236
31.2693
33.7898
21.2604
31.8459
66.6357
66.8034
204.608
23.4095
56.846
54.1609
43.1666
22.5681
51.4668
3.80899
5.18293
11.633
15.1016
3.89127
5.06913
11.1914
2.91175
2.41469
5.75537
7.7289
2.38372
7.76549
2.9453
2.98116
8.09323
2.39137
5.79785
2.38706
2.99622
7.86794
3.7486
14.8647
4.99849
11.0149
4.97711
11.0033
3.7563
10.2617
7.07334
29.0541
60.6156
7.22027
10.1996
64.0048
14.2543
25.134
14.6408
24.4184
10.4939
31.1687
7.66394
70.3716
10.8042
7.4463
66.998
14.0475
24.3453
14.1881
24.0121
6.4774
3.12341
2.45984
9.44742
6.66525
2.42489
9.20376
17.6594
11.2338
18.3378
10.8701
26.2684
56.0191
26.2809
56.1251
6.47013
2.92121
2.30699
9.15855
6.47845
2.31044
9.17406
26.0715
57.9781
27.1489
55.6893
22.7856
4.4796
6.0199
13.1191
13.3792
6.22262
22.2082
55.325
9.54567
12.9594
55.8397
9.45375
23.4752
4.60409
13.7677
6.48296
13.6933
23.6278
6.42958
53.3382
8.69771
12.4125
9.09543
50.5557
21.2794
4.26044
5.67231
12.7708
6.02214
12.5187
21.4604
30.9619
61.5023
6.8289
9.90814
28.9883
7.02965
70.3575
20.189
3.85717
5.07008
12.3443
19.6876
5.16101
12.4133
42.2405
7.98837
13.3669
8.99078
48.2018
202.371
3.05852
8.49354
12.3041
3.80106
3.98758
9.16522
2.95386
3.12457
12.937
4.11085
9.67894
4.08368
9.57173
3.1584
42.8691
69.2128
30.3019
12.3143
20.1055
19.593
21.1152
12.0483
19.495
62.2396
29.6372
29.1754
6.66802
4.73187
24.1285
14.0545
23.3574
6.28749
4.80831
8.0712
11.2242
75.1096
32.2437
33.3322
11.3717
8.04243
9.73572
51.9428
214.377
11.2004
45.4488
8.65136
14.192
5.95347
13.75
22.0908
4.51999
21.9812
4.47785
5.98324
7.08331
19.4564
5.0302
26.5054
5.31007
28.7013
6.72093
10.231
13.7266
63.7159
63.081
10.3068
13.641
7.27373
20.49
5.4867
30.2668
5.44379
29.9058
7.32918
9.98081
55.9927
12.5387
60.8535
9.42629
13.33
48.9439
51.1603
12.8469
22.1893
21.9959
20.9787
12.6654
21.457
54.876
54.0783
2.75262
9.38169
3.64616
10.5724
2.8454
7.4381
3.56372
2.67501
10.2797
7.4843
3.44092
7.33189
3.40163
2.70755
3.17763
4.26315
9.97212
13.0834
3.28812
4.15442
9.69064
3.04748
12.674
3.99764
9.4662
3.08339
3.96792
9.39692
10.5664
25.1839
6.14076
35.5943
49.5877
7.19832
8.36441
12.3032
21.5903
13.4043
20.0572
9.25033
25.1715
57.3076
6.82492
56.2056
9.77251
6.62873
15.8668
81.0808
15.9052
236.703
12.0222
17.6884
62.1483
63.4896
30.6665
20.835
30.2802
66.7353
66.0947
27.9969
19.9106
28.9815
3.7268
14.8057
4.57629
10.5691
3.47981
5.05199
10.868
3.66061
14.9536
4.95183
11.0979
3.72432
4.8323
11.0595
7.43346
5.73455
20.785
31.5272
5.57003
7.75423
30.3701
9.93469
13.4416
62.0895
10.0444
61.5046
13.2818
7.05343
20.0588
5.32923
29.4964
7.12476
5.28561
29.1701
10.5529
67.4969
15.0485
11.1004
64.3332
14.2018
58.8384
56.263
13.129
21.9238
22.1907
25.7306
14.615
23.6642
54.1123
54.1132
2.92818
9.65023
6.63988
3.50551
2.9216
7.17852
3.63408
77.7662
40.4577
35.4009
17.9039
12.7703
234.294
20.9682
25.6338
14.1342
23.0665
37.0372
10.9697
250.384
12.6825
50.8597
88.5189
8.74089
19.2589
4.35064
12.6878
5.47724
16.9518
17.0368
5.76387
84.3863
234.053
32.0561
68.3091
11.6627
7.69829
74.0152
29.2524
8.0614
53.979
63.8273
30.7128
17.079
28.9617
26.7798
16.0055
27.2052
26.0548
7.16925
9.54743
49.2261
58.3614
6.81162
25.0414
15.8916
3.89568
12.1847
5.40089
11.6452
16.5518
5.16163
61.1543
65.2275
73.9706
68.6696
27.0929
66.6452
10.2951
7.58829
61.4862
28.5044
7.16585
8.76573
17.8019
31.4831
6.18388
30.2808
8.36819
6.27736
10.1733
37.5014
97.7653
13.3653
42.941
14.4451
9.48951
13.0596
15.3708
69.9639
285.163
59.9279
11.7233
19.4481
14.5438
8.15578
3.55168
4.26242
4.47042
9.88985
11.1947
17.8272
33.0668
6.95697
8.30223
6.25419
19.3826
29.528
77.075
36.221
81.287
34.4594
306.062
102.261
64.4343
28.1154
32.3716
44.1004
13.3606
3.69585
5.07972
9.96462
4.7209
14.1961
9.57815
21.8818
5.56705
7.46948
21.788
5.79833
16.171
24.8289
9.2064
23.4296
32.8024
6.30694
36.2807
8.61991
6.7527
14.7817
278.164
21.442
98.8124
19.0724
19.7832
13.3978
16.7542
72.375
80.7256
12.3707
18.3609
32.2025
18.2896
19.295
30.9486
79.6016
87.9721
13.0301
20.4631
4.59901
6.01364
4.77767
13.8206
17.1497
34.8849
25.1322
21.6526
38.5247
14.2061
5.21132
20.4154
6.33118
15.1394
4.97946
19.1159
90.621
72.7455
3.52652
13.0172
9.83809
4.71219
9.10495
4.59019
3.65813
3.78994
14.2971
11.9741
4.80623
10.8218
4.97551
3.70464
16.7623
11.8013
86.0038
16.0247
72.4833
39.5877
23.308
25.5771
63.7276
11.237
14.3402
15.3091
67.8762
71.3712
33.3468
33.5395
70.9461
12.2088
3.28882
8.95886
4.23775
8.67612
4.15655
12.7382
16.2219
5.16467
7.80973
25.6266
5.67071
27.394
15.9128
75.3186
37.6754
35.0705
86.1291
16.4082
27.9403
5.59774
7.2673
5.46355
16.8725
27.2408
22.0471
6.40305
8.21939
37.4541
6.06322
24.2531
33.2269
12.4364
3.34323
10.6565
4.18451
9.51673
4.30822
15.9226
61.8686
58.2349
48.9626
56.4136
232.556
20.1102
28.333
7.79878
5.46503
5.73076
30.7496
17.6426
32.1901
22.9122
21.3388
256.976
12.7857
11.4841
39.0637
16.9399
53.9927
88.0085
62.3956
14.3468
10.1381
13.2005
60.643
5.9989
13.7606
4.49271
16.7929
4.66552
18.2286
5.99621
8.9239
36.0916
13.3655
72.0567
9.43948
33.0651
12.5791
8.114
12.2185
28.2045
65.8114
30.0052
8.43014
11.1963
16.9253
77.0487
11.5892
12.8496
14.8998
28.5993
46.0957
30.8398
41.3439
18.0131
14.4535
83.7385
13.5694
19.0703
8.12431
3.60209
4.09955
11.4934
3.53288
8.71905
10.6366
5.52357
12.674
4.36725
17.1956
4.36592
17.041
5.66099
7.05609
23.1936
37.7744
8.56977
25.9099
9.29143
6.58078
7.29608
10.1792
27.8113
39.7342
27.0206
7.56184
9.68932
27.6859
18.3923
30.2203
17.1992
10.6062
16.2564
4.33011
5.08773
11.5145
4.1475
14.7289
36.3251
61.6582
32.7223
75.8225
24.047
18.2816
14.9049
20.2954
9.51054
3.73144
4.63565
13.8745
3.8374
9.7263
12.8742
34.555
8.68078
24.3506
6.30252
23.8687
35.6547
8.3409
69.1843
14.5101
10.5977
65.1232
11.0444
33.5892
22.5891
6.08837
7.73381
23.3351
32.3818
7.99263
54.8117
58.1386
25.4437
15.1838
15.2271
24.5033
11.1236
3.23779
4.18438
12.9103
16.183
3.33257
9.21603
24.5898
17.862
15.6334
26.5676
9.62132
13.6354
3.47367
4.39328
10.286
12.4639
3.41983
50.7835
85.1166
239.465
37.7817
66.287
63.5223
11.3826
3.79544
15.4046
4.79945
15.1803
11.5361
3.7095
31.1049
21.7937
21.6356
31.4258
30.4708
19.8645
21.1284
29.0205
67.6012
68.1299
11.1839
14.4915
4.6602
3.55422
14.8957
10.8778
3.61651
54.0268
16.1313
9.93826
246.519
61.4948
11.2269
27.124
6.76961
5.35026
16.8906
18.1251
6.94378
25.801
29.7963
21.2592
7.39506
5.83732
30.5635
20.019
7.8873
31.5942
72.8453
65.5104
89.7691
254.798
40.2851
80.1038
85.3099
4.17954
13.1219
16.369
5.50561
12.395
5.32822
4.36215
4.08079
4.8792
10.9705
15.2617
11.6243
3.90033
5.28734
7.56207
26.9395
17.6823
5.98314
27.0554
5.89459
7.89006
9.62938
74.2434
39.8741
13.8035
37.2534
10.1391
12.9902
7.49105
6.0643
17.6022
28.6828
26.6742
5.83404
7.78556
3.68598
9.53858
13.3914
4.6266
9.77742
4.60014
3.66849
3.66384
4.82309
12.2546
13.557
9.83373
3.84312
4.56499
8.88292
37.7952
25.2683
7.16757
35.6154
6.89902
9.32274
13.1083
280.991
44.0322
14.6173
61.976
10.6225
18.7235
9.39578
6.29126
24.0216
31.4164
34.9097
7.01879
8.09084
49.3835
8.80441
7.39
24.3163
10.7835
37.0038
25.3306
20.9668
14.9925
13.0097
58.1234
29.3684
7.1524
11.0189
9.81866
26.637
63.6761
67.8741
32.4675
31.1374
69.4019
11.1805
3.05316
7.53422
3.71312
7.99662
3.84279
10.3684
15.4539
4.99767
24.4177
6.55393
15.4237
5.02901
24.4652
63.9921
27.19
29.2
60.0571
15.0343
21.681
4.8255
6.53192
5.00795
13.6153
23.7806
82.0607
245.92
11.2817
3.78498
5.31405
15.1291
3.97599
11.2802
15.1299
8.71946
2.60761
7.7745
3.48371
6.51743
3.22357
11.3587
31.7654
21.769
21.6139
31.7515
36.2046
26.2487
23.6318
51.7687
12.3469
18.5604
5.36146
4.49145
4.11957
16.2699
16.7595
67.7755
67.177
27.0429
16.2324
16.7715
75.0318
12.1615
35.7912
8.79383
75.7379
12.2964
35.7505
74.3059
32.6919
11.91
8.78017
12.3113
70.5592
35.146
4.01602
8.13919
3.34753
12.2542
3.25401
10.9895
4.19452
4.62605
13.5167
19.1656
5.62273
17.4143
4.45972
5.87636
5.25223
6.92177
16.2129
22.7209
14.254
5.42664
6.97196
14.7915
286.848
13.056
44.8631
19.0422
99.6904
10.6052
18.9652
27.5048
17.4847
29.9716
14.1392
9.60796
41.6332
77.9564
86.7733
10.2394
13.1053
4.53065
10.0059
3.51213
13.2228
3.68761
13.9505
4.39865
6.00411
20.7179
9.15573
30.2246
6.66739
19.2271
7.9041
5.88519
7.41592
17.5665
28.9157
18.5586
5.69111
7.70566
10.1453
38.7244
28.9125
7.33483
42.059
9.62156
7.67873
19.8554
25.8062
285.837
15.9144
22.2246
13.5714
9.0241
34.0621
72.5322
62.1798
9.52329
12.1039
19.9033
26.0477
20.4594
25.5162
12.1452
419.889
129.103
23.1167
33.2399
50.5834
14.4579
51.2084
159.358
14.8448
38.9374
34.9297
161.38
14.591
39.1408
12.8173
136.166
9.86707
37.0831
40.3067
6.94119
8.05089
46.2735
7.41181
24.192
36.2421
419.13
53.9761
51.7434
12.3166
87.625
26.182
29.0939
23.7648
31.1453
24.0051
20.1469
25.9477
18.2109
20.5131
12.6738
18.1023
14.9576
7.29983
36.6315
48.947
9.36553
10.82
37.8568
7.01053
6.73796
29.4155
37.1456
6.56747
7.18666
34.9247
6.43559
8.13103
23.9637
56.1828
46.0632
13.0859
9.66505
41.5835
23.2213
16.214
20.8578
18.3036
30.0445
33.7124
32.5775
31.45
27.1401
28.7271
25.2496
30.1373
29.0696
22.4666
26.8546
25.261
31.3477
33.2225
31.5505
33.4298
29.6913
29.0961
26.2256
32.1626
3.53139
2.36417
2.06416
4.21745
2.36419
4.05623
3.63962
13.1087
384.335
12.2123
16.817
46.3757
16.2511
17.76
13.2584
20.9478
17.6342
25.7875
21.5003
22.3389
3.80576
3.41954
2.18572
2.56116
3.44701
3.75987
2.21095
36.4104
35.3465
34.2923
37.544
35.5331
34.4562
35.1037
34.8326
4.82592
6.25417
2.04529
2.14182
5.55897
2.08468
5.24624
34.4772
31.136
32.1758
33.6479
4.46623
1.97076
4.83984
1.9099
5.04975
4.34143
2.00206
4.04325
2.57452
3.69522
2.26779
3.57134
2.25743
4.2906
4.89099
2.4364
7.55287
2.29591
5.3239
5.93405
2.34578
32.5793
29.9723
29.4624
33.2014
33.9891
33.7815
31.5235
36.4536
4.43867
2.65184
4.12462
3.09923
4.13862
4.51457
2.62309
35.3728
43.0525
36.6238
38.9601
3.9459
2.42786
4.19237
2.76252
3.78825
4.58828
2.7703
12.3226
7.55638
5.4883
31.4749
6.30708
42.2444
10.5046
21.2795
26.6586
5.6753
5.69505
5.71521
23.1066
25.3102
15.9791
5.80351
5.87687
12.3024
5.69899
17.6282
10.9191
17.1555
5.36412
5.59326
18.263
5.84009
21.47
14.5813
139.646
359.511
7.90845
4.92236
2.57302
10.4538
6.28435
2.91583
20.7719
38.4154
32.8201
34.734
36.1174
6.22674
4.9098
3.15374
3.01248
7.7568
4.52012
2.87809
53.9665
365.431
83.8979
144.42
10.6991
6.62747
5.10283
42.4677
20.9461
3.51866
32.4172
5.2918
2.59985
4.07976
2.94022
4.21465
4.8049
2.6874
45.4345
51.9807
40.6816
82.2689
19.1589
6.485
19.279
2.67073
8.60245
38.016
4.02443
46.0556
36.0516
39.2072
39.834
148.675
332.076
9.78825
8.48351
4.01653
2.18088
18.5291
6.66778
2.87229
20.2234
5.37127
12.4781
5.72159
32.7031
9.78956
4.66752
82.8165
76.4634
46.4945
342.651
7.52129
2.3132
4.66585
2.08279
5.39592
5.6331
2.48178
48.2302
11.8458
147.303
13.5664
389.463
35.3043
33.0694
155.907
12.7634
48.5861
38.3132
127.469
10.6046
22.0874
7.4123
52.2502
42.4122
80.5992
11.7772
8.67085
6.13158
21.0472
5.80225
27.8976
5.99263
23.2056
5.87184
6.87251
13.9475
21.8615
6.38136
19.1781
6.25362
7.72014
6.29708
6.10896
29.0667
27.0765
24.4695
5.98434
6.07948
10.3689
94.2358
45.5382
82.4998
23.9731
48.139
22.4669
6.30119
34.4661
5.71291
32.0731
5.96433
36.1294
5.82612
7.10009
6.68552
44.6082
33.3727
38.6035
9.12213
6.0687
6.22904
34.9285
7.96968
37.7777
6.60438
32.424
7.12231
6.36346
19.2031
24.0967
6.75619
24.8121
6.40907
6.9105
6.13405
6.31575
34.522
28.9677
29.6769
6.53537
6.16962
7.26971
13.9205
7.4358
18.4086
7.12917
7.77157
12.0927
6.80911
8.14026
12.7474
4.47731
5.0416
23.9659
4.66246
10.703
8.19738
15.7555
43.2117
8.62841
9.40342
56.678
7.36252
42.38
10.1267
36.123
8.73369
7.73878
34.6808
6.95424
24.2245
19.5154
6.84682
7.09784
26.3534
6.86252
7.23485
7.56793
29.1927
21.2089
7.40319
7.46103
28.1962
7.72766
38.0157
7.43678
26.2118
7.19685
8.24457
34.5933
8.59922
56.3232
11.7143
37.948
13.514
8.15748
39.5944
7.60206
7.77955
22.9812
30.3243
7.80763
7.58024
30.821
4.41143
6.20528
11.014
4.10858
4.51979
10.5428
4.07785
8.30885
33.2323
13.51
6.90033
7.36409
35.3503
7.83886
8.80126
7.91154
39.5554
14.7407
8.92623
7.80636
38.281
142.922
526.134
4.34677
10.4011
6.76715
4.70666
6.58188
4.39127
4.52538
4.77159
24.9233
7.14491
5.04267
8.48007
4.53926
7.09385
18.7595
580.174
49.8302
203.079
18.7807
34.2227
24.2018
25.5487
157.287
45.5725
17.0383
172.006
18.0428
144.215
150.461
16.5648
10.2715
60.0528
9.55777
43.461
16.6769
9.0122
24.3592
8.52033
10.5279
35.0544
37.8398
8.75878
23.5747
512.765
175.345
25.4662
42.6531
9.13517
11.5835
25.807
41.3024
8.99312
35.2958
10.6113
92.7661
15.0302
38.3104
57.8741
9.53094
21.244
8.23895
11.7185
7.49775
13.8808
18.528
8.08457
32.3006
46.6813
13.2939
8.27419
51.6965
28.518
8.83606
27.6749
21.9562
20.1497
526.677
46.534
25.7027
55.2478
87.1803
62.9644
186.789
140.729
15.2944
36.1299
131.979
13.7019
8.9301
15.6792
8.00894
23.3849
8.50479
15.7538
8.10241
7.3616
35.7487
14.8471
8.96925
12.9036
8.42032
7.89144
7.37671
7.93428
27.8043
21.8137
19.5397
7.61846
7.66705
15.8102
20.0015
22.7609
13.5535
45.7684
521.326
26.0571
59.7426
59.5986
193
14.3832
39.4097
11.1078
140.336
51.0691
153.923
35.846
12.1059
10.4291
41.8476
7.94543
32.8191
9.15802
45.8216
8.11183
41.3153
16.2569
482.879
14.4753
175.843
56.7936
13.3696
9.95009
38.3151
92.7003
56.8864
8.64631
25.2458
8.92824
58.6945
15.6747
9.30127
16.4541
11.1487
8.10218
7.91552
31.5497
10.4669
39.6611
8.2587
28.5939
9.18054
8.20455
8.12483
23.1772
34.4264
24.3741
7.78237
8.53984
45.351
59.4824
92.0905
185.849
500.748
36.0806
53.547
50.8438
130.401
137.404
158.758
150.577
3.91475
5.47307
8.5358
3.65726
3.90366
5.70839
3.88039
3.94867
4.55394
9.91334
6.39683
4.14358
4.02964
5.96116
7.00486
30.8428
7.03644
21.2241
6.96206
7.61359
24.5147
7.45267
21.5382
8.49508
14.9408
7.61718
7.91127
20.8442
7.13562
10.6434
15.2291
12.3882
8.58314
7.32987
18.1304
10.091
41.5465
23.8879
4.52958
6.27224
54.5273
8.86615
6.64172
23.3875
6.66663
19.3779
6.54557
6.9666
17.301
6.78532
8.51761
34.2996
13.732
7.77654
7.40337
11.8603
4.56793
23.5097
10.5068
42.1689
6.30765
9.04921
12.5551
4.54425
6.66962
7.86662
36.1115
4.30148
8.45358
9.43139
32.3334
35.6122
29.259
16.6826
22.2158
23.0967
35.1345
28.3253
29.2095
429.67
128.985
83.0042
37.0116
32.3674
38.6554
48.6346
34.8998
43.3228
144.101
46.9746
125.737
158.179
433.392
43.6668
54.9378
83.5807
12.7661
20.2229
18.2915
21.1079
27.5575
21.9153
26.3117
29.7468
24.1189
176.316
16.7875
59.7712
496.15
44.5058
47.9888
12.026
31.0435
8.81885
45.9188
32.1967
12.6885
52.211
35.8838
24.3045
9.24528
81.6628
33.7645
14.0005
140.849
138.002
22.2927
8.33461
33.5692
8.75758
22.9429
32.5106
8.17523
12.8142
9.72007
7.77846
31.3735
11.1473
8.25744
34.3511
19.6722
26.5596
8.39539
7.56614
29.5604
17.5315
7.89563
121.315
131.197
22.2193
13.5085
15.6933
152.836
43.1294
50.8881
12.6266
160.627
48.9596
41.6652
141.27
41.4248
35.5576
11.9307
128.173
45.5122
39.3914
15.0695
8.33707
21.7918
8.26943
14.5496
22.55
8.50899
150.782
43.0225
141.202
46.7103
42.7559
5.72495
11.6999
21.7187
58.7824
10.1507
11.3663
15.6279
23.7573
8.49614
9.36802
23.4198
15.6734
8.79855
176.579
81.0244
507.165
51.4207
35.0083
46.3366
36.7848
23.4641
30.9467
30.8244
50.5929
39.3893
38.034
174.499
89.7807
467.911
137.071
29.6321
34.7539
37.9502
88.3832
176.096
57.5926
45.7365
146.081
52.1406
3.67452
5.13736
3.39421
6.02721
3.70367
5.0212
3.2996
5.72653
51.3516
6.51608
32.6684
9.44166
22.2079
7.39055
3.36705
5.98366
5.02234
3.65896
6.49427
3.67454
3.25941
3.46591
3.46408
9.41257
5.06752
7.79888
3.80022
3.40205
7.2466
37.0112
3.96219
9.51006
8.14365
32.1733
3.64909
9.55502
13.7721
7.21735
38.091
7.76953
50.9083
8.27645
5.98574
3.76334
7.33562
11.5118
21.9086
3.92061
4.36945
6.56475
2.91795
8.99099
2.32942
6.49806
9.07962
2.32413
17.8984
11.1426
17.6874
11.2382
26.1186
54.2836
25.9209
54.607
6.52985
2.90233
8.94931
2.2962
6.47273
9.02935
2.30966
26.2082
53.8019
25.827
54.7349
17.6227
12.0128
4.71442
3.59476
11.5509
18.4969
4.59106
201.04
22.2723
28.3777
7.29187
5.48475
5.66972
29.5588
20.7105
23.6965
5.99273
33.5245
7.46057
25.0234
5.81863
30.862
16.2322
3.49231
13.1089
4.25876
10.557
4.44512
14.2629
18.5716
3.76291
11.972
5.11943
4.86601
12.0545
18.7619
26.0754
53.9055
6.4313
8.72803
26.1317
6.39345
52.3362
18.4525
3.75353
4.87804
11.8717
18.3432
4.88389
11.9762
26.0318
6.84306
8.34434
46.5984
6.2769
26.7
51.597
2.61253
7.3157
3.3639
9.79811
7.11026
2.66403
3.28755
2.54754
9.43372
6.66488
3.16973
6.91241
3.19103
2.52216
29.218
62.6776
29.9312
13.0405
20.6511
20.6852
19.9958
12.8918
20.4403
63.5603
30.3316
30.3296
5.98499
14.1615
4.45164
21.6051
22.1395
4.54086
5.85109
8.07334
11.2646
32.3911
66.9438
32.2469
8.12626
11.1918
6.05893
14.3152
22.4292
4.61513
22.3921
6.08789
4.59468
7.97077
31.0401
66.1767
10.728
31.8689
7.76125
11.0563
28.7569
58.286
28.078
12.0559
18.6559
18.986
19.7162
12.2495
19.3313
55.3126
26.5485
27.3442
2.72645
7.45087
10.5865
3.4065
2.68763
7.59911
3.46236
2.75625
10.7007
7.67563
3.51601
2.76822
7.6778
3.50154
5.56145
4.38436
13.001
21.057
4.26298
5.75373
20.1293
6.9128
10.4804
27.2558
55.5346
27.5933
7.4256
9.242
5.32433
12.4536
4.13184
18.2468
4.11168
19.2685
5.47207
7.31419
30.1821
10.5201
57.9685
7.61737
28.6921
10.0285
2.38143
2.86809
6.09638
8.10085
6.22549
2.35463
2.90568
2.40193
8.31379
7.29822
3.07799
2.4946
6.36118
2.93967
4.55472
3.57811
10.8119
14.2583
14.2687
3.56776
4.5832
5.80985
7.15042
21.1954
30.0665
21.5938
5.62697
7.52565
4.4919
10.7253
13.9268
3.43817
14.146
3.51814
4.37031
5.94489
21.9746
30.8512
7.82432
21.9339
5.99555
7.7624
21.6163
30.3409
21.2882
57.9682
10.0322
12.9675
59.8169
13.2772
13.8514
72.0518
10.2477
62.5116
13.4983
30.0628
20.5631
21.0346
65.9382
75.1158
22.2946
32.0818
23.7497
11.6549
19.0496
18.2868
14.953
10.8017
210.448
16.9457
34.6096
27.4217
25.3132
2.2996
2.83655
6.0231
7.86081
2.31676
2.81867
6.00342
2.2804
7.7986
2.74453
5.85583
2.788
5.959
2.24761
4.65469
3.61159
11.131
14.4233
3.65772
4.60832
14.6577
6.15123
8.47678
24.504
32.5675
6.45645
22.8789
8.02932
4.72682
11.484
3.90037
16.3262
4.95107
3.70816
14.9416
6.06053
22.2167
7.8119
32.1234
6.00727
22.5405
7.8875
5.42127
2.5292
2.12684
6.98609
5.50224
2.11905
6.89595
16.5607
10.9226
16.8325
10.7654
21.3196
27.0208
21.2821
27.1132
5.35298
2.51577
2.12132
6.81448
5.38905
2.10697
6.79704
21.6402
27.9633
21.9848
27.5342
12.5521
3.19113
4.0152
9.5375
9.61279
4.04348
12.4659
67.1975
58.5335
19.1836
27.267
5.28877
6.83613
19.4861
5.25801
27.1265
12.6125
3.18452
10.0296
4.08219
9.6775
12.9075
4.04313
19.1651
5.2133
6.81013
26.9501
5.25194
19.0397
27.1449
56.4425
57.105
12.1682
3.14643
3.99725
9.45701
3.98483
9.32259
12.3571
18.2566
25.982
5.18567
6.74607
18.3086
5.18442
25.9608
53.8722
54.0807
11.9649
3.1332
3.98545
9.19488
11.9866
3.97876
9.17666
18.6052
5.18617
6.7019
26.7373
5.17279
18.8762
26.4243
55.7887
54.938
18.5701
23.1965
18.1233
49.9234
8.88775
11.3915
51.8138
11.6532
12.1914
53.7277
9.07237
52.9616
11.9449
22.4554
17.2366
17.6057
30.033
58.6944
58.6504
30.8147
63.2027
60.2802
3.11908
2.64283
9.58641
7.03545
9.35878
3.20186
2.62753
3.8458
4.41964
17.0366
10.5463
11.4856
4.83116
3.64995
3.86591
12.3485
17.6115
4.89637
12.0468
3.99302
4.78454
3.12324
6.79541
8.50569
2.49113
8.9502
2.58193
2.97353
3.20959
7.21945
2.64534
9.62706
2.68411
9.64766
3.21607
4.15169
5.35061
13.3627
19.0275
12.8925
4.30808
5.2095
3.35132
7.42654
2.79122
10.3222
2.74516
9.96381
3.41833
4.02001
12.4148
18.2335
4.97228
12.4413
4.02804
5.03186
18.5342
23.9744
18.5142
54.2023
9.28512
12.4173
53.9268
12.2816
12.1398
9.17586
53.4298
53.3825
12.1215
24.4878
19.0965
18.7994
4.04854
10.1394
3.15949
12.706
13.2958
3.23589
3.98348
5.24234
7.58681
21.3173
27.5122
20.6597
5.79681
6.57973
4.13557
10.2504
13.7282
3.41608
13.5684
4.40685
3.26777
5.15004
19.1216
26.2785
6.28965
20.0919
5.07057
6.43011
27.2401
18.856
19.1737
56.0314
12.5207
9.46278
55.9272
12.5418
28.4606
19.8523
19.8797
12.1785
9.38916
55.5176
55.913
12.3381
53.1231
50.3702
72.0691
221.789
2.22395
7.38473
2.71225
5.71625
2.21394
2.64618
5.64276
3.62804
3.03447
8.65629
11.9207
2.95275
3.81134
10.7956
4.45977
5.84221
13.7445
21.0323
4.55563
14.6804
5.59381
3.61827
9.80516
2.8516
10.7094
3.54729
2.92795
13.6734
4.57051
17.8845
5.98615
22.0714
4.83491
16.3142
5.70629
18.6629
26.1605
18.7871
53.7858
9.36763
12.3273
53.8361
12.489
12.0925
9.24018
55.1038
54.6014
12.1557
28.1849
19.1156
19.776
248.131
26.5156
9.02607
41.1295
7.38065
36.6319
29.6568
6.97327
16.0119
4.98478
4.0328
11.8425
12.3879
5.11514
15.4857
18.1403
13.5497
5.74899
4.30781
21.0762
16.4668
5.41682
70.7264
81.2487
34.4947
65.6579
71.0914
32.7423
23.9824
15.2453
24.2731
15.1322
8.84419
3.22915
12.5221
3.98245
9.04834
12.2089
3.18441
35.0761
75.6672
35.9317
72.805
23.6857
14.445
14.955
22.7544
8.67334
11.2868
3.87932
3.04209
11.9477
8.25983
3.11011
34.0632
11.1198
60.1387
8.80625
67.4098
33.992
8.34826
24.8218
6.80722
16.5867
5.15304
25.4694
16.191
6.70129
24.3265
14.9599
6.5698
4.99741
23.4627
15.8452
6.4553
31.3605
63.2973
55.3736
31.8825
6.88023
2.60723
3.224
8.64999
8.98284
2.64018
6.6522
19.0216
15.0892
12.0587
16.5669
21.5861
14.1798
13.5205
22.3757
8.2647
10.5194
3.43512
2.88277
11.573
7.89364
2.79574
26.9618
34.2905
37.4624
24.7107
6.67462
24.6888
19.9407
5.45951
22.091
6.99539
5.28395
7.98763
41.7672
29.8429
10.7365
30.4528
8.21596
10.1273
6.29458
4.83141
15.545
19.1237
20.1769
4.96412
6.24262
3.37357
9.33815
14.0935
4.30456
10.1122
3.45974
4.16961
3.20658
3.86617
8.0178
11.2817
8.63226
3.17436
3.93324
4.9221
14.1911
13.192
3.81883
18.494
3.97531
4.76802
6.44698
31.7394
26.1551
8.6907
23.4501
6.96652
8.08278
5.15817
4.31965
12.0247
17.1161
15.2838
4.12767
5.45264
88.2269
9.80775
37.0175
12.699
74.9211
41.5252
13.3201
21.6821
28.0198
19.2052
16.9323
26.5209
17.3828
37.3253
31.2066
39.4993
95.0435
82.1943
32.6829
45.0366
41.5038
71.1414
9.03099
36.0451
12.466
72.8237
35.2764
12.2474
13.8794
23.7329
15.5653
16.6239
25.0056
16.3028
81.1846
38.5952
75.7476
284.886
37.0065
64.6236
72.2434
61.4903
63.5581
15.7986
5.08526
4.05367
12.0497
5.22193
15.87
11.8857
22.5995
7.63823
5.76592
27.8136
6.04101
30.816
20.281
14.7945
10.4504
3.7541
4.53353
4.73054
11.3087
13.2194
69.7722
66.9809
22.1287
32.3589
22.8643
29.7805
13.548
9.49272
59.7202
10.2798
12.1148
14.2334
62.9163
10.86
10.7306
14.4488
20.9235
25.8942
28.0594
18.845
21.8787
30.1666
30.6025
21.7567
6.56842
2.66782
3.25256
8.77934
2.69808
6.73602
8.59309
14.6045
11.8131
67.5859
11.1019
15.3987
14.2182
10.767
65.9898
10.86
14.1374
22.8685
33.8435
23.9834
32.427
85.4989
57.5206
258.361
40.1441
16.9267
7.00099
5.60362
26.4425
5.45709
25.4007
18.3057
12.5211
4.06909
3.38753
8.95555
4.1921
9.2725
12.1119
13.1229
11.896
4.44392
3.44485
4.27929
16.652
9.65374
74.0157
34.6624
36.7456
69.7975
3.76895
9.55784
8.12909
3.08925
10.2028
3.13735
3.64747
4.66722
18.329
14.8906
5.99447
14.1625
4.85424
5.84522
3.82458
3.20865
8.3486
11.0027
10.5652
3.16887
3.88936
4.52782
13.8888
3.73352
9.9303
4.59767
13.2858
3.68559
5.43196
23.608
19.0853
6.7415
15.5972
5.40446
6.8078
4.39129
3.49228
9.42184
13.6644
12.3098
3.59375
4.27759
30.2642
20.5775
21.5393
27.4934
59.4271
61.8926
11.5604
4.56724
12.6413
3.48049
15.9923
9.39232
3.68609
53.7309
78.8077
236.208
36.9802
29.1844
21.8502
21.2171
30.0157
9.21139
55.6565
12.8183
53.4142
9.89959
11.5467
7.57544
5.42009
22.5021
25.2883
28.5817
6.05452
6.6168
7.15168
28.8294
22.4476
6.01843
27.8933
5.83902
7.47263
10.1609
213.814
32.8635
11.2235
48.5346
13.9648
8.36041
10.5316
58.7518
13.4609
13.7972
60.1038
10.3122
8.05057
6.68162
24.9735
35.3436
6.48689
32.0117
8.44891
7.82155
29.6708
23.6906
6.14846
6.24173
30.1679
7.69042
10.8177
14.5512
75.0372
13.9623
64.1049
11.4268
23.9064
19.4581
25.8394
17.6801
8.46933
3.96763
11.8868
3.39605
11.1712
8.92878
3.29195
30.1533
54.1147
58.708
31.2895
31.4266
67.2741
61.204
33.5888
22.3798
14.6125
15.5171
22.3865
34.0517
6.70744
24.0798
8.00025
32.7964
24.2523
8.71918
40.1339
9.07657
71.8398
12.7997
36.7398
83.8824
9.52132
58.5398
10.4588
16.4941
63.4133
258.64
11.9014
36.9293
25.1957
32.9913
77.8151
37.4469
39.4411
23.7548
29.4232
30.8769
36.6673
7.07084
25.6459
8.52945
34.3927
27.9134
8.9499
86.3878
16.8228
16.7122
268.445
13.0181
72.9454
11.4075
15.6955
66.6652
12.086
23.8526
16.6123
25.1776
63.6981
35.8974
37.3026
18.3718
27.568
27.2313
33.6693
28.4357
25.9718
37.8988
8.70518
3.1652
2.64334
6.65696
3.15841
8.49897
6.85016
12.0111
5.22742
4.11253
16.2025
4.09584
15.7411
12.6359
66.2185
64.5159
8.8661
7.27433
2.69694
3.31401
3.26665
6.96147
9.31218
32.8329
23.3894
31.8061
24.8263
68.1068
80.723
14.4942
22.8081
14.4732
22.3592
11.4052
10.4584
36.3954
234.745
77.0644
8.4369
14.643
10.9832
62.9604
33.465
8.00269
66.6877
8.17309
10.8151
14.828
23.4059
16.0316
22.6021
12.5811
21.1122
19.3351
13.5955
9.11511
7.63437
28.2034
50.6415
7.02496
10.4011
54.7561
9.57241
59.7912
7.59495
28.7241
7.20307
10.2198
55.706
11.6201
15.9505
226.187
14.5773
17.9771
61.9479
32.5819
56.6698
31.5336
13.3942
5.68896
4.38246
17.9568
4.52757
20.4478
16.3685
11.2764
4.02679
8.66735
3.0771
11.7567
3.77589
8.41366
63.3011
32.4426
65.7473
31.856
10.5582
8.6231
3.52742
2.96743
3.61362
11.7795
8.08439
252.377
3.57385
13.4447
9.74395
4.1785
10.1336
3.53453
4.36409
3.18303
13.4183
9.33878
4.03935
10.0478
3.39116
3.83379
2.19329
5.76711
2.55922
4.84171
2.26754
2.26187
4.45557
2.38102
2.74122
4.01537
3.59202
2.40749
2.73173
3.93204
2.81391
3.70975
2.47971
4.04486
2.82478
2.45677
3.69814
2.6155
19.215
3.0229
5.48803
2.33212
4.63017
7.03319
2.26595
6.254
2.29958
4.51071
2.41405
2.25108
5.58726
2.40208
2.63778
4.14316
3.72531
2.35164
2.636
4.61951
45.9759
323.726
122.058
119.564
324.747
333.052
2.17036
3.32456
3.63701
2.36256
4.15433
2.10907
2.36561
2.79581
18.4433
28.3051
7.02804
9.21532
5.59479
4.29156
2.34236
2.34236
4.62396
17.0931
6.30059
2.03066
3.89915
1.55776
3.48772
3.23963
1.63039
3.86681
1.51855
1.64221
1.89799
7.40585
16.9569
3.59542
6.6918
2.09266
3.36894
1.67782
1.98817
4.15861
8.16624
5.16869
1.60273
2.34362
1.96664
2.8998
3.24987
2.27168
3.10534
2.00514
2.25392
2.08799
2.67369
2.95612
1.8309
2.73625
2.09838
1.82553
1.77812
1.81145
3.68987
3.62582
3.31098
1.83782
1.65067
4.83862
14.369
9.05876
5.942
12.1096
5.00299
5.4041
4.5743
12.8872
33.7716
4.51465
10.6627
4.42087
5.46614
5.04712
3.55597
35.4165
18.3931
8.60355
6.00257
4.20505
29.2428
26.9501
27.7621
28.7115
25.4371
27.5013
25.0401
23.778
26.0646
336.086
22.9467
346.512
11.0962
84.1088
42.6456
131.66
11.1674
50.0504
77.6913
378.259
33.4825
47.4456
14.1566
13.1059
10.743
25.5604
25.3421
23.559
15.9013
14.6614
18.1779
23.148
17.6124
20.9584
21.1948
22.743
19.1505
50.3509
11.6256
134.493
13.3732
374.8
20.8412
15.4608
17.0805
5.98349
9.72373
4.48182
40.8636
2.99134
29.525
7.2951
7.32974
28.8003
11.0861
5.23568
41.0759
5.8581
6.1462
5.34757
5.49708
11.0763
13.4097
9.65848
6.12144
5.18734
4.70748
28.6748
4.66685
25.1946
4.66173
27.9694
4.7049
4.73673
28.882
4.81216
26.8427
4.85468
27.9693
4.70571
4.66487
4.71998
23.0649
24.7355
26.1347
4.78558
4.63646
6.33914
42.1574
6.00091
9.55223
7.60425
11.339
5.343
5.219
19.4733
4.93467
21.6549
5.30916
17.7483
4.93894
5.68331
4.97463
13.3078
19.2356
15.1472
5.18219
5.17698
5.15713
17.0533
14.9821
5.09653
19.0214
4.98999
5.53481
4.7997
25.8158
4.72946
25.0629
4.80312
24.074
4.71136
4.85025
5.03217
17.5233
22.6619
21.3872
4.99702
4.77815
36.3929
33.9815
33.0404
29.4183
29.0314
30.8103
31.6267
29.5739
31.197
29.5659
31.1336
28.9801
20.7114
22.8696
24.9017
30.3034
25.9988
27.8806
71.3828
35.8473
40.1872
37.9951
33.238
36.3298
32.3559
32.195
34.6301
22.3338
26.9211
24.0334
17.6324
22.7849
22.0218
27.8601
25.8898
25.321
133.385
33.4208
14.3277
37.3935
119.647
53.8565
8.45939
42.2553
24.3695
38.7204
83.3402
13.6177
163.43
15.4971
57.3715
455.714
42.1787
43.8436
32.9817
35.6169
34.5622
26.863
31.8005
28.5221
26.1702
30.9919
22.3216
19.3808
24.6907
34.3444
30.4876
29.9915
20.8062
26.2515
25.9624
161.757
13.3502
46.664
35.1216
53.3126
128.771
42.0672
18.4092
21.5435
16.0487
12.7104
20.7123
15.3077
137.424
161.73
14.4255
6.47193
10.2151
10.77
15.1393
57.8349
8.67134
19.6006
7.00108
24.3116
7.36215
18.9706
24.9549
7.4771
474.829
14.2544
37.5617
9.11178
7.82547
40.988
13.7751
8.02765
26.7561
41.0624
27.3113
39.9958
19.2849
13.3102
13.6358
18.7675
5.12875
3.6141
3.83036
7.22667
8.31802
3.64838
4.94684
19.5351
13.9702
13.7792
19.8481
5.328
9.23686
3.76832
4.01268
5.42753
8.90952
3.74788
26.25
35.5452
38.5858
25.2684
29.2863
42.4917
46.2096
27.9804
6.90206
4.42158
28.5786
6.18527
7.63676
20.5511
4.29081
21.7455
15.6548
22.4204
15.1739
31.7061
103.901
33.9291
72.3313
20.8355
14.1891
14.5906
20.2064
5.94681
9.66033
4.51761
3.89149
10.8242
5.64442
3.94936
130.379
122.533
17.2615
6.72015
23.5689
7.23789
18.3083
22.4813
7.02791
11.0159
11.0272
7.68376
22.3031
31.721
6.83828
59.8531
12.5432
36.1654
7.66587
8.2794
13.3016
34.4755
7.38565
78.1766
114.796
483.931
3.3114
7.74633
3.10743
4.5945
3.39128
4.96307
3.26194
3.49175
5.2223
3.11246
4.60445
3.04133
4.54829
3.50404
50.0252
23.1323
37.8821
427.632
12.3336
78.5702
146.403
35.1034
6.80718
7.09247
29.0211
7.43629
29.7367
33.8217
45.6884
79.6304
33.1105
9.31589
10.7313
120.902
41.7664
23.3081
19.5859
18.4634
52.5619
32.572
76.4217
11.9272
116.028
409.966
154.974
14.7007
36.1375
13.778
128.557
20.024
13.699
18.5119
26.0935
19.7352
21.6157
427.127
12.0084
14.9293
16.7633
31.4355
6.49809
6.77751
28.203
6.57308
27.1198
32.6396
34.7961
6.73106
10.5
40.1759
7.09958
44.6811
32.7937
36.6959
52.3774
8.07772
11.5167
7.50574
38.6186
47.9196
22.5292
6.626
26.5603
6.09151
26.2458
22.7894
6.53092
17.3315
7.46753
12.1038
6.71065
12.9511
16.2552
6.94774
21.7757
24.4887
6.02803
6.30574
25.5281
20.6626
6.44236
31.3077
6.84514
40.901
6.16973
35.9799
33.6246
5.59258
27.5248
5.40557
5.69756
23.8147
24.4649
5.43702
27.0423
27.988
26.3
5.58262
5.71837
29.6078
24.8716
5.46172
34.0282
7.20646
30.2705
5.98103
29.6873
35.5102
6.6614
39.7302
21.7207
48.1203
6.9879
74.6039
36.3294
8.42719
32.6262
27.846
5.86873
5.87055
28.8684
31.2591
6.26828
13.2883
9.79464
10.446
6.32515
51.7952
14.5446
8.03564
116.948
140.367
16.9249
6.51924
6.16987
20.1822
21.0252
6.72033
15.963
399.674
17.435
22.8356
6.09484
6.27971
18.8043
21.4614
7.05269
44.5111
33.8281
48.5328
32.2799
119.601
110.987
36.2101
7.62327
13.5935
9.02552
39.7114
13.0415
8.64706
9.46882
3.91039
5.25195
3.66549
8.83381
5.42652
4.05836
42.8572
30.7284
41.145
31.4725
129.786
153.738
10.0736
6.07351
4.57364
3.79229
11.3828
5.69798
4.25828
20.3774
27.2444
28.0254
20.0031
15.4117
12.3318
17.4672
10.5353
4.51751
3.35196
6.011
3.13461
4.55357
5.59133
3.33759
21.1707
32.1772
23.6199
29.0851
14.7644
426.787
38.4445
14.3257
55.7718
113.067
36.782
75.204
39.8418
10.3991
6.49183
13.7961
10.5683
55.4834
14.8202
6.74924
35.834
9.04863
11.4057
3.77007
41.4759
9.68818
8.27741
127.833
48.7723
161.266
42.7098
442.587
30.8957
7.17732
6.29171
4.33404
21.4978
8.19595
7.76921
18.8506
26.1778
25.4455
19.2905
13.2704
33.3352
113.104
13.1793
33.5578
18.6741
24.6856
18.513
25.035
13.4231
114.932
35.0013
13.7481
33.9694
25.3812
6.02141
6.05691
27.7684
6.12248
23.8955
29.1681
22.3218
7.098
6.65185
18.3067
6.58871
17.6217
22.9537
26.3802
30.8243
6.18802
6.25359
6.21319
30.1701
26.9414
15.9451
51.3551
11.4014
400.067
124.401
38.6999
50.7712
10.9893
149.476
34.931
46.4636
111.464
38.4814
21.5148
9.87163
31.2378
73.6104
42.7984
42.9386
8.55896
6.69985
31.8823
9.97905
39.0561
33.6208
121.778
13.1112
37.9964
34.5049
145.622
45.4656
36.2559
7.02058
12.2048
10.8289
34.9335
49.0976
24.2043
6.27991
6.60501
18.4013
6.02795
19.5758
22.9811
30.6815
6.52154
37.6011
7.194
32.0303
6.29282
35.6506
28.4241
31.2581
6.15906
6.66665
5.98069
27.0187
33.2117
5.43113
2.52782
6.84561
2.13149
5.40218
6.82732
2.14219
15.0219
9.18523
13.9677
9.96707
20.5219
26.5479
20.9144
26.1463
5.53049
2.57024
7.02661
2.20763
5.60003
6.9456
2.18083
19.9292
25.4055
19.1838
25.666
11.9663
9.24573
3.79046
3.03055
9.17083
12.0605
3.74846
49.5435
49.8953
17.4267
22.1199
5.58416
4.5126
4.56818
22.3377
17.3009
51.1619
50.5751
17.6756
4.7105
22.875
5.68688
17.8135
4.65518
22.6969
11.8186
2.97189
9.0826
3.63622
9.12013
3.67558
11.7576
11.8595
3.07095
9.20132
3.78951
3.78279
9.13951
11.972
17.7924
23.1003
4.81108
5.79598
17.999
4.7663
22.8689
52.8264
52.1064
12.077
3.11936
3.87767
9.39268
12.1996
3.84239
9.29335
51.3026
51.3299
17.4894
4.70358
5.71342
22.6846
4.69121
17.6683
22.4664
12.2427
19.0476
12.9288
206.638
49.1331
9.44336
10.6545
46.3091
13.0218
66.259
9.39801
28.6394
7.47893
31.4362
56.6223
10.0116
20.4379
16.4341
14.3411
2.78843
6.03713
2.36792
7.28899
7.52833
2.42376
2.78153
3.44534
4.31121
13.251
13.1792
10.492
3.61714
4.20171
2.88052
6.24171
9.63281
2.51081
7.83625
2.97151
2.44444
3.37148
9.72134
12.8031
4.09954
10.0316
3.38634
4.10503
23.2182
28.7444
28.9062
56.4591
56.7347
23.4202
29.1768
29.1527
56.0973
56.4191
12.1864
18.1462
12.2135
55.5047
28.7288
7.16466
9.49727
28.5346
9.44237
55.9772
55.1269
9.34008
7.09555
28.2508
28.3049
9.35194
55.2706
18.3148
12.403
12.3331
2.67958
2.33959
5.84494
7.20712
2.35278
2.72447
7.23666
3.21083
3.82017
9.63044
12.3175
9.64198
3.22734
3.87271
2.72331
5.89233
2.32674
7.30317
2.34458
7.28437
2.69952
3.20873
9.56548
3.89808
12.2513
3.2793
9.58841
3.87317
2.44965
2.18193
5.39991
6.5148
6.39721
2.16592
2.49836
2.79308
3.27071
7.59249
10.082
7.67853
2.77968
3.30049
2.41556
5.29019
6.1794
2.13436
6.25714
2.11651
2.40877
2.85324
8.03388
10.3194
3.43168
7.85898
2.92322
3.3739
12.4419
18.2866
12.2825
53.7666
27.261
6.93295
9.027
27.7237
9.19133
52.6314
54.9255
9.48197
28.638
7.06633
28.3041
55.617
9.37028
17.9207
11.8103
12.0459
24.2851
27.1943
30.1067
54.7592
53.5906
23.493
29.0304
28.6789
33.9124
213.848
49.4591
12.3815
18.7577
12.3911
55.7521
28.9458
7.19594
9.56857
28.7035
56.3365
9.50722
54.8005
9.44133
7.10445
28.4553
28.2047
9.41886
55.2766
18.5093
12.5044
12.4388
2.62434
2.20773
6.08869
6.62694
2.3062
2.53192
7.58163
3.13999
3.82628
9.49339
11.1178
3.22952
8.98307
3.75774
2.68116
5.8082
2.33532
7.26291
2.70596
2.31811
7.03209
3.10751
8.23345
3.48626
13.5935
2.97342
10.0151
3.72732
10.499
45.3432
7.79392
10.021
8.02822
15.5515
19.9674
15.3171
20.6779
16.347
21.1155
15.2276
23.1466
11.539
2.86327
3.28215
8.36541
8.8498
3.56803
10.8165
49.2105
48.5565
17.1316
21.8248
4.43526
5.26428
17.1491
4.35418
21.7906
11.6369
2.87196
9.03341
3.58707
8.97658
11.6901
3.53517
17.3138
4.0258
5.53261
20.6256
4.46784
16.0236
22.6206
44.6957
47.1333
11.6804
2.49604
3.10794
7.74712
3.01902
8.59022
9.73355
11.6827
16.4907
3.5091
4.40911
11.4168
3.55147
16.6985
58.9634
25.5733
51.0393
27.6795
9.15761
2.3737
2.8326
6.6628
8.86274
2.87787
6.84977
12.8395
3.80485
4.51323
19.0104
3.67239
14.5354
17.6529
184.125
43.4451
41.2475
50.5037
8.96499
11.5549
50.8087
8.88533
25.7633
20.932
5.37251
6.61
20.911
6.65671
25.5521
25.7771
6.68541
20.9314
5.34947
20.8584
25.9105
6.64179
50.1209
11.5258
8.7512
8.87589
48.4555
17.4002
21.6105
21.5785
24.2111
28.572
23.9664
17.355
21.5881
21.5366
23.937
28.4516
23.9372
2.04694
2.3482
7.18936
5.79643
5.86495
2.3963
1.99289
2.118
6.00035
7.37459
2.50996
5.9601
2.11515
2.49675
2.21097
2.62471
6.02175
7.4398
5.9853
2.20754
2.58407
2.19109
5.99463
7.41877
2.56242
5.9857
2.16369
2.56327
50.8815
8.98628
11.6962
8.97313
50.8854
25.8926
20.8116
5.36082
6.64856
20.8527
6.66764
25.7841
25.9011
6.6968
5.3747
20.927
20.8961
6.68545
25.9304
50.8297
11.6747
8.92466
8.95234
50.6333
2.71085
3.25764
7.52245
9.78587
7.42058
2.74633
3.21565
2.6578
7.14866
9.6447
3.09635
7.30205
2.59897
3.14937
201.403
13.5111
9.64646
12.3341
63.2438
48.8398
26.5518
8.6872
6.37475
49.8922
26.2813
8.1242
15.395
11.3035
10.277
45.9949
7.19625
6.887
24.1836
27.9758
9.03884
30.3083
17.1858
21.5804
21.6023
25.0066
46.2966
28.0776
17.6785
21.7962
22.7895
26.516
49.3341
26.2569
2.38097
2.7062
6.12016
9.28443
2.28814
7.01536
2.78844
2.44979
6.90017
3.05925
8.41939
2.53974
6.57639
2.88036
51.6209
9.12216
11.644
8.99316
53.7907
25.7042
20.7475
5.3851
6.65627
20.7913
25.6876
6.67551
26.3339
6.84172
5.4628
22.4628
21.4993
6.73183
27.3558
50.4956
11.7248
8.93543
50.4698
8.96974
13.843
11.3349
59.5831
14.5853
10.7292
20.4025
25.9207
26.4566
20.0101
20.9528
30.9468
27.6268
22.3151
13.584
58.0091
10.3188
10.5003
13.3087
7.33659
53.1724
29.3039
10.3396
28.2674
9.36675
7.91605
6.20797
5.29298
24.1658
18.8968
23.5608
6.43267
5.18689
7.68022
55.0913
30.1127
10.6197
28.8034
8.02387
10.0643
6.09969
23.7441
18.5412
5.11304
23.3094
5.05027
6.30991
17.8991
14.2293
15.8136
11.8305
6.91321
3.46077
8.27008
2.98106
8.59035
6.70865
2.95241
26.1954
37.2908
33.7103
28.1247
24.2699
30.3588
31.5036
22.8091
19.813
13.9278
21.1243
13.1256
6.57052
25.9647
8.42304
30.1678
8.05744
6.80123
25.1638
5.48893
4.61612
17.831
22.0929
4.70466
22.1084
5.46011
5.61797
22.3974
4.75605
17.785
4.71317
5.68362
22.1238
6.48094
29.7704
7.81235
25.008
7.90523
25.0089
6.43222
248.578
81.5901
12.5394
3.5022
8.30427
4.01975
10.3452
9.64993
4.11953
61.4389
32.682
62.8643
31.9413
14.2754
5.3498
22.0374
6.50198
15.1413
21.636
5.39905
57.6284
29.7846
38.983
33.823
16.8674
17.1855
4.86491
5.85031
13.6278
18.8163
4.96823
31.634
7.79456
7.12583
21.5102
23.9167
8.78782
28.4784
36.8487
12.3104
10.1658
70.0213
37.3511
9.75696
68.4695
30.5118
24.3666
6.77195
8.31837
24.1002
30.6872
8.09783
67.9853
71.6522
9.90385
3.30685
8.19354
3.92452
10.141
8.13834
3.86206
33.0596
26.3326
26.4861
32.64
12.5077
4.42096
5.82294
14.4708
16.0496
4.69705
11.6067
34.8111
28.6882
36.2856
27.6895
12.9585
16.9123
4.73321
5.67203
13.2728
16.566
4.63104
63.5446
61.9663
38.1854
9.07242
28.3962
8.03864
34.9797
29.4945
9.98798
41.8243
13.9107
10.5728
74.9249
38.4899
10.6075
86.1925
33.0768
24.7434
7.1181
8.54376
26.345
31.1816
8.56491
14.7506
8.85381
51.3247
72.8701
10.813
11.7505
221.322
18.1945
25.7801
19.6401
24.6242
11.9576
55.0966
10.1753
13.0493
9.61377
16.7437
22.7522
24.7347
15.1586
5.8121
23.9644
6.99229
26.387
23.4717
5.98641
6.83602
4.80156
3.96804
12.9056
18.458
18.5986
4.00604
4.79832
4.95614
19.421
13.2029
4.16712
19.0269
4.09729
5.04061
5.67313
25.7224
22.7609
6.63651
22.9125
6.65871
5.68387
6.63754
24.3852
7.19686
31.2656
8.18992
6.04684
25.6102
5.34159
4.61955
16.3527
22.0052
4.54833
5.47044
21.1965
5.53358
19.7487
4.22035
14.8033
4.52508
5.09052
20.6424
6.28495
29.5085
7.77458
25.1169
6.43708
7.51647
24.8572
10.9453
8.59169
63.5493
31.4572
11.3082
8.35745
60.8925
13.8089
20.5097
20.5067
13.8335
14.2499
22.1312
21.3351
14.7263
10.6147
30.5911
8.09815
58.8689
8.11686
59.1028
10.6163
7.85452
29.0731
24.9641
6.41372
6.43449
29.531
7.73038
10.4512
13.5965
58.009
13.5198
57.6799
10.5083
10.3711
54.7308
13.1227
13.4317
56.9532
10.1369
7.89305
25.0621
6.54962
29.8386
6.50991
29.7477
7.93488
55.5201
55.1933
4.64722
18.2412
5.38068
23.4193
18.5064
4.52078
5.58083
3.54932
2.82154
9.40503
11.1304
12.0304
2.88956
3.42392
3.7429
12.6198
9.76334
3.04142
12.598
3.04015
3.71409
4.32017
22.135
16.3773
5.00602
17.526
5.11321
4.16706
4.63004
18.082
22.2641
5.42454
5.47783
18.1297
4.59017
3.83287
3.16801
9.8536
12.7339
3.11505
12.6513
3.8424
3.76583
12.5814
9.81825
3.097
3.09541
12.607
3.77212
4.66867
22.31
5.51122
18.2118
5.52961
18.1654
4.66604
8.07243
29.1429
6.2561
26.9103
7.41513
31.9419
6.61566
8.54136
10.9679
70.3812
31.5887
11.2632
34.0691
8.35031
10.491
54.0925
11.8472
223.928
14.0468
9.44629
52.1156
6.92047
24.9287
26.61
5.8431
27.6708
5.92759
6.83121
30.6465
60.6076
31.3387
58.5297
26.1841
19.9611
24.973
20.3941
9.41933
3.49726
10.2239
4.2817
8.23127
12.2251
3.61697
32.4987
36.7719
28.9068
54.32
24.9111
20.6608
25.15
20.0603
8.83362
12.1084
3.97378
4.39197
9.3436
11.1813
3.73685
24.6797
7.45532
18.9269
5.97196
26.1669
17.2474
7.30225
30.1887
10.4836
8.28878
35.962
29.4969
8.71514
37.0063
24.0263
16.1463
5.92883
6.93762
16.7281
23.2871
7.22524
34.9412
65.2387
33.0881
69.4767
29.7899
27.1796
34.2556
25.1815
10.3894
4.28483
16.9651
4.94639
12.7536
13.6319
4.12133
38.4172
249.41
58.07
80.3816
28.0656
22.2903
26.4972
23.9271
10.0274
12.6036
4.01222
4.89618
9.6841
13.0857
4.10694
18.4056
5.96689
13.4456
5.12744
17.0545
16.3273
6.13903
27.2196
9.03994
8.61292
38.1767
30.2912
7.62159
33.1282
77.5143
231.589
20.6999
15.5877
5.27905
7.07373
14.0268
22.9666
6.36419
8.2918
7.8354
26.6259
49.702
6.77268
10.0752
33.1145
10.6797
13.5998
57.8829
10.5359
13.7973
59.2274
8.04154
25.077
6.57361
29.7077
7.96466
6.62034
30.1159
11.0162
213.627
14.998
13.9569
13.6288
68.9334
5.4291
21.728
24.6172
6.12899
21.985
5.27908
6.33928
4.70625
3.95697
12.582
18.2787
18.1359
3.90457
4.7878
4.60887
17.5503
12.4174
3.74434
17.8732
3.81895
4.50152
5.55416
25.0561
22.5315
6.64135
22.3311
5.67293
6.514
200.91
4.97021
21.8424
6.42537
23.5105
5.77608
5.42358
20.153
4.02102
3.25243
12.6024
12.895
3.34005
3.91403
13.7471
4.15753
17.0534
3.72973
10.5533
3.46634
4.54113
15.5216
4.81346
22.3454
5.54822
18.2536
4.71994
5.63718
18.7212
9.88282
28.9908
7.27432
52.9947
9.14841
7.64488
54.436
13.4166
20.9404
13.9385
19.9084
10.3245
29.7232
8.10758
58.3943
10.6445
7.91414
57.2131
12.7824
17.0484
18.8212
11.5029
27.6709
4.24467
4.30967
27.4503
28.1746
4.14539
27.0629
27.9197
3.85866
28.1028
3.99712
27.3243
28.7608
4.00364
28.3815
31.4743
4.49388
4.26934
29.263
29.5263
4.11813
14.087
9.24552
11.8025
11.6488
290.817
16.8784
127.583
10.2984
65.5227
36.295
16.1714
276.359
105.79
8.87216
30.4103
4.67157
4.69987
28.3417
29.3204
5.16027
28.8725
40.3574
18.2701
290.353
27.6126
62.6953
106.062
9.41923
34.8114
37.0818
5.42256
17.282
31.3923
60.3911
7.02301
29.8275
4.16507
28.7384
4.14508
28.8097
29.5561
4.50672
32.9607
6.99354
65.9321
8.67496
35.0038
43.691
5.83924
31.9867
35.4762
4.64952
7.4352
30.945
39.4942
5.20042
23.017
4.31615
22.7735
4.42687
23.9398
21.6745
4.43038
23.0331
4.71335
22.3207
4.91296
21.4878
23.6871
4.668
21.6436
18.1337
4.65473
4.76945
20.1275
19.8307
4.56029
64.8511
32.5435
39.2243
36.7532
39.7755
4.68818
43.0772
6.13161
20.6161
9.77246
7.25753
30.8237
3.0874
8.15509
21.0871
45.8264
6.36666
9.91879
300.214
316.646
75.2502
9.38146
13.8935
5.41136
6.81672
12.125
11.1816
5.69385
118.285
77.822
342.307
43.9161
19.3177
4.29868
21.6817
4.52438
20.8379
20.4231
4.55552
15.196
5.68746
10.7543
5.61128
13.3532
12.567
5.18021
17.2925
16.5312
4.88835
5.14518
18.7114
14.7681
4.84482
17.0158
5.78221
20.5256
5.20671
19.5128
18.2015
5.57217
11.9003
5.50494
6.30575
40.473
9.97442
5.34599
9.02887
14.7626
15.6281
4.99144
5.81016
17.5427
12.8767
5.20567
302.77
25.8612
4.39208
4.58586
26.781
4.55004
26.4349
26.2007
24.6306
4.69342
4.81052
22.5592
4.64799
23.8811
23.3636
25.2194
24.6214
4.69398
4.8293
4.65969
25.618
24.1318
24.1872
5.09078
26.4578
5.01024
25.1004
5.24411
25.6261
21.715
6.00886
5.51398
17.3013
5.60617
20.3769
18.9839
23.7195
24.3916
5.06459
5.24076
5.28817
25.238
22.6462
27.4774
4.63499
4.71896
27.6405
4.72254
28.0478
27.0791
27.2722
4.8916
27.405
4.86543
27.9207
4.78511
26.6537
27.028
25.6921
4.80384
4.91116
4.82037
26.5656
26.3361
19.462
5.91799
5.01861
20.8167
5.30865
18.5648
21.6665
18.1383
6.22091
5.99502
15.8022
5.79541
18.9811
14.8528
20.6789
23.2157
5.05684
5.47225
5.38717
22.6342
21.3665
379.944
36.6351
7.84834
7.31051
12.1771
12.7004
8.19129
33.5348
20.3625
3.51503
8.82003
7.08801
7.53781
29.0967
5.63793
46.4726
33.1825
34.4572
43.1341
69.3982
40.211
36.9959
103.163
50.2342
13.9915
7.8961
6.36165
13.002
10.0719
9.53108
137.928
117.63
27.2963
5.31488
29.0009
5.45777
29.6341
26.5915
5.47441
24.7607
5.39022
22.2207
6.31015
25.6987
21.3027
5.74086
24.5615
20.0435
5.77349
6.26988
23.7245
21.0771
5.80973
20.6999
6.18586
6.81302
16.2528
16.8451
6.23434
20.1483
23.9225
5.26525
27.6775
5.34768
26.5212
25.0854
5.65395
20.8983
18.1748
7.00673
5.63194
17.0578
22.0193
6.23614
37.1543
4.14978
9.68959
7.76616
11.2033
32.9955
8.34354
395.672
105.802
71.5799
13.2474
6.25328
18.3083
7.11693
14.1792
17.3191
8.12792
140.997
43.1876
47.5415
115.699
12.8146
15.809
7.00404
6.85168
11.8424
16.9725
7.42588
20.0478
14.4757
15.7591
18.7367
24.5002
28.2676
25.0825
27.6817
21.2551
17.4606
21.8352
17.0018
23.6085
25.622
22.4207
26.779
11.2307
60.2913
52.8249
129.789
39.2728
19.6258
36.8082
6.94979
6.46401
19.9818
24.9231
25.523
6.50859
6.83225
7.34705
29.0016
20.8622
6.94468
26.8974
6.65999
8.27278
10.1527
109.314
34.926
32.302
35.9984
33.3413
9.757
30.0196
89.0171
10.3135
11.5645
96.5174
27.4542
9.61743
6.85707
35.9294
23.9785
9.95826
6.66418
34.2222
32.1226
12.9111
108.464
33.1911
12.5663
104.096
9.59649
31.4989
23.1844
7.13621
7.28087
32.8907
9.17484
17.788
14.0449
18.1979
13.4935
21.1731
23.9845
24.4107
20.8338
21.7325
25.011
21.9264
24.8265
17.2165
12.6769
12.9521
16.8962
68.4084
134.217
376.301
45.2792
28.9941
7.55204
6.30385
11.5259
6.94784
31.7418
10.1346
39.8928
32.4428
41.6957
31.5182
6.93668
3.16955
3.07902
4.20341
3.28813
4.47164
5.75456
19.9159
35.5948
9.35717
3.91407
5.42854
49.562
10.6195
101.272
109.078
36.5133
28.7741
30.1445
33.5303
17.0294
5.43668
21.6901
5.91013
20.5193
5.79312
18.4809
12.5267
7.03184
9.35398
34.9579
7.83337
49.231
11.8103
13.399
11.1336
6.33034
6.17257
6.05023
14.7709
9.80894
129.391
368.894
17.7997
6.13
6.2283
15.4321
5.98636
19.3485
13.9818
20.0533
5.60386
22.6429
6.06579
23.1089
6.19707
19.5956
16.4849
12.1869
7.8773
6.618
6.94754
12.7334
15.9675
39.456
109.421
41.3005
100.159
5.07442
3.31246
3.10816
4.23737
3.07396
4.17232
5.33487
7.24088
2.94812
5.41438
10.8469
3.19207
20.0961
5.97759
30.2939
26.6126
27.0376
29.5537
8.46423
31.307
3.62804
6.81895
3.44918
9.14093
28.4888
31.1233
27.8666
27.4954
31.869
36.734
45.744
68.5803
34.2596
24.8542
26.1165
26.5993
24.4066
23.417
21.8036
20.761
24.3348
3.55709
2.89038
3.90329
2.57432
3.81365
3.59315
2.88566
23.0207
19.9796
20.4459
22.5741
25.3651
28.0665
27.2366
26.2171
3.61635
3.7256
2.62745
2.98991
3.75286
3.61211
2.9985
28.0524
27.2555
29.0032
26.4799
28.7922
29.5909
31.2623
27.7867
4.13804
2.2623
8.13122
2.27262
5.6085
4.92872
2.15178
3.43523
2.31271
2.65093
3.21
3.25823
2.33004
3.31835
30.0466
38.9882
33.8202
31.8739
3.55393
3.32459
2.31695
2.5732
3.80472
3.2417
2.30199
27.1464
25.0037
25.6347
26.3834
31.1374
27.785
28.426
29.9822
5.41897
2.55188
4.49701
2.39048
4.25227
6.03522
2.40975
40.851
126.98
104.229
44.6194
8.13701
6.03219
17.9026
2.46845
26.7427
6.63715
2.81954
38.2426
61.2826
93.3865
34.8709
32.439
30.2269
29.2632
34.0553
4.93664
3.93562
2.38243
2.22489
4.04893
4.53761
2.31372
23.1826
25.7429
23.9345
25.0007
19.8411
16.3361
16.7813
19.4068
21.0021
19.1744
18.1723
21.8852
22.1866
23.5823
24.1223
21.7231
13.2202
129.345
53.3349
13.8534
36.8536
16.5273
19.4145
15.6744
20.3306
12.5851
108.175
31.3545
11.8686
33.0928
17.2761
21.2138
17.6947
20.9468
9.19261
95.3235
27.3246
31.9659
33.1415
29.9293
8.76071
6.57767
6.25079
24.3263
18.8091
24.0488
6.71917
6.28158
9.43636
100.081
34.0606
31.5194
33.5835
9.53374
31.0182
6.57254
23.444
18.7813
6.21333
23.9033
6.51524
6.31608
15.4867
10.3551
14.2543
11.6014
19.9967
23.5254
20.4061
23.1898
16.1335
12.3623
16.5056
12.0862
19.4563
21.5077
18.0825
22.6509
6.81023
39.5266
19.5092
29.598
11.0723
27.2223
7.77581
5.7789
7.12388
20.0108
15.9484
6.61869
20.2734
5.85928
6.42676
35.8007
9.5336
24.8586
6.71095
9.76571
25.4157
5.9915
22.6769
17.3192
6.14025
21.6492
6.28906
6.06559
28.2612
31.3717
30.4933
28.7203
25.7689
22.4316
24.9479
23.2544
3.72282
2.95176
2.67791
4.03914
2.96138
3.67449
4.18643
3.87515
4.7994
2.78339
3.06056
3.07276
4.45161
3.96358
27.7037
28.7644
26.8509
29.7235
26.265
23.9863
23.7622
26.5259
127.009
40.9297
102.43
45.6335
11.8217
6.47038
13.7423
6.22302
15.4285
6.94511
10.1526
48.8514
6.30907
29.6158
5.33274
10.1564
9.28855
20.406
360.375
104.294
68.7236
34.6329
9.14112
6.83243
3.73353
7.71531
29.3851
11.041
44.6957
37.0034
34.3061
66.9895
8.82863
2.85798
2.64073
4.87113
3.21298
7.31406
5.28773
33.4958
6.65584
12.3063
8.9922
11.3774
7.41464
47.3867
100.518
350.718
66.5293
123.239
348.114
10.626
7.3272
2.82527
5.25946
3.69628
5.96713
19.8515
40.5737
31.269
36.7981
32.7573
30.5064
32.7885
29.3882
34.7737
4.01795
3.12497
2.78321
3.76618
2.80696
3.77733
3.96997
4.9595
2.76905
9.00138
3.01106
5.30636
2.68428
7.52552
28.2296
26.0751
28.7956
25.6386
31.5387
41.2993
32.6817
37.6548
4.63807
5.52991
2.58137
2.73649
2.62025
4.39062
6.22712
27.6709
24.201
25.1334
26.7867
9.72361
42.8642
7.49516
9.61582
7.56841
14.8665
19.523
15.1594
19.1141
14.537
18.3151
14.3452
18.6405
7.22857
5.88655
2.40799
1.95584
5.7036
7.65332
2.35165
41.1206
21.6711
24.9402
27.0467
10.8451
11.2803
3.45381
2.7673
2.84234
11.8704
8.98505
41.8288
22.2051
22.355
42.0684
8.9285
2.9784
14.1638
3.54571
9.74438
2.89333
13.1268
8.15275
1.95059
5.50509
2.26606
6.26376
2.32879
6.8082
8.14089
2.03676
6.0636
2.44748
2.48377
6.17675
7.96646
10.7577
15.9275
3.17725
3.87847
10.9553
3.14928
15.6393
46.5924
24.4156
47.6396
23.8615
8.3764
2.07621
2.55459
6.45775
8.53003
2.5321
6.34371
45.3728
22.7861
23.2363
44.3115
10.4391
3.03855
3.8112
14.8278
3.09086
10.2011
15.1772
30.2969
7.0518
53.0998
9.78958
62.5288
27.3738
7.37867
28.4957
21.113
5.62846
6.40984
23.0013
25.5466
7.0117
24.425
5.7364
20.4288
4.98014
21.2289
22.9952
5.94553
47.0524
12.4448
8.28125
205.306
47.8552
9.25409
1.85009
2.24156
6.11229
6.51347
5.43242
1.9032
2.16098
1.80495
5.23802
6.31887
2.08199
5.29374
1.77937
2.10274
11.7303
17.4682
17.3999
20.8291
23.4419
21.087
11.6621
17.1221
17.3018
21.3358
23.6457
21.2376
26.2977
6.92326
50.9841
9.01836
6.88664
26.5241
50.49
22.1973
19.8033
4.75459
5.56472
19.896
5.60808
22.08
22.3202
5.66012
4.7771
20.1019
19.9928
5.63708
22.4763
26.1295
8.96519
6.78873
49.8781
6.84575
50.1715
25.9812
1.69758
1.97394
4.99826
6.04732
5.09089
1.72569
1.96802
1.72915
5.236
2.08077
6.13996
1.77513
5.15804
2.00889
23.5261
46.337
6.34003
8.14643
45.3152
23.9752
6.22234
19.3174
16.0015
4.19885
4.93718
16.0985
5.01593
19.6419
19.6808
5.18921
17.7671
4.27639
16.8904
20.1818
5.09156
23.1268
7.9226
43.6319
5.93192
43.4792
6.10678
23.4877
11.3664
16.5493
17.2118
20.2992
22.2043
20.3327
11.2852
16.7701
16.7546
20.2326
24.0761
21.4194
24.7141
46.9722
6.44844
8.68192
6.59127
24.3321
47.7344
21.4724
19.5779
4.62127
5.49018
19.2352
21.8206
5.4483
20.9118
5.278
4.5514
18.3312
18.695
5.3842
20.5761
25.2971
8.69299
6.68872
49.2479
25.6626
6.64199
48.6481
9.94524
43.2215
7.78042
9.98529
7.75508
14.6022
17.5956
14.4631
17.8175
14.6473
18.0584
14.7293
17.907
6.59161
1.85426
2.18881
5.38714
5.37911
2.18427
6.59486
24.3224
20.6722
20.4014
24.8757
8.71637
11.5139
2.81761
3.2836
8.98758
2.66959
11.1222
47.0397
46.9761
6.63284
1.85706
5.4995
2.28717
5.39895
6.79722
2.19135
8.64095
2.6624
3.26467
10.9952
2.65774
8.63785
11.0041
24.2384
20.3243
20.3685
24.2054
6.61019
1.87969
2.20748
5.40693
2.22045
5.40261
6.61598
8.61661
10.8647
2.66165
3.30869
8.54795
2.68744
10.9571
24.0271
19.8909
23.7927
20.1011
46.8037
46.9798
6.58703
1.86983
2.18751
5.35373
6.53969
2.206
5.38938
8.64964
2.68815
3.33762
11.027
2.70801
8.66294
11.0078
24.0857
20.295
20.1724
24.1968
20.1071
5.2772
23.3792
5.96921
23.1931
20.1269
5.08232
18.6767
12.8621
3.77426
4.05673
14.5846
4.53231
16.6316
18.1302
4.5322
14.9607
3.74745
14.7606
18.2291
4.40398
21.6427
6.42385
21.4058
4.72817
25.6827
5.35344
19.1808
8.67245
10.9335
46.2218
11.1442
47.1258
16.5691
20.1288
16.4818
8.73427
11.2714
47.6613
11.2234
47.5214
16.0445
19.988
16.3614
20.8115
5.42226
6.61818
24.0833
5.49126
20.5546
24.4379
18.8847
15.5023
3.96708
4.71759
15.459
4.70555
18.9409
18.7583
4.63383
3.95029
15.2047
15.362
4.6836
18.5489
20.9613
6.65902
5.53808
24.7101
5.52103
24.6316
21.0306
21.8225
6.77105
5.58165
25.3636
25.8786
5.59551
21.5688
20.0012
16.9193
5.3487
4.02774
21.6232
16.118
4.79795
22.875
6.94815
43.5271
6.57175
28.2402
26.5545
5.69039
19.4914
4.74654
3.99694
15.8232
15.866
4.74685
19.3764
9.2316
11.4973
49.0251
11.956
49.3786
16.7667
21.2052
17.2145
9.03608
11.3898
48.0495
11.6486
48.7893
16.8603
22.3568
17.8368
21.6223
5.65602
6.98291
25.4259
5.75721
21.6181
25.5012
19.2858
15.6106
4.05339
4.75076
15.7601
19.0801
4.81912
19.4035
4.8078
4.09484
15.8745
15.841
4.87735
19.4332
21.455
6.8603
5.5816
24.9108
21.1925
5.67299
25.2553
5.88581
27.5265
5.62382
22.8326
6.65011
5.09332
25.1247
6.63623
7.93228
30.3497
25.3742
8.00534
25.8873
6.5789
6.87566
32.3601
10.3352
33.5344
8.36695
8.05334
27.4936
5.70289
22.1694
4.91773
23.7426
4.96341
24.1593
5.66475
3.7642
18.7271
12.9482
4.52212
13.0672
4.59734
3.69465
3.15553
2.69117
13.2718
8.08706
10.6993
3.26479
2.58532
3.8932
19.1515
14.5768
4.82583
13.4758
3.97084
4.7494
3.03393
10.1201
7.79478
2.47622
10.2589
2.50571
2.99255
27.7277
52.3956
53.5824
54.7504
28.0062
54.195
6.40745
25.168
22.7339
5.33266
6.18923
25.0844
5.44662
8.15544
10.6724
57.7383
30.4235
10.7434
8.13454
30.0597
7.76746
28.9808
9.30911
54.4128
10.1085
7.36698
29.1684
6.6344
23.0982
25.8592
5.68531
6.6635
25.5635
5.63673
3.55728
13.1321
4.68008
18.5552
4.33449
3.78402
12.7437
2.81719
2.30227
7.42146
9.54225
2.32861
9.74669
2.77796
2.87556
10.191
2.48629
7.54966
2.38209
3.02944
9.93298
3.47462
18.1113
4.17476
12.2073
4.2309
12.483
3.426
18.0015
21.4829
16.9245
22.4752
12.6497
10.3854
53.2542
13.555
9.76594
19.0432
26.3237
20.6579
23.8275
12.0039
8.80201
50.9288
11.3033
9.28291
24.859
23.0382
22.626
25.121
28.8713
54.6748
29.4749
54.0747
8.20539
2.76614
2.40182
10.9562
8.38691
2.29765
10.668
6.75547
5.87679
1.77072
2.03561
5.76558
6.89367
1.99632
24.4671
22.9843
22.3064
25.2504
29.2431
57.2772
29.6112
56.1997
13.771
20.2521
15.4436
19.1765
10.0567
7.6213
30.7448
54.8645
63.0793
7.69105
9.91854
12.3421
8.23657
47.2438
10.252
204.432
9.31319
12.8024
18.808
18.5377
12.7898
26.4536
23.6702
24.4597
25.5879
7.51049
2.23366
7.32425
1.81797
8.97178
6.32901
2.13024
35.4828
246.236
57.3593
73.3944
8.5515
2.91362
2.36779
10.8902
8.35916
2.40546
11.1675
28.8196
29.8753
35.3336
26.1372
7.00197
5.8758
1.76909
2.01566
5.9677
6.88189
2.03891
31.2912
58.0815
30.0942
60.8406
5.02788
4.15205
17.9049
20.3629
4.29091
4.86892
20.9818
6.12408
7.79796
24.6948
27.685
6.4375
7.38503
23.7682
5.25108
19.401
4.76091
23.0177
5.51947
4.51453
22.0099
5.85751
22.2414
6.75561
26.6013
7.04682
5.65485
22.855
2.83532
9.36691
3.39798
12.0875
9.44035
2.78157
3.50065
2.27895
1.94614
5.83696
7.10814
7.11866
1.94628
2.27636
2.31819
7.14212
5.86168
1.95936
7.17139
1.97064
2.29478
2.7591
11.9224
9.31825
3.37389
9.33917
3.36896
2.75579
61.1895
200.914
25.8411
49.1672
47.7626
29.6023
28.4749
46.2999
2.95035
9.63934
3.42587
13.217
3.56588
2.813
12.0903
2.52748
2.19444
6.53981
9.00935
2.10622
2.65336
8.272
2.41951
7.32074
1.96436
7.0245
2.03857
2.31245
9.09222
3.10576
15.121
4.01484
11.4785
3.28076
3.78711
10.2724
5.14005
4.11628
20.5259
17.662
4.8147
4.30488
22.0228
5.47678
6.28598
25.2253
22.628
6.32272
23.1376
5.46154
6.03643
22.5044
6.50788
29.2078
7.23603
5.54246
24.9214
4.77784
17.2463
4.08927
20.8571
4.08568
21.1283
4.78122
4.21889
17.2645
12.2264
3.42586
3.47834
17.5419
4.14784
5.019
5.9185
23.3609
22.1535
5.74916
21.5805
5.14695
4.92587
20.8914
22.902
5.52106
5.62954
21.2366
4.83578
4.28903
12.3844
3.60904
18.1589
3.53573
17.7897
4.3873
26.4651
51.486
26.7229
21.5694
23.2831
23.0449
22.6303
21.4055
22.8525
51.9539
27.3032
26.9641
2.25469
7.18869
2.74705
8.84587
6.90869
2.29327
2.69085
1.87024
1.62966
4.8269
5.90743
5.57024
1.63372
1.84203
1.92922
5.9525
4.96009
1.71015
5.75736
1.68355
1.95872
2.17963
8.26479
7.16562
2.51762
6.59884
2.59487
2.11597
2.35981
7.3393
9.64067
2.79303
2.83252
7.43135
2.32968
2.03473
1.79235
5.30216
6.27374
1.76986
6.19475
2.06229
2.00808
6.06421
5.25485
1.73168
1.75062
6.13233
1.98626
2.39389
9.75969
2.92788
7.6282
2.87629
7.51572
2.43219
3.97461
16.8189
3.36353
11.1311
4.07027
15.954
3.28729
4.53856
5.37677
21.3597
18.8003
5.21929
18.9092
4.56327
4.64649
20.4113
5.41648
21.4757
5.31255
4.74552
19.6567
3.8396
10.1526
13.6312
3.08593
14.8303
3.16756
3.76494
11.9296
18.595
12.4317
17.8114
8.79728
7.87383
50.5405
27.3138
10.0173
50.0335
7.02408
11.0034
217.939
14.9305
13.2987
16.551
9.26665
51.758
7.38708
26.702
9.59754
49.5151
7.20041
25.8436
23.4148
23.7942
25.3358
29.3249
54.9167
33.8505
36.0293
7.56431
2.44658
1.96137
8.88162
7.29549
2.08135
9.24315
26.6909
25.2117
28.5626
24.3433
27.7365
31.5657
26.9495
32.8153
12.9261
19.0596
12.7635
19.3271
10.1019
7.78449
54.0433
28.0693
10.17
53.8391
7.74338
13.1432
20.0246
13.27
19.6832
9.94676
52.9355
7.55398
27.8669
9.83634
53.3803
7.63393
24.5463
22.9238
22.3206
24.8716
26.0746
30.549
26.5978
30.1265
7.064
2.13974
1.85702
8.64424
7.10651
1.82962
8.58737
24.362
20.7638
24.5729
21.489
26.1392
30.8446
26.4191
30.4646
4.47341
3.85473
13.7628
19.4028
3.73398
4.57985
18.492
5.19072
6.54489
23.7479
23.8999
5.57819
5.95806
21.9547
4.45304
13.0718
3.8196
19.1562
4.68986
3.69753
18.3951
5.20225
21.8573
6.12323
23.2087
6.01007
5.29734
21.4905
2.74635
8.98443
11.8291
3.29941
9.28956
2.69659
3.36276
2.28412
1.94982
5.86252
7.12803
7.15635
1.94023
2.28599
2.26065
6.94262
5.83904
1.90608
7.10953
1.92738
2.23093
2.77409
11.9612
9.34169
3.40898
9.37845
2.77569
3.39977
48.3745
207.17
48.2321
23.1117
23.9188
25.3901
26.1551
25.2133
29.7265
64.2423
28.3402
31.1529
2.56531
8.47366
3.1708
12.4882
3.09217
2.60721
9.51092
2.12053
1.84316
5.54082
6.46443
1.83467
2.13372
6.5203
2.15045
6.71654
1.86137
6.09992
1.85415
2.16951
7.4089
2.51251
10.4479
3.07598
7.91237
2.53546
3.02777
7.99313
4.79787
17.0455
4.00592
20.3341
4.7171
4.082
20.8231
5.55451
6.41177
22.6378
24.1283
5.56137
6.40225
22.7092
4.84226
17.2406
4.14326
20.9049
4.85749
4.13013
20.9911
5.49176
22.314
6.25167
23.9922
6.32437
5.41892
22.5825
23.7709
24.3128
24.1305
23.9543
2.56393
1.44656
1.29773
2.53878
2.60486
1.3109
2.51349
2.36523
1.38277
2.40534
1.23828
2.34051
2.43504
1.36503
23.6319
23.444
23.5233
23.5823
23.6814
23.7534
23.5974
23.8332
2.59311
2.70037
1.18456
1.1073
2.64957
2.62972
1.19783
23.6853
23.9937
24.0591
23.5993
24.9367
24.5764
25.001
24.3469
27.4583
55.8693
35.6414
29.4699
4.06859
1.61421
4.62979
1.11033
6.00391
3.58206
1.1798
3.71214
1.11963
3.52606
0.97878
4.02379
3.38161
1.06524
26.4743
28.7401
31.2733
26.004
24.992
23.9397
25.2273
24.1289
3.4497
3.05458
1.03148
0.983544
3.20138
3.22573
1.03897
24.5752
24.5595
24.3425
24.8724
2.8544
1.27127
1.17489
2.78682
2.82044
1.17737
2.80117
3.04644
1.18858
3.88568
1.09379
3.44111
3.21702
1.11798
24.8062
25.3416
25.6101
24.6603
25.051
27.2481
26.158
25.5528
2.90001
2.88545
1.09478
1.05339
2.8442
2.97755
1.10258
24.4496
24.19
24.2563
24.3658
23.6816
24.2951
23.948
24.0209
2.76292
1.08252
2.55696
1.13997
2.72008
2.59689
1.068
23.2165
22.8129
23.1687
22.8614
3.04019
0.930584
3.26505
0.965608
3.12991
3.15784
0.955566
23.5488
23.7505
23.5
23.8168
23.3619
23.4055
23.0231
23.7165
2.9214
2.86196
1.03891
0.994135
2.77306
3.02462
0.992051
21.1775
19.5303
20.4195
20.3972
22.2269
23.0817
22.5841
22.7348
21.7656
21.6242
22.1925
21.099
21.6899
21.494
20.9614
22.2124
15.9636
17.9301
17.301
16.6335
12.9747
9.84862
11.524
10.8907
14.5798
14.0995
12.827
16.0308
14.5044
13.318
15.27
12.394
19.3705
18.9767
19.865
18.4153
19.4152
19.0522
20.171
18.0915
20.1218
21.11
20.7338
20.5573
18.4851
15.4893
16.9045
17.3276
18.2106
18.4634
19.4402
17.1075
17.7264
16.6091
18.1467
16.2231
18.914
20.5891
20.0656
19.4168
16.9498
13.8164
15.7052
15.2915
23.0373
22.9613
23.4751
22.5304
2.30442
1.60805
1.81578
2.44299
1.81712
2.43998
2.31142
23.2624
23.377
23.5284
23.0813
23.2644
23.8887
23.4668
23.7133
22.8924
21.9998
22.6311
22.3514
22.3626
22.759
23.1038
21.9477
21.585
20.874
22.1837
20.331
22.5769
23.9644
23.1764
23.3345
21.3496
19.5805
20.8516
20.1222
23.8776
23.2319
23.6312
23.5274
2.6575
1.38825
1.52595
2.73748
1.52972
2.73814
2.66837
2.55849
1.66972
2.45433
1.89323
2.63198
1.68063
2.40903
24.3718
25.1706
24.995
24.5324
24.1279
24.4166
24.7578
23.7729
2.55236
2.42586
1.6923
1.91574
1.70314
2.57795
2.41436
24.1112
24.083
24.2657
23.9063
20.8892
22.2748
21.8241
21.342
19.5255
17.5658
18.9469
18.2404
20.6479
21.1873
20.1244
21.6175
19.7533
18.7773
20.1362
18.4824
15.7311
19.9318
18.4648
17.4502
12.1401
32.7025
335.709
48.1388
11.1889
12.6492
11.1295
9.42063
14.3773
15.238
17.3166
18.0309
14.3952
24.4865
22.5245
24.0424
22.893
26.1635
28.2395
27.5331
26.7639
2.8925
2.02983
2.94058
2.31732
3.0644
2.82695
2.30819
3.2287
2.27452
3.15202
2.60504
3.23056
3.15277
2.26588
25.7553
26.5179
27.0889
25.2413
24.849
24.1117
25.4654
23.4129
22.3727
21.854
20.6027
23.4568
2.72704
1.99588
2.87293
2.26065
2.81749
2.75773
2.25881
23.1989
24.1249
24.5722
22.712
23.7484
26.0021
25.1595
24.6968
21.8654
19.5285
20.1485
21.3209
18.8218
20.7271
18.4395
21.0803
17.2928
15.1818
14.0326
18.3636
16.0044
12.3655
12.7755
15.5648
19.8412
22.6815
20.7772
21.8793
4.48559
18.6314
21.0311
4.50573
4.56587
21.4369
4.38581
5.22688
8.90039
26.2482
32.4959
5.52261
25.3245
8.13692
4.59598
19.0057
4.76091
22.4982
4.7404
4.64184
21.9207
4.926
23.639
29.7917
5.82921
24.4104
4.63405
6.96007
89.9122
86.1356
5.18293
11.9049
4.82708
14.8864
11.7321
5.23757
4.77582
5.43731
5.69394
24.5316
8.07013
8.57596
5.97603
5.1875
5.51772
8.89196
25.0687
6.13581
8.76445
6.07224
5.57618
5.11931
14.5929
10.8357
4.61661
11.4736
4.73728
4.92743
5.35484
15.5614
12.0914
4.88405
4.93615
12.2703
5.29871
5.81215
6.75047
9.8636
26.9606
6.07133
6.4038
9.40984
5.44313
15.9001
5.15509
13.1004
5.63674
5.01354
12.5675
5.70191
9.0303
26.095
6.21116
6.27357
9.16849
5.64306
4.25085
20.6299
4.44531
17.8473
4.30945
20.2918
4.39654
4.24257
4.38453
24.3188
21.3383
21.9932
4.5924
4.14133
4.31334
22.9897
5.26199
25.1259
4.44551
22.4691
4.86925
4.22917
17.5506
19.3057
4.29266
19.9329
4.37288
4.15671
11.7514
13.7074
14.7458
10.663
9.09064
28.8071
83.3802
10.3569
25.7553
12.2012
16.4503
13.4234
15.1909
46.1361
107.172
56.0964
9.87769
18.0159
317.475
31.0701
17.2305
15.0869
17.686
14.5891
18.9404
20.1495
20.7872
18.1539
19.2622
21.5617
21.0348
19.746
16.814
13.0091
14.0429
15.8783
19.6072
16.5664
17.4339
18.8993
21.7467
23.9631
23.387
22.4101
21.3627
22.4384
22.9594
20.7642
19.9633
18.8269
20.7881
17.8022
45.7719
12.1903
9.12109
11.6659
316.665
10.0648
5.30166
28.0519
34.3215
5.83551
37.5715
8.69603
18.0289
85.3795
8.28094
30.3595
6.93112
26.0062
56.4584
31.8014
10.0942
90.0301
10.9864
110.632
27.9285
4.22652
23.0044
26.7979
4.75079
23.6953
5.32466
4.02114
3.96937
3.94969
20.6719
23.0851
3.88973
22.3442
4.08671
4.02696
21.4074
20.415
4.02469
4.10706
21.9234
3.92704
4.44564
29.0913
25.5703
7.64368
24.4949
6.43182
4.77648
8.95264
52.0092
6.2668
26.5071
34.763
16.4289
5.12827
23.6303
38.4758
50.9375
77.6526
8.23864
15.9735
28.1867
278.103
10.6454
97.0343
9.67305
41.0178
7.45859
25.2752
28.5697
4.14916
31.4362
4.578
6.0468
28.514
78.8297
35.2476
7.57508
9.13315
98.7021
23.7986
10.87
14.2366
13.7644
11.3252
9.72109
11.1599
12.6431
8.27685
42.1578
52.9067
24.023
16.7903
286.509
8.46866
3.77492
22.3544
4.37221
23.5074
3.89491
21.8283
4.045
3.76026
3.84848
18.6717
19.7174
3.89498
20.0954
3.70413
3.79567
20.8775
3.97456
18.9942
3.91969
3.86487
20.4319
3.70504
22.9322
21.0472
3.69912
21.4384
3.85942
3.62543
4.45233
14.7787
17.3635
4.75959
17.1271
4.48823
4.71335
4.21745
4.05546
18.4907
20.5318
4.18562
18.7783
4.09774
4.43099
14.6097
16.6524
4.63079
4.39893
16.9239
4.67965
4.23953
19.2911
20.7962
4.19523
19.0124
4.28105
4.13529
78.0788
27.436
79.6847
82.1284
27.7645
80.7205
5.8022
12.6333
5.21959
9.07565
9.51296
5.38622
5.56479
7.93239
5.33148
7.07056
14.9297
42.8981
4.80515
4.24307
6.60349
13.0915
9.83251
4.47354
10.1029
4.67124
5.79128
6.41973
26.0677
7.87584
2.80194
28.8403
6.09839
3.02045
4.61069
15.7755
17.7154
4.82637
4.53928
18.1809
4.93775
4.39807
4.20652
20.3809
22.2854
4.03461
20.3823
4.35246
4.67449
16.1251
18.3108
4.20634
4.07326
18.4661
5.11939
4.38517
19.6744
4.26044
21.9868
4.33095
20.1232
4.32843
5.41215
11.6534
5.13637
8.84484
5.08481
8.70915
5.46628
5.87571
2.62745
24.2049
6.53236
5.78621
24.62
2.65581
5.36492
11.5014
4.97551
8.41943
5.28421
5.04387
8.59314
5.92684
25.2861
6.61049
2.71284
24.9092
5.9844
2.68651
6.62958
24.3085
54.0005
32.0673
29.5736
17.1811
7.79104
4.39179
4.01407
23.6642
22.2136
4.21212
4.0894
24.1746
5.57133
36.4622
26.451
8.38711
5.0815
27.5225
9.65915
4.66684
25.6284
22.5651
4.28487
4.17404
24.8254
4.98178
13.5102
9.79092
12.6301
10.5475
16.4853
19.1367
18.6742
16.9605
16.1845
17.8696
18.4803
15.4112
13.9382
11.6406
14.4713
11.1017
11.1099
8.59438
298.388
43.3909
11.4861
13.4243
15.4405
16.2916
12.4852
13.9169
16.9344
16.6549
14.2565
10.4812
105.802
26.8446
9.66971
30.4003
9.7517
107.185
27.1346
33.8606
8.52377
30.6191
36.7435
6.69532
4.92565
32.0102
24.6648
7.82859
4.75039
29.5294
17.2654
302.265
8.70193
80.2187
24.6595
43.543
54.4173
5.73204
26.4714
4.40454
24.0945
4.55947
5.27728
27.5855
8.64525
37.6773
6.83992
8.66587
6.82084
12.4541
15.014
12.4276
15.0433
12.4999
15.1546
12.5324
15.1097
5.07744
4.3765
1.74916
1.52317
4.35532
5.10759
1.74308
17.3827
16.2222
16.3531
17.2065
20.8084
41.2464
20.9288
40.9896
6.10847
7.75157
2.4306
2.02349
2.03926
7.87606
6.02583
17.4199
16.3747
16.3695
17.4579
6.14402
2.0457
7.99987
2.42858
6.18883
2.03648
7.9298
5.05324
1.52644
4.29629
1.73418
4.34016
1.74619
4.99494
5.02304
1.52402
4.38908
1.77315
1.7476
4.30815
5.1386
5.95747
7.62241
2.03517
2.42831
5.92087
2.03002
7.66745
17.3198
16.1099
17.3284
16.1398
20.8234
41.3429
20.9497
40.8715
4.93571
1.50941
1.73414
4.21361
4.90531
1.73207
4.23889
17.3923
16.291
16.2324
17.4357
6.07408
2.08782
2.44513
8.1084
2.04645
6.24687
7.8314
16.8165
4.17313
18.3457
4.91147
18.5807
16.5928
4.21807
14.3349
11.139
3.02745
3.77958
10.1702
15.1085
3.65492
13.8878
3.54537
9.60034
2.95991
9.77754
13.6775
3.58417
17.2132
4.99491
19.6156
4.42022
18.9828
17.8091
4.29201
41.26
21.446
5.85838
7.56841
41.2902
21.419
7.57414
9.94202
14.3648
9.77163
41.3365
5.88874
21.5841
7.72773
21.4601
7.60859
41.6382
9.72725
14.3025
9.73124
16.4914
4.1734
18.2698
4.86261
4.17627
16.5131
18.246
13.6163
9.58833
2.94796
3.60945
9.54997
3.57224
13.6728
13.5843
3.54606
2.92916
9.54123
9.52745
3.54942
13.6022
16.5279
4.89135
4.24986
18.3717
4.20228
18.2851
16.5973
17.4044
19.4488
4.16132
4.67919
18.8408
17.788
4.11758
14.2262
9.77294
2.95563
3.51832
9.94001
3.5531
13.9814
14.3533
3.58409
10.127
2.95459
10.0182
14.5765
3.55372
17.2324
4.67482
18.4041
4.07946
18.6137
4.11596
16.9913
39.5451
24.8677
5.62309
7.8302
40.1301
21.5159
6.98739
10.0917
14.196
9.56044
39.4691
5.82971
21.5147
7.80295
41.3871
21.1226
7.46122
10.2855
12.9384
171.23
8.68607
17.0837
21.2162
4.4773
4.80047
4.18991
18.7386
18.7543
13.7137
9.59168
2.97032
3.63336
9.6431
13.6718
3.59462
14.0922
3.78753
2.98411
10.3189
9.87139
3.5987
15.0457
16.575
4.88223
4.28126
18.3422
16.5868
4.21339
18.2128
8.16895
35.6167
6.51244
8.2521
6.45345
11.8305
14.3207
11.8165
14.3294
11.8625
14.5548
11.9947
14.3764
5.0078
1.44321
1.5918
3.89361
4.29389
1.64264
4.43942
17.1567
16.0436
16.2635
16.9299
5.6043
7.43345
1.98377
2.29615
5.83017
1.94376
6.96986
22.0593
22.9953
18.4153
36.4086
4.7494
1.47105
4.20815
1.70381
4.14279
4.86678
1.67633
6.0177
1.82996
2.22497
6.25683
1.89612
5.1743
7.61599
18.8007
16.0951
17.3309
16.8947
4.20922
1.3387
1.5294
3.75682
1.51195
3.71261
4.26863
4.86301
5.91371
1.74303
1.99812
4.93997
1.73122
5.81207
15.7044
15.1869
15.709
15.1896
16.6703
20.5756
17.1202
19.8862
4.21092
1.3496
1.53217
3.76859
4.2726
1.5213
3.71869
4.86793
1.74969
1.99515
5.94777
1.72452
4.95089
5.82699
15.7891
15.4826
15.2553
16.0805
13.4282
3.42427
16.3395
3.98194
16.2066
13.5402
3.42983
37.968
37.5931
9.27068
7.2383
2.29215
2.72662
7.37631
2.78306
9.09573
9.43219
2.85773
7.5662
2.35441
7.50265
9.5111
2.8575
13.1996
3.86945
15.6228
3.26491
15.9197
3.33757
12.9509
18.9135
4.47331
5.06502
17.5696
18.5943
5.09575
17.7722
24.4573
165.177
7.5273
8.11946
6.28443
38.8093
50.1025
20.0474
4.54841
5.97054
20.393
5.20828
18.4392
23.9109
22.1705
6.03992
41.3446
7.82485
21.6317
6.09669
42.7283
13.636
3.40844
3.95258
16.3506
3.41472
13.5536
16.4839
9.71309
7.89328
2.38505
3.04828
7.70837
2.88297
10.0036
38.1819
38.4857
9.57308
2.8489
2.36154
7.58145
7.61412
2.85242
9.52829
13.8992
4.00682
3.70311
18.0433
3.4559
16.9171
14.5099
14.7006
4.44199
3.75438
16.7131
17.1609
3.82433
13.9798
12.3615
9.32727
3.44003
2.77752
13.3644
8.51488
3.33783
48.2594
156.168
15.69
4.51477
18.0925
4.00642
17.6978
16.4959
3.9258
10.9682
3.11834
2.67806
8.06843
9.87795
3.20978
10.0077
20.4961
4.76247
5.84599
17.8372
20.9664
5.68026
17.498
37.5737
6.73041
9.03935
37.853
7.13273
20.0796
4.69174
5.3811
17.8286
20.4997
5.55179
17.2981
39.3798
7.62855
9.40981
40.5299
7.37717
13.167
3.58058
4.10401
16.1813
3.50266
13.4228
15.8905
9.28489
7.57572
2.39113
2.90711
7.42859
9.49645
2.89345
40.6845
39.0295
9.32204
2.96538
2.39354
7.62938
7.45631
2.9031
9.52519
13.1014
4.06504
3.4869
16.2699
13.4609
3.48171
15.7804
3.00585
10.5687
2.4556
8.38612
3.01816
2.44977
10.6033
3.74686
4.06178
19.5502
13.9958
4.45003
15.4627
3.43218
3.6384
15.1256
4.2778
18.554
4.24128
3.66153
15.2354
3.05849
8.34101
2.31823
9.5353
2.47158
10.5686
2.82733
45.8401
47.9786
1.72848
6.56275
5.35954
2.01696
5.41874
2.02387
1.72374
1.7623
6.72425
5.87003
2.1559
5.53741
1.82541
2.07022
19.7014
22.9424
19.6822
17.4533
19.2369
18.7002
18.6323
17.3777
18.6389
22.7568
20.1622
19.6657
3.02164
10.6541
8.53913
2.45057
3.01052
10.7983
2.46071
3.74928
4.53
19.0676
16.6615
4.38209
3.88744
15.7954
3.66667
15.2611
4.26614
18.6801
4.28243
3.65197
15.4641
3.09082
8.7627
11.7289
2.62949
3.21638
11.0553
2.52062
1.73137
5.34293
2.0226
6.47471
2.02162
1.73057
5.37023
1.73481
6.46847
1.93033
5.23734
2.0316
5.38453
1.66564
44.2021
42.8494
5.90424
24.9781
21.5312
7.05254
5.91796
21.6148
7.03214
5.12342
4.5615
20.7928
19.2986
5.1625
20.5746
4.51797
5.8705
25.0528
21.9833
7.09614
5.92722
21.6601
7.00011
5.1551
20.4657
4.54536
19.207
5.16834
20.5368
4.53992
11.4409
9.14595
45.7815
8.91775
11.7979
16.0743
19.5444
14.0889
21.0635
10.6302
46.5407
202.587
9.4764
8.50833
12.3504
17.1461
21.8825
17.6917
21.5251
5.85811
21.5592
7.00817
24.5654
5.90845
21.5599
6.90025
5.20915
4.88556
20.1136
23.8212
21.5235
4.62986
5.58826
5.15991
20.5514
4.56281
19.3907
5.17753
20.6554
4.56131
5.85267
25.3544
25.6625
7.48459
22.469
6.77128
6.37924
11.9212
48.1416
9.25479
9.22696
11.9879
17.7199
22.2667
18.0698
21.7095
11.8532
48.3002
9.35273
12.0578
9.19163
17.8721
22.4553
18.062
22.0088
2.62141
2.16717
6.97649
8.90763
2.17373
2.61168
8.99975
3.23418
3.96071
12.4511
16.2501
3.3097
3.90068
11.5544
2.64222
7.14981
2.26164
11.1932
2.73762
2.18724
9.27929
3.22318
11.1953
3.90559
16.0233
3.9058
3.21668
11.2924
1.63507
5.0144
1.85726
5.86539
5.06568
1.62527
1.869
1.66067
5.98742
5.21425
1.91363
5.16343
1.90013
1.66408
19.5539
21.091
19.8011
17.8163
20.923
19.6109
18.5422
16.7493
18.9323
22.2349
22.5597
20.5032
46.9815
24.4765
47.2263
24.682
47.9386
47.743
1.61211
4.96356
1.84218
5.77669
1.84487
1.61019
4.97872
1.61033
5.87973
1.90046
5.62121
1.64773
1.84811
5.04598
2.64014
2.18157
8.96701
7.04946
2.62692
2.19335
9.05886
3.3063
4.16881
16.696
12.04
4.00494
11.6834
3.40119
3.24662
11.2672
3.92556
16.1843
3.93512
3.23453
11.383
2.68791
7.20593
2.25877
9.48615
2.23139
9.27448
2.74061
24.818
46.8159
48.3194
27.1679
181.176
56.1382
1.89891
6.63368
5.61421
1.60294
1.63893
6.74417
1.86081
2.32868
2.91399
11.023
8.8397
2.84293
8.73682
2.37996
2.28662
8.5209
10.9822
2.75342
2.78831
8.6991
2.24598
1.93093
5.62521
1.69411
6.83262
1.66495
6.76502
1.9679
22.682
22.3025
25.8622
53.9988
23.1487
26.0171
42.008
175.983
41.6585
19.7574
19.7348
21.3145
17.3828
18.6256
17.4464
10.2431
15.2391
14.7201
14.3865
9.95434
14.4644
18.6873
17.7574
17.5661
22.5596
19.6622
22.9215
45.0065
44.7185
42.599
44.285
19.7413
23.181
23.0606
1.59717
6.19521
1.45649
5.62439
1.67182
6.70796
1.40021
1.78333
2.00248
9.25755
6.65721
2.153
7.11307
1.67476
1.88237
7.73747
2.4077
10.9459
2.25291
1.99034
8.46594
1.51303
5.02427
5.53185
1.27012
5.84658
1.32743
1.43591
4.56302
19.5885
19.2849
5.33984
4.72256
18.8825
5.13568
4.09462
3.7428
20.5596
15.4478
4.37827
18.5456
3.55266
4.56148
20.4581
22.5648
5.59198
4.95135
19.7163
5.06973
4.06613
18.248
3.63075
14.9805
4.19651
17.8492
3.51745
9.25919
25.3756
6.8164
46.5454
48.5541
7.16183
8.79627
12.4347
18.6253
12.8045
18.4286
9.6585
26.4731
60.1601
7.72997
51.16
10.0653
7.45494
11.9546
16.9645
11.3468
17.8179
5.29536
22.0177
20.3246
5.72019
5.05491
21.1035
5.99435
4.89701
4.46683
21.9029
19.2605
5.03465
20.985
4.32838
5.47847
22.7685
22.7766
6.40101
5.62879
21.7295
6.21373
4.724
19.3326
3.9153
18.1019
4.49875
20.2584
4.14375
7.73995
22.2198
6.34826
43.6493
6.05833
41.0607
8.18299
9.07233
12.1516
190.062
10.7403
13.7231
7.26223
23.0013
6.54555
44.8971
8.16411
5.85826
41.9203
9.94863
15.8499
10.5534
15.016
1.98111
1.74791
5.52452
6.89375
1.70429
2.04478
6.61752
2.41791
3.07577
9.01226
10.8584
2.48893
2.95505
8.64707
1.99901
5.61279
1.74499
6.93836
2.04186
1.71712
6.71206
2.39613
8.90558
3.0243
10.619
2.92469
2.48022
8.50584
1.50556
4.97021
5.46783
1.65218
4.79248
1.45457
1.71446
1.56047
5.67547
5.07494
1.8262
4.9258
1.59556
1.78273
18.997
18.9258
18.2371
13.3056
15.9968
16.7133
17.8002
13.863
17.1087
18.7878
17.9513
18.1234
23.4478
42.5921
43.2722
23.4376
46.4979
43.9434
180.581
1.37932
4.36258
1.52653
4.79254
1.52439
1.3519
4.23602
2.37492
6.41799
1.90696
8.63498
2.24791
1.99257
7.97419
3.06704
3.85395
11.4862
15.5881
3.1755
3.71892
10.8253
2.49904
6.76924
2.14243
9.09413
2.58027
2.08368
8.62198
2.90329
11.1692
3.29085
14.2335
3.52316
2.72873
9.77076
20.0307
26.1161
23.4817
45.3317
44.852
19.8366
23.2818
23.1553
53.8833
45.7077
2.77044
19.9196
2.74282
20.1738
2.81738
2.68919
19.9891
2.92254
3.11731
20.0197
20.1375
2.98574
20.0348
3.04868
2.81415
19.8632
2.77925
19.9276
2.87382
2.72366
19.9372
2.86987
20.2774
3.0261
20.1915
2.91416
20.0878
2.98592
3.15209
20.8673
20.4924
2.78016
21.117
3.03872
2.8253
4.32542
13.2776
31.3
25.6499
23.6068
6.65191
5.42645
3.8494
21.8
27.5898
5.09212
22.6095
5.6519
3.57606
3.36316
20.4677
21.7314
3.10467
21.3317
3.72947
2.93921
3.05443
20.6771
2.82813
20.3872
2.88327
3.03461
20.6482
3.30664
3.53004
21.2426
20.9882
3.51284
20.9229
3.3668
3.28932
21.1972
4.04296
21.5059
3.61072
3.37935
20.9559
3.12057
20.4777
3.06446
20.8175
2.9662
20.7115
3.20659
2.61367
19.9083
20.1501
2.6747
2.6205
19.9262
2.68531
2.6748
2.76135
19.7369
19.4954
2.70814
2.73397
19.7307
2.62378
19.8428
2.69168
19.8622
2.66075
2.6453
19.8595
2.6746
20.0479
19.5865
2.85856
2.74714
19.8019
2.75979
3.62048
19.8113
20.2819
3.50765
3.56564
20.0281
3.56821
3.50412
3.29226
19.9144
20.0033
3.32514
19.9178
3.4678
3.51584
19.5687
3.31997
19.7617
3.34155
3.49095
19.7761
3.64054
20.5047
20.2313
3.58771
20.171
3.59946
3.62328
3.35723
19.3594
3.42133
19.2678
19.0266
3.4355
3.33969
3.24177
3.11626
17.6312
17.4286
18.1267
3.1992
3.15755
3.33318
19.0795
18.2596
3.37299
18.6825
3.28989
3.41714
3.27258
18.8036
17.9092
3.18617
18.5396
3.25554
3.19675
3.54643
19.5671
19.5141
3.49298
3.53756
19.4289
3.50251
3.53547
3.35453
18.9334
18.8591
3.36161
3.51912
19.0249
3.51017
19.3068
3.30527
19.0713
3.33245
3.47979
19.1543
3.54283
19.296
19.0861
3.44632
3.50416
19.2833
3.48972
3.34319
20.2354
3.40816
19.5509
3.46797
19.9833
3.28611
3.24617
3.08657
20.1954
19.4713
19.9922
3.22727
3.10252
3.38488
20.5259
3.49059
20.5155
3.505
20.3424
3.36721
3.19964
19.0648
18.9789
3.00383
19.5648
3.14686
3.05079
3.45526
3.54187
20.7004
20.8903
3.48858
20.4926
3.48455
3.37395
3.27482
20.2248
20.1636
3.2017
3.44996
20.2481
3.29226
20.5596
3.16667
20.2844
3.12915
3.32607
20.3259
3.5415
20.8493
20.3697
3.59169
3.61457
20.441
3.54766
3.41412
21.9701
3.46261
21.7681
22.1129
3.60633
3.28973
3.28613
3.11781
22.5184
22.1758
22.3865
3.43409
2.9947
3.54268
22.1636
22.4987
3.91765
22.3735
3.70596
3.74873
3.17726
21.6668
21.7832
2.85856
22.0578
3.08278
2.9107
3.62508
21.51
3.57129
20.9056
3.49806
3.72091
21.1313
3.60502
3.62422
21.3762
21.0969
3.74662
3.47435
21.2047
3.75164
21.6311
4.01788
21.4207
3.89263
3.86521
21.272
3.47136
20.7853
3.19355
20.9391
3.32872
3.34229
21.0362
3.24389
3.43877
21.1396
21.4336
3.38658
3.27762
21.1333
3.13984
2.97247
20.4237
20.3365
3.16279
20.7556
2.9585
3.30779
21.0407
3.4842
20.7354
3.33775
3.44871
20.9856
3.07714
21.2775
2.86886
20.5644
3.08282
20.9459
2.90286
3.50193
19.1694
3.40183
20.0235
3.35083
3.54401
18.8995
3.71114
3.94192
16.0202
17.2546
3.95613
17.4615
3.69929
3.69627
17.8845
3.97451
16.174
3.94076
3.73369
17.6256
3.51454
19.8491
3.34637
18.5319
3.35877
18.7309
3.5035
3.62928
22.8957
22.3151
3.39961
23.5839
3.37457
3.51848
5.58828
24.9058
47.2047
33.0566
28.2914
14.0771
8.05504
4.09134
24.1585
29.3927
3.72153
25.5358
5.42668
3.43437
4.03693
22.6922
25.8456
3.7888
24.4409
4.7532
3.62582
3.11792
22.3072
3.28331
21.0249
3.22093
3.20573
21.9592
2.99184
2.92085
23.8741
22.4967
2.95692
22.678
2.96703
3.01587
23.3435
3.20431
24.1693
3.00529
3.1445
22.916
3.10895
20.8407
3.20869
21.5753
3.22297
21.7558
3.08962
3.71034
19.6428
21.2194
3.49987
3.63476
20.0879
3.58191
3.94016
3.78803
17.708
18.9816
4.23885
3.64771
19.0845
3.90809
18.3551
4.06351
17.4116
4.16664
3.82293
18.8365
3.72496
21.4637
20.3318
3.57085
3.55746
20.3124
3.61115
6.40528
40.9697
8.87347
5.9376
7.49031
9.55765
5.51492
4.33261
4.16874
11.8548
13.0724
4.45417
11.093
4.10677
4.40029
6.63106
4.76211
9.76581
4.63738
4.36897
9.02143
5.73448
11.1309
13.6276
4.81326
11.6702
5.21901
5.1079
42.5946
20.1
21.52
17.7019
14.6246
17.4172
61.6886
23.8461
23.0692
16.5858
14.4469
16.9981
73.2362
70.2387
2.03147
3.04588
2.42224
5.75677
2.94073
2.03656
2.37624
2.10517
5.59765
2.92281
2.35515
2.9532
2.39288
2.10176
2.10407
13.6602
3.71003
2.57377
3.66064
4.46168
1.96291
2.07811
2.27678
3.24201
2.67709
2.09805
2.27279
3.1288
2.27601
19.3832
5.13959
5.65305
2.37119
4.68687
5.2693
2.03629
2.79541
2.62245
2.23811
2.2474
2.94582
2.00526
273.87
5.10965
8.23589
5.61072
23.209
5.22691
7.94221
5.4932
4.76776
4.3667
11.7595
9.20138
9.73347
4.46906
4.59876
4.87195
10.4367
4.6301
12.1504
4.97933
10.0945
4.54496
4.99464
22.3759
7.20261
5.16205
7.63755
5.38614
4.78198
3.81411
3.52038
19.1062
17.7537
3.55204
17.9958
3.75869
3.64565
3.90345
16.8912
14.861
3.66861
3.86775
16.4187
3.46118
19.0005
3.32193
18.2047
3.47708
3.30924
17.7879
4.14869
16.4563
15.3064
4.40913
4.57926
16.7403
4.05066
3.0767
20.4975
3.26257
19.185
20.1968
3.09822
3.23477
2.923
2.91066
22.1751
20.5693
20.9118
2.84149
2.98299
2.9301
21.4538
22.4355
2.86085
21.1915
2.84478
2.95059
3.07039
18.8544
19.5127
3.25895
19.888
3.22316
3.11976
3.15828
20.8485
3.31949
20.0956
3.33806
3.14539
21.0114
2.93332
2.89406
23.2484
22.2772
2.87773
2.94451
22.0297
2.99408
21.7666
2.89237
23.1057
2.90184
2.9874
21.9263
3.05574
20.0779
3.18579
21.3353
3.06647
3.17542
21.0618
3.62744
3.45005
17.2387
18.0886
3.67133
3.41443
16.8638
3.84733
4.08946
13.5326
14.6097
4.14508
15.1037
3.82351
3.88553
15.8812
4.26731
13.9292
4.19923
3.9402
15.4907
3.6006
17.7386
3.41514
16.0264
3.39594
16.4945
3.60102
4.57779
8.73994
11.6907
4.06972
9.645
4.23982
4.28205
5.27472
7.16315
25.9919
9.00024
5.7911
8.32043
6.07673
4.85995
6.60022
22.6464
4.7838
5.3023
7.55491
4.40245
4.89269
12.5153
11.095
4.70021
10.5218
4.45162
5.35166
26.7156
60.7489
67.4605
233.21
29.1047
83.3003
3.88647
14.0981
4.54428
12.1483
13.7284
3.99985
4.31736
3.41429
3.09081
16.2153
13.8739
14.5782
3.13686
3.3494
3.49498
15.4974
16.7513
3.20021
15.1662
3.19092
3.5425
3.76342
11.4026
12.2704
3.95196
13.07
4.12524
3.66165
87.842
71.1212
3.51493
14.1236
13.385
3.76654
3.86999
14.8609
3.44309
3.28573
3.03024
18.3842
17.1395
3.03237
16.8507
3.30609
3.20631
15.5834
17.8361
2.92544
2.97092
16.2526
3.15031
3.62069
14.1194
4.14201
15.8586
4.01573
15.5205
3.67613
5.08789
8.73044
5.1532
10.2204
5.82861
8.09484
4.73168
5.04355
1.98164
6.77387
19.2693
2.17343
21.666
4.51497
5.54776
35.6745
3.64356
7.90211
2.49028
6.81506
24.8251
4.67828
9.4173
6.45145
4.13108
7.39276
4.43241
4.21263
1.89707
2.71337
7.10411
1.66848
5.0545
2.37384
1.56354
2.52119
5.06396
6.42478
26.3847
2.11758
7.94697
5.87277
1.61762
2.33948
3.1966
1.45965
1.4972
3.7844
1.48886
3.92161
24.997
40.0794
4.96753
15.6118
5.49782
7.51094
16.9627
15.071
14.8952
12.745
11.1582
12.9972
16.6098
14.3853
14.6642
13.264
11.3172
13.1783
27.1957
47.88
83.9486
42.3014
250.789
269.237
1.8778
3.13423
1.73116
2.20003
2.31192
1.81262
1.8621
2.00327
4.0746
2.75993
2.22046
2.58349
2.02751
2.04391
20.0474
29.4874
25.2516
27.6858
89.1598
30.9013
19.2895
21.6703
22.9058
87.0309
270.676
48.7037
5.36451
6.35925
15.0474
1.91876
3.79819
24.2152
2.32682
6.16511
4.20142
8.36675
10.5449
4.31157
8.63874
5.45418
7.33327
13.1888
6.34406
4.6646
4.34691
38.9577
3.55465
4.88447
40.1502
6.22354
9.20578
7.44016
7.09983
4.70185
1.82275
2.15852
1.66525
2.10534
1.64205
2.06084
1.82832
1.7808
2.0293
1.59151
1.9717
1.77731
1.60078
1.99477
4.78434
3.7014
14.6808
13.3791
13.1514
4.18562
4.06946
4.91069
4.63709
9.12047
8.12873
4.48448
5.29775
10.3054
4.49836
14.0299
11.1845
3.92527
4.25299
12.3578
4.06364
5.47744
11.5291
9.15351
4.73478
6.28878
11.2513
4.43703
3.02441
18.1234
17.3588
3.39312
18.4988
3.10419
3.24508
2.90702
2.87651
21.342
20.1253
20.0476
2.78512
2.95036
2.8525
19.1438
20.8892
2.72542
19.5611
2.72591
2.88607
3.0888
17.9649
19.0315
3.22606
19.0212
3.08721
3.31208
3.31865
17.4628
3.37728
15.9883
3.69968
3.10561
17.1582
3.05877
2.85285
19.332
17.3142
2.85525
3.04286
17.9092
3.03193
18.5767
2.73631
19.5955
2.81923
2.89509
18.2498
3.32703
15.4453
3.5959
16.0032
3.29227
3.67132
16.7242
3.79543
16.1134
3.77422
14.4473
4.24708
3.49949
14.7175
4.34317
3.99507
13.8998
12.4771
3.76456
4.86351
14.1532
3.92061
16.8319
3.37931
15.3893
3.55838
3.58144
15.5746
4.12147
12.8214
5.4553
11.2043
4.44933
4.80905
13.1122
7.41794
32.2721
5.89609
7.43867
5.8776
10.8405
13.2907
10.9211
13.1874
10.8055
13.1684
10.8338
13.1373
14.5141
14.5137
14.383
14.6643
14.3709
14.8167
14.1969
15.0038
3.95675
4.64975
1.5491
1.39548
1.37568
4.53348
4.04802
14.2941
14.005
14.1785
14.121
3.88023
1.33798
4.39275
1.52142
3.83354
1.35069
4.44616
3.83218
4.4598
1.34057
1.49573
3.87979
1.32557
4.40211
14.0519
14.0388
14.1799
13.9212
14.0743
14.7012
14.0825
14.6941
13.9883
13.886
13.8632
14.0022
3.80155
1.32075
1.48918
4.35644
1.32086
3.79822
4.36328
11.3869
3.05976
14.7096
3.52137
14.4105
10.7701
3.02221
32.6664
33.5675
139.287
8.40939
7.00161
2.15197
2.65861
6.74284
8.78319
2.59415
7.84973
2.54274
7.27012
2.11475
6.46504
9.45402
2.53571
11.9674
3.58633
15.124
3.1794
14.6797
12.5001
3.09548
16.621
16.0972
3.78466
4.32414
17.3366
15.5084
4.26583
17.1621
19.2546
4.6643
5.72437
4.82412
16.776
19.7705
16.2471
3.73407
14.9017
4.09469
15.1656
4.22141
15.9317
17.6171
4.94249
22.4412
5.76451
18.6979
4.86632
20.408
9.1902
2.82366
13.5131
3.29153
2.76092
9.63901
12.9592
7.1427
5.47213
1.86524
2.16514
5.58038
2.2209
7.0053
37.4392
20.8869
18.7525
44.276
7.36732
2.34473
1.92123
6.02317
5.74856
2.28251
7.76624
8.92819
3.23464
2.62996
12.4271
2.69964
12.6436
8.7629
8.48296
11.9026
2.52224
3.03994
12.0117
8.39443
2.54602
34.2703
17.1787
17.4096
33.8421
6.93557
5.57656
1.7996
2.18309
5.42273
2.13824
7.15513
6.80228
2.08089
5.25652
1.76782
5.31826
6.7251
2.1012
8.64475
3.0857
12.7228
2.64633
12.2279
2.58861
8.947
15.1942
14.1691
3.44023
3.85967
15.1168
14.2336
3.87547
16.1349
18.7412
4.50357
5.23613
16.3603
4.43524
18.4786
15.3525
3.46318
14.576
3.95922
15.5637
14.3797
3.90224
15.9699
4.37944
18.1839
5.19463
15.8828
4.40253
18.2904
8.36806
11.8305
2.49561
2.99012
2.49956
8.33944
11.8779
6.75712
5.34746
1.7408
2.09566
5.27628
6.84826
2.07075
33.6122
17.0379
17.0228
33.5996
6.69489
2.05763
1.73211
5.21593
5.22743
2.05945
6.67718
8.45114
3.00898
2.54644
12.1604
8.5683
2.51424
11.9972
7.75355
33.0515
6.15971
7.76485
6.14275
11.4095
13.6458
11.1558
14.0553
11.3111
13.7164
11.2948
13.7874
14.7475
14.5622
14.6035
14.7266
4.06247
4.75244
1.40502
1.54128
4.12251
1.36482
4.67191
14.8074
15.331
14.6959
15.4794
4.01634
1.34294
1.5225
4.54221
1.35097
3.96707
4.6082
14.7283
14.5313
14.6028
14.6414
4.00931
4.11116
1.29263
1.48504
3.66802
1.32879
4.57947
15.4959
14.4795
14.6846
15.0664
14.7533
15.1042
14.5443
15.2881
3.82588
1.33707
1.49135
4.43079
1.33136
3.89094
4.31111
14.72
14.4416
14.5719
14.534
6.95481
2.15847
8.48802
2.62039
8.64591
6.84222
2.16812
34.9873
34.2899
17.5123
14.9234
14.9958
17.3749
5.59405
4.54404
1.59119
1.73792
4.68357
1.84378
5.41608
5.45011
1.80117
4.52656
1.57284
4.58639
5.37132
1.80931
34.464
34.1277
7.18801
2.73048
8.67157
2.09122
9.01619
2.23099
6.94319
14.3903
3.21607
3.65997
11.9961
14.3212
3.71154
12.0411
15.3526
16.0087
4.10334
4.66648
4.12458
15.3721
16.0149
14.4145
3.18717
3.65631
12.1623
3.6702
12.0789
14.4624
15.3474
4.10983
15.8728
4.73466
15.2402
4.17813
16.0322
6.88622
2.19803
2.69074
8.5144
2.2207
6.86105
8.54619
5.43166
4.60779
1.59975
1.85016
4.56845
1.84341
5.49659
17.3975
14.9265
14.9523
17.3685
34.4482
35.5965
5.40766
1.83202
1.6054
4.53869
4.55402
1.8497
5.38721
6.92056
2.67252
2.21785
8.68376
2.21071
8.58626
7.01479
34.2088
34.1275
8.88794
3.06283
2.53246
12.4329
12.7142
2.56329
8.69877
7.22464
5.7274
2.24729
1.7971
7.39467
5.61311
2.14626
35.4563
17.822
18.039
34.8333
9.07023
3.12216
13.5303
2.75729
13.0258
9.32736
2.60928
7.09658
2.08961
1.77132
5.43097
5.52513
2.11194
6.9556
15.4311
3.38548
3.82072
14.5877
15.7736
3.81976
13.862
15.8105
16.1698
4.17096
4.84468
15.5351
4.28108
16.454
15.0148
3.34897
3.71958
12.4514
14.6637
3.82086
13.023
16.0344
4.23264
16.6872
4.78533
16.206
4.24982
16.5896
7.57306
2.49251
2.91831
11.8951
2.44375
8.31384
10.9843
6.77649
4.73422
1.70046
1.89899
5.41687
5.68664
1.98905
32.6435
17.4197
17.4531
33.1711
134.456
41.8054
6.23706
2.0606
1.71805
5.26054
5.03565
2.02585
6.67951
8.73713
2.84786
2.28001
8.98026
7.29459
2.38882
9.77931
1.24225
5.1264
1.14789
4.39355
1.28791
1.10651
4.98159
1.30477
1.38549
7.73125
5.19263
1.51426
6.18334
1.2055
1.42618
6.07422
1.75112
7.22156
1.68106
1.48147
5.81864
1.14967
4.54804
0.964053
4.52209
1.03002
5.23063
1.07032
18.2922
17.6365
18.5631
42.1668
22.0287
21.769
21.2047
41.96
21.6202
17.8177
18.9416
18.7123
13.7628
16.7072
13.7768
37.2194
7.47643
9.11879
38.3529
9.55937
9.58745
46.309
7.48917
39.7854
9.45856
17.7518
13.4663
14.2566
1.41106
5.2568
4.67004
1.19155
1.34017
5.37609
1.24968
1.64556
1.97357
8.20032
6.40864
1.95943
1.6565
6.39243
1.64141
6.27021
1.83767
8.28131
1.96421
1.54812
6.43806
1.41902
4.65173
5.35893
1.26694
1.42662
5.34725
1.25942
18.1008
17.6662
18.5028
38.6726
19.4718
24.0457
20.7918
38.8818
21.045
19.2967
18.1898
20.8004
2.15004
16.5381
13.9906
2.50003
2.2107
13.8358
2.40866
1.88254
1.55545
9.55398
7.66544
1.86296
9.66729
1.55998
2.22742
16.7998
13.6743
2.44186
2.18493
14.048
2.51439
1.8273
9.60936
1.54276
7.57369
1.86574
9.55504
1.52072
37.2899
38.4446
2.74073
2.65486
17.8166
18.3921
18.0877
2.6022
2.80819
3.03281
3.00748
18.8174
18.7409
18.7874
2.96325
3.09171
2.89631
18.2275
18.8317
2.64921
18.7408
2.71612
2.83006
2.82473
18.4592
17.7465
2.99462
17.9742
2.9302
2.83846
2.13915
13.8319
2.46202
16.6377
2.17397
13.673
2.42002
1.82628
1.45213
7.36538
8.57761
9.25281
1.50903
1.74775
1.80895
9.52241
1.51583
7.50262
1.8337
9.46293
1.4999
2.1747
16.6765
12.5396
2.41371
13.4005
2.49226
2.0844
39.7543
39.1321
2.6991
17.4241
2.69604
18.5043
2.57552
17.5148
2.8535
3.07149
3.06844
16.0482
18.0542
2.90542
18.0343
3.27167
2.8959
17.7666
2.6178
16.4691
2.76098
2.7203
18.0207
2.80524
18.5978
16.9158
3.09171
17.2696
2.99175
2.89169
1.14053
1.3079
4.99674
5.95526
1.14344
1.30623
4.99525
1.05091
3.85465
0.923214
4.36685
1.02073
0.978365
4.34905
1.11796
4.91237
1.2908
5.88038
1.27801
1.12688
4.94166
12.515
15.4694
12.6222
36.1941
6.79754
8.78788
35.6883
8.64032
8.49091
35.1148
6.73832
35.3296
8.55897
15.6058
12.9702
12.7481
16.5023
16.3515
16.6006
19.849
18.1706
17.3332
17.1718
19.9281
17.2356
16.4748
17.5967
16.7774
1.10923
1.22646
5.78128
4.81539
1.26673
4.8825
1.07946
1.10484
4.88608
1.26946
5.8391
1.26019
1.11025
4.89654
16.3411
16.5036
16.6639
18.0794
20.5111
17.6726
16.4549
17.2204
16.8875
17.2204
20.1933
17.4192
0.846263
0.939723
4.07487
3.76537
0.920083
3.74668
0.860714
0.847924
3.58638
4.38705
0.838926
0.920044
4.00709
0.777789
16.8162
15.0667
16.8278
18.3717
16.8131
18.1017
16.8003
16.875
16.9581
14.807
16.3373
17.4518
9.01189
13.9865
9.32569
35.9764
18.4771
5.55493
7.07214
18.5136
7.1315
35.8457
36.1473
7.0592
18.2933
5.64449
35.3879
18.5595
7.26614
13.5063
9.02413
9.10816
17.3915
17.1754
18.4422
17.3494
16.9528
17.2502
17.4398
19.4384
18.829
16.3539
16.988
17.2553
0.768766
0.682218
3.90778
3.12518
0.829405
3.59601
0.649241
0.753501
3.41038
0.796577
3.65059
0.812889
0.739065
3.39669
1.56774
11.8683
8.94635
1.92456
1.6126
8.05989
1.87182
1.33247
1.09642
5.94838
5.81534
1.26377
7.22991
1.14826
1.59767
10.5651
7.715
1.83042
1.51987
9.34472
1.89698
1.3014
7.12452
1.12492
5.29937
1.3314
6.5733
1.10891
166.048
24.2553
49.8184
40.2643
22.0077
42.5923
2.60552
17.4074
2.35374
18.6197
18.5387
2.41622
2.55422
2.68936
2.9666
19.1396
18.3294
18.5844
2.87218
2.75979
2.57499
17.5031
18.9511
2.5378
18.5115
2.73216
2.39776
2.72826
18.9768
18.4645
2.80114
18.686
2.68422
2.81509
1.80802
14.3597
9.61964
2.08799
1.74466
9.94731
2.15408
1.50746
1.35427
9.84127
6.35024
1.62333
8.22051
1.26295
1.81635
14.6204
11.162
2.2809
1.93641
10.2454
2.15009
1.49092
7.62571
1.20337
6.14466
1.43387
7.91504
1.25007
22.4544
23.8542
37.559
46.0663
157.246
37.6504
20.5266
37.454
2.3448
15.2777
2.17285
17.7707
2.14127
17.1414
2.35768
2.58872
2.72119
17.8099
17.5039
2.59268
17.5618
2.69991
2.44586
14.4119
2.15595
16.679
2.42574
2.2035
16.8291
2.46381
18.0923
17.3772
2.55763
17.585
2.46739
2.55825
0.923653
0.976474
3.91331
4.97766
0.89043
1.01635
4.3964
0.881697
4.17792
0.980251
4.57159
0.973378
0.883711
4.08389
9.20002
13.7508
9.3055
37.0549
18.6761
5.78676
7.20329
19.0436
36.2466
7.45697
36.9832
7.22456
19.1693
5.69148
37.0102
19.108
7.29309
14.3744
9.20196
9.58686
16.7571
17.3597
17.703
21.0719
19.9587
18.6818
17.2437
19.7942
18.2549
17.4797
18.7856
17.9314
0.96539
1.15262
5.16078
5.26249
1.01842
1.08355
4.56865
0.962869
4.35489
1.0403
5.13016
1.07741
0.931656
4.47343
16.6322
17.1569
17.5582
17.6401
20.8292
19.6901
17.7009
17.5403
19.1084
17.172
18.0973
17.5915
1.11779
4.32
1.75544
4.40266
1.38656
1.30318
3.75793
0.850949
0.735489
3.13148
3.22668
0.754779
3.27914
0.826598
0.885286
3.52332
0.818796
3.10332
0.772716
0.987266
3.27654
1.06623
4.11465
1.24391
3.72568
1.27554
3.72496
1.04974
24.2038
165.736
61.1178
37.5443
146.915
20.9329
21.8623
34.7177
4.97558
29.3427
6.86528
4.29966
8.24541
5.55601
4.08895
4.06804
3.44649
11.99
11.914
10.7796
3.68135
3.76471
4.35699
7.68395
10.7296
4.09039
9.3653
3.92277
4.60344
4.53684
8.63229
11.0956
3.83291
9.78324
4.13138
4.00679
45.4256
21.1737
24.8931
31.3922
23.0355
24.7784
166.047
73.3516
39.9952
19.9258
21.1405
21.5752
2.14454
14.5192
2.32001
5.27741
1.67163
3.47885
7.13845
1.97531
1.76392
8.81142
5.29885
2.33266
6.70183
1.62897
3.26022
26.1467
4.16293
21.5443
4.34228
5.06573
13.7095
1.64383
4.56642
1.35189
4.67826
1.43766
5.29391
1.46938
3.67189
6.6205
26.6084
3.04586
1.87926
17.5919
5.06428
3.78436
2.57155
10.8999
5.48275
2.13014
3.39141
21.765
2.38277
4.74623
0.946982
5.10967
1.30243
1.29555
10.9815
3.47258
7.52287
7.14848
4.18018
3.37446
5.78114
4.56001
19.5683
19.3238
18.275
18.2198
18.8243
18.2753
18.6091
17.8463
18.05
18.8386
18.6015
18.1914
0.72137
2.81164
2.75379
0.720205
0.724214
2.8276
0.717143
0.707801
0.710078
2.94569
2.9011
0.715393
2.8911
0.699651
0.725189
2.86823
0.732426
2.93347
0.730648
0.727827
2.88467
0.70286
2.75206
2.83248
0.690319
2.82939
0.698393
0.694041
18.8781
18.8526
18.7195
18.1647
18.2608
18.3881
18.6722
18.2902
18.5314
18.6747
18.4148
18.5597
19.2976
19.2009
19.3441
20.1413
19.5555
19.5815
19.5197
20.0996
19.585
19.162
19.289
19.3225
0.742831
2.57523
0.734585
2.46537
2.42929
0.739161
0.736665
0.744286
0.758116
2.12463
1.96331
2.18162
0.738176
0.762998
0.734263
2.50779
2.29998
0.721463
2.36531
0.726751
0.730474
0.753087
2.27646
2.01308
0.763322
2.23995
0.745598
0.772305
0.73672
2.79148
2.6815
0.733411
0.734454
2.75976
0.736955
0.727239
0.713101
2.79748
2.67057
0.727434
0.71408
2.74954
0.736664
2.8492
0.737617
2.86601
0.737372
0.735529
2.81872
0.727574
2.61228
2.61266
0.717639
0.715646
2.69017
0.728128
18.9253
19.1853
19.0111
18.6505
19.2618
18.9509
18.7115
18.4979
18.7814
19.3897
19.5539
19.1982
0.713607
2.65465
0.717981
2.49847
0.715302
2.51699
0.715787
0.70381
0.726816
2.35047
2.11667
2.33493
0.710387
0.715942
0.69733
2.65106
0.692769
2.51477
0.697463
2.51318
0.697502
0.718023
2.31785
2.11958
0.730647
2.33731
0.719537
0.729106
1.15814
1.67747
4.05858
4.7586
1.48707
4.26851
1.26024
0.806977
0.720586
3.18564
2.94294
0.8142
0.707157
3.1583
1.09394
3.93194
1.27108
3.80354
1.06214
1.34325
3.97273
0.812199
3.15063
2.87202
0.699219
0.70102
3.146
0.826762
2.82802
7.13632
2.06915
6.54582
6.86922
2.4241
2.40386
3.70868
4.79057
10.9311
9.14431
9.8113
4.19676
4.23231
3.21936
7.43973
10.8198
3.0815
9.06597
3.6262
2.74653
3.27948
6.07575
7.89987
3.14969
8.02247
2.76355
3.7476
42.004
22.4128
26.5412
43.6472
23.7257
27.0807
149.226
150.621
42.5604
21.0878
21.6347
22.812
21.2646
39.2643
24.2382
21.4219
26.3031
24.3614
21.5123
21.1129
22.4801
130.386
66.244
35.3965
1.80126
5.97375
1.78632
4.4829
1.58829
2.07093
5.21438
1.78141
1.77931
6.5987
5.09555
1.971
1.62822
5.50802
2.03938
7.57915
2.62628
7.90283
2.26738
2.36234
6.31244
1.59674
4.22222
1.35904
4.5195
1.47009
1.43505
4.7552
20.5129
20.166
19.6811
19.3111
19.6417
19.7889
19.9298
18.956
19.3033
20.8385
20.0314
20.286
1.57515
1.96067
5.51675
5.22741
1.40428
2.3272
6.64424
0.970617
0.779736
2.53345
3.87034
0.751705
3.61002
1.02511
0.910961
3.20532
0.707984
2.60677
0.723663
0.863005
3.38279
1.79026
5.9863
3.30836
10.3569
2.78808
8.31737
2.00582
2.0479
7.55365
5.28628
21.2051
4.82159
2.32867
6.51599
1.35627
1.2403
2.77028
3.24475
1.26398
3.51324
1.29184
1.42939
4.17314
1.33371
2.89543
1.30064
1.52715
3.7708
1.86565
18.8571
3.29544
4.94194
4.32444
5.90987
1.62931
41.4201
62.1704
21.4755
41.3404
28.0224
23.0743
20.332
25.2291
224.963
78.548
3.88845
10.4111
8.47635
5.57038
10.4036
4.94361
4.07784
3.72874
3.469
14.8416
13.7084
13.1499
3.3856
3.88352
3.59201
12.2441
14.0082
3.84492
12.2176
3.30111
4.35444
4.11944
9.55167
12.1496
4.98106
11.4834
4.40383
4.46952
4.27294
9.91314
4.8841
7.19735
4.50119
4.55368
9.147
3.82115
4.3627
12.1863
10.3856
3.55483
10.2355
4.93139
3.968
11.8281
3.74202
12.9575
3.63071
4.14583
11.1071
3.99785
6.30641
6.41454
8.42543
4.06291
8.31685
5.54579
4.44834
13.5169
6.4232
6.45758
3.37841
19.4385
4.15446
2.29703
1.7348
4.04836
13.48
1.5179
3.4208
7.38469
1.9708
5.04657
1.37553
3.57287
1.43686
1.7174
6.09981
5.15129
7.54296
34.5019
5.59945
6.51282
23.4717
4.74947
28.2365
66.3651
26.0022
18.3349
19.3746
19.9556
21.4372
18.6822
20.5495
59.7912
22.8451
24.7001
1.48599
1.76787
1.78225
1.65575
1.65595
1.7953
1.48527
1.34797
1.26259
2.02333
2.22974
1.35158
1.99819
1.25533
1.47641
1.75483
1.64267
1.80835
1.47829
1.64179
1.79451
1.35341
1.96301
2.20301
1.25141
1.98689
1.35145
1.25586
11.6614
10.0065
10.1553
8.32575
6.28752
8.24668
11.6615
10.2189
10.1249
8.16258
6.34986
8.29807
14.2055
12.2689
13.7884
15.9901
14.8597
15.161
15.3266
15.8615
14.9418
12.6654
13.7552
14.1021
13.2066
14.519
14.683
16.0146
16.7735
15.8662
13.2415
14.8852
14.7411
15.6184
16.6647
15.785
1.43849
1.71859
1.59155
1.69559
1.4365
1.7137
1.59326
1.55799
1.42446
2.26386
2.15897
2.13837
1.40439
1.57833
1.31527
1.89885
1.22024
2.07973
1.31354
1.88795
1.22061
1.75782
2.12504
2.06546
2.02573
2.04439
2.01354
1.77564
1.26106
1.54022
5.81376
3.12653
1.77413
3.39494
1.19968
1.1967
1.21307
2.99862
2.4947
1.23183
1.19812
2.85395
1.32255
6.41497
2.23028
4.0399
1.42207
1.94891
3.63923
1.17551
2.66506
2.44494
1.18189
1.19139
2.76005
1.15393
4.77634
24.244
2.14445
6.43539
21.7213
5.11533
1.90187
4.24998
3.82198
8.87072
6.10653
6.88892
4.07241
3.85301
4.49667
7.85698
9.49332
4.48326
7.39942
4.27143
4.77087
4.51816
6.09152
18.3705
1.70747
20.3016
1.82587
4.07571
225.2
59.782
66.2571
18.9206
20.5501
18.4643
16.7417
17.1576
17.375
17.7447
16.6968
17.407
20.1516
18.0157
18.2931
3.99195
34.6978
3.20225
18.8504
4.23126
6.30399
6.28563
4.22111
4.12268
11.2467
9.88382
3.94287
4.50201
9.13847
3.94344
8.43589
4.90033
10.3533
3.79399
5.47992
8.3103
4.43206
21.1836
5.18704
7.81767
4.81252
4.72687
7.16961
24.8131
19.4372
20.0127
18.9145
17.6289
18.5791
26.044
21.3077
20.5377
18.0437
17.4866
18.3248
1.11044
1.33298
2.86299
3.5501
1.13644
1.24975
2.74202
1.20896
1.30565
2.40738
2.57213
1.28798
2.57196
1.22147
1.11061
2.55124
1.15319
2.27988
1.15073
1.11985
2.49705
1.17266
3.44068
1.23649
2.73697
1.26257
2.75963
1.17548
1.13353
2.23084
2.19258
1.04148
2.25726
1.04144
1.13234
1.21333
1.31674
2.12301
2.15646
1.32531
2.19938
1.20433
1.23034
2.18715
2.13136
1.33544
1.3397
2.20938
1.2278
1.11511
2.17067
2.20399
1.01497
2.24526
1.02212
1.10641
15.5466
15.8421
15.3431
13.8697
14.3769
14.5947
15.0004
14.0587
14.7831
15.6554
14.9653
15.1647
17.2807
16.9587
17.4643
19.0662
18.5275
18.199
17.822
18.8251
18.0038
17.1123
17.8249
17.6314
0.945544
1.91035
1.02159
1.94591
1.8751
0.934861
1.03204
0.856739
0.794152
1.74437
1.74857
1.77928
0.798438
0.852109
0.869702
1.85464
1.7824
0.799061
1.81988
0.809119
0.859033
0.929775
1.89666
1.80031
1.00634
1.83078
1.01286
0.924285
15.6659
16.3893
15.8812
14.9268
15.4517
15.5678
15.1315
14.7156
15.3934
16.5323
15.9609
16.0203
0.876463
1.99272
2.09034
0.955215
0.954455
2.00855
0.878041
0.79299
0.753013
1.88558
1.91687
0.743198
1.92827
0.798319
0.80831
1.9288
1.89715
0.758517
0.756807
1.94385
0.810132
0.859308
2.0695
0.931532
1.96576
0.935686
1.98984
0.859548
1.2365
2.08192
1.1207
2.03331
1.22809
2.03969
1.13037
1.31809
1.4401
1.7804
1.88895
1.44697
1.89698
1.30661
1.35342
1.9917
1.48525
1.83605
1.4897
1.34657
1.95618
1.20738
1.97783
1.9529
1.09896
1.97795
1.10672
1.19787
1.51079
1.37086
1.81451
1.95927
1.5102
1.82612
1.37255
1.54409
1.87748
1.99816
1.40247
1.86546
1.54557
1.39962
9.69891
7.95791
7.88268
46.5282
5.6297
16.5863
5.93394
49.0098
9.53096
7.35452
7.72968
6.10606
50.1434
16.8398
6.05145
49.8899
11.4736
12.8487
12.9755
14.4605
15.1363
14.2331
11.6205
13.3285
13.1049
13.9359
14.9871
14.083
11.2031
12.7866
12.6605
13.2777
14.4542
13.5639
11.045
12.1973
12.5013
13.858
14.6182
13.7272
1.49387
1.37444
2.06476
2.17374
1.50673
2.04512
1.36251
1.65949
1.99052
1.94974
1.88214
1.67381
1.94062
1.87293
1.56162
1.90277
1.41814
2.07489
1.56403
1.91766
1.41491
1.10168
1.05857
2.29701
2.35976
2.30339
1.03334
1.11427
1.16388
1.25603
2.14624
2.08091
1.15925
1.25868
2.18669
1.0816
2.21051
2.20924
0.993757
1.07401
2.25522
1.00676
1.18415
2.27594
2.1216
1.28632
1.28133
2.2313
1.1919
1.76137
5.38571
3.36837
1.13649
6.07053
1.558
1.20339
4.85411
5.3189
7.52453
33.9695
23.4574
4.53171
6.09484
4.32818
17.8342
6.68284
3.43547
20.3911
4.05275
3.69592
2.04188
3.79361
13.0018
1.48819
7.13221
3.08056
1.28824
21.9336
18.3295
19.9822
23.7052
19.2791
20.5542
37.5045
43.411
23.8717
17.8821
18.2979
18.9
18.1899
16.9469
17.1457
16.8403
15.9525
16.6303
18.5519
17.6393
17.3611
16.3246
15.8026
16.4744
17.3249
16.798
16.6114
15.6969
15.2612
15.9281
17.0663
16.1869
16.4228
16.2265
15.4241
16.0869
1.0365
4.20885
1.05984
2.41609
0.994054
1.27654
2.98693
0.9341
0.797357
3.73842
2.05087
1.02193
0.820916
2.77134
1.31257
11.7551
3.88249
12.3073
2.06023
2.46274
4.85926
0.915061
2.19906
0.921988
2.02646
0.864016
0.946337
2.32639
1.13833
2.64607
1.08939
2.41363
1.13231
1.11101
2.47494
1.17948
1.27043
2.49991
2.30925
1.19434
1.25821
2.44649
1.12504
2.81064
1.1788
2.644
1.14775
1.12397
2.5601
1.20682
2.31907
1.30047
2.2256
1.2978
1.20657
2.36773
6.70434
28.2772
5.29888
6.66687
5.32493
9.87744
12.1641
9.96784
12.0539
9.79092
11.8459
9.72692
11.9346
12.9047
13.4433
12.8215
13.7297
12.3737
12.451
12.3679
12.4196
3.07738
3.56859
1.11067
1.01032
1.01522
3.36481
3.22714
12.5143
12.4389
12.481
12.4849
3.0784
1.02909
3.442
1.11806
3.11363
1.01991
3.38996
3.25529
3.59694
1.05456
1.16892
3.23797
1.05783
3.62428
12.8138
12.8317
12.9181
12.7194
12.5622
12.5332
12.4282
12.6888
12.6506
12.4712
12.5776
12.5307
3.18948
1.03675
1.15149
3.47765
1.04628
3.13948
3.53995
6.32476
1.89762
7.69278
2.36053
7.86927
6.1899
1.93933
32.3355
33.1329
16.0771
13.5481
13.7657
15.8179
5.0525
4.3405
1.37729
1.60408
4.24791
5.16818
1.5912
4.95113
1.57865
4.09071
1.39628
4.17034
4.85058
1.61069
31.6254
31.1284
6.46703
2.33726
8.26033
1.93529
8.05954
6.62224
1.91872
12.9524
10.8195
2.68543
3.07686
12.9886
10.7825
3.074
13.6481
13.6966
3.30565
3.70269
3.37735
13.6547
13.7496
12.9284
2.67732
10.8114
3.01433
10.765
3.06659
12.9722
13.685
3.38844
13.8406
3.71407
13.722
3.38607
13.8029
6.09204
1.85696
7.59487
2.25259
1.8518
6.11308
7.56513
4.7752
4.05131
1.32594
1.51549
4.03141
1.52862
4.79835
15.6405
13.4405
13.4006
15.6881
30.8209
30.9999
4.77681
1.54501
1.33648
4.04261
4.03126
1.53972
4.79161
30.7678
30.8678
6.08722
2.24265
1.8223
7.58884
1.84042
7.55435
6.11614
5.62637
7.24125
1.7329
2.0503
6.95057
5.83507
1.69624
28.3038
117.57
28.0097
14.7823
12.9383
12.8353
15.0435
4.3182
4.02256
1.23488
1.37871
3.75044
1.40072
4.67787
28.1924
29.4697
4.46941
1.44878
3.89658
1.248
3.81761
4.5948
1.42403
5.30246
1.99385
7.4093
1.61867
6.38535
1.65737
5.78893
13.3032
10.5527
2.58593
2.90951
12.8378
10.9153
2.95249
15.3476
14.1486
3.24807
3.77377
14.0821
3.44466
15.8637
14.1664
2.71204
11.0422
2.97902
13.3227
11.4947
3.12296
14.1873
3.1804
13.7667
3.46778
13.6535
3.22528
14.369
6.09954
7.38894
1.76077
2.17081
1.78551
5.94497
7.60138
4.92267
4.09284
1.31903
1.50502
4.13533
4.85494
1.52535
15.4821
13.0544
13.242
15.2291
31.2312
31.184
30.5453
29.9932
4.77335
1.46872
1.2933
3.94584
4.02551
1.4872
4.66651
6.31737
2.25909
1.8092
7.7137
6.20076
1.84368
7.91335
6.91381
28.2525
5.50402
6.93581
5.48683
10.0355
12.1368
9.94427
12.2496
10.1036
12.3829
10.1391
12.3318
13.0599
13.084
12.9708
13.2111
3.03121
3.30441
0.989518
1.07732
3.02968
0.990373
3.30471
13.0404
13.1436
13.1108
13.0611
3.10727
1.01687
1.09884
3.4677
1.01065
3.16681
3.39196
13.1304
13.0879
13.0382
13.189
3.04894
3.31102
0.958437
1.04739
3.03607
0.964707
3.32525
12.9903
12.7964
12.8741
12.9147
12.9719
13.0706
13.061
12.9684
3.08161
0.993092
1.06256
3.41347
0.977879
3.12473
3.36313
13.0782
13.067
13.001
13.1548
4.84474
1.40093
6.04232
1.67715
6.13744
4.77332
1.41269
15.4322
30.1093
30.5594
15.2319
13.1436
12.5667
12.6339
13.0578
4.14732
3.61473
1.10179
1.17131
3.67888
1.22187
4.06948
4.10952
1.21633
3.60301
1.10761
3.65089
4.0523
1.22519
15.3573
30.0441
30.3518
15.2307
4.89922
1.68735
6.08761
1.35222
6.22325
1.41405
4.80029
10.7664
2.02055
2.38175
7.46737
10.5389
2.41124
7.593
13.8499
13.9493
2.80072
3.18863
2.89801
13.2197
14.8887
11.2455
2.12152
2.48443
7.69839
2.54684
7.85396
10.9048
13.1079
2.68859
13.4695
2.97476
12.7551
2.72516
13.8911
4.81441
1.38979
1.66514
6.02839
1.40109
4.75604
6.1147
4.16982
3.66813
1.13074
1.25389
3.68934
1.25636
4.13652
13.1463
12.5591
12.641
13.0483
15.561
30.6747
30.8128
15.541
4.07682
1.20553
1.09689
3.5839
3.61725
1.21413
4.03368
4.9401
1.73902
1.44779
6.20391
1.45625
6.29632
4.88613
15.3494
30.0183
15.218
30.3121
5.00373
1.83541
1.57714
6.59665
6.34447
1.54711
5.17009
16.1145
36.9526
31.9325
17.5682
4.12581
3.66062
1.32984
1.1841
4.15172
3.65365
1.31668
13.7541
13.2841
13.1881
13.8679
4.88135
1.81108
6.30124
1.54908
6.18584
4.94611
1.52527
4.23431
1.35843
1.20635
3.84717
3.75185
1.33858
4.35667
16.0795
32.1438
31.6847
16.2459
11.0653
2.14783
2.61139
7.96272
11.3835
2.55846
7.78595
13.1007
13.6514
2.81856
3.11292
12.9957
2.8462
13.7702
10.8645
2.11407
2.49759
7.62892
10.7777
2.51934
7.66891
13.3568
2.95097
14.582
3.1628
13.7874
2.89014
14.0584
4.94821
1.5183
1.77158
6.40833
1.49142
5.0418
6.2788
4.13788
3.65645
1.14752
1.26298
3.67252
4.11916
1.2712
13.5797
13.1807
13.0613
13.7242
15.6991
30.6939
15.5832
30.9136
4.19047
1.31344
1.16496
3.77678
3.71672
1.29121
4.26358
4.88268
1.74335
1.45781
6.16095
4.85996
1.46766
6.19086
15.8391
31.6183
16.0303
31.212
14.9014
12.8979
15.9188
15.3681
15.9037
15.8668
15.4248
16.6285
16.7299
12.5675
15.4083
15.314
31.8876
6.29527
8.01435
31.9489
6.29824
16.18
13.9468
4.1464
4.65555
14.0997
4.85329
15.8191
16.3228
4.87613
14.2239
4.1632
16.3633
14.1838
4.87799
31.47
7.99344
5.94159
6.2642
29.8801
14.4364
11.8544
14.5313
15.5877
14.7528
15.53
14.8629
14.7206
14.9692
11.9247
14.0089
14.849
0.452804
3.0587
3.10916
0.522761
0.489661
2.8592
0.481854
0.398307
0.345529
2.64657
2.48241
0.364153
2.64125
0.390731
0.403499
3.04562
2.8426
0.405822
0.383816
2.81916
0.42619
13.4989
18.0107
14.9971
29.5754
27.3492
13.0329
15.2609
14.6236
28.7155
27.6459
13.8714
13.0213
13.3202
14.2608
14.9433
13.9851
14.1402
13.9881
13.6738
13.3853
14.888
13.6608
0.500144
0.503394
2.98645
3.54239
3.28613
0.46359
0.548844
0.533608
0.581286
3.92243
4.32506
3.55312
0.513738
0.61035
0.478778
2.89928
3.44812
0.437536
3.14105
0.447812
0.46528
0.563833
4.16974
4.76716
0.731106
3.80379
0.626506
0.651293
0.411705
2.76223
0.467309
2.77071
0.441122
2.62924
0.43395
0.401741
2.72313
2.76725
0.413285
2.61007
0.421916
0.39312
13.445
15.2282
13.7095
13.7219
13.8821
13.6011
12.9666
13.4206
13.2604
15.2117
14.3291
14.0387
0.578887
3.34997
0.568573
4.26971
0.523151
3.81378
0.628042
0.596194
0.666293
5.16581
6.15924
0.573192
4.95451
0.695041
0.513462
3.3727
0.442027
4.04058
0.492674
0.462581
3.91903
0.67017
5.23725
5.68224
0.852685
4.68611
0.726607
0.782257
18.395
4.8956
6.45985
32.4668
16.5445
5.0361
38.3073
18.8315
14.3505
4.19368
4.38838
16.5737
16.056
4.81265
15.243
4.13069
13.7715
3.78045
14.2287
14.4804
4.22172
30.1922
7.68065
5.44
29.7048
5.98821
128.947
11.1984
7.49076
10.9844
14.2857
13.7537
13.4347
13.5482
14.0624
13.2789
7.50704
11.2146
11.0636
8.09685
11.611
11.6732
14.1218
14.1481
13.7637
8.75186
12.9368
12.0452
14.0697
14.4431
13.8022
27.9748
5.61046
14.7504
4.18415
14.9812
28.1023
5.186
118.711
8.46996
6.11046
7.30169
35.485
7.1363
9.74782
6.45472
27.9339
4.51799
13.9137
4.66381
17.4004
5.59305
16.7926
13.8947
3.41201
3.89781
13.2943
13.1612
3.49505
14.3098
15.542
13.9408
3.39006
3.38028
15.218
3.59373
13.854
13.8932
3.19048
13.4545
3.11869
13.3281
13.9413
3.24595
16.1805
4.55334
3.6966
15.5539
3.97422
18.0592
14.0537
36.1225
5.82226
4.70061
15.3397
6.103
30.2548
17.1666
12.1471
9.75906
8.60985
7.39465
11.3024
7.69111
122.513
5.72219
6.49702
28.785
7.43296
28.8441
13.8483
15.4505
13.5349
15.3638
13.0616
13.1262
13.8367
15.3111
13.4901
15.8696
13.4908
13.2542
13.2159
14.2519
13.5454
14.1137
14.0804
13.8053
13.1693
13.8272
13.4621
14.5564
14.1674
13.9131
0.408894
2.70517
0.429239
2.95368
2.87187
0.390433
0.452533
0.446748
0.516138
3.29071
3.6894
3.187
0.460318
0.496993
0.411557
2.7076
2.97053
0.398389
2.89735
0.421004
0.390997
0.440328
3.19521
3.58952
0.542115
3.13494
0.489891
0.484924
0.35872
2.59497
2.61412
0.424159
0.41845
2.50888
0.373792
0.355671
2.5814
2.51858
0.378067
0.360688
2.48462
0.372417
14.2108
15.4692
14.5427
15.523
14.6937
14.8126
14.221
15.4944
14.5654
15.5309
14.7564
14.7989
0.40301
2.61356
0.402188
3.1369
0.384076
2.70813
0.424468
0.398401
0.429424
2.92564
2.93458
0.403336
2.72391
0.425006
0.37679
2.50448
0.363445
2.76513
0.381334
0.360562
2.58285
0.429424
3.42626
3.16803
0.496619
2.8926
0.455392
0.463479
14.5079
4.20353
4.73966
18.9236
15.6084
4.05171
16.8379
13.6724
13.5991
3.31757
3.48023
13.7423
13.4924
3.54825
14.0577
3.74018
14.6876
3.37716
14.8096
14.0678
3.62605
14.0061
4.5963
3.85572
15.4838
13.741
3.9482
16.0123
6.40545
8.65938
130.982
9.53716
13.2985
14.0032
12.8652
6.95078
10.8312
10.3047
12.0169
13.9337
12.3655
6.14009
8.11473
39.1887
7.74267
32.903
10.8797
13.838
11.1523
5.94046
7.27613
29.181
7.51691
30.9374
11.878
14.0087
11.4105
15.7669
15.4721
15.4538
15.0116
14.7458
15.0891
15.7005
15.3464
15.4116
15.1504
14.8131
15.146
16.0589
16.2404
16.2532
16.3606
16.4942
16.3832
16.0356
16.2077
16.2354
16.3854
16.5194
16.4034
15.984
16.222
16.1566
16.0991
16.2958
16.2015
15.9058
15.973
16.0743
16.362
16.3907
16.2893
15.8579
15.5281
15.6562
15.5949
15.4134
15.5625
15.9285
15.76
15.7326
15.3475
15.3228
15.4798
15.7551
15.4129
15.5166
15.4889
15.0339
15.3486
15.8612
15.7624
15.6394
15.0978
14.8797
15.2099
15.9607
15.9296
16.0377
16.1486
16.2159
16.1578
16.0272
16.0978
16.0932
16.0205
16.1882
16.1161
0.957789
1.03609
1.67848
1.51532
1.6715
0.968051
1.02551
0.896181
1.9518
1.82309
0.860019
1.81804
0.911687
0.841277
0.988203
1.58067
1.37939
1.06742
1.57131
0.981427
1.07108
16.5193
16.5649
16.6028
16.5639
16.5573
16.5744
16.4329
16.5304
16.5356
16.5922
16.5919
16.6252
16.1808
16.0825
15.9566
15.5596
15.2202
15.5435
16.0683
15.8267
15.8421
15.8048
15.3513
15.6643
16.5331
16.3388
16.4293
16.35
16.2759
16.3617
16.5608
16.449
16.4659
16.2295
16.2476
16.3226
14.1543
14.8686
14.4275
12.8804
14.035
13.6902
13.4987
13.0847
13.8237
14.801
14.6275
14.3071
1.23928
1.48966
1.53943
1.39477
1.50074
1.25416
1.38548
0.920847
0.840537
1.53473
1.5721
1.55323
0.852794
0.90954
1.11422
1.45712
1.45563
1.03047
1.47163
1.00973
1.13313
1.0018
1.62766
1.59742
1.08766
1.58542
0.992704
1.09353
15.3424
14.6612
15.1706
16.3386
15.4529
15.5791
15.8767
16.4755
15.7166
14.523
14.9025
15.0273
1.22983
1.46283
1.36186
1.49372
1.36058
1.23156
1.45759
1.10064
1.00107
1.40216
1.4384
1.00771
1.41611
1.09166
1.11686
1.43646
1.02191
1.4147
1.02061
1.11856
1.4302
1.20972
1.4744
1.32909
1.47051
1.33565
1.44118
1.19863
1.31996
1.6807
1.62193
1.19693
1.31952
1.61906
1.19729
13.8567
14.1648
13.6476
11.9818
12.6975
12.8032
13.1622
12.1162
12.9422
14.0354
13.4052
13.5092
41.9543
5.04639
13.0199
38.625
14.4048
15.3496
11.6392
4.4362
2.62143
15.4805
11.5397
4.37655
44.0814
5.30734
15.1662
44.6485
15.0036
15.1237
4.00105
11.2407
2.56473
14.6837
11.4101
4.25296
8.29332
5.98315
7.77373
9.94758
8.68251
8.85536
9.65288
10.3079
9.23506
5.64984
7.23166
7.38517
6.61355
7.76478
8.2819
9.93189
10.7745
9.80327
6.93505
8.73606
8.60332
9.09067
10.5187
9.5189
1.26329
1.15233
1.37383
1.39026
1.39274
1.15325
1.26254
1.27607
1.40393
1.38265
1.1546
1.40623
1.16059
1.27237
14.4533
14.2031
14.6457
16.0593
15.4278
15.3174
14.9866
15.8978
15.1526
14.3627
14.9275
14.8151
13.0175
13.4441
12.8087
10.8881
11.5622
11.7493
12.3126
11.229
12.0682
13.186
12.335
12.5166
1.1769
1.06939
1.30756
1.31994
1.07451
1.17397
1.31318
1.1661
1.29926
1.0683
1.29664
1.06712
1.16677
1.30048
13.6657
12.7727
13.0402
12.6179
11.677
12.5089
13.8331
13.3342
13.2384
11.9892
11.4386
12.2886
10.7513
11.3686
10.634
8.82236
9.35855
9.68767
9.94654
8.98287
9.85065
11.1975
10.1533
10.4675
12.8556
12.4189
12.9815
14.4997
13.9003
13.6936
13.3963
14.3345
13.5187
12.6062
13.3932
13.1625
10.8579
11.7547
11.0065
9.51908
10.7644
10.4144
10.0507
9.30365
10.2002
11.9584
11.5397
11.2175
15.4361
14.4561
44.2689
4.34931
15.6971
42.065
4.21984
11.5268
9.83792
2.24028
1.99191
11.2252
2.38481
9.98218
14.9454
13.052
26.1331
3.37152
13.8732
38.6656
3.9653
11.7314
2.50957
10.2096
2.00721
11.8876
2.45628
10.0952
5.454
7.05721
7.14385
8.59472
9.6691
8.60052
5.47517
7.15354
7.16869
8.47403
9.63378
8.57102
5.01165
6.92491
6.58651
8.0773
8.70678
7.51607
4.49915
6.5876
165.699
6.11467
8.33493
9.10322
8.00421
1.21828
1.12121
1.36187
1.35176
1.36478
1.10901
1.22563
13.7591
13.0257
13.5669
14.6701
13.9956
13.8759
14.2123
14.8047
14.0279
12.8137
13.5236
13.3914
12.8629
12.0789
12.1745
11.4568
10.5919
11.4456
12.9002
12.2301
12.2148
11.3075
10.5534
11.4057
12.4207
11.9537
11.7019
11.0402
9.70504
10.611
12.1768
11.7682
11.4295
11.1779
10.0465
10.9151
6.28624
24.9249
4.85835
6.12187
4.97696
9.12224
11.0149
9.02238
11.1757
9.28752
11.1486
9.01119
11.4907
11.5722
10.7883
11.0822
11.3656
11.6133
11.6321
11.7372
11.4677
11.7009
11.5973
11.3556
11.8203
2.65555
2.88447
0.679302
0.720673
2.66767
0.671892
2.84781
11.8449
11.5733
11.5863
11.7842
12.5802
11.9548
11.9585
12.7771
12.5004
11.8693
12.2625
12.0183
2.78249
0.707778
0.72524
2.79835
0.678623
2.6047
3.01001
4.71174
1.18838
5.85125
1.48726
6.00213
4.60238
1.24417
14.9031
29.5424
29.4832
14.9548
12.718
12.1165
12.2403
12.5645
3.99048
3.54185
0.992172
1.11409
3.54247
3.98393
1.09896
3.98145
1.0287
3.45935
0.967506
3.52916
3.89606
1.07373
14.8586
29.0297
29.4629
14.6518
4.71233
1.51157
5.95258
1.28577
5.98455
4.69653
1.26976
9.98598
7.11625
1.5914
1.96721
10.1539
7.00069
1.89256
11.9378
13.098
2.03422
2.21736
2.04814
12.0726
12.7741
9.9183
1.53586
6.84712
1.80389
6.92589
1.82734
9.89089
11.9653
2.21437
13.03
2.30484
12.1723
2.12375
12.7753
4.43948
1.14342
5.7295
1.31593
1.10819
4.51121
5.63719
3.72168
3.27107
0.842514
0.910647
3.31383
0.928589
3.67097
12.2362
11.9792
11.8209
12.4074
14.0586
27.2277
27.8305
13.7966
3.76511
0.991243
0.871867
3.39917
3.34997
0.962357
3.82339
14.244
28.6098
14.4501
28.2039
4.38608
1.2691
1.04783
5.49044
1.06836
5.57089
4.32255
3.61015
4.37489
0.890147
0.970145
4.25291
3.6994
0.850407
11.5779
13.2286
13.4555
11.3839
11.3558
11.5359
11.3357
11.5916
3.14404
2.80663
0.686002
0.724373
2.85898
0.740744
3.0867
11.7636
14.1935
13.7018
12.0802
3.20348
0.796584
2.99065
0.705876
2.91286
3.27718
0.763998
3.53979
0.937715
4.08879
0.804215
4.16453
0.82291
3.47507
7.48622
5.70476
1.30498
1.49878
7.00518
6.61878
1.53927
10.6073
12.3769
1.88572
1.99292
11.3522
1.8171
11.8578
33.2871
107.25
8.36286
1.34507
6.38522
1.67321
9.19957
5.76351
1.59518
10.004
1.74751
11.5719
1.96713
9.79301
1.776
11.5461
4.22801
4.47105
0.916903
1.09611
0.948799
3.764
5.19402
3.39842
3.15367
0.777463
0.866644
3.08748
3.513
0.847187
13.7089
11.954
13.0639
12.1123
13.4801
25.4976
13.3013
25.3024
15.6905
15.6669
12.8577
25.2956
3.66482
0.819928
0.778828
3.03811
3.2959
0.8444
3.33281
3.8919
1.12211
0.989735
5.15009
4.09747
0.96038
4.76514
4.37948
11.035
3.40103
21.7692
4.32239
3.44105
22.0313
5.57154
8.27933
5.64266
8.17067
5.5145
7.9557
5.44104
8.06786
10.693
10.4372
10.0858
11.0495
10.3434
10.0438
10.1596
10.2216
10.3627
9.6056
9.777
10.1809
10.4504
9.98688
10.5689
9.86605
10.2848
10.0467
10.1665
10.1547
10.3121
9.604
9.73472
10.1854
2.89828
0.685899
3.24094
0.75937
3.24018
2.89734
0.692227
9.95893
10.181
10.2731
9.88332
10.0533
10.2262
10.121
10.1555
2.61011
2.40433
0.586165
0.609796
2.43002
0.624177
2.58434
2.64693
0.63389
2.45011
0.598775
2.45667
2.64503
0.639491
10.0535
10.508
10.3915
10.1604
2.85114
0.736157
3.14226
0.657111
3.17918
0.673425
2.82063
4.89138
0.780128
0.947778
3.77486
4.78189
0.925258
3.83645
6.45117
9.18515
1.16128
1.28506
1.10578
7.20578
8.68951
97.4352
22.4551
22.7364
5.70417
0.788957
0.981922
4.09343
0.938626
4.47506
4.94515
5.99413
1.13564
8.33648
1.2919
5.88787
1.10304
8.41406
29.3582
12.4997
25.0194
13.8061
2.85923
0.634502
0.674358
3.20001
0.610094
2.85381
3.22414
2.81144
2.42515
0.5137
0.558798
2.5612
0.552009
2.631
10.6699
10.3678
10.7101
10.2853
12.3191
11.9514
14.0714
10.5809
2.60057
0.586058
0.52492
2.40537
2.39996
0.56121
2.60271
3.1422
0.674824
0.61471
3.33402
0.604239
3.62985
2.90876
10.7682
10.679
10.2974
11.3732
3.23057
0.934426
0.82237
3.71511
3.78185
0.826375
3.17704
10.7648
12.8752
12.5187
11.0784
2.93974
2.73224
0.706891
0.664957
3.00344
2.68112
0.715453
10.1175
9.93581
10.1078
9.94054
3.30155
0.897607
3.97443
0.78307
3.87491
3.37951
0.790825
2.88221
0.747011
0.699208
2.59623
2.63317
0.749994
2.83755
10.4666
11.9659
12.1796
10.2814
5.94708
1.10404
1.32383
4.72646
5.84263
1.33052
4.79918
8.38409
9.81662
1.33114
1.65125
7.96494
1.46074
10.1644
22.5886
23.8232
5.84765
1.02469
1.12833
4.47823
5.53874
1.23792
4.71852
8.51154
1.55175
9.96138
1.76986
8.30894
1.5675
10.286
23.849
24.0886
3.23703
0.823554
0.928467
3.74106
0.817423
3.19658
3.79345
2.845
2.50964
0.634443
0.63107
2.59799
2.74174
0.684444
10.0424
9.93712
10.0342
9.94584
10.3907
11.7665
10.2709
12.0464
2.8851
0.746861
0.685484
2.60801
2.63228
0.738991
2.85275
3.18888
0.860345
0.696906
3.56502
3.06159
0.757049
3.73285
10.3918
11.9896
10.2932
12.1039
16.8461
3.72396
3.73091
12.7149
14.8257
4.30299
13.3402
27.2833
6.26601
5.50162
28.0925
5.05084
27.1875
4.52234
7.03217
34.323
115.71
5.40952
16.1904
14.5017
3.49383
12.6554
4.25634
12.8761
14.5306
4.0123
12.0346
2.6991
2.76229
12.0765
12.3757
2.59294
11.7052
12.4718
13.2812
2.30949
2.44569
12.7973
2.36516
13.1811
12.4361
2.54925
13.0959
2.39761
12.7666
12.8046
2.45155
12.1075
2.62224
2.59477
13.0323
2.48452
11.7806
13.0737
11.6489
3.52623
3.00695
11.9312
3.3367
12.2305
11.4904
13.0186
24.7191
4.44064
3.86296
24.3801
3.567
15.3754
13.3141
4.22808
5.07302
28.24
25.5039
3.96024
14.2231
11.5962
2.81867
3.31554
13.1153
3.07655
11.5327
13.5608
11.5033
11.187
11.444
12.0853
11.1555
11.5294
11.9186
12.341
11.8219
10.8711
10.7256
11.1298
6.58561
8.88339
5.98191
24.4112
11.7513
3.48645
4.36824
4.50243
12.2372
23.235
29.4118
5.74314
3.67014
23.4231
4.76142
102.876
13.8204
8.62203
5.55725
5.71092
10.797
7.62914
8.50647
30.6864
6.42278
4.77489
6.05998
25.2581
11.3466
9.56138
9.10753
5.04063
4.4648
22.7952
5.6519
22.9768
11.3923
2.28384
2.39282
11.4297
11.6978
2.30081
11.0921
11.8136
12.4798
2.10678
2.25253
12.0218
12.2754
2.21747
11.6566
2.18942
11.9818
2.0898
11.9161
11.8151
2.20282
11.5458
2.42471
2.36211
11.766
12.0224
2.31896
11.2619
11.1433
2.81079
2.38425
12.463
11.3975
2.51364
12.4892
10.4073
10.2427
2.9191
2.57649
10.5786
2.63617
10.1363
11.0367
3.10344
3.04424
14.528
11.4653
2.73185
12.8763
10.623
2.31348
10.7057
2.38137
10.935
2.43319
10.3801
10.4966
2.52122
2.61586
11.1292
2.69432
10.7711
10.8487
10.9761
14.3715
3.25054
3.66328
11.9372
12.6673
3.11246
10.7634
2.57821
2.87217
11.5293
11.4415
2.77475
10.9684
10.5749
2.86249
3.47074
12.1409
11.9799
2.99056
10.8737
10.8347
1.97003
10.1537
2.04599
10.9143
9.8659
2.11266
9.61693
8.83794
2.03096
1.884
9.34502
1.96645
9.16392
10.761
2.03412
9.24172
2.31689
10.742
9.54777
2.19829
9.88538
1.88442
9.7616
1.84185
10.1247
1.92057
9.47916
10.1947
1.65402
1.66248
10.0188
10.253
1.59683
9.95838
10.2755
10.1393
1.41129
1.54092
9.94888
1.50799
10.351
10.2612
1.58612
9.86116
1.42762
10.3067
9.85665
1.52911
10.1878
1.64101
1.60619
10.0029
1.57469
9.94996
10.2406
9.26321
1.82937
1.72877
9.69819
1.8
9.33485
9.6316
8.89514
8.69403
2.02117
1.92681
8.59532
1.89149
8.97911
8.88228
1.91817
2.02475
8.60173
8.56293
1.90094
8.94381
9.26404
1.70946
1.81871
9.69033
1.78613
9.62938
9.33537
7.62928
8.91103
8.83151
8.74742
8.48837
8.85712
7.35263
8.61495
8.79254
8.80502
8.44876
8.80098
7.5263
4.52083
4.95432
21.6803
11.3352
4.21378
3.15441
22.4079
4.06299
10.9659
7.91756
5.37323
5.17043
20.7533
3.58932
3.07138
9.99951
3.91615
19.0737
10.5538
89.3639
5.50598
4.06874
4.86248
12.0057
9.25563
2.92714
2.62376
10.6402
3.09322
10.0236
25.6709
5.02025
3.80219
21.3232
4.02534
20.2138
3.32667
3.0538
10.3626
3.73764
19.352
12.5586
10.9389
2.01654
2.17519
10.0841
10.2749
2.10526
10.8922
10.7909
10.4974
1.77308
1.72557
10.7263
10.6037
1.87852
10.9628
1.95778
10.4173
1.90256
10.4166
10.852
2.02135
10.6682
2.00901
1.8017
10.2439
10.468
1.95524
10.4966
9.4342
2.16114
2.14251
9.45163
9.71393
2.24083
9.1562
9.51313
9.89939
2.48744
2.66375
9.81711
9.58453
2.42279
9.76535
2.14798
10.4083
2.30166
10.0886
10.0714
2.25117
9.18785
2.26626
2.61892
8.86951
9.24658
2.39781
8.88245
10.8037
2.24488
2.14314
9.85081
2.32559
10.8386
9.59184
9.82119
9.13316
2.09646
2.34746
9.37045
9.67585
2.20255
10.0567
2.05713
1.99235
9.9737
9.67654
2.10986
10.289
10.8303
2.24128
2.66557
9.30538
11.125
2.46137
9.33919
13.8086
2.53096
2.54504
13.581
13.6333
2.48032
13.7847
13.7769
13.6245
2.33136
2.39829
13.6911
13.7332
2.387
13.7627
2.4306
2.32765
13.6637
13.6942
2.39393
13.7291
13.838
2.4912
13.7586
2.45592
13.7125
13.8266
2.45094
14.4626
3.04208
12.8093
2.78573
14.1485
3.25895
12.6172
18.8284
105.463
4.9143
4.88566
30.5621
4.09944
30.3013
15.925
3.26259
16.0359
4.07702
14.9024
18.9339
3.56619
15.4374
2.98941
4.13192
13.0901
3.6254
12.5961
18.1965
13.7948
2.59713
13.5519
2.80692
2.66415
13.7831
13.5554
13.7358
13.694
2.4988
2.6747
13.6721
2.59211
13.7881
13.724
2.48089
2.44528
13.6583
13.6639
2.52601
13.7225
13.8406
2.99815
2.92938
14.1025
2.77773
13.6491
14.0133
14.2233
1.98517
1.68188
14.0275
14.2639
1.71379
13.9974
14.0233
13.8732
1.76302
1.75592
13.9919
13.8909
1.75216
14.1759
1.9645
1.74726
13.9377
14.1206
1.73215
13.9711
14.0394
1.70955
13.8678
1.7424
14.036
13.8894
1.73771
14.4131
13.1194
2.74023
3.98304
13.5556
13.0338
2.96144
27.9516
4.78968
4.25554
3.7407
96.0709
14.2163
2.86193
16.7027
3.91028
12.2233
3.17682
26.9569
21.9241
4.76864
22.713
3.859
15.3695
3.37385
77.9203
12.8021
2.8454
13.1043
2.57485
2.47607
13.1832
12.7542
12.1999
13.338
2.3651
2.60041
12.4323
2.40947
13.3425
12.9014
2.64601
2.35623
13.3344
13.0006
2.40153
13.2662
11.9636
2.63882
2.77374
14.2834
2.51099
11.8445
13.5414
9.07209
5.40739
6.88509
8.68447
6.09375
105.207
6.54009
10.5419
10.4822
8.70381
104.628
4.52186
5.02572
15.4343
29.6487
6.33428
30.5155
5.3988
8.48022
6.91702
5.00975
7.08908
6.2562
4.87948
27.9998
4.83993
97.5764
97.6732
4.99059
8.95894
8.47216
8.0047
28.2624
5.21255
5.15349
4.23165
95.3096
99.0415
14.8526
13.7611
2.84721
2.82777
14.026
14.0137
3.06221
17.298
4.25962
3.19053
15.9148
14.7744
3.56072
24.8473
17.4581
4.00628
3.08254
17.4178
14.8827
3.44709
28.0147
9.40358
10.5582
9.82282
8.52593
8.91102
9.4055
8.59947
8.08534
9.03016
10.8424
9.74047
10.1494
11.2924
10.4695
11.1314
12.2632
11.3611
11.5613
11.9341
12.466
11.7674
10.2372
10.6848
10.9155
9.19735
9.77803
9.02769
6.98318
7.58525
7.95325
8.39866
7.2872
8.2293
9.53406
8.45219
8.77107
8.81424
1.60111
1.47703
9.67613
8.72956
1.50855
9.83119
8.02198
7.23886
1.56231
1.56875
8.10032
7.17531
1.53849
8.9256
1.69686
1.59272
10.2893
9.0443
1.5447
10.0327
7.94134
1.50019
7.0616
1.55412
7.88218
7.11027
1.51885
11.7991
10.637
2.24497
1.46686
10.3366
12.528
1.83052
13.0296
14.7825
4.75335
1.90581
2.35442
17.3482
12.1837
14.5728
4.58583
49.4951
9.56033
17.0209
3.24038
27.5709
11.2394
1.38089
9.79425
1.42302
10.0232
1.57291
10.8658
15.0416
2.02382
10.9685
2.99241
3.78743
11.3529
13.6766
51.0629
25.89
5.07929
152.417
16.3694
16.5282
2.31513
8.48692
12.7552
24.4571
4.59122
11.8498
39.9553
9.07076
4.28391
149.574
13.3377
26.2091
10.3212
9.42318
10.1658
12.0274
11.6963
11.3528
10.9619
11.5969
10.8878
9.99146
11.0809
10.6821
7.10273
8.13412
7.03722
27.6204
15.3866
24.8529
49.3355
4.63242
145.355
5.9425
25.2883
148.505
5.83853
7.12559
5.82725
5.96661
8.64976
8.03896
7.77133
8.23885
6.36205
7.54657
9.27632
9.06682
8.47536
6.94609
5.56963
6.73787
11.5033
1.41622
12.1675
1.41324
11.9687
11.6503
1.38427
10.8986
10.345
1.31572
1.34951
10.434
1.3573
10.8011
11.0189
1.37934
10.6506
1.3163
10.5417
11.1455
1.35966
11.3711
1.39098
11.695
1.36621
11.8113
1.37658
11.2659
17.9605
13.3139
3.00377
2.44046
15.2804
14.1781
4.56416
128.322
4.79897
4.44745
22.445
45.6747
7.90451
39.8387
3.34528
24.3786
13.8062
27.8493
3.41712
18.4044
14.9586
15.7557
9.37135
49.2803
12.0063
1.45487
12.414
1.75734
1.51798
11.8011
12.7765
11.6188
11.3213
1.37129
1.57224
11.0385
1.46194
11.9465
11.4123
1.3969
1.35388
10.7491
10.8682
1.42513
11.2634
12.2997
2.05238
1.82681
14.2583
1.61434
13.3407
12.7626
7.54001
1.28688
8.29317
1.29622
7.54176
8.28872
1.32796
7.49791
6.50002
1.67862
1.92844
7.21979
1.79367
6.80504
8.17893
1.56524
8.62279
1.58653
7.925
8.85637
1.67361
6.78989
1.334
6.04101
1.40477
6.79277
1.36773
6.03533
10.2351
9.20365
1.22721
1.19506
9.34362
10.0709
1.22691
11.3073
13.2633
1.63079
2.00019
11.6368
1.47418
12.4777
10.4098
1.24822
9.60386
1.32689
9.48241
10.5871
1.26543
11.0519
1.31508
11.6028
1.72805
10.8401
1.37942
11.9619
9.88702
1.23995
9.06269
1.19635
1.21191
9.04829
9.91595
10.9388
11.23
1.38814
1.54697
10.7318
1.42548
11.4436
10.2886
1.46882
1.35615
9.30662
10.0682
1.39273
9.52839
10.6093
1.29543
1.46431
11.3359
1.29392
10.6618
11.2171
6.01154
24.4433
142.092
5.84612
6.87154
5.71148
5.94367
7.14962
7.99059
7.01059
15.2873
28.4712
24.1159
140.84
49.7634
4.66472
49.3499
143.269
4.66154
9.70918
28.0265
15.3152
27.7738
17.5621
15.2615
3.43853
49.1252
15.0595
9.62781
144.174
5.81582
4.63738
24.6674
17.8383
3.51653
12.7426
2.53322
13.5671
15.3083
4.90959
15.5983
49.4495
9.74953
4.97646
3.59468
28.2231
18.0736
12.8192
11.7451
1.78192
1.67305
12.4221
12.0046
1.95787
14.3329
5.06339
2.22456
15.9358
13.4674
2.7155
18.5318
13.0582
2.62046
1.67742
12.2125
11.932
2.17363
13.8072
3.7536
10.4994
3.34386
19.9474
4.09293
3.06617
19.9338
5.04265
7.77745
5.27852
7.42676
4.59419
6.05265
85.8902
5.28356
6.80566
9.52007
7.78481
7.82188
9.48561
10.0262
10.0825
10.0534
10.0644
9.54837
7.99847
7.86788
9.60905
10.066
9.49701
10.2042
9.23153
10.1327
10.0745
10.0711
10.106
9.89479
8.28146
8.77276
9.71091
2.89629
0.648627
3.14676
0.729678
3.22723
2.83969
0.666645
9.89125
10.107
10.1888
9.81951
9.99582
10.1638
10.0991
10.0348
2.61875
2.39016
0.568011
0.595577
2.43006
2.57208
0.605323
2.65231
0.602257
2.43333
0.578262
2.46316
2.61163
0.617364
9.959
10.1871
10.2524
9.9588
2.85963
0.713595
3.12518
0.641784
3.18717
2.80621
0.652743
4.62778
3.47015
0.744998
0.883574
4.23097
3.78801
0.857867
95.2854
13.724
10.4006
11.2726
12.1793
5.07533
5.8559
0.927856
1.20015
1.0042
4.76151
6.22192
22.5206
11.9319
22.5151
13.9806
3.99177
0.735245
3.21006
0.78106
3.37073
0.842035
3.76866
5.86176
1.05403
7.39924
1.1964
5.09604
1.01866
6.67387
2.98392
0.619646
3.04112
0.665023
0.616228
2.77528
3.29992
2.5506
2.31812
0.54015
0.545734
2.40103
0.57386
2.45929
11.5227
10.5203
11.3887
10.4126
10.5714
10.04
10.6607
10.0577
2.73905
0.577863
0.541956
2.41372
2.54834
0.576001
2.5726
11.7321
10.5325
10.3399
12.2578
2.74746
0.660005
0.581117
2.87251
0.613278
2.99815
2.64121
2.55276
2.78501
0.53789
0.579201
2.77959
2.56896
0.542498
9.65667
9.58468
9.61751
9.61892
9.80128
9.96568
9.95042
9.82855
9.65143
9.62468
9.59997
9.68228
2.57293
0.593188
2.81207
0.553927
2.80543
0.555505
2.57669
3.63492
3.12849
0.63498
0.71856
3.66198
3.10871
0.717142
23.0383
23.0965
11.5551
10.0499
11.6691
9.96128
4.55981
5.65003
0.869596
1.02856
4.58468
0.858916
5.62526
11.562
9.95559
11.5703
9.96126
3.61581
0.640793
3.10778
0.73313
3.63479
3.09409
0.724255
4.58861
0.85321
5.73172
1.01792
4.62959
0.850113
5.6682
2.57164
2.80559
0.540749
0.577757
0.542244
2.58153
2.79126
2.38736
2.25838
0.486005
0.51913
2.2489
2.39527
0.514555
9.8702
9.94683
9.97236
9.84486
9.75473
9.76532
9.82044
9.68996
9.7461
9.67177
9.72443
9.68699
2.39842
0.523881
0.484789
2.27243
2.25917
0.511949
2.41364
2.56137
0.582443
0.55141
2.78944
2.56997
0.546134
2.77916
3.3724
8.98785
2.93161
10.5797
3.41568
2.89522
10.4797
4.26263
20.8277
5.2697
4.22217
5.32267
20.9904
4.31588
5.46815
21.4012
4.37434
5.38855
21.1996
9.45822
7.74375
7.7685
9.43416
10.217
10.923
10.7104
10.2939
9.68726
8.16484
7.92938
10.0588
9.50917
7.68789
9.3989
7.77455
10.1447
10.4834
10.3725
10.222
9.62008
7.99778
7.86643
9.808
2.18003
0.410806
2.4384
0.393811
2.33694
2.26982
0.373837
9.23985
10.1379
9.07144
10.1111
9.23106
9.50109
9.43311
9.32033
9.02133
9.00236
8.8546
9.13777
2.07968
0.324832
2.28436
0.259243
2.21408
0.309344
2.12529
3.03386
0.482638
0.513628
2.70317
3.00229
0.522519
2.72909
11.0625
21.936
10.9366
22.201
3.53807
4.41501
0.584881
0.682006
0.584981
3.5002
4.47095
9.50472
9.23622
9.22519
9.4974
3.02087
0.477676
0.517182
2.69503
0.516592
2.71729
2.99265
3.55225
0.581577
4.4321
0.691007
3.51093
0.592133
4.489
9.49324
9.11066
9.39145
9.20592
2.32583
0.421164
0.451132
2.48343
0.428079
2.30669
2.50569
9.49305
9.5896
9.66074
9.42061
9.34177
9.27038
9.2427
9.36423
2.31713
0.446972
0.426821
2.47835
0.424444
2.49559
2.30403
9.32408
9.12454
9.24791
9.21397
2.47791
0.554922
0.520509
2.88237
2.66258
0.522996
2.65688
9.45457
9.44486
9.36449
9.50114
10.0092
10.9415
10.1629
10.9559
2.47805
0.557821
2.75006
0.534598
2.68463
2.5271
0.524646
9.87181
11.2511
9.80295
11.0409
3.14955
0.554263
0.627633
2.88139
3.22492
0.603193
2.8266
11.8267
28.0844
13.118
23.8461
3.63873
4.46715
0.619851
0.775733
3.54504
0.662645
4.58688
9.84002
9.36085
9.62757
9.54649
3.10697
0.535791
0.546612
2.72995
3.03171
0.582019
2.79322
3.69641
0.719164
4.82714
0.804095
3.81147
0.687597
4.6585
10.0849
10.2204
10.7825
9.74044
2.42254
0.502897
0.515931
2.64091
0.488483
2.46784
2.5948
9.94353
10.3934
10.1054
10.2615
9.64841
9.3978
9.48555
9.57239
2.39086
0.499271
0.447982
2.51062
2.33609
0.472867
2.56579
9.81195
10.146
10.1703
9.74715
10.9078
1.88034
1.93923
10.5545
11.0197
1.98347
10.3177
9.54754
8.64373
1.86608
1.81462
9.19786
9.01407
1.83492
10.7829
1.91337
2.08719
9.74723
10.6661
2.03079
10.0454
9.87197
1.79104
9.67991
1.7794
10.1528
9.36507
1.81199
10.6799
1.62781
1.66976
10.5077
10.6133
1.60186
10.6285
10.3734
8.27916
1.40152
1.45042
8.72867
1.56876
9.89751
10.3006
1.54689
9.34452
1.37532
10.3814
8.92508
1.51833
10.9213
1.76113
1.54197
10.3844
1.67343
10.9904
10.394
10.1429
1.76788
1.70705
10.2692
1.72604
9.97991
10.4144
10.6245
9.34499
1.90144
1.67782
10.4646
1.87453
9.66489
9.82258
1.79439
1.75311
9.28161
9.46495
1.73939
9.64665
10.7742
1.81245
1.66965
10.195
1.84682
10.9007
9.9514
15.9533
2.02974
10.5542
2.62378
16.9263
8.53558
2.49229
3.60988
5.31288
3.56656
16.1849
2.24834
8.74625
2.90154
17.3508
8.4585
2.8434
3.38619
4.55735
77.6502
3.06181
7.54537
1.52663
1.52472
7.66344
7.15714
1.45581
7.95807
8.47984
9.93296
1.44204
1.61503
1.45235
8.90765
9.69706
7.99838
1.45949
1.39484
8.80085
1.40551
8.36958
8.46267
8.05172
1.5465
9.33926
1.68416
7.65445
1.49009
9.48531
7.88723
1.77403
1.75855
9.46215
1.65577
7.7361
9.35372
8.01654
8.49579
1.65751
1.61002
8.08247
1.65071
8.46109
7.63404
1.91911
1.77248
7.67955
7.72049
1.76262
7.53681
8.28686
1.65564
1.54231
9.79099
1.56865
9.52169
8.74839
10.2478
1.4317
1.4701
10.6603
10.5609
1.41025
10.2609
9.59221
8.01967
1.20404
1.3613
7.99799
9.60598
1.34699
9.72398
1.34711
8.21958
1.19113
9.95139
8.0835
1.3313
10.0784
1.49428
1.44475
10.0614
10.0851
1.42965
10.0594
9.56206
1.48287
1.47044
10.0416
9.83555
1.46322
9.79496
9.63363
10.1747
1.45858
1.56471
9.31533
1.48621
10.367
9.24572
1.47126
1.41461
9.1877
8.89686
1.44165
9.50646
9.90618
1.51255
10.6356
1.56865
10.137
1.5074
10.5137
9.79605
1.50905
1.56816
10.5542
1.52648
10.0605
10.402
9.21525
8.87729
1.58482
1.58743
9.23401
8.85073
1.57527
9.54535
1.53892
1.57257
9.83738
9.55732
1.56176
9.83112
9.48429
1.58099
1.53339
10.0208
9.13435
1.53193
10.2197
10.2511
1.11672
10.289
0.997081
10.2541
10.1958
1.01981
9.99887
9.53286
0.825487
0.640432
9.87791
0.8239
9.6561
10.1459
1.13164
9.81752
1.04468
9.99503
10.0212
1.03531
10.0574
0.810445
9.61266
0.645884
9.98671
0.822477
9.71142
9.89423
1.02818
1.10475
10.4417
9.77508
1.04797
10.5687
8.05487
5.46455
0.808396
0.93525
5.54772
0.941257
7.88369
8.10863
0.938457
5.49928
0.820391
8.00529
5.57317
0.9569
9.80381
1.07967
1.01884
10.0776
1.02792
10.4428
9.53255
10.5581
1.13115
1.12813
10.498
1.1486
10.4068
10.6484
10.1925
9.25047
1.12312
1.08749
10.0015
1.1212
9.55462
10.4183
1.14289
1.16629
10.0895
10.2665
1.16289
10.2576
10.3739
1.09758
1.08561
10.0739
1.11186
10.5119
9.84091
6.98877
1.22509
7.52574
1.42043
7.1713
7.4165
1.2484
8.41744
6.48575
1.20447
1.5386
6.56068
1.40668
9.24411
8.42057
1.30192
7.37211
1.14697
6.93612
8.6335
1.32306
6.77277
1.55179
8.27625
1.46807
7.16339
1.32925
7.37349
7.98907
1.30464
1.42206
8.97135
7.55511
1.30451
9.21027
8.08308
8.95902
1.41476
1.31577
8.57557
1.31845
8.50539
7.64524
1.35251
7.78818
1.44728
7.20324
8.18085
1.33118
8.4097
1.41015
1.31651
9.69528
1.30827
9.45491
8.80781
8.29156
1.22405
1.33122
7.93749
1.23966
7.86242
8.34374
9.39048
8.95279
1.16759
1.30558
8.59873
1.30389
9.62842
9.14062
1.29604
1.15735
7.80469
8.21551
1.30133
8.88547
8.6918
1.33184
1.26772
9.09292
1.25391
8.73119
9.06018
9.76749
1.26284
1.28229
10.2883
9.83478
1.21452
10.2617
8.14099
5.52146
0.923729
0.999028
5.66695
7.94108
1.07974
8.15698
1.15537
5.90225
0.953112
8.30477
5.72938
1.109
9.82873
1.25761
1.09323
10.1047
9.57668
1.18716
10.4016
9.82768
1.40087
1.42244
10.4867
10.0418
1.38693
10.3694
9.30443
9.33499
1.41907
1.31859
9.66441
8.92055
1.34888
9.59597
1.39337
10.1249
1.44008
9.8423
9.91263
1.37987
9.54931
1.40025
1.32461
9.93679
9.19173
1.35262
10.1763
10.0259
1.31394
1.36464
10.226
1.30683
10.2139
10.0454
10.0783
9.27925
1.17813
1.30146
9.58177
9.85497
1.29388
10.2914
1.29237
1.1782
10.0886
9.8683
1.29739
10.4303
9.73028
1.33911
1.27592
9.43322
9.40281
1.28251
9.76029
12.1774
1.7574
1.75204
12.3129
12.2499
1.75071
12.237
12.0279
11.8444
1.70667
1.74483
11.9075
11.9676
1.73686
12.0778
1.75631
1.71856
12.0163
11.9573
1.74748
12.1374
12.1263
1.74304
12.1361
1.75135
12.1956
12.0675
1.74204
12.5437
1.76594
12.431
1.75374
12.4886
1.75577
12.4812
12.6362
12.6825
1.71746
1.69631
12.6597
1.72967
12.661
12.5944
1.76335
12.5683
1.74182
12.5396
12.6213
1.75099
12.582
1.73514
1.70615
12.5387
1.73688
12.5189
12.6048
12.3337
1.75671
12.3705
1.74917
1.7479
12.2913
12.417
12.2616
12.1611
1.71625
1.71219
12.1468
1.73677
12.2699
12.2336
1.7578
1.72807
12.0714
12.1162
1.75134
12.1911
12.3615
1.73172
1.70312
12.4619
1.73076
12.4478
12.372
11.2585
1.43167
1.41554
11.2502
11.1567
1.4682
11.349
11.2348
11.2061
1.55734
1.53024
11.2867
11.1541
1.52818
11.3338
1.47209
1.53761
11.4721
11.3828
1.50784
11.4229
11.158
1.43759
10.9701
1.49223
11.0559
11.0752
1.48935
11.0715
11.1901
1.2577
1.20537
10.9804
11.2879
1.20913
11.0211
11.0545
1.30601
1.17331
1.21937
11.2622
10.7926
11.2404
1.29297
11.659
1.34159
11.4559
1.25378
11.46
10.8383
1.16938
10.4966
1.13205
10.7374
1.17522
10.6014
11.5373
1.38454
11.3315
1.32163
1.37925
11.429
11.4454
11.7718
11.9867
1.50403
1.54532
11.8129
1.46608
11.9571
11.6094
1.42721
1.45919
11.5527
11.6584
1.42422
11.5032
11.7067
1.35724
1.49511
11.8178
1.4179
11.6218
11.9037
12.5163
1.53213
12.3111
1.55268
12.3827
1.55714
12.4455
12.6475
12.6926
1.5773
1.65279
12.6452
12.671
1.59835
12.5545
1.53468
12.4224
1.54353
12.4281
12.5414
1.55322
12.6045
1.61151
1.66492
12.5378
12.6126
1.61144
12.5247
11.7813
12.0657
1.45723
1.43787
11.8993
11.9606
1.42029
11.4926
11.2707
1.39088
1.31686
11.465
1.37947
11.281
11.6887
1.46292
11.829
1.42842
11.6489
11.8744
1.4258
11.5867
1.39007
11.5119
1.30798
11.7137
1.37233
11.3749
12.2737
12.23
1.55185
1.48931
1.55308
12.3659
12.1401
12.2266
12.155
1.67748
1.62315
12.258
12.1281
1.62949
12.3299
1.61199
1.66517
12.4568
12.361
1.61386
12.4344
12.1784
1.50319
1.57056
11.9883
12.0849
1.571
12.0529
10.8856
1.33774
1.35697
11.1765
11.3105
1.35334
10.7463
10.557
10.2008
1.28762
1.34724
10.1162
10.6483
1.33987
10.441
1.31987
1.27782
9.87473
10.006
1.33539
10.3062
11.0065
1.36151
11.5305
1.36467
11.4319
11.106
1.35733
11.7407
1.29429
11.4346
1.31237
11.8251
1.2917
11.3511
12.1962
12.4089
1.36378
1.31281
12.5216
1.31421
12.0779
12.1583
1.27559
12.5965
1.33115
12.2419
12.511
1.27186
11.8074
1.37965
1.34263
11.3179
1.34548
11.4493
11.6834
10.5041
1.3234
11.0304
1.32655
1.32478
10.5947
10.9457
10.2988
9.7348
1.37258
1.39948
9.92209
1.42445
10.1367
10.0643
1.30418
1.23319
9.71728
9.63006
1.3055
10.1522
10.6847
1.40942
1.41206
10.9387
1.42549
11.0815
10.5341
5.47737
1.21509
1.28107
6.06291
5.4271
1.28806
6.12009
4.93315
4.46854
1.40845
1.42133
5.09595
4.32418
1.36764
5.56845
1.22556
1.33714
6.40232
5.74513
1.29886
6.21579
4.85365
1.34301
4.21638
1.40432
4.81192
4.25519
1.35354
7.19299
6.62514
1.09169
1.1298
6.55522
7.26804
1.08085
7.7634
8.28221
1.09421
1.02761
1.03211
8.31735
7.72893
7.86443
1.0659
8.49336
1.11626
7.94095
1.05281
8.41691
7.09109
1.10907
6.43067
1.06019
6.45999
1.06179
7.05708
7.39303
1.15224
6.68006
1.09679
1.10254
6.741
7.32623
8.18265
8.9451
1.12388
1.15822
8.38918
1.09034
8.7404
7.5005
1.16204
1.14407
7.03604
7.70405
1.11226
6.84128
8.07049
1.07237
1.14701
8.55334
1.07986
8.00038
8.62513
11.1568
1.26376
10.6843
1.2967
11.0767
1.26848
10.7652
11.6949
12.2092
1.29984
1.27564
12.0446
11.8645
1.24667
11.5748
1.23765
11.8446
1.29572
11.4942
11.9265
1.24267
11.2783
1.30075
1.30211
11.072
11.4538
1.27255
10.888
9.72959
10.2085
1.31528
1.30063
10.1301
9.80376
1.30112
9.23981
8.75225
1.16379
1.22031
8.78725
1.23011
9.20592
9.3332
1.27062
8.96184
1.18685
8.88559
9.40622
1.25374
9.6415
1.28316
10.0039
1.26864
10.0381
1.27876
9.61275
9.94081
10.2746
1.31785
1.31724
1.32151
10.3557
9.86602
9.64676
9.4109
1.33545
1.23214
9.83928
9.20955
1.29818
10.0604
1.32223
1.35835
10.6734
10.253
1.32685
10.481
9.53315
1.27766
1.22039
9.02077
9.09355
1.28708
9.46335
8.1499
1.10238
8.65902
1.13067
8.5569
8.25341
1.10295
7.62059
7.09891
1.0158
1.04867
7.16781
1.0599
7.54858
7.71427
1.06961
7.36041
1.02379
7.25849
7.81766
1.06736
8.05425
1.12508
8.38521
1.08433
8.46084
1.09626
7.9795
9.56995
9.1075
1.07874
1.1094
9.46772
9.21364
1.08272
10.1716
10.816
1.12467
1.17284
10.5363
1.09627
10.4687
9.96728
1.05593
10.2331
1.08672
9.86567
10.337
1.06068
9.7734
1.14837
9.7087
1.20359
9.41178
1.11992
10.0724
8.4465
1.08276
8.74676
1.11008
1.09021
8.34341
8.8509
8.21237
8.11442
1.0642
1.19961
7.74829
1.10214
8.56071
8.00866
1.05434
1.02614
7.45206
7.54799
1.06201
7.90844
8.64903
1.15285
1.23025
9.35775
1.13217
9.04695
8.98032
4.81339
1.14721
5.59165
1.24019
5.01413
5.38427
1.19272
4.08994
4.20513
1.75455
1.21873
4.77967
1.19578
3.49477
4.67284
1.13334
5.8309
1.63343
5.31551
5.24771
1.16876
4.24287
1.28201
3.86438
1.26593
4.44325
1.22953
3.66485
7.22214
6.38413
1.22542
1.11882
6.61505
6.99472
1.16857
8.00351
8.386
1.09211
1.1972
7.8444
1.14949
8.52921
7.35324
1.26164
6.56866
1.13409
6.75466
7.18271
1.19932
7.87965
1.07696
8.19939
1.17347
7.65517
1.12263
8.41466
6.58117
1.09139
6.18208
1.07869
1.04562
5.97229
6.79117
7.12951
8.04928
1.23094
1.05925
7.54839
1.00518
7.68635
6.4647
1.08224
1.30966
6.37513
6.93609
1.03954
5.84638
7.24001
1.03962
1.06089
7.99805
1.00918
7.44988
7.79429
10.3417
10.0973
1.23919
1.25228
10.5008
9.9337
1.21987
10.6744
11.048
1.24921
1.24857
11.0326
10.7156
1.20249
10.7678
1.21011
11.2729
1.23889
10.9192
11.128
1.19205
10.2429
1.26334
9.95614
1.28986
10.3181
9.83896
1.23239
9.69677
9.88668
1.35273
1.29465
10.055
9.52225
1.33423
9.39528
8.84259
1.26572
1.25379
9.28246
8.96867
1.30846
9.78204
1.35959
10.0547
1.30964
10.1375
9.67953
1.34899
9.29989
1.24803
8.65967
1.23296
8.86375
9.109
1.29032
9.16456
9.7172
1.26455
1.26156
1.23085
9.54843
9.34546
8.633
8.46724
1.31263
1.12199
8.88183
8.16442
1.1832
9.06994
1.2691
1.33874
9.62066
9.27165
1.23346
9.45974
8.73144
1.21312
1.1219
8.46427
8.26808
1.18173
8.92113
2.95403
7.82263
2.50476
8.97855
2.90088
2.54453
9.11054
3.84363
19.226
4.93278
3.94438
18.8512
4.79774
3.76863
4.60192
18.1678
3.69163
18.5378
4.70206
7.41099
5.06892
5.36549
7.36517
8.52083
8.70826
8.62998
8.69996
7.68448
6.42232
5.92579
8.05606
8.62202
7.25295
8.90992
7.03736
8.86187
8.77126
8.74994
8.86551
8.44483
6.74089
6.89215
8.30372
1.85132
0.202617
1.90995
0.223436
1.95824
1.80577
0.213751
8.88607
9.10224
8.70766
9.25384
8.94539
9.03107
9.1584
8.81038
8.72337
8.38073
8.53589
8.57895
1.87716
0.228439
2.0431
0.224529
1.99065
1.92251
0.218226
2.01941
1.9609
0.190166
0.210671
2.11326
1.88089
0.199156
7.65948
9.12192
7.90199
8.7574
7.88195
9.55548
8.08846
9.57156
2.09886
2.66691
0.219903
0.216243
0.197387
2.34452
2.39152
7.60615
7.95911
7.79004
7.80149
1.92787
0.177839
2.00524
0.20655
1.81227
0.184533
2.14515
2.22573
0.228889
2.73099
0.239985
2.34003
0.215666
2.58112
1.67258
0.18415
1.83669
0.182106
0.175108
1.7351
1.76733
8.54407
8.88385
8.79312
8.6481
8.55235
9.58146
8.33046
9.60896
8.28079
8.18436
8.40004
8.04677
1.6387
0.171685
0.186575
1.90102
0.166228
1.71621
1.81584
1.62033
1.701
0.211393
0.210832
1.66693
1.65015
0.204005
8.39603
9.062
8.20823
9.11417
8.34081
8.55477
8.55014
8.35197
8.10816
7.94163
7.9015
8.13345
1.6178
0.202339
1.76086
0.188777
1.65523
0.196107
1.70484
1.92354
1.80949
0.263147
0.256504
1.88126
1.85028
0.27344
7.58615
7.53028
7.43759
7.69906
8.00072
8.61836
8.44171
8.19411
2.12646
2.41118
0.291874
0.339889
2.16736
0.312297
2.34952
7.7553
7.83549
7.61855
7.96232
1.98162
0.279486
1.91898
0.272293
2.01161
1.90239
0.291733
2.05581
0.27232
2.20829
0.314779
2.00897
0.291057
2.26289
1.7394
1.74991
0.230115
0.253177
0.244254
1.69767
1.79072
8.53366
8.62227
8.72074
8.42971
8.54279
8.79104
8.93896
8.38099
8.33122
8.04106
8.22054
8.15892
1.78648
0.267838
0.240504
1.84786
1.78855
0.257373
1.83958
2.36064
7.08588
2.17638
7.3531
2.3897
2.15033
7.26506
2.76153
8.46649
3.51696
17.1815
2.78264
3.48395
8.44766
2.7697
3.54039
8.58829
17.2474
2.80551
3.49476
8.48716
6.80149
4.77276
4.61913
7.01262
8.05852
8.38723
7.94922
8.49562
6.67434
4.45687
4.52611
6.57992
6.40143
4.3956
6.48594
4.34892
7.75783
8.29908
7.86441
8.18481
6.42652
4.42249
4.36364
6.51292
7.5024
7.35553
7.28231
7.54279
7.72396
7.93599
7.87666
7.77757
7.52577
7.34056
7.29102
7.57629
1.4009
0.141998
0.144024
1.36733
1.39683
0.145076
1.37015
6.80727
6.45075
6.69482
6.56756
1.45868
1.70699
0.15976
0.153132
0.148819
1.61853
1.51967
7.31851
8.14207
7.5198
8.05979
1.41768
0.141755
0.155369
1.5149
0.14491
1.38649
1.55978
1.43993
0.147489
1.48364
0.15282
1.43322
0.148814
1.49517
7.04475
7.15609
6.93587
7.26263
7.93517
7.99316
8.0902
7.83556
7.95839
8.26811
7.74325
8.39832
7.73703
7.39958
7.63532
7.50411
1.42387
0.140472
0.167961
1.49232
1.46539
0.13771
1.45553
8.13881
8.3191
7.94352
8.48709
8.19354
8.29642
8.39624
8.10527
1.46764
0.153422
1.58274
0.164716
1.51096
1.54116
0.149027
7.96414
7.6801
7.76058
7.88184
1.63454
0.222908
0.205272
1.57776
1.61748
0.231114
1.59168
6.89844
6.77407
6.9639
6.71961
1.64083
1.6294
0.203899
0.245867
1.55784
0.234177
1.72946
7.02081
7.43553
7.22377
7.23657
1.58855
0.216795
0.196177
1.48799
1.51649
0.224208
1.55189
1.69581
0.214029
1.7951
0.255008
1.68306
0.242078
1.7987
7.11192
7.40934
7.19045
7.31651
7.95146
8.21642
8.10386
8.05162
7.70514
7.67026
7.89539
7.47439
7.76045
7.63796
7.85169
7.54196
8.78335
0.554766
0.577754
8.58098
8.78706
0.591349
8.58269
8.86266
8.99212
0.60361
0.591186
8.59958
9.20297
0.602042
8.5812
0.557084
0.595043
8.09821
8.30068
0.595448
8.38359
9.04342
0.586755
9.26956
0.594197
9.02654
9.32874
0.599129
5.96923
0.412154
0.427399
7.83685
6.35165
0.38662
7.51233
18.1495
16.9372
3.58
3.25884
0.249058
0.315265
2.94162
0.289188
4.1526
4.03474
0.355539
3.46009
0.281322
4.3059
3.24847
0.332576
5.33653
0.370679
0.358464
6.55144
0.333377
6.96391
4.74037
8.24755
0.471112
0.443006
8.35459
0.448503
8.39173
8.15129
7.90669
7.5714
0.36429
0.430374
7.6718
0.375603
7.81848
8.09706
0.465956
0.438341
7.95942
7.84518
0.4435
8.22038
8.0261
0.384411
0.436106
7.65179
0.385618
7.83235
7.92924
4.87542
0.49022
0.39583
5.19853
4.7954
0.431085
5.28023
4.6102
4.30723
0.405055
0.37259
4.741
4.1818
0.438712
5.02412
0.563571
0.463831
5.58356
5.16692
0.502931
5.4309
4.46486
0.336548
3.9486
0.306484
4.38437
4.03322
0.36911
5.84205
0.489631
0.430838
5.51829
5.46147
0.474155
5.89863
6.13566
6.42652
0.511516
0.468261
0.483833
6.47814
6.08239
6.20563
0.528424
0.540667
6.5985
0.512124
6.25985
6.54633
5.77037
0.402958
5.33483
0.431479
5.38819
0.44611
5.71656
6.04853
0.544552
0.551609
5.59052
0.593569
5.67292
5.96677
6.55851
7.08595
0.64951
0.749245
6.74282
0.71306
6.89316
6.20122
0.618869
0.611188
5.98836
6.37579
0.668503
5.82471
6.40428
0.59337
0.673859
6.65963
0.637812
6.32453
6.73664
4.11394
0.468822
0.59249
5.84804
4.01756
0.505589
5.96215
17.7102
8.61567
17.2701
8.82684
3.48343
2.85333
0.390684
0.430914
2.75482
3.63428
0.46149
3.33881
0.393012
2.57578
0.359659
3.25418
2.64285
0.423331
4.27816
0.647186
0.50871
6.3594
4.4458
0.551707
6.15877
7.16522
0.562621
0.510659
6.91907
6.69703
0.540479
7.27992
7.02277
6.73931
0.527278
0.498609
6.79246
0.520431
6.94305
7.11371
0.571727
0.558883
6.91127
6.85919
0.550844
7.18006
6.98565
0.477273
5.90219
0.485676
6.30275
0.509575
6.81317
7.4611
0.650593
0.636386
7.05581
0.688186
7.16462
7.37048
7.47281
7.4021
0.698808
0.777146
7.67826
7.20194
0.781564
7.64058
0.712583
0.680222
7.54983
7.83157
0.757393
7.36088
7.31207
0.650328
0.701684
6.9683
7.04341
0.70493
7.23755
4.49935
0.29198
3.15492
0.244076
3.07907
4.6135
0.278066
5.37496
5.52504
0.432817
0.606059
5.67533
0.410886
5.07713
5.43821
0.312884
5.75483
0.302639
5.66777
5.55345
0.296261
4.3851
0.326738
2.77179
0.533925
3.0192
0.37616
4.02093
2.08933
0.192775
0.22885
2.5988
2.05073
0.196817
2.65457
6.37193
6.20289
6.2018
6.33501
1.81705
1.85569
0.162307
0.190898
1.63158
0.175429
2.10932
8.25552
64.9997
18.0184
14.5295
1.77291
0.170352
1.58535
0.161348
1.74833
1.60149
0.173379
2.15958
0.232947
0.218962
3.30005
0.200176
2.76117
2.58015
7.36577
14.3969
7.11135
15.0531
4.75138
0.301271
0.267228
3.20709
0.306176
4.68189
3.26816
5.77579
6.03521
0.331156
0.340151
5.95327
0.325668
5.9091
5.70018
0.322444
0.334271
5.82276
5.88942
0.326862
5.63151
4.86519
0.269963
0.324098
3.71992
0.307127
3.38001
5.10976
4.56949
0.491907
0.349561
4.9175
4.54727
0.445513
4.92688
4.07402
3.55927
0.323041
0.309895
3.94671
3.68472
0.362708
4.43836
0.463338
0.369663
4.66957
4.31033
0.414676
4.7972
4.20781
0.308776
3.78175
0.343698
4.1748
3.82207
0.395378
5.46938
0.19818
0.280768
5.13628
5.07602
0.224584
5.52397
5.93006
6.34593
0.399556
0.357607
6.00047
0.341663
6.27519
5.56295
0.28091
5.25144
0.366987
5.17974
5.63344
0.313861
5.83791
0.308579
0.263364
6.21316
0.247384
5.88087
6.17729
5.61623
0.533206
0.453223
5.28353
0.570133
5.27582
5.64177
5.81005
5.98767
0.508308
0.611081
5.68535
0.581083
6.10351
5.48439
0.506989
0.482249
5.01971
5.35815
0.544975
5.14644
5.93963
0.487956
0.638263
6.27727
0.608831
5.9759
6.22538
2.89775
0.324388
0.450638
3.61162
2.92421
0.375885
3.57332
7.67563
6.78376
7.7592
6.72421
2.17966
1.76119
0.268177
0.256378
1.88946
1.99946
0.301301
14.4543
14.2823
2.29734
0.274624
1.97793
0.279482
2.30848
1.97652
0.3156
2.72826
0.427325
0.301325
2.97275
2.45116
0.357235
3.35649
15.4287
15.6744
6.31333
0.276752
0.345286
5.21683
5.21039
0.293298
6.32903
6.71992
6.65897
0.424671
0.364579
6.82698
6.57504
0.365946
6.4777
0.334052
5.57451
0.416109
5.37821
6.62261
0.360792
6.57541
0.345919
0.279453
6.48597
6.45327
0.289798
6.60118
6.32006
0.527696
0.48868
5.27744
0.589606
5.206
6.39477
6.43517
6.22782
0.502733
0.619937
6.21565
6.34904
0.595031
6.06001
0.500532
0.472617
4.38256
5.63374
0.561278
4.90085
6.60347
0.506878
0.649031
6.54654
6.4772
0.623144
6.66809
4.01981
0.815895
0.72134
4.49854
3.76141
0.706136
5.02714
11.8946
8.87362
10.1445
10.4666
2.95082
2.58093
0.570427
0.563342
2.77114
2.70881
0.603256
11.4612
20.1973
10.4472
23.7225
3.40222
0.780688
0.633087
3.77018
3.12428
0.677704
4.21593
3.36737
0.628941
2.79527
0.574897
3.12727
3.01423
0.621905
19.1754
19.4498
77.5898
9.15058
1.04567
7.12732
1.12801
7.58707
1.15721
8.83431
9.88887
10.0761
1.27231
1.29886
10.0117
1.24565
9.99041
9.3947
1.07831
8.53285
1.21448
8.00867
9.63949
1.18278
9.75645
1.20319
1.28197
9.83072
1.22575
9.60672
9.90374
7.78298
0.941416
6.49867
1.09945
1.07724
5.74628
8.34073
8.78321
9.29026
1.09586
1.25434
8.27841
1.16605
9.47677
7.19486
0.9115
0.976645
4.51062
6.49027
1.05351
5.09425
9.12954
1.18577
1.25361
9.73436
1.17675
9.39005
9.62392
9.00822
1.18274
1.21566
9.04051
8.92195
1.1652
9.15638
8.31553
6.09993
0.938574
0.917276
7.00635
7.70995
1.03404
8.77461
1.13484
1.02194
8.44569
7.83713
1.10994
9.07283
8.8149
1.14584
8.86737
0.983113
8.84707
8.61372
1.09493
8.90308
8.98192
1.18063
1.18765
8.78339
9.09641
1.15938
8.84341
8.72259
1.11647
1.05656
1.1028
8.9221
8.6312
9.0527
1.15568
9.28848
1.15114
9.23181
1.13582
9.11942
8.68184
1.14996
8.32844
1.07306
8.55904
1.12379
8.45658
9.38216
1.1993
9.14915
1.19036
1.17675
9.27305
9.25804
9.5683
9.53537
1.07453
1.1624
9.39297
1.12264
9.61842
9.4255
1.15573
1.08177
8.84938
9.14152
1.13946
9.27522
9.50245
1.16553
1.18491
9.43103
1.1557
9.38298
9.54339
9.70021
1.29693
9.50711
1.31101
9.57446
1.31437
9.63413
9.88351
10.0401
1.34761
1.32427
9.97302
9.95387
1.33065
9.78644
1.30249
9.76079
1.3372
9.66393
9.87961
1.32068
9.80116
1.31806
1.31381
9.80673
9.87213
1.32308
9.73552
9.03815
9.29058
1.28601
1.23187
9.10781
9.2247
1.24942
8.73668
8.50763
1.19799
1.1662
8.73776
1.22811
8.50355
8.9592
1.31349
9.15181
1.24423
8.95957
9.15212
1.27701
8.82354
1.18388
8.67059
1.13981
8.89679
1.20089
8.59543
9.51563
9.44707
1.31097
1.31327
1.32774
9.5758
9.38398
9.558
9.57587
1.31122
1.29945
9.6154
9.55263
1.35117
9.61985
1.316
1.30327
9.74587
9.68456
1.3304
9.67798
9.45302
1.34011
1.30855
9.3173
9.45272
1.35271
9.31739
7.69314
1.02411
1.06725
8.01604
8.09633
1.04128
7.61373
7.35256
6.98216
0.98079
1.03594
6.90917
7.42802
1.02242
7.26832
0.992969
0.968224
6.75256
6.82786
1.00836
7.19032
7.7789
1.08394
8.26295
1.07124
8.18238
7.85772
1.05673
8.58327
1.03968
8.31217
1.02017
8.67242
1.02223
8.21369
8.96624
9.50007
1.06607
1.09903
9.35094
1.02252
9.15005
8.98752
1.01724
9.44839
1.04434
9.07185
9.37282
1.00534
8.56315
1.03107
1.11864
8.43419
1.03379
8.18861
8.77764
7.41373
1.00358
7.92882
1.00809
0.985542
7.52475
7.82401
6.94873
6.92107
0.928225
1.13594
6.50019
0.966103
7.31954
6.98445
0.97403
0.919439
6.66359
6.54127
0.956058
7.10164
7.38205
1.01907
1.14007
8.07881
0.996273
7.79583
7.70704
3.27705
1.11631
1.06607
3.75135
3.26602
1.11592
3.76665
2.889
2.56866
1.23404
1.32983
2.32055
3.16084
1.20366
2.77194
1.1606
2.21596
1.18727
2.76484
2.21961
1.15954
3.40558
1.10408
1.27194
4.20133
3.69292
1.15695
3.90545
4.85832
4.3193
0.99906
1.06431
4.35077
4.82531
1.00837
5.53248
5.87827
1.04274
1.01573
1.03412
5.98136
5.42729
5.38501
0.959697
5.8272
0.985956
5.35554
0.970645
5.853
5.02313
1.1448
4.41231
1.05336
4.52628
1.07825
4.91621
4.77583
1.01512
4.24229
0.962521
0.963514
4.26166
4.75228
5.48829
6.28022
1.02573
0.96493
5.78884
0.949043
5.9852
4.92859
1.05021
1.0809
4.70804
5.22748
0.995395
4.40939
5.32691
0.923726
0.93981
5.77683
0.922225
5.29354
5.81877
8.33657
1.01459
7.88534
1.02143
8.27602
1.01914
7.94397
8.89031
9.41813
1.10467
1.07762
9.24378
9.07071
1.03787
8.75153
1.01707
9.04709
1.09555
8.69082
9.10822
1.02135
8.48557
1.04266
1.08686
8.31849
8.68393
1.03891
8.10131
7.11711
7.50239
1.02779
1.03702
7.51411
7.10053
1.03204
6.79678
6.28954
1.05341
1.05131
6.38829
1.06348
6.70497
6.70435
1.01451
6.25463
1.00399
6.27803
6.68362
1.02115
7.1926
1.06646
7.49218
1.0564
7.57372
1.06771
7.10683
7.13155
7.48899
1.01868
1.0046
1.00659
7.54527
7.07833
6.86966
6.7105
1.07568
0.988481
7.13794
6.42852
1.01226
7.29723
1.04092
1.08931
7.94295
7.54991
1.02966
7.70745
6.70191
0.987683
0.964071
6.21402
6.26041
0.988455
6.65233
5.86507
0.977416
6.41881
0.968464
6.26417
6.02338
0.971248
5.38875
5.50077
0.943363
1.12204
4.97559
0.95199
5.86774
5.45847
0.97931
5.21269
0.960639
5.0512
5.61858
0.969462
5.80069
0.946986
6.59208
1.07811
6.20465
0.952151
6.23236
7.45951
6.92963
0.951223
0.958864
7.31489
7.07562
0.938318
8.07172
8.51957
0.98797
0.935893
8.41224
0.920206
8.19541
7.86849
0.946658
8.08703
1.00087
7.72811
8.22176
0.92925
7.67247
0.963451
7.46126
0.954633
7.3
0.935825
7.81359
6.29607
0.988806
6.54447
0.976771
0.988569
6.14889
6.69106
6.14346
5.99919
1.03454
1.07382
5.73976
1.02401
6.37649
5.88749
0.992221
0.997613
5.334
5.4774
0.995849
5.74209
6.54273
0.988902
1.04693
7.11018
1.00852
6.92722
6.74938
2.93098
0.994677
1.0562
3.45297
3.00078
1.0383
3.37958
2.33093
1.74391
0.981825
1.03611
2.22088
1.84216
1.02696
2.79186
0.965406
0.971874
3.17167
2.70608
1.00089
3.24091
2.47072
1.09672
2.03007
1.09738
2.53647
1.97192
1.07489
4.51337
3.97132
0.985958
0.928026
4.0189
4.46371
0.937247
5.08637
5.66823
0.956751
0.946982
5.2148
0.927761
5.53341
4.58636
1.00226
4.20346
0.985207
4.08692
4.70663
0.951533
5.00581
0.911574
5.38588
0.937819
4.94929
0.917398
5.4471
4.32585
0.949675
3.9141
0.916
0.907791
3.83761
4.40543
4.65965
5.05751
0.883147
0.920946
4.61872
0.892505
5.09118
4.18674
0.927524
0.87988
3.64016
4.13979
0.89256
3.69815
4.80065
0.903445
0.924066
5.31922
0.90004
4.88596
5.23193
7.6123
7.31769
0.964535
0.979779
7.6954
7.23255
0.974399
7.91525
8.27234
1.08521
0.975051
8.26821
7.91656
1.00017
8.01927
0.966152
8.4451
1.06151
8.10093
8.36603
0.978291
7.5031
0.995419
7.11196
0.97078
7.5012
7.11728
0.993222
6.68472
7.00854
0.983395
0.975747
7.07722
6.61728
0.979932
6.37225
6.08662
1.00481
0.964022
6.50729
5.94986
0.97902
6.78212
0.991097
7.3065
1.01301
7.17661
6.9142
0.987894
6.27845
0.966585
5.79649
0.955645
5.86011
6.21211
0.970827
6.45932
6.93826
0.981455
0.971477
0.97558
6.85155
6.54717
5.92119
5.47743
0.958115
0.948479
5.90026
5.50398
0.969573
6.33218
0.993755
0.97066
6.72085
6.31776
0.984471
6.73022
6.05344
0.961782
0.946869
5.72879
5.64074
0.964248
6.14273
2.11622
6.49103
1.89664
6.42863
2.08683
1.91375
6.82305
2.90115
13.4231
3.14593
59.4208
2.59554
13.7752
3.71125
2.51764
3.12551
7.6072
18.4975
2.46605
8.37773
3.21392
5.69489
3.70462
3.83007
5.52924
6.94861
7.35577
6.93747
7.38009
5.71952
3.864
3.85841
5.71803
6.04215
4.72736
6.3768
4.31316
6.93047
7.30497
6.90905
7.30195
5.78893
3.88731
3.97373
5.71914
7.07426
7.52713
6.88871
7.64208
7.02103
7.28477
7.15813
7.164
6.83831
6.77955
6.63201
6.98277
1.11257
1.16749
0.103314
0.100109
1.18134
1.09974
0.105093
6.36419
6.77619
6.902
6.14678
6.45387
6.85692
6.65213
6.68556
1.15808
1.20048
0.157357
0.129974
0.130338
1.20077
1.16007
6.55553
7.10398
7.01247
6.7307
1.14776
0.125007
1.19288
0.153693
1.13594
0.127886
1.19755
1.11791
0.100959
1.18805
0.105086
1.18647
0.106267
1.11389
7.29955
7.56725
7.41717
7.5029
7.06669
7.04551
6.86508
7.22309
7.13769
7.23864
7.38616
6.94117
7.19668
7.37117
7.0085
7.50523
7.22696
7.31947
7.34887
7.19951
7.0624
6.85703
6.86646
7.0432
1.09317
1.10647
0.12429
0.128534
1.10584
1.09776
0.127063
6.2267
6.01056
6.22861
6.00654
6.66492
7.26077
7.16886
6.82297
1.1195
1.24341
0.143236
0.132209
1.23832
0.1339
1.11239
6.4262
6.60166
6.42646
6.60123
1.12434
0.128821
1.22274
0.140393
1.23115
1.12816
0.131831
1.08845
0.130193
1.10188
0.126461
1.10477
0.128628
1.08196
7.13193
7.25603
7.25124
7.13666
7.16403
7.38152
7.49971
6.99851
6.97843
6.79584
6.98129
6.79445
1.8552
5.97683
1.74836
5.99345
1.87005
1.73266
5.89913
1.99709
5.77892
2.2507
6.95809
1.92591
2.33444
5.91584
2.0667
2.42541
6.20273
7.18749
2.08112
2.41175
6.08778
4.3757
3.32778
60.335
3.77585
4.99443
5.79509
6.91761
5.67985
6.98098
4.01562
3.14192
18.662
3.25548
3.89352
3.7514
2.89299
14.5035
3.61506
2.99923
5.69812
6.93568
5.66703
7.0142
3.85897
3.10194
14.9579
3.09084
3.85917
6.28513
6.06436
6.15257
6.20324
6.53033
6.60396
6.47868
6.70004
6.43865
6.49961
6.31609
6.61654
5.6963
5.94665
6.08769
5.49151
0.749359
0.777691
0.0760568
0.0721258
0.0705241
0.786685
0.737586
5.83306
6.1832
6.0544
5.96493
0.73527
0.0690401
0.765222
0.068612
0.77918
0.0671597
0.718637
5.91747
6.41474
6.2543
6.12775
6.60608
6.65864
6.5804
6.75924
6.42496
6.37664
6.25132
6.54592
6.47563
6.55507
6.67262
6.31414
7.13765
7.14526
6.96613
7.30696
7.23458
7.21676
7.26186
7.20143
7.09184
6.88906
6.9231
7.05852
6.79348
6.14918
6.35319
6.66947
0.942576
0.851389
0.0868139
0.0961972
0.860557
0.0937773
0.932816
6.62086
6.4463
6.23846
6.80961
1.02483
0.0983687
0.976844
0.0990928
0.988936
0.0969726
1.01836
6.94608
6.7833
6.57294
7.09525
7.42792
7.2589
7.38343
7.25907
7.11094
6.62919
6.78821
6.97215
7.33839
6.96791
7.12694
7.2263
2.37966
0.174988
0.167184
1.74989
1.9488
0.193739
2.10216
57.6119
14.7055
3.73486
4.81061
0.244874
0.334853
4.43285
4.20094
0.229745
3.44383
0.199955
0.239008
3.91375
4.20847
0.220569
3.0789
2.61365
0.177773
2.80472
0.29741
2.14915
3.10064
0.204217
11.2162
11.4892
1.25006
0.108863
0.124408
1.55424
1.37255
0.115792
1.38637
5.58637
6.60994
6.46278
5.87504
1.20733
1.19971
0.132425
0.164102
1.16411
0.136277
1.22841
5.24798
5.4948
5.25215
5.52409
1.1675
0.1029
1.20166
0.107118
1.26658
1.11769
0.109623
1.28839
0.15526
0.17441
1.40643
0.144425
1.41637
1.29836
5.40575
7.2898
6.53422
5.52204
2.07785
0.151614
0.140533
1.89114
0.161365
2.41337
1.63738
2.51883
3.43345
0.269266
0.294487
3.64387
0.23518
2.35639
11.8882
6.17435
6.00343
11.8841
2.51834
0.167837
0.206656
3.6242
3.58693
0.183993
2.67755
2.06695
0.175477
0.248115
1.60217
0.202521
1.64984
1.95505
14.3352
11.7849
53.6909
6.59674
3.06378
0.282219
0.251216
3.53679
3.22279
0.248357
3.37302
2.84442
2.72054
0.251706
0.204854
3.06823
2.50802
0.235111
3.16165
0.309613
0.291819
3.70246
3.38823
0.274045
3.47097
2.74079
0.215519
2.53762
0.187236
2.88564
2.40582
0.211677
4.41448
0.33336
0.28463
4.34077
4.26045
0.280515
4.53055
3.79449
2.57809
0.2063
0.206499
0.227291
3.0123
3.44173
4.23587
0.319555
0.247623
3.69706
0.271244
4.42568
3.47101
4.08135
0.236893
3.77138
0.215745
3.9673
0.23513
3.84476
3.94037
0.307268
0.302279
3.84366
0.302825
3.6763
4.09787
4.07369
3.85039
0.342931
0.296392
4.33587
0.321907
3.53114
4.04226
0.336482
0.352199
4.00742
4.27983
0.331873
3.77319
3.95616
0.29371
0.27126
3.48053
0.294547
4.08836
3.39232
1.14831
0.133512
0.139762
1.25076
1.17481
0.133141
1.22323
5.46408
5.75971
5.477
5.75266
1.1296
1.25265
0.132078
0.146336
1.10935
1.29118
0.135206
5.49649
6.64722
6.52708
5.35152
1.09617
0.128268
1.10263
0.125385
1.12119
1.07941
0.127643
1.1848
0.149897
0.154039
1.48335
1.36895
0.141779
1.2656
5.19524
5.00829
5.20443
5.0077
1.56606
0.180795
0.142336
1.42905
1.35649
0.158183
1.66071
5.6448
6.34416
5.05592
7.10815
1.7177
2.33055
0.180459
0.14478
2.06571
0.156249
1.83533
10.9918
11.8007
1.9571
0.213188
0.215729
2.55826
2.39465
0.184637
2.08851
1.40493
0.123436
1.34233
0.126992
1.23785
0.135534
1.51628
5.59468
5.08908
4.94183
5.82504
1.56928
0.15337
0.171142
1.37481
0.172476
1.34743
1.59617
2.08379
2.87207
0.245716
0.25982
2.59078
2.5158
0.222447
6.58644
7.46325
12.0885
5.49264
11.8728
11.6542
1.64729
0.165988
0.209237
1.68136
2.03516
0.188328
1.4029
1.97223
0.201057
0.237359
2.43904
2.39287
0.202873
2.00311
5.79363
5.01307
5.03164
5.73751
0.788277
0.0940526
0.0963811
0.76789
0.764186
0.100176
0.795387
3.85284
4.10767
4.12322
3.84108
0.767671
0.713043
0.105471
0.0878404
0.822088
0.677573
0.0988062
3.8535
4.16834
3.78873
4.15789
0.830593
0.100907
0.115514
0.917047
0.90035
0.10682
0.840234
0.735427
0.0910136
0.655786
0.0840694
0.721868
0.658236
0.0937118
4.07173
4.60601
4.3357
4.34924
0.696715
0.0717289
0.0707236
0.772574
0.754905
0.0699425
0.707915
4.99683
5.79483
5.60222
5.26686
0.721314
0.771949
0.0728681
0.0795783
0.728702
0.0733014
0.768262
4.57945
4.45277
4.29233
4.732
0.691893
0.0707987
0.754132
0.0691346
0.744655
0.704858
0.0690789
0.732033
0.0755334
0.0810277
0.806063
0.0744515
0.750066
0.783839
4.71625
5.22147
5.40613
4.43586
0.754093
0.0764168
0.0725573
0.798676
0.0746339
0.83481
0.726387
0.879779
1.10641
0.0945958
0.095512
1.00315
0.0862655
0.961507
3.80639
5.52344
4.16952
4.97285
3.78355
4.18721
4.01729
3.96975
0.804075
0.0809179
0.0863769
0.996369
0.900054
0.0794505
0.893502
0.814002
0.0778137
0.0884578
0.837663
0.0804524
0.776105
0.883267
3.92181
5.05509
4.93823
4.16135
2.80821
0.209243
0.224103
3.30921
2.99174
0.210209
3.10832
2.71186
2.2269
0.230282
0.28119
2.49242
2.44345
0.268636
2.97817
0.24921
0.225396
2.97505
2.74993
0.258979
3.22081
2.49658
0.224824
2.36928
0.212272
2.6761
2.18942
0.210532
3.9134
0.267627
0.245977
3.82213
3.95453
0.255445
3.72812
3.16607
2.29063
0.188979
0.168616
3.20406
0.19056
2.24077
3.66813
0.204431
3.61905
0.198516
3.63687
3.66784
0.201364
3.31943
0.226447
0.204831
2.16967
0.235578
3.10713
2.32213
2.96353
0.207153
0.212129
3.48316
0.196237
3.24964
3.3003
2.07429
1.55471
0.171494
0.166278
1.87147
0.192619
1.73353
50.1742
2.88188
0.23881
0.195067
3.03571
2.62966
0.219254
3.2892
2.26476
0.19419
0.159104
1.85389
0.17753
2.672
2.07438
1.03779
0.103243
0.102627
1.00573
0.976712
0.100714
1.0746
6.34826
5.91628
5.64036
6.52751
0.920628
0.845326
0.0979298
0.0911832
0.92467
0.842697
0.0981047
5.50778
4.76146
5.03982
5.23962
1.0155
0.101102
0.966617
0.100036
0.961891
1.0141
0.0987957
0.936021
0.10334
0.0933571
0.885989
0.859334
0.100689
0.962711
6.17003
5.07592
5.35507
6.0113
1.31141
0.124278
0.130964
1.14991
1.1949
0.133809
1.25166
4.82389
5.10508
4.82381
5.20444
1.47463
1.90089
0.127999
0.146774
1.50432
1.84979
0.127878
5.5026
10.2813
11.1223
5.25396
1.26339
0.106401
1.15559
0.113187
1.14913
1.27765
0.113719
1.52476
0.147119
0.175431
1.78618
1.90776
0.151468
1.44083
4.82242
4.72433
4.83731
4.66581
1.21789
0.106827
0.116489
1.05365
0.11215
1.13209
1.13028
1.17789
1.24359
0.113781
0.141966
1.07278
1.37744
0.125872
4.80933
4.50165
4.29512
4.99004
6.66817
10.1019
10.7954
5.26091
1.06777
0.10827
0.10429
0.923998
0.978975
0.114258
1.00505
1.37008
0.129265
0.138375
1.54986
1.64306
0.123187
1.27692
5.97088
4.83311
5.90776
4.74071
1.63773
0.378503
0.36407
1.62979
1.64425
0.367557
1.62469
8.02018
8.05263
7.92938
8.12286
8.05187
7.74481
7.83739
8.00682
1.63307
0.378419
0.397274
1.55107
1.54781
0.367902
1.62932
7.90184
7.67658
7.79149
7.80853
1.73283
0.368894
1.65871
0.354582
1.74063
0.356013
1.64018
7.64033
7.65714
7.80591
7.47793
1.64863
1.6725
0.334046
0.327341
1.67024
0.335882
1.63481
8.07658
7.19027
7.43102
7.9189
1.67086
0.360466
1.69394
0.34439
1.68903
1.68241
0.34808
8.14411
7.73618
8.21295
7.5897
1.72047
0.340808
0.331236
1.59507
0.342402
1.61575
1.71515
1.5951
0.373632
1.61997
0.357199
0.362369
1.61585
1.59958
1.60412
1.48616
0.352302
0.340834
1.51568
0.352954
1.58422
7.87456
7.63092
7.49593
7.94808
7.37458
6.9316
7.17895
7.159
1.62158
0.374061
0.360913
1.55648
1.54039
0.364643
1.63087
7.54106
7.5338
7.6884
7.36413
1.56579
0.344027
0.336784
1.54829
0.349337
1.57292
1.53487
1.24612
0.323898
0.317783
1.27765
1.2696
0.322212
1.25412
6.04237
6.33423
5.74071
6.58943
1.22622
1.42856
0.368435
0.345833
1.41767
1.26951
0.336739
6.62068
6.58107
6.85368
6.2882
1.22916
0.335635
1.50054
0.372042
1.23196
1.45647
0.334597
1.22948
0.317886
0.334039
1.26542
1.26237
0.324456
1.23827
6.40054
5.73081
6.241
5.9919
1.6477
1.4247
0.35513
0.377614
1.53134
1.51655
0.383606
7.08029
11.9197
6.082
15.2563
8.00242
6.1405
7.09429
6.93131
2.25806
2.55617
0.486039
0.520484
0.453765
2.20211
2.77969
5.92289
5.37783
5.35734
5.77096
1.91506
0.365665
1.66645
0.422611
1.72126
0.399192
1.85891
1.88189
0.422309
2.06909
0.494863
1.72516
0.431808
2.28595
1.38026
0.322685
1.35999
0.332947
0.319763
1.32068
1.4335
1.45358
1.39772
0.317594
0.319379
1.42518
0.315759
1.4267
6.38681
6.44176
6.66632
6.13977
6.95887
6.12826
6.92124
6.31761
1.34221
0.320312
0.319213
1.30506
1.34056
0.314762
1.29322
6.12133
5.58858
5.84342
5.90507
1.51958
0.3399
0.334439
1.55353
0.325056
1.60135
1.48094
2.03498
0.407686
1.99431
0.363999
2.28588
0.374122
1.81522
6.68804
7.63664
7.56488
6.60587
1.7791
1.75172
0.361034
0.336301
1.86594
1.68898
0.351517
7.6862
6.90747
7.74897
6.66207
1.92071
0.41837
2.35293
0.393864
2.16066
2.04615
0.380196
7.88565
6.79176
8.90983
6.55443
1.87894
0.341314
0.335019
1.62247
1.77483
0.348556
1.69971
2.36661
2.14519
0.42422
0.49312
2.61172
1.99449
0.479927
13.5812
6.41424
7.65098
8.41716
3.07566
3.04134
0.561737
0.608271
2.57401
0.537779
3.38939
13.7447
7.15349
14.1649
7.17059
2.48985
0.418996
1.84209
0.481551
2.10898
2.10703
0.469062
2.76479
0.569002
4.29722
0.630812
3.10548
0.552971
3.87498
1.66539
1.87834
0.360784
0.382184
0.358584
1.72751
1.78427
1.65534
1.46743
0.335417
0.34514
1.58468
1.51377
0.341149
6.56895
6.62573
6.86263
6.33685
7.27581
6.22798
6.3536
7.45537
6.35867
6.2073
6.14949
6.35734
1.58503
0.340163
0.332431
1.56101
1.53091
0.339639
1.62764
1.751
0.38084
0.364893
1.68471
1.58582
0.359198
1.8852
5.38117
0.897727
0.893041
5.58217
5.76275
0.914651
5.2045
5.23558
5.0996
0.970805
0.991415
4.84683
5.4924
0.955352
4.99815
0.91058
0.941015
4.44516
4.61336
0.931931
4.82554
5.62252
0.904348
6.26529
0.961653
6.00615
5.88201
0.931846
6.04336
0.829509
5.81315
0.847851
6.18511
0.830681
5.66741
6.39914
7.07243
0.865683
0.8973
6.75167
0.81309
6.75621
6.43752
0.82145
6.92403
0.881588
6.57695
6.78811
0.826345
6.00164
0.836143
0.92768
6.04822
0.818387
5.62083
6.39318
4.91744
0.884512
5.4432
0.862547
0.873399
5.06778
5.29432
4.47222
4.66518
0.860328
1.1158
4.08353
0.863391
5.01702
4.54028
0.894272
0.877497
4.31525
4.16134
0.878218
4.69223
4.8568
0.850751
1.07041
5.70617
0.860815
5.24081
5.36248
1.51161
1.06991
1.10049
1.87517
1.44121
1.11791
1.96394
14.5056
3.86845
13.8338
4.08176
5.69086
1.57328
0.395022
1.49844
1.24803
7.02134
1.2934
5.07935
1.09921
1.00135
0.309111
4.84971
1.05754
1.14767
1.67991
1.2219
1.43601
2.47417
1.94233
1.25003
2.16696
2.52732
2.24773
0.945162
0.934401
2.1247
2.6515
0.910487
2.81433
3.75091
0.862839
1.36683
0.872209
3.18156
3.40638
2.89347
0.923081
3.37764
0.878517
3.01915
0.89357
3.25036
2.4344
0.886571
2.56676
1.46774
2.01235
0.879946
3.03059
2.8665
1.06095
2.33743
0.980214
1.01906
2.44192
2.74898
3.50655
4.21648
1.19697
1.0521
3.84686
1.08113
3.88133
3.11298
1.17033
1.24614
2.99901
3.45194
1.11635
2.67072
3.24986
0.956436
0.971441
3.4856
0.992793
3.12287
3.61896
5.82691
0.819179
5.3049
0.871998
5.66941
0.841943
5.46044
6.45735
7.0391
0.896972
0.904969
6.78558
6.72212
0.864769
6.20594
0.802748
6.3723
0.85596
6.04574
6.53678
0.824756
6.08169
0.920877
0.932736
6.00593
6.35599
0.885776
5.71995
4.33557
4.82099
0.861379
0.827032
4.69357
4.46362
0.8448
3.92418
4.09216
0.854774
1.14062
3.55202
0.845934
4.43043
3.97613
0.875245
3.74053
0.866776
3.61251
4.10427
0.855659
4.29214
0.820347
5.08474
1.08387
4.65694
0.836635
4.76097
4.7308
4.94266
0.899217
0.894483
0.923271
5.09541
4.58208
4.63091
4.58625
1.08919
1.02839
4.95021
4.25795
1.00647
4.99612
0.953728
1.05623
5.65658
5.30509
0.983874
5.35889
4.36521
0.908117
0.954651
3.85281
3.99252
0.939125
4.22044
2.38471
0.804369
0.701312
3.26632
2.54226
0.723786
3.03343
46.1501
44.3524
1.52108
3.89386
0.614956
0.705225
1.41834
4.1916
0.604983
2.2171
0.829308
0.763839
2.53136
2.04367
0.741537
2.78597
1.62132
0.591719
4.74671
0.718217
1.71897
4.4487
0.598149
4.03915
3.83087
0.706419
0.77124
3.79039
4.01509
0.714802
3.87361
3.55931
0.593157
0.725155
3.02189
0.671587
4.31458
3.58352
0.639619
2.42579
0.570568
3.28378
2.67214
0.65084
4.2472
0.787869
4.4465
0.787564
4.17433
0.73288
4.56233
3.46861
0.845664
3.61446
0.813539
0.852608
3.33543
3.76938
3.27679
3.20963
0.939471
0.983956
2.95113
0.903449
3.54077
3.15735
0.872298
0.915731
2.74712
2.84208
0.882523
3.04399
3.59844
0.830284
0.942182
4.17749
0.870861
3.91033
3.86486
4.58798
1.00952
1.06433
1.39812
4.69264
1.03586
1.35763
4.04227
2.66678
3.86196
2.84234
0.919266
0.310871
0.210253
0.144716
0.716384
0.353973
0.254721
11.6436
64.9109
7.56893
3.99519
0.886124
0.631627
10.9084
2.72295
0.889957
1.22106
1.02788
0.283315
0.382587
0.151695
1.00744
0.395945
0.284149
13.0076
13.3394
2.33383
1.85104
1.05206
1.01264
1.89507
2.2821
1.02932
2.80346
3.39428
1.11583
0.996245
3.03035
1.0286
3.15999
2.42263
1.0862
2.16707
1.15752
1.97062
2.63779
1.06019
2.70458
0.985407
2.99414
0.970392
2.64791
1.00033
3.05444
2.19325
1.00565
1.82191
1.00992
0.997348
1.76881
2.24892
2.46365
3.34539
1.5039
0.920554
2.99613
0.935245
2.82859
2.06922
0.9192
1.61523
2.10316
2.57531
0.938787
1.65236
2.55931
0.984623
0.95251
2.95639
0.977345
2.61242
2.90307
4.8546
4.64014
0.79288
0.832467
4.94158
4.57219
0.791781
4.86267
4.17264
0.679677
0.845797
4.39703
4.85968
0.738007
5.00625
0.756947
5.07018
0.698356
5.16131
4.74114
0.75265
4.80584
0.816507
4.82804
0.920246
4.97862
4.55489
0.778234
4.10078
4.36567
0.872448
0.888184
4.44078
4.02932
0.897735
3.87083
3.75397
1.00247
0.968059
4.11101
3.51553
0.941557
4.22207
0.88999
4.80537
0.970514
4.56724
4.4617
0.917595
3.75357
0.908853
3.33983
0.944347
3.40351
3.68593
0.919791
3.91772
4.31149
0.864858
0.888613
0.888559
4.2477
3.9795
3.53685
3.66478
1.21584
0.905308
3.97413
3.18392
0.888433
3.88594
0.849586
1.14194
4.56597
4.27559
0.872054
4.22655
3.58161
0.909486
0.930176
3.29842
3.24249
0.908171
3.64053
293.172
22.9292
219.799
93.3525
46.1112
44.5998
90.3946
270.811
276.424
64.8459
17.5114
44.6128
55.3916
38.4571
49.3368
10.9622
16.0199
7.90643
21.9166
39.0682
16.939
156.577
82.5175
50.8469
313.286
238.007
40.4658
85.3117
42.7176
266.877
94.7434
51.2312
15.1224
235.527
85.6476
33.463
24.0437
40.4794
23.5538
8.60986
51.8751
11.2484
21.6506
74.7131
319.234
351.336
66.2938
117.173
353.036
55.4559
53.0217
367.463
39.1027
17.8965
306.07
23.0189
11.4773
47.8458
94.7349
45.6645
91.2009
41.856
22.1115
101.308
79.3635
228.132
37.6378
252.556
20.3748
16.6601
5.9488
35.5238
8.05893
43.7356
14.8492
13.5073
20.2427
11.0341
65.9063
7.67659
48.4391
23.3543
16.1289
16.6687
29.6992
273.091
46.8141
8.94244
34.4907
26.9291
393.03
133.326
115.114
56.9011
51.7221
11.4955
54.5787
40.7872
27.467
25.5513
22.7087
14.2974
4.82018
13.6658
23.6761
18.0053
7.98791
10.7691
7.26862
237.426
315.35
64.1112
108.026
47.6065
245.827
34.605
117.302
55.4809
59.7153
10.2949
45.0409
35.1201
278.37
31.9962
20.1834
98.9234
15.2908
247.549
44.9464
42.9457
23.0861
21.392
286.278
94.3625
87.1826
41.1401
42.0428
13.657
18.6436
33.7718
224.624
37.6813
9.95155
30.1743
373.28
129.212
380.463
62.8982
126.901
65.5119
409.812
292.227
355.226
68.3565
15.7236
121.183
53.7018
354.379
50.6761
23.455
291.254
37.742
59.9037
75.0954
65.4979
11.6257
59.2345
45.1129
36.8081
353.265
21.4102
272.682
342.777
328.339
81.4454
80.774
45.5425
232.368
91.7156
100.535
696.996
52.2145
657.721
220.207
696.992
78.6571
50.5105
84.381
15.9925
175.207
30.3482
46.7245
94.593
75.6178
19.3201
250.059
30.2584
611.148
73.9725
12.3145
143.818
24.19
34.655
31.3063
51.611
9.38626
16.5392
180.506
40.4598
76.0602
37.5372
22.5247
64.0914
34.9849
22.3642
51.5789
282.648
60.7587
15.0113
107.884
42.7709
49.9266
84.1364
1015.15
168.232
25.8316
88.7519
73.3797
234.827
85.6093
707.97
115.475
144.134
349.951
499.125
93.7337
74.8001
122.484
480.174
512.743
468.538
86.6183
139.932
55.4876
737.645
105.686
348.398
264.295
127.733
279.048
626.657
237.674
140.261
546.945
532.353
652.036
586.85
86.0468
111.828
821.92
186.55
173.833
413.183
225.423
27.419
739.287
69.876
124.348
42.8761
266.799
645.215
149.79
31.2367
80.8517
174.785
638.27
46.6043
79.6509
546.647
126.679
86.064
67.3067
171.002
406.188
452.913
95.1038
27.2231
395.817
56.0381
84.5676
521.165
103.702
31.2325
63.1266
180.761
105.558
34.1469
15.9132
18.3172
30.1239
55.1598
58.6751
13.4553
61.1437
45.9264
71.8605
39.7019
22.8836
24.3287
8.70362
44.3163
17.8072
11.7374
20.5502
14.576
7.77428
329.558
256.17
45.7828
118.314
51.2224
87.611
28.7204
324.063
22.0111
13.3151
14.3692
69.4329
8.73763
35.1787
46.0041
36.6877
26.6941
49.992
18.0573
47.9519
286.415
21.1218
50.4318
9.05518
35.0757
11.1715
15.3883
64.9881
63.4833
160.34
347.173
86.2902
80.4312
376.086
396.755
49.8781
46.9594
17.5469
22.5845
251.547
12.1968
63.2858
74.2557
103.321
123.375
511.112
52.8786
413.593
58.1338
87.2621
19.2642
182.397
27.7553
442.182
33.3303
47.7035
189.581
631.734
87.3552
212.388
84.2264
20.5874
39.7666
9.14892
35.3434
13.7753
61.622
12.6556
31.5878
25.2307
171.898
59.413
78.5548
51.4805
17.7983
16.4253
78.6388
33.805
162.013
21.6816
67.1708
34.8357
12.0386
24.7204
141.171
35.4535
52.8807
30.1866
9.22469
337.31
783.423
136.033
69.5699
68.6435
24.5918
23.5484
79.8414
104.538
19.8329
111.597
90.9838
513.094
78.5072
75.291
53.5439
10.7868
84.1608
20.1923
98.7447
35.6611
14.5698
102.168
37.7527
770.874
360.456
88.0148
56.2294
26.5412
51.4596
9.61325
36.3309
15.4773
79.4556
14.3335
74.02
236.01
471.505
44.8212
38.9011
69.112
331.21
22.2229
79.7102
21.9941
16.2381
12.4289
97.2372
41.1428
8.56441
60.4432
58.2303
210.599
442.648
102.977
70.932
27.2461
31.3824
47.3617
449.903
82.4904
15.7895
57.6859
10.6084
27.4107
63.9493
51.9266
16.0799
33.4551
16.3337
552.454
618.468
194.475
101.804
523.792
73.605
171.023
103.722
475.73
30.0561
569.882
102.774
102.729
60.8192
148.08
24.1926
91.8073
87.0133
72.0072
46.4093
606.654
21.4282
240.44
44.758
195.994
35.5122
32.2872
77.4069
13.4917
13.7635
26.4198
69.8233
9.21641
20.5652
50.7841
14.0512
62.0715
38.8367
83.6754
24.9286
20.7926
45.5436
8.87754
9.52281
17.0292
38.5369
6.5437
14.3744
23.7903
31.4292
80.4306
14.7811
13.6767
45.7127
10.4926
58.0648
70.3382
62.7202
420.351
202.992
47.5945
64.4735
54.852
433.032
46.9064
124.159
48.4377
14.9195
93.5262
94.0231
25.622
25.98
448.897
18.6438
81.7235
95.1185
55.2649
26.1877
35.611
68.2213
13.5052
62.5167
17.3881
28.7142
24.2953
44.3601
10.0159
453.823
124.181
202.076
196.014
55.3619
23.5087
41.8592
17.7533
52.8814
43.5581
17.639
140.12
56.2388
165.491
23.7246
390.176
111.972
28.9008
596.873
207.031
574.534
246.532
947.561
49.6792
28.7764
13.1561
9.96724
36.2066
35.7765
13.0906
60.5879
177.329
87.8938
39.8076
476.614
91.0135
42.4459
22.9457
80.1494
159.417
20.1004
37.5347
227.126
36.0062
123.355
14.6014
80.8294
16.8883
28.7519
200.784
81.4375
680.175
65.0779
90.121
701.065
94.7376
79.5243
183.043
90.5118
53.592
695.185
99.5313
78.6648
118.806
197.079
56.446
42.6422
18.294
81.0339
18.4102
67.9677
69.8761
14.0409
131.756
671.092
301.36
50.3176
105.677
22.5865
218.462
33.4278
277.47
35.5796
648.883
733.132
71.0549
85.6793
121.059
737.587
106.645
208.013
133.546
256.314
15.2372
9.22864
9.89512
51.0825
24.1419
6.76282
26.1995
24.8982
38.0614
18.558
305.503
39.3431
13.7117
123.341
42.1308
99.0664
38.0182
23.1786
77.2122
296.317
44.2315
371.632
71.0159
144.04
52.8776
65.3875
410.958
127.209
98.3672
529.53
187.003
542.004
29.6095
71.7293
472.344
554.496
51.8711
51.1136
109.262
17.535
31.1145
16.7213
94.2143
28.7041
11.2177
63.0365
14.2246
31.3856
15.2042
96.5364
22.1507
10.6117
62.4344
101.444
15.9681
52.9937
94.8222
28.0685
41.8376
495.449
192.34
250.003
25.0496
53.0383
77.8137
36.2884
93.4802
458.617
407.366
68.2047
14.9576
15.4892
26.5369
50.5455
22.6215
46.6903
461.801
77.3214
71.6666
53.2666
27.6794
4.81683
15.0082
10.7842
29.315
12.1465
8.16652
64.0434
15.9886
173.994
34.3252
26.4748
30.1449
69.5634
7.87159
23.1613
28.8263
10.5264
188.645
190.27
50.8034
30.3576
61.1919
23.2516
28.4337
105.467
15.5874
30.9621
211.657
33.7062
70.3594
210.719
15.7738
26.8999
31.8295
32.3851
11.1787
64.6919
7.04743
19.3333
34.1943
38.2933
9.79445
17.8625
13.7324
75.6963
8.66009
17.1976
13.935
38.0361
30.2879
17.4876
224.359
69.4445
219.217
12.8016
65.1521
35.202
34.246
29.735
63.7876
198.251
34.0085
210.057
246.271
36.4071
5.37318
9.87674
7.51615
28.104
4.23985
10.9255
13.1
7.16215
21.0906
54.5043
25.7605
13.896
9.48845
23.7594
197.716
30.6875
12.9754
79.2409
22.5147
15.78
26.1164
6.41027
14.0766
34.0904
7.64296
16.5098
57.9336
22.0791
209.291
16.3859
11.3869
8.17098
78.4939
30.9112
189.768
75.0969
48.9684
183.799
21.9151
23.5381
73.9355
59.3573
26.181
222.94
88.8152
34.068
218.033
187.644
24.5869
55.5463
25.7114
20.5786
4.36461
6.5666
9.48637
7.6796
11.0614
21.7953
164.473
61.7256
72.6523
31.8978
12.5013
15.9707
49.2113
24.7792
43.4961
150.552
28.004
192.624
38.4174
247.109
16.9546
49.9679
93.2187
27.9303
233.475
16.6967
29.7009
11.5236
42.1165
101.265
24.1299
226.563
90.169
33.6728
10.0596
42.1545
90.6794
19.1709
14.8338
245.987
19.5836
12.2068
5.56136
28.3973
7.41277
13.4687
35.2705
215.224
39.8602
92.4189
34.5413
20.7137
77.8756
78.4034
229.338
38.6596
97.643
47.8923
109.508
276.946
116.635
32.4001
30.463
294.466
19.6202
264.49
102.403
22.7524
12.8075
4.69545
6.60748
13.6962
26.3734
7.56111
36.8343
15.5252
30.9805
6.65811
20.7682
55.7536
10.8463
56.8965
29.0366
11.0494
118.865
38.8381
14.2306
283.09
4.57258
9.04581
5.9935
23.7936
11.518
4.0312
7.56313
6.63232
28.5005
26.8948
15.4531
17.0855
10.8004
8.22419
25.8257
176.684
62.0187
153.91
26.2989
50.3019
13.0976
83.6422
42.0525
48.6764
26.8893
154.935
42.8614
100.45
228.808
100.525
103.497
247.93
47.1641
34.8931
13.6073
230.602
18.0698
78.4186
39.4543
9.69542
57.5898
37.0654
229.399
128.315
30.6058
270.501
20.6621
34.0422
15.0421
6.28922
40.1351
7.97006
15.136
31.1767
234.055
76.0389
12.6335
17.2824
26.9766
216.468
116.469
58.5948
36.4249
36.915
7.759
7.26632
11.0587
13.3384
23.7498
17.7478
82.2009
40.4888
31.6853
10.7253
246.82
19.8653
34.6869
28.7034
166.712
62.218
27.3882
113.672
226.969
35.9418
44.8561
6.76345
3.3975
11.9374
16.3007
4.0271
5.07386
26.2436
13.3266
95.5477
20.4695
10.6455
7.19923
40.9247
20.1748
13.2029
227.376
26.4536
15.4507
8.41573
45.8768
28.9915
20.3227
52.3434
60.5011
64.145
51.3683
32.7523
82.5434
67.0001
87.9066
150.105
171.735
70.973
24.7896
39.3545
44.8078
77.2049
30.6367
70.0285
97.3948
94.1847
31.5529
64.9204
34.5141
92.3757
52.8902
95.49
73.2453
28.7836
114.016
80.1542
35.4037
81.1913
116.133
84.4709
119.628
36.1141
83.2894
118.113
34.3036
77.6143
97.6817
82.1885
33.3042
97.2683
34.1425
81.4077
94.745
81.6969
96.0212
34.0135
127.921
116.074
131.558
38.4873
17.7943
46.935
39.9384
60.3638
115.1
171.322
71.1977
52.383
19.5562
43.0902
526.53
45.6382
205.692
609.294
38.9838
432.676
56.3234
81.3466
35.7097
11.897
25.6335
33.9565
24.3925
87.3982
100.519
101.49
81.9736
21.4552
12.8386
33.4852
34.6169
26.8091
77.3794
59.7655
54.6269
44.4714
80.7596
18.6033
31.8914
22.6696
31.0736
12.3953
46.5659
6.61749
22.7989
7.25772
56.5388
377.046
120.605
37.892
93.6907
20.189
19.4849
40.0372
6.19275
15.4864
37.8754
9.6896
19.0768
5.72664
11.0726
6.02587
26.9764
17.9579
10.3714
16.2258
10.0649
6.15082
31.2972
89.4162
27.8325
98.6429
93.19
70.4605
25.8329
10.2434
14.262
34.4302
18.6598
45.3355
65.7888
18.5313
31.8584
9.85835
30.5715
70.8557
16.7257
506.155
68.6593
27.3259
35.9586
157.2
23.9542
80.1668
54.3848
25.5367
71.1281
48.484
28.2576
82.915
60.7057
27.1
83.8259
65.243
58.5284
88.2379
29.7636
66.6862
91.3419
91.432
71.3148
30.5736
69.897
92.0148
111.718
78.4174
34.1084
77.7048
109.727
75.8352
106.189
33.816
76.7655
108.117
31.6379
74.6772
88.3347
86.7024
73.7433
31.9594
31.5065
85.7547
72.9574
86.3179
73.1786
31.4312
69.8541
30.6878
89.2639
69.8533
89.8909
91.3856
70.9554
30.849
70.59
90.4029
32.8023
76.2995
89.7638
77.2964
91.2897
32.4861
32.7642
78.4039
92.3493
32.9719
77.734
91.3946
86.0365
74.3509
107.063
38.05
27.4487
13.9122
93.1362
48.8314
29.4879
65.6322
72.5426
137.653
37.6939
60.5004
14.6436
37.5937
433.972
30.3885
67.5584
23.7774
75.8388
20.9583
40.3341
17.4207
11.3858
43.8211
10.4857
53.918
393.077
22.231
44.6467
28.3289
9.92868
26.0701
61.5329
16.4536
20.8158
27.7382
8.57424
9.18125
62.0445
20.1143
36.3397
18.753
27.8677
9.72062
102.774
109.918
69.3891
19.3979
47.2216
65.568
33.8899
26.9566
55.8258
17.4544
59.4448
29.7265
411.862
129.681
7.29478
47.0773
23.8891
13.924
22.6354
12.4824
7.83246
7.87424
51.0692
19.6464
11.2599
6.59545
25.5725
14.5437
109.765
75.4906
211.881
98.8753
450.144
22.4776
32.7386
49.3742
266.936
37.2652
114.325
345.81
58.0836
121.374
69.463
37.978
78.4292
106.037
87.4231
186.733
69.183
479.833
116.409
48.9945
112.669
77.8094
89.7109
38.7276
168.96
13.3551
10.9399
24.2427
44.4764
10.3585
27.2255
20.0687
11.4918
69.8747
8.71288
21.9297
9.51167
19.4039
21.8487
55.5939
108.133
623.541
95.8105
219.759
72.6839
83.2059
62.0726
27.8703
61.3395
81.8011
61.2621
80.2772
28.2269
61.7108
81.5333
30.5315
74.4238
77.1579
67.9551
32.0675
76.3111
28.2532
63.8725
74.9777
63.8146
74.0506
28.2586
63.965
576.295
58.8373
26.8308
77.7422
60.7681
26.8367
77.2235
60.6678
27.3501
78.7388
62.0655
27.2866
79.5068
62.2979
78.2942
26.7433
48.5049
230.289
57.8449
292.138
24.1869
82.1189
18.1271
74.9395
36.509
38.0834
80.2447
17.4437
8.85123
6.06453
15.2607
40.2146
4.93949
26.476
11.8526
8.72728
21.1555
13.8708
4.82117
4.94342
23.2557
8.41068
18.44
45.4
327.181
38.3338
95.9803
23.5989
59.5741
46.4771
81.4775
15.9996
18.9754
7.74602
22.3754
68.7
16.2491
276.738
31.5082
15.6525
10.4124
35.0977
21.2147
47.9732
43.4736
15.2726
61.5951
34.4948
53.2821
16.3784
31.2349
13.7225
47.0723
26.6845
49.807
27.3567
13.6758
68.7395
81.5266
29.8439
67.4778
81.8343
83.9409
67.6724
29.8879
67.6498
82.6929
86.985
65.3436
29.8598
65.8134
88.5745
67.7371
91.7363
30.3542
67.0511
90.3278
30.8471
70.0579
82.5361
83.8643
70.8399
30.5775
31.0544
85.085
71.9883
84.3277
31.1789
71.5505
68.7689
88.1998
30.2437
68.5599
87.0055
84.3696
67.8225
30.0769
68.0342
85.9816
29.8232
68.6434
81.3082
67.9481
79.9995
30.0693
29.5975
67.0071
78.797
29.5211
67.2673
79.4243
68.7989
21.4455
47.15
68.2464
46.7444
44.1827
69.5414
21.2237
69.2041
46.3899
11.109
107.307
45.1162
28.7178
23.3023
30.1377
14.1292
10.6042
91.4195
22.2096
24.4448
22.0555
10.6187
26.7989
77.6499
81.6564
31.8522
29.3249
48.3611
14.8693
27.9491
6.44763
56.8942
21.2028
13.5508
314.882
97.7738
44.4343
20.4274
15.0797
6.24179
45.5836
19.7579
13.113
66.3504
36.9299
18.5212
68.6078
37.0982
43.4307
71.0086
20.0363
70.4886
40.6752
12.6653
39.7411
19.8273
41.7914
11.7016
21.7488
14.1672
48.7937
34.1812
17.0406
46.1074
24.9489
293.287
24.8221
37.0233
36.9754
13.4358
58.8174
16.6605
14.057
27.365
221.982
176.091
35.4879
82.0196
103.076
268.185
713.236
64.8369
115.574
73.0529
71.5137
19.7792
35.0154
29.209
64.3061
103.146
256.669
56.9261
47.5092
59.8855
226.244
231.913
241.923
731.784
295.394
43.6463
16.3562
17.7294
54.6398
18.7642
40.6311
55.3232
635.947
26.3974
75.5415
73.4476
8.44932
17.4968
61.2946
26.9688
16.5151
16.9837
10.7362
13.3928
30.5514
32.3821
12.9523
26.2201
15.2068
12.2486
40.3098
107.385
39.477
118.76
39.3636
39.8621
51.4543
77.9849
217.462
176.743
57.5151
49.8462
206.086
19.1003
47.1002
14.9293
23.7307
158.337
55.4822
276.835
80.1745
51.1593
38.3213
226.761
44.5829
247.179
18.1206
33.9346
69.9394
30.0614
63.3903
293.046
182.214
88.0357
118.16
29.0235
29.5653
67.7107
239.63
16.6491
276.904
26.8918
17.5095
217.962
40.2168
34.9664
245.964
89.9107
94.0385
252.031
281.704
122.813
18.5522
56.4334
21.5441
43.2147
187.266
74.8745
112.778
94.0937
112.47
41.3529
60.6068
20.3171
106.154
42.7004
63.3786
12.4541
36.5698
17.7132
32.1038
31.0932
16.5465
12.8039
12.2649
35.3363
30.3565
15.7232
30.5611
12.1481
16.0972
103.654
267.488
71.8234
109.838
67.4746
24.918
58.3633
229.615
16.1912
216.513
26.1396
15.8242
98.5132
256.543
64.2088
94.2436
65.9447
14.1889
81.2166
26.4267
32.8484
31.489
34.9072
13.3924
14.1298
85.0195
37.4776
40.5547
33.1755
34.6533
15.9819
24.6976
11.8083
29.4969
20.8902
29.6616
82.6346
10.655
40.695
63.5624
19.0215
128.282
20.262
113.521
43.2194
44.073
258.381
39.7
307.9
66.4057
85.6345
745.085
15.9695
19.9745
62.1104
7.93315
14.65
69.7592
8.30917
72.2369
57.5011
267.53
87.5459
303.928
78.5782
128.76
844.229
118.285
352.462
300.994
689.764
14.4014
12.603
36.5038
32.8924
15.9716
11.9909
45.5163
15.1702
57.1323
19.54
40.6416
16.5902
17.2337
49.1385
39.6839
19.3431
14.1633
39.539
36.7078
14.949
44.564
66.2452
25.2914
13.5948
203.563
14.8057
250.177
58.8668
122.297
131.749
40.7242
20.6934
15.9476
75.9258
42.4099
15.3372
48.5415
117.837
106.234
51.0777
212.21
41.7743
131.476
37.6845
112.703
174.768
262.046
209.969
39.8965
80.9718
83.2046
720.143
117.015
32.1907
277.538
44.5584
285.679
43.4215
112.832
45.2193
42.3459
41.1653
116.945
68.074
16.5463
21.4926
8.79589
21.0876
69.537
16.2698
262.815
42.0755
257.179
42.9944
18.0379
111.27
41.0647
44.6199
45.5305
42.0752
17.7484
18.2752
113.752
47.4016
43.8883
46.8131
18.0065
42.6148
126.457
123.979
251.553
22.8141
63.0149
14.8983
228.697
66.6329
24.8263
118.335
121.745
261.465
69.4019
26.3819
15.4232
266.633
68.2826
25.9133
332.871
46.0659
297.501
49.2654
131.227
90.2189
44.8475
46.3439
123.452
87.1976
15.4079
32.9396
12.1134
31.3005
22.938
27.9045
788.428
95.125
73.8478
75.3512
17.1638
22.0725
9.4741
22.576
71.7635
18.2382
17.2849
40.3604
104.265
44.1058
39.7514
17.4944
43.5165
17.1351
102.847
38.9103
42.27
16.8904
39.4995
43.0378
40.1288
115.06
98.3796
40.547
112.953
97.167
38.4284
103.477
91.5478
38.1728
105.127
92.109
28.9082
66.1226
35.0629
28.3203
67.6764
37.3981
34.1705
81.2599
87.0711
34.4213
80.5647
86.1078
285.075
35.1352
17.3771
262.39
25.9405
25.1587
17.9646
6.5182
10.5398
30.4233
26.7635
7.18516
16.9812
58.9886
34.3675
92.6501
25.3989
28.5825
64.2716
10.2206
12.0217
26.4536
39.0898
8.20641
100.32
298.759
60.3832
53.1988
292.651
275.115
36.4187
59.7725
105.631
31.4919
5.58787
12.6725
6.98856
21.923
16.6223
8.29819
284.479
98.0558
62.3814
19.7669
32.1948
120.204
323.732
16.8261
328.04
42.4497
125.999
61.3477
45.3271
96.77
10.5434
22.9781
34.1364
134.228
13.2391
314.367
20.5096
17.6838
41.7869
63.4831
31.161
118.01
362.303
125.457
68.5641
326.739
19.493
43.0504
111.491
28.67
6.54396
11.2966
19.5531
27.0691
17.173
7.48509
9.28178
5.74032
10.9073
6.62513
29.0159
5.03252
16.2419
7.94022
14.0812
5.49286
8.909
25.8942
13.9893
5.92009
21.6257
24.2184
79.222
12.553
19.0073
15.4394
97.0111
246.649
18.932
10.2804
7.66693
38.1493
6.92756
30.4921
26.0138
70.5743
251.88
46.566
78.4656
9.81907
18.8602
33.3945
28.1618
15.5219
96.3467
251.277
273.302
18.1283
31.6036
107.417
24.8519
50.1142
8.25419
25.6098
10.9764
20.5177
36.6546
13.8455
29.8358
46.1977
23.8202
290.687
15.7558
21.1259
37.8283
30.2165
52.8277
115.951
92.2801
76.8948
16.9798
31.0905
112.926
26.2613
86.5112
35.0569
297.221
51.2314
8.3867
10.5562
47.0146
20.6266
14.1558
6.99989
28.4388
9.70192
34.714
21.1189
76.282
15.8713
12.0734
26.4774
65.6829
209.699
88.9705
31.4598
11.6707
17.7951
116.422
37.1248
10.462
93.0276
96.7416
37.2269
220.648
29.7857
18.9547
7.19085
12.5126
4.60774
24.0591
10.5929
6.6148
25.0884
13.39
7.47804
46.6792
18.8212
8.17509
72.589
8.571
14.3247
24.4082
5.11794
7.94985
23.5091
5.58742
18.8706
49.253
263.715
29.0333
30.914
94.9202
10.4833
17.8504
44.0716
7.9519
14.4125
30.0816
6.5326
14.576
41.8998
27.3307
23.3912
14.2459
68.8298
102.327
28.6307
79.1075
108.638
261.181
20.7153
34.461
248.033
49.2826
9.42739
28.3866
7.47565
17.0059
11.4915
31.3157
6.61213
10.6239
68.1426
27.2018
11.8305
27.7665
8.08105
17.6238
7.13953
32.0561
23.2552
11.8863
18.809
8.52084
9.78002
26.234
281.92
34.5228
27.1781
49.8037
23.0508
19.6051
402.238
53.4084
35.2247
14.2918
142.421
34.3246
128.09
47.4369
77.8187
17.7876
57.4118
9.74363
38.8431
11.5453
15.7245
100.089
126.978
69.4641
324.612
122.75
112.711
54.0407
42.9938
145.902
326.97
121.229
33.4917
18.3809
14.7752
91.2733
12.7481
38.8322
65.1043
65.5836
32.0581
42.4874
29.3483
22.2477
16.3417
6.97265
10.0438
9.12533
14.6766
25.9324
18.2455
316.927
107.549
27.7674
19.1837
63.2015
31.5021
8.92212
5.77997
20.0935
17.367
7.71143
6.64089
30.5761
12.8934
115.393
28.5966
18.3584
11.2598
40.922
20.0525
11.1545
38.9484
8.58106
19.0754
7.66523
12.2439
26.9918
78.2102
134.656
393.094
48.5398
19.0568
30.2156
10.4892
71.4003
15.296
35.8399
81.3743
37.7228
16.6258
150.555
22.2121
53.6404
415.095
370.163
34.4038
21.8681
9.19626
11.3411
13.4935
23.3614
38.6096
533.207
548.256
61.9486
498.626
28.6115
110.401
50.4652
652.491
76.1918
35.7687
61.3198
233.826
136.381
57.7428
20.0188
23.2069
56.1749
34.4669
83.3459
28.1753
508.147
67.8501
49.5356
157.505
42.0203
13.0056
6.45149
23.1634
25.2028
8.32433
45.2741
9.2678
17.0394
102.514
15.1612
38.5313
26.7489
11.1602
55.2369
21.9731
393.065
37.8699
24.8135
74.7772
38.5733
14.5139
80.0516
156.194
398.927
354.556
509.072
198.512
100.193
526.279
693.261
142.227
55.9949
23.1923
331.205
26.7488
95.8311
15.6775
115.237
45.8993
35.0144
16.5194
7.89385
11.012
51.9275
26.8724
112.603
44.1755
50.5294
58.6721
225.962
540.067
1181.26
34.9552
23.9995
63.7481
19.7866
69.7732
104.467
17.8875
125.707
44.8829
156.92
17.7971
292.8
20.6202
93.5296
279.12
591.961
1363.91
44.7793
41.1236
15.2913
12.1548
60.0317
14.4451
67.4843
60.1645
108.251
925.448
81.6618
73.5269
356.694
23.7967
14.4963
62.8374
65.4626
84.0703
18.2886
18.3831
41.2134
796.504
48.6827
106.944
69.4861
176.32
28.2531
31.6018
191.241
29.5954
90.9764
42.3852
115.165
23.3489
160.801
132.493
284.683
97.6845
197.246
328.311
818.576
118.252
63.4879
19.1313
105.415
15.0746
70.5992
12.4372
90.413
409.098
1080.84
115.084
51.3511
73.2397
83.8759
164.165
41.6082
40.6375
28.0547
447.869
36.218
18.9702
8.92493
10.0069
13.5448
24.1811
33.1356
408.538
58.715
23.3494
11.3882
38.3285
17.3323
41.5538
96.4194
82.863
38.2927
15.287
94.9313
22.5358
408.582
40.6593
9.98657
56.0356
42.7147
19.0946
12.0848
30.8784
14.4998
10.0001
9.65981
55.483
21.4284
7.56144
13.8126
32.4627
10.3388
11.4865
44.1184
30.1611
13.6038
42.4748
8.85986
13.8528
71.9278
31.6494
74.9006
19.5825
20.3889
45.0063
46.7847
203.677
80.4211
37.5655
94.7769
354.757
51.6278
37.5176
73.1104
27.2301
136.773
410.838
42.3194
553.83
474.118
120.567
29.6965
13.1107
51.1975
64.6593
121.296
18.0094
19.8499
47.8348
151.855
75.8448
80.8427
34.1728
77.4109
641.163
33.3241
58.7595
216.617
21.905
49.7325
157.397
52.1665
56.2405
638.564
32.6672
561.725
79.0249
211.059
151.083
538.138
48.5768
439.223
62.0211
105.431
68.0269
69.5334
27.2309
195.046
195.55
27.1297
24.5821
11.3242
27.4688
55.2134
11.6056
22.8365
59.0603
25.2629
61.569
27.4828
11.6414
11.6648
61.3666
25.2617
26.1451
155.265
180.8
22.1758
10.7387
50.3952
16.4763
6.07026
50.418
10.6879
6.1337
79.3668
137.803
35.1198
97.4923
70.1717
85.6138
74.3677
34.7886
89.278
73.5142
71.4387
71.2995
28.0308
196.298
27.0337
216.702
24.7926
11.3004
26.4831
61.0819
11.2975
59.9051
25.6684
16.8328
8.42025
18.0539
17.9875
66.9327
19.3314
7.84756
24.9684
60.6677
27.0076
11.5453
11.4947
60.3542
24.9864
41.2792
585.391
50.7893
11.1473
50.4252
6.07235
16.5527
10.7014
52.6345
6.21233
52.9584
52.023
36.2058
289.766
33.5992
11.8153
5.73371
17.8985
34.0636
6.345
10.0705
37.6848
17.1472
41.8004
20.1343
6.94892
7.94124
44.428
14.9764
20.9101
56.4353
69.1618
17.2596
12.0129
19.0965
5.90845
3.48321
24.5692
10.7988
3.25099
27.5816
218.941
247.671
37.3524
15.4736
53.6703
51.8654
53.9909
38.4984
38.0185
16.4164
7.36146
19.216
44.9165
7.3748
44.4556
16.2965
15.3339
5.16001
33.1905
12.8878
33.5858
14.6738
5.84475
15.827
44.0613
19.1877
7.38991
7.25694
44.341
16.048
41.5805
41.1947
13.6856
30.393
4.51781
8.4765
15.1408
28.5464
4.45006
12.2499
93.0208
17.1131
40.4776
55.473
7.83277
127.461
34.2491
10.6624
22.0972
25.6029
12.6865
14.0828
9.4928
165.397
43.9279
15.2223
9.14355
149.802
42.8869
12.5002
34.4779
38.4239
17.7712
33.3302
17.0299
17.312
15.9642
36.5948
45.9826
31.5087
15.7609
15.5335
46.4266
27.296
9.86577
190.946
68.7764
16.0548
14.1624
582.447
44.8813
13.7972
29.9198
42.2885
14.9777
78.7258
79.9682
81.0529
160.286
48.0828
172.808
81.6357
172.597
79.9566
48.299
174.012
81.0958
54.7148
56.5772
22.4044
9.58763
22.5792
11.4771
22.688
22.3549
9.60979
28.8651
14.1276
37.6965
69.7481
13.8238
68.971
29.0566
26.6802
65.0347
31.499
13.1714
12.8629
63.3698
27.5575
57.5313
57.3133
21.3217
22.4652
11.0479
9.31739
21.9724
21.9282
9.13511
127.139
93.6367
58.7493
58.0908
28.1129
11.918
62.6912
30.2363
26.4495
12.8909
66.4871
22.5062
9.16541
21.341
11.5731
21.0598
23.1188
9.55998
58.1871
53.9925
28.1878
66.1326
30.4755
13.0584
13.0635
66.4426
28.0306
22.7259
23.1733
11.6863
9.62503
23.3439
22.5503
9.6863
86.1665
297.315
28.8682
30.4095
62.2998
50.4185
17.4132
6.05101
52.233
12.7216
39.6321
25.0889
5.5682
20.0985
14.5081
32.6377
11.505
29.2167
16.5739
259.448
29.5667
11.3621
9.66327
22.9232
76.0859
265.381
16.2977
36.2154
12.5583
5.32491
37.2242
15.5862
5.41732
42.5126
44.1504
16.5459
7.37621
45.8926
21.2463
16.4231
7.48341
47.6797
15.0435
5.4399
35.531
11.7295
15.2439
35.3866
5.19482
41.8082
41.7943
17.0051
74.4037
27.4369
8.44626
7.82334
55.0031
18.1123
15.0801
35.9685
11.9695
5.29789
35.4678
15.311
5.20061
22.5376
48.6004
11.055
10.8797
31.389
9.00766
32.5634
46.1875
50.3965
204.726
33.719
64.0494
60.6764
60.7132
88.6927
41.7474
51.7567
22.7446
125.86
218.354
32.1831
32.3198
613.354
9.73264
14.4792
29.1128
32.9064
11.0136
12.5365
22.463
15.2408
50.5334
29.8526
77.6738
22.165
18.4636
41.1886
13.8733
16.2869
56.4529
32.1749
20.1732
12.0014
44.3401
32.513
241.368
65.2695
372.398
47.1947
46.9139
136.003
17.1066
53.0087
45.909
11.1167
13.2394
52.5463
13.9956
23.1488
20.4186
125.172
46.2749
30.608
16.8563
81.5026
400.279
90.7269
81.3169
67.345
1066.38
103.533
58.9447
21.3945
24.1781
77.9202
31.5505
78.3826
147.084
55.6715
27.4191
146.396
103.266
42.2547
270.701
194.319
74.1617
32.3835
336.507
46.3791
833.832
120.124
8.55714
10.5047
41.7359
23.8228
10.4552
8.44159
31.1801
9.81795
11.7725
71.4208
29.6366
14.5741
42.5165
8.4891
11.7787
81.0997
20.5816
76.0794
13.6272
17.5407
61.1382
523.014
349.336
1402.79
534.593
1481.31
229.225
99.3266
138.525
836.547
111.379
187.511
1027.4
393.869
71.3547
72.8577
99.5517
88.9313
184.01
104.235
225.018
72.8709
150.529
560.309
46.3448
1484.99
73.5022
261.037
66.1148
594.267
1123.9
54.9163
161.309
52.2543
86.9815
48.4849
33.7025
9.69443
16.057
12.6338
29.2964
47.2781
38.9765
42.3536
11.2632
18.4127
42.3031
60.1016
13.9154
190.355
51.2842
112.518
77.2762
530.939
198.628
110.492
57.5568
23.3602
23.2916
164.77
88.3791
16.913
88.0911
23.1474
7.29286
12.245
26.9508
8.72688
16.3851
39.2452
36.2781
346.825
19.6497
361.483
30.3407
33.4663
164.454
493.535
28.8889
16.2321
13.9283
67.9092
11.0202
49.0298
42.5596
80.2918
94.946
42.1429
387.257
28.9856
87.003
40.5244
159.857
24.4515
42.2511
23.0239
39.7884
17.7519
173.728
14.4055
87.4993
27.2834
39.3231
73.0285
411.845
49.6158
38.6347
119.884
18.3045
47.3486
20.6504
66.027
51.4664
29.3079
84.9694
78.1572
50.4825
492.035
26.3963
187.924
46.956
97.943
42.9002
426.34
617.624
33.0241
774.368
50.45
163.247
47.6036
28.3453
449.223
48.0736
173.485
39.7082
35.6885
107.937
51.1663
106.413
195.545
75.2604
48.0007
68.9065
100.55
184.179
465.42
632.587
528.522
66.6677
67.477
26.8629
11.693
22.411
50.4865
50.5407
11.6784
27.489
39.7115
9.62316
13.248
152.781
9.37382
132.145
43.0439
38.8697
129.163
9.14167
12.914
9.14527
39.1297
128.452
26.5074
50.5776
22.4304
11.6331
50.6709
26.665
11.5947
68.2289
71.7364
76.022
185.484
68.2471
548.118
84.316
132.288
17.7123
114.282
66.5879
67.65
38.9261
8.96172
13.0419
121.651
9.19472
130.396
37.3482
24.9354
10.4212
24.2231
17.7594
36.8206
24.2406
10.8026
39.5043
131.096
13.169
9.19782
9.22938
132.138
39.4477
64.6162
62.6826
26.1567
48.7296
11.5574
20.4002
26.6422
45.9345
11.3766
39.8346
19.2703
33.9122
41.1242
18.5181
41.889
14.4047
29.2078
41.0329
14.6396
38.8641
17.9825
21.8248
38.5295
18.1299
42.4661
14.7682
29.4916
43.1228
14.718
38.821
17.8244
20.9281
38.2859
18.0087
44.2835
15.0935
30.6525
44.8207
15.069
38.4715
17.8461
20.7853
38.3359
17.8964
43.8169
14.9173
30.2081
43.6052
14.9614
27.2333
10.6011
20.2808
31.1005
9.45277
23.5565
12.0674
32.1747
11.7308
24.4503
23.5508
32.4282
11.7274
11.7063
23.6738
26.8287
19.4942
9.02844
27.1903
9.19604
24.5428
12.1675
33.7629
12.1176
24.6915
28.3737
9.21671
19.7246
28.7111
9.40145
24.1394
33.2703
11.8982
11.9334
24.0344
27.8413
9.14146
19.3767
27.7187
9.20748
508.376
174.845
72.215
163.327
43.8423
153.361
69.8872
156.734
71.5461
44.3501
155.27
70.7537
55.9804
55.4693
22.0234
9.525
22.2499
11.2934
22.1747
22.0614
9.50525
28.811
14.3326
69.202
41.1901
28.8473
14.3291
69.1211
56.2065
56.4186
28.7789
68.6077
41.084
14.2503
14.3045
68.8743
28.661
21.9505
21.8235
11.2393
9.44067
21.9936
21.8226
9.48092
156.377
155.507
54.782
55.1485
29.7642
8.0374
104.425
57.31
34.5053
16.6626
77.1709
21.0497
9.98639
22.7366
10.9185
23.5326
21.0484
9.27734
53.6647
60.7781
29.1111
68.9424
43.3142
14.3886
14.4765
71.5475
28.7368
21.5791
21.6591
11.0796
9.44572
21.4774
21.7237
9.39872
23.3631
8.39862
190.054
13.775
25.1928
7.66904
23.0839
11.7016
35.5258
22.4444
11.6496
25.2859
36.2434
12.6006
12.3329
26.245
28.1091
22.0029
7.7541
26.0193
11.0386
24.8637
12.0907
34.7697
12.205
24.5949
28.764
9.182
19.1527
28.8492
9.19928
25.2433
35.3492
12.373
12.2776
25.5789
28.7898
8.31362
18.4444
27.9618
9.04393
174.418
15.1399
49.4467
33.6242
178.285
48.6242
32.8129
33.5352
187.976
34.2664
36.8696
191.197
35.8074
194.532
16.1813
50.6325
34.3904
183.873
53.0322
35.6938
90.3441
80.1514
39.2354
615.591
59.802
11.6509
21.1456
39.5937
11.6381
23.7313
10.6773
12.1334
38.1674
150.957
25.9313
133.993
20.7114
43.311
13.1486
14.6839
44.1437
30.343
27.0589
13.3674
14.5467
16.4122
83.4757
13.1806
13.6649
41.7637
12.9889
28.6889
48.0689
166.551
29.0702
182.531
30.9611
46.2417
14.3404
16.5214
62.528
32.5226
29.2689
15.5664
15.7238
42.7056
135.99
17.4793
12.6447
41.0341
143.203
12.8269
31.0074
164.932
162.823
31.4812
30.8905
152.931
161.773
29.3655
42.8237
17.474
147.253
12.8728
144.84
12.8074
43.3886
554.734
179.535
76.4796
50.9787
176.304
51.6957
143.723
146.14
28.7061
39.2399
15.0141
12.7992
14.2862
30.4457
38.5597
184.235
76.9837
55.4234
52.0729
209.337
28.6855
14.2849
38.9441
13.1169
28.2693
14.4165
39.3711
30.6578
115.779
12.8602
11.7728
36.8544
89.8954
11.2439
68.5738
35.5393
193.101
56.6518
50.718
566.745
20.8759
133.876
103.933
26.5178
22.0446
60.0282
33.1925
15.6801
16.1512
50.537
16.12
7.09196
12.4315
49.6863
13.9044
12.6078
7.058
14.3829
7.05086
14.6424
13.1344
49.9886
12.8234
7.14815
14.3716
13.0806
46.451
6.93616
13.1697
7.1286
12.6034
46.7504
61.2819
724.611
30.1154
52.7295
75.1256
277.592
17.2077
33.7946
156.292
162.383
34.1946
50.4253
16.037
38.2546
188.795
201.953
16.2129
50.1482
11.0137
29.8518
11.3963
19.1517
11.2919
27.8694
10.3218
9.55777
15.0347
14.1055
70.4836
22.3496
7.56721
16.4674
45.27
147.411
33.387
14.2581
161.438
41.0538
15.0667
30.542
148.278
104.495
33.1191
47.1054
15.6595
34.1703
178.718
171.63
15.2591
48.7037
45.3137
14.1448
158.331
19.0589
45.9351
155.668
14.0619
12.3109
14.1241
7.12146
47.6082
7.14014
46.87
12.3893
31.6588
164.784
166.573
31.3429
32.4782
177.132
173.294
33.0361
43.8158
17.8322
147.94
12.9807
43.3322
150.154
13.0698
145.586
26.0677
24.2508
168.948
165.956
60.855
40.8055
21.6084
14.7426
46.868
25.6099
43.4201
122.283
75.2882
604.941
20.6859
65.3599
28.7705
45.3253
15.1965
69.0893
27.554
44.6889
47.2351
19.9577
14.4661
161.443
46.5911
14.5444
164.038
12.7466
14.7037
7.17424
48.2897
7.24796
49.2434
12.5438
34.8565
199.494
36.0104
189.511
47.6033
20.1563
14.7241
168.064
48.1939
14.6525
165.926
34.2701
180.311
184.692
33.5498
25.2196
29.2207
56.9725
25.4398
28.7118
56.3578
25.3101
27.3114
54.6418
25.1543
27.6412
55.0581
24.0791
50.2677
22.9865
24.0489
50.3014
23.2717
23.2801
49.791
24.5888
23.4038
49.458
24.2981
42.6144
231.252
22.4271
25.2141
99.0648
29.7968
246.97
251.984
72.7172
87.8504
12.9963
7.45647
5.4471
18.2823
18.4927
5.70522
12.1912
76.2066
327.361
121.337
33.0531
23.1604
25.0246
19.8613
17.2193
8.24453
22.2179
6.56496
27.2437
17.3678
6.23458
53.1906
77.778
125.405
40.4856
30.3039
7.53999
20.736
10.6282
27.2857
19.1369
10.1604
141.365
51.5404
59.5642
117.789
32.2659
46.5356
12.1116
17.7984
12.8435
26.2333
58.2969
23.412
7.23892
13.8946
8.79017
16.05
9.44209
19.2996
349.021
134.388
78.6334
36.69
14.7507
114.836
22.1943
47.5869
14.4996
80.6305
24.1625
73.8867
16.9695
21.9558
15.5537
326.636
22.0409
352.275
31.0356
36.5259
27.4415
25.8528
56.6346
36.3027
40.9511
4.57401
17.423
5.32833
10.6531
4.39541
5.8492
11.8537
7.75127
29.277
6.34281
17.1783
5.55832
9.37711
24.8986
9.90947
94.828
14.3319
29.1564
14.5233
9.14626
38.9034
7.01765
4.66247
14.7322
23.6977
5.14896
6.35212
21.1711
7.01946
36.5387
11.5565
26.9998
10.0656
8.12524
20.3573
5.23469
4.48668
18.9306
9.82939
5.92071
4.07165
14.4149
79.9914
137.025
58.404
348.138
58.8754
46.2265
87.0971
37.6242
22.8302
40.5006
11.1213
12.5216
33.599
9.6563
30.6367
42.001
22.3753
36.5843
26.6621
20.7388
7.70784
23.6294
11.1315
16.6326
8.52554
32.2993
10.0389
26.9754
12.1559
47.7775
13.9618
9.12789
29.7009
7.78357
17.1299
6.40191
25.0377
6.18614
8.28605
22.1171
10.3414
16.5796
57.1024
39.7389
13.9889
11.4171
36.26
17.401
142.192
27.7914
20.9919
22.8089
112.883
10.7478
23.1896
6.87481
33.287
7.83012
9.07975
38.4274
16.0152
17.2134
325.686
52.7433
24.5539
12.3482
74.4434
17.4815
4.31876
10.5643
5.52311
16.0055
11.2926
5.73871
286.361
76.0163
54.251
27.793
10.2045
15.175
90.73
9.57917
61.0197
37.4758
113.86
38.5637
93.8974
42.9189
24.6369
40.6249
7.62393
11.6852
22.6376
8.01762
45.488
109.513
15.3569
11.2823
37.9881
43.3167
16.8589
91.6405
49.0728
35.2769
28.6714
309.111
83.9189
14.9981
20.0814
60.4801
24.2582
38.0098
25.2088
30.4381
311.253
120.01
42.7023
47.5844
98.927
18.1637
23.4524
25.278
119.072
101.194
78.9841
281.731
30.6002
6.34257
20.004
10.2019
38.0361
24.7068
8.97585
86.5688
104.235
57.2173
10.8748
23.4162
109.695
14.0451
42.4907
302.295
293.768
77.6984
16.005
19.3315
94.3394
13.6935
42.2036
28.1237
60.1694
117.649
36.0565
87.9855
119.596
144.167
212.339
723.372
57.9889
20.6081
47.4967
12.1608
50.1685
82.967
15.6245
61.5802
17.4978
14.0709
68.3417
50.1544
14.4924
78.0769
578.674
41.1601
32.9826
9.15445
11.3023
32.2679
49.0679
11.4229
28.5446
483.769
55.836
166.285
44.1286
39.2917
16.1033
9.10553
35.4447
31.4221
44.8449
11.3846
12.5632
19.2921
102.533
35.6197
17.4059
65.7204
13.6191
27.2427
24.8175
467.201
56.9187
28.4623
97.3843
38.2698
18.4847
48.9293
67.8127
84.4951
37.9674
20.9063
8.86642
35.0729
9.62929
32.012
24.145
7.57474
34.0808
38.4853
147.733
24.8887
47.8955
40.0504
163.089
95.5372
18.4369
24.8972
459.736
27.2703
61.0314
214.585
124.811
86.0322
109.268
101.96
222.09
67.5795
36.4559
10.0705
11.7325
54.1072
57.0412
8.94339
50.3113
96.5437
87.3451
120.69
70.3991
26.5817
27.4476
9.50431
6.11385
40.0723
19.5404
7.35705
186.248
943.922
374.374
70.1505
44.3857
43.8366
48.9499
11.54
55.0338
12.0469
27.5652
14.155
10.002
37.8914
10.9234
35.0895
8.77036
24.2885
10.7212
8.85969
35.9215
109.114
165.406
134.89
92.9464
204.456
120.176
251.473
446.433
159.999
104.669
187.068
160.219
95.2819
1458.74
268.287
528.443
541.291
908.913
987.972
223.76
31.7352
65.7325
23.4847
137.277
32.3855
92.6513
72.2351
73.8195
52.6518
647.947
232.688
32.0146
46.4257
49.042
138.114
50.1738
12.9714
24.871
14.703
39.231
18.4278
34.85
184.178
44.4763
43.841
500.248
31.2995
135.571
387.517
108.819
134.046
21.6694
45.0048
28.5836
62.8917
525.739
44.7445
11.4335
53.2334
17.4416
32.8686
13.1742
53.6735
103.327
33.5083
48.5439
60.0298
27.654
8.27381
25.9283
12.8786
18.8989
10.7862
42.5631
169.483
93.7671
64.865
462.545
511.572
567.613
128.021
38.2241
93.4997
21.1915
17.5089
14.7571
66.8622
53.2993
386.639
105.245
176.113
251.839
79.2922
167.567
598.405
65.1645
53.1514
90.464
976.002
70.7007
48.2444
60.3689
122.53
21.7441
89.0738
24.5529
97.3278
27.0459
113.916
190.752
172.368
46.8633
29.4262
35.5093
411.337
143.3
1301.27
52.745
191.529
211.698
35.773
25.2518
29.0036
18.2936
140.97
20.1105
52.9388
33.2495
20.6047
14.9372
26.789
16.9081
47.4759
126.96
1420.93
60.3537
122.874
20.5384
18.6886
18.8028
90.3998
81.9426
1321.73
66.7108
49.0928
38.261
219.745
21.6391
34.8771
20.9516
64.4147
58.2595
74.7692
530.813
182.842
58.904
27.9813
61.6792
562.756
137.38
59.6542
11.7308
73.727
18.5947
63.1053
13.2384
93.6781
392.667
110.125
182.495
149.809
60.5977
10.1641
12.7934
45.205
11.0742
47.0528
38.556
842.157
75.5245
125.355
21.5079
16.966
14.938
113.155
84.7343
968.957
1008.9
257.12
114.386
120.476
31.9024
11.2682
48.7034
22.3607
51.1878
27.5587
12.1179
14.1419
13.024
28.8562
494.65
14.6568
62.6047
15.5265
30.5892
16.4676
15.7692
16.4878
100.944
78.3216
33.0974
51.1002
22.2288
11.9084
51.1345
33.9676
11.8128
121.633
19.5906
123.298
125.82
19.8035
124.665
123.704
124.68
17.4153
18.1861
35.46
18.2888
17.2496
34.8935
12.2243
50.4617
22.422
51.0697
34.4597
12.3499
17.5885
35.8303
18.3124
18.3229
17.6306
122.972
120.663
35.1026
51.8962
12.4721
22.6163
35.2442
51.6569
12.4314
159.95
19.4954
43.1294
9.69109
42.7745
12.9359
45.8911
17.065
26.5035
11.5678
3.19695
8.95487
7.64485
6.70219
18.7843
6.42572
227.381
185.888
19.0386
37.5808
16.5966
13.8946
26.2076
25.9365
22.9538
3.48463
9.83833
7.73079
10.3114
21.5203
7.65392
16.0636
16.0703
23.0319
25.8344
17.2267
16.9676
26.6799
5.23212
12.2706
11.7606
26.5713
12.3381
11.8498
14.9274
127.057
14.8064
29.6128
28.987
27.2476
5.34592
12.802
12.2738
27.6965
12.5926
12.0682
14.7554
127.551
14.6325
28.24
28.5156
4.8653
6.19235
10.1042
11.7744
10.9661
5.95588
5.09476
4.61059
6.30553
57.9244
11.8545
10.2915
3.44375
14.2521
4.11788
9.76689
24.4273
11.1117
11.0634
9.68117
4.16112
4.07856
11.0373
24.3838
9.69084
11.0026
4.09898
9.65918
26.8423
12.2413
11.5844
5.11483
26.5349
12.3444
11.5321
27.7372
26.2747
27.5831
27.5712
15.4562
495.072
23.9733
27.7625
27.5173
27.7007
5.1957
13.1622
11.6934
12.897
11.6236
28.3721
3.38957
11.4372
6.18867
35.8453
3.57518
6.05042
11.4453
3.33341
6.02944
35.9754
11.51
5.97
3.35138
11.4398
4.34672
10.3207
11.8697
25.9527
4.41579
11.6945
10.1683
4.21321
11.3074
25.324
9.90661
11.4195
4.21816
9.89973
120.184
19.007
118.88
116.323
18.8222
117.699
112.936
117.36
33.9112
12.1056
48.0916
21.3336
47.9757
34.2507
12.0294
19.5075
26.6273
72.7471
24.602
20.0616
17.8378
59.224
22.6474
23.3956
18.7712
118.652
119.816
32.2594
47.7848
20.6664
11.758
46.6766
33.4185
11.4498
120.524
119.218
19.0484
21.6652
51.4968
18.9408
21.9612
34.4643
12.1793
49.9381
21.9208
34.4843
49.7975
12.1602
121.472
121.781
18.9675
51.6
22.2135
22.0013
18.903
34.2298
48.8778
21.7449
12.0084
49.2731
33.9938
12.0777
13.1434
13.4733
24.0805
23.9096
20.8384
2.41362
9.05064
5.83972
8.97832
21.012
5.68396
24.1099
23.9615
14.2904
13.8602
25.8527
25.2724
16.3958
15.2649
21.5894
2.64859
9.31497
6.14839
9.3374
21.5589
6.23426
24.5804
24.6211
14.9704
15.0852
14.3741
13.6521
36.758
76.3828
11.7027
17.7093
58.4865
15.7738
18.2223
62.8751
82.0081
66.6064
16.0083
18.9487
13.2459
43.8608
10.544
43.808
10.7765
47.9577
12.9393
18.0557
99.6455
29.2027
91.1116
22.9424
76.4272
22.1541
12.9884
29.9033
57.754
13.3353
46.4941
10.2756
18.0037
10.4355
8.69018
19.4318
41.0014
28.8254
7.92657
11.6504
14.691
73.7926
51.8723
21.9563
41.1439
15.9404
21.3209
111.734
181.753
75.9182
99.3094
26.0229
42.2101
148.498
35.2368
485.546
52.9319
35.3626
394.452
43.3657
118.095
52.1
60.4486
7.26785
27.8338
10.8241
27.9553
9.11383
8.37834
20.2304
37.7003
103.064
18.1377
110.617
24.8556
25.9195
224.003
47.8675
73.1436
57.2144
67.6439
47.5051
156.538
30.8427
38.3848
32.2289
793.663
54.3464
182.904
48.0608
35.0269
954.813
51.5114
562.507
11.4118
12.1443
43.0393
50.0088
45.7931
11.512
13.0099
12.4536
16.526
50.6547
90.0946
63.4364
12.3004
18.8982
11.407
35.7254
46.1617
8.59386
54.4966
9.81987
10.1092
13.5967
74.3201
98.5415
18.983
72.9307
15.0314
20.5617
9.03863
12.6141
43.4974
21.87
16.0205
9.50052
12.2139
7.91871
17.0592
11.7626
7.53479
12.6223
8.2124
7.76462
187.19
151.641
135.68
99.3047
95.9898
107.208
122.285
101.66
116.139
111.96
99.3014
112.528
1025.23
914.752
155.749
116.245
1063.48
840.555
220.631
369.736
846.471
8.49113
11.7886
30.1006
26.4938
9.54156
9.23503
24.9658
8.59712
23.7518
6.85507
21.2932
7.96061
23.1079
7.55637
7.78691
22.0324
8.02543
18.4589
8.1728
23.3421
7.26905
14.9503
14.6412
103.968
41.6557
15.1881
18.1252
26.9207
15.4486
9.31007
95.7468
20.817
20.1951
21.4455
10.6786
18.6391
43.0458
6.18205
35.9595
10.9526
11.9891
102.884
15.6411
61.4188
16.9361
45.9481
15.749
38.988
13.388
9.39224
15.1512
47.9322
55.1428
12.6872
10.7923
45.5649
8.56476
23.9975
8.7789
48.2214
10.5862
7.2126
33.2892
7.6479
20.7273
35.3635
8.32625
8.74369
27.103
7.22214
414.654
25.2771
43.561
147.287
36.5138
127.358
71.4894
17.3371
31.7742
53.7014
178.148
24.7238
86.3942
17.5446
32.1054
15.5959
58.2398
39.7074
23.5262
59.0749
45.3097
34.6924
65.1731
38.6792
59.8334
89.4612
58.7214
73.2996
79.2494
91.0986
77.9241
47.3559
220.508
41.4792
633.965
52.6026
69.4221
75.6706
96.6928
806.373
377.676
96.1481
768.484
175.585
91.0848
178.029
122.385
39.5353
961.375
48.6665
1018.8
61.2278
262.119
45.924
25.6228
21.401
99.3151
112.01
22.6595
24.5629
121.825
33.3423
395.005
39.0779
113.304
27.2783
51.8588
152.608
30.7186
237.745
129.233
25.875
26.8368
155.96
39.0242
69.3059
73.5134
103.051
52.4026
59.3151
33.3834
32.3027
77.4496
17.276
13.3364
48.1211
8.86097
53.3579
9.38514
22.526
37.623
119.446
18.9474
30.9723
106.817
440.4
243.966
148.583
103.121
79.8629
72.8091
110.662
109.611
92.4194
115.446
89.2706
22.0765
8.48671
36.4842
8.47969
27.9639
7.36714
22.6682
128.299
225.572
147.407
146.146
89.6423
61.0254
71.4847
58.4993
121.55
48.4009
28.5858
34.3374
1140.62
22.861
13.3981
33.6938
46.8938
18.3306
17.7298
71.7253
51.0542
1182.48
46.0067
40.5358
15.83
125.761
180.356
54.2022
417.706
25.6061
88.7986
21.6909
51.3986
213.031
8.74651
8.03813
24.2244
71.8502
72.0226
8.04216
8.75762
50.824
9.70812
422.734
53.7635
61.3967
45.4308
31.1634
119.361
33.9769
43.4519
9.08976
74.8266
24.7232
8.0508
73.8684
9.15265
8.02933
115.908
18.8445
115.893
113.657
18.811
114.995
43.3056
30.5445
100.357
30.9565
41.5801
9.18917
7.88036
70.6687
25.2489
75.6558
8.7747
7.99841
43.5267
100.17
31.0425
30.9462
43.5425
9.30783
76.2073
8.09247
25.4191
9.29717
76.4031
8.09733
27.0903
5.13877
12.5982
11.2203
27.1214
12.6011
11.4623
27.106
27.3527
28.3358
27.9846
27.5051
5.35435
12.7998
11.9759
27.4091
12.835
11.8751
27.4498
27.1788
26.3202
26.9839
5.12582
6.33315
11.9681
11.9959
5.12014
12.018
6.43852
5.10211
11.8106
11.9573
6.36427
11.9048
5.08392
6.43632
4.04337
9.60726
10.906
24.2385
4.06102
10.9327
9.60675
4.03454
11.073
24.2923
10.1353
10.9283
4.15825
9.64744
27.4174
5.06168
12.7094
11.2785
27.4022
12.7403
11.2647
28.4088
28.4622
26.9651
26.6209
27.7407
5.09583
12.9317
11.4396
27.9006
12.8702
11.3461
27.7751
28.0862
26.4656
26.4309
5.08843
6.5307
11.6237
11.9925
5.08054
11.6982
6.53403
4.99825
11.6683
11.7482
6.31547
11.5802
5.02549
6.37461
4.99255
15.9761
12.9315
28.4488
5.2353
12.4859
14.4179
4.773
11.2263
26.8747
11.0723
11.8781
4.32996
13.1451
2.59905
11.6227
4.51169
12.2438
4.80218
200.377
4.10869
11.1096
4.6859
12.5635
7.8401
18.1948
21.7679
82.0148
115.57
17.1635
110.198
113.977
17.8141
113.023
118.619
118.434
34.0488
12.054
47.5853
21.2215
47.531
33.9921
12.0572
20.171
27.4838
91.4224
20.1228
27.8219
118.798
118.869
20.1762
91.3598
27.809
27.8636
20.1475
34.0659
47.239
21.1789
12.0778
47.2828
34.1201
12.0818
134.757
120.181
31.7034
30.2082
93.7097
39.4854
28.7851
51.7235
7.17513
61.6008
22.2963
7.98331
52.1363
15.1199
417.903
21.0201
90.665
27.5905
27.8184
20.1537
36.3199
47.474
21.5583
12.1473
49.2202
34.4125
12.3182
12.7074
12.6377
23.8436
23.8275
21.3101
2.23097
10.0645
5.23205
9.07311
25.2839
5.14251
26.1422
24.1325
12.4822
12.3303
61.0703
50.2812
2.61962
16.9674
6.66732
4.23863
92.9636
4.40332
17.9855
17.4906
31.469
41.9848
14.198
17.101
201.936
230.646
44.9961
12.1945
20.2983
11.2393
43.4138
21.3265
12.5351
45.8634
20.9973
44.1039
21.9114
193.68
186.528
46.6889
24.7541
13.4988
12.1447
49.4716
23.158
13.2264
47.4914
23.2698
51.2432
22.5481
25.2884
196.744
47.692
186.238
24.3541
192.008
38.8583
45.181
119.621
42.3593
18.947
152.631
22.4901
621.937
20.4321
10.9736
45.511
14.2608
21.9423
42.1883
10.5
130.29
30.16
140.05
29.0181
9.95573
23.1633
16.1831
11.7543
60.5118
27.0082
10.0815
112.517
24.5357
80.7822
25.3255
220.235
47.587
42.9592
15.5697
190.794
46.8307
51.3431
115.445
34.9471
27.3063
611.261
110.818
25.4347
17.0505
75.8483
68.0072
11.3687
36.7023
9.9883
5.67461
11.1358
37.3124
5.72169
11.9214
36.6517
116.708
24.0218
36.3479
23.8804
11.9502
11.7737
22.6478
32.1773
110.325
34.9305
11.3531
23.4648
11.4981
10.1906
38.5468
5.83621
37.907
5.82998
11.5278
120.333
22.7184
110.933
23.0065
109.832
110.554
36.9021
171.573
47.1312
12.0595
34.2864
182.657
12.5982
93.0739
99.572
16.7309
30.236
9.45652
9.94919
9.21774
17.276
29.9521
38.7645
48.8221
222.398
14.138
193.141
13.0937
41.7857
16.1437
8.65356
27.9214
9.74208
15.0948
8.98172
29.3686
9.93177
35.5866
8.75042
5.34414
10.6363
33.0389
5.16831
9.50348
13.3716
41.1789
18.4858
13.6582
9.50279
18.6467
9.60045
20.9488
24.7585
44.1615
14.5976
10.5532
18.9214
9.99169
8.84477
33.2841
5.23711
10.0486
33.1894
5.19209
123.624
26.9658
125.775
27.6551
133.549
128.517
6.19292
45.9486
10.9306
10.8735
11.7654
11.8975
5.98153
5.71046
31.4634
10.4241
10.5153
9.16229
9.4381
5.9043
12.6408
6.1645
49.2861
11.3725
12.8849
47.0208
6.05323
12.3996
36.1121
122.567
23.5048
37.8116
11.6783
25.0083
12.878
26.7714
39.3938
125.801
38.6826
13.0922
26.0454
12.1518
10.8827
38.4888
5.86129
11.2933
43.8195
5.99565
77.4377
239.122
665.053
109.233
104.677
18.9537
34.8385
112.165
33.0053
107.752
106.367
19.272
30.5808
9.92399
10.2614
18.31
10.3402
30.6092
95.6801
16.2293
637.037
23.2821
67.6452
30.0715
20.0961
10.9577
31.6158
10.493
20.5311
10.7255
31.2624
15.0464
23.3156
6.71642
52.8633
13.376
8.77743
68.8591
12.7511
50.9133
40.1527
176.15
13.667
47.6156
35.1334
9.10317
30.6569
10.8784
17.6465
9.78575
10.3392
15.1276
13.6744
27.9306
40.4883
143.081
41.0352
13.4305
27.9857
207.488
40.7774
190.745
35.6711
139.658
168.901
21.4803
19.624
43.2903
21.6351
19.4363
42.8345
20.46
18.1608
39.795
20.3143
18.3704
40.2207
22.5622
49.992
17.7686
22.333
50.5473
18.1592
12.1081
35.4531
7.88173
4.79028
35.4698
4.78667
12.1279
12.0529
4.78052
34.9483
7.87231
11.9528
35.2494
4.78798
22.7353
52.1728
18.9009
22.9781
51.5954
18.6872
11.5777
35.4723
7.50042
4.81105
33.6007
12.141
4.70122
11.8734
4.77679
34.8377
7.70954
11.9827
34.5557
4.75044
64.782
14.3537
20.5566
96.0643
140.678
14.943
52.7264
48.6354
9.52163
12.8447
36.4395
13.3222
54.6625
30.4849
91.7606
29.1774
17.7525
401.082
19.6416
115.855
151.77
402.68
371.133
57.296
130.851
68.3257
49.2585
93.9017
84.4709
11.8869
14.2626
40.967
17.5751
62.2379
45.0858
26.8913
36.0026
21.9417
380.578
20.5219
29.8733
26.9747
137.951
22.0951
56.7788
26.667
39.649
14.8345
8.83968
38.2442
75.4579
9.9842
90.5319
12.8756
16.0439
305.733
14.051
43.3427
22.65
10.6852
108.838
20.8489
31.9752
36.8522
17.9323
47.4791
16.2919
8.28808
30.8425
26.1864
11.8239
68.2077
98.989
20.6116
15.2631
336.394
15.4201
72.7436
42.0083
19.4436
7.60992
9.95028
23.9171
10.6678
34.8327
302.499
101.637
21.3571
6.31
5.15022
16.3964
6.83397
15.5936
25.9104
39.1622
15.798
11.3937
119.672
10.509
50.5399
78.1111
22.5143
24.4981
5.36646
8.1486
7.30526
16.4336
29.1245
68.1569
90.6253
337.795
39.6233
25.3726
22.7275
43.8937
17.8339
7.07139
5.59458
22.6879
5.37757
27.2131
17.02
60.2982
111.603
137.533
50.5793
81.851
382.495
104.024
36.1481
25.7709
21.0662
29.8791
14.4854
24.534
66.1137
15.6128
19.5773
87.3666
11.196
8.91848
23.9161
57.9386
7.76526
14.0069
43.333
9.9281
31.7358
6.78015
21.286
9.92649
7.05369
37.1695
16.9744
26.7185
296.393
22.6244
23.3353
108.032
92.3505
106.824
68.0403
28.6794
49.4051
34.1981
25.6229
8.44311
5.91937
25.6594
6.30251
28.3555
19.0732
15.6466
5.70356
4.07025
12.3684
5.14331
18.2525
11.0222
349.004
123.092
96.5316
47.7337
116.571
41.6379
138.461
356.719
333.5
33.8828
39.9479
52.4655
77.0367
122.762
33.0612
60.0128
39.5168
24.5922
34.2773
26.1936
352.824
80.2565
54.8837
42.249
43.6047
12.352
74.1205
14.3716
62.6854
50.9739
10.934
436.977
143.916
23.114
5.95762
7.15133
18.981
7.86327
28.2889
17.7708
37.1647
47.6318
14.6154
9.25856
55.4924
10.6537
31.4012
87.7387
400.865
112.34
169.228
36.4792
35.5024
485.131
27.4536
69.2259
17.8515
13.6198
41.6512
17.7355
49.1835
62.3
79.4001
61.9031
24.1266
14.8587
110.03
19.6218
56.4517
94.2264
43.2206
52.0101
62.2209
19.324
5.35109
7.09834
14.9127
6.76805
20.7749
14.2553
29.6173
7.42448
10.5119
26.3157
8.21739
33.098
20.453
25.1535
42.6343
9.37486
11.4065
8.76986
27.1925
39.5251
119.188
62.5866
135.849
57.9042
399.767
133.323
35.9724
64.9233
32.936
77.7582
13.8108
17.0583
18.6956
80.6661
20.5741
13.9449
101.972
18.9758
84.332
46.9338
27.9205
30.7141
4.17363
10.4956
4.87037
16.674
3.90737
11.467
5.46931
4.65398
23.5099
14.4337
6.54721
15.4548
6.03713
5.01058
7.82021
6.08782
29.8751
22.2244
6.00372
7.93946
25.3144
9.19541
12.6224
53.23
32.4001
36.0482
12.0719
9.25776
10.7912
45.4694
14.1181
75.5876
10.4919
40.7269
15.4831
7.06478
17.0817
5.25447
19.9221
5.47901
22.5713
6.85889
38.4999
105.502
43.9756
18.5852
34.5059
32.1114
22.6658
280.489
15.7453
26.52
322.815
81.5337
66.3689
10.3899
6.36766
22.6747
33.1364
38.5388
7.46038
8.42431
14.9195
22.8776
117.964
95.5498
17.4309
19.4117
10.7533
26.9557
52.0932
8.87126
43.6916
7.97479
12.1779
15.3567
51.502
355.501
15.7347
76.6468
11.3293
22.8321
301.261
107.802
21.2565
90.4982
16.6299
352.694
15.7018
25.4514
43.2157
95.4776
48.9648
66.1457
25.3504
104.266
19.8645
18.2176
27.5818
35.2034
46.2338
52.1804
29.0887
50.6277
330.907
121.97
83.8615
42.8876
97.5216
6.51155
25.2396
9.32736
26.5575
6.93078
19.436
8.79752
4.9299
16.3733
3.99487
9.36313
5.17673
3.87715
13.1836
5.97923
24.1154
15.9078
7.83393
5.74269
17.5285
8.00426
329.938
121.639
25.1272
36.6646
41.6638
69.1971
30.9334
50.4736
86.5499
99.9358
17.7876
13.1973
125.05
45.4672
103.798
19.2422
12.3492
21.0288
28.0265
368.929
34.1658
25.361
24.5968
41.7732
39.2892
26.2129
15.5338
40.9628
77.285
11.2319
16.7722
92.4389
11.0638
364.585
52.0964
20.6269
11.9142
65.2401
45.2289
14.6176
94.5788
41.8319
13.4387
8.80529
33.2842
11.484
50.4583
26.9817
34.7587
26.6825
9.15028
7.96536
29.7524
10.6844
21.738
37.7339
58.4226
53.3491
41.5698
20.6426
18.3282
114.753
391.335
16.4882
26.8313
10.6442
14.4201
5.14427
4.23625
13.7803
4.18075
11.0303
24.8905
18.2056
326.173
22.7282
28.9354
32.7444
46.2281
48.1847
30.0805
51.8007
82.6652
104.816
46.7441
44.5119
36.3723
52.6017
31.1226
14.9612
6.1398
6.86166
30.0323
5.4083
20.4964
20.6995
12.6807
18.2292
6.13688
4.55612
4.81324
16.938
12.8565
63.0519
421.249
95.3563
134.28
36.9789
20.4853
24.568
32.2724
21.7879
55.7415
14.5839
74.3307
19.5084
16.1757
83.675
42.5468
63.1534
50.0952
36.6305
516.768
30.9546
34.8902
158.178
26.7251
41.3924
186.761
41.9114
903.699
781.759
32.785
42.6651
42.8864
71.4572
90.8449
81.5171
81.7014
56.1293
47.8241
38.7868
66.9226
25.454
45.7273
6.53454
6.20021
5.81314
39.0488
32.2464
104.487
103.244
80.6973
171.995
99.6073
97.3631
85.3341
119.128
20.6265
4.28647
5.50142
21.4487
4.96209
16.4885
29.0795
18.2739
3.97259
4.92961
16.1143
4.59409
14.3271
21.2607
84.9066
56.1585
66.8567
72.9553
833.663
28.8402
31.172
422.56
43.5416
201.942
71.9084
53.5322
47.1419
801.814
52.9079
77.0255
53.265
362.569
24.4353
32.5392
104.504
40.6245
132.016
172.023
30.239
10.3759
11.4789
84.1997
42.1078
8.43807
58.3766
15.7834
21.5252
11.857
18.0386
54.9451
10.1199
101.152
13.926
7.24332
5.66271
5.49034
17.2812
5.29445
6.48815
28.5824
11.6945
14.1972
40.6829
10.3016
49.966
23.7813
90.4768
19.7002
15.594
118.644
17.4576
117.351
83.3766
81.1394
59.9864
13.5492
11.7327
14.7114
78.4786
66.0765
91.6888
19.4576
17.6579
97.9234
18.0998
107.757
88.7207
79.4166
14.1829
13.2165
58.7273
14.9243
71.6066
65.8358
21.1001
7.16947
7.80456
39.6694
26.7798
6.72764
29.0178
43.085
425.39
28.5559
49.3496
36.1062
62.0199
90.3544
50.5872
127.671
76.018
492.544
105.199
182.895
81.1191
14.1216
12.5454
49.428
61.5178
17.382
65.4877
181.339
51.8098
45.3061
840.609
366.817
34.3674
121.316
19.6832
141.98
41.404
85.188
379.618
25.7528
95.1638
14.8496
26.3392
87.2781
115.308
21.3562
75.9229
56.986
9.55304
12.6007
45.8632
11.6483
39.1504
64.8008
56.9821
51.2417
8.41134
12.5569
39.5789
69.9494
10.825
195.237
802.916
663.864
42.8711
7.70233
7.24399
31.6352
42.9817
9.09922
42.4357
71.7562
14.8871
16.3293
88.7719
82.7844
13.9963
78.3501
11.6393
5.11253
11.3339
5.47436
9.47159
13.1143
4.98776
71.5603
41.2536
58.7864
53.1624
83.4264
96.3833
83.9509
101.836
12.9092
4.67431
14.9284
4.06224
13.2844
14.268
4.5423
78.3755
94.4552
65.0526
104.402
28.3893
3.77672
13.9504
35.7848
8.2751
7.20734
94.6555
22.9811
5.77482
16.0824
7.24973
11.133
6.89292
3.03081
9.29046
4.66431
37.0261
4.6173
246.644
1047.75
61.311
10.8079
18.0425
30.4267
114.422
12.2779
20.9364
102.059
147.019
39.1299
889.798
31.9593
6.80738
10.9725
36.8176
8.59761
28.4022
18.0779
44.5539
39.1073
7.14171
9.29422
40.9395
46.4681
8.02264
236.44
111.417
151.246
130.012
28.5358
5.67338
5.8397
18.8227
24.7965
6.98071
22.5232
31.6187
10.5777
10.8641
43.5813
48.8151
9.06935
30.1837
864.244
312.307
184.118
8.89024
8.03751
72.0315
24.1673
71.6152
8.91545
8.02951
74.7867
10.4953
11.0069
69.5857
76.6733
11.3146
11.3731
75.7399
8.94813
69.9516
24.1721
8.20524
71.1004
8.86015
8.22758
83.7591
15.5196
84.7696
88.6587
15.729
86.1492
72.6374
10.7621
10.8725
71.7037
8.5196
7.91553
66.0284
22.9782
66.8159
8.45045
7.93882
73.3989
11.1214
10.9916
74.2985
8.64568
68.6348
8.0684
23.2676
8.71266
67.8801
8.04567
2.66351
11.169
5.57208
11.3228
5.50499
2.73765
11.0545
5.80332
10.9936
5.76603
5.23537
6.00647
10.9574
5.53883
9.79617
33.5861
39.722
248.731
4.81731
19.4145
4.61205
64.5365
33.6432
8.22312
51.7594
45.7437
5.69307
11.8257
25.179
16.6992
16.669
11.8071
5.69804
5.6641
16.5213
25.1436
11.7962
16.6486
5.64747
11.7839
5.14751
10.6049
16.2178
15.768
10.43
5.21789
5.07863
15.6727
10.5435
15.6369
5.14356
10.3262
6.41998
11.7574
6.07962
6.50172
11.9169
55.9484
56.0374
55.5065
56.134
6.15015
6.53152
12.01
6.53796
12.0256
5.80479
11.5509
13.3986
24.3841
5.62896
14.5218
11.6309
5.38096
15.8542
24.8105
11.7027
15.0294
5.47331
11.6778
5.42625
11.6502
14.9186
5.51486
15.0592
11.3551
5.29398
15.704
10.72
15.3037
5.21431
11.0122
82.5738
15.0244
81.884
83.6289
16.304
83.8111
13.967
7.42449
75.3817
24.9339
75.6157
13.951
7.43159
67.8834
10.265
10.2818
68.0111
21.5933
2.71285
4.50941
6.88936
4.4859
21.702
6.8634
67.7559
10.3571
10.2835
68.2933
14.0181
76.7797
25.0268
7.46686
76.2047
14.1097
7.43129
68.9472
10.5124
70.0807
10.4144
8.20465
7.6995
64.5416
22.2344
8.19855
64.2444
7.69478
21.7769
2.86294
4.5075
6.89391
4.62148
21.8102
6.99158
69.2785
10.387
10.4792
68.7863
13.9371
77.5445
25.1121
7.48577
76.8552
14.1946
7.47046
3.1915
10.479
6.76073
10.6462
6.76162
2.96762
10.3479
6.29857
10.5047
6.34454
5.29851
16.6603
4.79648
23.738
5.82072
4.52621
21.5717
5.48416
20.7537
5.53495
41.5467
6.54204
4.84057
30.0414
6.36386
8.73406
32.4801
36.6742
7.16081
7.76458
28.6172
16.8229
180.672
20.9132
85.9134
13.9882
27.1555
100.829
14.3462
105.897
13.8103
87.7517
12.8411
16.5244
92.2799
12.4801
10.3639
72.7595
80.5335
10.9416
11.6704
83.5876
9.06313
43.1373
6.57769
43.9667
7.74639
7.64466
58.427
12.3758
75.828
14.5849
81.1015
13.8878
13.2057
74.7024
11.0176
10.5972
54.596
75.9924
9.40333
12.2742
68.1712
2.89118
6.74625
4.96165
2.95363
2.95002
7.19053
2.86901
2.47922
9.77489
2.5375
9.43991
2.58343
2.6815
8.58062
2.46105
2.51045
4.3857
8.72899
2.40556
2.64345
6.89646
9.27289
68.3958
10.2504
87.4403
15.262
13.2184
28.0417
3.00708
4.70432
4.37544
42.77
2.34266
8.553
7.10602
5.67691
27.7234
3.82402
19.0505
4.4849
5.20627
27.7549
9.90135
35.5114
9.32679
21.3508
11.9734
8.89667
28.2318
6.50857
5.47391
23.2749
12.9208
5.38838
7.34386
16.1636
2.97537
18.3773
3.90987
16.0775
3.52608
3.43831
13.1812
2.38434
10.4781
2.541
10.157
2.60285
2.32032
10.3854
4.65918
37.1163
4.5637
19.9559
5.17411
4.01298
25.1913
4.02605
23.0348
3.46821
12.2262
4.55968
3.03577
19.0464
3.72924
2.43322
13.6417
10.8154
3.29662
2.68793
15.9423
23.0634
30.3636
20.3373
37.8729
24.4384
128.691
14.4857
108.206
19.8951
14.51
183.078
31.0558
13.0903
320.292
107.783
36.1881
15.1364
368.782
3.98729
8.78395
5.1052
9.36051
5.36249
3.6714
6.62637
10.1188
13.1449
8.4962
28.8689
8.07796
9.63169
17.1804
5.02123
7.98303
19.0149
27.0068
6.43932
6.49437
13.9828
11.9532
74.3047
14.543
81.5859
13.0643
13.5556
69.7348
10.7078
49.6892
9.28052
45.7661
10.3157
9.7394
60.6424
10.3602
9.70338
74.5659
45.2983
12.1239
8.12849
61.2895
58.4307
92.8598
84.2764
96.0756
642.824
147.962
199.571
171.925
13.6252
8.53976
23.8243
79.302
71.4125
7.2821
15.5314
21.0237
2.59177
4.21943
6.5311
4.26519
20.7526
6.55241
76.4099
16.1211
10.4331
277.89
65.6213
9.74974
9.89121
64.3888
13.0868
68.7232
23.3917
7.08057
69.1403
12.9543
7.08468
76.0638
15.0166
75.5473
74.6124
14.9445
75.0979
64.661
9.68602
9.6486
65.0977
20.8939
2.55966
4.2035
6.54133
4.20519
20.8459
6.56582
13.0291
7.08669
70.1714
23.4528
69.5895
13.111
7.04985
65.1536
9.76898
9.78233
64.8387
13.0105
69.0417
7.07046
23.3825
12.9926
69.2062
7.06149
5.75023
6.13531
11.2941
6.04658
11.1717
51.0735
51.5301
5.70525
5.94304
11.035
5.97805
11.0637
52.9898
52.1596
5.4909
11.534
16.3116
24.7368
5.49715
16.3198
11.528
5.54233
16.2661
24.8356
11.4896
16.4207
5.50245
11.5959
10.4562
12.3734
17.3219
5.74843
20.6363
47.6673
2.52807
21.4464
56.7267
23.0222
11.4762
6.36222
6.42328
12.0021
6.50413
12.1448
55.0622
54.9436
6.22054
6.41071
11.8792
6.41697
11.917
54.325
55.1001
5.23677
10.8749
15.3851
23.3828
5.20758
15.4877
10.9493
5.2963
15.8833
23.6505
11.2303
15.6659
5.36362
11.0668
4.24054
10.509
16.3288
4.86055
14.8252
8.54545
4.34515
16.2715
10.699
14.9909
4.95173
8.74559
3.80526
15.7822
9.17516
17.6071
9.17384
43.5874
36.12
50.8012
64.3782
80.5267
61.3283
36.7513
76.4642
53.5189
8.04908
5.41909
9.75014
8.09432
15.0232
664.612
772.279
94.7078
16.0006
170.988
26.602
339.386
149.148
707.464
292.837
3.6103
15.6993
7.77957
16.4616
7.9393
76.5562
15.2628
77.1686
78.7306
15.3971
77.8934
13.716
7.28032
74.8582
24.6529
74.5688
13.7528
7.25683
67.2942
10.0261
67.3958
10.0104
21.5547
2.59114
4.29097
6.69196
4.31548
21.4302
6.7212
67.6274
9.97035
10.0653
67.0238
13.7224
73.7443
24.6525
7.25018
74.3047
13.6372
7.28394
64.9541
9.5251
64.9725
9.55903
13.1402
7.03087
70.5844
23.7309
13.1068
70.8578
7.03885
20.9119
2.51021
4.19853
6.60333
4.15789
21.1035
6.54679
65.1685
9.77059
9.63681
65.9413
13.2719
72.4414
23.9205
7.15441
71.6085
13.4084
7.09132
29.9447
139.152
25.7547
407.919
33.594
84.1057
86.7118
65.0275
40.3737
67.3582
51.2222
57.7352
51.364
60.6421
64.8021
67.7451
63.2932
55.061
63.1309
61.1451
703.365
108.468
156.072
154.197
75.8095
105.738
77.6679
67.97
87.4413
2.74468
11.3254
5.08164
13.6186
5.45694
18.7803
2.11342
8.91732
4.41707
8.59889
4.24871
40.0409
18.3228
147.017
39.8418
18.6922
144.58
12.2619
9.6431
33.6655
18.0666
12.131
34.2645
9.74544
39.7681
18.4913
140.068
39.3767
18.7068
141.94
12.4491
36.0255
10.4993
18.7146
12.4621
35.3789
9.98465
149.094
36.5744
38.0432
145.486
38.8906
10.8175
11.1311
5.77522
42.8697
10.4183
10.2401
17.3578
11.7299
32.7583
9.24268
33.3716
17.1789
9.28945
152.608
45.7438
173.058
39.2517
38.6774
10.343
5.80675
10.2851
10.4576
38.2836
10.3079
48.3947
19.9331
166.805
43.8872
20.8191
201.455
25.5124
11.2875
126.46
28.7674
35.274
83.7383
10.3496
68.7004
25.6214
15.0924
21.4769
603.892
13.8584
41.0143
8.5096
24.3939
12.3587
48.0998
9.06094
138.126
34.1757
34.4409
138.359
36.4945
9.59084
9.695
5.62123
35.0328
9.88696
9.89908
16.1563
10.1057
30.8313
8.87072
28.9273
16.3674
8.79986
136.931
33.759
129.604
34.358
36.6471
9.80689
5.56322
9.87746
9.87472
36.4887
9.88992
5.56434
10.6352
38.9921
10.1845
10.5871
10.1308
5.57976
5.54298
10.0266
10.4811
38.8188
10.5692
5.52529
10.0824
17.1267
33.7263
116.559
113.885
16.6913
136.447
31.7866
32.1508
33.5402
138.558
32.6991
33.1568
108.632
16.2115
111.321
16.4127
13.9909
28.1017
10.4032
7.8449
13.8085
28.6143
7.8661
80.7914
17.2921
79.7897
17.441
26.4324
7.30056
8.43764
4.47514
8.41323
26.5417
7.28739
14.0908
10.4312
28.9703
7.91028
28.8194
7.8739
14.148
26.3497
8.40509
7.27913
4.47381
26.1906
8.41139
7.27032
5.40295
10.1972
37.6159
9.53939
10.2908
5.38409
9.6038
5.46228
9.85045
10.4754
38.0056
10.3792
5.49051
9.7228
18.0998
129.953
37.3125
18.2753
131.537
144.298
35.4617
35.1548
34.6939
143.512
34.9622
37.5306
18.5181
133.598
18.3752
132.79
5.68864
10.6863
40.6875
10.3055
10.8065
5.63124
10.5412
6.12816
20.4651
12.9936
43.9804
11.2277
7.84821
11.6061
64.8387
173.038
23.3593
538.52
24.9626
149.13
131.913
13.3062
32.4206
28.6505
94.5694
107.732
14.6118
31.0991
10.7859
8.1671
14.8736
30.1859
8.04206
84.1557
18.2069
85.1835
18.025
26.9674
7.33234
8.45684
4.48958
26.7605
8.50945
7.36685
14.417
10.6284
29.2756
7.91909
14.2841
29.6283
7.96845
27.1895
8.67363
7.47873
4.52719
27.4799
8.57544
7.43015
10.2932
9.36568
38.1656
15.6154
10.6265
9.04182
35.6613
10.0912
28.2338
7.99865
13.6509
8.48988
9.62763
31.251
147.134
21.1684
39.213
19.6662
140.307
153.928
35.8855
36.8552
63.6289
179.202
39.7333
38.5017
18.692
135.143
19.0139
137.081
9.6201
104.879
36.8916
20.0391
10.2851
33.3589
18.6507
8.59809
26.4752
6.47377
4.005
26.7144
4.01984
8.52607
8.73097
4.11939
27.8309
6.56806
9.02414
27.1126
4.07781
9.17205
95.8202
31.0549
17.67
9.17589
31.151
17.6697
8.30703
26.053
6.26289
3.8956
25.8873
8.3615
3.88463
8.40701
3.88029
26.3862
6.48117
8.41473
26.3662
3.87177
8.6375
84.6593
16.0677
28.3202
8.62265
16.1318
28.4641
7.95775
24.7142
6.10679
3.68589
24.6233
3.68187
7.97584
7.95317
3.68954
24.4724
6.09898
7.94066
24.5419
3.6877
8.77475
87.8038
16.7632
29.3999
8.83277
16.6245
29.1656
8.0274
24.8619
6.14824
3.67847
24.9788
7.99696
3.68313
8.06883
3.71766
25.3538
6.19291
8.11697
25.1544
3.70646
349.455
8.04623
10.5753
30.8655
39.3313
10.4614
8.4251
26.4639
5.85557
4.61406
13.8744
16.5952
18.8199
4.98258
5.68897
6.51846
20.0075
5.33294
16.8376
6.67491
23.996
5.18072
7.3508
37.001
9.29286
21.1077
9.25826
24.3122
7.22682
29.2634
15.5769
97.5635
132.28
21.1429
20.632
430.144
39.306
61.7197
45.3481
55.6774
24.7051
115.575
22.2225
19.2299
28.9914
32.8511
43.8619
27.9798
48.7176
11.2708
12.3049
35.662
56.5326
40.86
9.70443
14.8682
9.0827
7.7791
21.0469
37.0407
32.5444
7.30478
9.94663
8.79348
23.4592
24.7024
6.02648
27.4062
7.60724
6.8378
11.4718
59.0857
50.216
16.2319
44.8891
14.5043
12.6254
56.5471
99.3159
118.76
78.0321
346.181
34.3338
80.1142
52.8103
78.6118
97.1546
29.6732
40.825
44.7061
369.573
115.701
22.9988
29.8838
18.393
334.112
106.39
66.4541
11.477
21.6945
16.314
47.0469
320.44
86.5212
15.3685
10.1106
36.6507
13.9197
39.9515
71.0174
35.7092
24.6751
21.9386
5.57076
4.10749
12.2882
15.3705
4.46808
5.1284
17.2053
7.85761
10.7435
28.7491
40.4684
8.2952
26.3212
10.2355
6.11025
13.9398
5.02017
25.6171
4.80503
6.40147
19.835
7.36362
20.0584
8.33601
36.2857
6.60193
23.09
9.82473
4.79044
4.15229
9.78671
17.3049
13.026
4.0373
5.14649
5.73803
6.72306
16.7689
20.7783
16.1791
5.46407
7.25643
6.07327
25.1844
23.4576
8.08392
18.0614
6.54241
7.82773
92.6557
17.575
20.8878
112.352
15.635
40.5822
23.0431
7.88399
10.5793
27.3578
10.3783
36.714
44.5692
12.219
32.8736
8.39054
30.2468
49.8514
11.1772
84.7029
18.4442
322.31
15.3522
14.1785
69.5887
46.642
91.1248
99.9541
56.2382
374.34
128.167
24.7916
17.8839
323.016
29.1564
100.541
57.1678
49.8527
37.9117
79.2716
44.2295
21.2599
37.7851
33.9481
29.6373
9.15202
49.9554
10.8861
8.45386
33.5168
43.2191
17.5301
14.8723
5.01443
6.23274
6.33191
13.6972
21.5664
103.019
85.0195
19.1151
6.91726
5.08406
16.1097
6.47418
14.5545
21.1943
27.6487
10.4735
8.21802
38.7496
8.19586
40.7483
24.4126
4.60365
6.20742
16.3758
13.649
5.72754
4.93899
12.3218
4.28135
10.1795
17.1557
4.96646
5.32977
12.2151
4.0732
39.0218
10.5792
13.5975
69.1231
80.9945
10.0672
36.5587
30.6953
21.5394
6.58217
9.26587
19.6404
34.2026
8.59925
284.33
26.44
7.67044
5.91599
20.3939
16.7221
7.65251
22.9625
45.0425
15.7872
114.567
12.4914
51.3836
93.1418
11.4264
21.6929
110.894
14.9769
19.6683
88.9812
40.3405
24.577
28.7624
33.4223
43.6991
30.8078
14.1475
22.4149
73.2503
18.2467
84.1574
342.684
45.7707
35.477
50.6631
29.9693
17.315
5.17413
5.33343
22.5868
17.1474
4.61255
23.8035
57.7975
72.4635
51.7671
79.6414
40.4675
29.9239
33.7142
25.6261
65.8215
148.314
71.0203
115.635
27.2495
24.8562
126.8
29.676
19.2339
412.71
17.9387
14.2813
130.497
56.7119
19.6942
13.3957
113.342
23.5659
41.6066
37.8762
25.9383
18.7584
60.7394
10.7631
52.4404
13.3193
13.9839
92.263
18.8959
22.4354
378.626
110.03
90.348
26.7446
17.5467
11.6447
8.63829
39.2244
32.3478
11.2598
9.32465
45.5022
14.9258
128.955
54.4463
20.7489
14.91
62.2694
19.8757
13.7292
55.7278
36.3274
10.3569
10.3259
51.8631
13.195
65.1255
114.066
58.6768
26.5508
35.3874
40.011
48.0902
31.883
44.163
94.8522
47.3251
55.5167
6.00077
24.1112
7.3883
21.0889
7.58388
18.9709
5.89398
5.15325
4.57871
18.9938
11.6746
5.59664
15
4.44645
6.45896
26.155
8.75324
26.8772
8.25809
6.9912
20.2587
5.02658
15.4562
11.4401
3.98006
14.4543
4.79887
4.14749
9.38456
8.63223
25.0804
42.7017
11.0874
7.70655
37.9958
11.5829
12.0939
38.7151
59.6394
45.6102
10.1518
14.1969
9.43605
28.2302
6.44781
25.3336
7.48732
31.4579
8.09924
11.4643
56.3433
17.2397
62.2704
13.9781
50.9911
13.6696
96.3299
110.644
86.5439
44.4083
59.524
378.132
123.525
55.7114
42.8763
56.4806
4.94114
6.87105
16.3843
19.6463
15.0745
5.42446
6.10676
4.81718
20.5355
12.2616
5.35679
15.2237
5.93083
4.40409
386.916
31.9179
19.6874
6.74939
7.98443
20.8492
8.76159
29.9612
44.2406
90.162
11.1533
13.7825
10.5366
46.4743
85.1721
33.3858
6.62567
26.0393
8.74943
23.0695
8.34718
35.6486
44.179
10.0461
15.5174
52.8176
11.4842
40.1446
75.2852
10.9921
13.9735
4.09201
4.74111
3.98371
10.6301
15.1434
27.3097
18.4121
17.3092
28.7811
36.4671
46.5811
50.1256
34.3377
39.5725
81.4004
41.0537
69.333
9.85643
4.566
3.82444
12.007
3.88053
12.6636
9.5614
11.659
15.0721
4.11338
5.32911
16.0287
11.154
4.24169
69.1256
318.188
77.6066
31.6749
19.2677
20.9303
29.996
46.7313
87.112
102.001
43.2315
14.7792
5.37993
16.8833
4.47009
20.9517
4.32906
13.2443
23.6738
17.857
7.6705
5.95195
27.4163
21.3106
7.50283
92.3641
104.946
32.5042
40.7671
10.8712
8.46024
8.88393
43.0635
30.3166
305.728
34.5353
9.58242
47.951
12.3446
37.1252
9.65661
46.9792
21.9291
5.64166
15.805
6.7254
17.0893
7.04815
20.0187
50.0596
13.1133
39.3538
9.44649
36.0119
56.4923
12.0199
79.8949
112.847
23.6991
12.8413
352.473
53.5628
16.7295
98.2929
17.923
20.3851
117.961
15.9462
46.3747
9.13799
29.3908
9.94403
40.1034
32.6375
12.0591
20.4252
6.87494
8.77969
29.358
6.95917
18.3664
31.688
15.9156
12.0458
4.41554
5.64284
5.48877
11.6416
16.6974
88.1121
40.1316
43.612
81.3315
15.4774
5.2804
4.34867
10.6159
5.4193
11.4165
14.1713
21.0728
8.9197
7.27106
34.3526
7.03511
21.912
32.7146
17.8845
6.29077
26.2209
7.46565
23.4641
23.233
5.88467
89.0408
81.2096
50.6656
39.5021
34.6611
72.3079
11.328
8.24259
3.4945
4.02109
8.73771
10.6947
4.28745
12.8817
4.96278
11.4266
3.80421
9.75484
16.1511
4.66842
112.434
331.254
15.6407
7.02144
19.1398
4.97904
14.508
20.7964
5.42768
90.569
11.3338
16.7797
44.0671
80.7252
15.0012
45.3904
22.3609
32.3273
20.8446
94.4338
11.6483
16.9362
50.939
111.953
15.7493
46.9011
24.0453
30.5862
362.259
19.4598
45.8013
33.7447
35.8832
31.1946
17.7662
28.1724
48.1127
42.8148
39.0054
22.0739
21.9521
108.589
332.528
24.3486
4.56826
3.7798
14.9031
16.0343
4.45746
4.05788
19.9231
5.94533
8.86199
28.0907
34.6733
7.43937
22.528
7.23934
5.06037
14.0631
4.81356
25.8673
5.97547
4.15421
18.2209
5.54944
21.2467
6.22167
30.3186
5.40402
27.5183
6.65216
58.7198
47.8966
59.236
136.932
68.452
68.7122
111.086
394.72
97.0835
46.1615
55.1764
54.6509
2.93193
11.6229
11.1554
4.0989
3.39472
9.61635
3.45914
57.0868
64.4195
93.879
60.1868
363.252
119.626
129.563
397.938
30.3812
37.7723
25.9796
115.398
52.8459
13.7668
16.601
56.7087
18.3357
102.007
351.455
19.6001
92.8748
16.8281
80.3983
23.3936
35.7963
21.1782
23.6935
160.145
525.61
129.858
17.1834
3.60586
13.8733
4.01793
17.1427
14.4466
4.10788
125.286
81.8919
74.5273
164.526
32.9981
6.87314
6.26759
44.0747
5.71848
34.3063
30.0258
80.6296
60.1164
78.0683
63.1451
21.6413
27.2692
4.59124
5.14036
21.6429
4.76413
25.7111
516.776
97.558
240.099
88.5711
290.189
10.949
2.6334
2.52119
9.20898
9.88001
2.81644
9.74827
19.6909
4.54093
5.19431
21.3619
4.37958
28.4963
23.0722
80.7152
69.2713
96.4517
66.7127
17.1785
24.3318
3.45717
4.58751
14.9197
3.86806
27.193
136.958
578.876
299.344
72.1086
63.7747
68.6733
64.3893
51.6307
9.91124
7.26776
53.9647
8.1734
45.5046
56.9394
45.0389
7.73039
6.75061
34.1111
7.40758
33.118
45.609
41.5435
25.1502
5.92215
6.09984
6.7078
35.0041
30.0167
15.8332
5.85938
85.1641
27.5084
94.8336
14.4691
6.06531
19.7812
21.8707
6.72189
4.34146
10.1728
4.39234
10.1046
6.97224
4.28795
23.2763
23.2103
17.1216
120.351
28.9262
6.90147
102.3
18.5275
6.41882
103.389
19.3513
99.3369
82.4846
17.8388
90.6677
22.8
22.9904
7.63885
4.41262
10.1433
4.58137
10.1602
7.3225
4.73775
46.9433
17.48
9.07418
49.7915
16.6975
23.126
23.0547
43.0994
419.585
11.9949
8.21381
31.1482
15.2387
2.92825
5.02443
5.87536
44.166
21.5224
33.0798
32.2889
21.09
721.534
31.4138
708.071
16.8648
19.2036
25.441
41.4092
0.871172
2.21426
1.59945
2.69665
1.79731
8.182
35.6872
7.80512
1.21949
20.9362
4.25482
4.80731
5.35723
8.42477
5.02282
11.2276
3.42077
266.893
3.96668
2.99563
12.8206
26.0795
3.17938
8.58982
8.86478
7.38825
25.7648
1.35292
3.31099
5.53532
136.133
16.293
20.8383
191.031
19.558
672.784
101.763
48.7632
6.98688
7.05377
18.8726
8.77127
26.3652
33.889
201.063
150.818
11.2922
22.7699
24.042
76.4846
11.9169
16.9498
38.2492
37.8273
17.0794
11.9444
37.4826
17.3023
37.8111
17.2676
3.28737
13.3706
37.0771
3.36348
3.37889
13.4251
3.28108
3.34533
3.45642
37.5181
13.69
3.43128
3.35641
13.5734
1.7899
0.658835
2.85779
1.32821
0.638618
1.86446
2.81548
1.0529
0.254824
0.131303
2.37993
0.129002
1.10322
2.26014
4.24864
4.09274
4.40798
4.62116
1.71878
1.28355
0.589433
2.63332
0.609118
2.73048
1.65867
2.01183
1.39637
0.70752
2.89075
2.85762
0.722697
1.97433
5.10473
5.35334
1.26856
0.354594
0.150068
2.60316
0.163787
1.19966
2.778
2.088
1.41825
2.90335
0.774686
2.17011
2.88677
0.753536
4.93242
4.86681
16.7536
38.3844
11.9671
16.6565
38.494
11.6567
16.3668
36.2781
16.4146
37.3644
3.46052
14.3352
3.63024
39.6334
3.46889
3.61018
14.2504
3.43075
3.545
39.2044
13.9773
3.56931
3.42191
14.1196
35.9656
6.28009
28.4138
9.44777
43.7116
33.0563
7.52125
124.136
163.397
502.54
46.956
8.28747
9.45203
54.4689
8.69646
38.844
62.4864
477.243
52.6399
74.4906
11.2762
9.66739
60.1277
8.94237
67.3843
49.1133
27.4775
36.2292
676.687
28.9604
24.5924
343.74
35.814
156.504
331.585
95.9752
28.1995
20.009
270.805
32.6853
107.442
69.3062
11.5528
10.4237
62.2683
11.2776
62.4952
68.628
82.5791
14.5505
16.7774
125.594
12.9384
90.8635
100.958
75.838
80.8053
10.6425
15.0257
11.6086
72.7518
86.5404
103.725
20.4163
103.095
101.482
20.2531
102.201
48.4191
17.0227
9.18951
48.4372
17.0179
20.8664
20.9439
7.43083
4.13485
9.50774
4.64798
9.41156
7.52309
4.59974
21.4107
21.1563
48.8734
9.27472
17.2247
49.101
17.1441
22.4156
22.2638
50.1598
17.5315
9.57463
50.0903
17.5366
7.65882
4.27156
9.68676
4.71769
9.77406
7.63807
4.73215
21.8178
22.0704
49.8076
9.50254
17.3879
49.6231
17.4344
574.202
134.293
19.6649
2.39424
3.9645
4.04538
16.0129
4.78875
6.03513
13.3668
5.0717
7.66006
23.1578
5.75489
22.4292
21.3658
259.449
70.2361
132.824
64.7335
10.8962
67.6732
7.21281
9.02675
35.7161
6.43821
16.1276
599.262
187.995
22.3046
55.9873
43.6015
52.9824
142.361
15.0757
725.215
12.504
2.68191
17.9272
9.90149
10.0754
43.471
3.34267
7.99977
7.19945
9.83084
3.13188
10.8376
5.66239
3.13091
7.22175
3.48652
4.93636
17.7593
37.0358
2.56744
12.9677
5.13681
5.27564
76.7532
285.581
1.15634
1.31054
1.32194
0.345778
1.14128
0.973172
1.80529
2.36848
1.56324
113.444
0.526692
2.42079
3.11482
14.8263
11.6068
37.3676
8.4392
8.0663
32.9506
8.98883
43.1344
28.5639
30.3159
6.13603
7.77141
15.3898
7.97692
28.0663
18.8011
27.3817
12.3709
7.92152
10.4352
9.40373
20.4736
17.4996
25.0254
45.2509
33.0731
35.6325
21.3621
14.3649
75.7992
88.9133
17.3778
124.042
16.9191
20.676
484.203
22.7432
77.5489
30.6307
16.4749
151.756
27.1379
150.773
25.048
514.37
26.2845
20.7019
57.0312
56.0212
58.8006
54.1861
8.73064
2.49478
9.52168
2.13756
8.22935
9.8127
2.30825
53.7055
55.768
57.6473
51.0563
56.0477
59.9158
58.0554
58.5452
55.1534
46.8588
51.3033
52.5801
48.1238
51.6862
44.1241
51.6051
39.387
25.1526
26.5433
37.1717
38.8783
22.4938
33.7542
25.9592
47.5489
43.3624
48.4571
43.9088
30.9531
12.6603
7.16599
12.1938
33.9384
40.8607
2.87818
6.20143
9.72297
6.12058
40.0803
9.85252
15.8401
14.7177
342.503
13.1231
12.9058
337.935
32.1985
7.43806
14.79
32.3877
14.7604
88.8485
17.1494
87.8012
84.843
16.684
86.2421
18.5286
18.0607
5.7349
3.3481
6.8647
3.4868
7.60275
5.24675
3.67317
40.856
15.0936
8.01094
42.2746
14.698
15.4199
16.9671
37.351
12.78
7.72537
32.6579
13.7952
2.35011
21.3553
23.7483
2.52347
26.3285
25.647
3.20024
13.1004
3.26659
35.965
3.20428
3.25298
13.0583
3.45764
3.25227
35.681
12.9491
3.25942
3.45599
13.0295
1.25791
0.478449
1.12061
4.14592
0.461712
1.26204
2.34138
0.557791
0.153251
0.0760934
0.864136
0.0813087
0.508932
0.972903
3.18684
3.7088
1.35982
1.1096
0.534063
2.46659
0.496625
1.51951
2.33524
2.90806
2.91279
1.32154
2.21481
0.497149
4.18925
4.66545
0.510357
1.30213
3.03488
3.08038
0.481721
0.140525
0.0746559
0.813591
0.0761618
0.486635
0.796426
1.32342
2.31751
4.98546
0.506052
1.32924
4.95335
0.508825
3.01159
2.98132
11.7308
21.1153
150.075
17.2416
39.6749
10.9478
16.1288
35.0262
16.3022
35.0803
3.03983
12.1581
2.96033
33.5551
3.03716
2.97366
12.2217
2.95665
3.01051
33.9269
12.4076
2.99222
2.97453
12.3261
15.7816
9.98301
1.92128
0.32045
0.206082
1.33819
1.50642
0.302116
1.77957
3.70044
0.262915
3.79994
0.583012
1.62422
0.335371
17.8966
2.71152
3.60449
0.196926
0.451387
2.06498
0.27867
5.58914
4.79692
6.92987
3.63568
3.70757
19.1198
7.45735
2.93521
4.37597
14.8241
4.12235
6.29874
29.8621
24.2642
21.3684
5.62912
5.69946
4.79209
30.5911
6.31481
33.2295
5.19755
24.6334
6.11256
3.19231
6.11106
5.79431
15.2097
2.42455
12.3215
5.57846
5.3991
13.87
4.44578
7.89003
4.24329
26.2876
4.97107
0.957165
4.26133
0.969828
1.92551
1.17052
1.73812
0.906332
34.2326
156.602
0.906816
5.45277
0.20673
6.29805
0.285018
0.269881
0.287807
2.75006
0.261038
2.15451
8.87864
0.472969
0.232531
0.228196
27.1669
2.42268
16.0784
5.26499
27.2979
16.5767
52.2554
6.5576
5.79565
7.50957
16.2442
540.697
15.7024
13.4652
17.9911
44.5905
109.206
8.10814
149.022
7.65051
15.0444
26.8894
14.0385
474.988
12.4227
95.2988
4.12379
61.8615
90.2281
17.9401
91.1025
93.1511
18.2134
92.2754
47.9167
16.8655
8.98523
47.9841
16.8368
20.474
20.3541
7.10624
3.92948
8.91067
4.3773
8.96222
7.07524
4.38965
20.0082
20.1694
47.349
8.87422
16.5097
46.7978
16.6534
18.9188
19.0362
44.0151
15.4711
8.42146
43.4355
15.6534
6.74733
3.74224
8.64443
4.25288
8.56907
6.87573
4.19611
19.4387
19.2412
44.9662
8.55511
16.1558
45.6546
15.946
9.15364
60.4708
8.42258
66.5292
9.0794
63.7072
9.14333
9.17807
10.5604
47.6796
65.1147
8.5442
12.281
58.5602
8.78216
53.3775
7.38456
44.423
8.34297
7.85303
56.1128
10.0538
74.8412
80.4335
17.4395
14.5944
67.9965
10.9839
8.35323
8.07282
51.5218
49.9041
8.89239
8.06186
47.121
7.31922
6.97709
36.0559
43.0703
6.61511
41.0295
7.26053
7.93319
48.7618
7.41295
39.0976
7.16876
7.899
43.5294
8.05973
48.3187
7.02877
46.9356
8.0596
45.1593
7.32217
10.3183
8.68065
68.2175
60.3771
71.5124
9.86313
8.84626
15.7073
16.6794
572.803
286.989
23.924
17.6828
131.141
14.0165
84.3239
300.516
21.9381
23.8234
94.2308
12.4869
11.4355
59.9234
87.8616
8.84432
12.8916
77.5368
8.95673
30.226
12.1043
17.9329
22.4667
3.43351
1.60834
2.55207
1.38189
2.36595
3.94929
1.55488
38.6635
51.9067
44.5246
46.3966
4.89131
2.66935
2.87349
6.20269
2.8646
6.21584
4.79356
26.3029
16.4038
14.0173
30.6128
41.8098
41.1096
48.2373
33.4255
0.96574
0.79351
0.819887
0.511263
0.275297
1.73306
0.349509
2.02942
0.618487
0.508917
0.631274
7.31478
17.2453
4.4787
424.923
7.35118
14.1935
55.226
1.81011
44.6221
1.56016
3.74749
1.43835
2.24287
16.2109
0.453205
0.234931
1.99041
0.229249
2.66849
0.26698
0.360307
3.46844
0.288436
5.14946
0.432925
0.56315
0.357549
28.3103
19.8126
8.9977
17.4753
11.7989
25.0482
21.7655
32.6571
16.3427
29.8769
36.8713
38.2128
28.137
16.6176
604.805
28.9189
10.0778
71.3992
8.10579
34.9316
11.0076
20.582
8.24746
10.8483
20.0373
7.70981
8.42225
10.2479
29.7087
7.24498
11.6671
8.91982
7.85323
32.9662
9.64008
16.8433
7.42164
10.3857
18.7721
8.0491
12.7433
9.43436
31.2746
8.1716
12.436
9.31466
16.357
135.916
38.3084
38.627
16.1861
25.0185
41.287
25.3126
40.732
16.4391
136.781
38.8593
16.5609
38.7612
24.9305
38.8338
40.5219
24.3711
116.572
115.725
8.39822
36.7902
11.1536
20.9423
8.35117
11.3002
21.1318
8.35217
9.69313
13.1985
32.6053
8.3851
13.1387
9.65976
8.50697
37.0751
11.3653
21.4133
8.48332
11.3428
21.3
8.305
12.9447
9.54361
32.4059
8.26706
13.0412
9.58806
15.4651
129.146
37.9311
37.0884
15.9237
21.3471
27.8379
18.9977
30.9293
14.5381
119.278
31.1921
12.5332
35.0129
22.8031
35.8994
33.1153
23.6679
104.26
110.955
93.4864
29.3745
8.53898
21.3579
20.9986
28.8995
95.0948
20.8511
12.944
13.0239
13.3866
21.0569
13.125
92.4268
8.50263
20.7015
28.5809
20.823
91.7529
28.7019
27.0007
11.2677
7.31172
8.11727
26.7387
11.3921
8.17512
22.0541
11.2231
21.8253
11.3695
96.4052
97.037
95.6443
94.328
27.2116
7.37504
11.5609
8.28973
11.4872
8.25269
27.3578
97.4307
29.797
21.7823
8.93594
30.0569
96.5486
21.9721
22.9413
14.224
13.9462
13.6055
22.2322
13.7574
98.5339
9.01302
30.6475
22.4392
30.3412
22.1964
99.4848
106.376
9.61818
23.7528
32.2943
23.9116
32.5446
105.512
15.7542
28.9787
15.6445
107.501
9.67782
24.3972
33.0638
24.1218
108.561
32.8019
15.3812
28.7641
15.5267
28.2799
12.0712
7.67479
8.62344
28.4347
12.0176
8.58649
23.3407
12.0971
23.6328
12.0106
99.9135
98.5272
100.873
101.605
28.0137
7.58136
11.7342
8.42508
27.7549
11.8415
8.48045
103.577
23.5674
32.0981
9.42975
31.7981
104.68
23.322
27.2333
14.5804
14.8537
15.2734
27.838
15.0928
101.983
9.3025
31.0767
22.7907
100.936
31.3789
22.9608
8.42485
75.8931
26.0001
15.2529
8.40022
26.1795
15.2448
8.12661
29.1537
5.9986
3.45481
28.4661
3.44338
8.20126
8.03232
3.82813
25.7274
6.20984
7.94541
27.0961
3.74471
8.46146
73.9716
25.5313
15.232
8.44713
25.7347
15.3069
8.09863
29.1105
6.08408
3.45821
28.9842
8.14804
3.44314
8.06182
3.43294
28.6845
6.04775
8.05287
28.7879
3.42703
7.45153
62.7975
13.0339
22.1918
7.38427
13.1803
22.4465
7.19873
25.7424
5.23924
2.99818
25.5136
2.97548
7.26734
7.08236
2.84715
24.8199
5.0741
7.02171
25.1095
2.85691
7.88537
66.6333
14.0975
23.7823
7.9472
13.9919
23.6556
7.44517
26.1689
5.46064
3.10055
26.3343
7.41377
3.103
7.52677
3.18237
26.8227
5.55377
7.57623
26.6296
3.16302
34.1465
8.65451
10.3908
40.6026
8.96792
30.6671
42.2224
28.0901
20.7559
6.1383
8.04987
7.5708
18.9318
30.5455
107.911
332.236
24.5197
6.91605
5.98382
16.6666
7.33942
20.5808
22.374
37.0739
10.5687
9.82189
46.1855
9.16607
43.8848
39.2998
51.5483
45.4502
10.4681
12.2222
12.587
43.7667
52.0137
52.3425
56.8921
11.3193
14.4936
12.4835
49.6857
63.0995
46.8601
9.19946
9.93779
36.9894
10.7443
39.9398
44.7587
62.2223
14.642
19.6261
123.042
15.4547
63.099
101.463
22.7388
7.3649
37.1397
8.74269
26.3877
6.92796
33.8352
108.367
86.0863
359.178
54.4417
16.0457
13.3296
4.10864
4.76393
5.00995
12.6093
17.6242
356.487
17.8624
5.95292
17.6105
4.40757
23.9653
5.47252
13.5466
20.0873
7.80827
5.89618
26.5072
6.2578
30.2125
23.9538
56.5555
12.1205
49.0046
15.1869
48.1478
14.3306
59.1939
121.376
25.5126
25.6886
20.0373
384.415
61.2094
12.4586
55.7453
18.6156
49.9162
15.1658
90.7898
105.493
19.6184
22.9105
385.244
18.1852
95.642
12.1427
11.8848
3.33211
4.45081
3.98775
9.7446
16.1787
14.1446
21.558
4.60858
5.65875
4.74481
15.7644
17.6163
44.805
33.0365
34.3257
45.1614
103.397
340.994
50.9237
45.0876
38.2784
78.4311
11.0273
3.28479
3.86665
9.22198
3.89484
8.97535
11.7771
16.2125
5.57721
5.8551
24.5752
4.8913
22.4324
20.6196
17.0385
81.3266
324.682
14.8209
13.3802
20.6936
30.1061
45.6922
32.4687
41.1072
26.5856
33.5373
22.8815
36.7759
15.8456
292.347
22.0651
24.7491
19.7022
13.7158
41.4347
98.5057
11.207
80.7102
10.2758
15.295
18.077
31.6958
28.0434
20.1482
17.4323
11.7997
4.46693
5.00841
15.433
13.0043
5.55532
118.674
81.5479
363.857
56.2074
24.7647
40.4865
8.32809
9.0693
27.672
7.37132
36.9196
97.0789
45.7648
89.0377
49.3956
19.1229
4.71398
17.572
6.51613
24.5854
14.0889
5.83977
22.8858
6.2702
29.9793
8.91658
19.7202
7.0969
34.8579
11.852
16.4368
5.1091
4.36377
15.1975
12.5249
4.22241
38.414
30.2903
39.7418
29.0254
50.0625
54.6854
83.088
43.5896
12.5903
3.89959
5.00079
12.9496
16.6056
4.15111
10.5429
38.3701
23.7321
27.4679
34.4952
9.02155
27.2512
7.56702
37.1783
7.36873
35.2949
9.42687
10.976
40.7137
80.9481
13.3108
42.5782
14.4966
10.3506
11.3749
16.2622
48.6578
87.4256
44.5411
12.026
15.1871
14.6042
98.9392
20.0087
15.53
83.4594
18.9973
10.4594
31.8708
8.67798
42.2817
8.49803
41.0584
11.2284
13.7048
21.1437
72.4225
78.8518
17.5177
15.2814
38.6222
52.713
44.2894
42.7426
29.0924
17.0634
19.0355
26.5245
8.99817
3.42825
13.3469
3.77895
10.8521
10.5627
3.22446
30.5891
21.3713
32.8663
20.0287
44.6884
12.1692
13.3065
88.0143
10.2299
54.4163
54.4867
35.2745
23.5093
8.01719
7.01046
32.8821
26.6543
8.58739
42.5281
12.5097
9.48631
46.0676
40.2681
10.4022
51.3829
38.633
10.5689
7.18097
35.461
30.5405
8.60883
44.5262
28.5481
35.9125
41.4982
59.4889
71.4597
58.4763
34.7506
50.6875
47.5324
49.3093
60.3759
52.1983
96.5288
25.5455
13.9509
117.841
60.0625
18.8016
382.993
61.6023
54.9908
17.9693
11.1585
93.1761
48.1759
13.7892
122.213
22.6033
24.7015
383.179
18.0477
59.3369
11.3081
40.4044
11.2095
46.8154
48.8204
14.1242
15.7565
353.675
26.3415
107.041
19.5694
20.6905
36.0014
24.2193
331.977
16.3564
56.1602
16.6008
110.41
82.9544
22.0882
39.2785
41.6246
30.4071
12.0707
2.92481
14.0059
3.2281
11.0924
2.9221
15.7073
39.7185
34.1837
38.1007
34.1227
42.8938
51.9884
52.0711
43.5476
47.615
83.7787
45.0197
76.6556
10.3667
3.03177
2.58037
13.2626
2.7854
12.4993
10.9109
33.2896
6.00638
19.2254
5.21399
7.32678
23.0905
29.4
45.3147
61.6853
11.9166
10.0675
9.55807
52.3605
50.0389
38.8983
7.20864
10.2226
34.7094
8.50176
44.7893
29.2945
41.81
5.95857
9.41223
45.3227
8.59793
38.7547
48.0136
15.7479
5.15705
3.22639
15.3073
11.7453
4.16832
21.319
46.267
35.2822
39.5887
38.8624
12.218
11.1787
4.54458
3.45768
13.8744
4.0812
10.3268
88.4299
108.013
15.5934
6.15175
5.6518
23.4024
18.3343
4.96375
19.4853
12.2329
2.7878
8.14497
2.94725
9.59874
3.45013
9.91016
75.2645
96.0877
48.3723
318.506
23.1849
17.4059
3.90719
4.70647
21.0295
26.985
4.68701
84.777
102.797
355.609
28.8618
34.9183
4.57855
5.68041
5.14896
25.0704
37.4372
310.463
19.3728
3.61718
17.2483
3.87642
15.8764
4.34259
22.989
33.3582
5.42755
44.4838
6.01429
37.0572
5.53553
41.3069
281.24
10.5221
50.8823
38.6305
9.25061
46.0178
8.82782
11.2681
14.7681
313.533
48.5004
15.4764
74.8168
11.7594
20.0913
11.3949
8.14347
39.0612
40.8885
47.3372
9.29468
9.57451
4.33917
10.2497
14.2224
3.75436
13.1831
3.735
4.52169
5.00623
15.5096
21.8769
5.74187
19.6513
6.01707
4.87
5.3408
6.56489
18.2995
25.0074
16.5649
5.56071
6.5519
6.24415
26.8034
32.5171
7.93175
24.5266
7.49791
6.61
5.0179
14.2172
15.3887
3.87499
19.4156
4.20206
4.68876
6.20682
7.02917
31.1476
19.7096
21.8278
7.65639
5.77056
11.3929
71.8828
43.935
13.6294
45.9533
10.7583
14.7313
8.42147
36.0218
30.6357
6.99654
36.5707
7.21024
8.36064
9.4829
7.74284
38.6393
33.4569
39.626
8.9888
7.93446
12.4471
77.3015
42.9368
10.7748
79.9821
14.1402
9.85449
17.3794
28.2104
26.3325
19.7382
13.609
13.4131
46.1643
309.43
91.1367
10.4031
18.1473
6.64776
17.3676
5.20614
24.7454
5.45915
25.7515
6.48048
9.00822
42.2122
14.6018
47.0029
11.0333
36.3679
11.2811
8.12595
9.4285
32.2185
40.7547
33.0173
7.91769
9.99209
6.80199
28.0132
35.1294
8.76704
27.7668
7.08335
8.16291
5.68157
18.5008
5.09266
23.6741
4.72768
20.4102
6.45824
6.98483
10.2718
36.4027
32.6871
28.913
8.42928
8.1441
25.5307
30.351
33.2086
22.7888
19.4021
20.1502
97.7919
22.2793
15.1342
16.8753
12.0403
77.4808
14.9343
13.1273
40.0376
45.5401
41.114
44.029
32.8256
19.9632
22.6216
30.26
9.46006
2.56277
2.32265
11.2688
9.75595
2.50779
10.9812
40.5573
43.5797
46.1779
38.6209
12.0615
11.7702
2.55004
2.45842
2.72972
14.2956
10.7817
12.8772
16.6526
3.14335
2.84259
3.07025
15.5304
13.8768
58.7389
398.15
94.3054
113.945
46.3406
42.686
42.4874
48.7038
49.1204
49.0776
58.3467
44.599
14.3259
2.91184
3.26212
23.5943
3.09265
18.1894
17.973
11.621
2.49806
2.59188
9.94295
2.74448
10.195
11.6621
17.5124
2.80492
11.4926
2.86388
14.1058
3.20238
13.5961
94.4995
55.3567
109.139
51.2709
19.9056
33.0282
3.81975
4.3596
22.3564
3.94359
29.6703
348.444
111.594
16.1839
2.88172
13.7179
3.24455
17.7733
13.0153
3.34154
87.1668
48.0884
54.6974
57.6265
22.8415
3.30333
4.0559
20.211
3.73824
16.8761
24.7449
22.2932
289.391
17.2403
19.8796
26.6739
27.7965
34.7392
36.8724
23.9361
32.0525
43.4748
36.207
40.0103
42.0195
36.7094
37.9844
41.5682
32.0702
37.4711
44.6375
44.7717
41.4983
31.6356
27.1168
33.0799
1.85133
6.45341
7.36227
1.91106
6.93152
1.98049
2.03487
43.1315
41.3703
37.8196
102.953
18.6003
18.705
23.0197
122.744
34.499
26.2559
27.9183
434.691
36.9592
26.7879
32.5785
46.4504
46.0377
48.2137
38.7157
49.5593
48.3639
40.8013
34.7383
45.6338
47.9585
51.1818
49.8111
1.98535
2.02633
6.36473
4.87989
5.87012
2.18229
2.00703
2.14002
6.48116
6.74969
2.02552
6.30096
2.09158
2.10158
1.76574
5.14816
4.33677
1.59565
5.54657
1.86218
1.67029
40.0306
40.0022
36.6551
21.7281
26.9709
27.443
35.8917
27.1233
32.419
36.0296
30.9664
32.2469
35.8784
13.0176
7.16318
35.6152
13.0591
16.2882
16.4629
5.41214
3.12344
7.15691
3.36505
7.25894
5.32898
3.39961
16.0609
16.354
35.3765
7.08909
12.7436
34.7711
12.9246
73.4533
14.293
74.2946
76.2051
14.5078
75.3363
14.8361
15.1059
5.06538
2.95092
6.92882
3.27708
6.83589
5.16279
3.23231
32.7141
11.8811
6.65732
32.0521
12.0857
15.534
15.298
33.4019
12.4677
6.76453
33.8983
12.2989
88.8121
7.09122
33.5934
44.4418
19.1019
26.7318
213.997
138.938
4.76458
9.50068
12.0295
13.0323
7.03519
1.61464
52.0684
1.52306
0.374059
0.244529
1.27566
1.12199
0.40921
1.72153
2.26939
0.392661
1.279
0.539938
1.55703
0.581392
1.74682
19.3747
2.35662
1.80558
4.93249
24.0112
3.6522
58.8996
5.42064
7.90549
9.30047
6.68055
5.32411
17.9963
26.9675
4.47435
19.173
6.69918
7.29586
58.1362
3.32536
10.3944
8.99203
3.83172
12.1075
5.1917
13.2501
20.2052
7.00566
13.5494
7.72493
5.59718
4.32432
3.36769
2.38872
6.07246
2.37983
0.952781
0.306836
1.22521
0.401019
0.92723
0.344658
1.22983
3.07983
1.67217
1.35439
1.76097
2.33971
83.8837
463.421
498.15
2.50984
1.36581
25.0424
1.99498
10.7462
4.95511
1.03833
1.29103
1.34197
6.48756
2.87128
4.09048
1.84013
1.07002
3.40197
7.46912
18.8561
4.42406
14.5418
4.51955
3.96751
0.99004
1.26673
1.98855
0.676062
2.58587
0.692705
0.864266
4.34165
8.71859
12.618
12.9604
8.96522
4.50858
14.8113
9.90798
13.499
9.32427
1.49854
6.76547
18.5865
1.58351
1.59218
6.82479
1.49192
1.55586
1.64572
18.9881
7.26348
1.61586
1.5754
6.99568
0.436699
1.29232
2.56117
0.387035
0.479067
4.37275
0.498854
3.44721
0.28325
0.344672
0.126367
0.627713
0.607657
0.126592
0.279831
0.544289
1.52421
0.628543
2.00709
0.211906
0.100136
0.0680676
0.669754
0.0661506
0.220077
0.491495
0.289595
0.350269
0.696893
0.1359
0.324084
0.624411
0.126182
0.53221
5.51937
0.534787
3.21972
8.27052
12.0823
3.93092
8.10047
11.8722
3.92559
8.01327
11.7513
8.00654
11.7773
1.90709
9.18253
1.99797
24.4899
1.92858
1.96974
9.0056
1.78912
1.80869
23.1525
7.99988
1.86142
1.76398
8.56302
70.4555
518.326
89.7522
42.5286
56.0355
61.595
56.4366
46.0454
58.9373
211.724
180.865
1.99188
16.2933
2.98904
9.05447
2.89297
8.35788
2.23859
2.02637
13.2859
2.31059
6.91689
2.56442
1.83183
7.58912
1.70889
7.22141
7.85884
1.74624
1.90829
7.49604
1.82354
478.728
116.171
470.264
119.659
73.8517
141.752
4.95043
32.3318
4.27285
23.8983
4.83015
32.5845
4.81657
6.16589
6.08677
38.144
32.7048
6.37772
6.483
37.352
5.93951
41.3092
6.0278
42.6034
5.48049
6.36511
40.8264
5.27809
23.5982
25.7736
6.28985
5.59961
30.0773
5.46035
118.035
68.8189
63.6397
45.846
49.679
52.2141
75.3915
49.8243
56.7063
56.1563
51.5994
55.5878
2.6915
3.29604
10.4037
19.4505
12.4628
2.5653
3.59133
2.02515
1.67813
6.64196
8.04888
1.78228
2.0237
8.23161
2.11631
7.50628
7.01956
1.79646
1.79592
7.82211
1.96376
3.12892
12.9085
17.1506
4.30509
3.6434
15.4111
3.90556
72.3959
13.3774
70.885
67.8184
12.9435
69.0723
17.1232
8.33949
5.19616
16.8083
8.48274
35.0719
4.71142
4.80851
34.2548
12.8433
1.37503
2.45659
4.84638
2.23629
14.8762
4.40495
37.2884
5.49202
5.00244
46.5932
17.9514
5.37898
9.63235
19.7527
8.86876
14.1867
13.2589
28.2428
11.4943
6.13947
30.7679
10.8072
3.84865
2.387
4.44468
7.22755
5.28022
27.4664
2.67111
9.185
11.8071
186.193
24.4373
5.89249
11.5971
24.1764
9.90866
6.08523
3.17898
6.68711
25.9822
22.8648
17.7516
11.9574
20.7497
13.179
5.09724
13.7047
9.81839
4.90864
1.8541
8.20101
3.23214
1.92377
5.7225
5.41372
0.603534
0.145456
0.101898
0.138419
0.0997684
0.867187
0.368436
2.92431
2.6283
4.74036
2.13054
9.17528
64.9731
18.6849
1.95342
1.62214
0.639113
2.03969
0.839443
2.80096
1.43873
0.389169
0.329974
5.9558
9.3877
14.2238
0.314468
0.455403
0.22001
0.119859
0.108459
0.195075
0.119401
0.207637
0.183169
0.625861
10.8061
193.419
1.09613
1.76421
28.7396
0.46102
2.05726
2.03962
3.98519
3.11569
2.03159
2.06484
2.90888
1.34982
2.14368
3.29545
1.48367
1.52815
2.13661
1.34935
10.5288
274.735
20.0867
8.36122
57.1333
15.4392
10.6294
9.40563
17.0372
20.9722
13.8879
11.1928
48.639
17.3118
5.20353
29.7163
397.792
33.0101
49.031
4.68412
5.0062
37.0449
47.3999
4.24315
22.6581
17.6591
3.29578
2.52502
3.20063
22.4125
17.4373
27.3946
4.38319
31.1718
3.88534
31.6449
3.83166
27.0413
27.9445
5.13891
34.4941
3.07225
44.2356
3.76803
21.8029
191.009
7.93044
17.2734
66.9842
16.1652
64.6125
226.856
107.32
97.6524
11.1869
20.7498
12.9583
58.3338
393.535
82.9156
7.10999
10.9052
50.8231
13.1573
55.7149
57.9711
17.9001
20.6999
14.6702
44.1829
5.13695
50.4918
5.03964
40.486
52.5231
5.32832
42.448
40.7177
6.20214
5.62022
41.4894
5.95172
42.0581
46.363
5.66639
48.7486
6.50965
44.6643
52.4225
6.13913
39.642
4.82638
34.9302
4.93986
35.448
5.15132
39.1791
474.812
17.371
70.7316
12.2024
92.2302
272.889
15.7924
21.1182
14.3416
16.9411
18.7674
24.4939
18.2653
15.2916
176.567
8.577
182.454
9.60126
16.5807
9.4401
4.6819
8.03835
19.5029
13.5904
0.826393
1.60699
3.91014
1.64221
13.28
3.96111
56.2747
10.7077
5.64735
237.758
46.644
5.12633
5.21779
45.2136
15.6653
4.58779
7.61781
15.4918
7.67466
56.975
10.2344
56.5235
56.1241
10.2144
56.2872
42.4755
4.77425
4.85235
39.5228
13.1623
0.837316
1.64086
3.95747
1.62126
13.3588
3.9184
15.4809
7.6674
4.60166
15.6071
7.60168
44.5669
5.21038
5.13858
45.3381
15.5588
7.68967
4.60477
15.6436
7.64651
2.92945
7.16908
7.81601
6.27938
6.79002
3.26817
6.78408
6.76776
6.84919
7.07387
1.47383
6.66624
1.58851
18.1022
1.47727
1.58249
6.62601
1.47178
1.61573
18.1055
6.6149
1.62175
1.46624
6.63421
0.497945
1.20339
0.478822
1.10176
0.674393
1.23229
0.732128
1.27406
3.08462
4.70363
14.3703
3.29397
11.6966
3.72918
2.63766
12.156
2.29436
9.26692
2.59169
2.6739
4.09223
8.18952
10.8694
8.11838
11.9194
4.07587
8.12669
12.064
8.09251
12.0916
1.26096
17.1762
3.0877
22.7887
1.89336
1.53804
7.55005
1.25109
1.4
17.8961
6.24615
1.41724
1.25324
6.4286
3.48073
5.36304
1.46431
2.00676
7.68565
1.89435
2.70322
187.167
36.088
8.54574
16.7348
3.20407
3.80834
3.02915
13.9064
10.6193
14.5674
21.1242
5.81794
1.85505
2.45087
9.41356
2.1355
5.05714
10.5997
4.99883
3.12001
29.0599
4.05875
12.2487
2.85166
6.48104
17.8473
3.514
6.65464
0.747767
40.8804
1.71318
4.10085
30.2494
4.58639
3.50118
20.5925
4.53937
10.1915
3.2551
7.73272
2.94505
7.88298
46.4167
54.5726
8.73744
288.438
4.60219
6.28491
5.3831
13.3735
3.95742
8.30989
3.85738
10.547
11.003
0.81792
1.77068
2.51234
1.47176
3.00745
8.13584
57.8917
10.5796
57.7626
58.5734
10.582
58.0909
16.2434
8.13442
4.94048
16.4334
8.0254
33.0337
4.60492
33.4847
4.56842
11.3844
1.20138
1.97256
3.89917
1.98387
11.2781
3.92225
32.7159
4.47902
4.54822
32.2501
16.0656
4.90429
7.90093
15.9584
7.94622
33.5197
6.17816
39.6953
4.73567
15.7191
8.15417
4.77573
16.5553
7.77935
10.9609
1.1266
1.86844
3.78023
1.87974
10.9474
3.76381
31.3788
4.24571
4.318
31.2439
15.4947
4.75338
7.71111
15.5875
7.65139
25.399
4.64868
28.4781
4.08923
29.5136
4.19416
24.2406
24.5708
22.4492
4.06378
3.65317
27.0247
19.8098
4.13891
28.8671
4.86004
34.6004
4.28115
31.092
32.6937
4.55275
20.8879
3.55482
3.04397
14.68
16.0993
3.64266
19.585
33.4988
4.24705
34.5772
4.79663
4.68862
36.0945
32.3096
25.4206
21.0873
3.60304
3.80904
4.09724
18.1843
21.1031
30.3238
3.94404
3.75972
24.947
4.27876
21.7607
33.576
29.4917
4.56521
4.34544
27.733
4.54731
29.2254
26.4635
36.9718
4.63438
5.03102
32.2779
33.1556
4.98398
35.7064
41.9315
40.9962
4.86587
4.79605
38.2847
43.7242
5.2002
38.9461
4.40273
4.57075
29.2047
33.8577
4.94815
35.9157
39.7904
5.08008
37.7034
4.38496
41.4144
36.0357
4.98981
25.2143
31.7236
4.65997
4.9735
28.0727
29.1937
4.85442
17.4058
14.6809
3.84326
5.66936
12.5853
4.25923
19.0995
20.8187
4.70213
19.144
4.34656
15.9929
23.8594
4.62286
22.0314
4.75966
25.9867
5.34093
26.0979
4.5879
22.8734
3.62542
1.81632
1.69487
1.72628
1.48681
4.40766
1.74551
6.40013
11.9073
1.87497
1.62093
11.4455
6.60053
1.54964
7.70427
2.55563
21.513
2.34262
14.4303
10.4915
1.93506
2.99904
1.34941
1.55701
1.31421
3.31278
1.32635
1.37669
1.25058
0.439941
0.738684
12.6357
0.502965
1.08957
1.34
0.504405
0.134523
0.0950859
0.637895
0.0880223
0.582711
0.46625
1.94366
2.32929
2.04801
2.18226
1.226
0.77197
0.56321
1.69481
0.510423
1.32691
1.3606
2.11073
54.5936
2.21063
2.53912
1.97647
1.43618
2.04978
6.28734
2.30852
1.32665
6.64593
1.23766
10.3756
1.66848
1.84633
6.99479
1.21267
11.4305
1.34715
3.75054
5.06686
10.9491
3.38797
3.83965
389.185
7.11124
10.8383
49.5525
30.0324
1.65622
20.5597
6.66025
72.227
10.1455
4.68798
76.6906
11.5826
119.33
6.61397
36.0928
21.793
4.19937
31.7994
8.21873
8.01417
4.22376
8.14701
7.91704
4.12156
31.4746
8.01621
7.7562
4.1117
8.06242
7.79881
7.45015
12.7485
17.7857
7.44993
18.5829
7.6911
7.23316
9.32231
30.9836
31.56
93.0008
29.7752
9.21
27.7351
7.92994
13.2549
20.0956
6.35642
19.2775
6.76101
8.61075
8.52226
25.5062
62.9171
11.4337
27.6403
20.0701
7.71718
140.836
36.6405
39.586
28.9406
17.4226
26.8349
426.876
92.5358
62.279
24.2143
17.0863
25.0818
4.60111
36.4308
8.42181
8.34858
4.40429
8.76658
9.24814
6.35014
53.1372
6.50581
25.7331
7.56933
10.706
18.0872
6.91301
11.7317
17.1904
7.30276
7.2077
16.8869
7.02033
7.08532
9.82118
23.2724
35.0762
7.05093
9.91554
23.4452
6.8454
11.5902
7.11865
16.5636
6.82144
7.13698
16.676
7.19752
24.3044
35.6062
10.324
10.0313
23.7678
7.3264
112.73
35.6875
35.1066
22.9737
16.2365
23.1967
111.456
34.3522
34.6865
23.8127
16.4248
23.4781
15.9394
7.16755
6.03697
9.44236
9.26226
6.72046
16.9653
27.5011
98.7279
33.7173
8.24409
118.548
25.4445
9.00987
44.6147
21.3319
52.8762
391.388
15.6738
64.478
14.8687
5.93781
8.94515
6.10561
9.03755
14.4357
6.2673
5.75257
22.5944
6.63566
3.47861
5.73131
22.7389
3.48568
9.58302
66.8392
21.4635
9.5366
21.571
17.5608
73.4147
73.2031
17.6248
17.499
72.3145
17.3543
72.9923
5.772
6.64829
22.8236
3.49323
22.7964
3.49202
5.77765
17.7176
7.36358
9.56148
6.18047
7.47976
17.467
9.64073
75.6644
10.7222
24.8251
24.713
76.0324
74.4766
23.3341
10.5534
24.4492
70.1201
17.8521
6.17934
7.52737
9.7291
7.50195
9.68398
17.936
18.8383
6.45297
10.1621
7.79531
10.2244
7.84443
18.7125
80.4666
26.2015
11.5185
81.0559
26.0452
18.9753
6.48019
10.3765
7.93858
10.2858
19.1432
7.8786
79.9236
25.7214
11.4139
25.9205
79.2608
5.93505
23.5263
6.80393
3.59713
5.9661
23.3611
3.58826
9.94045
69.6187
22.4539
10.0415
22.2732
17.9841
73.9934
17.7978
74.8764
18.1528
76.1449
18.305
75.5344
5.85988
6.73521
22.9641
3.52214
5.82574
23.1565
3.53201
18.3827
10.0677
7.72539
6.30501
7.66331
18.5421
9.9801
77.016
10.9559
24.9046
76.4523
25.0652
78.0453
25.5346
11.0777
25.3438
78.6087
18.1647
6.23592
7.5389
9.7973
18.0427
7.58228
9.86119
6.70816
54.4533
20.1083
11.7214
6.77132
19.9298
11.6014
6.32688
22.0842
4.42521
2.50244
22.2721
2.50607
6.29141
6.39474
2.55471
22.7624
4.48861
6.44913
22.5507
2.54176
6.09564
43.6216
12.4063
9.69634
5.74033
16.2747
10.3646
6.03887
21.7525
4.19691
2.42337
21.3492
6.16601
2.3954
5.91011
2.40255
20.3999
4.14745
5.72537
20.8673
2.40591
4.43406
14.5261
7.39698
5.84779
4.43082
7.42075
5.89038
4.59418
17.3058
3.18383
1.8023
17.2149
1.79334
4.62131
4.59144
1.7883
17.1561
3.17566
4.58768
17.1718
1.78789
4.56438
15.1388
7.77325
6.10786
4.60621
7.70993
6.07227
4.71845
17.5683
3.31939
1.89141
17.5398
4.71761
1.88852
4.7288
1.88462
17.7532
3.31159
4.76707
17.621
1.8759
9.10955
34.6621
7.73963
36.3263
8.75472
8.33482
37.7796
9.62136
38.949
11.6325
43.374
11.0802
10.3047
38.2663
10.4228
10.5991
38.5818
47.7396
9.83233
12.2352
41.3381
12.6395
47.1123
43.3751
10.314
10.9518
51.2694
11.5629
20.2069
25.7798
17.4723
346.859
21.5048
15.5676
11.5794
50.847
83.4843
12.5096
14.2388
80.7327
8.32403
31.823
7.46362
36.1684
8.45241
7.50749
36.9982
8.93408
37.8409
40.8812
9.97831
9.81962
38.6706
9.05872
9.41404
10.4873
38.354
44.2528
9.40414
10.6643
40.5708
16.9635
14.9598
79.7322
13.7891
18.7155
22.4753
29.1578
20.1248
31.7003
20.3598
12.5959
76.2835
96.7033
15.4959
16.0816
324.717
6.00095
19.7277
15.2799
4.72425
22.5644
4.98482
5.68797
6.95133
33.6111
30.5456
7.4811
30.2786
6.96772
8.05619
6.20466
5.03369
16.616
25.4418
24.3168
5.11728
6.00872
3.29559
8.57824
9.08199
2.87005
10.7197
3.06972
3.2708
4.1731
14.1175
15.9207
5.26339
12.8821
4.55417
4.98143
3.88033
4.23854
11.2218
18.7051
14.0422
3.8161
4.63837
3.53348
10.6958
12.4345
4.19755
10.0113
4.14295
3.57683
3.57595
4.43583
13.1744
10.8671
10.3522
4.2161
3.74204
7.65422
36.7199
31.0938
7.70768
33.4532
7.06195
9.00934
7.02972
33.0176
23.7978
6.32158
30.5382
7.42506
5.97095
6.75661
5.08554
26.1938
20.5016
28.3575
6.0616
5.59908
76.6512
73.4086
303.541
15.4546
25.5849
23.5041
28.8492
38.985
31.2168
32.8363
36.3647
31.0349
35.3623
40.862
33.5481
17.7153
27.645
26.149
39.663
36.0789
32.8476
49.1714
48.0453
77.4094
93.7496
44.0047
81.154
5.39544
18.3075
4.42479
13.9758
5.33594
17.4414
4.44454
5.94399
30.0378
6.99021
20.5881
7.15602
23.0402
5.7713
5.12819
3.98514
12.8501
18.8225
15.6613
4.21283
4.775
3.22385
9.42368
3.96132
10.9968
3.39725
9.15892
3.73005
3.06011
3.61298
10.3323
9.49063
8.72799
3.53419
3.12827
5.06819
24.4431
6.67169
18.5667
6.24726
16.548
5.45353
4.40344
12.1183
11.7982
3.51549
15.1254
3.73157
4.09469
4.35644
3.71937
14.9538
10.7755
13.5275
4.45793
3.64524
10.7219
36.6348
8.48586
39.8088
9.37976
42.6909
9.89106
10.9498
45.1441
14.7465
87.6411
12.0643
45.332
13.6576
13.684
15.3487
73.6531
273.28
68.0298
12.4425
18.0321
8.83196
11.5743
2.63955
2.38488
2.48839
10.6369
9.74374
38.9485
37.7154
42.0885
33.8488
41.9262
45.5319
41.0172
47.7918
37.5273
27.4568
30.0162
36.0678
8.23326
1.95579
2.02038
6.00515
2.19835
6.07972
9.59795
13.7827
42.9295
8.93081
43.6159
10.9941
69.2517
10.769
16.6095
29.9865
19.837
25.4788
18.6259
17.9074
86.514
297.626
14.1485
20.4711
25.5164
19.5503
21.4298
16.642
36.2952
42.8088
39.4924
39.1893
29.5431
23.9771
19.9959
33.2639
6.09816
14.9322
5.97248
21.01
7.15269
5.53826
18.2248
7.3077
21.9142
31.3799
7.93034
8.33105
24.4161
7.30966
7.09197
8.91217
29.0311
32.8721
8.49497
7.97297
26.1475
11.3311
51.8297
10.9313
41.0909
12.4783
10.2524
43.5483
11.5798
84.1871
54.4962
13.2377
12.894
48.2921
13.1046
11.5281
10.7844
41.0269
47.787
10.8522
11.6264
43.169
7.8143
20.0486
6.41863
25.869
7.76786
6.85796
28.5344
8.43476
37.8707
10.3137
39.4575
9.11604
9.38209
36.0228
8.99354
10.4523
33.8134
39.2374
9.15549
10.0232
35.2015
9.84228
38.026
36.7707
8.83355
9.16709
39.6951
9.6065
8.52107
47.7921
46.6046
11.3534
11.4384
44.5853
8.78426
9.18597
9.7341
37.8565
42.7627
8.63706
10.4962
41.3075
35.9021
32.3623
34.5978
44.5942
43.8136
37.3321
32.5502
38.1233
34.8073
13.6666
67.3622
15.654
70.0586
17.6026
27.5462
35.3741
27.7634
23.5239
33.3076
26.2192
17.6211
26.5671
18.2426
86.199
11.1059
62.8408
18.0666
41.9017
267.132
14.5493
26.9945
20.5698
18.6252
94.1729
42.8623
48.1393
43.8853
40.4843
46.9111
37.5496
37.2937
40.4012
2.80845
10.0492
7.96334
2.8508
8.77692
2.60472
3.12769
2.33747
8.53127
8.05816
2.58311
7.5256
2.33156
2.56939
46.0086
48.0083
72.6208
93.778
282.168
38.569
49.4134
41.6867
50.3374
85.6333
46.4597
79.3447
98.498
50.2748
3.88852
9.18645
7.77602
3.29995
8.70045
3.66471
3.47386
4.05187
11.807
5.25137
11.868
4.64547
10.0079
4.47737
3.80479
3.53659
7.74781
9.97278
8.71892
3.41571
3.93807
4.68885
16.2332
5.53364
11.6227
5.6196
12.7144
4.63604
4.03644
11.0423
3.39342
9.86898
3.91564
11.9193
3.51105
4.24425
3.58502
9.86738
9.08797
10.5374
4.02124
3.74151
88.2249
4.98946
19.2131
6.45028
24.0358
5.96808
16.8941
5.79659
3.89272
11.886
3.18548
11.9101
3.55136
14.787
3.6241
4.55066
4.7301
20.6944
14.8148
18.9878
5.27598
4.27358
6.05147
36.7143
36.1242
5.45264
35.8152
5.80903
6.44693
5.59321
22.9096
18.6261
4.42806
26.7758
4.78334
5.14158
5.86145
4.76798
31.0967
20.8721
29.6645
5.37756
5.03307
7.19102
36.3524
7.16171
31.0489
7.71935
35.0945
6.55708
6.52867
34.4113
35.4385
5.92122
35.3243
6.57862
6.30669
6.70296
5.44406
28.276
32.3732
33.7434
6.04308
6.09526
3.16836
9.60557
2.86405
12.6609
2.85016
11.0398
3.20879
3.49222
12.935
15.2665
3.76176
12.3184
4.04586
3.25147
3.64012
4.35315
15.9528
16.8795
13.2122
3.71257
4.25543
21.7872
22.1934
25.1203
18.3975
2.33634
1.66844
1.29279
1.23955
1.74108
1.26208
2.30087
14.6492
7.72344
10.0362
12.2706
2.98863
1.29892
3.4393
1.32987
3.3188
1.27581
2.90995
18.9985
20.5574
22.8923
16.4841
2.1752
1.23153
1.0984
1.50746
1.55083
1.19461
2.12913
31.1514
32.364
29.3949
32.2063
28.6696
23.7424
25.4248
27.404
29.8439
24.4546
28.8693
27.2225
30.991
26.0567
28.1081
29.684
3.47891
4.74202
1.40556
1.52883
3.99995
1.44924
4.37213
33.6401
34.1381
35.7137
32.5949
3.43183
1.51133
4.10464
1.57347
3.41243
1.48918
4.19182
30.0322
24.8426
26.4158
28.765
15.7611
7.22215
10.9792
11.9454
17.6593
19.8954
21.7228
15.6739
20.0468
20.5371
16.317
23.8091
20.5037
7.5496
4.52782
18.6
7.89709
14.4378
16.4575
3.35559
1.91177
6.16225
2.22926
6.04605
3.44897
2.17772
17.7303
17.5423
21.761
4.58335
8.38433
22.2143
8.22935
49.4957
9.58964
52.4327
54.3493
9.88592
53.773
16.4179
16.7014
3.33301
1.85009
5.95546
2.1489
5.91871
3.36837
2.12251
20.9612
7.44105
4.29917
19.426
7.91402
17.1817
17.037
21.6376
8.22265
4.45286
21.8352
8.13771
1.15534
2.59512
1.21499
0.927046
1.47506
3.49717
10.7631
4.83899
7.62272
1.4194
2.75472
3.2216
1.80028
1.99685
0.98925
0.712121
2.14036
0.747595
1.21175
0.664587
1.41066
8.94304
29.9893
8.88014
63.0072
3.96569
1.88211
6.65315
1.19828
8.64101
5.72384
3.79851
6.53912
18.1976
2.37735
43.2214
2.86382
10.8009
4.04622
0.936332
2.70307
1.21567
9.31406
3.6846
2.22499
1.34951
18.2742
0.512101
3.06942
0.868422
0.90641
3.15716
0.569521
1.07108
3.39414
1.03908
3.37126
1.35054
1.35628
2.50461
2.5077
1.3564
1.34595
1.42206
2.64681
1.40211
2.62839
1.43401
1.3998
0.0371446
0.0395916
0.236269
0.0369764
0.0424789
0.065713
0.0363079
0.0415163
0.101641
0.0470498
0.105527
0.047053
0.0421011
0.0961536
0.0568233
0.0618088
0.145009
0.205884
0.05904
0.0581564
0.139256
0.0501998
0.121208
0.179201
0.0540367
0.0549843
0.123765
0.0499534
2.89185
0.760102
0.4275
2.82605
0.751416
10.1125
0.393113
2.4374
0.581047
2.56997
0.67587
1.58328
1.55035
2.94657
1.59768
2.91156
1.53315
1.51985
2.77274
1.46072
2.80089
1.50681
1.48009
3.28294
1.20879
4.20343
1.34203
3.9976
4.1282
1.14974
19.6861
20.3723
13.5854
30.7539
21.2644
22.7677
18.9301
25.2098
2.245
1.33492
0.965221
0.8449
2.13271
1.40622
0.978377
3.2291
1.19224
3.6098
1.09297
2.9081
3.90895
1.09061
24.9115
39.1654
36.1297
29.0292
2.66706
1.34936
3.2027
0.950303
1.93784
3.99057
1.07683
14.5963
2.63995
2.16492
7.74852
2.74932
14.8556
7.56942
12.0244
13.8658
3.33429
2.68661
3.05904
15.8403
11.0547
171.183
52.1227
70.4898
59.933
14.5362
3.56116
3.75216
20.5304
3.47615
19.9441
14.9713
13.9638
1.96464
2.22514
6.42848
2.48044
11.5993
6.96926
195.186
61.1219
219.952
61.1496
11.7014
2.8417
8.54624
2.53893
9.74942
13.8936
3.05113
96.1768
137.975
11.165
9.21893
4.0894
5.74993
12.7631
8.8234
4.99618
12.8838
3.96873
18.7434
4.07278
15.9928
14.0422
4.41058
419.81
62.2709
77.0663
252.633
6.11847
2.88886
12.3069
3.6163
5.04913
11.3647
3.33215
4.54332
1.49507
1.45989
4.69131
4.45938
1.45293
4.72103
32.1789
26.6091
30.2441
28.6388
5.02105
5.62945
1.46203
1.53208
6.06524
5.07294
1.5106
39.0207
45.3055
40.2785
46.0665
5.31089
1.43794
1.39383
4.97616
5.77699
1.44264
4.75534
4.60405
1.46884
4.43998
1.52308
4.68839
4.36625
1.49888
35.8826
41.7802
32.4072
43.9045
44.5354
9.12013
43.7424
36.1362
7.74398
38.6839
5.73756
2.39816
37.1564
12.1064
37.2332
5.75063
2.38147
14.5527
14.4681
2.41159
1.50335
5.06399
1.62692
5.04097
2.45299
1.60767
14.6372
14.5683
5.79814
38.2369
12.1974
2.42188
37.6262
5.86798
2.38788
15.8495
15.5917
11.7832
6.42974
27.1821
16.8113
198.566
4.97828
2.6148
1.58564
5.19195
1.67258
5.26001
2.54114
1.70691
14.9604
15.1997
6.67202
40.4406
14.829
2.5062
50.1213
6.10304
2.73352
6.36845
17.9241
29.4695
6.06371
6.74681
24.6435
5.54652
11.5876
23.2904
17.5897
9.57708
4.73739
72.4087
12.1676
12.8135
52.6474
350.394
10.8285
10.1613
57.9515
17.682
15.1066
14.376
13.2085
23.5344
24.8762
26.866
21.8759
19.1955
13.389
14.7613
17.7491
7.16326
31.7868
34.9693
7.61022
7.03971
38.7442
7.63089
8.65898
53.279
13.179
163.475
9.45039
15.2805
57.1801
9.30429
15.9313
56.1104
177.718
9.89071
16.1061
57.2642
7.62394
36.5112
4.57707
7.93771
14.4123
21.7442
17.9441
18.397
11.4494
11.8126
10.0746
14.7955
6.13358
4.95487
13.9798
186.365
45.2622
2.86761
10.806
2.14196
1.48745
4.81739
1.82599
4.69756
2.236
1.79146
12.8037
12.7114
13.3486
12.9349
5.76411
36.5361
12.6259
2.70967
37.879
5.6924
2.71413
32.4951
6.34911
32.2167
31.6841
6.31167
31.9557
14.6851
14.3388
2.2166
1.51746
4.89802
1.79345
4.95195
2.26328
1.7698
5.77383
2.64627
36.8389
12.2562
36.7628
5.81215
2.62214
13.717
13.9778
5.73822
36.4136
2.65608
12.2503
5.69357
36.5791
2.63355
0.146074
1.22227
0.271936
0.246804
1.16458
5.59125
0.398028
1.08512
30.0052
0.543365
0.140689
0.205029
1.05846
0.226006
1.08536
0.849148
0.681725
0.757261
1.26764
1.30072
2.36495
1.27245
2.36075
1.32141
1.19587
2.21817
1.27038
2.22556
1.19024
1.27991
0.0294378
0.0398446
0.57715
0.157499
0.0391872
0.0342499
0.0986275
0.031884
0.101079
0.0423206
0.155989
0.0407339
0.0332647
0.100505
0.0406169
0.0508109
0.123028
0.210349
0.054587
0.041277
0.131676
0.0378403
0.114681
0.21269
0.048166
0.0522063
0.127449
0.036912
0.192721
1.33283
0.314596
1.43582
0.367472
65.0973
1.7097
2.54036
0.253447
2.19433
0.681804
1.70664
0.550019
1.06577
1.16226
1.38519
1.13081
1.25765
2.03232
1.12676
2.04431
1.27331
1.15054
2.11084
1.23687
2.10461
1.15367
1.27591
32.7409
6.49341
32.9813
33.4919
6.53288
33.2362
5.75094
2.42253
37.0979
12.1305
37.1389
5.7322
2.4262
14.4461
14.5523
2.33351
1.5065
5.08981
1.69173
5.06053
2.37428
1.66317
14.5992
14.5446
5.77093
37.1272
12.2006
2.50512
37.1697
5.78837
2.46893
14.8573
14.702
5.82519
2.6122
37.0297
12.2697
5.84478
37.0457
2.58334
2.31302
1.52654
5.0943
1.73088
5.10459
2.3579
1.72078
14.5654
14.6111
5.81661
37.0936
12.2682
2.55086
37.1293
5.79156
2.55302
3.44289
13.6432
3.9162
16.4956
3.45899
12.5609
3.85728
2.17315
3.65733
7.96628
1.88001
1.72951
7.51186
2.85736
3.27209
3.78485
15.4903
12.1503
11.5751
3.70994
3.35333
5.32576
35.2443
5.09897
31.279
6.27809
31.8032
4.89924
5.3442
25.8232
21.8653
5.09664
26.8579
5.16523
6.14007
5.34874
4.36959
27.5952
23.1516
27.9121
5.07466
5.26685
4.38946
26.895
5.0261
21.3078
5.1412
25.3402
4.16816
4.50097
32.4483
5.38955
29.1474
5.80769
28.6287
4.94811
4.31843
4.83239
20.2866
24.9348
24.3354
4.0555
4.91449
3.59465
6.01207
11.4121
3.23816
3.14634
10.7728
3.97527
4.51854
12.6182
17.8335
4.71587
13.7824
4.90527
4.23745
4.82563
4.32137
15.7206
19.2476
15.2879
4.17014
5.10382
29.7066
93.6895
88.7935
367.716
28.4642
56.468
81.9902
7.73871
7.52635
28.4938
4.2847
28.702
4.28689
7.73379
6.8463
6.51203
10.4391
14.3508
10.3648
6.88141
6.59339
7.69514
7.58376
28.9555
4.31211
28.8279
7.71931
4.30065
7.05908
10.3348
14.3746
6.5188
10.418
6.6275
6.91104
21.4358
15.4175
15.7377
339.59
12.593
31.5787
11.7799
107.01
22.0422
17.023
16.3557
11.0193
28.4643
85.7811
11.2656
89.6884
7.39819
7.20792
28.1008
4.2312
4.1911
26.9491
7.63702
6.06962
8.05869
49.4554
12.0547
9.78771
6.02396
8.49855
6.76954
6.64087
3.75781
17.3538
5.53497
3.90969
24.4352
6.73163
10.1518
13.2317
6.44783
6.35696
9.64116
6.82636
20.6386
15.3482
15.1939
78.9988
10.3673
26.2217
10.5793
80.7441
20.0476
14.4703
14.8044
10.9785
27.1074
84.7575
10.8879
83.9771
7.87699
6.05088
6.67407
21.8055
21.6296
5.99358
8.009
70.3431
71.4936
11.9349
19.5588
7.33486
5.72221
20.2765
11.7403
5.81859
12.3399
6.02048
7.52869
20.872
20.763
5.96531
12.3566
7.76646
6.53057
21.1371
5.79879
21.3906
7.67661
5.86547
72.6948
72.061
7.60165
51.1729
17.7144
7.66566
17.855
12.1555
20.2083
20.4398
11.9828
12.1638
20.0488
11.9361
20.3829
7.92641
6.05141
21.8343
6.69957
6.05617
7.98507
21.8664
12.331
21.2126
7.67665
6.02053
21.3404
6.00649
12.4121
73.9846
73.526
12.5172
6.03015
7.6965
20.9564
21.2384
6.06351
12.3551
72.978
73.1902
7.92635
6.63507
6.0387
22.0183
6.01172
21.9013
7.97377
9.08339
6.54404
23.704
6.13415
23.6725
6.13299
9.13491
77.4731
76.5571
14.422
40.6624
6.84645
9.05
15.3654
26.178
6.43159
9.14718
6.52472
24.0512
6.2331
23.7455
9.34668
6.12949
76.0475
76.227
14.2679
6.29897
8.41549
23.7552
24.3867
6.35059
14.0451
4.02138
6.12693
3.2368
2.96425
3.9999
6.2015
2.96986
7.59266
52.2302
17.9192
7.65682
17.9707
12.179
20.26
11.9729
20.6239
12.1539
20.3837
12.019
20.522
8.97666
23.6745
6.17477
6.56716
6.13233
9.13836
23.4138
12.6516
21.3649
7.84006
6.02283
21.9981
12.4566
6.0757
74.4271
74.8781
75.7498
75.0518
13.9667
6.31307
8.17358
23.593
23.4528
6.27781
14.0055
8.08176
6.65015
6.02717
22.1051
7.97747
6.05003
22.2341
4.27787
13.2339
5.67631
6.9267
4.33337
5.70459
6.8465
4.31949
15.6311
2.89257
1.61711
16.249
1.62367
4.25266
4.40474
1.70158
16.7724
2.9915
4.44913
16.6002
1.68573
4.05577
12.3291
5.20737
6.12976
3.97279
5.41454
6.34279
4.35813
14.6477
3.32041
1.82015
14.9012
4.17375
1.91899
4.14002
1.74834
13.0812
3.0409
4.04365
13.7375
1.76259
4.00734
11.1982
5.69488
5.27363
4.04712
5.69594
5.47668
3.9628
12.2643
2.87734
1.84033
12.1678
1.82042
4.01077
3.98558
1.86398
12.1078
2.88657
4.02128
12.1125
1.83525
3.9362
11.345
5.79905
5.19226
3.96802
5.77562
5.37317
3.95935
12.2977
2.86029
1.80654
12.3226
3.99378
1.78802
3.94991
1.77665
12.4614
2.84859
3.98041
12.3723
1.76078
0.555568
2.41051
3.14796
0.552264
0.611064
2.85689
0.513328
0.612622
0.603365
3.22692
3.43019
0.611812
0.636733
3.11867
0.614132
4.795
0.809261
3.44509
0.579241
0.904718
3.47189
0.633693
3.20673
3.7882
0.699081
0.7494
3.54626
0.63327
0.624535
0.715612
3.8493
4.0591
0.592502
0.765435
3.76216
56.8122
9.16964
33.793
7.79992
59.9637
36.9374
9.86408
63.2156
12.1951
8.51363
53.7028
9.62652
32.8653
27.4187
6.20033
6.7117
28.8072
29.8335
7.32136
19.9684
3.38352
14.0861
4.41002
13.6526
20.8094
4.0706
24.038
4.74121
5.06933
27.5502
26.1716
4.60498
24.1107
24.4637
28.7198
5.11054
5.11483
25.8141
26.468
4.64032
28.717
5.51838
29.9459
6.57456
27.7907
32.2848
5.72331
20.6187
3.57712
13.9132
4.20586
14.2296
20.2027
4.31315
25.2428
26.6242
5.49331
4.79372
27.4086
24.5773
4.94588
31.8831
9.50829
9.41642
223.724
52.3485
7.33161
62.0745
26.731
6.59103
5.44296
28.9853
26.7238
5.94699
29.9084
27.5374
30.4555
7.41358
5.51412
33.5911
27.0567
6.13175
31.8412
36.3401
33.1216
33.0304
31.812
31.5111
37.7017
34.2477
33.4317
80.9314
334.164
46.8043
74.7264
90.8755
35.321
34.566
36.1654
41.8017
50.5868
43.4158
34.9967
39.52
37.1601
39.8884
32.2305
35.2987
307.499
79.6008
35.714
72.2074
41.3903
1.21095
5.34487
1.18465
6.14023
1.03936
5.66191
1.33057
1.37883
1.77069
7.65934
7.17101
6.43443
1.48668
1.51459
3.34929
18.2665
3.27654
15.4848
3.82195
20.0727
2.84694
3.55865
23.8775
14.8438
3.93619
17.7008
3.40747
4.13487
2.9498
2.411
11.2581
12.2502
14.4043
2.50374
2.83148
2.16514
10.0876
2.72279
12.1483
2.38894
10.1614
2.44117
1.90915
1.98701
7.31254
9.23646
8.05162
1.75778
2.15541
1.67162
6.93337
1.30057
6.69628
1.43427
7.51517
1.48047
2.39443
14.136
16.698
3.27671
11.7263
2.74004
2.81193
1.91583
2.01132
8.0445
13.0418
9.37446
1.6909
2.31668
18.5157
22.0222
23.9635
29.4537
30.1606
28.7883
25.2077
27.6934
26.6703
22.9896
23.8801
23.3082
21.9026
24.1156
23.0592
24.1721
24.7007
23.7847
12.0613
20.0662
18.226
20.0436
23.9454
21.3711
23.9554
24.4041
22.7187
32.4726
31.0864
32.6192
29.9695
26.0373
29.3627
28.1583
26.2641
28.8258
0.621883
1.92682
2.02954
0.638317
0.638078
2.2511
0.645485
27.1528
4.82602
26.2391
4.53416
27.1449
26.5943
4.9202
29.2608
6.63946
5.51959
27.0711
26.6338
5.95445
30.6133
28.4411
26.5711
4.91656
5.09408
27.6238
26.6334
5.40253
234.855
74.319
15.5098
2.9738
11.6025
3.34916
12.1252
14.8266
3.64717
22.459
4.4061
26.6065
4.91356
22.821
26.8168
4.34488
60.8414
63.955
22.6103
26.1685
3.98786
5.05417
21.5454
27.7238
4.38888
20.2138
3.44797
23.9156
4.11344
18.7495
25.0382
3.57312
56.2596
56.1494
14.3814
2.59449
11.2973
3.18921
11.2179
14.4571
3.18733
59.3187
58.3519
21.2053
25.6575
4.43289
3.80778
26.1111
21.1087
3.84028
31.3853
8.10841
5.83186
28.2297
27.1879
6.9844
35.5691
27.6226
5.87597
27.498
5.36096
27.3972
27.7521
5.82352
29.9521
27.0498
5.33498
5.60568
27.0483
29.2415
6.18821
32.7322
9.5539
241.02
9.24344
63.1386
56.1548
7.26492
27.2555
5.44976
29.875
6.28078
27.0818
30.9916
5.87917
30.0849
54.4588
8.23435
7.20468
54.0033
34.7763
6.71788
13.1321
12.796
11.3624
198.913
4.59344
6.71747
27.0776
48.8138
8.20838
49.4188
57.5599
9.39346
6.77653
48.6415
8.07293
18.058
11.4486
16.2535
17.9554
15.359
17.9618
235.266
10.0636
11.7809
14.6655
25.4172
4.64359
26.2418
5.01563
25.774
26.0056
4.71398
29.0651
3.75009
5.68851
24.5789
31.9232
5.21265
24.6498
25.2833
30.1662
5.48068
5.58804
26.445
27.4334
5.04299
54.9529
7.7906
8.73863
30.2069
9.76088
34.715
54.8718
64.9325
8.76874
12.7207
10.0611
55.5814
236.467
10.8634
14.2225
12.9158
23.8154
25.6969
25.3929
21.4679
21.8713
23.2869
24.5683
22.9527
24.4516
240.004
10.2828
10.0064
33.1062
13.5663
56.4507
64.5594
19.0109
23.5115
17.7893
12.6425
21.4738
15.1358
20.2764
18.6215
22.4805
19.1287
20.9135
21.1552
19.503
21.891
21.9353
0.709805
9.46854
2.13778
2.99061
0.798659
2.0116
2.27164
0.6004
0.900686
1.05267
0.591025
0.596677
0.583101
1.16467
0.630624
0.605771
1.96135
1.33412
0.660274
0.585531
1.53452
0.442965
1.91313
0.503544
1.96542
0.473491
0.481996
1.75858
0.484074
1.70569
1.38546
0.47528
0.46645
1.71308
0.513247
0.429797
0.430268
1.79473
1.34312
0.467268
0.409635
1.59442
0.833513
9.39043
1.99445
3.53801
0.838445
1.79568
3.73345
0.654341
2.73319
0.657361
2.55104
0.639796
0.647633
2.72105
0.676544
0.633508
2.35492
2.35922
0.674733
0.646445
2.62424
0.340945
0.504559
0.714409
0.336932
0.329571
0.353546
0.648819
0.439894
0.687705
1.05197
0.456794
0.451743
0.706984
0.443446
0.364742
0.402797
0.931673
1.08366
0.372011
0.388695
0.820285
41.746
16.8818
6.18118
3.31782
14.9033
6.95815
12.6562
12.757
2.57265
1.55648
4.72266
2.06354
4.73245
2.67413
2.03353
12.7119
12.8682
18.1553
3.56116
7.40463
18.2264
7.3762
36.6951
6.94495
37.3244
39.0764
7.13391
38.2116
11.4278
11.5664
2.42759
1.3305
4.37546
1.78378
4.25638
2.54658
1.70107
16.8515
6.47072
3.29895
16.5758
6.57855
12.1423
11.8307
17.2631
6.89203
3.38382
17.4378
6.77103
0.584579
0.0638304
0.236876
0.0772462
0.0916292
0.431664
0.259824
18.5637
2.0103
1.97039
4.97628
3.49605
0.873685
0.0679174
0.154128
0.338759
1.05249
0.115794
0.291853
0.35753
0.23561
0.0739688
0.0626908
0.384768
0.228002
0.0725338
1.89306
0.86656
1.27016
1.10648
2.17347
0.323931
0.0613469
0.166416
0.0690863
0.207674
0.0718375
0.282194
0.605055
0.7942
1.16125
0.631237
1.1174
0.780437
0.551715
1.00806
0.690565
1.04533
0.532799
0.72152
3.94164
14.4226
6.35989
4.61294
3.9323
5.09716
4.63311
5.6922
5.01765
3.29281
10.4154
3.44762
8.11418
5.12307
4.64415
4.91928
9.91725
11.2399
8.10389
4.87834
4.62183
4.94917
24.9049
4.65959
21.9076
5.39434
26.2207
5.24929
4.76791
26.2966
4.521
24.5723
4.67434
24.6472
5.12744
5.13052
5.66941
16.666
22.6269
21.3838
5.45039
5.78684
4.90229
2.53661
7.78024
8.29779
4.94666
5.11475
7.25029
5.68138
11.9076
4.39011
18.2783
3.99799
14.5235
5.49479
5.89472
6.23169
11.6031
12.6165
8.70552
6.7571
5.69128
4.04265
8.84808
3.1258
12.9224
2.84153
14.6946
4.60509
3.7808
18.1986
3.78745
22.7378
3.29104
19.2689
4.27422
4.17012
5.17964
14.9705
20.8819
17.7436
4.48175
4.73163
72.5886
22.2158
14.6917
3.93856
5.51516
7.0681
14.5998
8.63224
10.8396
19.4915
17.8473
16.6315
12.6512
10.8152
13.3436
15.1846
11.4535
14.0523
34.7701
6.1748
33.9808
32.8249
5.98538
33.232
13.6438
5.03756
2.58402
13.3114
5.1564
7.64607
8.55735
1.8792
0.879911
3.2098
1.13184
3.13277
1.91878
1.10723
9.39428
9.13686
14.0168
2.65289
5.36992
14.1907
5.30173
132.148
29.6995
35.8725
28.2386
20.3016
24.9974
18.2735
17.5253
21.7678
1.91771
4.3063
3.82213
5.30008
8.36574
5.86355
7.00851
8.91447
6.31153
10.6089
10.3487
15.2964
5.95125
2.92794
15.5403
5.8273
2.02186
0.972359
3.36252
1.2009
3.42267
1.99906
1.22023
9.75592
9.94425
14.8209
2.82599
5.55904
14.6255
5.63182
0.644096
1.71398
0.642074
1.59602
0.656098
0.655596
1.67929
0.714533
1.81097
0.722378
1.62561
0.745664
0.734233
1.86266
0.659674
0.66091
1.53636
1.39257
0.672011
0.670868
1.59222
0.783673
0.992142
0.745151
1.38365
0.778456
0.757567
1.08151
0.698097
0.67518
0.924147
1.1816
0.695141
0.683975
0.92608
3.50107
5.11755
3.16778
204.192
2.46132
2.50714
10.6253
6.02268
33.4877
27.8197
7.47429
3.50363
5.20384
2.36565
0.860049
6.5427
19.4437
19.6557
0.880789
2.31182
0.903196
0.408472
1.28086
0.489299
1.25532
0.906748
0.482823
2.83767
2.90774
3.02132
2.95578
2.41237
20.2547
6.62832
0.905466
19.987
2.45092
0.894418
18.9709
3.54948
18.7286
18.3612
3.51392
18.5375
12.9032
10.2986
11.4043
3.4994
4.74092
6.24534
8.08051
7.38613
9.45661
10.0604
7.31524
9.66345
16.3562
12.0063
14.2694
9.80813
9.77407
12.0778
3.30129
3.23371
0.939778
0.448769
1.34869
0.518916
1.36326
0.939756
0.522776
2.60409
0.979666
21.5389
7.02334
21.2534
2.64881
0.963975
3.15655
3.1915
2.5703
20.8192
0.949483
6.95201
2.54503
20.9825
0.955886
9.6949
0.469367
1.7545
6.37531
1.36722
18.6113
3.57522
33.2691
6.33696
3.37343
10.5517
18.6897
206.328
2.45433
5.41457
28.6967
0.172567
0.0320067
0.20216
0.0440862
0.0354783
0.214185
0.123064
0.618978
1.51559
3.72317
0.361916
0.285483
0.861481
2.892
0.766128
0.473639
0.690316
0.48787
0.156379
0.0268765
0.0286565
0.103462
0.153792
0.0299912
0.104363
0.962101
0.978763
1.50033
0.581968
0.115548
0.0617233
0.321665
0.0604247
0.36707
0.397784
0.0581063
0.341417
4.20646
7.03722
1.0417
0.23045
3.25475
10.1462
1.02492
1.06621
0.14939
0.0694484
0.620118
0.0713881
0.227831
0.469348
0.0656284
1.51649
14.1936
1.17548
4.59091
8.88672
6.29326
1.12322
2.23942
2.20724
6.43868
4.14141
4.10039
18.8904
15.0358
16.133
12.8879
13.0848
15.552
12.6316
10.9647
13.5581
19.4162
3.84751
20.0715
25.9228
4.31399
22.0107
12.7126
4.70286
2.38909
12.3667
4.83937
5.83381
6.3122
1.48352
0.707477
1.83876
0.818224
2.03697
1.34969
0.897413
4.17767
4.74095
11.1005
2.13462
3.57374
9.29907
4.28732
11.6007
11.2281
13.5644
16.466
13.6376
13.7873
8.80352
11.1535
11.2734
1.92311
3.23313
3.52198
5.26967
10.6661
7.98609
5.46331
8.48692
5.90964
3.42437
3.45397
2.83658
1.02208
22.1568
7.64859
2.74568
23.4052
1.05801
1.0485
0.520368
1.60162
0.682235
1.53367
1.16069
0.610048
3.67578
3.52835
3.16691
142.167
9.13413
2.61683
30.251
6.32518
1.205
11.3109
14.431
14.274
16.6105
20.2695
16.809
11.2121
13.9785
14.1414
17.189
20.4974
16.9849
2.79066
2.84812
3.70177
5.10994
3.5679
2.79662
2.70362
2.59538
3.18735
4.2494
2.39811
3.26109
2.45683
2.58049
76.8192
8.86608
23.7007
24.5356
73.3745
23.7121
15.1638
13.2107
4.52868
38.4689
7.23784
14.1237
93.6699
9.41655
44.4592
314.913
27.751
21.7901
6.31565
4.32966
13.3817
6.49714
21.2169
13.6129
2.47918
2.28406
3.01972
3.72179
2.47591
2.29374
3.03577
2.50996
3.09532
3.76895
2.33296
2.32101
3.07449
2.51464
72.3966
8.44301
23.4716
23.3743
72.614
20.6908
12.7364
6.07983
4.12537
20.5276
6.13824
12.9022
72.0153
8.37139
23.1322
71.6307
23.2605
20.8806
6.24505
4.17179
13.2308
6.19544
21.0038
13.0877
9.32948
3.58959
1.78185
3.16576
2.80516
2.84803
13.2677
17.8716
10.393
10.9217
16.2584
20.7962
6.44574
4.29655
4.31041
6.93204
18.2212
4.65277
242.22
34.1108
3.31356
5.22042
7.00823
7.76237
6.21764
4.69387
4.64475
1.6534
2.27827
1.84224
2.41048
4.06124
1.98481
28.7701
12.5633
11.7078
42.3086
13.7123
9.67144
41.3699
3.25374
13.5831
41.8058
3.27865
5.37532
8.2859
8.20418
5.4263
5.33293
8.00399
5.27263
8.12591
15.829
4.00274
3.42468
1.99407
4.18671
14.9707
3.52107
5.79137
8.54811
3.8056
3.93928
8.43153
3.90387
5.86213
51.2554
13.757
13.617
51.7567
5.64502
3.65946
3.73016
7.6792
8.18841
3.82996
5.30502
50.1955
13.1338
46.8937
13.4397
16.1439
2.03246
4.3013
3.61439
4.26634
3.58862
16.2949
17.2342
2.18172
3.84441
4.53282
3.86355
4.56294
17.1214
55.4433
15.1217
14.9365
56.0393
6.33926
9.5549
4.26765
4.16164
6.41301
9.34794
4.22329
17.3943
2.2239
3.95267
4.65945
3.92371
17.5448
4.61806
54.9535
14.6332
14.7573
54.5536
6.25835
4.14316
4.08917
9.0768
9.17804
4.17309
6.20593
14.7568
10.7252
46.1379
3.76749
15.024
45.2084
3.64764
5.61923
8.42711
5.52345
8.56952
5.74411
8.86889
5.84346
8.73888
16.8982
3.83026
4.50248
2.15981
4.47358
17.0298
3.80437
6.01918
8.68256
3.9385
3.99701
8.78555
5.95225
4.03309
53.2094
13.9771
52.4642
14.2029
53.8297
14.6273
54.3124
14.4421
6.10034
4.11336
3.98552
8.99023
8.90602
4.08559
6.1545
16.7069
2.09872
4.3698
3.68778
16.5187
4.4089
3.72143
3.26821
8.48575
4.12879
5.23208
3.45035
3.74928
5.02283
3.22692
11.8838
2.25113
1.33749
12.057
1.34466
3.18364
3.36083
1.47138
12.7325
2.36026
3.49622
12.3825
1.43225
2.64921
6.92812
2.87981
4.17001
2.61981
2.92062
4.22401
2.81982
11.1576
1.92604
1.13968
10.8951
2.89426
1.1194
2.73384
1.05068
10.5306
1.84241
2.70636
10.6469
1.05614
2.00681
5.25967
3.18225
2.23856
1.99236
3.19509
2.25148
2.0611
7.03969
1.46745
0.871721
6.95617
0.8672
2.08353
2.04533
0.855077
6.82948
1.45298
2.02956
6.8889
0.857662
2.34537
5.89831
3.81108
2.66723
2.46467
3.56542
2.55993
2.20659
7.22096
1.58125
0.915764
7.44826
2.14946
0.932618
2.4613
1.21843
9.12096
1.89364
2.60215
8.13141
1.204
23.532
24.253
21.4508
26.9835
50.6339
180.17
6.33577
1.35786
6.38929
1.05963
8.03146
5.31918
1.22518
7.23604
1.57583
1.23976
10.2618
7.93531
1.32403
8.79694
25.4709
27.3238
42.1811
22.1323
5.82036
5.44404
0.983442
1.05903
5.02264
6.36173
1.11699
43.4572
186.368
43.2653
22.5244
21.9025
22.1503
22.2422
24.1991
22.6215
23.4868
23.4349
4.25387
0.673149
0.740772
4.21868
4.61425
0.689185
3.99633
22.8828
22.7404
22.8513
22.5245
3.97107
4.27618
0.729827
0.747586
3.9927
4.23982
0.696463
24.2621
23.071
24.4761
23.2512
21.8678
23.8081
21.6208
23.4788
4.30034
0.921029
5.45145
0.93685
4.85285
4.70858
0.857253
22.0947
23.2102
23.4135
22.265
21.8556
24.7238
23.7451
21.8129
22.276
23.4197
22.6336
23.4564
4.17424
4.83113
0.881535
0.786648
4.51673
4.38647
0.809724
21.589
21.3832
21.8111
21.5991
5.89392
1.17006
1.10316
7.92148
6.23733
1.00927
7.25515
5.72916
0.841672
0.802744
4.54203
5.09179
0.873942
4.97137
28.8741
27.4484
46.257
23.1868
5.11288
4.69029
0.954752
0.811469
5.28103
4.60983
0.887725
24.4203
51.3766
25.8935
45.1165
25.1475
22.4226
24.4263
22.0916
19.2552
2.35516
19.6124
2.84628
18.5682
19.8497
2.47975
18.8055
2.71998
2.08224
18.8721
18.1147
2.20123
19.3242
18.9182
18.9202
2.78447
2.33612
19.5304
18.2492
2.48222
30.3649
4.73289
29.8446
4.43747
45.0807
26.7029
5.24275
23.6944
2.21982
1.80929
15.1296
17.6532
2.1784
22.1308
23.3301
19.774
2.36709
2.14361
23.2469
18.8625
2.15868
22.9029
2.95447
20.9704
3.13088
22.5047
21.1143
2.95997
24.9421
3.77845
27.0673
3.91162
26.3637
25.4849
3.59267
23.112
20.4617
3.01856
2.61959
20.9115
23.2079
2.83903
15.9269
2.20621
1.86553
18.1397
17.1398
1.57213
17.1937
14.6416
1.13972
1.63074
13.2316
15.5595
1.45292
12.3852
16.1521
18.0617
2.10398
1.99167
17.3178
16.9699
1.79266
16.5328
1.84352
1.95573
11.1727
2.0818
12.9511
15.204
18.5979
2.59607
2.43196
18.7106
2.4398
19.1989
18.1105
17.998
17.1624
2.11405
2.28814
2.2201
17.3044
17.591
16.881
1.80045
1.96083
16.8647
1.8398
17.8367
15.8447
13.2297
1.16406
1.33653
10.705
1.30997
12.8692
11.011
15.0744
15.8755
1.85556
1.66625
1.62166
16.28
14.6549
12.7506
1.37783
1.77618
9.72506
1.59655
8.74236
13.8687
15.8686
1.68185
1.88556
16.8646
1.74163
18.0205
14.3728
53.8425
197.525
15.9827
16.7592
1.94396
1.87282
1.76941
16.4886
17.036
16.0757
2.02958
2.22777
17.8865
1.9216
16.8244
17.2163
13.8366
1.24554
1.4228
11.2147
1.46092
13.3628
11.6797
15.521
16.2678
2.10152
1.76157
1.80238
16.6866
15.0837
21.121
19.9152
21.0882
19.4324
3.58056
0.585582
3.29868
0.563163
3.46386
3.36342
0.602724
4.28957
0.670632
0.648808
4.36983
4.01678
0.629664
4.72094
19.7076
19.6023
19.688
19.8224
19.7815
20.2907
19.8701
20.1578
3.93109
3.48228
0.555537
0.605223
3.62617
3.72763
0.591013
21.6957
19.6659
19.3423
22.8555
23.1269
21.6306
22.0672
22.8522
23.9854
22.2189
22.4793
23.2753
4.08688
0.608712
4.0342
0.680196
3.86175
4.31263
0.651755
23.1664
20.7576
21.767
22.1295
24.1567
22.877
23.0957
24.3619
21.5422
20.6636
21.42
21.1246
20.5645
17.0929
20.3172
18.064
21.1118
20.9332
21.1711
20.8106
21.0539
19.5668
19.0578
21.0456
21.7417
20.828
20.2935
22.1921
4.78372
0.810462
0.714726
5.00474
4.51755
0.743435
5.31809
5.04673
0.736433
4.28729
0.710499
4.62791
4.61291
0.760212
25.6678
24.8887
22.1549
29.3279
24.3491
22.1742
21.6547
24.2089
4.38538
3.83322
0.658909
0.640964
4.14016
4.07772
0.686416
21.9472
20.7596
20.2485
23.0222
20.1511
37.0193
35.4041
24.1227
4.14095
0.765181
7.10594
0.793183
4.96409
5.75783
0.703784
19.3615
23.2357
19.3237
25.7975
3.53323
0.67994
3.48309
0.658489
3.40683
3.60257
0.73937
18.7695
21.4687
19.014
21.9935
21.7712
175.534
41.0341
40.0752
3.85485
4.44778
0.968493
0.72055
4.48754
3.89618
0.835147
33.9165
29.7491
51.8508
10.2169
22.6831
14.54
3.58171
2.01586
28.0304
1.89158
16.7293
4.1948
1.77326
5.39961
0.257363
0.697648
1.42167
4.49536
0.79528
1.40699
292.584
68.6131
3.49851
3.62367
1.53605
1.23812
3.90986
3.45309
1.49979
67.006
18.4942
29.2316
18.6136
162.274
7.30724
1.08753
6.9834
0.899433
5.68819
8.6209
1.00969
7.14758
1.76123
3.93854
1.13944
6.36661
4.84323
1.55259
6.78598
5.26445
1.14841
1.0298
5.10823
4.65227
1.3534
16.4343
18.4487
16.7278
17.3339
2.84123
0.715489
2.76032
0.721054
2.80778
2.78318
0.795017
19.1222
18.9031
19.1179
18.7579
3.26271
0.255337
0.614697
1.46955
3.73221
0.558951
1.59982
16.8963
17.5766
17.4834
16.9609
2.95008
3.16174
0.833498
1.03242
2.91671
3.12646
0.896735
19.2983
18.2835
20.6296
18.5151
176.251
6.51825
0.733768
0.880381
4.94027
0.817452
5.37081
6.01136
6.52902
0.875973
1.1985
6.4024
1.01961
5.4678
7.83696
23.6671
19.6944
20.4505
21.5687
8.24949
10.3377
1.0199
1.04184
0.933873
7.20334
8.56822
40.6278
21.7104
25.8131
39.0365
45.8671
38.6349
13.5403
1.51175
15.4425
1.68707
14.4177
1.61585
14.5268
11.7976
1.20408
11.6423
1.59632
9.60123
1.26677
13.5292
13.697
15.1152
1.47973
1.63172
1.50741
14.5409
15.1316
7.86769
0.91908
1.02577
5.80816
1.0608
6.22129
7.30115
10.561
1.37771
14.9661
1.58012
12.2081
1.40079
13.6933
201.995
45.357
46.5307
9.5518
12.8403
1.20823
1.38743
1.2269
9.02024
13.1292
54.3057
23.3932
27.1277
43.0741
12.3283
1.27491
1.39177
8.8647
1.56603
10.359
10.7939
10.4164
1.2912
9.82979
1.38493
8.66277
1.24663
11.564
11.8093
12.637
1.1484
1.34625
1.21515
11.0501
13.0767
0.7293
0.427118
0.325924
0.480847
0.29863
0.808515
0.470461
1.57145
1.36953
0.527151
4.75151
2.97329
0.467289
2.93533
27.6358
1.6191
3.29444
0.536899
0.589811
1.78597
3.03717
0.527075
1.96115
0.725873
18.3824
5.9178
17.9257
2.04822
0.696065
2.41874
2.29754
0.594466
0.251193
0.654055
0.28312
0.833454
0.557974
0.307883
1.59179
2.01766
1.76034
15.4169
5.57373
0.630993
16.6773
1.70803
0.632385
18.8569
9.67741
76.7691
1.88226
121.873
11.6366
2.9836
13.2592
2.32151
12.2133
1.2958
17.7757
9.73583
2.05362
9.36411
5.3764
0.96603
1.03276
6.48495
7.42097
1.36941
11.5019
2.52196
13.2196
16.2132
2.77848
14.8447
0.884289
0.402549
0.307449
0.443725
0.326583
0.807999
0.472201
3.0395
3.10237
37.9949
1.35948
8.17596
6.49577
1.0443
2.07603
3.46084
0.509017
0.703327
1.84311
4.02872
0.564856
6.28574
1.57248
0.651205
6.57918
4.60878
0.776957
8.25478
8.19556
1.1256
10.789
1.11099
10.0925
8.77058
1.01913
6.3761
5.0341
0.731001
0.942479
4.68355
6.8292
0.88319
6.31336
0.332333
0.359688
5.76244
2.92672
0.0898603
0.554092
1.38794
0.195768
7.71294
0.692851
1.53347
0.753057
11.8664
4.64649
12.3105
1.45947
0.794305
9.18584
1.19573
0.469026
52.7259
1.84925
17.2287
1.50699
5.19688
2.64981
13.8777
0.963509
1.77623
0.846831
0.769543
3.88107
0.687157
2.22023
3.26787
0.807512
0.421235
0.461688
1.2207
0.504583
1.35531
0.726093
5.08609
3.28528
1.57632
2.735
0.687617
0.56086
0.609223
2.96781
1.42967
2.50333
2.80362
7.20086
1.14324
8.70607
1.00279
8.97193
1.03923
6.98975
7.78063
1.39395
4.73802
1.77751
6.42646
1.76461
6.04705
5.51158
3.83837
0.863419
0.757312
0.905298
5.35745
3.91892
24.0587
25.4051
8.31049
2.07519
4.74909
4.24291
2.01484
4.35023
1.3066
0.592229
10.2672
4.01229
10.7301
1.21151
0.6399
4.89643
0.268052
4.04207
0.322141
1.80342
0.0496148
0.118957
0.458725
0.117132
1.85103
0.446816
5.25146
0.330781
0.33319
5.37836
1.37709
11.4302
4.17407
0.695901
11.1536
1.41714
0.677108
6.60248
1.21758
0.924116
5.67652
1.07489
7.39987
4.94684
7.85893
1.22286
9.20084
1.07514
9.6196
1.11652
7.4743
6.15861
4.26341
0.835886
0.935298
0.981737
4.56444
5.81377
0.638668
0.27375
0.395128
1.03343
0.363647
0.821157
0.612628
2.65456
1.13592
3.08781
1.80844
1.81095
1.89831
4.22321
66.3032
0.621796
12.7935
1.35531
1.26799
2.39519
0.489824
0.609821
0.493022
1.22408
2.42312
2.09113
1.67885
5.47427
0.311798
5.51094
0.312383
1.41549
0.721392
11.5813
4.33372
1.41434
11.5301
0.714592
1.89991
0.0521302
0.121103
0.470391
0.120854
1.88522
0.475543
5.47194
0.327302
0.319377
5.44843
1.42411
11.5688
4.31736
0.709669
11.5047
1.43516
0.712151
56.487
5.73911
19.0725
18.9811
57.0697
18.9321
18.572
6.65399
9.02187
6.81778
55.2038
5.54362
18.1827
17.5302
53.9403
18.5561
17.9185
6.95077
9.16657
6.93915
10.6249
3.36145
12.8887
2.79946
13.4042
2.8277
10.1058
8.61718
6.33248
3.01714
3.12674
8.89613
2.95205
6.14158
11.2051
3.52122
14.7583
3.04972
14.0753
11.5789
2.94051
8.08253
2.78042
2.96617
5.30254
2.83425
7.53674
5.71059
10.6403
3.8398
13.9213
3.73784
3.4471
13.4613
11.1805
7.36816
5.00473
3.26037
3.44788
7.15469
3.32592
5.15272
10.0631
3.66678
3.19148
12.563
9.81067
3.2601
12.8639
7.90811
4.02031
3.72228
6.20356
3.54995
8.52813
5.56772
7.73849
5.30474
5.3864
7.61632
2.87404
13.5105
3.45755
1.58679
13.6667
2.85111
1.59163
12.0747
43.5419
43.2651
12.1732
2.91853
1.62295
3.50253
13.9116
13.8131
1.61933
2.93229
7.83346
5.50149
5.45494
7.90211
2.38068
3.67212
1.5208
6.82455
2.36502
1.53457
6.85627
10.6191
31.4005
3.91562
31.3844
3.89535
10.6235
10.5831
3.84258
31.1583
10.5585
31.2484
3.86968
2.99742
14.3155
3.59696
1.65942
14.2261
1.6557
3.01084
12.4117
43.9627
44.3661
12.2997
8.11419
5.68267
5.648
8.16794
2.97335
1.63957
3.57452
14.0341
14.1339
1.64204
2.96088
8.05751
5.56401
7.98631
5.61007
10.6146
6.50699
6.38085
10.85
12.6831
4.39761
3.75995
3.30556
13.0154
4.27377
3.6955
37.5202
33.7821
10.3214
6.11993
6.23695
9.93651
11.8827
3.21709
3.11207
3.56064
3.96203
3.47358
10.5266
2.50238
3.85871
1.68022
7.11103
2.51436
1.66501
7.09618
10.7036
31.6427
3.96162
31.6583
10.6979
3.98808
10.705
4.03955
31.6473
10.6982
31.6868
4.0112
3.15448
14.557
3.73148
1.69575
15.1136
3.07123
1.71541
14.2167
201.215
58.8102
22.9083
8.40998
5.74996
8.27408
5.80636
8.67572
5.97967
9.27581
5.8741
3.63324
2.50979
4.06688
28.8418
17.2979
1.90574
7.29051
2.41275
2.56048
2.15687
1.41123
2.41546
2.13821
1.37919
2.13338
3.0245
1.98775
7.68314
2.07885
2.05019
8.04102
8.29582
6.04496
5.67372
6.3919
12.1359
14.021
13.2919
13.1994
10.0515
8.71246
11.671
7.08084
10.6823
11.2457
8.90757
12.3712
3.00659
19.5641
4.0443
16.946
16.8205
3.53256
3.26712
3.16036
3.01076
18.6491
17.98
18.559
3.12763
2.9949
2.84312
18.6666
17.4328
3.07974
17.0814
2.83862
3.21822
3.30387
18.6654
17.5888
3.18667
18.5665
3.58919
3.03264
3.76392
37.4148
21.692
4.77233
4.66254
19.4633
3.95802
4.04302
3.33837
16.8761
18.4697
3.76673
3.57834
20.4952
4.99562
128.605
5.78291
30.5449
4.69326
6.42426
32.1283
3.28013
19.3265
16.6127
3.2531
3.0509
16.8775
3.49354
4.73802
5.05954
133.405
19.384
6.5747
3.81624
37.2911
6.66274
6.41585
38.7978
130.098
7.31334
5.24238
5.71738
9.78929
7.04042
8.38653
5.12786
20.6652
3.54885
19.7281
4.16285
32.2648
4.12139
12.8615
12.4243
13.3824
11.8658
13.8255
14.6922
14.5856
14.1293
1.33896
0.337706
0.309277
1.20452
1.1946
0.308065
1.30953
13.819
15.0373
14.6066
14.2944
1.36123
1.36294
0.252413
0.231529
1.56935
1.18125
0.240875
12.8881
12.6136
11.9097
13.3833
11.0939
11.8953
12.5495
10.4314
10.1918
9.1434
8.23442
11.5059
1.31991
0.311757
1.68005
0.325835
1.44222
1.67211
0.298155
0.866313
0.214816
0.70724
0.202623
0.813793
0.736605
0.218325
9.23018
6.91933
7.42475
8.62875
12.1601
15.2136
13.8159
13.5894
1.09218
1.23823
0.268093
0.213994
1.4396
0.920493
0.234161
14.5042
12.9644
13.8992
13.6036
16.0284
17.531
16.4734
17.2061
2.25622
0.350223
1.94256
0.357796
2.19506
1.99267
0.388675
15.3074
15.4622
15.9197
14.7717
15.3962
16.042
16.7063
14.5825
2.0085
1.5175
0.28456
0.304204
1.74369
1.74841
0.326038
9.27683
11.3424
10.761
9.87321
0.764134
0.303354
0.297705
1.04564
0.996946
0.290102
0.850027
0.569066
0.173864
0.623282
0.171956
0.553869
0.645921
0.175728
7.62588
7.45254
6.10698
8.82325
7.55594
6.48446
6.00465
8.11897
0.684933
1.1019
0.206819
0.183487
0.949356
0.803337
0.184271
9.33927
11.7456
10.8249
10.4188
11.1796
9.89289
10.8641
10.1971
12.3781
13.7041
12.984
13.0952
11.9998
12.0564
12.5349
11.655
11.5344
11.3112
12.2749
10.5369
6.85235
8.55742
8.23698
7.19104
5.72739
5.81595
4.44793
7.06579
5.43792
4.49158
4.22285
5.73518
0.492329
0.681287
0.405605
0.421899
0.424251
0.670849
0.490214
7.27287
10.0309
8.74543
8.58792
10.2913
9.59916
10.5654
9.30674
11.2801
9.35545
9.93157
11.6275
10.9742
11.319
10.4378
11.3068
10.783
11.0108
9.83317
11.7643
7.75479
8.84801
9.14481
7.46632
0.572891
0.256441
0.260765
0.774156
0.265598
0.597883
0.745023
0.524863
0.381198
0.504781
0.361017
0.505719
0.358423
0.52867
6.4928
5.86965
5.19649
7.21966
6.23725
4.71493
4.92886
5.97797
0.569231
0.756957
0.323032
0.343717
0.338233
0.773904
0.559615
8.04281
10.2461
8.81723
9.46165
2.65512
14.086
2.65727
14.3965
2.50451
2.84287
13.3946
2.93856
3.78261
16.8456
14.8725
3.35007
13.7791
3.29282
2.71127
14.7483
2.88259
16.558
3.05913
2.58964
14.0708
2.9308
14.5956
3.75251
14.4069
3.18814
13.1634
3.37549
2.82555
18.2965
16.2614
2.99273
17.1388
2.9119
2.86202
2.7513
3.01284
17.9432
18.7621
17.4578
2.76696
3.04203
2.8264
18.5488
18.1096
2.85027
17.6565
2.83449
2.8759
2.75886
16.0308
18.6012
3.28325
16.9115
3.11864
2.82266
2.42754
14.9959
16.569
2.51187
2.38961
15.9195
2.51183
2.63524
2.76214
17.9083
17.2446
2.75478
2.69329
16.8778
2.55651
15.6029
2.73695
17.7096
2.73092
2.49251
16.4053
2.49125
17.1095
16.9973
2.5656
2.54427
16.5092
2.54037
3.36334
15.5605
3.23605
17.6722
3.55572
3.07387
15.4369
4.07223
6.95839
33.2497
36.3052
5.32721
18.2397
5.23628
3.4009
15.4453
3.66094
20.7684
4.22396
3.0591
15.6721
3.92372
19.7339
5.12157
31.4813
4.13743
17.0884
4.90085
4.25899
29.7535
3.76091
4.01883
131.578
3.31462
3.20433
3.31659
14.3443
31.4182
2.72819
25.7477
4.08113
3.49338
15.0399
18.1073
2.46926
3.02159
28.5422
2.74546
3.67845
6.5011
4.97559
4.84037
3.59441
4.52451
4.27405
4.12594
6.37756
0.677576
5.69256
6.82336
20.5214
1.30275
1.61213
19.9065
22.54
20.9486
144.055
6.51729
3.33476
21.0385
28.1458
1.75144
134.552
3.46747
8.34509
4.15963
4.65529
4.63367
4.38694
3.74423
3.68852
2.77077
4.80359
3.14194
2.62516
2.24549
3.45273
4.78796
6.82798
5.42052
5.94157
3.07453
23.6395
3.66669
3.21671
24.5152
3.42217
2.83769
1.74036
15.8433
11.6631
2.69353
17.272
1.73276
2.66654
13.122
2.46274
12.9224
2.48647
2.70497
13.8959
3.17923
97.1472
12.3412
1.88144
25.8865
3.64158
1.77937
7.20438
8.77045
8.06257
8.04852
4.76472
4.63194
27.1373
134.1
4.02594
5.8515
5.21735
4.83645
26.8599
4.27068
5.89146
6.67626
8.0241
6.17441
7.82445
8.96778
9.02881
10.3971
7.5893
5.76827
4.6009
4.44013
5.86745
7.6928
5.08325
6.48833
6.297
7.24267
8.87987
7.35759
8.8092
10.9376
9.93587
9.33955
11.2603
9.23628
7.52126
10.1282
6.46751
10.4332
9.98025
10.766
9.92713
8.92338
6.65611
6.04385
7.14145
5.93202
7.87463
7.25121
6.49055
4.84131
4.99554
3.68625
6.16258
4.69811
4.06869
3.57258
5.23361
6.10529
8.26789
7.27845
7.36311
10.7404
2.57077
2.67045
9.3187
10.8226
2.65019
9.24934
12.5911
16.5823
2.99038
4.93646
12.4061
16.8841
3.05911
10.5803
2.51934
2.55742
8.99168
10.4449
2.60024
9.10423
12.7734
3.13921
17.2219
5.01636
12.8684
17.1182
3.1156
6.03052
2.6351
7.8008
2.731
7.84502
2.74536
5.98811
4.36589
12.9957
2.89803
3.05969
4.40569
2.87636
12.8676
38.9539
39.2054
6.11327
2.67319
8.00866
2.80356
7.93824
6.17657
2.78128
4.30742
2.8252
3.01707
12.6415
2.83853
4.28253
12.7152
5.95199
2.61709
7.82458
2.75999
2.74251
7.76583
6.00878
4.18039
12.0956
2.73848
2.94424
4.11678
2.77338
12.3082
39.1282
38.6598
5.82972
2.56032
2.6476
7.53788
5.74261
2.68148
7.63367
4.27167
2.86128
3.02918
12.7086
2.84309
4.31107
12.5736
5.01911
3.60338
3.67385
4.91528
1.39004
2.41441
1.15734
1.01955
2.50141
1.36803
1.02417
6.70112
9.93309
9.79614
6.76662
1.4163
1.0461
1.17924
2.56313
2.54738
1.04449
1.42027
5.07168
3.7518
3.70903
5.12787
1.69855
1.88438
1.15315
3.89064
1.63159
1.19393
4.06857
8.32298
26.1968
3.13337
23.2044
2.94137
9.26887
7.69715
2.67851
20.6045
7.42239
21.3872
2.76441
1.56407
2.76511
1.29162
1.16704
2.74761
1.16791
1.56889
7.03072
10.1079
10.3676
6.86334
5.60561
4.36192
4.15323
5.81498
1.46405
1.07474
1.21705
2.60233
2.6374
1.07884
1.45262
5.35766
3.81808
5.21125
3.93501
5.8915
4.45401
4.40638
5.94896
1.54971
2.8367
1.15981
1.29429
1.54959
2.82019
1.15881
7.65993
11.3328
11.3889
7.62836
5.82005
4.33826
4.34192
5.81924
1.52296
1.13435
1.27015
2.77423
2.77759
1.13419
1.52745
1.83416
2.54368
1.28421
5.99828
1.95353
1.1883
5.58115
8.79557
23.7553
2.85082
25.7136
8.22346
2.9814
9.42042
3.25947
28.6555
9.73415
27.6523
3.16406
1.50705
2.68228
1.24809
1.10706
2.72102
1.49733
1.11
7.66207
11.4979
11.325
7.79677
5.67331
4.04691
5.49464
4.20655
5.91391
4.53134
6.01965
4.42571
1.59645
1.19039
1.31838
2.84577
2.8266
1.19162
1.59655
1.10602
11.2662
1.33333
10.5534
10.6867
1.09689
1.34918
0.854672
0.743079
9.22483
8.64901
0.761601
9.48425
0.834292
0.864027
10.8818
9.99089
0.792838
0.775696
10.2432
0.875559
1.1006
9.89933
9.27693
1.28142
10.0113
1.3272
1.07495
0.959556
10.8972
1.1212
10.6969
10.254
1.06874
1.00986
0.822818
0.677781
5.2019
6.652
7.61099
0.713272
0.775195
0.878907
9.30689
5.87242
0.857091
8.50129
0.763737
0.984775
0.912386
10.3536
8.90279
0.942698
9.5595
0.970898
0.87405
1.05673
11.689
11.5054
1.28928
1.08476
11.7574
1.22458
0.861118
0.755662
11.3098
9.02399
0.808481
0.793947
11.1411
0.882168
11.4018
0.808627
11.622
0.816086
0.884671
11.6841
1.00399
10.1418
8.39684
0.989714
0.902271
10.7764
1.13137
1.04975
1.14943
10.1584
10.4409
1.17037
1.03331
9.88065
1.00268
0.946515
8.27339
8.88645
9.02285
0.961761
0.987183
1.03422
9.47973
1.09816
8.44726
1.14634
9.19582
0.992982
1.01488
10.235
0.975117
9.57371
0.997968
9.70886
0.996201
0.723938
6.7655
0.561255
5.63957
6.53218
0.75133
0.535775
0.795475
0.847527
7.89812
6.94401
0.899624
7.11528
0.754082
0.898762
7.61864
8.15365
1.05099
1.01403
7.37424
0.929207
0.631355
5.39969
6.11354
0.428797
6.27965
0.454634
0.597915
0.543352
3.99511
5.91065
0.544423
4.45501
0.594886
0.494949
0.306517
0.307042
2.58357
4.66232
3.68413
0.211671
0.67814
0.498189
2.97266
2.35048
0.455465
3.25693
0.461607
0.47895
0.56128
7.75729
11.5686
3.27983
5.45889
3.58594
0.568643
0.903516
7.35027
7.23732
0.718446
0.910115
8.18351
0.730573
0.663356
1.87908
10.9593
12.0802
0.73765
2.05614
10.234
1.0851
8.20501
1.21769
9.81912
1.21951
1.09102
9.04362
0.588932
8.8301
12.2165
2.77509
2.33939
9.46924
0.569853
0.329154
3.57031
0.388857
4.52305
0.364595
0.34798
3.42382
0.267913
0.239864
1.69064
2.28301
0.248502
2.3786
0.257956
0.318105
2.63584
0.312126
1.81392
0.295066
0.336482
2.53161
0.273676
4.3024
0.277004
3.11062
0.295981
3.23361
0.262179
0.791319
0.729865
6.96855
6.19354
7.03899
0.928653
0.619138
0.715943
0.705151
7.77661
6.69035
0.793206
0.629854
6.97004
0.948232
7.71281
8.49665
1.21232
1.02887
7.78924
1.10978
0.570044
5.22952
5.84353
0.344647
0.491985
6.12692
0.412346
0.372658
3.47545
0.431181
4.23991
3.24974
0.383542
0.415378
0.344941
0.306688
1.69629
2.25919
2.34341
0.31869
0.334453
0.361445
2.63613
1.77856
0.372669
2.44612
0.335566
0.401509
0.357453
4.0855
3.02163
0.363304
3.12447
0.368956
0.349616
0.677999
0.569252
6.45368
5.27163
0.755639
0.504148
6.15127
0.807795
0.881217
7.469
6.58539
0.897627
6.7315
0.790946
0.839185
7.21617
1.02784
7.64175
0.929319
0.929077
6.91013
0.651232
5.09762
0.46943
5.83384
0.481112
5.97768
0.637561
0.488816
3.93426
0.570802
5.10385
0.483379
0.547976
4.02578
0.258158
0.187699
1.63136
2.12033
0.241744
0.197726
2.30519
0.504532
3.05014
0.495889
2.4095
0.503914
0.529706
3.15007
0.267902
4.13521
0.220355
2.89401
0.206136
0.282702
3.11328
0.947227
9.04823
0.9334
9.83541
0.892456
0.981745
9.21126
0.882255
1.01962
9.31931
7.90457
0.971642
8.66523
0.896236
0.8547
8.3938
0.828244
9.15691
0.915077
0.799666
8.99547
0.978418
9.26884
1.00204
7.8683
1.00966
8.65172
0.959632
27.3939
14.4251
26.4056
108.731
120.688
15.6659
30.8991
0.738794
7.60464
9.45979
0.978774
7.8238
0.863442
0.808156
0.674485
0.602334
4.64176
5.95524
5.69939
0.578454
0.699213
0.647078
5.26095
4.46667
0.629946
5.47285
0.558932
0.739875
0.7727
9.5456
8.37215
0.863827
8.09672
0.796058
0.844598
0.705581
7.68922
6.46327
0.861536
0.812891
5.51651
0.755161
0.53781
0.474901
4.28403
3.30414
0.537378
0.472507
3.99324
0.624468
6.76082
0.723205
5.35952
0.628224
0.719446
4.7553
0.604334
5.90517
3.66096
0.566929
0.523482
4.55951
0.656993
0.855418
9.86902
1.05608
10.3517
1.11438
0.840703
9.54245
0.899015
0.872538
8.69994
7.80314
0.908951
8.58687
0.861728
0.898632
9.73936
0.893968
9.39563
0.91056
0.878809
9.30013
0.857079
9.77022
1.15383
8.07177
1.1558
8.86637
0.830451
0.608193
4.50452
3.71004
0.492623
0.504173
4.56612
0.598271
0.890409
0.989839
6.89133
6.96257
0.931204
6.14872
0.966231
0.684887
5.22205
6.02597
0.681658
0.716657
5.27789
0.670326
0.803089
4.56195
0.786059
6.26124
0.685465
5.4471
0.892427
0.725384
3.04219
0.977943
3.01137
2.27609
1.07756
0.698373
0.554077
0.435694
0.820538
1.01238
1.2338
0.524411
0.466717
0.729018
2.30717
1.10853
1.24534
1.62162
0.70684
1.16463
0.567146
2.44821
1.49934
0.500945
1.79398
0.561464
0.491234
0.492267
2.02051
2.84836
0.474001
0.488374
2.11448
0.468776
0.682041
0.868241
1.48333
2.67525
0.660952
2.10724
0.865349
0.482695
1.39565
0.987574
0.396427
0.455117
1.495
0.444882
0.681295
3.63631
0.789892
3.46914
0.667847
2.82057
0.834804
0.743504
5.55944
0.899154
3.86441
0.931438
4.68536
0.676836
0.619947
0.503888
4.67345
3.96997
0.579693
4.53739
0.544276
0.754392
6.15791
0.855129
5.65379
0.709348
0.920153
5.29328
0.622644
3.22789
3.52144
0.507584
3.98967
0.556256
0.567505
0.677303
0.60984
6.16272
4.50755
0.758794
0.524983
5.42925
0.770027
1.03954
7.04804
7.38619
0.848155
1.02517
6.20796
0.809314
6.91811
0.955531
7.01918
0.896787
0.883703
6.20437
0.646244
4.45747
0.871285
6.69548
0.961912
0.498554
5.40847
0.318756
3.97741
3.71262
0.737638
2.79729
0.325668
0.769859
0.289541
0.28058
1.381
2.12183
1.96915
0.261281
0.306087
0.305682
3.1562
1.43477
0.821299
2.04976
0.277671
0.800866
0.306705
3.57318
2.85905
0.328883
2.68797
0.319032
0.320707
0.556766
4.71248
0.789158
6.86395
0.93565
0.402998
5.6358
0.709782
0.810884
6.37224
6.97209
0.725322
0.797559
6.19527
0.567399
4.53937
0.421934
5.61999
0.581141
0.409414
5.43076
0.692858
7.57089
1.11788
7.22273
0.774014
1.05651
6.42089
0.451203
3.30122
0.553167
3.54408
0.460979
0.562965
2.68482
0.409605
1.1376
1.26243
3.05813
0.370315
1.06554
1.86546
0.436052
2.51933
0.551932
1.3765
0.407926
0.565749
1.97137
0.430528
3.4678
0.899159
3.87398
0.981288
0.441701
2.59325
6.92319
2.0502
1.99768
5.92264
6.99613
1.97764
5.86118
7.85195
8.75979
1.90686
1.91844
7.76572
8.86167
1.92642
6.87563
2.04768
1.95688
5.75743
6.79958
1.97654
5.82391
7.91301
1.94606
9.03477
1.92074
7.99556
8.9414
1.92662
3.53379
2.28778
4.7116
2.30262
4.87553
2.37451
3.40382
11.0177
2.27804
2.41029
1.02569
10.0706
2.58263
2.55586
31.9025
8.66705
30.5295
9.28766
3.63065
2.33208
4.6907
2.27986
4.98849
3.37082
2.4307
10.6372
2.43044
0.968157
2.28629
2.50825
10.2244
2.40289
3.28751
2.15655
4.60909
2.25288
2.23324
4.55215
3.32745
9.85833
2.14547
2.32672
0.883258
9.72885
2.35073
2.17701
29.4611
8.36938
29.8108
8.23354
3.26825
2.15507
2.21025
4.45558
3.22351
2.23171
4.5182
9.89645
2.37291
0.889534
2.20653
2.35231
9.99966
2.18373
2.57229
1.71791
1.79762
2.46258
3.63909
4.69012
4.7787
3.48213
2.68135
1.74796
1.8887
2.5212
0.522111
0.716259
0.412256
1.22227
0.490083
0.44111
1.29261
0.93947
2.97233
15.8864
5.64627
2.88237
5.53085
0.96653
0.873421
5.13612
2.57892
15.2876
0.826432
2.70534
5.31098
0.842596
1.08913
0.661436
0.675966
1.08232
0.673195
0.846262
3.62811
4.77602
4.94067
3.51561
2.71625
1.9366
1.89758
2.76955
2.62152
1.75756
2.53772
1.82043
4.32186
2.23221
3.25548
3.14415
1.0992
1.26248
0.877644
0.850217
1.0396
1.37851
0.887619
4.79042
5.80109
6.31424
4.33308
3.59712
2.25984
2.57297
3.1958
1.00504
0.803387
0.786981
1.23082
1.27709
0.807842
0.985201
0.672009
0.929225
0.597041
1.64901
0.683739
0.586327
1.62132
1.09574
3.18471
17.6089
5.89359
3.36382
1.0387
6.11584
1.08728
6.33007
3.48249
17.8073
1.11074
3.38521
6.16043
0.902715
1.14243
0.709297
0.720179
1.15533
0.896754
0.721426
4.05677
5.56831
5.46691
4.13832
2.96203
2.01859
2.87365
2.08771
2.97264
2.1398
3.03691
2.09232
0.913333
0.737497
0.719211
1.16893
1.16067
0.7351
0.917309
0.0733591
0.707085
0.0836824
0.644982
0.644911
0.0785241
0.0779489
0.0570743
0.0750716
0.625661
0.483159
0.0745347
0.561288
0.0525209
0.0618467
0.692978
0.671551
0.0783692
0.0757508
0.632686
0.067003
0.068116
0.571121
0.488662
0.0648068
0.571453
0.0717769
0.0623597
8.55527
8.90211
9.19888
11.0059
10.7429
10.3039
9.08202
10.4629
9.71117
9.51896
10.283
9.81151
0.0772332
0.708334
0.0782652
0.624717
0.644738
0.0814723
0.0745716
0.0741226
0.0669558
0.655244
0.498596
0.610099
0.0710413
0.0650844
0.0790487
0.758198
0.738453
0.0811821
0.676001
0.0761413
0.0840992
0.0728876
0.584306
0.481311
0.0601788
0.595582
0.0707483
0.0607182
6.78122
7.2925
6.63673
5.15755
5.68782
5.83437
6.10657
5.28234
5.9646
7.15706
6.35355
6.50335
7.9168
6.96067
7.25961
8.11244
6.4501
7.14233
8.45856
8.72655
7.81364
6.28481
5.88281
6.57997
0.0866255
0.754698
0.790529
0.088047
0.0825784
0.793368
0.0920444
0.0804599
0.0831298
0.804954
0.940311
0.0859665
0.0778009
0.849838
0.0758225
0.737772
0.0804264
0.743438
0.0830684
0.0713044
0.77373
0.090657
0.856793
0.956644
0.0924352
0.0879867
0.867457
0.0957459
0.0662604
0.0744758
0.583773
0.589822
0.0693151
0.0710839
0.539001
0.0572965
0.046142
0.376114
0.377084
0.448179
0.0510148
0.0510248
0.0607368
0.515641
0.0569685
0.400604
0.0635483
0.475367
0.0544592
0.062805
0.555216
0.0584589
0.425712
0.0675167
0.508593
0.0551658
0.896548
1.9731
0.786732
1.62421
1.76308
0.710841
1.05263
0.651566
0.302931
1.42956
2.77988
0.52879
1.55982
0.341319
0.744972
1.67234
1.7205
0.525786
0.60838
1.96075
0.619188
0.804727
10.6744
3.3404
0.393275
1.41144
0.960468
0.385369
1.41294
15.8789
2.68802
1.79157
1.98781
1.33319
2.04723
0.98564
0.324523
8.19392
0.843975
1.31095
1.09633
0.371099
1.59983
3.58583
2.50029
0.073739
12.7547
0.396004
0.56425
0.954439
2.45356
1.27948
0.44086
1.82421
0.414558
0.927693
17.4249
72.8456
6.46226
0.799343
1.61456
1.40145
2.58614
0.884508
1.72589
10.8187
2.40025
2.60209
8.75365
12.703
15.9143
17.0549
67.1919
76.2983
24.8838
1.07996
3.54328
3.43252
1.58424
1.35116
3.86125
1.22118
0.714059
0.421302
3.03079
3.47059
0.616083
0.460361
3.70351
0.92944
2.96887
0.909917
2.62992
0.776919
1.11978
3.4776
0.797793
3.21939
3.22939
0.45003
0.482662
3.83143
0.871416
0.351728
5.2646
0.805554
10.2395
1.19704
0.829526
2.19475
0.0416756
0.0400118
0.0749451
0.216382
0.0316372
0.16307
0.049138
0.0511946
0.613674
0.0276468
0.0718425
0.0189897
0.117244
0.280975
0.0969569
3.33875
0.138623
0.365826
0.442577
0.514445
0.0718899
0.0501226
0.0469513
0.207857
0.171441
0.226649
0.0485173
0.0483272
0.0483013
0.0771137
0.408095
0.585914
0.0498804
0.0789902
0.347933
0.0530917
0.299768
0.400797
0.0584381
0.0575583
0.31186
0.0524202
0.0473988
0.246551
0.605494
0.0770861
0.0815716
0.303882
0.0439648
0.040518
0.0953183
0.0407157
0.10468
0.0877489
0.040031
0.0410121
0.0372004
0.0374449
0.047691
0.0560256
0.0607737
0.0375682
0.036923
0.0411615
0.0727887
0.0525531
0.0418675
0.0678766
0.0417316
0.0414757
0.0367772
0.0955639
0.0707565
0.0358525
0.0795586
0.0364943
0.0363259
3.33314
2.51975
3.22196
4.48171
3.69512
3.82133
4.05086
4.59955
3.9314
2.42966
3.00398
3.11932
1.52277
2.20384
1.61582
0.785644
1.43163
1.23813
1.05838
0.70974
1.12748
2.43117
2.04982
1.77036
3.48017
2.92066
3.70834
5.74744
6.51469
5.03222
4.20931
5.17437
4.4649
3.27923
6.02083
4.21405
0.0402959
0.0404371
0.171331
0.116757
0.0415829
0.0395775
0.148933
0.0399523
0.0415858
0.295817
0.171646
0.045144
0.211586
0.0376353
0.0433649
0.258428
0.0508378
0.317829
0.0486085
0.0451272
0.231007
0.0369466
0.106518
0.0353713
0.105452
0.0362215
0.133367
0.0356047
0.0478468
0.112619
0.0471369
0.147283
0.0480615
0.047387
0.120103
0.0342133
0.033134
0.0994186
0.158713
0.0321156
0.0368725
0.128527
0.0480677
0.0862751
0.0484622
0.0642571
0.048424
0.0479201
0.0914337
0.036706
0.201084
0.0564999
0.220024
0.043379
0.0402338
0.161587
0.119344
0.786652
0.134608
0.761911
0.126059
0.126548
0.718042
0.0852516
0.059396
0.312092
0.434615
0.0625994
0.520143
0.076332
0.0928401
0.645782
0.0632335
0.345948
0.0647081
0.0957542
0.590444
0.110504
0.671593
0.106231
0.531381
0.116753
0.630889
0.100854
6.49515
7.11799
7.00062
7.41877
8.04592
7.53071
6.41869
6.84463
6.97719
7.619
8.02496
7.53092
0.116521
0.876504
0.667758
0.144512
0.683904
0.139166
0.121498
0.0614692
0.409622
0.364013
0.0449921
0.440525
0.0436039
0.0627585
6.60748
5.9068
6.05816
5.43766
4.73749
5.39211
6.67021
6.10613
6.03986
5.37185
4.9133
5.49103
0.134434
0.827341
0.917663
0.138876
0.133799
0.851767
0.134704
0.115395
0.649696
0.141053
0.755071
0.133685
0.119933
0.608083
0.0538091
0.0371997
0.260111
0.270909
0.0401134
0.323212
0.049129
0.0579193
0.388193
0.0442886
0.289347
0.0424891
0.0611568
0.363725
0.109479
0.677194
0.114334
0.480008
0.124508
0.550155
0.102753
5.97853
5.63216
5.44216
4.51558
4.14003
4.71804
5.85332
5.09757
5.29108
5.09131
4.3225
4.88788
0.035268
0.0765323
0.0507853
0.0486353
0.0352928
0.0577813
0.0509811
0.0361462
0.0371638
0.0909979
0.0831101
0.0361122
0.0726654
0.036891
0.0353881
0.0916477
0.0787016
0.054719
0.0359468
0.0670201
0.0528223
0.0367019
0.0564428
0.0379028
0.0668009
0.0374274
0.063132
0.0372727
2.45276
1.73391
2.25884
3.08187
2.36285
2.52647
3.00435
3.40105
2.82829
1.49601
1.84592
1.98504
0.685012
0.985209
0.663194
2.47382
0.226514
0.483411
0.451398
0.406872
0.191569
0.394373
1.08248
0.780339
0.737719
0.035891
0.0469666
0.0455226
0.045449
0.0355783
0.0415387
0.0406397
0.039578
0.0513874
0.0389747
0.04886
0.0385905
0.0474857
0.0398342
1.84304
1.35367
1.78805
3.06519
2.60195
2.49853
2.36708
2.83894
2.29867
1.47883
2.03632
1.94737
0.152787
0.216832
0.163695
0.202617
0.153965
0.222536
0.163079
0.100263
0.0972288
0.234617
0.161998
0.0983602
0.188833
0.0996447
0.144084
0.254181
0.139291
0.318557
0.137783
0.145588
0.262937
0.103555
0.138446
0.144226
0.106812
0.156418
0.1075
0.10293
0.0844413
0.0876763
0.263815
0.204152
0.0868948
0.085866
0.242636
0.0622406
0.0566427
0.342088
0.147117
0.0683026
0.0550237
0.254975
0.086481
0.352743
0.0969596
0.426325
0.0925216
0.0898135
0.325579
0.0593697
0.153047
0.0564784
0.106599
0.0551304
0.0592124
0.183342
0.0976932
0.209705
0.219639
0.0964954
0.197024
0.0944909
0.098983
0.0350501
0.0320978
0.0469259
0.0440653
0.0551067
0.0337703
0.031807
0.101416
0.17612
0.145358
0.105835
0.169309
0.105591
0.10204
0.0360865
0.0763
0.050794
0.0311481
0.0667687
0.031378
0.0369743
2.48913
3.03465
3.11195
3.44951
4.08746
3.4457
2.15523
2.77179
2.77473
3.67145
4.33363
3.74686
1.17522
1.49051
1.07119
31.9747
0.339297
0.535665
0.620379
0.782774
0.398875
0.707616
1.35339
0.847956
0.958038
0.090039
0.235384
0.0942656
0.306959
0.0937849
0.0915147
0.254965
0.0409592
0.0344936
0.118117
0.211209
0.032146
0.0447503
0.149688
0.0387304
0.087976
0.0309103
0.0774906
0.0310484
0.0377106
0.102318
0.0917228
0.388657
0.104988
0.401703
0.0966289
0.0973112
0.320839
0.091688
0.138646
0.0898907
0.168846
0.0886339
0.0923498
0.131804
0.0607638
0.123852
0.0582493
0.0772444
0.0599788
0.0599382
0.0923778
2.75017
1.98122
2.56528
3.55833
2.776
2.98094
3.37867
3.75084
3.17395
1.82053
2.19919
2.38452
3.71438
1.46287
1.47505
2.91883
3.78408
1.47861
2.8605
5.35629
5.76286
1.98178
2.08355
4.99395
6.09445
2.26433
4.5147
2.66749
2.05777
3.13433
4.11566
2.44909
3.55508
4.51329
1.44821
5.2906
1.44026
4.54903
5.27527
1.47306
7.18953
1.5858
2.22451
1.60601
2.28799
1.64356
7.01105
21.842
22.1024
1.42555
0.647139
0.565928
0.437913
1.43913
0.562609
0.643755
5.63355
3.57456
5.50639
3.65722
7.33399
1.6223
2.36852
1.69806
2.34291
7.40822
1.68359
21.4129
20.8274
1.37898
0.529908
0.412767
0.605494
0.536986
1.34876
0.61324
6.21951
1.42329
2.12689
1.5733
1.4576
2.02206
6.69277
1.21903
0.791718
0.638566
0.641457
1.1022
0.657932
0.786488
12.285
33.6183
8.67692
111.083
5.8813
3.58804
5.48083
4.02653
4.27963
3.02236
0.84573
10.4229
2.3138
1.18079
17.4751
18.7768
19.6272
1.35825
0.569947
0.470223
0.654111
0.565527
1.35813
0.665334
1.0627
3.11673
9.00274
3.15337
1.04937
1.54944
2.17971
2.14485
1.57242
1.07512
3.23983
9.12451
3.19012
1.09252
0.211289
0.864331
0.189803
0.327681
0.207283
0.193489
0.334097
0.270208
0.726174
1.52756
0.581315
0.673765
0.491308
0.294047
0.261247
0.458968
0.632722
1.45469
0.255949
0.647864
0.470562
1.64835
2.23126
2.28665
1.60924
1.20444
10.499
4.55704
3.62163
1.41643
1.14862
3.32391
9.7742
1.12081
3.41193
1.46804
1.00262
0.993137
1.48712
2.00037
2.63802
2.70157
1.94925
1.40235
0.918966
0.944759
1.3634
0.814924
4.85818
0.220541
0.351503
0.237281
0.924104
0.91045
0.583099
0.955499
7.01524
1.59302
1.2967
0.416317
2.58514
0.928275
2.62381
0.884076
9.32961
0.36514
1.75202
3.5297
2.37169
2.66107
3.09588
1.96988
1.52023
11.6907
2.14429
1.02607
1.72914
0.934873
1.37979
1.23013
5.3315
5.30265
5.81383
6.08791
6.40278
6.59874
5.74737
5.59121
6.23417
5.54908
5.72543
6.11425
3.47146
3.80923
3.271
2.34738
3.78118
2.84347
2.94636
2.27634
2.75595
3.92703
4.28493
3.37314
4.79615
3.73327
4.23744
3.31266
3.64438
4.16701
5.23731
3.88936
4.70601
3.18991
3.14731
3.68009
2.64371
1.28503
1.73596
2.59328
2.20606
2.07858
3.19561
2.78009
2.2443
1.17158
1.70889
1.59523
0.843588
0.930546
0.602905
1.7973
1.24732
0.718436
0.235954
1.74434
0.288796
0.539794
4.73675
1.00878
2.60198
0.368908
0.774969
0.405315
0.486944
2.14597
1.3049
1.73837
2.47521
1.78791
1.97786
2.6834
2.75844
2.23328
1.1153
1.34931
1.51497
0.111398
0.104251
0.161496
0.135797
0.111696
0.108034
0.132892
1.15687
0.706795
1.02881
1.88824
2.33748
1.44857
1.56038
1.83456
1.41114
0.710628
1.85902
1.04869
0.387031
0.860981
0.560706
0.911981
31.2704
0.63402
0.250134
0.198939
0.507451
5.23699
5.05411
1.09324
0.11028
0.0850818
2.80546
0.150104
1.82482
1.24234
0.359963
0.871348
1.3105
1.24207
1.66677
3.14764
1.76238
2.63416
1.73969
2.64616
2.14233
1.67408
1.30703
2.13297
3.4772
3.76267
2.91892
67.0445
7.41566
1.84642
1.83119
14.9235
14.6762
2.28995
3.03634
2.22276
2.38652
2.70067
16.7886
1.77329
13.7115
2.08444
3.43728
3.04206
2.93347
3.18853
2.24062
2.70269
3.70832
3.70337
3.19454
2.54087
2.00391
2.45196
3.42009
3.75518
3.02617
2.98883
1.85984
2.31603
3.12549
3.37216
2.78602
3.30215
2.11959
2.56387
1.22863
1.10021
0.0866546
0.664316
0.550423
0.330769
3.02654
5.42343
9.16048
0.446464
0.883549
2.58126
1.82511
9.36685
8.63925
0.761384
3.00536
55.8279
0.98594
0.06527
0.446712
0.137758
0.489783
0.80893
0.22152
0.154642
0.0290258
0.091528
0.341965
0.140315
0.0330588
0.417228
0.0991422
0.143041
0.878339
0.160655
0.939764
0.0775371
0.304572
0.0126231
0.0364054
0.0875091
0.0233051
0.117945
0.0619145
0.0167602
0.0573923
0.0089087
0.0579608
0.0613268
0.0174835
0.194413
0.14637
0.0678981
0.823675
0.0453631
0.562188
0.279405
45.4939
2.41634
0.81097
0.87624
7.09752
7.6415
2.22591
1.12659
1.09189
0.782945
0.687146
1.51579
1.14257
1.60401
0.76528
9.02027
0.513121
4.65987
0.553726
0.838114
0.844823
1.76669
1.8063
1.39074
0.681628
1.33029
1.01048
1.21028
1.58685
1.19506
0.419342
0.476616
2.27692
45.9023
1.26113
0.133889
6.82549
0.126496
2.31377
2.20128
0.074346
0.0242917
0.0146344
0.024531
0.0211287
0.0777589
0.0237191
0.0982737
0.0447696
0.0305784
0.0205017
0.122936
0.0277908
0.0336875
0.29006
1.20687
0.0655697
1.81753
0.2471
0.0805438
3.43999
1.50694
0.614418
0.903386
1.42546
1.66934
1.01598
1.96083
1.69198
1.27801
0.430184
1.25096
55.0026
0.680034
1.80271
1.33861
1.3931
6.11628
1.94821
1.30074
5.68915
2.24787
3.54763
2.18744
1.22468
2.85295
2.87177
1.196
9.41112
88.7111
14.4955
1.61274
1.16102
2.43251
3.33903
14.3791
1.14859
4.93729
2.41841
1.38581
3.2644
1.29406
2.60048
3.06595
1.30233
17.716
16.3313
0.689489
0.592054
1.35236
0.461869
1.47856
0.468153
0.653764
4.60457
5.63184
6.54697
3.82091
3.05122
2.02753
2.62806
2.3968
0.828784
0.695103
1.49385
0.563694
1.68436
0.769064
0.574705
3.91879
5.1238
5.76055
3.43482
0.570698
0.493169
1.25444
0.403831
0.400184
1.19555
0.585668
3.06124
4.02663
2.89737
4.45813
2.41143
1.90651
2.47843
1.8553
0.527306
0.45052
0.36621
0.878971
0.488972
0.371961
1.08502
3.15378
4.83937
4.66827
3.24677
1.79182
4.98371
0.197056
0.484597
0.198209
1.78774
5.00229
0.603173
0.928057
0.889936
0.625844
1.7904
0.208676
0.490091
5.11645
0.201294
5.01571
1.83572
0.0881352
0.0265261
0.00850904
0.379705
0.0870409
0.00774971
0.397936
0.112052
0.210346
0.407415
0.152356
0.213737
0.150451
0.11408
0.107177
0.144594
0.200789
0.396218
0.105978
0.206646
0.146118
0.79216
1.12718
1.13961
0.786094
2.37599
6.81951
0.928002
0.297386
6.80079
0.295345
2.3871
2.3694
0.28827
6.65633
0.91067
6.75022
2.35055
0.291442
10.3803
2.56184
3.69642
1.52038
0.933024
65.7268
1.28529
1.49285
1.80177
1.04935
4.17754
0.456834
1.59205
8.93907
0.57369
12.7378
3.14813
0.160669
0.0405881
0.0144144
0.822985
0.167986
0.0140374
0.784464
0.170193
0.261178
0.542439
0.191743
0.298278
0.146009
0.218227
0.182019
0.240477
0.328245
0.572074
0.189856
0.316281
0.231027
0.953218
1.39845
1.36021
0.980614
2.76446
7.41644
1.1623
0.357979
7.76888
2.63523
0.393925
2.83016
0.426306
8.20186
1.21289
7.96594
2.91198
0.411413
1.54165
1.7122
1.73838
1.47896
1.90974
1.51966
19.5573
2.59756
2.28092
7.8576
1.03069
1.58289
2.058
1.92207
1.82832
1.62952
4.37673
0.877406
2.36183
1.45294
5.75769
0.899544
1.87459
1.64053
2.12047
1.43015
2.2663
2.78989
2.94824
2.18575
0.478924
0.129209
0.620095
0.132479
0.580407
0.509304
0.128688
0.354216
0.125991
0.243913
0.125003
0.336735
0.248676
0.121934
2.42669
3.17244
3.0261
2.71881
1.67526
1.32249
1.66497
1.26929
0.369694
0.271927
0.134509
0.133159
0.392883
0.256643
0.1291
2.55611
1.91722
2.06448
2.40039
0.488454
0.169011
0.342615
0.170092
0.483384
0.32911
0.169783
3.01182
2.79444
2.87574
3.03806
0.540497
0.15554
0.700311
0.141637
0.684926
0.521618
0.142159
2.72314
2.22934
2.71076
2.20692
2.98503
3.32436
3.27389
2.99977
0.428298
0.288204
0.157007
0.145447
0.303191
0.408351
0.149262
0.886265
1.34511
1.14219
1.07899
0.77995
0.595527
2.72561
1.53669
0.907236
3.36369
0.595835
0.661568
4.18828
1.07582
1.16358
0.906499
1.01298
3.32419
0.831565
1.79493
1.21715
3.28337
0.740458
0.319981
1.06218
0.756592
0.251018
0.287057
1.08033
0.272493
0.581444
0.762141
2.28193
1.42154
0.803657
1.40565
0.527125
0.488516
1.2461
0.839305
2.15161
0.816051
0.458017
1.27248
10.7851
5.54379
27.7306
6.80791
5.90702
18.7622
2.16047
1.16602
6.09466
18.0702
1.17323
21.2614
8.0147
22.7084
7.40531
5.90234
2.113
17.4052
1.15329
17.9966
1.18687
5.72384
0.287145
1.04913
0.863624
0.235977
0.272436
1.39127
0.251193
0.497443
1.07855
2.36328
1.37161
0.878081
0.555772
1.17233
0.432436
1.13273
0.786111
2.02917
0.785889
0.430664
1.04478
0.296448
0.799881
0.882905
0.325763
0.333453
0.724061
0.286076
9.83687
3.44158
9.82335
3.27601
8.49696
8.88213
0.353788
0.688812
1.49968
1.18363
0.510513
0.430039
2.36874
0.290857
1.24116
0.425494
1.35174
0.439364
0.262051
1.36725
2.46741
23.4366
3.70509
21.7954
3.56381
6.45626
51.6539
9.90999
2.58044
17.5244
3.17301
19.7111
3.84289
11.2455
10.3772
9.28736
8.43371
2.22813
0.866328
5.53053
13.4347
1.18394
16.3591
46.8614
7.12703
11.705
8.77338
134.316
41.8827
5.27716
2.12375
16.3963
1.15846
5.61816
15.4359
1.22246
0.172443
0.273048
0.885338
1.94131
0.157589
0.289666
1.16632
0.208529
1.13141
0.396322
1.02782
0.354038
0.233904
1.00217
27.6509
3.96063
4.03898
4.69244
86.9189
41.7857
12.3087
14.5894
3.3309
8.02573
8.10583
2.51855
23.0639
12.1655
4.86381
2.68977
10.9238
4.51697
2.36279
13.6139
9.55349
3.75363
2.15685
8.06957
4.33322
4.93342
7.51082
23.0724
4.52147
8.33609
25.2836
3.11979
12.4548
8.24391
1.4577
16.5095
1.69218
2.58642
5.51054
15.9798
5.76824
15.3386
3.13624
20.8039
8.47915
2.02136
17.5109
3.87584
1.77779
3.41303
1.95116
19.3659
8.53326
3.55901
17.9754
1.88718
380.01
19.1779
36.7477
19.5267
77.0991
42.6561
74.4417
1398.22
1590.67
174.326
7.91645
42.1126
16.298
15.1847
11.4521
32.8878
256.039
57.32
30.9365
151.321
0.495601
0.332163
2.02148
1.9719
0.452954
1.86605
0.45333
0.637124
4.06255
0.713201
2.42886
0.916323
4.39128
0.605803
101.139
12.632
23.3126
14.5562
25.2679
34.8335
36.8965
82.4574
13.8665
22.2188
45.579
17.3681
30.9117
59.6305
17.6565
67.2006
19.4551
211.945
21.8149
153.525
126.802
168.639
1587.53
62.0361
795.717
510.076
20.0815
155.465
50.5678
1.62718
2.34092
1.32416
1.41276
2.10866
2.44701
1.33287
1.68491
1.78795
6.2052
2.39287
2.21723
2.43998
1.71339
2.25074
7.29166
2.06429
6.18609
2.19012
2.20563
2.4927
1.48179
1.2403
2.14116
0.969599
2.33764
1.17311
1.51676
68.2355
18.3489
23.0623
95.1551
24.1053
31.4016
102.752
43.7667
27.9826
384.371
29.7431
9.46939
7.91873
8.05666
0.514994
1.096
0.604058
25.646
4.57005
5.94998
1.10687
0.277757
0.895563
0.772439
0.685994
1.13862
2.72528
2.95814
1.22024
0.772025
0.77597
0.544922
2.08239
1.10006
2.92619
0.754085
1.16894
1.82615
1.57729
2.19144
1.79784
2.04176
1.99434
1.60826
1.77651
1.15357
8.32491
1.65033
1.86126
6.06291
1.52387
2.30793
6.59507
1.94551
7.24791
2.08855
2.08719
6.21596
44.3463
178.345
31.4547
0.596407
0.559062
1.03586
2.39341
0.965821
2.03701
0.668596
0.484339
0.464016
0.68352
1.28052
0.816457
1.61343
0.451559
0.684966
0.378234
1.4248
0.672498
0.609907
1.67112
0.504146
1.1498
1.67357
2.61073
2.55137
1.66883
1.50306
2.45896
1.02987
2.01768
0.883408
2.28079
1.21486
0.75753
2.2058
0.927605
0.787432
2.01046
0.787292
1.26852
1.89338
0.683848
0.0971655
0.0929481
0.172823
0.293412
0.226863
0.141723
0.116497
0.0997024
0.0989978
0.211435
0.110599
0.197582
0.103165
0.119365
1.96865
2.71739
7.18937
0.498164
0.664845
0.519608
7.12823
3.88038
3.35153
0.54244
7.52143
0.603568
0.549506
7.42282
0.273127
0.393077
0.290151
1.11994
0.399071
0.205771
0.898541
0.261062
0.28002
1.29805
1.73484
0.228505
0.395194
1.35245
0.207053
0.32853
0.143126
0.715939
0.183045
0.158063
0.760904
0.418602
1.74499
0.623451
1.96767
0.516801
0.504497
1.51874
0.195117
0.259119
0.173461
0.445249
0.337362
0.168657
0.60789
0.287616
0.230842
0.539628
1.01458
0.339477
0.462112
0.821443
16.5507
17.3895
4.88016
14.8863
3.55697
3.53689
4.86685
2.5197
2.38224
0.680123
0.420031
3.58288
0.46452
2.17136
4.7718
3.47964
14.2655
4.8615
3.45518
2.37071
0.527785
3.58524
0.65925
2.46638
3.44631
0.486609
13.7698
11.3957
4.43135
14.2557
3.46419
4.81125
3.23276
1.91612
2.27389
0.407294
0.353686
2.24766
2.04703
0.307122
3.96944
3.6057
132.855
14.2606
6.73362
2.88592
1.8144
0.228873
2.27473
0.343603
1.73563
2.28392
0.242083
0.735771
1.36034
0.384029
0.224189
1.6877
0.249604
0.652208
3.74745
19.2072
2.21291
2.17046
3.81005
0.840287
0.328394
2.21918
0.443097
0.949464
1.96329
0.298723
4.0943
2.48686
19.8251
4.17279
2.42789
0.574569
3.54612
5.41257
1.06635
3.48974
1.05377
0.579703
0.69907
1.27595
3.87183
5.70501
3.79933
0.759049
1.21933
0.545558
1.49829
0.288024
0.169548
2.30806
0.57723
0.144656
5.66444
3.16569
4.30086
1.74929
0.494408
0.125888
3.60785
0.298662
0.429558
3.35471
0.128516
5.65499
1.912
5.85464
1.82241
0.491869
2.83822
6.02066
0.934819
0.997532
2.91521
0.484338
0.501312
1.07631
6.32732
3.08028
1.0612
3.00552
0.514859
0.576746
4.2281
6.66444
1.46077
3.44617
0.65373
1.10812
0.551253
1.1392
6.38048
3.23697
3.19491
1.10654
0.557561
0.237218
2.45568
6.82611
0.432482
0.420528
2.22381
0.244419
0.243809
0.448671
6.73715
2.10325
0.43034
2.19276
0.257913
0.0801781
0.112042
0.232459
0.071222
0.474691
0.212032
0.105748
1.10481
0.957583
0.401035
0.965883
0.258835
0.159688
1.00754
0.167547
0.414427
0.393897
0.174977
0.812126
0.263194
0.24648
0.984809
0.171909
0.592793
3.73567
0.928929
0.107549
0.0731808
0.19601
0.104964
0.211485
0.106688
0.123134
0.251967
2.50011
5.30517
0.583753
2.57838
0.540798
0.271016
0.26357
0.488917
2.01505
5.95651
3.97332
0.271387
0.534747
0.538963
2.78558
6.24977
0.927032
1.20976
2.93798
0.471664
0.470333
0.947907
6.03114
2.72911
1.03683
2.78677
0.436989
0.144701
0.090346
0.213641
0.0685205
0.148366
0.207438
0.0913964
1.30802
1.53997
0.413747
1.0238
0.225539
0.157704
1.0774
0.430395
0.148902
0.415073
0.151408
2.27517
0.233942
0.477007
1.27381
0.144299
1.88284
1.72949
0.149805
0.0724346
0.198731
0.105489
0.141312
0.198394
0.098545
0.340315
2.65517
5.83232
0.678502
2.73027
0.325665
0.757348
0.359234
0.877921
2.67911
5.92846
2.73814
0.38267
0.817944
0.289545
3.77806
0.924093
0.363176
2.935
0.424433
0.339212
0.486564
3.15066
0.481756
2.93723
0.348276
2.22933
0.170782
0.405391
0.131452
2.12664
0.190176
0.481576
73.5286
1.0834
0.564874
0.161379
0.132029
0.872216
0.17544
0.575089
8.45321
1.40368
1.56628
2.73832
0.368377
0.17022
0.389607
0.166079
0.463257
1.14919
0.176817
10.5644
1.25311
10.1801
1.37911
1.05638
0.143743
0.13649
0.364538
0.177184
0.464942
0.514642
0.527668
3.755
0.713568
3.68483
0.708296
0.562911
0.432724
0.593404
3.4312
3.43236
0.419244
0.588532
0.695814
0.16919
0.495492
0.158964
0.73035
0.160692
0.444846
3.24579
2.75495
3.51461
2.36974
0.650057
0.520109
0.118697
0.121879
0.484224
0.552831
0.127466
2.58716
1.47503
2.26173
1.65446
0.675385
0.153301
0.718653
0.129173
0.815484
0.584472
0.141191
2.91223
2.30527
3.27787
2.04109
0.577485
0.140182
0.129096
0.347556
0.499994
0.142511
0.386908
2.21175
8.85268
2.80587
2.3226
7.91166
2.50319
1.67661
1.33931
5.73285
1.59894
6.48197
1.36261
0.720994
3.8363
0.766635
3.90215
0.634635
0.807339
0.923167
1.12324
5.09495
4.52873
1.01869
1.1036
0.722964
4.28625
0.711043
3.46767
0.661103
0.699978
3.98174
0.68249
0.689309
3.00716
3.09432
0.635628
3.10335
0.666729
0.812385
15.8983
6.84058
1.76971
4.52195
0.923105
1.3025
0.672173
0.761981
2.3511
3.9596
0.581957
2.69763
0.744988
0.819049
2.24138
5.52296
2.02726
2.08262
1.11738
0.988253
0.702158
0.686422
2.46394
3.27055
2.37381
0.664927
0.715923
2.13173
7.01662
2.10741
1.96259
6.25986
2.13479
1.8948
3.31604
4.42642
1.57967
5.38225
2.03939
1.04677
5.37253
1.07825
40.9113
1.39753
0.754434
9.49396
0.860696
103.864
0.93271
1.82184
1.13581
1.1544
2.00285
1.41417
1.44783
1.03188
1.76617
8.16939
2.60979
1.76595
1.03266
2.60437
1.09789
3.00282
2.38359
8.58558
1.8527
1.26193
2.77197
0.00847949
0.0447105
0.00886155
0.0536082
0.0102022
0.0750226
0.0105448
0.0246631
0.0128409
0.0116588
0.0128722
0.0173426
0.0182073
0.0149499
0.166369
0.11021
0.0867974
0.106935
0.112755
0.169359
0.127857
0.0131111
0.000360779
0.00070974
0.000379566
0.0193331
0.000378088
0.000635312
0.00157044
0.000404437
0.000366778
0.0243493
0.00127688
0.000405447
0.000382449
0.224199
0.215699
1.38245
2.03393
0.2033
0.238157
2.19078
0.000401155
0.000406485
0.000400916
0.000425515
0.000422002
0.000424347
0.000421847
0.000401032
0.000408124
0.000400973
0.000424082
0.000421977
0.000424917
0.000421869
0.00956882
0.211625
0.00751465
0.000526769
0.00189932
0.000589261
0.00168268
0.000444232
0.000443133
0.000444157
0.000467561
0.000468904
0.000467529
0.000468856
7.45115
7.50206
6.4412
6.35955
0.000444564
0.000444372
0.000444438
0.000469544
0.000469169
0.000468992
0.000469088
0.000444429
0.000442875
0.000443988
0.000467299
0.000469039
0.000467249
0.00046865
0.00044456
0.000444455
0.00044434
0.000469475
0.000469102
0.000469033
0.000468952
0.000495462
0.000495907
0.000495433
0.000524302
0.000524304
0.000524257
0.000524301
0.000495746
0.000494983
0.000495663
0.000523784
0.00052468
0.000523789
0.000524656
0.000493356
0.000491906
0.000492943
0.000506751
0.000506081
0.00050698
0.000506027
4.88594
4.74161
3.21767
3.10959
0.000495686
0.000495878
0.000495656
0.000524538
0.000524593
0.000524507
0.000524586
0.0682066
0.086937
0.0739722
0.102923
0.106312
0.0335722
0.160949
0.00415829
0.00273156
0.00211648
0.00523562
0.000564272
0.000584243
0.000561814
0.000577114
0.000570446
0.000569737
0.000575647
0.000553315
0.000552143
0.00055296
0.000586037
0.000587133
0.000586014
0.000587046
0.000553176
0.000553204
0.000553119
0.000587231
0.000587189
0.000587183
0.000587177
0.0351309
0.233944
0.0267923
0.300398
0.296842
0.0319212
0.0293956
0.0272997
0.0232321
0.243485
0.296638
0.0232788
0.305746
0.0273527
0.00115095
0.00127222
0.000561113
0.000584198
0.00116516
0.0012254
0.000565972
0.00105798
0.000533927
0.000838226
0.000494103
0.0010585
0.000539422
0.000845674
0.0334011
0.0131318
0.0063524
0.00273072
0.0470703
0.0101032
0.00538565
0.000828824
0.00173043
0.000757441
0.000624693
0.00181578
0.000811333
0.000626566
0.000755405
0.00153591
0.000614862
0.000709869
0.000611597
0.000775839
0.00143433
0.0006534
0.000917881
0.000644696
0.00058542
0.00058665
0.000937158
0.000646597
0.000522696
0.000521206
0.000537012
0.000536025
0.00052302
0.000521077
0.000536826
0.000718522
0.000689503
0.000636501
0.000631177
0.00070799
0.000678132
0.000633682
0.0172639
0.0279339
0.00567002
0.00949812
0.0165628
0.00508928
0.039459
0.0263326
0.0251807
0.0278326
0.00877071
0.00944948
0.00895028
0.00920032
0.0986009
0.0118092
0.0551956
0.0102029
0.0698665
0.0114228
0.0705478
0.0876475
0.00139459
0.00159638
0.00142496
0.067133
0.0642134
0.00126458
9.01981
2.85397
9.28608
2.5718
2.86823
2.5842
9.03885
8.31408
2.47403
2.45703
2.28289
8.41083
8.4124
2.29436
0.000483371
0.000693698
0.000777293
0.000752444
0.000461675
0.000475679
0.000678027
2.40699
8.05554
2.37155
2.20391
8.25064
2.23597
8.16559
6.78666
1.87119
1.90949
1.82408
6.77367
6.92396
1.78696
0.000685989
0.000465611
0.00066445
0.000655375
0.000461253
0.000675033
0.000457571
9.14958
9.59972
9.48617
9.16268
0.000457375
0.000581205
0.000617101
0.000625966
0.00044283
0.000449209
0.000585089
1.78136
6.27918
1.73671
1.65855
6.53429
1.69983
6.42393
5.77493
1.51131
1.49024
1.58888
6.40694
6.16279
1.66169
9.41469
8.99847
9.04535
9.37104
0.000573858
0.000449141
0.000590486
0.000594524
0.000441962
0.000576419
0.000441105
7.61875
7.68819
7.13134
6.87119
1.6098
6.33998
1.73274
1.52556
5.16591
5.14056
1.43266
0.000453108
0.000455897
0.000440718
0.000455206
0.000441213
0.000465987
0.000452697
0.000465066
0.000479184
0.0004662
0.000465307
0.000477725
0.000464738
0.000478426
0.000465993
0.000467485
0.000487051
0.000478649
0.000476209
0.000465657
0.000478899
0.000469986
0.000455837
0.000471666
0.000457137
0.000442537
0.00044663
0.000454381
0.00045743
0.000452032
0.0004432
0.000456306
0.000446366
0.000462641
0.000454994
1.72568
2.04592
1.78935
1.5145
0.000467734
0.000486935
0.000478261
0.000468573
0.000479787
0.000466818
0.000480784
0.000469014
0.000468346
0.000485346
0.000480162
0.000473755
0.000467329
0.000481217
0.000619546
0.000502246
0.00051134
0.000608498
0.0005732
0.000567018
0.000511027
8.13941
12.5904
3.85859
3.46692
0.000499524
0.000555582
0.000577324
0.000549239
0.00050911
0.000509711
0.000538265
0.000491689
0.000492628
0.000492592
0.000506501
0.000505901
0.00050584
0.000506564
0.000547741
0.000496734
0.00053782
0.000528733
0.000509101
0.000534292
0.000508811
1.6106
1.68242
1.40539
1.34738
0.000495159
0.000510308
0.00052134
0.000520576
0.000507727
0.000508034
0.000515544
59.4292
1953.41
138.369
70.9783
203.332
88.5249
121.25
223.622
58.7323
36.41
29.5298
71.5344
0.691714
0.204544
0.188022
0.221678
0.2419
0.0758794
0.0602913
0.00060498
0.000566026
0.000567987
0.000571165
0.000578972
0.000580151
0.000570805
0.40327
0.218587
0.35634
0.377953
0.324568
0.581825
0.262586
0.0416651
0.0623944
0.0169584
0.0191709
0.017109
0.0502753
0.0525053
0.0747708
0.00539823
0.0224542
0.0143276
0.0136786
0.0827386
0.020843
0.118153
0.0047558
0.0227169
0.0140893
0.015573
0.0952014
0.0226347
0.00103624
0.0941866
0.0010251
0.066997
0.000984332
0.000978038
0.0696799
0.0960192
0.00245767
0.00106543
0.00108318
0.0756042
0.0707999
0.00350167
0.0148244
0.421081
0.011089
0.012357
0.292078
0.0160598
0.291991
26.1467
4.93908
25.9099
13.2543
3.90542
13.3151
3.86954
6.57512
56.3831
5.61475
5.59965
56.2463
0.00342435
0.0118989
0.0123466
0.0110039
0.00306499
0.00317132
0.0105417
0.175284
1.22045
0.136154
1.6102
0.157103
1.69006
0.153127
9.20498
6.48433
6.56593
0.00361652
0.0142689
0.0138677
0.0123834
0.00340936
0.0131672
0.00336459
8.77251
5.76621
6.64605
0.000477919
0.159833
0.000460789
0.000413014
0.00697042
0.000416097
0.00599576
0.215413
9.3971
3.50103
0.280612
0.139329
0.157631
4.11727
0.850654
164.752
0.919766
0.739623
0.782212
12.1653
0.00429676
0.000722303
0.00213827
0.00293153
0.00080731
0.0039501
0.000706733
7.93694
7.24364
6.38205
6.48856
0.000682173
0.00164397
0.00182204
0.0021182
0.000584032
0.000630838
0.0015686
0.000920953
0.00205693
0.00050402
0.00059812
0.00101895
0.00193687
0.000501144
0.000835339
0.00165621
0.000497825
0.000586504
0.00179712
0.000499109
0.000765435
0.00558402
0.00177997
0.00164113
0.00524431
0.00317107
0.00299904
0.00162792
18.3747
17.0158
0.00164463
0.00526905
0.00447478
0.00265777
0.00154079
0.00152123
0.00304063
0.00295055
0.00106228
0.00258039
0.0016871
0.00100145
0.00186655
0.00099019
2.36735
2.44568
1.93459
1.89998
0.00102732
0.00232501
0.00301167
0.00192505
0.00090661
0.000926457
0.00157576
0.0159781
0.0423004
0.000898291
0.00228414
0.000932228
0.00837397
0.11497
0.0042642
0.0243709
0.0007245
0.00129827
0.000731709
0.0286245
0.00370883
0.166842
0.0671375
0.161212
0.0684033
0.000600422
0.000537297
0.000523287
0.000521703
0.000538008
0.000526053
0.000536655
0.000568118
0.00053753
0.000523334
0.000522329
0.000538044
0.000525334
0.000537338
0.00127599
0.00515656
0.000748962
0.000732486
0.00121759
0.000643842
0.000655858
116.567
21.9195
7.67003
0.000931328
0.00218785
0.0022885
0.00162954
0.000871703
0.00168743
0.000848765
0.000579047
0.000558797
0.000560187
0.000569091
0.000573525
0.000574234
0.000568864
0.0408598
0.0848831
0.077312
0.0464937
0.0333769
0.0297048
0.0521771
0.25839
0.125785
0.309755
0.182038
0.141107
0.142172
0.112581
0.137495
0.294182
0.330614
0.195474
0.0973118
0.09255
0.190967
0.0295327
0.284755
0.0354867
0.0358996
0.227603
0.289712
0.0299599
5.09696
26.4589
26.5936
13.5346
3.94823
13.4602
3.96545
15.1404
3.57429
4.23428
13.1058
15.1226
13.0891
3.57953
0.0273105
0.247951
0.0233546
0.311814
0.0233514
0.311238
0.0273045
0.0292968
0.254118
0.0229107
0.312316
0.0284055
0.0266155
0.326394
8.96311
6.4541
6.42044
6.68434
54.3611
5.62142
55.6198
5.61435
1.51604
0.211907
0.21145
0.18597
1.27553
0.18641
1.24486
0.0121064
0.00305803
0.0113098
0.0100019
0.00299677
0.0106811
0.00280776
6.80999
15.738
14.621
10.3249
5.54902
5.38091
10.9041
7.40052
5.19151
4.9763
0.002417
0.00537038
0.0076556
0.00692377
0.00192734
0.00494276
0.00224679
1.80566
4.91972
0.340476
0.99298
0.416503
2.2395
3.47179
0.24215
0.171534
0.231733
0.0888322
0.0994524
0.203139
0.30374
15.6985
15.9889
0.00169901
0.000704901
0.000727277
0.0006284
0.000759475
0.00148668
0.000720145
21.3241
20.888
0.00101355
0.000789193
0.00378131
0.00257815
0.000646069
0.000876342
0.000765759
1.95445
1.25319
1.27049
1.29675
5.04506
5.12214
1.28068
0.00256887
0.000639788
0.000936302
0.000881863
0.000788892
0.00217202
0.000635833
1.70098
2.54473
6.70966
1.66492
1.75704
1.72366
6.56772
15.23
14.9499
12.8598
13.134
12.9079
1.84632
1.84724
12.547
12.2127
1.20202
1.8115
1.18483
1.20924
4.87948
1.22461
4.8032
0.000726566
0.0006895
0.00117152
0.000600968
0.000603515
0.00127198
0.000708775
1.00955
1.5293
1.02651
1.04937
4.16111
4.23807
1.03332
4.41021
1.10811
1.11532
0.293936
0.577268
0.578301
0.293151
0.000670138
0.00065697
0.00107161
0.000594052
0.000591688
0.00100957
0.000686726
0.971525
1.41875
0.954564
0.975301
4.0464
3.95712
0.991255
12.007
1.68678
1.67027
9.62144
1.031
1.03174
5.2046
0.466731
0.529877
9.54366
1.01621
1.01814
0.992862
4.02544
0.974099
0.242862
0.500867
0.246677
0.49362
0.687497
3.13085
0.693103
0.103645
0.251774
0.253436
0.102944
1.87399
0.410849
0.446532
0.0875246
0.172545
0.188214
0.0834413
0.660645
3.07013
0.653375
0.0954816
0.240693
0.239583
0.0962527
4.31738
0.425416
0.410316
2.50593
0.171324
0.174893
0.109843
0.102144
0.0540717
0.0570735
0.0956307
2.36586
0.161197
0.155725
0.00055379
0.00071873
0.000627108
0.000569633
0.000556195
0.000554511
0.000571621
0.380115
1.54705
0.368839
0.0717753
0.155105
0.0731217
0.150759
0.100026
0.0805606
0.0469132
0.0859626
0.044919
0.00053938
0.000624754
0.000573074
0.00054945
0.000544554
0.000554416
0.000542351
0.0909703
0.0907849
0.0984467
0.0135538
0.0127737
0.0129994
0.0129948
0.079927
0.0650285
0.0736432
0.0104921
0.0106512
0.0112445
0.0100458
14.2147
9.30255
0.00103817
0.0024473
0.00266403
0.00219728
0.000927624
0.00196376
0.000954914
0.533187
0.190081
0.29245
0.327688
0.237608
0.169065
0.657324
0.727176
0.631066
0.89241
0.350465
0.278166
0.350308
0.265345
0.0583939
0.0177032
0.0442184
0.0490298
0.0214249
0.0660407
0.0175468
4.40634
12.1806
12.6238
11.5489
4.09109
4.21594
11.2236
4.44246
13.3645
15.3585
4.27445
4.16142
4.05401
13.8196
12.5648
4.08185
12.9523
11.9731
4.11008
11.6161
3.98261
0.187128
0.710462
0.165429
0.164331
0.857093
0.190126
0.722981
0.0355153
0.39924
0.0481102
0.224292
0.0367786
0.0463044
0.262078
0.0337719
0.137014
0.180908
0.0342345
0.0341911
0.201444
0.0356518
0.251854
0.144221
0.201691
0.120516
0.195749
0.143266
0.263894
0.613176
0.148784
0.683894
0.654614
0.124143
0.136043
0.582643
0.494643
0.100142
0.383618
0.382318
0.106757
0.0946026
0.476339
0.743117
0.0951675
0.113348
0.47849
0.500715
0.128866
0.685417
0.372904
0.131236
0.238162
0.107033
0.254156
0.345355
0.135727
0.707125
0.197084
0.14458
0.4821
0.446969
0.786988
0.166396
0.0177592
0.140418
0.154342
0.143673
0.0166664
0.0174735
0.135484
0.0581697
0.0548857
0.240429
0.234649
0.0550734
0.238967
0.0573346
0.0590651
0.270962
0.0592489
0.234243
0.0553932
0.0638317
0.240438
8.90018
2.58781
2.59595
2.40739
8.92291
2.40141
8.97375
0.819052
2.67211
3.07501
0.735126
0.810253
3.12825
0.741618
8.78726
2.58122
2.58933
2.40527
8.87882
2.39761
8.87264
0.80684
3.00644
0.727188
2.7705
0.800689
3.23817
0.732799
15.7888
21.3209
51.7993
46.4719
12.8229
16.9894
22.9951
0.00542556
0.00220458
0.00601205
0.0057439
0.00200136
0.00518027
0.00213456
0.00219966
0.00636549
0.0064887
0.00598615
0.00205626
0.00211209
0.00576076
0.0053924
0.00187622
0.00193981
0.0047034
0.00487324
0.00199113
0.00519294
17.1787
8.671
13.5296
9.92348
14.5092
15.9192
10.5632
0.00531454
0.00194826
0.005149
0.00465276
0.00181699
0.0018446
0.00479941
0.00650903
0.00226081
0.0062491
0.00559784
0.00215992
0.00581571
0.00211616
0.00503332
0.00202165
0.0046959
0.00186569
0.00454834
0.00520907
0.00198339
12.0707
11.8788
8.59969
8.70448
11.3021
13.8981
9.19531
0.00422321
0.00173441
0.00166552
0.00399965
0.00384885
0.00175008
0.00439526
9.0511
2.20771
2.36607
2.22047
8.28587
2.09395
8.97976
0.19712
1.89867
0.172041
1.40612
0.172811
0.196517
3.22153
7.58928
2.12643
2.08258
1.98455
7.91167
2.02219
7.74596
0.18824
1.98633
0.163646
1.71465
0.166056
0.185926
2.14329
0.0055143
0.00189926
0.00531003
0.00486509
0.00184176
0.00498837
0.00181721
8.77783
9.52667
9.02098
8.50534
0.00177622
0.00505145
0.00495591
0.00459333
0.00175578
0.00171263
0.0046764
0.00442496
0.0017187
0.00160992
0.00510827
0.00414638
0.00166636
0.00564513
0.00465785
0.00177305
0.00169692
0.00453472
0.00448623
0.00469617
0.00175925
1.40911
9.05424
1.15899
4.80285
1.19744
10.4111
1.36814
8.78876
10.2601
9.82578
8.58893
0.00422888
0.00148253
0.00430653
0.00472092
0.00142951
0.00146153
0.00479639
0.00476332
0.00159455
0.00457525
0.00433001
0.00161686
0.00447505
0.0015549
1.11536
10.1237
1.11269
3.97999
0.963382
6.01444
1.31323
6.22177
1.74352
1.76472
1.70089
6.35322
1.68705
6.36773
7.23253
1.6985
1.8304
1.77119
6.52577
1.65677
7.26028
0.00414943
0.00144714
0.00544985
0.00528395
0.00141028
0.00448295
0.00144407
8.48314
8.73422
8.78801
8.5592
8.33124
8.39163
8.44554
8.41405
5.53283
5.69485
5.37535
5.21565
0.000613296
0.00406997
0.000471128
0.000804242
0.000614497
0.00422183
0.000474851
0.000608003
0.00400865
0.000482239
0.000796602
0.00434026
0.000478791
0.000595419
5.36217
5.18516
4.84408
5.03894
0.000513103
0.000484822
0.000507788
0.000491533
0.000488131
0.000496898
0.000481542
0.000497371
0.000478182
0.000502367
0.000486068
0.000468224
0.000480735
0.00047478
0.000574021
0.00349937
0.000711322
0.000501065
0.000573158
0.000495962
0.00350239
0.000579652
0.0038374
0.000486494
0.000730435
0.000587114
0.000490856
0.00370784
11.7275
24.4556
7.32808
6.87199
0.0011593
0.000599723
0.00137249
0.000801518
0.000526909
0.000657571
0.000531484
0.00158618
0.000623337
0.00152323
0.000999703
0.00055827
0.00123706
0.000541903
0.000622
0.00117527
0.000550679
0.000503128
0.00058627
0.00130435
0.000500802
0.000662457
0.00153236
0.000498011
0.000557305
0.000709197
0.00141729
0.000498794
0.673788
0.102973
0.0811753
0.652848
0.0980132
0.126636
0.122687
0.014304
0.0159553
0.12125
0.119543
0.0167589
0.0248801
0.00521968
0.0040849
0.00457244
0.169337
0.102971
0.115038
0.0144587
0.0132223
0.109474
0.113652
0.0139188
0.000530277
0.00051461
0.00052082
0.000529054
0.000514417
0.000528321
0.000532179
15.1085
15.686
0.00292437
0.00118016
0.00334745
0.00187395
0.00105574
0.00174956
0.00106696
0.00439409
0.00137387
0.00395781
0.00220959
0.00126188
0.0023928
0.00124576
0.00553183
0.0532214
0.00425591
0.00135681
0.00136913
0.00489784
0.0695582
0.0131654
0.160605
0.00287245
0.0133853
0.00283649
0.014279
0.142816
0.000603875
0.000500877
0.000581943
0.000587461
0.000507247
0.000506786
0.000609581
0.000499317
0.00054638
0.000538658
0.0005433
0.000505133
0.000505344
0.000551448
0.000542898
0.000511731
0.000518429
0.000524714
0.000511864
0.000546637
0.000530617
0.0853348
0.00280638
0.00405665
0.00261148
0.605084
0.0956413
0.000587742
0.000513594
0.000519641
0.00059276
0.000513199
0.000609864
0.000567622
0.00506685
0.103166
0.000958475
0.00153844
0.000994389
0.13331
0.00363697
0.000557632
0.000496631
0.000553256
0.000555037
0.000504475
0.000557138
0.000503157
0.00055277
0.000497208
0.000564787
0.000567889
0.000503932
0.000557754
0.000503596
2.2752
2.21953
1.81481
1.84838
0.00132074
0.000715958
0.00151675
0.00110056
0.000679409
0.00101636
0.00068553
0.00196178
0.000828433
0.00200993
0.00138529
0.000779199
0.00134273
0.000778298
144.105
21.9808
91.5822
96.7101
31.2931
24.2986
103.818
0.0229694
0.0129906
0.00231302
0.00222649
0.0190342
0.0181509
0.00253094
5.22205
9.96582
5.00607
2.96651
1.86722
1.30119
3.45054
0.30504
0.265475
0.105427
0.371225
0.179522
0.140885
0.751564
0.435754
3.2103
8.83846
0.476775
0.273124
4.76824
0.828453
0.123632
0.114151
0.197206
0.0911861
0.134137
0.0907132
0.0525576
1.93434
5.34441
7.79902
1.58181
1.7543
1.46008
5.19848
6.7563
1.33419
1.4059
1.18614
4.73302
4.97763
1.13611
0.0637069
2.0543
0.0661662
0.0578695
1.37269
1.46296
0.0557708
7.39302
7.39934
6.51859
6.54947
0.0119328
0.055647
0.084665
0.0861264
0.0114495
0.0138829
0.0552623
0.616694
5.41753
0.026834
0.0531023
7.86811
0.654104
0.024684
0.55572
11.3975
0.0203095
0.0518779
9.25408
0.503019
0.0224159
0.232094
0.0455836
0.0331452
0.227915
0.144785
0.142199
0.0327403
79.7904
1.20665
1.60074
1.57468
1.18843
0.0430479
0.246334
0.216066
0.132733
0.0273614
0.0304476
0.104884
0.0235237
0.0344742
0.0495028
0.0485441
0.0231537
0.0233538
0.0340178
0.0453243
0.0213122
0.0215319
0.0307188
0.0217537
0.0423069
0.0316682
1.47442
1.10408
1.45859
1.11427
0.0569027
0.0183258
0.0487491
0.023475
0.0166212
0.0255956
0.0165332
3.2402
3.42416
2.32681
2.34257
0.0157444
0.0356414
0.0430222
0.0201001
0.0137416
0.0138657
0.0188148
1.05992
0.606535
0.867405
0.775747
0.607085
0.41356
0.612261
0.40764
1.67487
0.000550557
0.00225338
0.000622661
0.000639234
0.00207216
0.000535454
5.20318
2.17718
5.74023
1.92523
5.30827
2.09388
2.22197
0.728439
0.120783
0.24353
0.205963
0.605785
0.200736
0.0783071
25.4358
39.0567
16.5531
26.7674
30.1474
18.1941
82.5504
0.00335338
0.0300721
0.00947889
0.00228354
0.0274959
0.00363581
0.00215873
0.00445273
0.00211841
0.0122314
0.0254834
0.00217372
0.00429324
0.0257953
0.0046921
0.0281733
0.0126168
0.00235714
0.00228446
0.0262928
0.00499528
0.00308027
0.00877917
0.0229963
0.00189713
0.00292934
0.025527
0.00197134
0.00336845
0.00185401
0.0212446
0.00949869
0.00363202
0.00179165
0.0190408
0.00309592
0.0173588
0.00892448
0.00165853
0.00170067
0.0178577
0.00289206
0.00119799
0.00102735
0.00268612
0.00297465
0.0010402
0.00114514
0.00310622
0.00126206
0.00386667
0.00277987
0.00108944
0.00106502
0.00339016
0.00134056
3.1269
2.22461
8.52134
8.52425
5.72528
5.01664
2.06349
69.633
30.8317
1403.62
163.59
70.9988
41.6084
26.1333
1597.52
659.083
137.606
8.48321
7.36956
32.4105
32.1726
3.17676
7.31579
10.9243
3.71761
15.8967
10.9925
19.7864
9.66051
4.00521
19.2072
9.04473
7.89643
18.4406
0.028091
0.0210636
0.0513445
0.0191767
0.0310065
0.0164234
0.0203103
0.0608497
0.0380562
0.0335406
0.0152244
0.0254847
0.0153494
0.0212601
5.60363
13.2931
4.77077
1.42822
4.10216
1.38278
3.66265
0.325554
0.711298
0.312915
0.248657
0.523794
0.258305
0.499262
0.260243
0.630553
0.286965
0.228379
0.384686
0.210565
0.447104
0.370341
0.939934
0.39118
0.311735
0.594304
0.297756
0.6447
1.01346
0.429492
0.409333
0.325242
0.770178
0.685771
0.339066
2.25322
5.90392
1.99005
1.49555
4.90217
1.64993
4.41599
1.45119
4.61535
1.49636
1.14664
3.04913
1.11665
3.14671
2.35125
8.3255
2.51164
1.89614
5.63229
1.76991
7.46125
12.7309
3.36743
3.20174
2.34958
8.20348
7.74583
2.45118
0.455446
1.37516
0.827384
0.368858
1.22745
0.477545
0.351338
0.430777
1.1534
0.805394
0.326481
0.41714
1.17461
0.335149
0.0146896
0.0259133
0.0129675
0.0301817
0.0274145
0.0120233
0.0136368
8.61857
33.907
7.87124
5.12423
6.98282
5.27828
10.2646
7.12756
7.02064
4.6047
11.0543
4.65781
10.8215
9.02739
9.72001
8.89992
5.28005
6.01243
5.41109
5.60059
6.1547
6.9017
6.39932
4.09672
4.12908
4.10826
4.41362
2.83634
2.55414
2.64287
1.7175
1.8492
1.82769
1.86309
2.31708
2.1901
2.30115
1.65444
1.81495
1.64006
1.71478
2.09658
3.0126
2.86351
1.93558
1.4899
1.64938
2.0116
0.209368
1.27231
1.52379
0.183915
0.209969
0.18454
1.24464
1.36283
0.20262
0.202337
0.17996
1.13191
1.14634
0.180275
0.201353
1.29807
0.200226
0.177691
1.13345
0.179055
1.09022
9.70073
1.7463
1.8767
1.88363
9.24969
9.71221
1.75373
9.28117
2.86985
2.91726
2.62838
8.92689
9.02319
2.58833
1.91092
9.18117
9.46545
1.76118
9.53616
1.7778
1.89178
8.44297
2.50756
2.49478
2.31719
8.5793
8.53285
2.32916
1.79385
9.12631
9.08535
1.68553
9.14345
1.78766
1.69375
1.83
9.25646
1.74044
9.1498
9.2111
1.84126
1.73016
4.38326
1.37812
1.31793
1.1576
3.39821
1.2211
3.36146
1.32913
5.60622
1.36691
1.1697
4.52186
1.13531
4.2041
0.0379574
0.202992
0.205624
0.215535
0.0377608
0.0386733
0.211335
0.220372
0.0387987
0.219426
0.222532
0.0381246
0.220283
0.0392505
0.220292
0.0372636
0.0368825
0.203203
0.213627
0.0387006
0.213573
0.143107
0.0271478
0.139012
0.123707
0.0256133
0.12644
0.0246705
0.154266
0.0256449
0.134641
0.121087
0.0259839
0.13951
0.023426
0.107048
0.0236746
0.109415
0.0195382
0.123551
0.0213177
0.0956448
9.50808
10.2633
10.6229
9.34091
20.3567
11.525
21.9662
12.8171
0.109156
0.0233002
0.0206153
0.102079
0.11181
0.0224222
0.0982323
0.00520555
0.573064
0.00612013
0.00574506
0.471733
0.446571
0.00500514
0.00443411
0.700983
0.00557961
0.00540945
0.517674
0.00444619
0.547429
7.87399
2.37833
2.33031
2.16798
8.0159
7.97948
2.21063
1.73087
9.01768
1.65275
8.90953
1.75201
8.95601
1.63372
1.71095
8.71149
1.64915
8.69942
8.74823
1.74794
1.61626
6.97303
1.9772
1.95089
1.84646
7.16886
7.13146
1.86893
1.59102
7.28488
7.47314
1.50114
1.53143
7.45534
1.56052
1.56292
7.77993
1.5078
7.82131
1.50456
7.76937
1.56989
0.0583726
1.32098
0.0471228
0.0421694
1.27293
0.051323
1.01196
0.139238
0.0277879
0.132764
0.116958
0.0259195
0.122636
0.0252342
79.5009
20.8236
19.4107
0.0263403
0.116916
0.122637
0.108476
0.0232608
0.0239815
0.10385
0.09842
0.0215048
0.0212522
0.100013
0.0221275
0.0964252
0.100185
10.2945
9.54422
9.57239
10.1059
0.105112
0.0236807
0.021698
0.104616
0.10927
0.0231599
0.104118
9.03635
9.63072
9.70308
9.11473
9.91656
9.06058
8.98299
9.63051
0.0826021
0.0189805
0.0871895
0.113013
0.0181723
0.109495
0.0185514
0.0809102
0.0189804
0.085617
0.0861228
0.0177942
0.0801591
0.0181176
9.18015
8.97949
9.07505
9.07616
9.06272
9.12705
9.01223
9.22528
7.21072
1.73612
1.9264
1.82529
6.32347
7.18141
1.66369
1.48864
7.08711
1.45231
7.06583
1.47526
1.4976
7.002
1.79454
7.24184
1.98036
7.79088
1.9895
7.46629
1.77277
5.73415
1.48359
1.46298
1.48228
6.03416
6.011
1.48057
1.9353
8.52901
1.6436
5.47038
1.93078
1.65026
8.46947
2.19645
11.0767
1.96526
8.43983
1.91561
11.0234
2.24789
0.0723124
0.0175451
0.0763415
0.103195
0.0167233
0.0980102
0.0174332
8.60836
8.63996
8.76645
8.7401
8.91354
8.93945
8.81557
9.06224
8.5837
7.52229
8.27871
8.33643
8.07763
8.02798
7.83633
7.98413
2.66404
12.31
2.34475
7.68533
2.66596
2.32378
11.6608
3.16934
16.3926
2.76088
11.5687
2.70926
16.9914
3.27079
6.01417
5.07154
5.04694
5.73912
0.0634238
1.32172
0.016698
0.0748432
1.52109
0.0599286
0.0172187
0.0713496
7.61416
0.0193398
0.0809008
5.44699
0.0748885
0.0187349
4.67501
7.41008
3.78783
3.34262
0.0167729
0.00163926
0.0151149
0.00792865
0.00095256
0.00856482
0.00093408
0.0116903
0.00155842
0.013289
0.00705866
0.000884423
0.00638736
0.000908932
0.0751872
8.43713
0.0181026
0.0602987
8.022
0.0918788
0.0161969
0.0638098
8.17558
0.0141551
0.0567372
8.03119
0.0586331
0.0145562
6.67492
5.83459
3.73994
4.12209
0.00915881
0.0059166
0.0140773
0.0127126
0.00567792
0.0105447
0.00572287
0.0258712
0.00646006
0.0205664
0.0152697
0.00611584
0.0179819
0.00588772
0.0669157
6.15049
0.00558755
0.0231098
0.0456152
8.09827
0.00650739
0.0976986
10.2025
0.00838766
0.0249881
8.70599
0.131312
0.00737467
0.00311575
0.00185313
0.00500733
0.00102802
0.00304764
0.00101196
0.00181304
0.003128
0.00214524
0.00229581
0.000788631
0.00106899
0.000770956
0.00111489
0.0017839
0.000577443
0.00058196
0.000553645
0.00057041
0.000577026
0.000552822
0.00198731
0.00250493
0.00183403
0.000731365
0.0010116
0.000742404
0.000986378
74.9808
21.1594
4.76367
7.69811
0.102638
0.0243297
0.134347
0.0394365
0.0131969
0.0357647
0.0137896
0.184216
0.0266056
0.146738
0.0435401
0.0158335
0.0481111
0.0150909
0.0316612
0.0138426
0.0132922
0.0250788
0.0330454
0.0135863
0.024571
0.964968
0.656466
0.926819
0.68563
0.0289989
0.0122292
0.0122113
0.022095
0.027318
0.0124854
0.0226841
1.05306
0.752499
1.0516
0.754762
0.000861879
0.000580629
0.000587099
0.000544475
0.000572899
0.000577256
0.00054396
0.000604091
0.000939165
0.000597282
0.000545869
0.000586656
0.000582788
0.000546502
0.0115801
0.00384408
0.0111076
0.0108557
0.00379044
0.0112889
0.00398829
0.00279196
0.0197997
0.00927782
0.00918284
0.00322193
0.00284451
0.0210116
0.00887678
0.00331658
0.0227332
0.00294884
0.00289504
0.0218417
0.00852466
0.0105012
0.00397226
0.00431851
0.0107004
0.0109902
0.004144
0.0101772
0.0264845
0.00331708
0.0341909
0.0384953
0.00279035
0.0282116
0.00349926
0.0218352
0.00231078
0.0188083
0.0199512
0.00264444
0.0234406
0.00236364
0.0199039
0.0025456
0.00175664
0.0209026
0.0238982
0.00224257
0.0162527
2.46754
2.88678
0.0405189
0.00256287
0.00229104
0.0191835
0.0275543
0.00334533
0.031471
0.000600548
0.000703931
0.000590234
0.000551628
0.000584415
0.000553562
0.000579672
0.000569571
0.000665532
0.000577081
0.000548384
0.000567359
0.000546603
0.000572659
1.94019
1.85656
1.54216
1.61141
0.010318
0.00807664
0.0108812
0.00934305
0.00836095
0.00926977
0.00839547
0.0136727
0.00928829
0.0127786
0.0108972
0.00975453
0.0111695
0.00968414
0.353647
0.219187
0.332988
0.233004
0.403519
0.283249
0.267241
0.427319
0.000561703
0.000635705
0.000557509
0.000541708
0.000562719
0.000542494
0.000560239
0.000551195
0.000619529
0.000553325
0.000540495
0.00055541
0.000557221
0.000540089
0.63601
0.201594
0.658257
3.19202
0.268878
0.27298
2.91067
5.13474
0.322845
4.48192
1.58529
0.395617
1.60879
0.395576
2.16791
0.327152
1.91619
0.338431
2.00432
2.21075
0.388494
2.61696
2.54835
0.465466
0.505819
2.50761
0.495326
2.51724
5.21885
2.50599
7.66403
6.45181
1.58266
4.17621
2.18042
0.72472
0.401943
1.13994
0.980656
0.761006
1.39245
0.544093
1.52083
1.17745
3.57522
1.39199
0.766528
0.66691
1.9386
0.126836
0.420797
0.202104
0.163531
0.206941
0.392831
0.108779
13.5692
6.22929
3.69399
3.11852
2.12542
8.51306
3.97492
7.7188
0.523042
1.04002
0.496664
0.285554
0.556491
0.806167
0.529425
0.490692
0.785428
1.30891
0.825508
0.326571
0.635933
0.322083
0.219996
0.486511
0.814161
0.877878
0.164408
0.494873
0.22861
14.5942
38.086
16.9603
1.40248
3.29307
6.0376
5.71205
1.944
2.01764
1.29398
0.334649
0.721794
0.595581
0.767658
0.788221
1.10692
0.621136
0.909502
0.524025
0.94148
0.813016
0.479284
0.501309
0.717167
10.5049
7.6672
7.47
10.103
0.461908
0.246605
0.217845
0.162979
0.350383
0.292184
0.179297
0.226249
0.296465
0.447403
0.231453
0.170364
0.167573
0.288215
0.286522
0.343376
0.465997
0.435765
0.212682
0.314217
0.271904
1.6391
5.17765
4.13834
1.90809
1.10744
0.973603
2.12051
7.35279
2.69412
7.79458
2.71603
1.32067
2.72498
1.41301
0.23377
1.01311
0.956665
0.868884
0.244695
0.893495
0.229142
7.54718
4.19732
1.07344
2.02385
1.99524
2.10205
4.88569
5.88123
5.39019
2.3126
2.19733
2.42109
2.03047
2.02124
1.2336
0.513401
0.300742
0.334857
3.23046
0.880806
5.13858
8.4565
2.35044
4.97158
3.67469
21.8776
4.993
40.6929
14.2067
8.88743
0.623458
1.64359
1.73122
0.58203
1.57122
1.23786
1.28081
2.39847
4.77821
1.99726
5.96623
2.21503
1.83689
1.63572
1.06114
3.53438
3.03293
3.16704
1.24156
2.73316
2.68889
56.9182
41.3887
15.4504
17.8663
5.35791
2.7061
6.98887
26.0861
3.79733
1.89958
3.76203
5.16776
1.61952
1.58706
0.0444109
0.00546403
0.00721962
0.00614936
0.00968335
0.00216913
0.00210904
0.0561059
0.171355
0.0169771
0.0439135
0.0129061
0.00547322
0.00964008
4.06335
4.09911
4.72792
3.49344
4.79565
3.32306
5.46079
3.76164
5.06941
3.66697
3.06869
5.02505
3.1849
3.52967
8.9228
5.55951
4.33629
6.05031
6.07104
5.93018
7.81624
12.8075
5.34278
3.23087
4.27121
7.53768
3.43316
5.78735
5.23889
41.8258
32.0572
18.6704
4.58468
23.8462
4.29153
5.67722
152.305
51.9059
5.6449
42.8462
5.06166
0.633237
0.0985852
0.60432
0.0897958
0.097679
0.56489
0.682272
0.598209
0.0921655
0.0877976
0.518004
0.0950299
0.538813
0.572375
0.604877
0.0935143
0.568624
0.520489
0.086396
0.0861536
0.551707
9.27699
7.85731
7.23736
0.0916937
0.509584
0.541076
0.495405
0.0813459
0.0846027
0.465674
3.72951
5.14407
3.09569
3.28622
2.958
3.92431
4.67744
4.02399
6.4827
2.88869
5.24988
3.14965
3.62367
9.32308
0.35981
0.0725671
0.367311
0.334177
0.0665274
0.066517
0.325875
9.80481
8.15329
8.05687
0.0734742
0.438374
0.3887
0.355047
0.072411
0.0676569
0.401291
2.67414
3.47348
2.38954
2.6385
2.2096
2.91502
3.49651
2.58561
0.0036081
0.00339913
0.00135232
0.221852
0.00158145
0.172063
3.67922
0.0420352
0.0416077
0.0296846
0.25149
0.0332335
0.0740082
7.39541
7.30245
6.54271
6.58436
0.0346855
0.00728214
0.035866
0.0333697
0.00718466
0.00763983
0.0295597
0.0479691
0.00777951
0.0407652
0.0391076
0.00974495
0.0466957
0.00851965
0.367479
11.6836
0.0414494
0.0139196
0.0154445
11.5812
0.319587
0.412873
11.5152
0.018601
0.0440543
0.457917
0.0168895
11.5589
16.9181
21.5637
0.25702
0.0408814
0.219999
0.0699124
0.0291447
0.0251839
0.0987
0.213912
0.0357734
0.201622
0.0580069
0.0214904
0.0642965
0.0206193
0.033726
0.0185848
0.0265472
0.0186359
0.0354889
0.0183434
0.0260161
2.14133
1.22351
1.70475
1.63294
1.37705
1.06296
1.40777
1.03996
0.0431058
0.025145
0.0240285
0.0471919
0.0230917
0.0342772
0.0633838
0.854754
0.583412
0.577032
0.843265
0.533996
0.785311
0.791288
0.528767
7.78379
9.10665
0.871403
1.30625
50.1114
2.97714
0.491817
0.752927
0.737262
0.50338
3.79542
3.1952
2.52753
3.03352
0.0243361
0.0137012
0.0265974
0.0174336
0.0133074
0.0134369
0.016864
0.0438019
0.0186169
0.033621
0.0237291
0.0191617
0.0271974
0.0190208
0.501808
0.333179
0.336473
0.496416
0.751041
0.853794
1.14133
0.518405
1.77519
3.70133
0.410247
0.551641
1.30116
4.81853
0.0136256
0.00220289
0.0736094
0.000853991
0.000891698
0.01095
0.0914568
0.812873
0.263533
1.68087
0.268943
0.625811
2.16444
0.0726576
0.222451
3.11014
1.09957
0.0717176
1.10794
0.226064
0.00544219
0.00139577
0.0453725
0.00077452
0.000753834
0.00670992
0.0372017
0.120441
5.88574
5.74168
0.936746
1.90564
0.380133
0.321344
0.00055615
0.000589404
0.000551968
0.000612166
0.00372499
0.000536637
430.153
22.3536
980.439
58.2692
19.0334
29.3311
28.8101
0.836278
0.454767
0.0445919
0.0278762
0.901978
0.510134
0.0397793
0.773483
2.91304
0.951078
0.346115
0.821361
1.00707
0.28919
2.13132
3.47845
1.25956
0.503528
2.0131
0.81178
1.39012
120.038
22.013
43.2818
73.2086
7.14964
8.55758
19.7586
0.101438
0.230254
0.0178724
0.011984
0.0130928
0.264169
0.104543
0.0718829
0.0111034
0.0568835
0.00990099
0.011842
0.0650254
0.0702194
2.0449
0.81271
3.22493
0.167866
0.148601
0.0853659
0.348632
5.21323
3.80214
12.7783
7.06086
5.14977
3.15951
0.0284053
0.0064797
0.0347068
0.023117
0.00528709
0.00487339
0.0262961
21.0045
27.3538
3.26046
10.6427
2.05349
1.32154
2.31706
12.354
6.89308
4.91179
3.49421
4.93894
6.72987
14.4339
12.0079
4.67401
3.37397
5.82185
4.75982
6.51438
10.4114
0.189362
0.747061
0.629402
0.160939
0.164596
0.750067
0.185033
0.190002
0.734991
0.163941
0.624411
0.16519
0.188616
0.745716
0.719084
0.160004
0.185744
0.187624
0.60197
0.161953
0.726604
0.189199
0.602217
0.726743
0.163099
0.163787
0.188019
0.723463
4.90167
25.314
25.6223
13.5092
3.67446
3.8514
13.5871
6.09255
1.92741
4.89281
1.66831
4.83834
1.94117
6.17594
1.88003
5.8244
7.02309
7.29202
1.61567
6.23494
1.90996
4.30125
25.1827
16.5502
13.5872
4.02941
3.60761
15.5482
6.42217
1.64446
1.97771
5.02977
5.04961
1.9261
6.40047
0.177879
0.733824
0.632777
0.153864
0.155362
0.740244
0.176385
0.180502
0.777461
0.159063
0.643316
0.157771
0.754624
0.182195
0.185276
0.784757
0.666249
0.16082
0.785818
0.161543
0.184427
0.184027
0.783575
0.160123
0.665576
0.785165
0.160612
0.183526
0.188129
0.782266
0.159095
0.672443
0.182692
0.167944
0.796831
7.25724
230.141
5.78295
7.3332
62.2391
6.69511
52.0142
5.59777
5.56765
53.3859
0.638056
0.0871889
0.0786036
0.510949
0.560843
0.0817009
0.61715
1.48016
0.193771
0.200634
0.176315
1.16346
0.169802
1.22383
1.18804
0.20186
0.207735
0.181063
1.06455
0.176048
0.991862
8.65425
15.7438
6.6349
6.41172
33.7498
0.137527
0.0301926
0.16361
0.150664
0.0235104
0.127935
0.0275886
0.280979
0.0413778
0.223566
0.204038
0.0494351
0.2556
0.0376311
0.356163
0.0758335
0.351577
0.32236
0.0682577
0.327572
0.0688566
8.04816
5.89475
5.388
0.0750977
0.322358
0.344435
0.31436
0.0618272
0.0680254
0.293096
0.063929
0.137086
0.0563221
0.473565
0.0569012
0.0679572
0.15565
0.105316
0.185973
0.180873
1.14856
0.0858161
0.250526
0.227693
1.24671
1.2801
0.234079
0.255897
1.50912
0.282456
1.15213
0.270742
0.197492
0.41865
0.121861
0.110867
0.297284
0.359346
0.0282142
0.23174
0.156074
0.0374222
0.0266511
0.0358303
0.244302
0.262538
0.0512124
0.0458719
0.0434699
0.334058
0.268866
0.0471653
0.131679
0.0108431
0.021116
0.0261538
0.0403028
0.206439
0.00817759
0.0304928
0.204463
0.0638648
0.00605857
0.214262
0.0273559
0.0100385
17.6169
17.4175
0.826734
0.256061
1.45613
0.714087
0.129976
0.14693
0.537852
5.52329
1.19984
4.80404
3.54706
1.29273
4.14502
1.15987
0.00368645
0.12225
0.00813995
0.00846662
0.0225346
0.0977183
0.00332592
0.146616
0.00368228
0.00594388
0.00537737
0.0236278
0.0779207
0.0033872
0.00545829
0.0220423
0.0416441
0.00276316
0.00466682
0.0705516
0.00310446
0.00754275
0.0190299
0.0457635
0.00274633
0.00668427
0.0666454
0.00291523
8.46956
1.17364
1.14519
7.61444
6.78509
5.96991
1.0614
18.0131
18.2302
0.377751
0.258874
1.42996
1.23925
0.0600206
0.183055
0.346023
2.10872
6.69471
8.59514
7.08038
1.5968
2.32501
5.19669
0.715509
0.173347
2.97024
2.23871
0.0624779
0.556964
0.136401
0.00606015
0.100245
0.0129723
0.00869472
0.0206194
0.0609869
0.00473044
0.0343469
0.263494
0.0341579
0.0258982
0.199916
0.0291844
0.234712
0.00827903
0.106002
0.00387049
0.015253
0.0151656
0.0495316
0.00326017
0.00450748
0.0154603
0.011888
0.00232101
0.0222462
0.00259812
0.00353219
2.13274
1.39617
1.38377
1.41686
5.60638
5.55453
1.4275
0.0516107
0.247366
0.0478886
0.00880648
0.0094448
0.26191
0.0484703
0.0546137
0.287545
0.0106792
0.0510721
0.0101114
0.276166
0.0570877
2.24357
1.4416
1.45576
1.49224
5.73608
5.79562
1.47952
0.422407
0.00937223
0.077007
0.074408
0.0899528
0.368204
0.0168727
0.0689012
0.318823
0.0797701
0.0133031
0.341607
0.0641319
0.0151409
0.0150184
0.0378219
0.0151929
0.0153275
0.0300778
0.0153604
0.0300349
0.976178
0.290168
0.877565
0.704741
0.294475
0.768319
0.289756
13.7196
13.7895
0.332537
0.839134
0.662559
0.594401
0.367773
0.351952
0.770738
0.00195449
0.00136807
0.00722285
0.00534416
0.00809082
0.00186467
0.00140914
0.00213254
0.0112071
0.00152314
0.00590548
0.00234058
0.00946187
0.00147795
0.0193074
0.0300146
0.0190405
0.0202274
0.0303936
0.0203193
0.0269057
0.0199753
0.0285347
0.0189271
0.0201545
0.0389833
0.0207207
0.026016
13.4218
13.4253
0.296535
0.532579
0.513513
0.427761
0.304832
0.306305
0.441231
18.4765
4.20517
2.15723
0.260348
0.029407
0.0181304
0.00403127
0.0157945
0.383388
0.0220923
0.232942
0.0146752
0.0036455
0.0140536
0.0143369
0.0166715
0.185179
0.00168628
0.00127521
0.00671111
0.00402323
0.00174056
0.00649862
0.00124977
0.00160063
0.00504607
0.00117025
0.00381603
0.0015189
0.00599222
0.00120586
6.38576
8.12147
0.547185
0.0628333
0.0102698
0.042068
0.0389562
0.49171
0.0444715
0.77363
0.221571
0.0131937
0.0619498
6.19341
0.092785
0.0567666
1.65996
1.08892
1.09258
1.11266
4.4442
4.45458
1.11045
0.0402337
0.224153
0.00745515
0.0332057
0.00672568
0.0434046
0.209063
0.0376576
0.18238
0.00533903
0.029807
0.00607348
0.195979
0.0351692
1.60297
1.05663
1.056
1.07528
4.34546
4.3581
1.07392
0.0323082
0.159823
0.012354
0.00253683
0.173472
0.00312941
0.030158
0.0286935
0.159958
0.00383011
0.0136109
0.14945
0.0305625
0.00342126
5.86327
2.24034
1.35427
0.361411
1.66153
0.731305
0.553998
0.004377
0.0192043
0.00305187
0.00129539
0.00128908
0.0189015
0.00436987
0.00455462
0.0211281
0.0013526
0.00309633
0.001317
0.0194873
0.0050307
1.18472
0.761952
0.880963
0.90785
2.38908
3.04242
0.76484
0.0217636
0.139174
0.00730237
0.00228893
0.111762
0.026638
0.00217337
0.013124
0.0305408
0.00158408
0.00595238
0.0621814
0.00714005
0.00186761
10.5509
1.14993
1.25626
0.226354
0.0265242
0.00181604
0.00559703
0.00592878
0.0329437
0.169146
0.529822
0.0073075
0.00221974
0.00650641
0.00748363
0.123056
0.0631812
9.84527
1.09215
1.08353
0.0628345
0.0175672
0.00128279
0.0041104
0.0101678
0.107554
0.00299387
0.0308775
0.00543723
0.00114891
0.00229108
0.00562389
0.00235186
0.0287741
7.01892
0.622456
0.585128
0.00508655
0.00196068
0.00140934
0.000866249
0.00133814
0.00911559
0.00155108
8.58487
0.777014
0.889413
0.0145067
0.00265093
0.000966508
0.0016064
0.00304496
0.0129796
0.00169153
0.0213237
0.00494263
0.00103416
0.00211046
0.0258334
0.00423534
0.00195281
3.55894
0.828752
0.863515
0.1746
0.345165
0.369845
0.168397
3.22791
0.732696
0.727311
0.123541
0.28937
0.285757
0.1261
2.28536
0.482339
0.467695
0.0551996
0.151289
0.144507
0.0572665
2.78048
0.539113
0.582171
0.0829281
0.192769
0.213937
0.0788748
3.73236
0.250041
0.335612
2.95897
0.21987
0.208404
0.157139
0.214692
0.12687
0.253655
0.111254
0.0467708
0.00902119
0.104001
0.00168184
0.000869282
0.000897001
0.00138496
0.0259316
0.00250232
0.0191041
0.0017569
0.000972341
0.00207468
0.000919813
0.375855
0.825521
0.224375
0.407499
0.371213
0.00684936
0.0391589
0.0597488
0.00691663
0.00134676
0.00157129
0.004038
1.34625
0.276088
0.315691
0.0531698
0.100016
0.122048
0.0482725
1.0715
0.252033
0.244921
0.032274
0.0815604
0.0779283
0.0336336
0.034707
0.00289901
0.0254003
0.00107011
0.000751681
0.00117154
0.000732749
0.0576143
1.24226
0.0252537
0.0468459
0.125654
0.022434
0.114288
0.2164
0.150103
0.0208489
0.0172304
0.0264485
0.0160506
0.0503775
0.0296006
0.0476925
0.00769263
0.00713903
0.00588671
0.0080792
3.41858
1.65818
5.67443
0.804094
0.248569
0.370348
0.562332
0.0325718
0.00779347
0.0382341
0.0437777
0.006093
0.0350693
0.00682675
0.0455995
0.00856448
0.0431766
0.0506027
0.00822147
0.0548519
0.00771585
0.461897
0.36865
0.0338146
0.172625
0.0371315
0.0156226
0.0160939
0.131588
0.416387
0.175197
0.391078
0.69427
9.15223
0.243007
31.7668
3.86789
9.96283
11.9356
0.297293
0.0945376
0.174176
0.366245
0.126569
0.475574
0.191392
9.0495
25.1603
90.8236
10.7952
8.14982
29.1943
0.361324
0.254339
0.168044
0.846129
0.162194
0.411698
0.73277
23.3113
41.1304
23.0794
8.5916
4.62174
4.05106
12.9846
1.7261
12.343
5.12595
1.79549
0.166471
0.197659
0.383632
0.958944
0.173588
0.317267
0.448638
25.0084
10.7103
2.94393
3.49808
0.817922
6.15849
1.13582
2.17933
10.8307
6.57215
15.1536
4.19306
1.77394
16.7932
4.28342
2.22032
0.651632
0.415681
0.602086
0.517306
0.341777
0.848433
0.887287
0.470724
0.21502
1.4327
0.458715
0.283695
1.39139
0.964878
0.212004
0.310315
0.166113
0.574062
0.188704
0.207522
0.354308
0.158301
0.664825
0.23769
0.453687
0.217566
0.393915
0.16146
0.16751
0.893616
0.254623
0.495092
0.497609
0.166319
0.259423
1.05783
0.596273
0.281069
0.709372
0.519243
0.720477
1.76753
0.445176
0.341203
0.173932
1.02535
0.180858
0.442947
1.08763
0.621002
0.964197
0.405812
0.395149
0.510352
1.08057
0.420006
3.94959
11.3963
5.75404
1.69762
4.08514
1.37412
3.70059
18.8347
8.83388
2.05157
17.0339
5.11362
5.03939
2.50226
1.11897
0.202251
0.607675
0.606139
0.337434
1.21204
0.209453
13.8738
29.7043
18.8778
3.7378
4.10288
3.86432
4.02643
0.658276
1.29903
0.356251
0.237193
1.22332
0.720513
0.220155
0.271862
0.268766
1.55471
1.01877
0.578995
0.554681
0.874566
14.2272
4.89545
3.59361
3.05868
3.26873
0.406913
0.260192
0.150281
0.183099
0.289268
0.349774
0.167188
3.10293
6.00296
7.27675
12.0164
3.737
17.0671
14.5405
15.4671
0.266532
0.39042
0.603054
0.712886
0.218682
0.301447
0.450588
0.748685
0.327297
0.218387
0.558016
0.297329
0.46571
0.936105
22.8975
10.4848
15.3164
6.61704
5.48244
49.9766
30.0266
14.5143
14.3162
13.7351
1.1337
0.357308
0.559375
0.281664
0.923743
0.403662
0.665826
4.78628
3.19015
2.47365
2.75979
2.40272
3.00314
5.85094
12.8152
6.21174
7.51947
5.46256
10.1277
9.02316
2.79552
3.20881
3.14657
6.06889
2.8032
8.44867
4.29375
1.281
1.41759
1.42634
3.85158
4.11612
1.30106
1.44402
2.83248
3.52528
1.27541
1.32607
3.91726
1.35546
3.13128
1.15606
1.09269
1.07826
3.35961
3.16507
1.15414
1.05345
3.25433
1.15088
2.68968
1.03528
2.98303
1.19004
7.15817
2.22719
6.82427
4.74653
1.70206
1.56526
5.11282
1.28411
3.78154
3.62634
3.57764
1.43085
3.70332
1.30482
1.38733
4.01751
4.26508
2.71247
0.974083
1.01863
2.567
1.68244
4.03888
4.90927
4.71183
1.51133
3.89958
1.68825
6.14179
3.44819
3.15755
2.86194
3.35652
6.82273
3.21205
0.742252
1.13898
1.17383
1.05951
1.15165
0.684527
0.945198
0.337456
0.108344
0.108863
0.10187
0.317048
0.318539
0.10303
0.0952358
0.317145
0.0952726
0.310393
0.304147
0.0982016
0.0910994
0.553787
0.118514
0.140787
0.13827
0.391881
0.567199
0.114572
0.158403
0.864447
0.181723
0.7007
0.18865
0.703493
0.149007
0.132604
0.387154
0.104458
0.560091
0.55698
0.109703
0.125013
8.78382
3.1326
11.3101
6.04846
1.87307
2.133
7.32353
4.89904
34.1497
30.2848
12.4598
3.54572
3.27494
13.5861
1.60149
0.875798
2.06226
1.41456
2.39748
10.0739
0.883204
2.21408
0.821491
33.5931
2.4243
0.865655
1.26574
0.784622
2.3205
1.23303
29.6492
2.39335
9.62199
0.615902
2.27209
0.722319
7.24124
2.52203
0.754598
0.303466
0.600514
0.249369
0.455952
0.295695
0.607034
0.254576
0.312079
0.674151
0.470646
0.264943
0.626913
0.261063
0.317273
7.74393
80.6068
5.16711
6.63043
39.1264
7.40882
93.9318
18.0837
3.81638
14.5091
4.53944
1.88412
0.306725
0.323955
1.30198
1.61557
0.334028
1.51475
1.94367
0.49483
1.84932
0.362005
6.11503
1.51437
0.3722
1.36828
4.383
1.33704
1.03619
2.85707
1.06054
2.88726
29.4283
25.3237
28.1607
11.576
12.0624
2.81344
3.51361
1.26454
1.91496
3.10045
1.89116
2.7486
10.7292
5.63037
6.18347
18.6398
10.9354
9.63022
80.2819
38.9702
103.331
0.0887678
0.261068
0.299432
0.307887
0.0772425
0.0849426
0.261571
10.0257
9.96307
9.07462
8.97377
1.55761
2.37346
1.24277
1.24206
2.14745
1.53613
1.22442
1.71932
3.71443
1.39238
1.7484
2.51688
2.3608
1.30879
4.94634
24.728
4.70732
3.12293
8.47702
8.57473
3.20399
3.47484
14.1977
3.60775
2.64852
8.70937
2.54325
9.20018
6.56066
6.62953
5.13739
22.1994
4.96231
10.0656
10.0076
8.45952
8.71617
1.08721
2.13713
1.07013
1.51918
1.26123
2.24808
0.930636
5.06564
33.3376
5.22186
3.36826
8.90897
3.26177
9.72698
7.16186
7.14855
4.68796
11.342
4.70237
11.289
1.78777
6.29139
1.98439
1.79577
3.84646
4.64156
1.64508
9.81852
3.19497
3.11696
2.73851
7.37405
7.24108
2.80892
4.74736
20.2918
4.0136
3.29665
12.0356
3.82654
10.2804
9.63244
3.22932
3.2111
2.83868
7.34441
7.28213
2.85018
1.63712
3.8618
1.5333
1.44984
3.39806
3.23094
1.52621
2.54186
4.18167
2.74358
2.42466
3.1707
3.33038
2.4587
10.1364
4.9698
2.78284
2.43076
4.35212
5.47516
3.78764
0.207275
1.18065
0.228712
0.209476
0.902713
0.995044
0.190616
0.238451
1.34755
0.227394
0.212736
1.31788
0.225328
1.13933
5.56616
1.5821
1.37122
1.38009
7.79675
1.58964
5.61211
0.83977
2.70386
0.751947
3.0985
0.760734
0.830875
3.11059
1.41349
7.80501
1.60336
5.77318
1.61548
1.4065
5.74697
8.91913
2.8118
2.73973
2.48842
8.81165
2.5421
8.75472
1.876
9.4366
1.7528
9.07215
1.75194
1.87629
9.46506
1.86232
9.3959
1.74638
9.05888
1.87389
1.73958
9.40339
0.827145
2.68199
0.748427
3.10369
0.748918
0.82642
3.13253
1.41811
6.09386
1.60459
7.9103
1.60273
1.42081
6.07387
1.40386
1.59296
5.81343
7.85077
1.40121
1.59097
5.91673
8.66188
2.54005
2.56449
2.38158
8.6789
2.35862
8.74749
1.89211
9.41117
1.76022
9.11943
1.88183
1.77395
9.42071
1.88874
9.33654
1.76366
9.33374
1.86622
1.78506
9.39927
1.42154
7.3916
8.65453
1.57268
1.5815
7.41419
1.41195
1.4634
1.63002
8.7224
7.54793
1.61962
1.47331
7.50177
1.45728
6.17372
1.61442
8.15438
1.43247
1.63396
6.54204
0.77257
2.4991
0.711425
2.86477
0.697892
0.776569
2.88514
1.51157
1.65194
8.90093
7.62127
1.67141
1.4939
7.67436
0.148047
0.0300415
0.167266
0.161631
0.0266947
0.143478
0.0294514
0.209271
0.0328883
0.1888
0.18351
0.035396
0.205084
0.0323626
0.172857
0.0341494
0.028985
0.183262
0.194277
0.0311285
0.162007
19.8277
9.94989
13.6911
15.0265
13.3334
15.5902
21.4006
0.15206
0.025703
0.0263239
0.127429
0.13553
0.0282996
0.142431
0.19917
0.0369002
0.202249
0.20584
0.0352813
0.0362466
0.199813
0.200786
0.0369414
0.202339
0.208001
0.0368453
0.207892
0.0367139
0.203008
0.0358277
0.193249
0.0322814
0.20717
0.0350531
0.18474
0.19668
0.0327545
0.0310404
0.16756
0.0338053
0.177446
0.186961
0.145316
0.0275784
0.1732
0.0295402
0.152621
0.164745
0.0268248
18.388
8.92508
12.3841
14.8716
11.9161
14.9051
18.8799
49.5485
41.6281
0.124384
0.108304
0.021695
0.0229424
0.112971
0.0236262
0.11873
0.129009
0.0250838
0.121089
0.0223759
0.116677
0.134633
0.0244587
0.139217
0.028359
0.148288
0.0249697
0.157434
0.0258089
0.131919
0.198041
0.037272
0.197118
0.188462
0.0351665
0.193548
0.0344959
0.185794
0.0359812
0.192484
0.179866
0.031582
0.168665
0.0332125
0.161179
0.0287885
0.132214
0.02768
0.149943
0.0304436
0.142257
85.9208
12.8302
26.3063
21.522
0.170182
0.0324682
0.0288597
0.157014
0.17615
0.0317265
0.15081
0.114586
0.105223
0.0188058
0.0181664
0.0975632
0.120203
0.0176018
10.261
10.2868
9.53888
10.8714
7.78355
6.99367
9.34467
6.23666
6.21162
9.07931
7.75008
0.111521
0.114545
0.0166358
0.019476
0.104569
0.0178222
0.121212
12.0689
10.4381
11.7451
10.9519
0.107552
0.0176218
0.105794
0.015407
0.100732
0.1132
0.0165296
0.121212
0.0192425
0.115074
0.0208907
0.105398
0.0189829
0.128863
0.121909
0.119809
0.0223274
0.0253517
0.127138
0.0234663
0.127054
20.0398
116.408
36.2076
33.3758
0.110888
0.103707
0.0207341
0.0227494
0.10202
0.113173
0.0224196
8.38454
7.64485
9.8443
6.43295
6.73706
10.0162
7.95313
13.4716
11.0754
13.993
11.4277
0.111917
0.0208123
0.020223
0.110684
0.10309
0.0218126
0.118155
0.121474
0.0263356
0.139128
0.0246843
0.12483
0.133998
0.0242332
7.73652
2.37811
2.32965
2.17194
7.95255
2.21361
7.83206
1.81268
8.66689
1.6543
8.78491
1.70741
1.75211
8.94287
1.75943
8.60368
1.67144
8.44931
1.77285
1.66029
8.48984
1.36774
7.31042
1.54221
8.491
1.52448
1.38336
7.26743
0.182692
1.39616
0.164372
3.35228
0.159145
0.188608
3.48733
1.35509
1.53928
8.28664
7.04542
1.50965
1.37982
7.08439
1.42545
6.99144
1.54678
8.28493
1.59079
1.39305
7.057
0.201062
1.38228
0.177316
3.31599
0.175608
0.203561
3.21441
1.38926
1.55921
8.05433
6.96913
1.54934
1.39771
6.88877
7.09491
1.9942
1.99115
1.89116
7.21745
1.88912
7.22976
1.65508
8.42991
1.59921
8.2831
1.68915
1.57203
8.30378
1.59464
7.80489
1.52615
7.86764
1.5889
1.5317
7.8224
1.3569
6.97537
1.50185
8.00468
1.36118
1.48348
7.12722
0.201428
1.75961
0.178445
2.14815
0.178534
0.200878
2.18887
1.37167
1.46063
7.80291
7.37495
1.36681
1.4659
7.39389
24.4151
20.6625
10.6411
11.6698
0.0997514
0.0232692
0.101638
0.0928691
0.021597
0.0214842
0.0929979
0.109886
0.0232865
0.105053
0.0948434
0.0218888
0.0982859
0.0214282
0.0918513
0.0203343
0.097626
0.0199738
0.0934674
0.0199916
0.095
8.9721
8.72473
8.96919
8.69373
9.02131
9.18058
9.13103
9.0771
0.091463
0.0205873
0.0199943
0.0960517
0.020302
0.0951653
0.092216
0.172381
0.02288
0.0219956
0.111624
0.114065
0.0232694
0.163161
10.7562
9.75015
10.1722
10.4428
1.69462
5.48071
1.34483
11.6958
1.41962
15.4278
1.59216
0.137355
0.022354
0.121822
0.0222433
0.122434
0.135931
0.0227788
9.94895
9.71811
9.32335
10.2354
0.16964
0.0215558
0.108708
0.0218891
0.152993
0.0224469
0.146004
9.73309
8.9217
9.14556
9.51509
1.45141
4.90487
1.28237
12.1367
1.23679
10.5545
1.50473
9.80715
9.35298
9.25373
9.90969
8.85982
8.98645
8.93976
8.81054
0.094291
0.0216309
0.090984
0.0873958
0.020662
0.0892418
0.0201971
0.0914463
0.0207961
0.089016
0.0867604
0.019819
0.0892346
0.0196703
0.0867611
0.0197231
0.122105
0.018863
0.111674
0.0192297
0.10874
9.16518
8.7826
8.74314
9.12194
8.98565
8.91232
8.95417
8.93958
0.0868995
0.0198909
0.0193836
0.120519
0.0880795
0.0196147
0.114396
9.56539
8.95201
9.48946
9.18708
0.955747
3.08242
4.09395
0.775822
0.835488
4.79598
0.882611
8.37259
8.80985
8.32603
8.83191
7.22045
1.7519
1.92134
1.82465
6.37197
1.67786
7.17974
2.45935
10.2992
2.344
10.7683
2.32711
2.53966
9.65438
2.01471
7.40162
2.0485
8.55246
2.20332
1.84905
7.90063
6.01248
1.53894
1.58791
1.55815
6.12452
1.51819
6.22445
2.74101
11.0574
2.40163
12.4456
2.4899
2.61955
12.1134
2.3582
11.2042
2.01901
9.46305
2.08184
2.30101
11.4926
8.93002
8.62102
8.75006
9.00306
4.48755
162.767
32.7549
4.16615
3.82171
5.36223
7.2011
6.47827
5.54138
7.80645
8.11468
8.24764
8.22327
8.0858
4.01106
42.8027
18.9184
3.472
3.33485
37.9433
4.29779
3.47821
16.7693
2.85253
12.3259
2.92799
3.39549
17.3234
6.24677
6.29004
5.92326
5.89074
0.0652673
8.48072
0.066707
0.0155483
8.15013
0.0162623
0.0618791
0.0694713
7.76614
0.0185945
0.0733374
0.0731234
8.09301
0.0173638
4.26935
4.29749
3.63078
3.41047
0.00870974
0.00134458
0.00918534
0.00546868
0.000812015
0.00530046
0.000852928
0.0105533
0.0013759
0.0097797
0.00568093
0.000867045
0.00595496
0.000859223
0.0603878
8.56889
0.0152439
0.0628526
0.0605233
0.0149244
8.61022
0.0596733
8.28967
0.0142279
0.0626995
0.0585813
0.0146674
8.57537
7.47697
8.22755
4.85466
4.49394
0.0369952
0.0079929
0.0398941
0.0262948
0.00697157
0.0277864
0.00685153
0.0302496
0.00786083
0.0345775
0.0234378
0.00636725
0.0206503
0.00661456
0.232893
11.7076
0.0126818
0.0340914
0.273964
11.4858
0.0113999
0.196565
10.5854
0.00930652
0.031871
0.16303
11.3442
0.0103897
0.00140572
0.00076072
0.00198996
0.00179889
0.000718675
0.00135884
0.000741132
0.0665422
0.520112
0.0337794
0.0593376
0.505836
0.00169876
0.000699034
0.000716054
0.00112939
0.00128619
0.00071642
0.00171352
0.429202
0.031592
0.394488
0.114011
0.0438713
0.327719
1.76234
0.00553249
0.00260408
0.000779847
0.000679319
0.002858
0.00079145
0.00476576
0.007499
0.000946638
0.00695181
0.000703695
0.00365823
0.013537
0.000850009
0.0048157
0.000797377
0.00518909
0.000820303
0.00481783
0.00523046
0.000799053
0.0274031
0.00574488
0.00630382
0.00511194
0.033274
0.00434167
0.000810963
0.0131647
0.00116666
0.00443514
0.000789913
0.0126858
0.00890616
0.000882955
0.000846058
0.00674103
0.00849093
0.000861031
0.00687421
0.00362801
0.00241884
0.000750426
0.000655048
0.0020643
0.00428029
0.000735884
0.0908728
0.0114583
0.0090808
0.016736
0.047208
13.0305
11.6369
0.218361
0.0372447
0.208352
0.0702887
0.0221434
0.0746427
0.0213304
0.175079
0.034706
0.19827
0.0651216
0.0183614
0.0597217
0.0192511
0.0397563
0.0155959
0.0151886
0.0281633
0.0377508
0.0159232
0.0291181
1.26889
0.990526
1.3549
0.923994
0.0433985
0.0183262
0.0173007
0.033149
0.0455137
0.0179102
0.0321422
1.11541
0.795124
1.10371
0.803312
1.49921
4.0514
0.449654
0.470885
1.43016
4.25477
0.00638073
0.0047442
0.0855248
0.00165955
0.00148061
0.0754159
0.00716544
1.63892
0.515774
4.64549
0.519504
4.66839
1.62705
1.98911
6.12959
0.691975
2.15606
5.62171
0.643846
0.0108858
0.0110541
0.0997598
0.00207459
0.00248434
0.127029
0.00908811
1.74337
0.548467
4.89697
4.94432
0.552689
1.73043
0.0192642
0.00239493
0.0242557
0.0269633
0.00222849
0.00246533
0.0205746
0.0110117
0.00147082
0.010234
0.0103819
0.00158233
0.0111973
0.00146939
0.0100117
0.00155467
0.0106556
0.00143595
0.010958
0.00145327
0.00956394
0.0292838
0.0022372
0.00255995
0.0215659
0.00252766
0.0314243
0.0213044
0.00760138
0.0252259
0.00300589
0.00338006
0.00875141
0.00302797
0.0210901
0.0649346
0.00443297
0.398821
0.001848
0.00238713
0.549636
0.0419481
0.00993853
0.00451558
0.0111225
0.00467017
0.0105391
0.0106295
0.00471629
0.00612191
0.010865
0.00139928
0.00125766
0.00970703
0.00116944
0.00761962
0.00881611
0.00171642
0.221024
0.00125387
0.00112825
0.155938
0.00988094
0.0181398
0.00243141
0.0216189
0.00113653
0.0344582
0.00140367
0.0102703
0.0163052
0.00320798
0.0316843
0.0354197
0.00192471
0.0171305
0.00336003
0.0316663
0.00254356
0.023324
0.0246372
0.00357142
0.0355207
0.00258898
0.0246569
0.00353936
0.00220932
0.0363202
0.0381972
0.00252249
0.0226798
0.0382587
0.00192257
0.00320719
0.0168581
0.0172726
0.00341701
0.039563
2.16139
2.23873
1.86796
1.81005
0.0204224
0.0115902
0.0191011
0.0143548
0.0118499
0.0147534
0.0118066
0.0194881
0.01268
0.0206711
0.0158576
0.0130512
0.015489
0.0130668
0.473166
0.32184
0.317005
0.480747
0.533153
0.350074
0.36316
0.514112
20.362
9.313
0.462554
0.807709
8.23992
0.675407
55.6829
3.55246
2.32285
0.487722
0.419619
0.438234
2.16976
1.83649
1595.43
140.648
116.528
91.7339
803.219
0.573008
0.16233
0.548494
0.68643
0.15788
0.157334
0.729135
5.12416
0.289193
5.06731
1.19299
0.329908
1.37322
0.307498
0.0207331
0.0477896
0.0205262
0.0182605
0.0688327
0.0689001
0.0185917
0.0673503
0.0122645
0.0128824
0.0128336
0.0688858
0.0751334
0.0120707
0.0122779
0.0662304
0.0102062
0.077364
0.0779194
0.0110564
0.0118591
0.0161812
0.0797557
0.0785683
0.0149192
0.0777404
0.0143508
0.0165882
2.07286
7.71494
5.15774
4.52383
2.90017
2.12542
8.22243
1432.34
262.486
139.671
806.215
7.20022
30.615
0.466438
0.442053
12.7002
16.0394
0.296054
0.0102797
0.0455694
0.0107273
0.0101443
0.0415552
0.0450805
0.00926786
0.0486147
0.0112875
0.0107247
0.00992994
0.0542466
0.0480043
0.0107567
0.00870913
0.0509946
0.0413831
0.00887665
0.0440273
0.00965977
0.00776985
333.313
32.3154
100.832
71.4969
43.3858
33.2094
157.61
0.630544
0.122361
0.654336
0.800684
0.149606
0.133705
0.835033
6.54813
2.06078
0.202337
0.164716
4.25251
3.05876
0.255478
12.5711
5.83164
0.389749
0.20987
44.2237
5.85414
0.306972
0.0221726
0.0416752
0.045354
0.00701834
0.00436686
0.00474702
0.00675014
1.87779
1.07501
6.18848
1.91702
5.1715
2.61232
0.947703
3.86935
0.868143
1.48303
1.16553
3.40733
1.73376
1.48954
2.02808
2.66935
3.50143
6.01262
0.940264
8.54033
0.99198
1.07279
1.95158
1.05693
1.38641
0.844522
2.01027
11.4001
3.28755
1.74429
3.26296
3.80068
4.64519
9.63616
1.70876
1.00402
5.10255
0.378427
0.480522
2.3538
3.16244
2.97985
0.98542
0.248644
0.433362
0.683074
0.257757
8.57542
1.47994
1.02894
0.252223
0.377242
1.06898
0.454991
1.63187
0.321267
0.167583
0.733841
0.416154
0.171879
0.317956
0.758769
0.322413
0.464275
0.200732
0.912565
0.192007
0.852214
0.316607
0.456068
0.324398
0.698404
1.56922
0.279387
0.505607
1.43402
0.375287
0.607406
0.228233
1.09624
0.241724
0.351047
1.17681
0.712341
0.89101
0.163505
0.0853216
0.665828
0.897844
0.119251
7.49654
7.5077
6.48024
6.50912
4.644
2.89832
4.55868
2.98097
4.70166
3.07198
4.75022
3.04626
2.24359
1.17515
1.18344
2.2172
1.69453
1.67504
1.17192
4.14932
15.6782
15.46
4.08391
1.16348
2.16302
2.1897
1.6547
1.15008
1.16059
1.63606
1.20451
1.04908
5.39365
5.33235
0.355966
1.19375
1.03674
5.28552
1.1735
0.350139
1.0155
1.18305
5.24467
1.02375
15.3326
3.99829
15.2143
4.03619
1.31976
0.348733
1.19411
0.426044
0.20561
0.455604
0.200025
3.98937
4.27315
2.87391
2.67127
0.310643
1.00695
1.07083
0.374169
0.169771
0.173005
0.357171
0.219994
0.158053
0.163772
0.184225
0.159231
0.215427
0.185525
2.48887
1.83315
2.31921
2.02262
0.252172
0.186659
0.193662
0.212379
0.252277
0.186396
0.216047
2.19095
1.60536
2.0274
1.74334
0.0683648
0.0761131
0.109963
2.46141
0.115058
3.68526
2.31685
3.46314
2.63163
1.78046
1.78485
2.78176
1.52604
4.25379
1.52436
1.26717
3.26802
1.26657
3.26086
4.32569
1.5838
1.5563
1.28988
3.36785
1.31151
3.30752
9.10212
2.21803
2.36598
2.377
9.29575
9.12125
2.22797
9.34798
2.92726
2.90255
2.61599
9.13822
9.0976
2.63729
2.40673
9.34678
9.21296
2.27281
9.17699
2.25559
2.42546
8.33679
2.46817
2.46421
2.2901
8.44138
8.43239
2.2945
2.14516
8.58098
8.76503
2.05156
8.58953
2.15158
2.04889
2.15456
8.61073
2.06611
8.7732
8.60317
2.16044
2.05918
13.1989
1.90661
1.94654
13.1629
13.0604
13.0245
1.95226
1.91368
13.0646
13.1116
12.9723
1.95158
1.9578
12.9246
12.6934
1.98311
12.8782
12.8459
2.01237
12.6636
1.98797
12.7976
1.98505
2.01464
12.5776
12.6184
1.99195
12.7537
10.007
1.39683
10.4838
9.184
1.23489
8.303
1.28959
11.0084
1.42503
10.7975
9.8548
1.34757
10.2933
1.3316
7.97614
1.24022
6.32759
1.04751
8.66685
1.2083
5.59038
73.0061
7.13051
1.08753
0.99583
5.34539
6.09554
1.15266
4.92559
7.9997
2.3298
2.35121
2.18592
8.05594
8.11092
2.16619
2.07051
8.4329
2.0051
8.54097
2.09964
8.35452
1.97817
2.05478
8.24772
1.94538
8.4881
8.29907
2.0356
1.96382
6.84703
1.91209
1.90161
1.81539
7.05419
6.99881
1.82134
1.75875
6.90807
7.19141
1.67337
7.06392
1.72254
1.70855
1.74987
7.21372
1.69825
7.29276
7.15249
1.75182
1.69987
9.30838
1.2576
8.61274
6.34954
1.16937
7.30749
1.10532
1.19534
7.11041
7.90274
5.56689
0.974188
1.03917
4.91324
4.59619
0.835532
0.775569
3.37969
0.892904
4.0986
3.68959
80.181
24.4826
20.0525
5.57286
1.01842
0.833872
4.25781
5.09297
0.962143
4.43222
24.8845
10.8215
20.9894
11.9398
9.10456
8.97888
8.97259
9.07081
2.19223
0.479503
2.39096
2.40863
0.431758
2.23596
0.469204
2.39085
0.48871
2.32496
2.34743
0.48973
2.39639
0.479785
9.32934
9.12308
9.08057
9.33258
8.94125
9.09466
9.0448
9.01932
6.23404
1.72944
1.71457
1.63943
6.41549
6.37998
1.65304
1.6001
6.67748
1.59227
6.7045
1.6382
6.57068
1.55759
1.58397
6.55739
1.55917
6.66217
6.52743
1.59718
1.54486
5.72461
1.48222
1.4794
1.54914
6.0579
6.06927
1.54158
1.86199
7.32946
8.29998
2.29542
6.93135
1.97362
2.22012
1.80184
6.72334
2.16344
8.06936
6.76096
1.7869
2.17451
2.1981
0.406343
2.05478
2.10301
0.403497
2.23029
0.396673
8.7143
9.23369
9.21643
8.78681
0.417874
2.00438
2.11001
2.1417
0.411016
0.407777
2.05194
8.97453
9.19845
9.2288
8.96122
9.1044
8.70774
8.76726
9.01698
7.74119
7.74362
7.29445
7.35634
5.9495
4.06003
5.59758
4.36432
6.18815
4.6491
6.29342
4.54931
7.22448
2.43346
1.98777
1.73843
11.2589
5.82766
2.12806
1.34646
4.301
3.63272
1.02585
4.31918
1.25695
1.08924
1.54796
9.31174
1.48309
4.17545
4.93594
1.91485
1.24068
1.37876
0.15829
1.5506
1.25699
0.136068
1.1575
0.130934
1.49279
0.152201
1.62707
1.26003
0.114256
1.10774
0.124843
0.828031
0.0831827
0.505172
0.060582
0.689018
0.0911367
0.48676
7.6175
8.4825
0.837018
0.0996598
0.0631823
0.453955
0.791283
0.095669
0.446086
3.1567
2.47266
2.1092
2.50466
0.133634
0.0711724
0.186901
0.154718
0.0658074
0.121227
0.0664702
0.563428
0.0847358
0.301694
0.203375
0.0783285
0.276694
0.0699134
0.197836
0.0813503
0.0799523
0.211092
0.235762
0.0795852
0.179893
1.6473
0.846393
1.43816
1.01016
0.166931
0.0821296
0.0811493
0.136498
0.140163
0.0800921
0.155879
1.88154
1.48043
2.15686
1.21436
5.57539
0.184756
0.209828
5.02135
5.04929
4.50071
0.144179
0.192412
4.4372
4.64841
4.13146
0.164109
0.158082
3.92878
0.198712
4.08156
4.54744
3.99337
0.111483
0.127728
3.51055
3.63405
0.153545
0.129892
2.98523
0.145715
3.44336
3.16298
2.96141
0.180123
2.76469
2.40177
0.368185
2.6289
0.158006
2.78342
0.118643
2.71716
2.35403
0.123226
2.4183
0.107802
2.00563
0.109481
1.73788
0.0864284
2.06905
0.0966496
1.67762
2.05246
0.336524
0.118891
2.00185
2.30729
0.137734
1.72342
15.188
14.1044
4.03078
4.13874
2.90761
0.966452
4.33862
0.891108
0.231568
0.678218
0.274933
5.3326
1.11862
4.98823
0.991581
0.31827
1.04289
0.303924
0.393338
0.196091
0.182476
0.270892
0.410514
0.192365
0.264298
2.58695
1.92546
2.45619
2.00335
0.360704
0.17505
0.174866
0.235562
0.312385
0.181919
0.249568
2.65812
2.08372
2.71728
2.04398
2.29629
0.119343
2.1112
1.79367
0.158791
1.9635
0.113547
0.118014
1.99521
2.03912
1.7292
0.108641
0.11167
1.68981
1.44126
0.103944
1.14946
0.0987627
0.106452
1.40751
1.17833
1.49691
0.147724
0.103661
1.35773
1.64857
0.10989
1.22598
1.30683
0.231763
1.46717
1.22573
0.195593
1.08184
0.232409
1.67064
0.278347
1.65333
1.41162
0.296577
1.44463
0.285009
1.18171
0.310454
1.03827
0.287517
1.23369
0.286808
0.965372
0.99983
0.191083
0.223075
0.684865
0.873889
0.228314
0.791566
1.75102
1.71906
1.43323
1.45789
0.124393
0.0856335
0.126466
0.101663
0.0872417
0.100695
0.0879995
0.131305
0.0898614
0.130619
0.10642
0.0928794
0.10694
0.092489
0.10544
0.0966473
0.100548
0.105647
0.105804
0.0963591
0.105435
1.13053
0.855987
1.08086
0.898404
0.100356
0.0909181
0.0952232
0.0997932
0.0997777
0.0914789
0.0999782
1.15464
0.93713
1.17555
0.918967
593.03
244.68
2108.7
153.859
23.963
962.624
148.038
22.2448
60.2826
13.8255
50.0318
28.1131
87.6457
74.9127
38.6382
183.39
27.8513
53.8384
42.5288
70.3576
191.905
28.6041
48.1206
66.543
31.9352
166.603
25.85
34.7202
23.8858
37.6292
38.58
124.495
33.8307
12.9482
19.5764
14.6619
1.67282
0.387294
2.26655
1.07036
0.462461
0.454889
0.96153
1.11958
0.447179
0.559156
0.484969
1.99062
0.805332
0.530846
4.5368
1.62526
1.68069
1.43936
3.44234
1.35104
3.44345
12.718
12.3895
12.3335
4.87917
25.7841
25.6451
13.2405
3.85996
3.84453
13.5164
12.6577
11.7615
12.1359
10.4588
9.54787
11.2525
11.5057
3.28833
10.7036
2.91496
11.404
3.2773
11.0445
11.915
10.3514
11.7136
11.7774
3.34071
12.629
3.0076
3.28878
12.4368
11.6591
24.718
4.44406
25.2946
25.9617
4.70996
25.4269
4.27102
6.55639
56.5623
5.58924
5.59446
56.9777
5.67041
57.4137
42.6528
32.1959
4.71306
4.92931
33.6061
28.8674
4.22014
23.4453
3.83003
4.3822
29.3146
22.6259
26.7867
4.4793
3.6665
16.6009
4.48379
26.5485
16.8378
27.0105
4.51558
18.1283
3.68587
4.49388
27.5852
17.1834
25.6032
4.25936
3.54416
19.8702
24.9096
3.94763
20.7588
12.5364
3.32473
12.4223
12.9735
3.58932
13.407
3.47506
9.31121
6.51706
6.65066
3.23666
11.8339
12.1364
12.2145
3.0329
3.24435
11.5498
10.1258
2.78265
2.67677
7.79218
2.97238
9.19101
7.37626
31.2078
5.11727
13.1762
3.9483
32.9693
5.1591
12.5988
11.5639
3.30494
2.8244
8.56173
12.303
3.1936
8.11275
20.5058
5.19003
12.297
3.98023
5.1417
18.7388
8.10534
9.2399
2.11811
9.79081
7.57282
1.83219
6.75565
1.89705
9.35745
7.8408
7.47846
2.17113
10.6142
10.3305
8.38678
2.02537
1.96398
8.77341
10.9392
0.23784
0.270239
0.151855
2.91289
4.54572
0.140534
37.6131
0.562859
0.640499
0.667408
2.4388
7.6426
0.58422
7.10903
7.11943
6.37111
6.39406
2.91552
0.355555
2.44367
1.15494
0.215977
1.17062
0.210633
1.91931
0.329271
2.13332
1.17406
0.228608
1.19984
0.216001
1.03699
0.224592
0.937376
0.235802
1.08268
0.207938
0.903567
5.11373
3.90324
5.1074
3.84652
5.12544
3.73018
5.13503
3.78845
0.989276
0.186303
0.218564
0.824329
0.944954
0.195303
0.865781
16.4995
16.4498
1.84418
1.42513
1.95124
6.37909
1.41143
5.97363
1.47777
1.76925
1.26319
1.7791
5.73821
1.27598
5.72489
1.28406
1.16071
0.364221
0.484143
0.244391
1.15184
0.371485
0.489015
5.46531
3.29494
4.83669
3.83782
4.61086
3.10619
4.58652
3.11405
1.42345
0.500251
0.386875
0.641653
1.30973
0.511162
0.679964
0.0647414
0.118151
0.114286
0.113777
0.15886
0.0637186
0.117165
0.107832
0.153314
0.111018
0.0595385
0.0602924
0.111693
0.107457
0.0857123
0.350315
0.189735
0.0946873
0.381085
0.079016
0.104567
0.125956
0.243031
0.243673
1.44684
0.538651
0.146591
0.244375
2.55512
2.50857
1.97132
2.00095
0.272857
0.139896
0.306719
0.171264
0.128254
0.166074
0.128953
0.340898
0.146063
0.330216
0.178457
0.133149
0.18075
0.132272
0.155059
0.136855
0.152663
0.142534
0.155525
0.136353
0.152467
1.5307
1.20366
1.51009
1.21791
1.55676
1.25428
1.57751
1.23866
0.150917
0.132854
0.139006
0.148485
0.150479
0.133083
0.148534
0.124472
0.155117
0.0678456
0.032616
0.84005
0.299692
0.764372
2.41559
3.7515
1.89695
0.253936
0.737171
0.705534
3.17714
1.62566
1.64116
0.244847
0.447954
0.428765
0.216282
0.437829
0.437837
0.670407
1.64323
0.559816
131.534
0.431902
9.92292
0.868824
0.46179
16.7891
7.4237
7.0416
8.84461
12.447
3.26854
5.55886
5.90164
28.8274
5.03878
176.611
9.61396
8.90293
3.89324
0.558956
0.189003
1.74483
1.68063
0.236112
1.21154
0.185922
3.73009
4.47157
2.01761
2.20364
1.91617
1.13912
1.18183
11.0732
3.98188
4.24785
3.51834
3.12853
6.48888
3.25887
3.52902
4.27149
4.64105
3.72004
2.93278
3.0517
3.45469
4.46839
5.7075
5.31534
4.15262
5.16406
3.63839
4.2019
11.5825
1.86973
2.73309
6.13462
18.9958
8.63583
1.99917
2.33802
4.05051
5.32051
3.68409
1.78335
3.00506
1.77578
5.11652
26.9274
26.793
13.6389
3.9826
3.97675
13.7189
12.7574
12.4221
12.3877
12.7746
12.4083
12.3746
12.0298
11.4613
12.0005
11.5457
3.3127
10.7258
2.92897
11.4753
3.32683
10.8506
12.0424
11.3861
12.016
11.6463
3.34071
11.1043
2.93789
3.33469
11.7297
10.9995
14.1783
14.9295
14.3274
3.14175
12.5267
12.6702
12.654
2.8378
3.1482
12.5508
4.23151
14.9482
15.0485
13.0163
3.56011
3.57945
12.9134
13.7472
13.2403
13.7659
14.4117
14.0884
13.9843
13.0418
13.5447
13.5254
12.5672
2.84093
3.13285
12.3164
3.15016
12.4589
12.4445
8.93164
6.31928
6.39889
12.8084
3.43676
12.8232
13.8352
3.67541
13.753
3.70068
13.0884
3.53776
13.0599
14.0548
3.8114
14.1721
3.78409
12.9879
3.4944
3.03122
9.1311
13.1008
3.46669
9.0346
33.783
5.10337
13.4303
3.89176
33.5433
5.08185
13.5984
12.8171
3.37487
2.97996
8.80443
12.6909
3.40084
8.92133
34.0779
5.01846
13.8885
3.88736
5.06947
34.0548
13.7932
19.2744
4.73806
19.4035
21.1177
4.51439
21.5022
4.75998
6.70229
53.2523
5.59298
5.59484
52.5883
4.32545
17.241
16.9329
18.9195
4.59138
4.3867
18.8555
16.808
4.03919
3.4549
10.5525
3.92866
16.0158
11.6621
24.4574
4.45267
15.9325
3.59851
25.6847
4.39624
14.2668
19.5046
4.10239
3.64379
17.2002
21.5255
4.22129
14.3277
23.5496
4.35406
14.2473
3.59253
4.35961
22.9258
14.5657
6.65108
38.4731
18.3221
12.1894
5.38095
5.29887
19.8742
3.97628
0.933089
3.65095
3.21458
0.824459
3.44436
0.848634
5.21803
1.00078
4.06329
3.53055
0.999731
4.35932
0.906624
8.88705
1.99627
8.73504
6.14768
1.81701
6.25894
1.78363
7.27536
4.8787
4.88293
1.97133
8.60639
8.65702
6.07957
1.73664
1.7611
6.02028
9.36254
34.9112
8.48944
12.4618
4.1122
12.1646
4.69669
0.824269
0.384327
1.84148
0.361385
0.855785
0.109763
0.111896
0.329813
0.888636
1.87939
0.342611
0.871174
0.107
0.105715
0.969321
2.05296
0.297036
0.302676
0.946921
0.106024
0.105733
0.33042
2.01686
0.928004
0.311773
0.933553
0.108676
0.112572
0.967174
1.85884
1.17712
0.110632
0.115147
0.149766
0.0822674
0.0625502
1.2943
8.18884
0.0903405
2.08178
0.22588
0.361601
0.634914
0.280986
1.30999
0.263606
0.5959
0.0735491
0.0778059
0.247548
1.20818
0.484716
0.255972
0.551896
0.0708836
0.067151
0.160641
0.332178
0.187819
0.0294996
0.0481984
0.0605112
0.0270415
0.190651
0.529486
0.437443
0.279162
0.045251
0.159597
0.056269
16.6419
16.3815
2.26318
0.980305
2.30783
2.42564
1.0105
2.38088
19.0975
19.4777
3.63247
1.62021
3.53368
2.97987
1.33505
3.07369
2.0044
1.319
1.30426
1.334
5.31695
5.24679
1.34771
2.4063
1.53895
1.56277
1.60351
6.06114
6.16387
1.5833
14.354
14.5442
2.15517
0.903468
2.11067
2.0026
0.869179
2.0345
12.9608
13.7082
1.65242
0.720698
1.73203
1.63102
0.805432
1.88209
12.9862
1.86677
1.85546
0.822942
1.51169
4.02769
0.813488
3.99827
0.812032
4.07467
1.52219
0.811541
4.03546
10.6818
11.3791
1.57583
0.613149
1.51022
1.36015
0.552273
1.36902
1.76143
1.14025
1.15122
1.17211
4.6255
4.67572
1.16264
1.58947
1.04386
1.06524
1.09323
4.24776
4.41642
1.06817
4.42788
1.11673
1.11298
0.294685
0.582523
0.580001
0.295486
1.35618
0.899003
0.906824
0.920341
3.59767
3.72902
0.909285
11.8866
1.6015
1.64428
0.739795
3.63558
1.34228
0.738218
3.61373
0.703847
3.28007
1.3002
0.728364
3.49348
9.66419
1.03303
1.033
1.55319
0.290208
0.733548
0.389317
0.296354
0.750387
1.43383
0.311984
0.786607
0.396302
0.303344
0.765555
6.81047
0.448916
0.857064
7.50201
0.514182
0.577103
11.9636
1.94086
0.747801
0.246488
0.24339
0.143878
0.196267
0.194238
1.52766
0.547502
0.0565701
0.147007
0.656203
1.17571
0.14366
9.93578
0.119006
0.135399
0.13458
2.12498
0.287805
0.145271
0.117108
0.140439
0.160528
0.154241
9.37379
0.962946
0.996996
30.6804
0.815657
0.279026
0.708641
0.36309
0.27394
0.694436
1.02668
0.261593
0.662029
0.355281
0.267089
0.677736
3.98969
0.955697
0.964863
0.232717
0.472375
0.480993
0.230408
3.15614
0.702807
0.702172
0.107263
0.260275
0.258832
0.107974
2.37127
0.425216
0.552801
0.124156
0.167463
0.275033
0.100963
3.00557
0.613962
0.63215
0.0913304
0.225935
0.231538
0.0899677
2.54295
0.437339
0.365334
4.20136
0.383075
0.396073
0.915713
0.25289
0.293498
0.094193
0.0820414
0.104165
0.1027
0.109844
1.02359
0.495423
0.13757
0.0527096
1.05314
0.482949
0.140783
0.125186
0.0883883
0.123399
0.114196
0.11682
0.994891
0.458868
0.145718
0.0532237
0.470103
0.971369
0.142081
0.28102
0.130899
0.139012
2.70058
0.185716
0.180907
0.297998
0.155338
0.147367
0.1984
0.121656
0.0209616
0.0170037
0.116834
0.210154
0.0205741
0.114617
0.113094
0.0753384
0.0630528
0.135123
0.843411
0.476964
0.969193
0.0860919
0.034076
0.0822591
0.0347715
9.20646
0.698327
1.52716
0.1035
0.101567
0.205239
0.0423235
0.236436
0.113175
0.115763
2.17385
0.119117
0.140094
0.403656
5.2293
0.641848
1.4019
1.23443
1.50291
0.347811
0.356692
0.068208
0.141019
0.144556
0.0672649
0.985489
0.228225
0.227629
0.0282279
0.0681638
0.068646
0.0267346
0.710796
0.304213
0.594242
0.0669387
0.0298676
0.071613
0.0281008
0.0990053
0.0730581
0.0394119
0.0420586
0.0665744
0.247225
0.633457
0.484906
0.0611079
0.0197158
0.0251035
0.0528679
0.095069
0.110966
0.106057
0.0146899
0.0137579
0.0135359
0.015409
0.0606536
0.0654104
0.0682175
0.00970433
0.00929022
0.00950243
0.00942019
19.2512
17.2971
30.9655
9.56091
4.41851
7.01179
5.55378
59.8284
0.769975
0.323633
0.852005
1.8983
0.308461
1.68225
0.351487
29.0113
326.036
62.1321
19.2659
4.52398
8.75219
5.05769
1.2403
0.371254
1.01723
2.38003
0.459162
1.06108
0.411203
0.293012
0.391835
0.354416
178.404
0.247552
109.863
0.361447
0.295449
11.418
7.97069
0.821672
0.846616
0.74828
5.63908
8.71066
20.3487
1.4142
19.8863
0.985833
117.504
0.89481
10.0307
69.1121
16.2036
6.08425
17.6123
43.0171
38.8669
60.354
38.2881
9.22471
20.368
17.9686
0.779101
1.16504
0.489056
0.552621
0.581142
2.04467
0.548242
0.870753
0.363824
0.48153
0.421194
0.434305
2.40626
0.524528
19.4155
46.8569
52.4202
19.7586
31.041
3.47652
11.9733
14.3838
7.04132
33.9232
4.2228
86.858
24.7341
22.5683
3.90827
2.35318
5.57685
6.98512
1.92466
4.40457
2.23209
8.70551
4.7745
1.88993
2.25132
5.25861
5.99436
2.18701
15.4503
30.0496
6.22413
5.03104
29.74
16.9718
4.62796
1.34713
0.454574
0.703588
0.472315
0.610607
0.4873
0.423122
30.8269
8.41225
10.4289
69.5593
19.6007
13.5266
6.08267
11.912
59.7636
3.3741
5.00424
18.1016
6.66504
3.76731
24.9581
5.64034
19.9597
0.618047
0.799556
1.35052
0.382336
0.719087
0.424772
0.690404
1.26226
0.825087
0.721193
0.439283
0.90548
0.487511
0.722874
4.37293
21.4023
19.8142
7.60363
4.12974
21.7671
10.7763
3.93895
3.93344
9.99654
4.02366
10.4599
10.4471
18.7092
7.32319
3.80019
3.91712
18.4555
23.9435
1.23242
1.15534
1.08666
0.617594
0.814057
0.751844
0.638319
0.902267
1.82459
1.04588
0.603604
0.997717
0.535633
0.978279
11.9349
3.88103
4.05218
3.88916
11.2752
12.4476
3.75334
15.4883
3.4895
3.95594
3.90029
13.0284
14.0958
3.5004
3.7871
11.6609
12.048
3.41831
12.803
3.68548
3.4572
0.822375
1.05007
2.28795
0.751426
0.691928
0.646458
1.33154
1.94904
0.372529
0.503969
0.486096
0.96389
1.28014
0.355917
0.328293
1.2061
0.301856
0.287857
1.06176
0.993429
0.317124
4.66653
9.39178
9.33119
5.26114
11.8221
11.4995
11.0813
11.2617
10.6076
10.078
10.7472
9.89832
9.11705
5.65709
5.60304
8.59182
3.97292
13.1881
13.2713
12.2708
3.65842
3.88361
12.2395
11.1163
3.98114
10.2102
3.78547
10.8064
3.86186
10.4323
11.375
3.57095
10.5734
3.68552
3.7741
11.3657
10.6132
1.22667
1.77661
1.05032
0.651476
0.987853
0.668487
1.14082
1.28055
1.79869
0.953165
1.1118
0.715261
0.686601
1.22616
4.44191
12.2936
4.08349
3.9664
20.173
4.17716
11.8684
11.5169
3.88905
4.01402
3.94263
10.9771
11.0772
3.81117
3.88449
10.7073
11.543
3.68433
11.0726
3.74102
3.82801
3.88408
21.3065
13.0543
3.96493
4.05853
12.0874
3.79458
1.68381
2.26043
1.68136
1.45559
2.22159
1.44622
2.39441
1.29671
3.54211
1.20696
1.2137
3.59973
1.31319
3.49179
1.19788
3.56975
1.27262
3.26507
1.30261
3.444
1.16714
1.28917
2.24434
2.45907
1.12809
1.2638
2.46281
1.16145
0.480663
0.934861
0.662397
0.866534
0.619903
0.574194
0.477823
0.678035
1.16702
0.938898
0.627858
0.539738
0.489313
0.767419
2.49814
1.60743
2.66417
1.82699
1.24906
1.3292
1.71933
13.9378
13.4245
11.743
7.90965
8.16177
8.35622
9.08828
5.30529
3.8752
3.9291
5.40784
5.41409
4.1007
4.93483
1.32505
3.52607
3.74738
3.32071
1.20544
1.27353
3.13156
5.73447
5.35741
4.11427
4.4773
5.73122
4.3654
5.87319
4.17707
1.37579
3.96315
3.45223
1.33246
3.62198
1.31832
13.0617
9.52787
10.6247
7.10105
7.9734
7.9711
6.50722
18.9543
17.7338
20.5702
10.4699
8.42082
8.8811
9.60452
1.46411
5.11939
1.46185
4.1196
4.69396
3.85298
1.37768
19.3307
24.7817
9.16612
11.8677
22.444
11.0277
9.07198
4.3742
1.40536
4.53686
3.76417
1.32449
3.66195
1.33468
3.77603
0.946036
0.882093
0.899628
3.77361
3.94942
0.96328
0.862855
3.23304
0.792388
3.53247
3.63515
0.79308
0.866016
0.923794
3.91391
0.999116
3.91171
3.98097
0.986071
0.932732
9.02638
2.63824
2.60238
2.4097
9.41065
9.07652
2.43891
2.26203
9.08063
2.15874
9.2764
2.25855
9.12686
2.16125
2.26042
9.5167
2.18166
9.36391
9.22068
2.28326
2.15957
0.823736
2.69694
0.752066
3.18834
3.15942
0.74588
0.831258
0.906957
3.55484
0.99526
4.02527
0.899916
3.59663
0.999238
0.910807
1.00975
3.66043
4.04739
3.62662
0.918893
1.00138
8.82844
2.6578
2.62592
2.43742
8.9356
8.90513
2.46347
2.26522
9.03775
2.15931
9.18552
2.25765
9.03164
2.16643
2.29397
9.07892
2.20963
9.20477
9.05572
2.31509
2.192
0.785493
3.00742
3.68933
0.8838
3.04846
0.77554
0.894576
0.803456
0.926192
3.73777
3.18304
3.11689
0.914239
0.814076
0.906168
3.51304
0.994491
4.64404
0.893435
3.90384
1.01713
0.796145
2.51756
0.723184
2.88667
2.88184
0.722654
0.79786
0.896316
1.01978
3.97459
3.41495
3.3995
1.01218
0.89901
14.5381
220.833
14.2744
16.0126
4.04479
1.12089
4.97485
5.53285
0.951833
4.49274
1.07956
7.84475
1.29301
5.69235
7.1186
1.42198
7.01402
1.24784
5.54417
1.36144
1.12209
5.72747
6.32465
1.17981
5.06019
27.9427
13.3641
17.7144
18.1852
17.6539
18.6886
25.6121
4.49273
0.905662
0.974164
3.61929
3.81941
1.01965
4.19491
58.6973
15.5387
18.6929
17.3533
51.0337
12.2831
1.81024
12.3278
12.175
1.82574
12.1313
1.83767
12.4378
1.82625
12.387
12.2341
1.86542
12.2837
1.85576
12.077
1.88497
11.9591
1.871
12.1279
1.87365
11.904
12.0175
1.83786
1.84395
11.7903
11.9724
1.85258
11.8424
3.93343
0.809146
4.05306
0.87271
3.66086
4.41508
0.80254
18.6495
8.82139
11.2417
14.9423
14.8277
11.3157
18.0469
23.2639
20.0112
24.736
24.862
21.0178
21.725
26.0847
3.08936
2.64593
0.662646
0.699256
2.99946
2.70073
0.711862
3.40655
0.740384
2.80328
0.683278
2.92608
3.21772
0.736227
25.7683
27.3674
21.5062
24.8928
21.3699
24.2392
29.9889
3.50255
0.836765
3.70296
0.757037
3.38617
3.84365
0.773245
12.2234
1.79089
12.1855
12.0283
1.81183
12.0694
1.80926
12.0811
1.78618
12.13
11.9725
1.79491
11.9215
1.80007
11.7986
1.77927
11.4545
1.73137
11.7381
1.79294
11.5683
11.8596
1.81848
1.77045
11.7136
11.9052
1.8102
11.6511
2.8971
0.809912
3.52966
0.844551
3.31357
3.10252
0.792724
7.19961
10.3563
17.1571
11.2018
10.7713
7.06414
11.148
6.70624
6.75377
5.39199
6.93733
8.48223
5.75375
6.4675
8.33329
13.4543
17.9746
11.9611
11.3301
11.9728
9.65631
3.41522
0.77014
4.19244
0.777602
3.83918
0.727237
3.66497
17.6603
18.6473
28.5945
25.3408
18.7989
20.7217
21.6477
2.94238
2.6951
0.637446
0.690959
3.04844
2.6497
0.67889
10.7513
7.65979
7.71795
9.3014
9.67073
8.24283
9.80795
3.00032
0.712587
0.639091
2.79918
2.69475
0.67788
3.15724
16.0714
19.7576
23.4708
15.3086
15.732
19.8205
15.4608
3.32752
0.783799
3.89113
0.746478
3.48627
3.7129
0.730151
7.84911
2.20321
2.17214
2.05294
7.63928
7.99153
2.06676
2.11612
8.4022
1.94293
8.97358
2.00958
8.96863
2.03365
1.97312
7.8247
1.90222
8.31961
8.16201
1.97144
1.91388
0.743476
2.95639
0.859748
3.57432
0.752574
2.9294
0.849538
0.736322
0.834887
3.54841
2.88067
2.90517
0.84215
0.729658
7.46517
2.02887
2.05078
1.95631
7.50859
7.62234
1.93848
1.9092
8.06225
1.87984
8.03819
1.94276
7.90166
1.84845
1.88276
7.64778
1.79984
7.90304
7.7751
1.86577
1.82037
7.65179
0.272908
0.258136
0.227818
3.90277
4.13339
0.239973
0.247267
7.72655
4.23627
0.246892
0.216655
0.217337
4.20788
10.5709
11.8285
10.3449
9.16346
2.99075
0.62366
3.14258
2.84664
0.565445
2.73558
0.578458
3.31561
0.656224
3.55027
3.13949
0.61752
2.92771
0.602566
2.87926
0.572447
2.57068
0.543107
2.69815
0.563513
2.71831
8.95137
8.58156
8.52051
8.96272
9.89049
8.9058
8.9039
9.69618
2.6528
0.53575
0.531254
2.46915
2.57192
0.544893
2.53896
6.84385
10.0763
10.925
16.2744
6.86406
9.85513
10.9736
6.6999
10.6173
16.019
9.3789
9.61859
10.7205
6.61858
8.45574
8.96199
8.91627
8.48015
2.83934
0.573508
3.0619
2.82294
0.549123
2.63283
0.54348
2.69057
0.555541
2.78915
2.61146
0.52353
2.5435
0.52973
2.50358
0.511968
2.36377
0.509106
2.44304
0.513058
2.42053
9.62395
8.66338
8.6119
9.48318
8.93159
8.6105
8.54961
8.9481
2.67177
0.522878
0.514484
2.4206
2.50534
0.51974
2.5589
1.0352
1.07764
0.925945
10.2681
0.882612
1.12432
1.12187
0.968937
0.963604
6.23772
1.76098
1.76585
1.69801
6.38098
6.38094
1.69102
1.67058
6.53608
1.72994
6.77006
1.66678
6.53603
1.70617
1.66012
6.53263
1.64528
6.74016
6.5414
1.64799
1.67363
0.237444
7.44272
0.255414
0.226667
3.63008
0.210089
5.60349
0.312759
7.63077
0.289726
0.256918
3.4499
0.280334
5.80077
0.319923
8.31749
0.312615
0.277261
2.7743
0.282464
2.72627
0.305925
8.0859
0.308344
0.274636
2.85896
0.273934
2.68631
6.59222
1.66696
1.6995
1.65878
6.52927
6.75808
1.62843
1.78325
6.7303
1.7722
7.85008
1.65774
7.41501
1.95988
1.70869
6.84481
1.95638
7.64608
7.04385
1.69001
1.95116
0.239122
2.89086
0.243638
0.218429
2.2343
2.35603
0.214907
0.253352
4.56125
0.243213
0.217691
2.39723
0.226186
2.19037
0.323708
9.21926
0.323613
0.28478
2.84553
0.284766
2.8211
0.277812
8.51375
0.307268
0.271406
2.65484
0.247426
2.53758
8.54765
8.53281
8.64885
8.67132
8.82071
8.36233
8.60132
8.66557
8.73374
8.68975
8.76598
8.64494
0.969085
0.969765
0.805974
5.77045
0.816066
11.8995
0.851463
0.937947
0.772319
6.91514
7.88696
0.722613
25.0066
0.587447
0.643667
0.557712
4.14443
4.46794
0.514683
0.765385
24.2908
0.700892
0.602539
8.6288
4.67537
0.651532
8.26213
8.49504
8.50064
8.28861
8.39574
8.05041
8.43986
7.75318
8.31101
7.051
8.0625
7.4037
0.453154
3.90414
0.442943
0.402775
2.96428
3.05804
0.414796
0.470277
6.04009
0.45716
0.411208
3.05359
2.94282
0.4215
12.136
0.55687
0.539525
0.478056
3.81649
3.79251
0.49168
0.495707
10.802
0.516656
0.45935
3.28091
3.19648
0.441767
5.96196
5.8329
5.52191
5.64591
4.81956
3.30504
4.7839
3.25476
4.85349
3.16645
4.85242
3.19753
4.81011
4.99716
4.62624
4.39483
0.673938
0.0682426
0.64622
0.538308
0.0564002
0.568779
0.0578289
0.639509
0.069239
0.641083
0.526671
0.059266
0.516681
0.0586049
0.44432
0.0469432
0.0334897
0.353186
0.441986
0.0465263
0.354989
4.6347
3.39265
4.71732
3.46308
0.446318
0.0446858
0.0330115
0.357985
0.456035
0.0459347
0.355257
4.538
3.56525
4.43126
3.52137
10.6913
18.1796
6.66996
5.99109
3.64456
0.494802
4.51418
1.36954
0.228408
1.25734
0.240764
1.9481
0.538022
4.96805
1.36763
0.209208
1.08879
0.243737
0.866181
0.163659
0.168874
0.651683
0.791247
0.177982
0.696335
4.99571
3.95715
5.10847
3.90435
0.902945
0.184315
0.180115
0.782168
0.916993
0.183608
0.736678
4.73976
3.56797
4.468
3.74618
3.23689
0.183149
3.28448
2.85807
0.163625
2.81498
0.166302
3.411
0.19901
3.35642
2.92529
0.185487
2.97456
0.181087
2.52148
0.167822
2.179
0.141589
2.56544
0.163371
2.13976
2.45776
0.146881
0.12889
2.04683
2.41946
0.149564
2.08052
0.225332
0.0208892
0.102364
0.0975255
0.0226039
0.213373
0.0199688
0.092686
0.0211834
0.0184497
0.193276
0.202264
0.0190647
0.0887241
0.080731
0.0883099
0.61946
0.639627
0.0925656
0.0279188
0.0362325
0.0693148
0.0382719
0.0671179
0.0288679
0.035418
0.880756
0.952708
0.140528
0.0158764
0.0217582
0.256283
0.138061
0.0189077
0.158735
8.22806
1.38246
0.0248404
0.0327145
0.0597078
0.0293985
0.0243438
0.0613301
0.0297483
3.15749
0.131287
3.09506
2.68378
0.138124
2.74048
0.122015
3.09312
0.093313
2.98945
2.59432
0.111868
2.69282
0.0836834
2.22057
0.103081
0.0674508
1.95092
2.31151
0.0753944
1.86159
2.29803
0.125135
0.0972605
1.9827
2.34966
0.111848
1.93601
0.0182219
0.0218653
0.0229022
0.0614717
0.045929
0.0205064
0.0264156
0.828426
0.805525
0.0912297
0.0128372
0.0119594
0.105823
0.10782
0.0126506
0.0742773
0.0214962
0.0281249
0.0550898
0.0260298
0.0221758
0.0528438
0.0257614
0.736123
0.778428
14.8721
14.6884
1.70015
1.18808
1.6383
5.28936
1.25914
5.48671
1.21216
1.58457
1.16449
1.60714
5.20289
1.17358
5.138
1.18751
1.04637
0.355915
0.251444
0.458047
1.03174
0.359942
0.463515
4.09815
2.88443
4.3086
2.73168
1.07338
0.392124
0.266563
0.501356
1.12478
0.375165
0.481048
4.01254
2.62656
3.94974
2.67168
2.21401
0.204956
2.39131
2.08364
0.186204
1.91341
0.206241
2.79765
0.250816
2.67844
2.36339
0.295703
2.49048
0.255467
2.05917
0.29691
1.91125
0.252763
2.19414
0.256037
1.76976
1.78722
0.181395
0.198453
1.36259
1.62843
0.204217
1.50843
2.07272
0.180027
2.07265
1.77451
0.170708
1.77862
0.175954
2.37136
0.30105
2.51546
2.22907
0.281147
2.07264
0.312328
1.95469
0.281635
0.330347
1.51519
1.78616
0.321438
1.69538
1.49395
0.164608
0.157826
1.24448
1.50134
0.168111
1.23391
0.0108993
0.0514058
0.00122267
0.0782343
0.0961972
0.00299409
0.154398
0.0896599
0.00130656
0.204634
0.00151885
0.10857
0.12608
0.00753401
0.27089
0.00372824
0.239708
0.174252
0.00327376
0.682188
0.0020848
2.12465
2.16629
1.77396
1.74073
0.22738
0.122889
0.211165
0.146955
0.123016
0.150598
0.12245
0.194731
0.117056
0.200228
0.139801
0.116633
0.137087
0.116743
0.133853
0.121315
0.126673
0.132899
0.132425
0.12134
0.133859
1.44928
1.17354
1.47275
1.15575
0.140621
0.127749
0.13331
0.141387
0.141522
0.127461
0.14099
1.41628
1.10597
1.3891
1.12799
0.0728684
2.22555
0.0786559
0.00244209
0.0313385
0.0377778
0.00224876
0.0906242
2.28385
0.083484
0.00276474
0.0825702
0.0421817
0.00356859
0.0183426
0.1083
2.76423
0.00631379
0.101605
0.00542802
0.0155896
0.120951
2.74259
0.12067
0.00949545
0.214417
0.0179
0.00714579
679.228
667.152
102.557
167.515
121.49
622.439
103.705
231.247
184.036
45.0511
95.5883
1555.43
73.9156
45.0821
292.947
1022.01
111.402
174.458
0.0709504
0.0783666
0.0126798
0.0636056
0.0120279
0.00974778
0.010372
2.74102
7.19832
2.36669
6.28494
2.25623
6.60458
2.2956
0.00985824
0.034904
0.00956751
0.0366011
0.00861146
0.0339935
0.00800499
1.59135
1.30147
0.426189
1.031
0.235374
0.24255
0.356448
1.02392
0.752973
0.815072
0.190294
0.285914
0.287102
0.141345
5.74513
2.97313
2.40757
2.08255
2.05466
1.15865
1.01794
0.975891
0.445598
1.02491
0.532896
0.576043
0.490554
0.436899
0.470941
1.22964
1.3938
0.629378
0.527127
0.473376
0.595698
2.88715
16.6417
3.00037
2.28361
4.47282
5.91847
2.34285
8.08502
5.53802
5.99444
4.13873
6.01253
5.13799
2.73374
6.80289
8.06789
2.9054
4.6317
44.5834
3.58212
5.89629
1.79232
2.48031
5.95165
12.3411
7.46667
7.73756
5.52315
8.04021
7.77758
5.37991
13.1075
8.64049
8.13938
5.79306
8.15467
8.15968
6.07892
9.15038
7.22497
7.05247
4.97879
9.06051
5.68589
5.33877
8.91103
6.45037
6.86821
4.898
5.43462
4.66153
5.54466
21.0381
12.8379
4.55701
8.93643
2.91355
1.76608
2.63246
1.79121
7.99253
5.90188
1.68101
3.72885
0.744864
0.71594
1.03118
0.691285
15.708
1.20457
4.91467
0.688643
0.527853
1.72146
4.73478
2.05876
3.15391
1.08916
1.28165
1.81782
1.22862
1.90161
2.47836
1.17881
0.881647
0.426483
1.68395
1.83295
0.287205
1.17207
0.150761
0.21725
0.713066
0.10594
1.1007
0.151647
0.818006
0.0823632
0.0620646
0.522844
0.766865
0.833827
0.5872
0.438962
0.409757
0.991723
0.67313
0.942221
0.512923
0.645097
0.490516
0.362545
0.357984
23.0354
0.734881
4.26295
0.323948
0.205271
0.498657
4.42708
1.41828
0.452095
1.78567
0.166744
0.167378
1.01808
0.30657
2.23232
0.297856
1.03105
0.108834
0.111009
0.367535
2.32582
1.14148
0.314184
1.06943
0.112973
0.124173
0.479854
0.495514
0.388613
0.0537284
0.0796119
0.0571183
0.0733095
0.330675
0.45073
0.352279
0.050983
0.0685071
0.050622
0.0694765
0.109353
0.155619
0.121911
0.0233019
0.0296684
0.0348418
0.0208568
0.176418
0.129772
0.127837
0.0240589
0.0373133
0.0370926
0.0242171
0.222408
0.285023
0.246812
0.0418952
0.0505893
0.0565452
0.0389804
0.30174
0.339001
0.274374
0.0459134
0.0639286
0.0470992
0.0616908
0.141101
0.221769
0.136245
0.0239716
0.0400066
0.0242006
0.0390789
0.21121
0.132993
0.13415
0.0242615
0.0390287
0.0384342
0.024574
4.51753
1.19728
5.17114
1.12202
6.05607
1.24192
1.15082
4.56553
5.83841
1.63746
1.60331
3.8877
0.989368
1.01677
1.5309
6.11644
4.25133
1.50234
4.15361
0.935418
0.914399
10.1375
11.8223
10.1871
7.09601
8.30476
8.13726
7.08314
11.2982
10.3945
10.2372
7.12399
7.57308
7.83797
7.13045
1.22118
3.65705
1.16682
1.0797
3.4065
3.18544
1.12284
1.11604
3.66269
1.15054
1.06772
3.0418
1.04577
3.17796
8.58068
9.03796
8.25188
5.98657
6.98024
6.43409
6.38488
7.57653
1.61898
1.73399
1.43599
5.08054
1.35018
4.99516
6.97376
1.46861
1.45646
1.22186
5.17039
1.23833
5.10465
7.46909
7.43721
6.52456
6.52044
1.50794
0.362773
1.50167
1.41332
0.319841
0.329752
1.37417
4.93224
3.30226
3.18636
5.0255
4.86269
3.03973
4.79811
3.09102
1.35122
0.330138
0.371971
1.08468
0.344685
1.10599
1.31259
2.44754
0.991219
1.86076
1.35076
2.14513
0.939718
12.8792
2.10558
1.06892
1.9778
1.48968
1.12268
1.59221
1.0568
4.81793
1.14539
0.991859
0.327363
5.1271
1.07663
0.954061
12.3196
3.40599
3.69516
8.07458
13.8202
3.93065
14.8497
3.84558
4.20094
0.680296
0.303871
0.707829
0.937583
0.873432
2.86417
2.74231
2.06856
2.03364
2.6964
0.450594
0.241594
0.302961
0.301331
0.248681
0.446138
0.24121
0.294882
0.243248
0.435438
0.235057
0.438619
0.235372
0.293736
1.55417
1.16358
1.54024
1.17281
2.00676
2.63461
2.66116
1.98774
0.28256
0.423292
0.232962
0.228012
0.413109
0.284989
0.227521
1.89552
2.41893
2.48894
1.86733
1.49811
1.1442
1.5155
1.13234
1.92954
2.59199
2.5489
1.95593
0.273361
0.22452
0.35943
0.220134
0.390278
0.220935
0.268199
3.82907
3.67994
2.47622
2.56634
0.640753
0.232084
0.796922
0.283906
0.134868
0.13792
0.255869
0.960499
0.267672
0.908739
0.324292
0.158185
0.337711
0.155386
0.198579
0.146389
0.170916
0.150194
0.201674
0.145562
0.170176
1.76808
1.42888
1.39159
1.80802
1.88272
1.54271
1.94824
1.49058
0.176498
0.130271
0.132989
0.151503
0.129705
0.151198
0.172812
1.3517
1.46203
1.66312
1.14777
0.819414
0.510149
0.741382
0.567029
1.09494
1.27829
1.39506
0.997839
0.839402
1.12524
1.09584
0.85609
0.679802
0.486972
0.708884
0.465689
0.921744
1.22798
1.18512
0.957468
173.673
26.1674
39.0296
20.4497
20.1994
14.5367
43.7709
2.11994
6.385
1.9358
1.6787
5.21301
5.23703
1.83118
1.62067
6.83726
1.7736
1.5322
4.48437
1.41936
5.00488
10.1954
13.6017
10.3226
7.24378
8.84919
7.13581
9.17732
16.0079
12.8353
11.1869
7.89089
9.70063
10.7009
7.21508
1.2712
4.02486
1.31103
1.19179
3.59248
1.16206
3.45402
1.46816
4.75062
1.39597
1.25471
3.67187
1.30369
3.88792
12.0046
13.8024
8.91948
27.3908
7.59296
149.09
14.6898
14.6535
8.87822
14.4535
26.5077
7.78342
68.8844
607.763
42.1953
158.026
68.4055
124.948
21.7945
41.8187
91.0832
36.3479
14.565
14.2941
29.7987
23.5255
32.58
38.3181
377.81
87.04
21.8795
43.5409
38.2169
31.8798
171.392
109.399
53.8945
24.3275
93.6786
253.516
48.5941
37.8689
24.2075
67.4746
81.4284
44.6085
19.7925
16.0997
41.2008
1.39167
9.77844
3.10499
8.75122
24.0058
3.73743
20.5043
7.8756
3.91485
17.6142
8.35953
1.15209
6.75491
18.6106
2.53636
3.66625
17.9311
8.12809
13.1114
3.22003
16.6769
10.215
86.5227
35.5198
8.17086
25.7863
3.70006
5.60005
14.0078
25.7127
6.0688
12.5847
32.4282
14.0619
12.11
1.49018
3.5499
4.71827
23.0629
3.18988
10.5331
4.42175
11.4028
25.8518
9.73328
23.4831
4.53775
5.92846
17.6888
41.5196
5.52814
20.6379
21.8063
24.1165
16.379
95.2833
21.0794
10.8204
4.09264
4.46177
1.58551
2.53694
2.02878
3.07312
5.28214
1.77782
1.84901
1.39733
4.35944
1.35198
4.02351
4.73437
1.65467
1.58648
1.20385
3.59371
1.26527
3.24787
9.51714
2.75873
2.6393
1.96095
6.38038
2.0403
5.7805
1.42286
3.72532
1.05191
2.86833
1.33684
1.10471
4.54301
1.46144
4.26841
1.16266
2.68024
1.51126
1.13229
3.99071
11.9678
2.89111
3.33031
2.34523
6.77776
2.12364
7.21439
1.73042
5.408
3.20291
1.37649
1.32346
4.94388
1.80546
1.67904
4.34874
1.192
2.97121
1.55642
1.26516
4.56132
6.85634
7.17771
4.65654
4.55492
4.51543
3.4493
6.6738
6.87315
4.55554
10.4076
4.50418
10.6662
8.28768
7.09949
8.33154
4.98519
4.23497
4.33293
4.9509
1.43701
0.203452
0.208889
0.183669
1.13611
1.18713
0.179557
1.37147
0.200826
0.200748
0.17828
1.13825
1.15261
0.178031
1.29095
0.1975
0.194751
0.172775
1.04559
0.184712
1.07471
9.62753
2.09149
1.97983
1.98797
9.47421
2.10065
9.63331
1.90436
9.29293
9.73123
1.78349
1.91661
9.73444
1.77244
2.01181
9.51967
2.14332
9.68455
2.12717
2.0263
9.6698
9.40469
2.95561
2.96975
2.67108
9.15153
2.66175
9.12777
2.418
9.00783
9.25351
2.23847
2.26767
9.09474
2.38356
2.45326
9.21988
2.29184
9.34198
2.44702
2.29577
9.18806
1.9285
9.25
9.68984
1.79295
1.92801
9.62491
1.79325
2.02365
9.45059
9.40667
2.11733
2.14206
9.52192
2.00185
2.04314
2.16022
9.66005
9.49283
2.04075
2.16409
9.60696
8.41315
2.48013
2.48976
2.31271
8.47514
2.30393
8.502
2.17919
8.74515
8.86333
2.09408
2.08265
8.69925
2.19083
2.1755
8.64065
2.07167
8.8307
2.16736
2.07916
8.66597
1.88141
9.04091
8.92396
1.9639
1.96491
9.05642
1.87708
1.80647
9.08739
9.14398
1.71477
1.8155
9.14559
1.70633
1.89471
1.98425
8.9284
9.05694
1.97633
1.90399
9.05818
1.91868
9.17461
9.00981
2.01077
1.99937
9.13012
1.93013
1.82623
9.12024
9.15886
1.71871
1.81925
9.1813
1.72597
1.91517
1.98885
8.97917
9.07564
1.99595
1.90794
9.09966
4.61224
1.43309
1.35005
1.17697
3.70205
3.5345
1.24745
5.35248
1.52029
1.42718
1.25004
3.86865
4.01274
1.32851
11.8844
2.01938
12.0979
12.0743
1.99328
2.01847
11.8601
12.5016
2.02568
12.3029
12.2778
2.02543
12.4746
2.02672
12.2382
2.02607
12.3946
2.01488
12.4326
2.02528
12.2025
12.0363
1.9835
2.00117
11.7851
2.0142
12.0024
11.8222
12.7506
1.87553
12.8444
12.6973
1.90146
1.91437
12.6024
13.0202
1.89411
12.947
12.8041
1.94686
12.8787
1.93486
12.6393
1.9789
12.5353
1.98435
12.7101
1.9658
12.4681
12.5323
1.92877
1.95979
12.2719
1.94333
12.3609
12.4407
12.0971
12.3543
2.00262
1.9918
12.1643
12.2888
1.98399
11.7887
11.3837
1.84857
1.89344
1.92459
11.5376
11.6892
11.8936
1.98483
11.7408
1.90386
11.964
1.96155
11.6612
11.9932
1.96494
12.0932
1.93027
12.1824
1.95351
11.9012
11.5653
1.53734
11.4227
11.1535
1.57884
1.4792
11.3573
11.1582
1.46108
11.2818
10.9
1.35973
10.6225
1.40153
9.94218
1.26874
7.20497
1.19222
9.33167
1.32336
8.01016
10.4326
1.51
1.28448
9.50389
1.40805
8.76303
10.8263
3.6853
5.53291
0.897634
0.814437
4.59974
4.37639
0.779619
10.9388
19.1336
21.1461
12.0484
9.96668
10.9561
12.3662
9.581
3.00103
2.99763
0.668152
0.648199
0.679233
3.18091
2.80717
12.0304
80.6366
25.0847
19.8214
3.38711
0.854578
4.27392
0.728418
4.10332
0.750793
3.57129
3.18228
0.718541
3.24917
0.655674
3.63396
0.69522
2.92564
4.60291
4.94548
1.03722
0.836042
5.59926
0.889076
4.11756
82.5913
4.44445
3.51757
0.91367
0.755011
0.842918
4.23422
3.71853
12.1648
9.69313
11.0462
10.1798
25.2685
21.3091
5.61516
1.13025
7.36402
1.06737
6.39944
0.979529
5.07202
3.68385
0.727792
0.695634
3.02346
0.767199
3.39089
3.20336
7.83535
2.29785
2.29224
2.1333
7.98125
2.13778
7.95129
2.0388
8.18125
8.34491
1.98946
1.9488
8.16218
2.08052
2.00526
8.1777
1.91967
8.33985
2.00862
1.91725
8.14628
1.81513
8.92498
1.92143
8.71156
1.89668
1.83785
8.85763
1.71928
8.86526
8.86568
1.6077
1.7032
8.91002
1.62279
1.80284
1.86556
8.66231
8.76469
1.88351
1.78546
8.80995
1.79246
8.62291
8.51202
1.91056
1.87059
8.65331
1.83297
1.68316
8.7287
8.80764
1.58903
1.68217
8.77073
1.59093
1.76224
1.84089
8.51762
8.7053
1.83976
1.7619
8.66911
6.94457
1.91525
1.93131
1.83223
7.08574
1.82117
7.10666
1.76727
7.32372
7.43978
1.72053
1.70501
7.29188
1.78611
1.75676
7.2486
1.69457
7.42199
1.74981
1.69774
7.27048
1.62939
7.22439
7.3023
1.63264
1.66673
7.39138
1.59697
1.58525
7.62117
7.67715
1.52184
1.53054
1.57587
7.58917
1.62198
1.65372
7.41511
7.59528
1.65854
1.61435
7.51588
1.60682
7.69704
7.571
1.66544
1.65291
7.68218
1.61648
1.5632
7.81012
7.73047
1.51492
1.50739
1.56874
7.75731
1.60492
1.64858
7.55609
7.6438
1.6485
1.60798
7.66865
24.5938
79.6706
5.41792
0.946782
4.86098
4.05872
0.780291
0.813921
4.30593
6.23539
0.997529
5.4961
4.5389
0.917403
5.45891
0.858456
3.63769
0.789617
3.59773
0.664625
4.33187
0.739814
3.13633
10.7204
10.5228
9.27544
12.0439
11.7535
12.0946
19.4738
9.70285
3.34167
0.684553
0.641919
3.1597
0.706534
2.94976
3.57181
2.88953
0.689
2.98039
0.621347
3.17567
0.642641
2.7562
10.7879
11.9692
12.4144
10.0151
2.97946
2.74
0.643719
0.642191
2.82432
0.63457
2.87028
9.27196
9.16551
9.08456
9.32354
3.23882
0.73216
3.48729
0.691577
3.66895
3.06137
0.673762
9.34381
9.36216
9.85168
9.09054
2.73605
0.602292
0.626753
2.60262
0.611522
2.64461
2.67687
2.68856
3.17857
0.611703
0.606789
2.84852
0.586351
2.9269
8.99362
10.0575
9.00413
9.83908
2.532
2.60831
0.583137
0.597816
0.577048
2.65806
2.5062
9.16533
9.80025
9.89378
9.23163
9.14738
10.5669
9.21407
10.1044
2.60328
0.596667
2.90204
0.577155
2.72076
0.575055
2.75666
2.60009
0.597647
0.604909
2.71882
0.584059
2.78802
2.56413
9.82295
8.97596
8.92637
9.61217
2.6785
0.473112
2.46577
2.40677
0.489441
0.476222
2.58229
2.56997
0.482301
2.41041
2.37136
0.509435
2.5225
0.487788
2.30856
0.507041
2.40034
0.466267
2.45491
0.483437
2.26035
9.0236
9.42692
9.037
9.53392
8.94822
9.39349
9.46879
8.97641
2.33578
0.483311
0.454725
2.41142
0.47096
2.28036
2.48618
9.24855
9.13649
9.29916
9.11957
9.03647
9.0292
8.97857
9.09015
9.05697
9.11821
9.05111
9.11823
9.08135
9.36147
9.06585
9.30203
9.03902
9.15029
8.99608
9.24353
9.04754
9.35211
9.01913
9.31023
6.62746
1.75191
1.76823
1.69203
6.50474
1.6724
6.73274
1.75479
6.48282
7.22178
1.5958
1.70872
7.19565
1.61886
1.6395
6.64
1.57777
6.95013
1.61529
1.60713
6.84644
1.50246
7.01643
1.55554
6.82134
1.52533
1.52541
6.91987
1.5077
7.09457
7.01724
1.64482
1.54371
1.55428
6.97966
1.50302
1.53458
6.78133
6.90671
1.51726
1.52898
6.88447
1.69952
6.95212
7.25437
1.59343
1.68404
7.31419
1.63759
1.68407
7.5582
7.1084
1.74221
1.85651
1.60763
7.28381
1.60742
1.55597
7.04321
6.97886
1.59181
1.55925
7.13882
5.72636
1.47473
1.46708
1.50809
6.04859
1.52716
6.03113
1.64473
6.43835
7.46344
1.88703
1.97019
6.50691
1.5934
1.71908
6.69326
2.13667
7.75911
1.76318
2.07746
6.62053
2.19333
10.9869
10.0161
2.39892
2.39041
2.19238
10.7652
1.94038
5.56921
8.99684
1.69222
1.66043
1.97043
8.57209
2.19092
2.38513
9.79652
10.8467
2.37846
2.20915
10.7112
2.39211
10.3677
8.9881
2.26418
2.30154
10.6672
2.43535
2.13196
7.88607
9.79596
1.74545
1.8503
2.02843
10.65
2.33964
2.37866
9.41919
11.028
2.35701
2.25
10.9735
8.61821
8.98441
9.04264
8.73245
8.7981
8.69509
8.69402
8.79435
8.99672
8.641
8.73213
8.84306
8.9573
9.17773
8.97537
9.1304
8.89217
8.61475
8.77995
8.70412
8.95513
8.73698
8.99964
8.73191
8.65256
8.63972
8.665
8.59079
8.7104
8.54464
8.55842
8.64452
8.76726
8.66748
8.80329
8.66701
7.73951
7.84221
7.58197
7.42327
7.15745
6.27284
5.83203
7.51289
6.71022
4.81125
6.4353
5.21147
3.10947
17.9227
33.5714
3.593
3.73607
3.06618
16.9966
2.71809
7.82492
12.6275
2.41922
2.35694
11.8956
2.7943
3.19748
3.97617
35.2918
18.2154
3.87387
17.3788
3.28625
3.76535
33.2451
4.66424
34.4794
4.27689
3.97609
3.42275
12.7277
14.477
2.51086
2.86999
19.7669
2.9267
4.13138
4.1618
169.668
20.7759
36.6392
5.10614
3.43654
3.15587
3.65656
3.89702
2.59896
4.2934
3.01058
2.8349
4.71049
3.482
1.78406
2.38259
2.43818
32.5492
7.70612
0.776166
0.0976374
0.908262
0.591245
0.0710101
0.0781093
0.534894
1.17673
0.112209
1.12516
0.708101
0.101648
0.836166
0.0894079
0.58169
0.0757955
0.459368
0.0449337
0.699734
0.0667815
0.395913
4.50195
3.71864
4.00688
4.03208
7.16775
7.43296
28.6584
4.83522
0.507192
0.0544627
0.0403675
0.349779
0.0589855
0.362906
0.469248
4.09567
4.9838
3.35216
2.94102
1.07849
0.215944
0.975023
0.543488
0.129038
0.115547
0.62806
0.724011
0.193986
0.863694
0.454502
0.0894006
0.35972
0.102671
0.363788
0.0854651
0.255861
0.0893104
0.292217
0.0927736
0.313462
2.98152
2.58752
2.33885
3.24034
2.72272
1.7794
2.44862
2.07106
0.433152
0.110356
0.0964397
0.42396
0.100862
0.370027
0.498893
3.89364
0.118419
3.99262
3.51706
0.118836
0.105475
3.41642
4.28819
0.153134
4.18187
3.68659
0.137785
3.78656
0.138313
3.22696
0.128433
2.86908
0.11924
3.31875
0.129879
2.78531
3.07997
0.109134
0.085341
2.54728
0.0949651
2.65423
2.97552
2.77661
0.183352
3.08889
2.1874
0.0757749
0.0818921
1.76335
3.67014
0.18039
3.32708
2.6067
0.100057
3.04857
0.0885771
2.28699
0.114487
2.54891
0.0971212
2.71346
0.0932204
2.13681
1.88431
0.0522204
0.0735721
1.39614
0.0742949
1.75218
1.5059
1.97297
2.44165
0.104928
0.0848827
2.36624
2.03959
0.084291
1.50362
1.10142
0.0517863
0.0311351
0.0471226
1.42028
1.17742
1.85755
0.0769977
2.14252
0.0698816
2.24252
0.0625442
1.76547
1.60877
0.0642093
1.32194
0.0403747
1.66622
0.0626862
1.27276
2.99329
0.150417
2.95087
2.57649
0.136226
0.138526
2.61446
2.84865
0.148502
2.89923
2.52754
0.13308
2.47987
0.135511
2.17564
0.118718
1.79438
0.104725
2.12907
0.121182
1.83757
2.22222
0.122999
0.108243
1.9129
0.124991
1.88211
2.25581
1.10545
1.43297
0.0747953
0.0674158
1.37724
1.15627
0.0613306
0.899778
0.960525
0.207443
0.05026
0.0616334
1.20554
0.666793
1.14545
0.0993947
1.71565
0.238364
1.42064
0.079284
1.44993
0.864876
0.053464
0.676929
0.0410603
0.91072
0.0490532
0.637438
1.23471
1.48374
0.0903472
0.0730291
1.52148
0.0745298
1.2016
1.01088
0.772511
0.0625596
0.0522247
0.0632253
1.02656
0.76107
1.27104
0.0936128
1.58875
0.0762626
1.56254
0.0779142
1.29163
0.979133
0.0581016
0.0491053
0.710396
0.0598565
0.950362
0.734272
0.00486698
0.00263721
0.00292574
0.000973223
0.00161746
0.000942853
0.00173538
0.0040046
0.00333489
0.00265639
0.000842528
0.00141425
0.000887188
0.00123353
15.7775
16.7339
4.39538
4.25069
12.4995
1.42542
6.84209
1.30739
0.648403
0.389314
2.72867
5.53066
1.27973
5.80804
1.13168
0.333631
1.08466
0.345177
0.451543
0.205743
0.285688
0.193319
0.432328
0.20961
0.292935
2.96084
2.26347
2.21736
3.18843
2.85508
2.13046
2.78317
2.17557
0.50432
0.249258
0.197072
0.336658
0.220528
0.307369
0.659716
0.221878
0.18877
0.237179
0.198498
0.234171
0.198197
0.223192
1.25672
1.53546
1.59304
1.21104
0.980396
0.710908
0.998824
0.69652
0.212522
0.181103
0.218465
0.189496
0.223672
0.210422
0.189992
1.27642
1.64996
1.62044
1.2994
0.234817
0.249099
0.198405
0.20763
0.251825
0.207821
0.233824
1.36911
1.75382
1.74149
1.37183
1.04166
0.729485
1.0219
0.745205
1.35331
1.68595
1.71818
1.32855
0.238031
0.201182
0.262112
0.21114
0.256635
0.210734
0.238976
2.75575
0.220131
2.7622
2.45605
0.279432
0.22217
2.43231
1.94962
0.121185
2.18193
1.87208
0.0862194
1.64969
0.116405
1.57781
0.0829864
1.1111
0.106356
1.36931
0.112644
1.30319
2.15975
0.266134
0.22516
1.82961
0.225568
1.87904
2.12366
0.730684
0.91706
0.089772
0.078508
0.941028
0.711565
0.0804343
0.5717
0.453952
0.0985339
0.0784538
0.645003
0.0802538
0.399412
0.763397
0.0957995
1.09282
0.109209
0.980903
0.855361
0.0872269
0.544851
0.0712473
0.36737
0.0712719
0.529458
0.0730048
0.37892
0.829629
0.879182
0.0976677
0.0641013
1.05305
0.087772
0.675309
1.13823
0.811475
0.193022
0.235935
0.22108
1.04985
0.907098
1.37228
0.222851
1.55207
0.210033
1.61593
0.220227
1.29522
0.627876
0.0584001
0.0772782
0.338398
0.0792387
0.49579
0.445888
1.68345
0.16569
1.549
1.30143
0.189224
0.168986
1.42446
1.4095
0.152376
1.45036
1.21077
0.154956
1.16919
0.155069
0.987233
0.152533
0.745412
0.152907
0.946958
0.154862
0.784634
1.06929
0.190429
0.167786
0.94976
0.169282
0.857825
1.1773
0.564465
0.854632
0.285218
0.360578
0.760447
0.277579
0.67581
0.284413
0.826711
0.153031
0.170905
0.241323
0.986741
0.184028
24.7873
4.89633
0.425533
0.215069
0.514165
0.168251
0.60001
0.361446
0.202749
0.39279
0.37792
0.251177
3.51857
1.57262
0.261309
0.51079
0.443261
0.564933
0.14881
0.131275
0.60383
0.142452
0.405398
0.34395
0.249175
0.171241
0.142932
0.222548
0.150322
0.386302
0.498913
0.164334
0.744239
0.180903
0.66836
0.15919
0.558775
0.30069
0.11486
0.12354
0.167557
0.192272
0.131844
0.273295
1.79011
1.81967
1.51328
1.49039
0.148433
0.100114
0.141355
0.117512
0.104795
0.102975
0.119759
0.136336
0.0946129
0.13595
0.111327
0.0966389
0.110858
0.0971066
0.110286
0.100702
0.110114
0.105333
0.109965
0.101048
0.110301
1.24653
1.04929
1.00018
1.3038
1.22158
0.958726
1.20156
0.977037
0.11687
0.108728
0.112232
0.118247
0.107397
0.117345
0.11844
0.515342
0.66228
0.486865
0.69794
0.363511
0.245576
0.239518
0.372367
0.528872
0.730921
0.715492
0.541078
0.583257
0.825505
0.784464
0.615839
0.391373
0.252547
0.258738
0.382267
0.567031
0.748079
0.763913
0.55443
2.03341
2.26505
14.9339
13.0145
0.214366
1.44221
0.703688
3.73225
0.332041
5.87282
0.289424
6.92852
2.78963
18.8286
61.6398
1.18644
0.324529
0.378326
1.46304
1.56213
0.334294
1.13802
1.29151
0.392775
1.8474
0.396225
1.39603
1.71098
0.352775
20.3451
18.268
0.31406
2.72618
3.742
1.43754
0.35039
1.11507
0.389522
10.9276
15.0315
1.93184
0.419339
1.78926
0.459952
2.10235
1.78058
0.440064
1.84731
0.407898
2.00012
0.479482
1.55865
2.19357
0.443804
1.66927
0.383582
1.4759
0.44533
1.97682
2.44363
0.418852
120.086
20.179
30.9924
43.782
1.63143
0.395223
3.29764
0.461006
1.95792
2.04759
0.434358
155.344
34.7347
154.887
2.09635
2.32016
0.488041
0.48277
2.30349
2.24073
0.467589
2.37712
0.433259
0.420605
1.85507
2.01584
0.462216
2.23108
2.4912
0.473703
1.91279
0.474374
2.27396
2.30011
0.483169
2.482
2.23926
0.438516
0.483297
2.16117
2.40082
0.471507
62.3915
2289.14
92.2338
211.088
491.52
142.969
96.1451
621.57
278.088
36.5281
77.5901
82.5146
46.5701
1270.15
79.7817
49.5605
42.2212
22.8477
15.3399
176.207
23.4366
35.0698
366.454
31.0468
47.3578
40.9384
71.7353
103.097
3.37966
39.2442
2.56267
2.10106
39.8997
26.9061
2.64825
22.6073
2.13269
2.00053
1.67136
17.3593
13.8389
1.66492
5.12892
2.35318
1.85527
0.938607
4.17961
1.2131
2.49299
26.6926
2.48158
3.84377
1.62651
3.40048
1.20568
4.77152
3.4496
0.747418
1.4075
1.08586
1.32316
0.624264
3.37895
13.159
9.71829
10.0194
1.91512
2.51212
8.50411
20.319
1.27747
3.23889
3.04745
25.3048
10.9994
16.336
6.84105
6.89907
10.3889
3.18535
15.9589
3.03097
4.57901
14.2584
3.2783
2.55048
2.44616
5.04263
6.90492
10.6719
1.52308
4.49252
0.996671
3.04853
4.15071
2.84703
1.40333
1.56806
1.49837
2.17062
2.25508
1.25765
1.49509
0.441052
1.09831
2.2457
0.679341
0.350966
1.06332
2.14301
2.29996
15.5933
0.655144
10.9731
3.65014
1.45591
4.19192
2.38093
1.40592
1.38647
3.09925
10.2192
2.61505
7.07854
6.89013
3.50081
9.09148
2.63971
5.62852
3.135
2.42518
2.10341
7.25738
2.30482
2.50206
6.21241
2.16441
0.815711
7.5615
0.79106
2.74372
1.49691
1.28421
1.35672
1.51138
1.41185
2.39774
2.25901
2.00697
4.33326
1.98532
1.12648
1.18956
1.77768
9.45991
9.47674
3.6564
8.0202
2.97843
2.7828
3.23403
2.2261
4.86306
5.82147
2.48965
1.92856
1.99202
2.57941
14.3288
3.32452
2.79796
3.78804
2.82146
0.833003
6.08312
2.91996
8.43611
2.56656
5.67195
0.703762
3.46317
1.2791
2.00891
1.77112
3.10932
8.15168
2.94346
2.56831
5.89106
2.69404
5.71452
7.67108
1.75952
2.65722
2.34367
3.46857
5.32129
1.61226
1.44927
2.90704
3.60022
1.73457
0.70224
0.885052
1.38842
7.60029
1.2589
3.31767
3.61122
1.20906
12.3533
6.60535
1.168
2.6417
2.47669
2.79515
0.834173
1.25092
0.644215
0.908317
0.632558
1.08992
1.46268
7.51121
12.0113
3.5431
10.2986
3.26926
1.07305
2.55308
2.8211
1.50426
0.698903
0.717371
1.3782
7.98061
12.2554
3.53631
9.68909
3.11191
1.53993
0.757463
2.12556
0.768821
0.824414
0.854746
1.33995
1.20703
2.70319
1.17456
1.11657
1.8836
1.13161
2.11496
2.39565
6.65212
2.06102
2.75261
1.12141
1.73795
2.58988
9.40177
6.07424
2.20618
1.46172
1.34441
2.32713
2.79084
5.96282
4.95558
2.02578
2.49553
2.26415
2.54038
3.79438
1.18575
1.45872
1.85518
0.989648
1.13152
4.89665
2.79441
1.7991
1.8103
1.01351
2.36105
5.54372
6.14824
6.23923
2.65342
2.2401
2.42814
2.69858
2.22529
8.02936
2.29261
1.985
5.26758
1.92533
5.45819
2.41017
8.16481
2.3378
2.02925
5.81906
2.09573
5.59728
7.91748
68.4083
6.57462
8.2902
6.79429
69.1828
9.49964
8.9411
6.81587
42.6142
6.04013
3.25572
8.89974
11.0394
2.8893
3.04794
2.711
8.59
2.52271
10.0394
2.77591
2.4435
6.25819
2.21875
7.47044
10.7187
10.1447
6.36131
6.63401
9.74961
9.89474
6.20844
6.11107
0.896781
1.18369
0.949801
120.983
21.2642
0.761061
4.06667
5.7837
3.0608
2.01042
0.373798
10.2618
18.6759
7.18492
0.246696
0.316504
4.35097
3.66323
6.834
236.276
34.5027
1.74469
1.7495
3.07584
2.63699
1.64737
0.703595
0.955437
1.30744
6.73668
0.21516
4.99333
2.37434
0.198026
2.95036
0.210324
1.42013
0.637919
1.45394
0.452309
1.35563
1.01389
1.06198
3.1935
18.5141
3.10472
8.41747
2.69582
2.35001
3.19216
5.47282
3.82768
2.44292
2.95726
1.8425
1.6999
1.90472
0.91896
0.663335
0.506167
0.986812
0.640191
0.617852
1.06944
35.7318
8.01729
3.11073
12.7825
3.9384
2.24344
2.01242
2.63127
1.37493
1.26691
1.12787
1.22401
1.85823
0.664916
0.790797
1.08891
0.936889
1.0327
0.601989
1.02657
0.601007
5.02125
26.4801
28.2902
15.811
3.93482
14.2372
4.06543
10.8937
7.47278
8.82738
11.7326
11.1302
10.1197
9.36549
5.84467
8.11273
18.5829
4.08342
21.4122
3.55094
18.6748
23.0016
3.94595
8.13289
7.0464
61.1951
6.59732
225.613
259.048
15.5048
3.46711
14.0417
3.48846
13.5864
16.0467
3.70842
44.114
5.40968
7.32922
5.93881
69.7023
6.68406
2.20145
9.32131
2.57839
9.61979
6.79365
2.21211
8.27068
6.14366
5.5007
7.022
11.2571
2.68009
2.41747
10.3434
7.51212
2.30466
20.0672
5.24519
4.96515
181.772
50.0704
4.03885
38.3282
8.57395
2.65033
15.4201
3.09825
14.343
8.94894
2.59157
18.5663
5.29144
29.2306
3.96714
42.5979
4.25689
15.8069
8.18763
12.1715
3.05575
2.49961
13.2082
7.80834
2.56214
6.20589
54.4673
5.55213
57.0509
5.38642
7.52304
249.985
6.30415
8.11432
198.975
6.33685
72.3578
6.18558
56.0129
5.79194
36.9456
5.15046
4.20518
26.994
35.6544
4.84572
28.3964
28.8124
4.77039
24.2809
3.80042
29.4721
23.2339
4.33581
59.7822
5.71302
5.1525
35.2659
73.5489
6.35996
34.6244
28.9084
4.53115
19.9701
3.82359
28.4779
21.9987
4.47302
9.92044
2.96856
15.4082
3.3424
14.4741
10.8173
2.9869
7.24076
2.51172
2.9721
9.55298
9.69413
2.52113
7.1299
7.4489
10.9095
2.99479
2.5775
9.95247
8.15748
2.54404
9.3344
3.15837
12.7713
2.93954
13.4204
2.86057
8.90992
12.3893
3.19519
3.60409
17.4299
20.5025
3.14794
10.6454
9.12001
2.82125
16.45
3.2455
9.30218
15.8164
2.69377
13.5708
4.21063
23.5916
3.37542
13.7828
23.4364
3.54146
8.60418
12.4074
3.21477
2.62718
14.6017
7.80539
2.66498
9.03219
6.62519
6.84577
11.5763
3.02319
11.6841
11.1412
2.73991
2.8886
10.7295
11.7267
3.04929
11.6763
11.1829
2.95886
11.2689
2.9274
8.79478
2.70867
2.44497
8.81637
8.72593
2.67621
8.76215
74.6788
6.12986
16.4304
4.88293
29.6803
42.092
6.08513
8.7626
2.47187
2.38965
7.00794
2.63086
8.28126
7.99301
113.923
6.1653
40.1785
5.07114
114.278
40.3008
6.2897
9.79208
7.97151
8.02002
11.3468
2.49039
11.0972
9.45416
2.51334
10.0192
2.29237
10.7177
2.38216
10.8463
9.09668
2.08734
8.92087
2.17465
5.41063
5.99087
4.26784
6.23306
5.2678
6.68518
2.24351
1.86157
5.94194
7.1326
2.04561
5.54248
7.14148
7.20272
6.47713
6.42907
1.5242
0.338917
1.54872
1.27191
0.300091
1.32895
0.277847
1.75938
0.332434
1.6351
1.24108
0.242816
1.22196
0.25936
1.16058
0.242024
0.292104
0.966457
1.12281
0.261677
0.994518
5.15543
3.43868
5.11672
3.55687
1.20846
0.307891
0.313588
1.05841
1.26668
0.283391
1.02624
5.15025
3.67176
5.14125
3.62435
15.9062
15.8898
1.98244
1.23458
1.77953
5.8207
1.40269
6.90991
1.24703
1.69637
1.18696
1.69778
5.52037
1.20503
5.52136
1.19998
1.05711
0.31975
0.198676
0.423706
1.06317
0.319452
0.422876
4.46839
3.09467
4.89218
2.95338
1.12259
0.390852
0.211982
0.517034
1.32459
0.340366
0.455843
4.27853
2.88286
4.31892
2.83961
0.278128
0.235243
0.323137
0.23145
0.327047
0.275294
0.237803
2.57539
2.5709
3.09343
2.06005
1.50084
1.18521
1.53965
1.12822
1.90684
2.412
2.40534
1.92819
0.477613
0.392749
0.497607
0.427105
0.512595
0.42462
0.471002
0.22344
0.185102
0.189696
0.269965
0.26959
0.189635
0.223956
1.75868
2.31156
1.80118
2.24416
1.31416
1.02134
1.35577
0.985322
0.238616
0.196746
0.306207
0.202733
0.242723
0.289334
0.201881
1.68666
2.2036
2.15875
1.73115
4.83514
0.187295
1.73622
1.71996
0.45282
0.185064
4.79117
0.569258
0.8266
0.832009
0.564526
1.70033
0.440295
0.177552
4.71942
0.178872
1.69442
4.73482
0.0895483
0.0481121
0.0928176
0.135472
0.0942729
0.0884642
0.0497928
0.0994141
0.104055
0.0554079
0.143864
0.0999317
0.10319
0.0544272
0.545834
0.811922
0.804819
0.551985
1.62485
4.49472
0.155743
0.398371
0.158193
1.61397
4.52805
1.65425
0.169497
4.63924
0.415858
1.66482
0.167868
4.60793
0.828894
0.894763
0.413563
0.132992
0.16438
2.06467
0.309237
0.528401
0.861652
0.811145
0.590982
1.3804
0.328613
0.544486
4.84209
0.233474
1.8121
3.72981
0.0687626
0.0415025
0.076162
0.114051
0.0699729
0.0741829
0.0395989
0.0455666
0.0634875
0.0476902
0.0940032
0.0494755
0.0529503
0.0304813
0.456889
0.723048
0.692465
0.480528
1.50701
4.31477
0.136768
0.347801
1.53844
0.132668
4.22748
1.39789
0.131044
4.05134
0.301512
1.44798
0.108136
3.94156
2.63845
2.78623
2.18131
2.06522
0.617795
0.245025
0.499521
0.299221
0.229641
0.336087
0.230002
0.366621
0.169831
0.386227
0.206934
0.145601
0.199427
0.150182
0.175934
0.150008
0.158856
0.168475
0.172034
0.153174
0.170525
2.02623
2.09908
2.49538
1.64454
0.270275
0.240818
0.260004
0.278898
0.282952
0.242684
0.273889
1.72389
1.29692
1.62927
1.37574
0.717284
0.946528
0.958194
0.70902
0.512889
0.348526
0.519335
0.34454
0.731658
0.988556
0.976262
0.741235
1.0323
1.77331
1.46046
1.32824
0.581691
0.365377
0.542361
0.392248
0.824555
1.02414
1.08941
0.771277
0.274703
0.332137
0.0313082
0.277617
0.190058
0.0959032
0.619674
1.14045
0.340745
2.78574
0.378355
1.03689
3.0149
0.137068
0.100113
0.0598569
0.183567
0.105169
0.121592
0.209866
0.950088
0.325113
2.67468
0.31137
0.990651
2.55796
0.0875357
0.130167
0.0654748
0.0411976
0.0668558
0.081371
0.145253
0.102602
0.0821709
0.169234
0.0474037
0.105459
0.0811133
0.163787
0.0302056
0.0607784
0.0204053
0.024248
0.0244104
0.0298883
0.061425
0.0774483
3.1765
1.14247
0.239916
1.13204
0.0786244
0.236808
0.0337263
0.0282725
0.0222807
0.0658054
0.0279966
0.0342308
0.065403
0.0917064
3.63709
1.19355
0.257345
1.2934
0.0876154
0.267505
0.0488569
0.0992243
0.0433092
0.0281035
0.0567064
0.0420261
0.0825355
0.0418792
0.0353318
0.0728559
0.0260576
0.0410469
0.0356266
0.074793
1620.03
36.5681
100.746
45.0917
11.0404
243.027
15.1448
75.599
15.7164
15.1381
6.8637
10.0033
5.49421
5.65107
6.91204
58.2287
30.6315
11.1639
9.70531
39.0612
42.2897
11.462
0.163662
0.577312
0.620505
0.185768
0.687783
0.66493
1.46169
2.4444
1.38964
1.28457
2.20991
1.32748
1.15994
0.764345
0.510051
0.452146
2.0142
1.00719
0.655088
0.353681
1.66087
0.733797
0.467691
0.797776
0.516069
0.342893
46.4115
441.861
19.9319
80.5702
3.73909
3.92428
2.89984
88.7499
3.21294
4.05081
5.05561
22.0328
5.73358
1.11066
1.22513
0.93632
3.67639
4.84792
0.830035
0.772607
3.04575
3.53503
0.673253
4.01723
0.660401
0.761876
0.211369
0.512163
0.919214
0.342869
0.461227
0.232896
0.301889
0.158785
0.314748
0.719777
0.194478
0.345866
0.224592
0.151083
0.13564
0.501251
0.462631
0.143712
0.449203
0.442335
0.764988
1.20936
0.837537
1.11684
1.55031
0.997247
16.9751
31.9167
39.8363
29.1928
173.295
16.2933
12.9105
93.2564
39.6663
6.76286
5.58501
4.35277
10.5502
613.172
110.244
13.1984
19.1688
13.5187
9.70556
1.01567
1.45218
24.069
6.65086
1.08653
461.588
14.1548
14.5575
25.3817
32.3683
8.35726
12.1229
17.6856
80.434
35.5664
22.7216
14.0766
1.99525
1.38639
72.4721
9.46502
1.99289
9.69554
1.29931
2.80129
13.041
1.95891
0.0873488
0.205595
0.331778
0.13146
0.0967727
0.182669
0.113511
17.4846
4.95119
21.8751
14.0937
9.00284
3.38357
13.2821
5.49994
1.98224
7.17232
1.87365
1.16032
1.14811
5.069
26.9984
26.7477
13.7203
3.97652
13.7709
3.94878
13.2639
13.3359
12.8407
12.9754
12.4265
12.565
12.0438
11.7031
12.1649
11.7269
3.16185
2.88699
11.4551
3.25822
11.2175
11.9323
11.7895
3.33514
11.1796
2.92824
11.7907
3.31934
11.2073
12.8858
11.9778
12.4223
8.42659
10.4552
8.29012
8.16747
2.23153
9.58138
2.59699
9.97752
7.48117
2.26826
10.2085
7.13476
7.94419
8.55534
10.4166
2.61114
2.2948
10.2643
2.28636
8.73234
8.48541
10.7681
8.62819
8.96439
2.24503
2.57889
10.852
2.26526
10.6246
9.1162
5.74792
4.87747
6.31564
5.54255
6.01981
6.06267
1.68254
4.79771
1.96282
4.81896
1.95766
6.03157
5.66221
4.68146
5.31085
5.3935
5.77961
8.90362
10.5159
2.60774
2.29158
2.28587
10.5698
8.83743
11.0518
9.27548
8.89607
0.99268
3.73688
3.94949
0.984858
0.996263
0.989516
3.7849
3.64748
0.974045
0.981997
0.978232
3.61225
3.65563
0.94668
3.71198
0.967414
0.969364
0.96484
3.6209
3.61402
0.956085
0.952275
3.50305
3.53245
0.902977
3.527
0.917366
0.937535
2.21522
11.7928
9.832
10.1389
2.55748
11.9876
2.24417
43.1201
12.3058
8.14333
56.8111
11.9409
13.253
12.9483
12.8709
12.7455
12.2539
12.6168
7.36269
1.63729
1.92149
7.8584
6.74106
1.92426
7.2568
10.1666
2.56456
11.8594
2.24821
11.9737
2.25533
10.0383
8.21899
10.9259
168.291
80.9821
11.654
4.18397
14.8452
15.0735
12.9003
3.53328
12.8009
3.53035
13.9686
13.5648
13.5865
14.3304
13.8394
13.8512
13.4335
12.9565
13.4226
12.6855
3.41929
2.84528
12.607
3.15985
13.4686
12.2809
12.3297
3.10868
12.1452
2.79892
12.3067
3.10243
12.1029
13.1529
12.8233
13.2358
0.808541
3.25704
0.852571
0.815802
3.21695
0.771551
3.24588
0.922979
3.47471
0.900324
0.860679
3.49739
0.896094
3.42208
11.6038
12.3578
10.7237
6.53362
1.61761
1.89859
5.19565
5.13756
1.90103
6.82385
9.58751
2.32886
2.56416
11.6752
2.2551
9.59449
11.5923
6.03204
5.83973
6.71027
6.35683
7.11333
9.62133
11.6637
2.22775
2.52719
2.22612
9.79644
11.55
9.4166
14.5599
6.6849
8.12718
8.143
12.0759
9.68286
10.062
7.99453
6.09483
5.63125
15.0187
4.18126
14.8873
16.3322
4.21784
4.20325
16.7073
13.5804
3.87838
13.9795
15.3154
3.93996
14.6881
4.01405
13.6638
3.58412
9.2345
3.15377
13.3716
3.63371
9.3222
37.9716
4.45223
4.17791
14.0779
5.40124
16.4862
24.4136
34.0719
4.86951
13.6827
3.63092
32.9993
4.59169
13.7778
14.1301
3.76879
3.23487
9.53071
3.75974
9.45102
14.3321
6.71706
52.1279
5.58885
52.3189
5.58284
15.6621
4.29625
15.41
17.2192
4.37011
17.2962
4.29443
15.8514
4.51603
16.3094
17.9521
4.33596
17.7288
4.46087
15.1527
3.85707
10.0573
3.37439
15.1604
3.94005
9.96076
22.3317
4.33955
3.54858
13.5746
4.32497
22.6096
13.5897
22.4631
4.34793
13.9686
3.568
22.6187
4.34138
13.7737
14.7067
3.87432
3.29243
9.68006
14.6723
3.82249
9.74754
6.49136
2.49418
9.17949
2.96703
9.16979
6.87703
2.55643
6.77803
3.4089
11.5064
2.92418
9.83412
8.17095
3.14017
8.26161
16.287
29.853
14.671
5.95356
10.9685
7.14829
7.77808
1.61008
7.01494
5.50864
1.50058
1.40386
6.28216
5.25973
1.46864
6.70546
5.76731
1.13086
4.48708
1.2881
7.60658
4.95808
5.113
8.28414
1.84981
8.33115
5.67288
1.58552
5.68355
1.63892
8.54794
1.89105
8.4526
5.83464
1.71544
5.94856
1.68228
16.9718
17.1601
2.61589
1.08111
2.57427
2.49296
1.0619
2.5285
7.34506
9.64387
6.45865
5.4
0.567429
7.97784
3.22195
1.52242
1.01579
5.31553
0.313825
106.886
19.3323
11.2641
67.7923
6.6617
9.63743
38.3652
3.50077
0.435371
0.107551
0.0863488
0.240378
0.258425
0.108382
0.361378
0.951665
0.839357
3.16406
0.144468
4.30842
0.544138
0.216544
4.36233
2.36519
2.61227
3.80371
1.95649
3.03885
5.31851
4.29229
1.23063
2.44262
2.13476
23.4943
123.728
2.45622
1.23413
1.84976
0.941127
1.54977
2.8689
1.067
3.31778
1.24628
7.27976
2.66594
1.86441
18.5107
2.33514
1.07024
2.7476
6.63403
0.888136
0.39132
0.179902
5.35838
0.902554
4.1233
0.452829
0.162765
0.372315
0.309204
0.397528
0.295923
0.39816
0.332068
0.367506
0.260228
0.269602
0.305112
1.29571
15.4189
11.9181
1.45514
0.292469
0.736413
0.54218
0.108165
2.37155
0.220016
0.12595
0.284191
0.268635
1.94823
4.87048
4.94217
0.270482
0.277363
1.21401
0.25689
0.287261
0.244305
1.19534
1.25386
0.234938
0.30505
0.242373
1.26776
0.301797
5.21751
2.01591
0.286024
5.11595
0.30968
0.284129
0.344322
0.313543
5.67844
2.18604
5.58167
0.352488
0.310172
1.33838
0.237354
0.327674
0.225962
1.37502
1.30957
0.311825
0.231007
0.224416
1.3029
0.332643
5.38497
2.14035
0.298399
5.45941
0.32629
0.29976
0.669096
1.97348
1.55092
0.757918
0.121237
0.0694645
0.0766613
0.200443
0.193212
0.0671901
0.128133
0.216143
0.170888
0.281887
0.204395
0.220579
0.252387
0.24329
0.326267
0.232905
0.27482
0.14739
0.418612
0.0992527
0.0873317
0.26118
0.170004
0.0824241
0.567116
1.19579
1.27445
0.562065
1.16759
9.98061
7.68295
5.9755
1.97009
1.06001
8.376
1.05574
3.64007
5.18206
4.43533
0.806835
0.935756
2.99664
4.37264
2.08818
0.778697
5.00574
0.928477
6.74229
2.87653
18.7196
18.539
2.72871
1.18184
2.77068
2.88435
1.22291
2.84492
0.564244
9.70274
1.13808
1.06556
3.46246
9.30804
0.531395
1.49789
3.64144
3.01793
1.40955
0.727236
2.54202
1.08106
0.570811
0.591234
2.47393
0.516468
2.67504
6.63584
0.487527
6.77827
0.495785
0.493796
1.34746
8.2542
7.01951
5.47247
1.57509
1.33485
6.69933
5.49334
1.57987
2.75006
2.45969
2.5306
3.73308
3.94788
3.98271
1.58539
3.60096
1.15885
1.27422
5.15147
2.64152
0.772157
2.23519
1.2518
0.96443
0.695357
0.606181
1.76347
0.405858
7.60407
5.61575
0.312878
129.402
1.64871
0.047321
0.330972
0.0917577
0.415973
0.105031
1.28463
0.900784
0.632121
3.42691
2.79941
0.499637
1.67415
19.0818
4.15231
0.221213
0.247779
3.13086
10.6942
23.2205
2.15585
0.256717
3.20737
7.65592
0.57254
0.624176
21.8359
0.607486
0.364422
0.786205
0.440297
0.516875
4.04087
2.32577
1.05145
1.59709
1.04485
1.58822
7.57655
5.21835
24.183
1.78419
155.675
0.97465
1.79307
1.35291
0.820344
1.6068
0.410363
0.378086
5.98135
2.38635
0.402019
6.06831
0.38201
1.98928
0.334758
0.891006
1.57607
0.480098
2.19772
0.519647
0.890284
0.506671
2.27881
0.444942
6.38607
2.47838
0.4377
6.28766
0.453424
0.434186
2.09919
1.35087
1.36134
1.39218
5.4252
1.38307
5.47309
2.28333
1.49526
1.48369
1.52422
5.93383
1.53372
5.88883
7.35924
6.67876
5.25468
5.83218
0.212117
0.625091
0.708253
0.557161
0.199944
0.498901
0.206578
5.5383
5.97045
4.63493
4.27248
3.34183
1.9035
3.0464
2.11945
0.535935
0.296433
0.417582
0.307028
0.577349
0.403101
0.295196
3.87307
2.98982
4.40108
2.53189
0.405298
0.200426
0.276792
0.206076
0.370226
0.288477
0.204238
14.1172
14.004
1.86042
0.790674
1.88076
1.95091
0.816919
1.92892
0.17187
0.548534
0.496914
0.399778
0.163326
0.431977
0.167436
6.25973
4.82711
3.65851
5.12631
5.15797
4.72433
3.56402
3.94668
2.45309
1.70554
2.77751
1.45946
0.522485
0.388393
0.409776
0.593078
0.48344
0.376949
0.676646
0.297663
0.161208
0.228698
0.163595
0.312271
0.227387
0.164244
2.52406
2.64769
1.50431
3.90627
0.353415
0.876706
0.729917
0.430196
0.390584
1.6565
29.7598
0.784147
6.72783
0.238251
0.236027
4.62736
1.79639
4.56264
0.244607
0.234025
1.0107
0.232384
0.199294
0.210891
1.07111
0.959895
0.175626
0.199615
0.199132
0.935199
0.218443
4.30125
1.72334
0.213087
4.38314
0.212381
0.21483
0.559858
0.991172
1.1169
0.491327
0.716499
1.71796
0.962311
1.3799
0.174402
0.168457
3.6954
1.51763
3.8281
0.166698
0.171746
0.790781
0.151592
0.0700473
5.82475
0.156329
0.503699
0.826573
0.114721
0.195378
0.188094
0.889065
0.190019
4.13852
1.59722
0.197543
4.03556
0.197082
0.195448
4.734
3.36383
2.38121
3.68428
3.45031
3.19922
2.27665
2.50268
1.42426
0.844297
1.60481
0.728234
1.4763
1.63229
0.761643
2.59444
13.16
13.2806
1.77491
0.73123
1.76761
1.69176
0.712122
1.73144
4.65436
4.0534
3.012
3.52385
3.65966
3.83407
2.82443
2.68655
1.85239
0.937959
1.74886
1.0076
2.00257
1.37294
2.39655
1.11163
0.821214
0.468187
1.38161
0.505149
0.756835
1.51767
0.941842
0.709717
2.62444
1.27706
0.564348
1.74234
10.6235
0.842488
0.229411
2.35664
1.21391
2.60732
0.708077
0.260989
0.345159
0.0425055
0.0500191
0.205308
0.0426225
0.230119
0.35145
0.484754
0.338786
0.0536011
0.0380225
0.0471355
0.278038
0.154455
2.31996
1.83063
1.73836
2.68168
1.50416
0.0992221
3.16503
0.119893
0.461082
0.573577
0.417278
1.2158
0.35708
0.666431
1.02999
0.433652
7.45549
0.602101
0.37742
0.784927
0.345291
0.14067
0.122514
3.44404
1.3471
0.142717
3.4002
0.120729
0.267525
0.0660769
0.921874
0.0777558
0.312898
0.0542677
0.574183
0.238353
0.403259
0.0672613
0.0444216
0.0469874
0.463156
0.21019
0.13342
3.0287
1.29474
0.106559
3.26703
0.128872
0.109081
14.081
1.8961
1.95143
0.941267
4.40939
1.61005
4.27454
0.863126
0.820419
4.13904
1.57538
4.18353
0.830751
0.372205
3.30378
0.536956
0.276549
1.70904
1.96865
0.218708
5.37347
5.40386
1.10426
0.519949
10.7656
2.62901
3.55638
0.24005
1.6313
0.181061
0.513129
1.19453
0.436286
0.15116
0.188142
0.919288
0.467159
0.127836
1.02355
0.136706
0.168995
2.68238
1.94415
1.29703
1.82258
1.88822
1.55275
1.02601
78.6654
11.864
2.71304
4.24827
0.873516
0.245027
7.64293
1.55148
0.311048
3.65167
16.9686
1.02275
0.50329
10.1933
0.375085
5.55807
0.237541
0.393778
0.248233
0.36884
0.129867
0.0465732
0.12731
0.280806
0.270202
0.0448349
0.135137
0.0476696
0.0123133
0.0132389
0.0669576
0.01226
0.0653745
0.0500496
0.049219
0.0713425
0.0129029
0.0137309
0.0126636
0.050468
0.068403
0.130787
0.264949
0.126016
0.0442285
0.267163
0.132244
0.0441545
0.22663
0.321123
0.344562
0.220223
0.275767
0.42584
0.458845
0.262671
0.1489
0.0508545
0.275985
0.131182
0.268001
0.166347
0.0479852
0.0606957
0.0173818
0.0181922
0.104886
0.0155537
0.0907761
0.0723407
0.054966
0.0779327
0.0162488
0.0137248
0.0140399
0.0815046
0.0534387
0.301897
0.644058
0.521884
0.352694
0.139925
0.265708
0.128345
0.0452966
0.264819
0.136502
0.0457892
3.51935
3.29637
2.25773
2.5247
3.96207
5.3447
4.15942
2.86723
2.97219
125.804
6.2459
1.88204
18.2756
1.3786
0.910278
1.6045
0.744171
12.7383
9.86887
1.05811
4.75973
2.16957
5.80277
1.26131
2.244
50.1675
2.8122
8.24307
1.50815
3.88516
2.67825
1.80236
2.83614
3.04182
2.60517
1.73617
2.08839
1.07241
3.87157
7.94577
1.313
2.97644
1.10744
104.142
6.87558
1.50668
15.4619
2.69881
1.54765
1.43563
0.613292
0.208083
2.19071
0.969054
2.0748
0.64116
0.1989
0.347408
0.0407597
0.182563
0.0434998
0.342758
0.0409858
0.170263
1.61708
1.67141
0.349136
0.151197
0.0421678
0.0408389
0.0407658
0.160485
0.3505
0.581929
1.4737
0.864994
0.169681
1.82942
0.536393
0.186598
1.12252
1.28912
0.384733
0.066656
0.300777
0.206251
0.224492
0.400218
0.0986906
0.208586
0.0250962
0.167116
0.0332972
0.139481
0.0288503
0.253951
1.03725
0.967297
0.509204
7.14525
0.3044
0.132977
0.0346501
0.038733
0.0371189
0.109474
0.328639
0.419293
1.04054
0.244854
0.142654
0.457753
0.47917
0.116847
1.68863
1.11672
1.1105
1.13268
4.5474
1.13712
4.52148
1.57988
1.0393
1.04384
1.06215
4.28903
1.05851
4.31108
4.75451
1.12815
1.16339
0.309332
0.595693
0.303831
0.614208
1.41705
1.22341
1.12318
1.21124
4.47245
1.32806
3.71367
0.185769
1.78776
0.154958
0.106639
1.32307
1.09749
0.116422
1.63793
0.423505
0.425006
0.395705
0.906934
0.998283
0.396347
0.405892
0.422955
0.208256
0.432273
0.476385
0.404753
0.433647
0.0948501
0.683914
0.236414
0.080818
0.542228
0.103845
0.0689728
11.15
1.50251
1.42308
0.40931
1.06773
0.703821
1.40414
0.473689
0.63923
2.85083
0.911199
2.2299
0.580457
0.206574
1.12769
0.213904
0.182229
0.598274
0.639728
0.177611
0.273429
1.22796
0.257867
0.223078
0.743946
0.234644
0.711411
0.212239
0.325901
0.211261
0.12979
0.222014
0.312813
0.204766
0.169921
0.2542
0.110271
0.154957
0.273935
0.158277
0.165147
0.111959
0.141667
6.66183
0.211731
0.0951531
0.137266
0.201916
0.153187
0.142573
0.0562992
0.110579
0.861136
0.0908665
0.0786276
0.209774
0.75802
0.663517
0.0999527
3.26374
0.11508
0.12112
0.261082
1.12897
0.273316
0.234761
0.603908
0.639266
0.224214
1.19272
0.322782
0.28945
0.248548
0.76676
0.682467
0.277203
0.205925
0.399689
0.188459
0.683686
0.351449
0.230824
0.16868
0.194146
0.309541
0.635169
0.153068
0.328018
0.159333
0.185468
9.77281
1.05831
1.06641
15.1358
0.375334
0.954334
0.46923
0.899223
0.361057
0.331679
0.826235
0.444245
0.857403
0.34427
0.160085
1.06805
0.204733
0.168648
0.51228
0.134821
0.591842
0.438763
1.74417
0.479148
0.458278
1.00068
0.38525
1.111
0.445123
0.545931
0.289964
2.77479
0.333312
0.624705
0.452082
0.139686
0.209112
0.115762
0.105497
0.11999
0.266141
0.113006
0.0253737
0.0269044
0.166756
0.168258
0.161234
0.0260961
0.0265377
0.024317
0.158714
0.151931
0.0250913
0.155055
0.0251971
0.0240314
0.037881
0.384647
0.0325118
0.186738
0.211062
0.0388318
0.0318159
0.0461217
0.327549
0.315889
0.0584259
0.0504799
0.263117
0.0532253
6.42731
0.432624
0.496232
12.4113
6.94983
3.35445
4.53703
0.320761
0.266441
0.301009
0.411329
0.409402
0.165629
0.330636
0.160001
0.312179
0.155149
0.929566
0.499624
2.54098
0.676643
0.9093
0.107544
0.201645
0.123721
0.244931
0.125217
0.418819
2.57264
0.503131
0.0517449
0.137801
0.158933
0.046841
3.77788
1.39695
0.688667
0.0776956
0.740762
0.228219
0.169552
0.827448
0.974099
0.609236
0.587192
4.21621
2.64874
0.822839
0.615393
0.331327
0.412568
0.397601
1.25023
1.70462
0.299082
0.0790873
0.360063
0.0923586
0.0260053
0.273758
0.0225704
0.0969063
0.0169537
0.0553088
0.185744
0.0137553
0.101984
0.00944873
0.0212637
0.237402
0.879961
0.216402
0.180898
0.546247
0.473386
0.20344
0.911681
0.817036
0.226743
0.179706
1.13365
0.499344
0.832053
0.131196
5.61899
0.365671
0.0834277
0.253258
0.90375
0.0954876
0.146754
0.278536
0.467086
0.13828
0.238742
0.167603
0.121878
8.59247
0.911817
0.872203
63.881
6.21687
0.22727
3.54365
0.222256
0.472814
0.336631
0.625437
0.258385
1.56404
0.170077
9.68218
2.39724
0.249595
0.628711
0.315328
0.583306
0.240839
1.19224
0.787607
0.300185
0.237545
9.61567
1.34639
0.435632
0.505818
0.871862
0.354895
0.311423
0.749592
0.463221
0.50352
0.284919
2.18763
0.0368617
0.0792831
0.43419
1.33507
0.0287499
0.198297
0.617271
0.0598031
0.0185653
0.142104
0.898118
0.0230055
0.0200757
0.122165
0.0201261
0.118688
0.126018
0.020965
0.0195359
0.0214524
0.133976
0.141965
0.0230387
0.136394
0.0220575
0.0224346
0.0160819
0.0900202
0.0171951
0.104798
0.0914349
0.0163461
0.0171204
0.0147148
0.0779375
0.27698
0.0160698
0.0237725
0.0704949
0.0150935
3.75263
0.918537
0.901769
0.199226
0.431848
0.203467
0.415953
3.19586
0.715178
0.717238
0.116218
0.272166
0.115255
0.275021
2.07889
0.390353
0.41932
0.0430046
0.10889
0.0412874
0.118943
2.76186
0.58554
0.573998
0.082644
0.212447
0.0835991
0.208
0.296645
0.86168
0.164831
0.0283896
0.106347
0.0773178
0.034554
0.192261
0.0245995
0.0466405
0.0197334
0.0353656
0.0469831
0.0177923
3.83463
0.36273
0.343644
0.397568
0.322827
0.178634
0.429088
0.217173
0.182288
0.0819698
0.0586821
0.0923653
0.0686698
0.0744711
0.86595
0.252438
0.0898014
0.0454283
0.110324
0.503025
0.409623
0.757716
0.0402251
0.124964
0.0679388
0.0421003
2.8624
0.851409
0.435524
0.141889
0.0515382
0.92189
0.13784
0.408223
0.0365619
0.0571917
0.030403
0.0300417
0.0718299
0.0426035
0.0328549
0.0159681
0.0367579
0.0147647
0.0132914
0.0260994
0.0134742
0.0235808
2.90046
0.194046
0.199588
0.407958
0.260351
0.206029
0.362479
0.167876
0.180355
0.276047
0.175139
0.031513
0.0192293
0.331163
0.0252756
0.151648
0.418793
0.369272
0.0264721
0.0517113
0.69294
0.255783
0.0384211
0.245042
0.130036
0.0224518
0.0183526
0.227416
0.0230409
0.137631
0.0312187
0.0854176
0.0305802
0.0273641
0.0619536
0.0278051
0.0551746
0.146409
0.182329
0.0947895
0.176849
0.0972507
0.1082
0.270606
0.168038
0.153444
0.29543
0.0899148
0.213222
0.0961162
0.162856
0.123936
1.03276
6.49958
0.103874
1.14057
0.17016
0.505438
0.209065
0.349723
0.290571
0.20442
0.612475
0.418232
0.730802
0.359331
1.37526
0.333887
0.325111
0.0609732
0.132511
0.0619999
0.128403
1.04914
0.23408
0.238433
0.0291209
0.0715046
0.0285688
0.0732883
0.0777707
0.044218
0.0344796
0.056583
0.0293892
0.105312
0.120125
0.128195
0.0182618
0.0147774
0.0173688
0.0149374
0.0548236
0.0613607
0.057412
0.0084551
0.00874756
0.00873319
0.00854936
29.5029
15.2922
21.8904
10.248
72.2784
1.73164
0.418691
1.62174
1.78917
0.547572
0.528239
2.2453
10.4119
9.97085
5.75945
7.14414
7.40121
1.42708
0.413446
1.54128
1.56457
0.521827
1.36971
0.510084
12.2199
474.937
82.3647
8.66241
18.4331
12.1462
11.521
83.3014
24.4622
31.8248
4.32898
38.1604
4.3667
12.6945
531.811
5.28225
12.5564
1.99456
0.388684
2.27751
3.49499
0.551483
2.97658
0.535459
38.4595
21.4242
19.3596
0.443381
3.62048
5.96228
1.4063
30.378
0.611059
4.08105
7.47004
1.23337
0.616897
8.74245
4.71858
0.644574
2.55631
3.15107
0.610775
0.568466
2.05689
3.45291
0.590767
12.4207
79.5143
19.5835
5.20368
4.6135
3.67763
8.87941
11.8621
12.1466
8.56664
6.64979
19.4658
8.57071
12.7729
3.47725
21.4637
24.5635
11.3436
10.2102
4.3349
2.13847
3.4146
3.13701
5.30718
1.19939
6.45527
3.08993
1.97236
2.47416
6.45594
4.39759
14.4724
5.53559
15.7846
14.4581
21.1354
33.107
13.2852
2.52573
14
8.71061
8.44165
0.396303
0.938689
0.652604
2.51754
0.396542
0.510204
0.879453
0.297955
1.13686
0.37287
0.348573
0.26855
0.444202
0.352137
2.48254
2.49986
2.28168
0.422062
0.884858
7.56822
0.803824
5.70898
14.5633
7.31948
0.919853
2.18197
2.29383
5.43585
10.0557
3.57485
0.68981
1.55573
2.16286
11.2386
7.81216
14.1093
2.67821
11.4219
5.20167
7.33151
2.03233
31.0465
2.45936
8.156
7.51181
7.69412
34.5811
2.60027
12.211
46.1849
14.7058
35.588
6.223
11.0824
3.77274
25.7439
26.7869
3.13494
5.65461
3.6479
2.94077
2.19607
7.33779
2.30257
4.35482
7.79967
1.73602
4.48302
7.87967
3.51797
4.82036
2.61623
1.60416
1.89231
2.39284
3.78383
10.0093
5.11927
1.99576
2.42629
23.4804
78.4633
18.9556
8.49887
20.3714
4.2738
4.52161
11.6631
4.96896
14.7517
2.00403
3.55341
2.0913
5.72955
10.8959
5.81635
4.79434
41.0709
20.97
6.02071
4.86498
5.2391
2.29806
8.56852
2.7785
5.52607
2.25424
6.54624
53.1328
13.872
36.1181
34.2953
13.5436
35.9816
7.34139
2.9454
2.29637
2.14692
15.3345
6.86444
4.09998
1.9956
18.1519
5.34199
7.06215
6.55687
4.92515
1.87194
34.1757
12.8336
15.2374
31.5805
40.1839
5.47923
7.80953
7.74933
27.0427
60.2242
6.67325
6.02312
30.0103
5.19956
5.98411
8.97593
4.15726
2.60192
9.22737
2.23423
6.45665
5.26091
2.36311
17.9822
90.3753
49.6119
21.971
17.5263
11.1312
40.3199
4.74495
10.3451
5.12669
4.75177
3.54184
7.00747
2.06189
11.0427
5.03342
1.92792
24.0159
39.2933
23.3678
25.4573
12.6178
6.77169
4.31417
14.7688
2.51302
19.0808
5.36343
5.522
8.54296
1.91923
5.35627
1.72925
1.52626
5.99301
3.60303
5.52965
1.66106
1.50822
2.93381
20.7903
10.3415
4.16533
10.0191
4.68184
3.20991
1.75843
4.19981
3.37461
1.65751
5.19828
1.80291
1.53478
5.95694
13.7
1.43115
5.11701
4.41116
3.66368
39.0571
27.8036
4.35314
5.16603
19.4435
8.33889
1.04844
1.52861
1.4819
2.91314
2.31609
4.28162
3.53895
7.96254
23.8795
14.7624
14.6655
19.4501
4.62169
4.61844
3.12861
1.69307
28.6167
9.83681
7.01205
3.57143
6.20017
2.46574
11.9293
15.294
6.33525
3.83493
0.891607
3.57239
8.03954
2.22302
1.2595
21.2166
27.5881
11.0907
51.6207
9.74093
7.48766
3.72443
14.597
2.46206
14.9491
7.23319
2.42269
14.2993
18.6926
7.93472
18.3403
8.50945
3.9306
2.54562
1.41165
1.4609
4.98884
2.30977
1.64373
2.79241
4.05296
9.91904
11.8701
3.32229
2.39862
2.01591
1.42089
4.22894
3.11124
1.6529
6.05638
1.29915
3.28389
28.2881
10.8131
3.81862
3.261
11.5773
4.04108
2.08839
5.20988
2.87803
1.02873
6.25318
2.01571
1.15231
1.34858
4.22583
16.1199
4.27907
4.55864
1.47464
4.08065
1.3215
3.26201
4.3312
14.3644
3.61871
1.49791
3.61763
3.45524
1.8862
1.14481
1.2575
1.77469
3.68438
1.3641
18.2841
4.60799
16.2473
4.75883
8.23251
18.3111
2.08211
6.43135
5.35466
2.65575
22.5128
24.4821
6.81117
6.84822
21.0921
9.34606
2.8646
19.6031
5.20338
8.55604
2.92328
24.7127
9.48308
4.88319
5.95058
1.78146
2.56822
1.77478
3.13093
30.308
10.0974
26.2195
5.99003
5.09595
11.5136
10.2145
16.402
15.5724
4.7258
3.31068
2.85654
4.63383
40.3904
25.2979
4.65087
11.9369
11.8459
5.03319
35.8202
22.3619
22.4425
10.5932
4.36022
2.82275
1.5391
9.33336
4.16557
3.33329
19.1548
7.57279
3.80015
4.20309
17.9387
21.7737
48.1291
5.36479
5.1509
19.5115
4.82918
10.567
3.57423
1.43921
3.54364
4.51904
3.48662
10.3239
13.2559
18.5086
17.7968
3.8219
3.59583
3.79285
4.0867
7.54904
18.8979
14.9684
8.31236
6.28012
12.3698
4.01377
12.4861
7.43804
2.98802
16.4444
6.22553
10.448
4.56561
13.9763
6.01551
2.55297
2.21387
10.6232
6.68345
3.04671
31.0872
9.43348
3.61479
18.3496
4.04824
4.00089
10.028
3.20786
11.4211
5.50495
2.1803
3.39621
10.0086
6.58382
3.37819
13.1551
5.4255
2.64918
2.6988
5.08624
10.384
25.9185
9.50315
28.9731
12.5385
10.7908
48.2972
3.05428
2.3057
1.44718
1.66956
2.48665
5.02262
1.54093
2.80011
3.70788
1.79436
1.67445
2.50145
4.44336
1.60793
1.51721
5.35822
2.73329
1.68731
1.06701
1.15984
3.08924
7.25547
2.10444
2.00427
1.35414
3.86904
3.92369
1.40927
17.7521
21.8213
5.06107
1.20515
3.37889
4.08297
2.03579
6.3588
1.33617
4.43355
2.21882
1.58515
8.1144
6.86406
1.44152
5.83975
8.44608
4.18449
3.74125
10.8591
25.3623
55.4803
30.1792
27.3646
59.4797
20.0246
26.1119
7.14167
4.5531
52.8826
9.08421
13.6735
14.4424
14.3167
17.1856
5.41822
12.4176
27.1428
25.4353
2.87365
7.99691
2.48322
1.65313
5.07764
6.10747
1.83255
2.1298
6.93664
2.25454
1.50349
3.77708
1.38261
4.5853
6.01481
1.71376
3.08521
10.4797
4.44077
16.858
1.919
19.0462
4.83933
5.30607
15.7513
15.0788
18.8315
25.9968
4.30368
2.73621
0.984305
1.58124
2.32036
1.42386
5.62901
3.78251
1.11216
1.81268
0.883937
2.13458
3.01521
1.26374
6.92291
3.61397
23.5123
2.47921
19.6132
2.19869
8.23336
50.3755
13.1933
10.8559
12.3763
68.7719
10.0351
29.353
13.6325
12.4496
13.0395
19.5669
7.73117
22.2226
10.2916
11.0399
11.6722
5.22192
72.0333
6.74202
3.77824
19.6141
13.9272
3.61347
35.6877
5.06672
5.50661
3.34669
11.2269
12.4109
3.13216
2.11183
5.70756
1.38904
4.17231
6.22561
2.01314
1.43678
2.19048
7.12413
4.11806
1.52188
5.98239
1.4296
2.25535
3.17507
14.6115
3.93641
2.3052
5.7579
2.0125
6.23654
21.4475
4.41333
3.94753
2.49659
9.02871
7.71675
2.74589
1.65403
6.79034
3.00095
1.25626
5.08936
1.8158
1.16081
1.47653
3.84625
2.50049
0.955579
1.34005
4.14565
1.02597
57.4421
4.50773
7.91626
25.0755
5.81236
10.8648
3.55523
3.80169
9.82397
10.5309
3.546
9.42776
7.82467
2.06586
1.59174
4.73674
2.57319
2.79076
9.96197
3.47783
1.74272
3.21179
3.83343
2.89533
8.24864
7.6784
2.48447
3.22431
1.69105
3.27903
6.64135
2.93106
22.6696
3.64334
6.00882
19.0582
3.52225
9.15858
5.63907
4.71687
17.6876
4.82917
3.71144
3.30149
19.5889
13.512
12.033
11.5926
5.0202
2.61454
1.60717
1.15316
2.78308
4.5541
1.80572
5.73971
2.37399
6.56068
5.69371
8.00203
11.8679
5.73304
26.7453
2.58539
9.38285
59.287
3.14022
6.03431
2.15649
1.2999
3.15421
3.22527
1.99601
6.19615
10.5015
8.18195
9.7058
9.46439
3.68472
3.52617
3.42777
10.3438
3.58838
9.59731
3.10025
6.05844
8.42608
2.67511
2.76406
8.48667
2.96948
3.37423
10.6984
3.34172
9.76845
3.54696
9.81922
3.20397
5.20181
2.65775
1.6075
1.58155
9.50583
2.75628
4.87751
1.44178
3.7695
3.99089
1.37308
3.97433
1.50447
1.32162
1.56402
9.06911
2.87515
4.61803
2.81242
4.61518
1.59063
1.4995
3.25272
7.61578
2.49497
1.46443
3.70526
2.73126
1.58975
3.94358
4.81293
1.43589
4.37491
1.6289
1.45124
1.57384
2.90132
8.40299
5.62924
2.95514
2.90615
1.66899
1.07117
3.36533
3.18672
1.19137
3.17485
1.16042
1.08249
1.09416
3.52767
3.20331
1.22897
3.15548
1.24848
1.09292
27.2399
31.5357
2.12704
5.75612
6.45213
4.48558
1.43984
1.50774
4.04286
24.1231
21.0554
9.31946
6.19674
7.79843
4.95444
10.3529
6.2106
5.58046
11.5788
13.3075
12.8739
12.2015
12.5201
11.9139
12.1086
11.5339
11.3433
11.1541
10.3147
10.9015
10.7787
3.5307
1.44945
3.64487
1.33093
3.47787
3.65436
1.31535
11.7195
11.8267
11.4402
11.9752
1.60357
7.00336
4.79782
3.01892
1.31624
1.15915
4.07516
22.4565
25.5016
9.70471
8.83604
77.8874
30.3173
10.8854
14.8497
5.59079
4.43545
22.3397
6.26973
3.89796
5.09092
19.5278
3.23874
3.53645
4.57553
1.58712
2.69154
8.31874
4.48653
2.40805
4.01125
1.73825
1.45134
7.3254
2.05716
3.88906
2.1901
4.33513
1.38277
6.16938
8.63459
8.44271
6.43081
5.43975
5.16165
7.40974
3.95534
6.54083
8.91176
9.65433
6.7668
2.88386
1.44928
3.44705
1.30931
3.25969
3.11849
1.31042
4.09629
2.62796
4.31108
2.28185
4.73884
5.49351
2.52134
6.85289
11.5095
13.5707
10.643
20.7404
8.76011
4.01416
1.64308
1.32448
2.79562
1.50013
4.135
2.64975
1.98062
1.93777
1.56481
1.34384
2.03857
1.87644
1.36987
2.12772
3.51565
4.97143
16.9854
3.36436
2.09823
5.73024
2.28097
18.6656
4.13187
6.52741
3.72238
6.01965
2.46756
5.90331
6.09128
4.23549
21.6203
25.1113
4.01636
7.91103
6.98671
4.88441
70.6322
31.0092
6.30709
2.95387
13.828
5.61314
2.15417
10.9333
3.58135
1.90706
2.59773
7.98327
4.86031
1.64064
9.48796
2.4497
1.69993
2.54989
11.7404
8.39391
8.04665
3.35307
11.0327
2.59121
14.0103
26.6588
24.8906
13.0782
4.53739
1.51655
3.76001
1.71185
3.80047
4.42267
1.6966
23.6498
12.3884
12.4556
23.6598
7.67657
3.31778
9.69127
2.61163
10.3459
7.31925
2.60718
19.4249
14.5477
6.54767
7.83342
9.31735
10.6517
5.62794
4.89302
3.9721
20.1653
2.26171
9.43506
3.46811
23.954
2.5402
4.6631
75.147
11.0269
3.67618
6.34777
30.4572
2.92105
1.17822
1.55174
5.00118
3.40933
1.68556
1.09837
3.4353
1.30137
5.78415
2.1773
4.11432
1.42195
1.89231
3.87107
22.6484
9.32274
8.53346
8.6843
3.67788
9.79139
3.67595
9.85157
8.83895
3.49801
16.3725
3.2938
3.49638
2.441
4.32178
7.57202
4.30364
19.339
6.3751
7.66081
4.23203
2.255
1.76963
1.61342
3.9611
8.5458
9.70667
3.54235
3.09905
9.87285
8.24022
3.32133
0.930747
3.93929
1.41447
2.6468
1.29282
0.99358
2.45624
12.2108
17.9771
4.15122
1.48472
3.58652
1.68062
3.25657
4.26487
1.66978
11.1037
2.72022
5.38978
2.79555
3.39744
5.74792
5.33667
28.9723
12.5325
22.8092
11.9514
25.0225
20.5328
4.56052
2.70766
1.73241
1.54762
5.08283
6.02941
8.93198
2.55168
2.97546
6.89316
7.63032
2.46474
82.5619
3.45001
14.1444
12.8197
6.96742
2.46547
2.34155
7.52383
27.5968
12.4238
33.7891
11.1132
4.94781
1.72613
3.42284
1.22181
1.65099
5.37292
3.2084
20.9208
7.32958
16.0886
8.73143
3.33652
11.8817
3.56298
3.47627
10.9419
11.2666
3.27812
3.81963
11.8872
3.69028
3.60061
11.0896
3.73396
11.2143
3.49746
10.6572
10.1546
3.57677
3.64922
10.6616
3.36996
3.33774
10.3793
9.72155
2.91055
10.6447
3.15938
3.12459
4.14619
17.9338
25.7134
10.7269
2.77211
2.84201
8.28586
15.6255
82.8286
20.729
6.87178
2.39966
1.61215
4.94887
2.24962
4.68789
7.37176
5.90649
1.88979
4.13697
1.44803
1.99103
6.91582
4.15675
22.5611
21.7903
3.00436
4.03366
2.16723
2.10144
9.2371
2.99066
4.86422
1.4693
5.28322
1.90438
1.84302
3.82735
1.47694
4.74941
1.71667
3.69279
4.12133
1.38425
1.4385
4.34861
1.61573
2.00857
9.01301
5.12186
2.66119
2.8585
5.34569
1.90914
11.9473
11.3392
11.6798
6.88774
33.1714
4.81224
5.10623
29.0625
12.1833
12.0488
11.8986
12.1093
11.0144
11.8471
15.8585
3.74981
2.55887
8.84411
4.05657
7.31579
21.8117
12.437
3.15839
6.38208
2.24986
3.31879
11.6178
6.69481
11.024
10.5633
11.6058
5.66504
24.0323
4.66799
4.1548
27.1762
25.0031
13.076
23.8015
13.074
29.4851
24.8961
8.29349
2.54383
5.1583
1.93707
7.64749
2.83342
6.4123
24.9651
60.758
9.99395
3.0805
6.1141
1.97339
2.8102
11.1395
5.42419
4.6528
11.642
11.6181
3.20188
10.6301
3.86586
4.69968
3.94106
6.88612
2.43511
3.7725
7.98342
1.91395
2.23783
3.85782
1.41624
1.11754
1.07427
3.50886
2.3868
2.49894
2.06946
1.46597
1.56152
1.59257
2.20802
2.47078
3.72238
9.28368
3.81871
7.82246
8.33781
4.03982
4.32349
2.44148
3.83964
1.56554
1.12668
1.15965
3.95208
2.37134
2.09517
2.43347
1.44853
1.85777
1.43586
2.21189
2.7164
4.75665
6.84186
4.37517
17.0522
4.57318
2.39267
9.72342
3.36256
10.2541
9.58948
3.03474
3.18116
9.27573
18.5216
23.7314
3.4297
10.0359
10.1923
9.48852
3.33006
3.24262
9.36845
8.1568
3.08579
6.15177
2.73605
3.00449
8.07637
6.14104
11.0847
5.43837
10.1065
9.09705
5.2314
9.65413
8.27822
2.81993
2.66521
5.91095
2.9412
6.11188
8.10569
29.5411
14.404
12.7627
9.70503
3.4977
9.51646
9.3408
3.34912
3.3977
9.57449
9.87549
3.57563
9.69223
9.33891
3.38472
9.30962
3.43405
8.37949
3.13788
6.15947
2.88538
8.10792
3.18493
5.82128
6.60136
4.41326
9.00326
7.04173
17.4788
8.59072
4.27877
7.79562
8.62217
3.1802
2.95007
6.4728
3.20294
5.68993
9.03438
11.238
11.0268
10.8026
11.0466
6.65033
6.35675
10.7315
8.99133
10.2634
8.21691
8.20372
9.5662
26.4465
4.06899
9.60195
2.9176
23.9323
4.41785
10.3077
10.5158
8.86598
10.1976
27.2033
4.84112
10.1417
2.97677
4.54147
30.8117
10.2685
14.1573
7.62922
8.91945
10.8741
4.18902
13.2862
12.8492
3.5094
10.6856
4.05594
5.60704
26.4645
25.5048
6.84071
5.21937
27.3842
6.15742
4.6488
4.73498
43.1088
6.2484
3.48512
9.1785
5.60097
8.43206
6.49156
11.5361
3.32276
5.23137
79.6745
8.77897
13.1443
3.24286
3.4133
6.69606
10.5612
3.68092
8.02158
7.90762
2.68825
9.53553
4.14704
2.88415
2.46781
7.8972
14.4168
24.2752
34.3149
15.1858
2.24997
4.45869
6.62585
5.64221
1.73094
2.16877
4.14133
4.45436
1.68121
2.95669
1.88242
2.01762
3.52951
3.31642
13.3847
6.30237
17.1581
15.5745
20.6227
14.8874
4.4949
5.92152
15.9812
8.50748
6.49192
4.24025
2.70349
2.05811
5.24753
2.25261
7.1156
3.81285
11.6727
10.2781
9.51242
11.4567
3.36939
1.27191
3.36422
3.20174
1.18141
1.25167
3.18038
3.70355
1.31387
3.37774
3.20599
1.46637
3.45345
1.30783
2.99515
1.44213
2.78013
1.31137
3.10806
1.29431
2.77899
6.66386
21.5442
5.13114
4.32967
10.8463
4.18119
6.13798
7.30454
11.0927
4.22693
4.72322
9.72547
7.57839
4.15855
2.96018
1.15697
1.24855
2.66238
1.2376
2.75983
2.88758
23.9261
4.91358
4.36685
3.03852
9.97864
3.27699
9.51621
14.8505
3.98096
3.81087
2.78985
9.77742
2.88185
9.60268
9.22146
8.20373
6.56707
7.60332
9.64517
9.81058
8.21174
8.0306
6.13632
4.09995
3.09861
5.9275
4.24756
43.8177
8.08441
5.64995
3.60264
15.1555
4.78785
10.6009
6.19114
6.87353
4.53026
10.7536
4.14866
11.0465
5.34288
2.46009
2.1765
1.95221
5.08354
4.1135
2.18812
9.31374
2.71953
2.97053
2.60813
5.85204
6.81183
2.41601
16.6005
3.39799
3.71285
3.12312
9.28353
9.70167
2.92605
9.82741
3.06073
3.11032
2.75673
7.85111
7.35558
2.69594
4.45836
2.99475
2.84725
2.47331
3.64153
2.54759
3.51507
4.81138
3.06839
3.04397
2.5401
3.70943
2.56182
3.74239
4.5906
1.03825
1.17795
1.18893
3.85486
1.05196
4.65138
1.39786
7.8425
1.61824
5.70505
1.60728
1.4093
5.66614
1.2081
3.94433
1.08691
4.78355
1.07311
1.22117
4.72095
0.853471
2.8175
0.786871
3.37227
0.863345
0.776053
3.21237
0.921416
3.51159
0.999335
3.81531
1.00344
0.914765
3.49361
0.931264
1.00798
3.73291
3.90494
0.935683
1.00915
3.57943
1.42111
7.83771
1.62693
5.72348
1.62756
1.41853
5.73649
1.2337
4.99148
1.0981
4.20215
1.10042
1.23115
4.92541
1.23711
1.0984
4.83161
4.1469
1.23216
1.1031
4.87498
9.2442
2.89635
2.67088
2.45373
10.3736
2.63725
9.10586
2.305
8.90838
2.20753
9.07341
2.34587
2.176
8.88147
2.2909
10.2572
2.30334
9.39661
2.43941
2.17828
9.22738
1.97734
9.45578
2.07116
9.40407
2.07272
1.97706
9.49111
1.87394
9.13695
1.76512
9.71983
1.89122
1.74999
9.53606
1.97507
2.0912
9.48661
9.77874
2.07068
1.99388
9.56884
1.96349
9.37889
2.09195
9.25148
1.98043
2.06867
9.38569
1.88268
9.23956
1.8133
10.0182
1.95142
1.76035
9.62526
1.98128
2.18636
9.54379
10.16
2.08184
2.06726
9.64626
0.834763
2.71478
0.758124
3.20825
0.839276
0.755335
3.17859
0.912449
3.53509
0.996754
3.96774
0.910934
0.999529
3.5788
0.921973
1.02217
3.68517
4.05339
0.92898
1.01162
3.64242
1.24749
5.34913
1.10823
4.52231
1.10817
1.25043
5.32478
1.41645
7.96636
1.61511
6.16298
1.60129
1.42778
6.09592
1.24609
1.11645
4.53781
5.38902
1.10811
1.25542
5.33905
1.23442
5.0579
1.09668
4.41516
1.22933
1.101
5.16646
1.42486
8.0336
1.65299
6.23889
1.61214
1.45551
6.08626
1.25328
1.13181
4.52971
5.43924
1.11633
1.27567
5.3191
8.73549
2.62645
2.59549
2.40969
8.88237
2.43762
8.81871
2.24181
8.84062
2.12084
9.06718
2.21896
2.14335
8.90772
2.26854
9.03338
2.19279
9.13077
2.29443
2.16863
8.97557
1.99066
9.41994
2.07315
9.31785
2.08026
1.98151
9.41348
1.91557
9.23697
1.8181
9.48305
1.93078
1.80017
9.45459
2.01449
2.11858
9.3334
9.43893
2.10352
2.0297
9.42757
1.97783
9.25883
2.0364
9.2094
1.95535
2.05874
9.32357
1.91058
9.37295
1.81813
9.47579
1.92715
1.80489
9.44442
2.00091
2.10516
9.26784
9.41565
2.08271
2.0209
9.37538
1.23381
5.52256
4.65261
1.04016
1.05069
5.54739
1.22388
1.43614
8.659
1.60349
7.43355
1.59464
1.44518
7.42605
1.25023
1.08
4.69301
5.59105
1.06944
1.25982
5.57179
0.841926
3.39869
0.964156
3.98
0.955801
0.849571
3.37689
0.834365
0.938638
3.27695
3.94089
0.82573
0.947784
3.33884
1.4579
8.69363
1.60806
7.44817
1.61485
1.45102
7.47196
1.28136
5.71781
1.1148
4.86661
1.10596
1.29103
5.67607
1.27481
1.09044
5.61668
4.83074
1.26762
1.09859
5.64423
1.3054
5.41864
1.11496
5.55966
1.15048
1.26279
6.80108
1.49672
8.48505
1.69454
7.46386
1.66794
1.52867
7.1005
1.32
1.17045
4.70204
5.65556
1.15484
1.34623
5.27794
0.786345
2.52717
0.717635
2.91605
0.793503
0.710762
2.91193
0.871419
3.39765
0.980345
4.09447
0.860604
0.99297
3.42597
0.886033
1.01684
3.4515
4.12163
0.894181
1.00834
3.45207
1.52857
8.93315
1.70006
7.66596
1.68954
1.53703
7.70465
1.32695
5.78129
1.13298
5.00339
1.3107
1.14736
5.82814
1.34362
1.17156
5.82335
5.03178
1.35184
1.16344
5.85635
24.1278
14.0498
24.9625
11.6603
1.88005
11.3943
11.3007
1.94847
11.6284
1.85807
9.66547
1.79003
10.8487
10.5918
1.60249
9.09974
1.75711
10.2512
1.54899
1.66123
7.88519
8.51807
1.71701
9.77407
11.1597
1.92714
1.78803
11.5264
11.5799
1.83017
10.9709
15.0864
27.706
26.0947
4.6114
1.08299
7.23549
1.17465
5.70713
1.01961
5.63307
21.8175
11.1478
18.7156
17.9775
28.1226
14.3668
16.7567
3.66218
3.43195
0.782225
0.837143
3.20148
0.855309
4.01345
27.1378
20.6636
21.4906
52.7634
20.4561
52.605
30.8719
3.91685
0.946829
3.94809
0.813842
4.66928
3.39483
0.896277
29.8222
229.057
19.8075
20.0805
50.2784
20.2659
60.3426
4.27762
1.10699
0.939432
5.78968
0.966111
5.1195
4.78657
8.61527
1.60569
7.10045
1.35079
9.22017
1.54315
6.40148
9.7974
10.6898
1.76138
1.56516
11.0028
1.62586
9.19603
39.1251
21.5702
235.062
35.0582
10.3433
1.74617
11.4349
1.82108
11.2639
10.7146
1.69619
29.5162
19.6317
31.6814
7.92161
1.2741
1.39196
7.27665
1.46116
5.76329
7.10057
12.6647
1.84189
12.5948
12.4415
1.88678
12.5126
1.87727
12.4801
1.83852
12.5322
12.3785
1.87213
12.3249
1.87237
12.2224
1.89403
1.90343
12.0008
12.1688
1.89552
12.0542
12.2829
1.91241
1.91298
12.1815
12.3513
1.90234
12.1156
11.4165
11.7707
1.80081
1.84459
11.7074
11.5317
1.76302
10.285
7.63179
1.45717
1.55426
1.61425
8.41814
9.70994
10.7045
1.7168
9.7557
1.52563
11.0003
1.67031
9.11642
11.2325
1.80516
11.5571
1.67264
11.6309
1.71831
11.0009
11.6692
1.89681
11.8184
1.84004
11.8733
1.86058
11.6014
11.4991
11.1887
1.85525
1.724
11.5874
1.82111
10.9634
11.7395
1.91051
12.0042
1.90328
11.8115
11.9369
1.88308
11.384
1.76242
1.6826
10.3059
1.78798
11.2228
10.6804
4.30097
0.82729
4.22266
0.947531
3.77065
0.854842
4.97097
19.8582
8.93361
11.5047
14.9725
18.3221
12.3641
14.9735
3.36597
3.03065
0.722264
0.800156
2.92668
3.49215
0.780479
24.709
20.933
24.2028
31.9027
21.2233
25.5026
29.8504
3.66944
0.75397
2.85597
0.71768
3.29202
3.12806
0.775143
27.6824
28.3375
21.5251
24.7587
24.6914
21.4632
34.4257
3.87259
0.965976
0.891561
4.67491
4.04776
0.864451
4.40851
5.70746
4.49231
1.10096
0.956511
4.93851
5.19764
1.06295
29.1502
54.4487
28.5495
25.5407
27.103
53.1093
26.1957
186.18
5.39579
5.47204
1.28294
1.06862
6.1429
1.12661
4.8934
50.5354
30.5533
28.5519
53.1137
34.0076
52.9876
54.1741
6.89671
1.2524
7.83378
1.35644
6.93321
5.75618
1.20396
4.59751
0.909007
3.97572
0.956526
4.17006
0.998857
4.30017
7.31252
4.76693
1.06976
1.15687
1.21992
5.89002
5.68214
7.91329
10.2969
1.50172
1.60588
8.57224
9.78501
1.43643
42.7229
26.7127
61.969
46.672
54.7108
236.413
32.8949
27.9514
52.7926
50.6572
54.7982
62.3138
5.78462
1.10178
1.32444
5.64846
6.39023
1.26177
5.19172
7.11243
1.31926
1.55158
8.58224
9.20504
1.37495
6.41023
11.7191
1.76077
11.8497
11.6763
1.6953
11.5313
1.74615
12.0282
1.77259
11.9559
11.7892
1.77884
11.8661
1.76894
11.5724
1.75015
1.63032
11.2794
11.6698
1.72369
11.027
11.4226
1.62576
1.57917
10.196
11.1714
1.6807
10.6838
9.68383
10.7192
1.65085
1.46568
11.0174
9.03508
1.52032
89.849
8.35304
6.71749
1.48865
1.24779
9.03576
1.43225
5.95975
10.2755
1.69685
11.4308
1.62135
11.2615
10.6801
1.58026
7.54674
1.28991
5.91053
1.17661
6.65376
1.35696
5.28361
7.53946
1.51214
10.3047
1.40432
9.70965
1.33882
8.34177
5.82352
3.869
1.01504
0.952172
4.78971
1.09622
4.64355
27.4794
23.2388
6.60874
1.44676
8.25837
1.18464
5.80463
9.0138
1.26395
5.22798
1.22242
1.00031
4.88797
1.15796
5.88867
4.40156
3.61709
0.888771
3.91725
0.892173
3.66253
3.84569
0.874528
11.7507
40.2221
13.511
13.1697
12.2478
10.4386
10.7469
9.72619
11.2761
3.12792
3.01055
0.676158
0.78704
2.83957
0.768662
3.28231
3.20703
0.767764
3.17958
0.672631
2.92677
3.43742
0.764752
11.9497
14.3462
41.1266
13.47
12.7182
3.53213
0.881718
3.68154
0.891961
3.58948
0.871777
3.66333
3.26741
0.799016
3.51598
0.869205
3.14904
3.63765
0.811126
7.41859
6.77903
5.64829
8.22907
6.96616
5.96122
8.77698
12.8202
15.5935
22.9424
15.9632
15.386
16.4341
12.6557
12.0398
14.3272
13.9376
22.4605
11.0318
14.9568
15.3488
3.47906
0.912493
3.76332
0.843451
3.89377
0.849461
3.39199
3.76055
0.850202
3.84281
0.916328
0.854221
3.67106
3.96695
3.61157
3.18038
0.702591
0.77437
3.37406
0.767291
3.39379
10.7074
9.70355
10.0345
10.4184
13.5613
47.0064
14.8723
15.6397
12.6056
3.30597
0.728873
0.656029
2.95901
3.04716
0.730669
3.22907
12.3528
14.0338
46.3333
12.0347
14.5039
4.07185
0.964536
0.885152
4.08866
0.895946
4.26835
3.8564
4.0874
4.6386
0.82146
0.864169
4.17632
4.50316
0.857936
20.4509
63.2453
49.8915
27.039
21.937
231.546
27.7648
16.7113
23.7869
27.0997
17.238
4.2743
6.20201
1.02225
1.08616
5.18838
5.05873
0.967524
17.4464
19.546
46.4534
19.4535
17.7573
4.10878
0.834882
4.22886
0.92681
4.01865
4.58835
0.887702
3.94004
0.894613
4.78076
1.02384
4.53905
4.16715
0.921214
3.48945
0.795846
3.94513
0.888118
3.48876
3.93662
0.82488
8.71321
7.68918
7.34579
10.0134
9.1133
7.0369
10.1166
13.7003
15.7373
23.44
16.3905
15.8514
12.9623
17.6066
2.98274
0.732848
2.69046
0.738969
3.01591
2.63948
0.772591
13.447
17.6661
15.7346
23.4767
13.946
15.8983
16.995
3.69163
0.924985
3.88313
0.863551
3.48642
4.16911
0.865804
4.05024
4.31265
0.874231
0.934056
0.887641
4.08386
4.28803
3.96491
3.4152
0.851304
0.810025
3.94169
3.56396
0.813183
12.1735
13.9448
12.6032
13.127
14.7963
47.9781
15.3253
13.0496
16.876
13.6659
16.7742
48.0438
14.5044
15.9739
3.60101
0.852159
0.882764
3.99753
3.70827
0.827663
3.64947
4.40823
0.973999
0.911973
4.23438
4.01304
0.910956
4.59486
7.62928
2.26019
2.29278
2.13964
7.6673
2.11142
7.73081
2.05857
8.10489
2.00512
8.14243
2.09268
1.9765
7.98714
2.03008
7.8328
1.92975
8.04865
2.0063
1.95028
7.88961
1.89125
8.6497
1.88428
8.98044
1.9617
1.82448
8.97568
1.74774
8.56606
1.6285
8.4031
1.71941
1.65692
8.63169
1.80963
1.84284
8.45682
8.3048
1.86203
1.78516
8.56441
1.83673
8.51995
1.92893
8.28468
1.8556
1.90535
8.40396
1.74026
8.36756
1.63469
8.3696
1.72976
1.64362
8.40438
1.8148
1.86395
8.1942
8.27595
1.88129
1.80054
8.31657
1.18365
5.45446
1.01459
4.52881
1.00323
1.19699
5.41909
1.35834
8.44959
1.50111
7.19677
1.51428
1.34694
7.2316
1.17516
0.987126
4.50116
5.36028
0.995349
1.16566
5.38977
1.33485
8.31979
1.48475
7.14744
1.48667
1.33285
7.11608
1.17283
5.22251
1.00568
4.35877
0.992049
1.19218
5.26123
1.1557
0.976922
5.32046
4.40489
1.15378
0.978304
5.29157
1.23483
5.2531
1.04368
4.35803
1.05405
1.21464
5.24234
1.39555
8.13119
1.52578
6.82357
1.55206
1.3721
6.93432
1.20907
1.00459
4.19654
5.04866
1.02311
1.1884
5.13769
1.37748
7.97947
1.52867
6.8063
1.5351
1.37279
6.82656
1.20041
5.16152
1.01934
4.16209
1.20772
1.01277
5.09707
1.19084
1.00284
5.03188
4.11822
1.18762
1.00512
5.04878
7.16153
2.02096
1.99811
1.90412
7.3896
1.92953
7.28462
1.81095
7.36723
1.74133
7.5218
1.80693
1.74619
7.38298
1.82454
7.5169
1.78195
7.56647
1.85123
1.75883
7.42451
1.72772
8.38344
1.82397
8.1472
1.79146
1.76404
8.23174
1.62768
8.20399
1.54644
8.08327
1.61876
1.55145
8.19978
1.69355
1.73687
8.01071
8.00103
1.75825
1.67707
8.11277
1.64192
7.72606
1.68592
7.64286
1.63631
1.69126
7.74338
1.60294
7.91287
1.54134
7.95603
1.61142
1.53807
7.86836
1.65163
1.72088
7.68843
7.87758
1.70249
1.66491
7.78992
1.20956
5.31834
1.03653
5.70359
1.06827
1.19702
5.70144
1.36349
8.01591
1.47585
7.5289
1.47364
1.37624
7.36668
1.23379
1.10749
4.70479
6.43074
1.0869
1.25753
6.20228
1.37655
7.84784
1.47408
7.51089
1.47133
1.37876
7.44352
1.25158
6.18895
1.09945
4.26889
1.24721
1.10137
6.21106
1.25644
1.11076
6.38681
4.33929
1.26124
1.10581
6.27536
11.6379
19.2994
11.9979
9.62213
4.49574
0.791974
4.02118
3.31666
0.728714
3.6089
0.693491
3.60573
0.75874
4.27366
3.55355
0.641265
3.11162
0.672399
3.1393
0.588616
0.577786
2.65885
2.8253
0.610312
2.88678
9.21035
9.1512
9.6314
8.94835
2.92282
0.646025
0.58387
2.82357
3.10584
0.621923
2.69868
10.4927
9.09287
9.14917
10.0401
2.50746
2.48822
0.543006
0.538312
2.59985
2.4267
0.541223
8.98522
8.63769
8.98147
8.67336
9.36075
9.02583
9.00085
9.29107
2.33145
2.30652
0.521894
0.524197
0.531139
2.33075
2.29476
9.45928
8.94709
9.56707
8.98206
2.43593
0.543775
2.38505
0.531532
2.38051
0.541733
2.4212
2.38407
0.528221
2.39008
0.522827
2.45267
0.530664
2.32827
2.63509
0.555269
2.56301
0.550463
2.73977
0.555697
2.49374
8.98073
9.09042
9.1035
8.9433
2.44767
2.47719
0.568069
0.577693
2.49931
0.560383
2.43426
9.57293
9.15192
9.1352
9.50216
2.49829
0.555651
2.65381
0.560933
2.56086
2.57429
0.553235
9.68414
9.10705
9.82716
9.12715
2.55834
0.552244
0.564156
2.44404
0.559889
2.44255
2.5423
3.43619
0.865063
0.879839
3.44208
3.46673
0.875924
3.39462
12.1028
13.1823
38.964
13.3213
11.8777
3.19572
2.80922
0.694717
0.780594
2.91286
3.1147
0.795275
10.2362
9.40452
9.54954
10.0928
3.0431
0.761109
0.679093
2.68131
2.74713
0.77574
2.981
3.577
0.898036
3.55524
0.882685
3.58732
3.51889
0.896891
11.6467
12.8049
38.456
12.9336
11.5042
2.89327
2.66898
0.633624
0.675818
2.58663
0.673186
2.95349
10.0801
9.89741
9.43826
10.4761
11.3041
33.6161
11.6396
12.2845
11.3854
2.95007
0.73289
0.643709
2.77491
2.64011
0.689692
3.07876
11.5177
13.1815
36.1652
11.8683
12.8103
10.6349
26.3325
9.43475
9.61451
10.4143
9.96557
9.22119
9.41496
9.82512
10.8455
9.75266
25.8913
9.7786
10.7526
2.82835
2.55701
0.61424
0.657245
2.53345
2.84647
0.655344
10.1367
9.33631
9.61068
9.9316
10.7828
26.6346
10.5219
10.9577
9.99559
11.0357
9.86841
25.8376
10.8612
10.0253
8.60076
9.95334
9.68361
8.60293
2.52444
0.534407
2.6061
2.5149
0.513707
2.44836
0.525104
2.60357
0.541315
2.81454
2.68206
0.517245
2.49276
0.526533
2.57322
0.508837
0.516374
2.34031
2.40899
0.520282
2.4816
8.9857
8.90177
8.87578
8.99738
2.43527
0.506006
0.503533
2.32741
2.37616
0.517522
2.38457
9.54862
8.70917
8.6649
9.4265
2.31131
2.2973
0.502763
0.484708
2.35126
2.25888
0.485203
9.24164
8.70283
9.36074
8.71911
8.90809
8.69786
8.67987
8.9122
8.91405
8.64661
8.94414
8.65431
2.40996
0.50842
2.35365
0.500227
2.46676
2.31844
0.490794
2.376
0.510457
2.28136
0.483073
2.41614
0.493537
2.24877
9.00387
8.93886
8.9612
9.00955
9.11904
8.73023
8.73298
9.03738
9.19422
8.72876
9.31061
8.72118
10.179
113.815
9.36347
9.25018
10.321
9.18085
8.70989
8.96115
8.7412
9.44722
7.17201
8.51874
8.55854
8.49855
8.68423
8.90391
8.522
6.99999
4.67258
6.92476
4.79328
7.24853
5.92415
7.66752
5.11696
6.50431
1.76162
1.77561
1.70395
6.41871
1.69059
6.6084
1.75899
6.52118
1.60859
7.21521
1.63158
1.72168
7.18625
1.65749
6.56004
1.63256
6.85285
1.64501
1.63914
6.72714
2.18626
8.65821
1.95801
7.2348
1.87359
2.31487
8.18831
2.36794
10.1968
2.30036
8.5863
2.33518
2.26651
9.06673
2.06038
1.72545
7.08498
7.54162
1.79025
1.95812
7.80459
1.8002
7.01668
1.61061
7.27938
1.67412
1.71913
7.45264
2.05035
8.73638
2.2518
8.18781
2.217
2.14959
7.94841
1.79392
1.68293
7.0169
7.36494
1.66515
1.86426
7.32183
6.13917
1.65321
1.63891
1.60288
6.4226
1.61635
6.34328
1.62939
6.4749
1.8765
7.24684
1.60054
1.90078
6.55663
1.66893
6.74591
1.95372
7.35477
1.68191
1.93897
6.66792
2.65671
9.30995
2.0664
8.8084
2.31207
2.44441
10.3747
2.668
12.4865
2.35324
12.4314
2.42212
2.60077
12.3869
2.65675
2.3715
8.85319
10.7114
2.35135
2.64669
10.6282
2.53302
10.2974
2.27382
8.58891
2.48318
2.30583
10.3832
2.43796
10.4704
2.27978
12.2574
2.17425
2.53473
11.9264
2.58937
2.36898
8.70317
10.6649
2.34847
2.62754
10.543
8.82302
8.5897
8.72241
8.9012
8.83812
8.88384
9.02546
8.7434
8.82423
8.8478
8.96148
8.73797
6.24745
7.3567
7.86094
5.5852
4.9378
37
5.08286
4.14077
5.46598
6.7122
8.30658
8.11537
7.14069
8.21671
8.75302
8.50324
8.60394
6.67471
4.3741
4.86541
6.1688
7.95536
8.55092
8.54723
7.64939
8.14221
8.19378
8.20634
8.17576
7.89106
6.57277
7.73182
6.74777
7.91637
6.86089
7.92175
6.81438
4.58731
6.85304
6.37424
5.02508
4.46755
21.7919
22.1432
3.21847
3.68102
38.1379
3.76285
5.61657
5.31208
46.6868
5.77428
173.773
4.59469
4.2595
34.8682
4.89445
4.15618
35.856
5.01375
3.55224
13.5349
19.45
3.09841
3.01322
18.2141
3.62358
4.33228
5.13709
38.9468
36.9801
5.08159
4.40474
6.10234
6.19645
5.84234
5.77225
4.85902
3.07554
4.80726
3.10446
4.84783
3.13419
4.86345
3.11443
4.62444
4.44569
3.89178
4.14901
0.706352
0.0759341
0.670481
0.501031
0.0658432
0.509683
0.0633978
0.641184
0.0730099
0.648849
0.499126
0.060341
0.507107
0.0613233
0.44013
0.0476971
0.0345171
0.350859
0.44053
0.0482429
0.347788
4.06607
3.62565
3.98572
3.60317
0.443264
0.0510697
0.0354175
0.345212
0.450759
0.049634
0.34598
4.18524
3.58913
4.31197
3.59765
9.62524
8.92661
5.20754
5.56614
1.18038
0.26571
1.28295
0.783248
0.14153
0.707373
0.155134
1.54667
0.282082
1.39169
0.857412
0.185727
0.944819
0.168412
0.670576
0.15095
0.133834
0.608359
0.726856
0.139071
0.5639
3.74195
2.81311
3.49456
3.01925
0.616539
0.119287
0.123746
0.472836
0.559359
0.129474
0.51996
3.9834
3.39244
4.22218
3.21037
3.82956
0.319071
3.71489
3.25808
0.267204
3.35878
0.291075
3.49272
0.260469
3.57178
3.12401
0.217119
3.05279
0.236078
2.7057
0.196516
0.187682
2.24957
2.6402
0.213715
2.30898
2.83195
0.247049
0.237389
2.50558
2.92104
0.265992
2.42744
1.45291
1.81668
0.096523
0.117774
1.78218
1.4818
0.0920438
1.10926
0.815005
0.0427871
0.0576005
0.0596152
0.832532
1.08819
1.15303
0.0722201
0.891542
0.0486722
1.17789
0.0679531
0.870609
1.40454
0.106299
1.69902
0.0793527
1.7286
0.0819918
1.37959
1.58693
0.160006
1.88274
0.117647
1.93467
0.130423
1.54289
1.36329
1.10002
0.138486
0.117914
1.41237
0.145079
1.05701
1.68956
0.207273
2.11339
0.16691
1.74773
2.04545
0.17533
1.27041
0.090952
0.0773383
0.941361
0.102412
1.23344
0.97308
1.85522
0.151195
1.10457
0.894104
0.0576123
1.30543
0.0489983
0.400602
0.0619238
0.658259
0.592192
0.027116
0.374603
0.0355585
0.552734
0.0233796
0.024537
0.337748
0.354088
0.0260819
0.523767
0.806657
0.0343113
0.0272678
1.05281
1.13397
0.0293566
0.755708
0.0784104
0.0174573
0.183118
0.0186455
0.0838567
0.172167
0.0166706
0.0755458
0.0823792
0.599851
0.0757587
0.569921
0.0665341
0.0168716
0.120394
0.01383
0.149297
0.0143885
0.0527137
0.474894
0.0231602
0.320645
0.0203921
0.497142
0.0224573
0.304436
0.623198
0.806118
0.0260827
0.0253098
0.871709
0.0227741
0.567475
0.68521
0.0256805
0.993335
0.0285855
0.953891
0.715128
0.0248878
0.428592
0.0185895
0.0229423
0.232448
0.0205399
0.270882
0.381383
0.266463
0.15326
0.0458961
0.040872
0.149265
0.27329
0.0437743
0.401257
0.57867
0.0402914
0.037784
0.591311
0.0387544
0.392817
0.421267
0.0469327
0.635054
0.0462314
0.619463
0.431721
0.044853
0.252154
0.0351152
0.136531
0.0368398
0.139598
0.0378096
0.246738
0.0364837
0.050726
0.0799508
0.0572647
0.0349749
0.0837138
0.0533768
0.253147
0.0244695
0.0274408
0.177924
0.208969
0.0301121
0.249418
0.047903
0.105439
0.113898
0.10912
0.0522969
0.104268
0.109928
0.307649
0.16999
0.0589973
0.0611612
0.0649206
0.296697
0.176716
0.535204
0.810745
0.106153
0.100017
0.774646
0.562496
0.105491
0.479335
0.0602477
0.068365
0.677254
0.702806
0.0667062
0.462563
0.351087
0.104684
0.101042
0.223201
0.371531
0.105315
0.208469
3.16248
0.273156
3.28321
2.8947
0.220377
2.78089
0.244822
3.37638
0.307256
3.42256
3.035
0.222193
2.98556
0.279436
2.66451
0.203533
0.217762
2.26202
2.61502
0.250583
2.30976
2.524
0.195493
0.184005
2.07025
2.41759
0.215941
2.16925
1.22337
0.0570508
0.0613426
1.61458
1.52945
0.0449769
1.30216
1.01049
0.776082
0.0501982
0.0359124
1.04172
0.0469871
0.750827
1.28979
0.0804051
1.64106
0.0679651
1.59981
1.32646
0.0618832
0.949935
0.0500923
0.0307271
0.761557
0.0365475
1.02269
0.698031
1.64261
0.183739
0.13188
1.92542
1.96734
0.152039
1.60751
1.2188
0.882401
0.0921222
0.0771849
1.15195
0.0979358
0.937048
1.50749
0.152196
1.73787
0.115126
1.4293
1.82752
0.12356
1.34667
0.111658
0.0996544
1.03616
0.123605
1.31854
1.05466
0.183254
0.0379989
0.108575
0.0295109
0.0963419
0.202607
0.0351003
0.313769
0.705127
0.0482436
0.186722
0.464191
0.0464753
0.528072
0.301147
0.0415748
0.476508
0.0397736
0.444267
0.326988
0.0388636
0.191512
0.0314311
0.238504
0.178251
0.104148
0.0401351
0.368517
0.228953
0.041436
0.0376906
0.118189
0.0435968
0.217439
0.125796
0.380071
0.555928
0.0511492
0.050544
0.545873
0.0505197
0.387957
0.363351
0.045203
0.0479157
0.503449
0.523764
0.047153
0.347335
0.24128
0.0408088
0.0477309
0.137308
0.0469762
0.134159
0.246352
0.207811
0.0244269
0.0337774
0.133621
0.110987
0.0257708
0.239583
0.361958
0.550501
0.0335414
0.0338224
0.37367
0.532607
0.0325407
0.226353
0.0297411
0.12821
0.0325989
0.123707
0.233935
0.0316814
0.334825
0.0361312
0.0284684
0.546073
0.493908
0.0269176
0.377248
0.386017
0.0991142
0.0809807
0.257456
0.0905307
0.39967
0.239477
0.482284
0.639955
0.0764198
0.0714349
0.681633
0.451408
0.0744678
0.565582
0.100099
0.100362
0.77944
0.779836
0.0974925
0.572528
0.317566
0.0600202
0.0655563
0.172133
0.29529
0.0684794
0.18725
14.0314
14.4354
1.2774
1.02945
1.40072
4.60806
0.915406
4.02399
1.04818
1.55119
1.09937
1.50626
4.92153
1.14873
5.0491
1.12136
0.980507
0.341619
0.234449
0.439883
1.00373
0.335262
0.432137
3.66847
2.38587
3.52625
2.4418
0.932648
0.298128
0.224315
0.393432
0.856145
0.318017
0.412938
3.77255
2.56387
3.86323
2.50249
0.289862
0.243671
0.325467
0.252693
0.328089
0.253271
0.288589
1.63943
2.21398
2.08941
1.74333
1.23799
0.882805
1.21476
0.90054
0.308783
0.260417
0.355712
0.275606
0.345295
0.314244
0.272067
1.60043
2.00603
2.04149
1.57172
0.271187
0.227903
0.309368
0.237759
0.306262
0.23729
0.272554
1.45236
1.83223
1.43407
1.86161
1.14367
0.852842
1.17728
0.826197
0.259914
0.218315
0.289412
0.22647
0.258812
0.293978
0.226892
1.48699
1.95401
1.90544
1.52758
0.12243
0.381262
0.0408351
0.149341
0.0460521
0.112274
0.419695
1.52148
0.488199
4.39848
0.478083
4.32524
1.54806
0.126033
0.051499
0.155658
0.449038
0.0481524
0.431941
0.13192
1.61666
0.501608
4.50566
0.512622
4.59295
1.58617
0.151961
0.504925
0.199062
0.0628537
0.509044
0.0632036
0.150577
0.145784
0.0556422
0.470289
0.187099
0.489301
0.139432
0.059143
0.231502
0.75638
0.119057
0.309791
0.113397
0.246262
0.717516
1.93922
5.39511
0.613359
5.47842
0.626391
1.90746
0.22396
0.104274
0.301647
0.679817
0.109076
0.697077
0.216629
1.79369
5.22988
0.589844
5.08223
0.569903
1.84648
0.173895
0.555396
0.232421
0.0750891
0.566921
0.171246
0.0763474
0.186393
0.0929651
0.637538
0.250945
0.600229
0.200045
0.084611
2.37692
0.191596
2.18012
1.87501
0.19168
2.05568
0.178203
2.20522
0.175818
2.08406
1.78456
0.175531
1.89351
0.163491
1.50347
0.161182
0.131758
1.32923
1.6011
0.148705
1.24311
1.58807
0.176597
0.144313
1.46553
1.75133
0.162411
1.32103
1.24914
1.64508
0.293924
0.247269
1.4985
1.39846
0.241205
0.794363
0.497923
0.177315
0.145809
0.174149
0.582623
0.693198
1.00563
0.29874
0.905738
0.246085
1.15478
0.237013
0.765879
1.01718
0.190417
1.11913
0.154258
1.25059
0.181664
0.900124
0.795052
0.114103
1.08044
0.108518
1.00629
0.0970343
0.857628
0.656187
0.537964
0.10438
0.0864956
0.741632
0.0915916
0.471743
0.857815
0.125451
1.20153
0.120382
0.962726
1.07684
0.107147
0.601242
0.09299
0.0778696
0.46221
0.0825064
0.651512
0.42559
0.077222
0.0733591
0.0349662
0.0763251
0.0360852
0.0745186
0.0744856
0.157047
0.29503
0.0806521
0.0938031
0.257449
0.181215
0.0823062
0.146649
0.0732755
0.23432
0.07328
0.242458
0.141365
0.07457
0.0834824
0.084812
0.0458548
0.0910225
0.0396188
0.0969972
0.0825033
0.104408
0.0584363
0.0284445
0.063471
0.0673113
0.0632954
0.0520336
0.510692
0.579224
0.256573
0.190677
0.686582
0.272003
0.405859
2.94016
22.2825
0.182678
0.0596493
0.0763393
0.212384
0.292913
0.0733542
0.124357
0.362836
0.305446
0.176581
0.952458
0.281425
2.93294
0.26926
1.40733
0.20048
0.416504
0.0145619
0.0559693
3.1884
0.241623
2.36239
0.132383
0.138238
1.95447
0.256428
0.323553
0.181251
0.141273
0.212871
0.385557
0.170768
4.20086
0.535329
0.162782
20.476
0.367525
0.375351
0.65064
0.257212
0.530194
0.474158
0.249783
0.853331
0.00959474
0.0345154
0.133316
0.0382282
0.698862
0.160156
0.0994201
0.215305
0.0554245
0.0471061
0.0566202
0.107927
0.245388
0.193695
0.356428
0.0865067
0.0919398
0.307777
0.226103
0.0783381
0.862995
0.702383
0.531196
0.582655
0.167679
0.0730064
0.0772342
0.293737
0.271817
0.0685665
0.185059
0.116469
0.0545797
0.0775306
0.356029
0.135527
0.0655804
0.289721
1.95406
0.295648
2.17085
1.90575
0.251174
1.68181
0.310572
2.06311
0.210494
1.88915
1.60277
0.227801
1.76929
0.205451
1.3339
0.222818
0.187595
1.23275
1.49127
0.197359
1.08602
1.65355
0.255825
0.339146
1.17695
1.42106
0.324179
1.41674
1.23042
0.340463
0.273213
1.26252
1.45342
0.354027
1.03017
0.587741
0.425678
0.126356
0.119033
0.403806
0.607244
0.122262
0.785849
0.146029
1.01098
0.135507
0.997152
0.802547
0.133901
1.00255
0.269117
0.407882
0.569467
0.759019
0.37269
0.799509
0.660179
0.17645
0.19816
0.996619
0.86144
0.164376
0.783562
0.770874
0.357341
0.251253
0.433494
0.564507
0.534501
0.399703
0.98813
0.356289
0.950866
0.257826
0.740699
1.19619
0.377027
0.472434
0.187625
0.137899
0.391804
0.312736
0.149749
0.580235
2.12749
2.30603
1.92703
1.74657
0.191109
0.129442
0.199466
0.149479
0.131071
0.148394
0.13167
0.208088
0.130787
0.21747
0.157373
0.130902
0.151763
0.131755
0.151971
0.136875
0.14401
0.149894
0.147968
0.137473
0.152341
1.51726
1.19418
1.4717
1.23287
0.149106
0.137184
0.144188
0.150084
0.14847
0.1376
0.150438
1.56945
1.11077
1.39519
1.27666
0.677455
0.92064
0.905742
0.688541
0.457751
0.297073
0.305585
0.445854
0.657668
0.86163
0.881173
0.641805
0.748512
0.94894
0.722523
0.981438
0.564795
0.297444
0.390782
0.447042
0.783661
0.86445
1.01925
0.643987
39.089
77.538
28.8841
38.7655
63.6141
40.8405
76.2709
293.067
189.878
1755.84
1076.23
49.4667
156.679
159.86
457.636
417.917
1243.5
139.947
159.648
805.944
544.018
589.031
37.2578
43.6773
110.681
101.585
84.6474
74.7628
14.4619
15.2511
457.666
57.435
21.7117
96.245
10.6248
12.9443
39.0661
14.8475
320.161
18.42
14.1904
419.303
15.6648
72.6067
24.7837
10.5891
179.425
2.21411
0.438211
2.56483
0.356443
0.400549
1.81511
2.31371
37.4495
159.296
38.7156
36.5443
430.793
10.1634
23.461
22.9055
591.036
507.969
1423.66
78.4526
33.9418
127.052
69.2753
199.621
215.262
1077.52
116.336
607.032
152.476
681.386
3.08165
2.93961
3.5367
3.66208
0.158326
0.5878
0.517868
0.654115
0.168956
0.748188
0.15579
3.19717
2.73918
3.54267
4.73481
4.26592
5.98489
5.29776
5.32927
0.844139
0.148226
0.156811
0.894829
0.958364
0.149773
0.872597
0.795613
0.162637
1.04037
0.155621
0.860733
0.969101
0.148406
4.198
4.51756
5.42891
4.35554
20.3165
18.9583
0.268641
2.0066
4.19621
0.857771
0.231262
1.90184
0.281521
8.42873
15.6523
19.5368
18.3588
8.91833
11.1956
10.8682
1.97433
0.336193
2.50187
0.301501
1.3312
1.89989
0.323112
90.5748
125.435
26.2049
1.27553
0.223638
1.56685
0.24702
1.73801
1.42879
0.274938
10.1404
9.87428
11.0873
7.74227
1.98178
0.300349
2.83089
0.2609
2.87606
2.01347
0.227788
12.5657
17.8152
74.0477
22.2628
10.7626
19.0568
83.3917
44.8776
19.4859
11.1187
80.575
74.2375
5.51659
473.298
7.10072
8.41966
1.46267
1.44346
0.213019
0.165476
1.54006
1.22897
0.192181
5.58979
6.76348
258.438
4.96508
5.16471
4.238
72.7506
5.08353
38.8182
4.16016
4.04349
82.0054
31.212
27.5467
35.8174
43.9855
80.5307
33.5385
138.523
26.4032
73.6405
43.715
31.507
93.4501
25.8791
1747.64
91.8425
170.779
134.017
196.982
1050.78
53.8324
63.633
188.174
157.148
393.708
69.1637
83.1362
75.6254
36.5192
53.0813
513.338
36.0381
29.9817
624.321
95.385
160.496
344.381
52.4109
1049.55
131.082
470.987
457.162
85.3789
140.73
1355.71
328.689
29.1876
192.414
75.4903
171.801
24.7824
48.3612
12.8708
40.9508
56.1498
27.2225
1090.53
123.95
58.6301
3.29924
3.34901
3.63551
3.84582
0.12634
0.722093
0.688184
0.814458
0.133936
0.137193
0.803986
3.46999
3.41152
3.86307
4.02826
3.18097
266.266
47.1737
3.66468
4.68116
3.35451
4.02272
229.116
3.64641
4.7734
4.66272
31.53
77.5833
30.4111
32.2563
86.3083
36.754
36.6406
322.517
163.05
81.9337
37.9559
773.892
130.962
109.474
21.3676
194.587
40.0706
30.0258
41.9966
71.4467
17.0903
2.4332
3.22912
3.68031
36.8386
2.48671
188.042
3.22288
3.40773
2.77746
3.2578
2.60535
49.2269
17.7692
2.51448
30.2294
3.15353
2.09863
2.46692
1.85497
0.490454
2.3178
0.580126
0.571492
0.441614
1.45893
1.68372
1.74167
0.530008
0.387168
0.382852
0.52635
0.452721
0.325693
0.373326
0.089908
0.116323
0.125129
0.0717161
0.54182
0.467296
0.403283
0.110878
0.180117
0.106989
0.157273
0.249401
0.430114
0.29827
0.225431
0.162109
0.163456
0.217499
0.629761
0.616226
0.537496
0.34127
0.245032
0.355158
0.219114
0.184454
1.39755
0.147332
0.173234
0.128526
0.179594
0.134251
0.457439
0.395913
0.0912201
0.120888
0.0932895
0.0951369
0.125022
0.000400722
0.000398733
0.00039995
0.00041962
0.000421604
0.000419557
0.000421136
0.000400755
0.000400562
0.000400434
0.000422217
0.000421836
0.000421687
0.000421555
0.000495646
0.000494927
0.000495623
0.000523767
0.000524679
0.000523764
0.000524668
0.000492667
0.000491772
0.000506048
0.000492089
0.000506686
0.000506366
0.000505953
1.45569
1.27286
1.21206
1.05279
0.000495834
0.000495686
0.000495798
0.000524726
0.000524805
0.00052471
0.000524794
0.000495632
0.00049465
0.00049538
0.000523472
0.000524442
0.000523457
0.000524384
0.000495689
0.000495657
0.000495619
0.000524658
0.000524585
0.000524572
0.000524558
0.0005578
0.000574526
0.000556429
0.000568438
0.000572814
0.000568979
0.000571628
0.0976378
1.02857
0.0556454
1.56465
0.0852107
0.0620835
1.44148
0.000629146
0.000908046
0.000581387
0.000630615
0.000579627
0.000635326
0.000873998
1.05376
0.555589
0.657147
0.504172
0.792912
0.714422
0.434771
3.0759
0.986366
5.6717
2.88818
0.768427
2.00413
0.973909
0.384219
0.004494
0.00885353
0.00965805
0.235227
0.271495
0.00467018
1.60738
6.82465
5.43909
1.794
1.44157
1.62587
6.00112
0.000446227
0.000428755
0.000429322
0.000418484
0.00042095
0.000437113
0.000417641
7.26569
6.17149
6.38579
5.42673
0.000441845
0.000431814
0.000435678
0.000425436
0.000422746
0.00043198
0.000420899
0.000498255
0.000492679
0.000492864
0.000506926
0.000507462
0.000509291
0.00050682
0.000497117
0.000493355
0.000507611
0.000493834
0.000509091
0.00050769
0.000507537
0.000497248
0.000493607
0.000494133
0.000507854
0.000507815
0.000509291
0.000507655
0.000562712
0.000560746
0.000558647
0.000569807
0.000572525
0.000571783
0.000570141
6.59579
4.2564
2.72029
2.75375
4.7731
5.90233
2.99074
0.129828
1.07512
0.127372
1.48364
0.112295
0.145727
1.4513
0.00110186
0.000671518
0.000678732
0.000603449
0.000660237
0.0012145
0.00066467
0.000660832
0.000596301
0.000698924
0.000577822
0.000578576
0.000659308
0.000706169
0.277333
0.121858
0.0949945
0.216681
0.117728
0.197921
0.309982
0.418901
0.163209
0.311531
0.118125
0.285451
0.147206
0.460869
0.202292
2.01012
1.72425
0.191433
2.09987
0.212705
0.182543
0.794258
5.83428
2.6022
0.65946
3.95148
0.755767
0.69211
0.202174
1.86671
0.170315
1.86304
0.182413
0.187705
2.30012
0.685584
3.42857
0.607759
3.06721
0.600912
0.694738
4.13516
0.0207914
0.0198296
0.00510347
0.00428961
0.0208489
0.0215056
0.0050244
0.000536019
0.000510569
0.000522091
0.000517122
0.000542556
0.000510321
0.000520679
0.00110597
0.00251952
0.00117208
0.000759796
0.000766224
0.00253165
0.00119887
0.0935367
0.000912133
0.00322216
0.00262695
0.00130433
0.000891549
0.0648388
0.000526686
0.000510941
0.000516903
0.000519914
0.000520251
0.000509998
0.000519752
0.00078431
0.00167053
0.000791968
0.000622094
0.000623559
0.00168769
0.000778788
0.0207747
0.000704898
0.00324671
0.00279201
0.00112336
0.000696773
0.0169776
0.604444
0.667181
0.349186
0.700898
0.384351
0.562668
0.924253
12.0677
5.66129
7.4949
8.99301
12.8325
9.39386
5.84994
0.000954996
0.000528322
0.000542791
0.000589332
0.000766026
0.000558428
0.000532666
0.00103816
0.000506323
0.000558803
0.0005397
0.000529846
0.000881164
0.000509779
4.3222
0.99434
2.2154
1.13829
1.22311
2.8414
3.13158
0.0020543
0.00134825
0.0044648
0.0107262
0.0117519
0.00138991
0.00200959
0.00224552
0.00500707
0.0164542
0.00160892
0.00243212
0.0129336
0.00151137
0.337118
0.83197
0.262146
0.620022
0.326485
0.895158
0.26924
0.355197
1.07836
0.678265
0.300041
0.380595
0.993188
0.282841
0.869644
0.894493
0.739204
0.620921
0.637221
0.561099
0.615891
0.704423
0.00620294
0.00530414
0.00523299
0.54774
0.552681
0.00597066
1.23475
0.0438379
0.04068
0.0364013
0.936611
0.038899
0.957238
0.00142995
0.001061
0.00106716
0.000650735
0.000786193
0.000787127
0.000652141
0.189352
0.525116
0.786654
0.760396
0.14153
0.188302
0.525111
2.47102
0.793542
1.87776
1.03044
2.5047
1.83561
1.00155
2.53183
3.36074
2.57608
2.02185
2.10303
3.37087
2.42119
0.00474676
0.000467549
0.000620247
0.000628155
0.000856985
0.000464696
0.00584724
0.00216463
0.000506544
0.00109861
0.00115959
0.000630592
0.0023051
0.000508652
0.000517526
0.000494941
0.000503714
0.00050184
0.000520536
0.000506472
0.000501618
0.00351984
0.000506089
0.000569638
0.000549746
0.000597194
0.00237873
0.000510104
0.70748
1.94119
4.31305
2.43565
1.51899
1.50025
0.886348
6.95061
2.84441
4.48833
3.18964
4.88996
6.61052
3.12447
1.84459
3.72591
1.71409
2.72995
1.52557
3.82685
2.10914
2.45025
2.74424
2.09079
2.08403
2.5352
2.63981
2.02678
2.35797
2.89873
1.81142
2.13731
2.7014
1.94746
2.1902
0.00298641
0.013745
0.00115605
0.00222377
0.0011253
0.0032628
0.0124549
0.00267979
0.0262303
0.00111353
0.00204274
0.00107244
0.0105915
0.00495012
0.0036868
0.0037588
0.00104062
0.00118152
0.00302932
0.00102514
0.00338369
0.00319337
0.0046235
0.00100386
0.00117105
0.00263902
0.00102063
0.00313029
0.00132958
0.0051502
0.00723404
0.000908823
0.000677553
0.000692111
0.000878421
0.0703992
0.187326
0.114709
0.251418
0.151623
0.117642
0.334163
0.721474
0.646204
0.300674
0.448857
0.564403
1.04147
0.289179
0.819427
0.747925
1.0102
1.15581
1.24886
0.847563
0.792092
1.22763
0.277108
1.2159
0.220744
0.237205
1.40543
1.0629
1.01832
0.187649
0.76859
0.191883
0.204408
0.812452
0.918318
0.545578
1.42649
0.39237
1.01605
0.50533
1.51026
0.419981
0.968525
2.03896
1.47881
0.719532
2.08588
0.834682
0.814664
0.0371693
0.0069446
0.00934195
0.047274
0.00766761
0.0536717
0.0326287
0.00290789
0.000844051
0.000595235
0.000863101
0.000869536
0.000703618
0.00649096
0.00330023
0.000724555
0.000958168
0.000600766
0.000897903
0.0036842
0.000717505
0.0770473
0.00971009
0.010279
0.0517729
0.0629328
0.06171
0.0113756
0.00735076
0.000773678
0.000634403
0.00115051
0.00170033
0.000821038
0.00506094
9.38387
3.80986
0.388791
0.319718
4.22921
8.79584
0.474024
2.84312
5.33651
0.267007
0.132036
5.9504
0.173378
2.32182
4.46951
1.00828
1.99295
2.24537
1.91562
1.77627
5.63526
3.11595
2.60717
5.39788
3.14814
1.95342
2.34412
2.06353
0.0382975
1.07774
0.0465965
0.907684
0.0340861
0.0468584
0.778017
0.00719986
0.00577475
0.0059753
0.0088877
0.00663251
0.00775043
0.00596761
5.18177
0.0047885
0.0324117
0.0249166
0.0168629
2.05039
0.00383931
0.184818
0.283777
0.232488
0.145763
0.0203475
0.014703
0.596886
0.00220252
1.2348
0.00307342
0.0186758
3.11
2.30837
3.36838
2.56946
1.77857
2.4038
1.79082
0.0053683
0.795076
0.00777125
0.535967
0.00525044
0.008256
0.603896
0.000620148
0.000550012
0.000552557
0.000540729
0.00055744
0.00055858
0.000540236
0.000562515
0.00062464
0.00055826
0.000562154
0.000543931
0.000542497
0.000560281
0.000587357
0.000539009
0.000541402
0.000536446
0.000546743
0.000548134
0.000535856
0.000548013
0.000595908
0.000545309
0.000552254
0.000538615
0.000537923
0.000550642
4.72375
3.71208
6.67446
4.45739
11.07
5.06261
5.15466
5.78184
4.02388
4.94391
5.50772
8.52877
1.63186
1.92457
1.75116
5.11628
1.50725
7.78656
1.21795
0.0167387
0.0593928
0.0622394
0.13667
1.27127
0.0173618
0.0637055
1.07406
0.159194
0.0183258
1.1998
0.0626914
0.0179966
13.9778
2.46245
2.83672
2.39369
7.1895
2.16419
10.7946
5.01427
0.0283577
0.641564
0.570852
0.0607437
3.00963
0.028886
0.497324
1.2102
0.0660236
0.0295855
1.45247
0.446559
0.0291504
0.0181805
0.000948853
0.0017495
0.00892656
0.0193273
0.00907569
0.00093814
7.72302
0.0184585
0.089172
0.0854904
0.068917
3.84146
0.0171835
2.26175
1.92402
0.00167173
0.0129675
0.0188577
0.0084664
0.000743502
0.000905814
0.00537474
0.0870536
0.0573493
0.414164
0.00980525
2.61136
0.0147756
0.0942561
4.60485
4.20901
4.12254
3.33242
4.93333
4.03374
3.85231
4.4728
3.96116
3.72964
3.27374
3.95816
4.4374
3.75414
0.256061
0.178286
0.0204948
0.02961
0.168023
0.274012
0.0286741
0.18617
0.107269
0.0195424
0.0171781
0.173824
0.112451
0.0199337
0.237904
0.147586
0.0194532
0.026182
0.21861
0.157308
0.0271694
0.137161
0.0961437
0.0175207
0.0147712
0.152553
0.0902671
0.0165668
0.138822
0.125838
0.0154197
0.0228454
0.179707
0.106149
0.0209079
0.106482
0.0648275
0.011883
0.0128717
0.0770917
0.0871453
0.0134116
0.483336
0.381127
1.60536
0.898334
0.455072
0.407924
0.882508
7.2984
1.424
1.45602
1.34634
6.16951
6.57979
1.30782
0.170511
2.1518
0.190601
0.19222
1.76136
2.15907
0.172861
1.44451
7.76395
7.35369
1.4415
1.35267
1.35071
7.35923
8.60676
8.78357
7.7393
7.2952
4.06733
0.730659
0.835448
0.826713
2.67987
4.01058
0.720229
8.97887
8.90084
8.42729
8.37107
1.38328
7.01552
1.42124
1.31965
5.96969
1.27139
6.14724
0.228146
1.97357
0.235735
2.69287
0.205331
0.253991
2.45117
1.96112
7.89725
2.0433
1.87952
6.71323
1.79237
7.2261
2.07948
8.81188
2.07328
1.76984
5.73151
1.77119
5.66409
1.94133
7.97058
2.04138
1.78688
5.72276
1.73144
5.52832
1.66971
5.39542
1.62852
1.43343
4.64354
1.46765
4.55492
2.11959
9.53623
2.18122
1.84259
5.82347
1.79993
5.96868
1.71903
6.33364
1.7788
1.55734
4.81487
1.51219
5.26574
8.50122
8.37743
6.92021
7.03463
0.659169
2.73992
0.610096
4.24257
0.580486
3.69647
0.654836
6.9117
8.49352
6.47143
15.4925
30.5139
5.43945
13.9136
3.32155
3.06833
2.59324
9.35236
8.19115
2.7622
4.76953
102.512
5.03198
3.94778
40.0081
24.7013
4.08077
2.34695
7.32734
2.32239
2.06629
5.78555
5.88351
2.07759
12.8391
2.89018
2.82313
2.42695
7.93853
7.84909
2.46522
2.41437
8.085
2.47801
2.17362
5.94483
6.37545
2.13009
0.0454318
0.0139624
0.0450834
0.0432938
0.00804138
0.0437192
0.013496
0.0413453
0.00779679
0.0126122
0.0402475
0.0417363
0.012962
0.0398152
0.000979557
0.0102841
0.00749256
0.000702391
0.000584703
0.000737521
0.000581265
0.215568
0.238755
0.081563
0.0754979
0.0011806
0.00124001
0.000832313
0.00444428
0.000797766
0.00137417
0.00295369
0.000715583
0.00157811
0.00309227
0.000656666
0.000573542
0.000571704
0.000689814
2.66947
2.29124
0.161457
0.161038
0.00150937
0.0201059
0.0165147
0.00130809
0.000620233
0.000640431
0.000888131
0.00238394
0.00122855
0.000867108
0.00919978
0.000868902
0.00191993
0.0455576
0.00241208
0.0156502
0.000925704
0.00691742
0.0354409
0.00290632
0.000747683
4.82236
30.4657
0.88086
0.221623
0.709863
2.12691
0.750974
0.0407943
0.113032
0.0385335
0.119106
0.000810775
0.000820265
0.00216714
0.000638881
0.000633457
0.00181876
0.000860629
0.894402
2.40215
0.851061
0.0546457
0.172288
0.15744
0.0629567
0.209781
1.06416
2.95119
0.0665087
1.04998
0.0652848
0.205248
0.00235864
0.00106425
0.0038423
0.000656744
0.000681383
0.0140576
0.00110941
1.10921
3.18103
1.15866
0.111803
0.268404
0.294254
0.102767
64.874
22.5819
19.9903
48.6676
22.9017
56.3634
45.7633
1.60783
0.772764
2.83028
2.15843
0.74975
1.36814
0.694935
7.69922
9.94777
9.99639
7.95735
6.00228
7.86745
6.3305
6.40761
3.82291
6.66699
4.23278
10.9435
4.91894
5.56747
0.570729
2.81645
1.27279
3.70072
3.03173
8.9077
1.19349
0.00216808
0.00136149
0.00156237
0.000711257
0.00091912
0.000699438
0.000947914
1.63907
2.43612
0.874658
0.779279
1.55383
0.864768
0.925186
2.5954
2.61923
4.74475
2.66916
1.44106
2.38893
1.76659
2.91216
6.09232
5.88422
3.05187
2.68838
2.57656
2.91122
5.25627
7.86731
4.14369
3.42624
3.98822
14.7691
4.47835
4.67137
4.24428
3.43331
3.50847
4.05888
3.57293
4.59757
4.7779
3.62896
3.27589
3.81137
4.96862
3.78604
3.66121
4.40708
5.39253
3.96086
4.92198
4.19765
4.71633
8.79133
5.23296
5.98165
4.26813
6.197
5.25929
13.3722
19.5068
6.15271
4.71194
12.9642
25.0755
4.57783
4.32214
4.30209
4.83719
4.89508
5.2795
5.60417
4.45952
5.25044
5.14515
5.50391
8.62337
5.4129
4.37126
8.09001
5.18979
6.19718
13.3565
4.34989
4.77491
3.6433
4.17868
4.38191
4.74285
3.71516
4.44497
4.03512
3.72062
3.45643
4.40824
4.16316
3.74893
0.398403
0.0650303
0.0814207
1.71069
0.0488542
0.692798
0.73078
0.502542
1.14808
0.0693763
0.112815
0.0615821
0.624035
0.890475
1.20057
0.178406
0.194141
11.0341
0.0999241
2.76407
2.43102
0.845037
1.34936
0.0764181
0.161305
0.0816234
0.723242
1.5992
0.0940489
0.0329693
0.229277
0.104815
0.226325
0.0984278
0.0316001
0.0846106
0.188075
0.0997153
0.0281691
0.210394
0.0763286
0.0294489
0.0554713
0.155055
0.0751605
0.0242784
0.110737
0.0647225
0.0227928
0.335212
0.195417
0.0235583
0.0320883
0.301472
0.213705
0.0334484
0.233732
0.0533873
0.00970589
0.0126559
0.064322
0.0198573
0.113972
0.194709
0.0376454
0.0796357
0.0229242
0.00967197
0.00872369
0.042185
0.192362
0.052472
0.128302
0.0324167
0.0127746
0.0391219
0.0108169
1.25914
0.709835
1.13894
4.37434
0.602636
3.26191
1.52928
0.443368
0.788265
0.523521
0.509591
0.376046
1.13903
0.432731
3.51349
2.06465
1.45637
1.4162
1.66972
2.53847
2.70404
3.8931
1.71512
2.79508
1.46645
4.02116
1.70119
2.73875
6.09348
2.69848
3.55225
2.82195
3.41048
6.16576
3.00138
4.68137
2.20607
3.50428
2.76219
2.95819
5.77342
2.36161
2.7735
1.31371
1.72674
4.56158
1.25506
4.50514
2.81915
1.71483
2.407
2.70842
1.96154
1.83656
2.0961
1.867
1.49103
4.381
2.921
3.06288
1.57589
2.61703
2.11142
2.3264
5.77689
3.40419
1.9307
3.96251
2.54477
6.31368
4.47638
2.62615
4.26847
1.9561
5.01352
1.42644
3.48428
1.88144
1.47642
5.33024
4.01456
7.58203
3.16832
2.87548
4.77078
3.21551
3.74034
4.7274
3.91172
2.38949
5.40614
3.46992
5.95535
4.12241
3.14557
5.78568
4.22711
0.0294547
0.0204144
0.00605511
0.00817399
0.0292669
0.00960438
0.021503
0.0352959
0.01195
0.0379724
0.00710058
0.0376276
0.0356197
0.0114152
8.81907
75.5696
42.0883
8.38338
92.4562
5.74887
13.1092
4.23178
35.1195
30.6747
3.53286
68.2849
4.64513
3.01606
2.7482
23.7966
19.4356
1.49124
1.92599
34.8192
1.99901
0.102066
0.0668047
0.0697681
0.0963028
0.0816296
0.0788879
0.0686313
0.709846
1.24901
1.069
0.587229
0.760794
0.966923
0.831099
0.64625
0.0856316
0.121599
0.117679
0.101123
0.0914249
0.0902907
0.110974
0.07184
0.0780457
0.0795051
0.0775486
0.0734257
0.0709675
0.0769346
0.103336
0.0968412
0.102362
0.109294
0.0959397
0.108874
0.106926
0.876588
0.375138
0.466982
0.717044
7.85701
2.39382
2.12959
1.93626
8.50812
7.05762
2.15258
4.52064
0.983416
1.22614
1.34371
3.65002
4.94447
0.991342
1.55175
6.56467
3.9385
1.07879
5.66044
1.67962
1.055
4.85746
4.98826
4.17087
38.5236
3.60547
2.77721
4.40431
4.01097
2.54104
3.20656
23.3484
2.15362
2.80042
2.14972
1.17279
0.138746
0.168815
1.00241
0.968597
0.829142
0.142054
0.100891
0.418314
0.703389
0.58999
0.0683629
0.102154
0.361839
0.165348
0.609248
0.779857
0.666003
0.136343
0.139651
0.518278
0.475203
0.0680784
0.100099
0.248323
0.101604
0.304594
0.37026
0.853928
3.23545
0.902816
0.834211
2.739
2.72735
0.757874
9.09712
6.08541
6.21498
5.02598
7.13462
7.07958
4.9199
6.3775
10.2587
6.34397
5.15943
7.95809
7.8491
5.20673
17.0934
6.03632
6.19247
5.00915
7.87325
11.0635
4.88477
5.62373
14.7686
6.31352
5.10627
4.39691
8.66809
4.51827
0.0557968
0.0221715
0.0489836
0.0827028
0.0170315
0.0960549
0.0153602
4.25569
0.139495
0.160149
0.20034
0.219783
0.0230945
0.00503207
0.00553891
0.0230673
0.0218736
0.00516805
0.0254927
0.187958
0.244642
0.218873
0.224554
0.0207043
0.998378
0.0522531
0.0630594
0.0159399
0.0842718
0.0122007
0.0255495
0.0617999
0.029463
0.0208114
0.0754812
0.0179916
0.0908696
0.0334271
0.0646373
0.0309964
0.0219902
0.107572
0.0974335
0.0238567
0.328644
0.0876819
0.154361
0.0735271
0.318224
0.0843701
0.071093
0.077801
0.148861
0.290424
0.306438
0.0813203
0.0687053
0.0660769
7.11104
0.551077
0.464816
0.049125
0.0801608
0.160198
0.062603
0.449665
0.829598
0.477792
0.0420578
0.0473563
0.0514378
0.0405071
0.110036
0.0420953
0.0431047
0.00492768
0.00812912
0.00860732
0.00483939
0.0550274
0.11639
0.0436866
0.00525719
0.00978482
0.0094241
0.00555787
7.74109
10.589
11.0748
8.43552
6.0372
5.99601
8.13737
5.93617
3.33555
3.5269
0.6837
1.1155
1.13027
0.689033
3.83509
6.59388
3.70616
0.672618
1.13213
0.64835
1.15111
11.1179
4.13705
4.14625
0.628265
1.25397
1.24131
0.61475
4.00146
10.4264
4.10753
0.629671
1.12887
0.636849
1.19843
0.0500726
0.0288157
0.172944
0.0151215
0.00183977
0.00121996
0.0155619
7.30348
1.63057
1.62532
0.608869
1.18528
1.13383
0.599754
1.40641
6.59305
1.55911
0.593569
0.959895
1.05263
0.547198
8.17331
2.61329
2.59432
0.536647
0.620491
0.634764
0.586541
1.83699
8.27909
1.95757
0.467574
0.652452
0.417345
0.641451
8.09731
1.32861
1.33508
0.336655
0.908205
0.819563
0.348042
1.56734
8.07272
1.38607
0.342917
0.655364
0.364245
0.732219
0.828528
6.86577
1.03452
0.115003
0.361642
0.412144
0.0989188
1.49262
7.47923
1.25602
0.131871
0.514712
0.460008
0.154355
9.76386
2.39902
2.20753
0.228037
0.754474
0.688055
0.255874
1.73904
9.29286
1.98661
0.203779
0.565259
0.62738
0.17615
0.00156828
0.00122065
0.00112362
0.000865878
0.000677132
0.000664483
0.000823239
0.211434
2.11289
1.81892
0.130732
0.190745
0.123174
1.54616
0.505265
2.90124
2.1803
0.524586
0.462557
0.487605
1.81397
11.6599
3.68254
3.78729
0.499268
1.13511
1.15748
0.472372
3.94187
11.6129
3.86975
0.516725
1.18911
0.541313
1.1708
4.11881
11.5611
4.08498
0.588494
1.252
0.607031
1.23689
3.99309
11.5826
4.04847
0.577022
1.19947
0.554986
1.22208
0.00913397
0.0730821
0.00358719
0.00258838
0.00175899
0.0380581
0.155779
0.0506265
0.117874
0.0319313
0.126285
0.0288764
0.0485241
0.09711
0.0972391
0.108404
0.0255102
0.0393514
0.0420857
0.0234263
0.245106
0.288958
0.116094
0.128869
0.262194
0.0715398
0.067503
0.326953
0.170015
0.343679
0.145827
0.293133
0.0794051
0.0884883
0.227362
0.102737
0.214143
0.095073
0.215125
0.0590646
0.0618494
0.198956
0.0855884
0.194139
0.089665
0.203622
0.0567399
0.0552155
0.199749
0.527439
0.076693
0.197748
0.0922691
0.0626271
0.05906
0.777782
0.247481
0.474111
0.419954
1.50693
0.292932
0.134484
2.4676
0.298201
0.0999365
1.00799
0.124294
0.0892707
0.0756463
3.37378
2.38122
0.208679
0.136149
1.35417
0.15568
0.104908
0.0889848
0.0526871
0.125376
0.041416
0.0919843
0.0261841
0.0320638
2.8052
2.87291
2.97459
1.05702
1.09554
0.978748
0.496618
1.3098
0.41799
1.09544
0.506229
0.638561
0.313195
0.414019
0.522186
1.65602
1.54786
0.681625
1.23792
0.757182
0.881932
0.517455
0.355979
2.12283
0.398726
0.414558
0.44964
0.847871
1.58678
0.534271
0.448351
0.433244
0.427024
0.433135
0.552193
0.788688
0.350803
1.02699
0.565144
0.322968
0.42335
0.367454
2.40838
0.515955
1.78185
9.12381
1.03105
0.59082
1.00089
0.471465
0.415518
0.921719
0.539333
0.564596
1.76203
0.842337
0.30039
0.627592
0.41962
0.456626
0.415498
2.1072
0.791946
6.64397
7.14677
4.14366
8.50073
3.84795
8.19091
6.92708
3.27488
7.18445
3.93656
4.19205
7.49554
11.5487
3.43157
3.48873
3.05258
7.60246
7.10344
3.09526
14.219
3.87037
11.3988
3.38911
2.96999
2.77916
6.39699
6.37033
5.69828
3.42886
8.39612
3.7071
8.78532
82.0225
4.95302
7.424
2.89582
6.96351
3.68986
10.1937
8.98952
3.33796
3.137
2.87124
7.12639
6.71978
3.02955
8.03684
2.61864
4.67078
2.88139
2.63258
5.78645
2.36214
4.16575
2.40425
4.02797
1.78883
2.91073
1.65432
2.16539
3.3778
2.31697
2.38708
1.93845
2.33125
2.25048
1.91078
2.44906
3.25384
2.06177
2.42779
1.92025
1.93696
2.15922
3.64175
2.1205
4.98006
2.87071
2.44297
2.43921
1.8785
0.849897
3.41295
0.838599
0.734317
2.77295
0.744788
2.80404
0.826146
2.85273
3.45695
0.722077
0.826881
0.722822
2.83062
0.863743
3.26261
0.858668
0.756404
2.79723
0.759468
2.76857
0.850915
3.22675
0.852869
0.752642
2.73362
0.751847
2.74217
13.7711
8.44407
9.71876
6.1149
6.46891
8.13789
5.62058
10.7538
9.12272
14.9045
6.63029
10.3981
6.45119
8.76417
11.2867
7.35152
6.68614
5.53338
9.02798
8.4651
6.05413
6.48658
10.7512
6.60552
5.40943
8.02799
5.29988
8.13251
4.17209
3.93942
4.07147
3.53593
3.46417
3.51052
3.40574
5.16646
4.27654
4.42025
3.83081
3.96846
4.39517
3.59383
8.36862
1.4117
1.4305
0.423113
1.03659
1.0413
0.411183
1.45343
8.25544
1.4341
0.43282
1.05226
1.04146
0.450491
1.61014
7.84414
1.5786
0.547221
1.18978
0.576892
1.17216
1.46183
7.9439
1.54543
0.514097
1.07019
1.14348
0.469299
1.4079
8.61125
1.40545
0.400271
1.04259
0.406223
1.03958
1.40568
8.61338
1.40897
0.400522
1.07244
0.395765
1.06243
1.33489
8.39903
1.35192
0.37093
0.977308
0.356618
1.03364
1.38973
8.49616
1.36941
0.379535
1.07565
0.390701
1.05782
3.57131
11.6641
3.44057
0.424656
1.11679
0.453105
1.08567
3.17175
11.5925
3.31077
0.404261
1.01982
1.05894
0.376723
2.56897
10.9057
2.73081
0.305922
0.814465
0.278627
0.876744
3.03211
11.1347
2.88166
0.327988
0.98114
0.928839
0.355849
0.0289961
0.0611298
0.0653429
0.115589
0.0188143
0.106598
0.0197637
0.0306722
0.00599628
0.00616652
0.0256864
0.0284716
0.00654294
0.027281
0.314004
0.374591
0.364205
0.340008
0.0318837
0.0708907
0.0701998
0.128887
0.0240179
0.0223292
0.144686
0.277764
0.272928
0.253107
0.300364
0.0874797
0.0708447
0.148057
0.715874
0.132418
0.356144
0.0609832
0.0146721
0.0965649
0.155377
0.0988936
0.0103953
0.0708878
0.0130023
0.680722
0.514021
0.596199
0.53691
0.0501335
0.0919501
0.0991596
0.240765
0.0372187
0.219684
0.0403196
0.640173
4.28041
1.07073
0.594381
0.0875278
0.0431919
0.0426337
0.0317108
0.155821
0.145409
0.0333631
0.0364954
0.0809809
0.0390823
0.028334
0.119013
0.0263434
0.130164
0.102705
0.0536068
0.0549527
0.0459087
0.201402
0.206665
0.0441126
0.0685547
0.254445
0.114098
0.0622059
0.0530331
0.0580171
0.230748
0.415254
0.0875049
0.599909
0.0301228
0.0287015
0.0370516
0.0179058
0.380899
0.5013
0.332316
0.0376697
0.0465079
0.0378709
0.0457277
0.195124
0.064616
0.0761425
0.00902286
0.0207689
0.0144537
0.0131909
0.0732279
0.173319
0.0722554
0.00736738
0.0111553
0.00738037
0.0117213
112.131
30.571
7.62933
49.9248
14.6271
8.80109
5.12165
42.3049
24.8896
3.47342
2.79029
22.9842
3.53689
2.63268
0.582843
0.422018
0.345664
0.487485
0.347974
13.4848
0.907429
2.20701
0.206853
0.455218
0.324215
0.58166
0.271065
11.1153
2.4113
2.19305
1.97017
9.87936
2.14153
9.9878
1.40627
4.20526
3.90472
0.912605
1.23503
0.987123
6.01927
1.54925
7.38296
1.08278
4.50222
1.65494
1.04667
7.37695
21.1932
3.93363
3.31508
2.68735
19.0025
3.02704
14.8113
2.131
5.33697
3.92754
1.78479
2.01878
7.69551
1.8631
2.29168
12.5969
1.9846
5.22487
2.46775
10.1862
1.94589
0.743513
0.133081
0.214172
0.181605
0.102582
0.63483
0.110526
0.455835
0.146178
0.319779
0.270501
0.130799
0.3859
0.122277
0.199271
0.0956817
0.194532
0.0644901
0.276477
0.0881088
0.14594
0.784221
1.49681
6.37696
0.133475
0.07017
0.0593799
0.250665
0.483087
0.0770062
0.676076
1.2129
2.18783
1.99472
1.21854
1.12614
1.29882
1.06538
1.12136
2.34123
2.43249
1.41956
1.09701
1.35645
1.08475
7.51394
1.45659
1.46102
1.36155
7.22295
1.36307
6.99126
1.21251
4.54745
3.56416
1.04502
1.08071
5.13811
1.16426
1.23825
6.03969
1.10485
3.954
1.10117
1.24566
5.7571
7.75523
1.45132
1.44464
1.35422
7.32272
1.35983
7.35271
6.16816
1.08916
1.23505
1.23425
4.235
1.09069
6.17538
1.23839
6.14586
4.23175
1.10106
1.24339
1.0955
6.17178
8.90003
8.82263
8.09444
8.30754
5.85583
4.28733
3.88686
5.12867
6.51488
4.45454
4.2717
6.81008
9.00346
8.89033
8.3618
8.42857
4.62524
6.95391
6.91592
4.58047
6.9068
4.54891
6.93502
4.55652
7.20021
1.79391
1.58731
1.49321
7.27518
1.71405
6.61701
1.17759
4.20824
1.01348
3.74289
1.05721
1.12928
4.31239
1.33661
6.46063
1.36699
4.32175
1.19636
1.54998
4.9699
7.7552
1.92342
1.97869
1.84934
7.53187
1.87278
7.17738
1.69046
7.10307
1.49738
4.60329
1.70136
1.58582
5.78211
8.57275
2.07087
2.08795
1.78396
5.47639
1.77667
5.57277
7.9636
2.046
2.03352
1.76691
5.40751
1.76643
5.40621
5.11019
1.51622
1.58117
1.39688
3.71169
1.35926
4.35969
9.48221
2.06076
2.12328
1.79837
5.79817
1.75051
5.93306
7.22075
1.98656
1.87398
1.62301
5.4498
1.69397
4.93827
8.15176
8.35587
7.30248
7.314
4.47593
3.9346
5.54384
3.78621
4.64014
4.94274
24.8114
4.87136
6.16166
4.10949
5.57498
7.93848
8.42729
5.96538
6.55561
4.84415
11.9749
4.09672
6.65033
9.98462
4.91203
4.08792
14.705
3.81548
3.24598
2.70742
11.1083
8.47626
3.06729
28.6561
3.61799
4.01876
3.18426
9.82478
11.5791
2.93173
7.77157
2.30779
2.43236
2.14551
4.67519
6.00028
2.18811
14.3751
2.74511
3.06795
2.58668
7.4193
8.46745
2.35948
9.00047
2.64179
2.55602
2.22194
6.7503
5.92352
2.27532
0.0497362
0.0129766
0.0587363
0.0113433
0.00373006
0.00998665
0.00387374
0.775732
0.309518
0.0923017
0.111155
0.0205783
0.280123
0.0945472
0.0170339
0.0052284
0.00373025
0.0247418
0.00589668
0.00183767
0.00222447
0.00120907
0.00221673
0.00170463
0.00657799
0.0321947
0.0829491
0.0264392
0.0277279
0.0303122
0.0353489
0.0325482
0.0890621
0.0306642
0.0385808
0.88782
0.137488
0.766782
0.0419993
0.00915135
0.00919551
0.0407322
1.50186
1.92951
0.14929
0.134111
0.118016
0.501341
0.654292
0.0387848
0.00719531
0.00838919
0.0336151
0.00817566
0.00208152
0.00131829
0.00241267
0.00219398
0.00765344
0.00231502
0.0498571
0.029699
0.157036
0.0434215
0.043032
0.00863847
0.00229288
0.0014992
0.00204866
0.00241713
0.0023289
0.00700612
0.0467376
0.0361748
0.124294
0.0432169
0.0388684
0.120363
1.6046
1.23194
0.105163
0.271018
0.116742
0.111442
0.17553
0.257654
0.160385
0.0947204
26.3439
4.9653
0.0300956
0.109701
0.575382
0.432331
0.00654752
0.0249666
0.0818453
0.445334
0.384628
0.545953
3.89941
0.266846
0.50375
1.57831
0.251475
0.00474378
0.018204
0.0109739
0.0172345
0.0488412
0.0766791
0.674256
0.0666452
0.0846606
0.247692
1.49916
0.491103
4.19329
0.29783
0.0154345
0.0655929
0.0521053
1.91204
2.74111
0.122221
0.254757
0.193508
0.62698
0.166469
0.110426
0.931294
0.0347377
0.0115357
0.00303524
0.00959437
0.00826004
0.0499963
0.00777133
0.0754177
0.00886411
0.843697
0.0458544
0.0161187
0.015147
0.00297775
0.00224762
0.00300712
0.00791212
0.00437295
0.00402816
0.146537
0.058939
4.03844
0.192697
0.0411201
2.17922
0.787302
0.770012
0.0425485
0.129641
0.124261
0.0444652
0.0127647
0.03342
0.0330569
0.00620741
0.00647139
0.0121339
0.0350443
0.0133778
0.0383983
0.00716807
0.0351684
0.0067898
0.0366218
0.0141157
2.33271
0.808661
0.826016
0.0498826
0.137166
0.144851
0.0471705
0.0191442
0.0547004
0.0596302
0.0140993
0.0495098
0.0104871
0.0238774
0.0165668
0.041168
0.00791797
0.0476983
0.0441055
0.0153119
0.00864565
0.0563881
0.0211481
0.0266627
0.0262812
0.018076
0.0209683
0.0553892
2.85458
0.980748
1.01307
0.0599312
0.182826
0.191758
0.0581617
0.0228594
0.016089
0.0485547
0.0174593
0.01766
0.0506436
0.0224481
3.46833
0.975683
1.27495
0.153807
0.191141
0.358862
0.0609797
0.053225
0.0999585
0.255457
0.0337553
0.109118
0.0473806
0.0394479
0.0960638
0.0553383
0.0155349
0.610208
0.146072
0.0223093
0.0907566
7.01861
11.0685
8.90831
7.128
5.91894
8.29305
5.69963
0.29795
0.136928
0.203103
0.108219
0.131434
0.212814
0.271605
0.000521126
0.000520808
0.00053424
0.000519006
0.000575379
0.000513821
0.000520607
0.00259784
0.000708697
0.0010825
0.000927217
0.00100979
0.000668566
0.00296781
0.000510075
0.000518801
0.000516328
0.000511078
0.000515667
0.000508583
0.00051677
0.000519771
0.000526827
0.000544604
0.000519516
0.000647507
0.000514209
0.000521623
5.64855
2.0273
4.11124
1.71222
4.50006
5.23287
1.9591
0.331227
0.714178
0.531068
0.265251
0.319932
0.7313
0.278827
0.58764
1.77895
1.05844
0.483997
1.56717
0.452943
0.617518
5.84088
1.80107
5.10519
1.58887
1.7481
6.12195
4.89388
5.35336
1.65063
1.54706
4.84812
5.59223
1.69281
4.55199
6.43233
1.85615
1.75542
5.21649
6.2653
1.93437
5.35384
5.87808
1.6968
4.76064
1.96765
4.68229
1.96286
5.97839
3.1751
1.37343
4.96314
1.99457
3.03398
1.43464
5.26211
3.12025
4.89033
2.02709
1.52978
1.46013
5.19715
2.89058
2.25076
5.52242
1.70665
3.41083
2.30676
1.76901
5.29207
2.05346
5.55356
1.58547
3.59146
2.10716
1.54702
5.53079
0.0160778
1.24661
0.188723
0.0125452
0.0379263
0.00856446
0.060301
0.000543244
0.000559425
0.000532364
0.000551962
0.00053745
0.000533713
0.000540936
0.595905
0.10212
1.24902
0.436471
0.0337636
0.0280778
0.0890724
0.0153048
0.00087239
0.00275364
0.000849439
0.000860781
0.000669237
0.00344018
0.199866
0.184202
0.0699527
0.064901
0.00118193
0.000560706
0.000566731
0.00081326
0.000640458
0.000587441
0.000556733
0.218834
0.000850716
0.00235668
0.000911943
0.00145344
0.019303
0.000649259
3.55801
3.70141
3.32821
2.90665
4.67006
3.20013
3.19158
3.73084
3.84067
3.58671
3.07594
3.36555
3.28815
3.19026
0.0387809
0.007108
0.0861679
0.00445467
0.0368349
0.00430743
0.00666551
0.0771348
0.0304888
0.0340662
0.00399201
0.00550896
0.00598081
0.00383317
0.646097
0.313987
4.08761
0.495913
0.0875503
0.0772115
0.268356
3.02503
0.315945
0.386947
0.0708439
0.198611
0.0659951
0.232442
0.364081
0.305187
0.282527
0.0646719
0.0976469
0.125925
0.0514608
0.243378
0.684932
0.262584
0.06504
0.182954
0.0641085
0.158087
3.13998
1.07835
4.4531
2.90076
0.683222
0.66032
1.03067
3.94899
2.25286
2.63142
0.628953
0.924465
0.976159
0.59318
2.43548
0.589773
6.47681
2.14438
0.615011
0.57115
0.550363
5.1492
1.45156
1.80413
0.543971
0.441387
0.50019
0.494865
0.833637
0.216828
1.74811
0.392835
0.0840248
0.176776
0.0580476
1.09636
1.58239
0.787122
0.423352
0.388435
0.299987
0.466802
3.8787
3.44958
4.03502
3.33649
3.84042
3.29548
3.43152
4.034
3.80726
3.81734
3.27074
3.41482
3.25389
3.43116
0.0277991
0.123233
0.0336084
0.00371694
0.00475829
0.00371656
0.0100371
0.597762
0.0611601
0.22972
0.018976
0.0362857
0.0102214
0.0665017
0.043705
0.00789209
0.0031935
0.0380735
0.00851101
0.00752969
0.00305233
0.0241425
0.0283019
0.0268582
0.0687094
0.0228072
0.122311
0.160657
0.0571002
0.0445662
0.00545002
0.0178682
0.0296104
0.00520353
0.00190269
0.00210889
0.00367275
0.0241113
0.0563191
0.0155745
0.0193431
0.0190278
0.00155846
0.000601337
0.00073581
0.000688601
0.000696278
0.000589635
0.00137311
0.000633759
0.0104424
0.000893744
0.000459153
0.000660444
0.000461768
0.00653873
0.00122077
0.00321344
0.000641612
0.000502857
0.00133577
0.00246579
0.0005106
0.000534196
0.000549559
0.000529084
0.000542265
0.000534022
0.00053257
0.000537232
0.911788
0.0184023
0.0607998
0.0590571
0.168526
0.0187737
0.808777
1.00204
0.030421
0.40675
0.372129
0.0765482
0.844374
0.0316886
0.000680735
0.000721348
0.000827108
0.000569845
0.000588635
0.00166151
0.000599416
0.0305034
0.00558722
0.0108353
0.00964065
0.0269458
0.00517306
0.0277807
0.00728641
0.0224011
0.0130643
0.00307721
0.00413419
0.00472017
0.0220466
0.0443942
0.0427078
0.105431
0.0143566
0.01965
0.00661314
0.0192248
0.0346615
0.00772706
0.0101412
0.00364094
0.00540951
0.00883137
0.00263458
)
;
boundaryField
{
outlet
{
type zeroGradient;
}
inlet
{
type fixedValue;
value uniform 1.02118;
}
right
{
type cyclic;
}
left
{
type cyclic;
}
innerWall
{
type zeroGradient;
}
outerWall
{
type zeroGradient;
}
blade
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value nonuniform List<scalar>
84967
(
56.881
140.429
117.384
71.4969
1.66927
42.022
32.1738
40.9489
48.0769
48.5121
38.6279
38.5328
49.2442
49.9676
47.7578
49.9726
48.1226
47.336
24.1562
23.7922
20.195
19.7524
18.168
17.8043
16.5724
16.1068
13.7794
13.5277
9.33812
182.72
46.7763
39.1376
38.339
34.9469
34.2222
31.8182
27.0957
10.8875
8.56072
6.56618
5.71515
1629.69
64.2369
39.0535
9.26316
8.32288
8.14772
6.64306
6.39195
5.94585
102.096
20.0005
74.5304
62.8348
53.5381
49.0654
11.588
5.89208
4.44923
3.37047
2.74565
1.56817
1.09446
0.63388
0.172006
19.4532
8.30522
11.5546
37.2584
36.1484
201.267
74.3475
98.8246
37.3153
42.5211
50.0186
28.0851
42.7236
42.5249
86.8584
402.935
60.0986
109.962
52.6413
53.2574
35.9744
49.8474
50.0094
49.5535
49.3488
25.0308
24.7223
22.0355
22.0258
19.7915
19.5752
17.4414
17.4237
6.44606
14.6798
14.608
6.351
8.98966
10.6012
9.05554
11.3252
10.3135
10.6752
9.45866
11.6536
9.12945
13.2257
53.8035
142.983
73.283
63.0102
56.3124
47.9158
42.6255
38.0439
37.6273
33.4545
33.3786
28.3784
12.1575
9.03701
7.70154
6.26182
24.086
109.727
74.1457
9.08564
473.945
4.83973
167.849
63.9556
72.9919
2.21704
2.14289
0.564819
0.594731
232.876
92.5004
12.3179
29.2961
15.6224
23.4707
8.2479
6.60833
9.06561
8.12438
6.35259
11.5675
29.5012
26.5004
23.3886
40.8569
79.0078
34.0756
21.398
35.6704
39.5175
33.8463
30.3349
45.1556
50.7822
43.8874
38.8181
37.8979
47.7404
12.679
39.8486
47.0354
45.2872
10.9753
6.02874
50.1989
47.8528
43.8558
9.65652
12.6882
30.2858
9.69594
46.4758
23.2355
23.8368
13.793
29.0756
26.6464
14.633
7.15758
18.4552
16.7626
23.2354
22.0745
18.5472
18.0039
16.1239
17.727
19.3999
18.3871
15.8995
19.3076
17.2002
17.3278
17.1248
16.7789
17.0208
16.3265
29.8167
30.4643
15.0375
6.54235
14.0529
6.52694
9.008
6.64809
29.3465
109.332
6.53177
12.6958
8.59868
9.24046
9.67391
7.997
7.03077
7.66179
42.4922
412.593
42.3176
191.048
40.8781
20.0027
172.311
26.1646
16.3209
40.214
158.264
13.1729
16.4353
26.8454
38.9119
33.5046
30.4356
24.1433
45.1434
25.1872
15.2679
42.5997
35.4127
32.9461
32.1763
29.0194
27.4605
25.1255
11.268
8.72486
6.93893
5.59627
87.5722
95.7919
160.27
98.0283
201.779
44.0343
51.8212
1497.78
110.978
210.017
83.1133
21.8784
46.3981
34.3457
75.0634
32.246
23.3073
38.8364
38.1918
22.6351
36.1887
3.5083
12.8325
12.1095
9.60799
2.4834
0.108422
2.42878
0.10045
61.6179
17.1751
16.7619
35.4099
15.6949
23.8697
17.0644
8.55723
18.5094
7.48459
6.69412
28.6498
16.1068
16.7426
24.9302
18.6879
7.47722
14.8408
8.03019
30.2732
15.6324
4.82894
7.51466
15.3414
16.6748
18.6062
16.4719
18.8771
16.0189
18.5844
8.84099
8.79059
12.251
8.22621
7.46737
8.18309
7.76547
6.19966
6.37574
16.1947
14.7318
46.5881
23.4097
396.992
35.2496
23.6818
32.518
10.1503
20.4739
26.3286
21.0596
235.751
157.709
92.6146
280.069
52.3437
24.0841
80.8375
598.598
50.6504
57.2928
58.6038
57.1815
13.9135
13.1194
3.95568
5.43707
3.08578
3.00185
1.26789
1.17634
0.479192
0.452287
18.5483
27.5136
37.4845
21.5343
16.6141
15.5999
15.4142
16.2466
21.9684
9.59134
19.7566
8.69332
42.5427
4.37019
19.6238
39.4741
33.1894
15.9335
9.24135
18.4606
11.5676
87.067
19.1477
21.3402
15.8288
108.176
45.3993
48.9101
34.708
31.8698
22.1586
7.02767
35.7757
10.5532
20.4633
22.645
14.1161
54.4513
19.1423
25.1638
19.853
24.7588
21.0763
24.7651
49.3552
39.0612
13.4106
33.9523
10.9512
44.3847
37.9426
6.32748
7.4605
7.45662
18.0587
250.602
436.685
241.282
42.5626
8.97045
72.7374
12.3767
71.9546
39.9582
48.6199
12.2804
7.62555
32.5893
31.4066
48.0394
45.5488
5.36872
19.0463
50.3375
47.8251
17.4956
19.4863
240.294
110.449
9.77286
9.796
26.2823
20.5951
94.1474
8.22936
9.80418
9.63292
46.2747
23.1378
15.2185
18.8951
15.9428
24.5103
9.0797
19.6217
9.71044
23.7071
14.2143
21.8454
26.5965
14.6885
23.6411
24.2502
19.8915
9.32844
19.5899
9.74131
24.1093
8.82371
14.2912
12.6444
8.48808
14.2423
20.2686
15.8932
23.4215
10.5258
19.8899
9.33101
11.5996
23.9596
22.8982
22.221
14.3589
14.0334
17.7304
17.8577
15.9118
14.1072
15.0816
16.0042
17.8921
17.7938
16.0314
15.9223
19.4617
18.3945
14.8985
16.5346
18.3683
17.4589
15.693
15.2961
14.6995
14.8275
18.2204
17.279
15.566
14.7852
16.9138
16.9139
14.553
13.9807
31.1879
16.2382
16.0097
13.9085
15.1968
5.66639
15.5488
31.67
30.5567
16.1803
15.5961
14.9066
6.61552
5.76277
14.237
6.63924
6.59262
14.9637
6.684
25.1734
7.07887
27.2069
25.3945
26.986
9.17611
9.116
27.1049
6.11235
12.5757
8.48261
8.54137
6.00735
6.07654
7.76749
5.73159
9.69494
8.13477
7.97906
5.78017
5.69847
27.7838
10.3455
10.3329
10.0956
9.75199
45.9006
45.2579
23.3938
40.7699
23.1194
26.6344
68.364
21.0642
305.318
51.1288
35.966
132.036
16.619
40.4622
67.1422
218.991
38.549
582.316
139.824
22.02
17.5323
45.4475
70.0973
156.005
21.354
24.3173
23.0917
405.655
452.68
36.0409
45.5242
192.573
15.3621
36.4363
16.2503
13.4833
26.7259
17.8404
37.2737
197.241
46.3266
216.219
95.9845
16.1826
32.8059
86.8127
74.4392
79.5278
165.277
19.8998
35.4965
101.927
63.7048
64.2758
27.9816
16.2806
26.7939
56.0928
16.5377
27.8907
41.2585
26.5125
36.9591
58.622
36.0302
24.8834
51.2174
32.9854
33.9205
20.5416
19.2277
15.3662
24.2332
21.6212
31.9836
284.321
39.52
35.67
31.3866
22.0595
13.129
32.4492
23.5593
133.219
14.3429
80.2011
31.0251
19.1041
28.8273
18.8894
45.0112
14.1845
18.7042
42.8891
35.4376
32.4701
27.7881
24.9191
11.2799
8.83452
7.00718
5.72409
66.993
99.0336
460.025
63.8909
495.322
57.4042
74.3939
39.072
39.0509
497.831
46.348
56.9805
240.159
30.2262
36.8235
109.479
57.4503
246.622
41.2814
152.793
82.9036
90.0109
24.8348
23.667
40.0574
22.6886
23.7656
38.1348
36.1707
58.6616
63.1209
62.2817
36.3184
49.6337
30.3291
50.7601
75.9573
107.584
780.041
57.9632
41.7105
38.4383
59.6194
43.0132
60.0712
6.76443
34.3913
63.3235
11.779
58.736
0.81395
60.2662
0.338793
0.664351
0.255128
78.6573
67.5498
33.9442
27.5292
21.6223
24.7295
39.3947
44.8171
46.7673
40.3376
71.8105
6.67065
38.858
51.3426
17.8998
28.559
37.465
239.119
23.9421
20.3783
56.6771
5.92166
17.56
20.9246
19.0532
10.2031
2.4562
0.65467
6.21884
17.9177
120.999
1.48388
5.67958
14.9755
0.681531
18.3502
16.5047
1.48665
4.31784
4.40926
2.67636
3.37684
1.31846
1.03812
0.0732331
200.141
61.0488
7.24197
15.5543
15.7749
15.1885
16.0891
14.6589
14.3362
13.88
14.9887
40.1863
105.333
113.132
17.2498
336.592
88.1
19.2969
6.19272
15.3497
13.4804
7.65338
6.43499
1348.56
60.1335
55.0083
33.6946
33.5087
18.4698
22.639
42.1281
30.7409
21.5912
25.1972
46.0004
49.2822
7.33908
22.0835
109.677
14.1476
14.641
46.7078
38.5215
14.5315
14.0067
19.8274
19.6436
38.1591
47.6503
20.3228
20.2302
46.9259
45.3238
49.8215
43.5559
48.5789
48.3096
170.225
49.8125
9.33249
51.4189
10.6158
10.6986
47.9884
10.5555
10.6393
46.4212
10.6047
14.7246
23.7714
14.414
14.5834
23.6274
14.5343
12.5988
21.2477
13.2782
12.3304
19.2584
12.1357
13.8717
18.4553
14.0764
13.6253
17.6233
13.3609
13.2543
16.7339
13.4144
16.7241
16.0026
15.9501
16.554
12.9418
15.2179
12.243
11.5221
13.8571
11.5634
15.2437
15.7729
15.2132
15.7488
14.3113
14.0446
12.5761
14.3995
11.3662
13.2731
11.2092
9.33397
9.39767
9.37422
6.18458
13.8764
13.0614
11.1638
97.8318
17.9741
16.5133
14.7809
17.3182
46.0635
45.6646
41.0651
18.8748
20.6491
37.2751
35.5136
77.3602
18.2297
15.8799
14.747
8.68606
13.9699
9.18452
34.0236
32.0908
43.0889
16.6122
16.0214
16.2922
16.5451
13.0669
8.45033
7.73167
13.6962
7.92629
7.45124
27.1619
18.3226
32.7213
14.919
13.6907
14.3871
14.7072
15.5151
14.4552
15.1441
14.6961
6.10126
6.92984
10.9595
14.2109
12.8666
13.9889
13.5429
5.94666
7.7166
4.23963
8.39982
8.5733
7.52917
3.92446
7.96321
6.8057
16.2006
16.6899
15.5447
15.3174
5.52006
7.27426
6.50045
49.3162
1059.58
134.066
23.2185
20.9634
8.81806
15.8197
7.94427
17.2205
6.62134
7.00836
24.2948
13.4481
14.6355
12.7067
12.0292
12.4106
13.3005
10.478
6.37813
7.33967
7.99423
5.73007
6.49717
7.16568
7.94505
5.55068
264.252
6.55034
7.40669
13.2215
14.3176
10.7832
6.01622
78.52
26.2599
149.167
88.2819
17.5034
6.05456
25.5119
7.93352
6.28409
27.1485
147.694
26.6332
14.947
22.4161
12.2229
17.1837
23.6079
26.0187
24.094
23.3313
8.43982
18.6272
19.9195
8.74071
41.814
8.78413
41.9854
18.8348
17.8385
35.1126
37.6419
43.6477
14.3341
15.4618
13.7488
16.3287
9.22131
9.16974
9.11246
8.48885
9.06496
9.19416
7.92515
8.96549
8.65785
7.01609
7.29699
7.82759
6.18286
7.11617
7.70767
5.78635
5.47976
8.63798
190.222
15.367
39.5119
29.051
44.2607
410.881
19.7394
15.696
14.8464
14.8713
15.7001
17.5549
17.9269
18.2267
17.2605
16.7258
15.8594
16.401
16.2558
14.3492
13.7763
14.7576
13.3858
13.0605
10.9727
12.2407
11.7836
189.635
108.518
282.214
302.194
192.678
140.974
63.8074
180.468
170.951
48.3216
359.132
28.9805
31.2009
26.5887
25.5907
382.624
56.6507
28.4398
97.4882
35.2863
32.0777
61.743
54.6304
14.3943
26.3036
28.6458
12.5689
40.8336
12.0032
10.9993
11.9979
5.31918
4.63687
3.25852
2.86688
1.49106
1.12589
13.6935
0.583612
12.9556
8.34284
0.413002
11.102
1.23238
1.18517
0.814139
0.895488
33.628
61.6214
2.80796
2.52148
57.1957
3.78403
20.9348
6.37134
6.13119
11.3286
23.5793
8.30957
7.12238
28.0639
10.4892
12.2463
21.7451
21.2222
9.96499
45.5455
4.32203
5.56648
4.1711
7.78056
36.2864
34.9769
17.3744
33.9108
19.3022
66.2095
10.8539
29.7614
30.4089
34.8726
30.6014
233.307
88.8729
17.9918
256.989
43.5341
50.379
5.90407
16.2666
19.0713
22.3626
9.51714
240.351
110.383
42.7921
37.1021
20.242
8.63957
21.5283
61.6356
29.2866
4.67047
13.3539
13.1647
25.4931
69.519
47.1896
13.4232
12.2911
30.8261
238.136
35.4728
88.8799
47.8884
52.2363
44.6986
26.893
27.1868
77.6426
10.2412
35.093
32.9803
26.6178
26.0151
13.8235
15.5161
17.2288
54.0519
40.4426
43.0015
35.691
38.3145
9.437
16.5423
17.1382
33.7751
27.5742
50.9257
29.776
46.3434
45.4409
328.381
32.9344
48.7582
48.7468
16.974
14.0536
8.75895
9.40559
134.261
7.48441
44.9117
50.979
47.3878
15.2138
26.7303
22.1049
27.5669
13.8696
10.0987
37.3759
21.6597
52.5556
52.0382
14.6105
16.3049
51.0901
10.5701
10.8865
49.2916
10.5717
10.6121
13.2992
17.4698
9.91537
41.7335
8.81055
49.7147
40.8742
42.3802
40.3009
14.7722
12.2923
23.7415
14.8361
14.2925
37.3871
37.5546
21.8926
13.5845
13.5265
22.4084
13.6581
13.9538
19.7724
15.0401
14.9844
18.9271
14.8807
14.335
7.74291
7.73577
10.612
10.7319
7.69793
8.37026
16.9967
14.0787
13.2666
17.4684
14.1246
14.1347
10.5243
10.5587
16.5324
12.2729
19.6717
12.8232
119.089
14.538
12.0956
6.51889
13.137
13.2482
12.2843
14.231
19.4468
15.1516
12.3232
15.1982
12.1911
38.3019
14.5253
12.0807
11.999
14.6067
12.0777
12.1001
13.9086
11.9285
13.0949
6.12438
12.8638
14.1539
11.3761
14.8067
14.7296
14.7996
14.8121
12.8619
8.86506
11.2078
6.11094
11.1029
10.1271
11.1418
10.4494
11.0824
14.7064
14.6789
14.7507
14.6571
9.1714
11.2902
11.3906
8.77362
12.0043
10.8262
10.5282
9.39762
10.2344
9.46285
11.2479
10.4344
10.8887
10.1989
9.97627
10.3115
11.9732
10.1621
9.94506
8.72714
9.70408
9.26244
38.609
64.565
44.0088
40.7339
42.5418
19.9109
34.9167
38.6978
31.452
18.2235
61.5645
28.5222
71.818
455.765
64.8567
40.0538
29.6864
113.336
64.9168
16.6746
648.494
41.9156
36.6943
22.4114
51.3464
61.6366
17.6663
20.6734
72.605
507.695
362.509
32.7925
45.1469
85.9025
17.7606
38.3458
49.7796
18.6061
21.8185
242.385
178.909
24.6225
25.2341
95.5498
85.9428
45.7356
84.6881
116.984
44.0793
14.1733
25.3564
24.8489
14.0132
18.4719
56.7767
213.335
45.9942
26.5829
68.7357
35.0272
39.9616
16.8857
27.189
62.9103
60.9936
29.9243
27.9165
56.8826
58.9429
178.814
23.1559
29.3983
23.1296
56.8888
21.8534
61.4863
46.0009
17.4169
27.9996
28.3935
16.9216
17.8254
56.307
21.202
53.4031
52.0756
55.1112
42.3289
12.0379
30.8039
16.0603
24.1544
10.8264
20.5298
9.39521
21.2627
43.2978
16.6344
19.0395
20.2932
20.0482
50.5211
28.6552
22.2149
22.8049
49.8494
20.4828
20.7428
44.4298
22.2298
22.0336
75.0444
83.739
70.0392
28.9225
38.0171
15.3234
14.3412
10.3674
10.7285
36.4882
10.255
10.318
23.1642
18.7461
27.5475
17.446
20.8756
15.1576
15.4309
21.0622
19.0087
9.48165
9.96602
18.2873
22.7281
15.0091
15.3783
20.7164
26.4392
13.2179
14.0885
24.1974
17.9385
12.5354
22.9303
11.34
33.4724
16.6389
9.13293
17.7053
15.38
15.2586
12.6192
9.48329
13.6442
15.4716
66.0961
19.1077
18.3078
18.5428
19.0328
41.2997
11.1644
5.89212
10.6275
28.2327
24.3112
16.6541
17.8199
18.5697
15.9858
9.8239
10.1861
19.5266
22.4618
28.426
8.23371
8.66673
13.5818
27.7824
15.0708
34.4309
13.663
16.0249
13.3381
14.6244
15.8102
14.8155
15.7237
14.8466
15.5437
14.0266
14.975
14.6328
16.329
15.7211
16.2984
15.5937
15.0642
17.4272
16.7964
15.6272
14.0994
15.3669
15.7803
13.5376
12.1741
13.4718
14.0802
11.5801
13.339
15.2213
15.1142
13.4495
10.9373
10.7857
9.89564
10.2174
10.3178
8.56906
9.68615
9.97222
8.73691
9.10882
10.3942
11.7436
9.55508
10.8427
13.2105
12.8393
11.2243
8.98506
10.3996
11.2048
8.08869
5.83748
9.75464
8.94405
7.09943
9.14336
3.24967
7.26597
19.2037
17.6182
14.3224
15.2964
6.18411
14.1194
7.55686
257.602
208.732
47.9627
148.201
606.776
44.5789
156.45
268.564
78.9167
309.962
60.4762
15.3481
85.7878
60.4776
35.3217
22.3035
101.54
239.902
77.9997
43.1456
39.7945
59.1855
228.356
194.211
34.3411
32.3257
77.3077
136.714
20.7752
21.2756
39.8804
71.9489
34.3907
162.045
167.759
74.5847
70.8316
297.886
39.958
67.4562
319.163
50.7468
23.0571
127.841
19.816
19.6838
18.3224
18.2185
92.0744
37.7615
406.977
26.7404
74.1319
17.3848
18.3371
18.1536
17.93
21.2777
24.9696
469.826
37.2175
83.8978
119.366
68.2303
45.0221
34.1117
50.3632
42.9185
119.635
592.71
55.8727
323.579
17.3849
16.412
16.0959
16.3261
84.9346
46.8503
51.0825
69.5662
14.7885
14.8072
15.6181
26.1356
15.9634
15.7761
31.3072
48.0061
60.6725
55.0353
408.978
45.9921
32.602
140.11
43.6226
69.5581
23.5194
14.9373
16.293
18.5266
19.4214
19.9053
2.5037
130.951
15.4443
16.1134
4.92292
19.2092
18.6744
56.0296
35.989
50.2103
15.431
14.9394
19.522
43.5059
11.3398
12.3699
10.3372
10.1031
11.1292
10.8441
65.7249
71.1955
9.98507
10.1562
6.70517
6.84272
7.9566
6.25835
6.66292
6.5921
30.5082
32.1081
6.83304
7.65019
5.41855
5.72036
3.23187
3.3792
5.10758
4.25179
11.5641
26.0281
13.2347
21.1681
2.97855
2.72235
1.78543
1.96159
10.2125
9.12919
121.934
33.0757
26.7329
14.7021
19.8014
8.07772
9.37387
9.85517
7.63758
1.67003
1.97929
0.523767
0.619764
1.76004
6.90656
9.13924
8.34425
7.31935
1.50371
2.34212
0.210026
0.457476
1.001
1.86432
0.463812
0.585195
1.62894
8.15049
7.37597
4.54747
3.71939
4.57227
5.27586
1.67186
0.178939
2.10217
0.901264
0.525278
0.838261
1.01419
3.93815
3.11331
4.73524
0.336443
0.143687
0.62665
2.54285
36.0812
0.389492
28.0308
0.387193
20.9534
4.44436
72.8753
49.9257
18.2398
19.2517
10.7772
12.4663
8.09537
7.19471
7.79467
15.5594
16.9835
12.9383
24.7081
16.4104
15.0361
15.7375
10.7818
151.589
15.713
12.3074
8.79791
13.657
67.1798
12.5324
17.8641
14.4263
20.7662
34.3914
12.1981
10.9026
8.50913
10.5056
13.792
19.4307
17.6696
14.4704
9.24033
20.4849
23.7813
8.78858
62.2888
9.25745
69.2368
112.224
9.58077
9.75399
20.86
17.4228
24.9948
28.446
29.1808
27.4547
23.3466
28.1239
26.8061
18.9489
27.6935
25.7314
17.9025
17.0507
17.4608
17.6285
15.538
14.9612
15.1357
15.4672
15.9273
17.5712
16.4011
16.9979
15.8994
16.7309
15.8578
16.9271
14.5937
7.26755
13.4855
13.3855
14.7587
15.2777
15.0991
14.9025
14.6933
14.5395
14.1428
14.8089
45.8981
44.7356
64.3574
25.7858
131.943
45.2493
28.4817
33.2905
29.9583
20.8409
38.0955
109.549
16.7457
165.741
130.271
124.156
153.849
556.446
16.7563
13.9115
33.972
28.564
20.839
27.16
104.493
100.288
33.4015
11.706
35.1702
11.4
33.0925
10.891
31.8851
11.2998
16.4521
50.0286
84.2185
15.5795
13.5598
15.2423
12.8948
12.1874
12.5961
13.9096
3.08436
2.21665
4.97467
5.16035
5.19959
5.70401
12.105
4.86673
20.9936
9.97225
206.004
26.513
5.95615
13.2473
11.4376
20.8979
59.6963
8.07308
3.87933
43.0553
18.7187
19.5593
9.66591
17.7467
20.1612
18.3605
17.7357
15.7364
9.19223
16.3027
17.8658
40.7229
31.2133
30.5188
54.7144
32.1098
14.3227
51.1195
8.33941
188.783
18.5464
26.644
45.0919
43.4271
43.1139
33.1907
22.1862
321.337
55.4016
46.9182
45.6933
49.7132
36.4184
13.9591
12.3121
30.1427
70.7167
14.2986
115.295
29.036
11.1688
75.3695
13.7125
23.2532
33.4903
15.0134
14.8734
52.273
46.8918
38.0491
13.1173
14.1017
10.2595
10.1291
19.4471
19.3955
9.90443
9.99163
38.0393
47.3551
27.7673
31.3705
10.5605
10.644
20.2143
20.1677
10.6642
10.6243
18.5348
17.9099
44.9339
45.092
17.5847
17.7375
50.0143
44.0188
7.6978
6.98678
19.2332
19.1386
45.7297
48.2404
18.2251
19.1248
35.1329
23.3494
50.436
49.6952
23.4482
23.2656
50.9155
10.5546
10.5758
47.8354
10.4297
10.4962
7.90954
8.81883
11.9821
10.0468
41.9037
45.8851
8.42647
9.95068
46.3704
34.4979
118.656
9.77866
57.3213
46.3655
10.7638
10.6441
10.1015
9.87742
23.6531
13.9599
14.2978
9.54985
9.79892
11.5786
36.48
10.9632
9.48994
10.9029
8.27686
7.42324
8.18631
7.42921
12.629
14.2368
24.0797
31.1266
25.2417
14.4527
28.084
28.998
26.0782
24.9245
27.8402
25.8581
55.9495
32.8975
25.7328
14.4986
47.6317
47.3508
17.9924
17.7605
10.0021
9.98455
23.5103
14.3085
14.4729
9.84155
9.94973
8.7701
9.2368
21.6304
13.8122
13.5227
9.59803
9.40414
7.4598
45.136
8.92838
18.0448
18.3931
18.3013
17.0264
17.341
8.58615
8.48052
19.2183
13.0072
12.1502
9.66294
8.51382
11.4979
11.654
18.5039
13.9876
14.0995
11.5657
11.6682
15.6352
15.7025
18.293
17.572
17.5259
18.3674
17.4448
17.4501
11.2992
11.0701
17.5072
13.0729
13.3178
10.8406
11.0361
12.2941
12.4517
16.7652
13.5
13.4512
12.5453
12.488
17.5517
16.8292
16.9277
17.4074
16.6155
16.5719
4.75628
16.7008
30.234
15.8381
15.8974
16.3855
17.8772
41.2871
16.9671
17.9475
33.2688
30.3098
16.7884
12.0103
11.3909
15.0856
12.2174
12.1647
11.5771
11.3394
11.4443
6.49374
11.4658
13.8758
11.7059
11.5758
6.48662
11.595
11.4753
6.79721
6.70414
15.2164
15.6818
28.0596
15.7039
15.2804
15.181
14.9961
15.1576
15.0331
15.1509
14.9345
28.1815
15.1962
15.0102
14.0227
10.5872
6.496
14.4473
14.4062
14.4513
14.4835
14.3224
12.1211
7.91096
14.5369
11.3096
7.88343
11.236
13.1485
10.7937
11.1344
8.39066
10.8822
11.1933
9.51289
8.94748
9.56511
9.48053
9.68288
9.46538
8.65606
9.89801
9.66493
9.14891
8.64516
8.79183
12.3023
46.9975
34.5169
42.8775
97.1758
86.8892
53.7314
39.4221
19.1015
21.5912
32.7678
63.4737
57.4306
120.652
29.0326
50.6538
343.562
94.0673
58.4825
221.756
315.713
16.5807
14.7313
12.218
50.7031
61.6202
50.1722
41.0433
53.9078
53.6406
17.3934
17.2265
16.32
16.3468
54.752
17.4462
25.6782
15.2853
17.2468
15.5643
12.6905
13.1
65.3962
66.8474
66.702
126.342
154.694
64.9091
58.6746
43.7406
55.749
19.3389
20.5285
21.5577
21.0462
31.9018
24.0957
49.4146
36.9112
18.7192
22.7019
27.6229
33.1956
30.8635
25.4969
18.0889
13.5879
13.0365
13.8399
21.6143
20.3687
14.5119
52.7764
18.4382
18.1418
56.94
26.7299
18.5655
30.8039
35.6404
82.1511
39.8763
42.0398
73.6406
31.3041
15.385
33.3378
29.5889
313.711
39.3835
29.7252
103.848
38.2744
28.1849
28.2224
33.3257
70.2392
111.894
45.8883
20.8245
18.2114
39.7513
95.9187
41.7809
56.9596
225.367
26.4191
23.8015
22.3986
37.5529
112.243
19.9595
319.294
338.591
12.0833
19.736
18.3644
13.7523
26.383
21.7655
35.6286
43.8283
20.3433
19.5661
28.1228
22.8654
16.0809
15.7277
21.5062
47.7343
177.389
19.4789
19.9747
19.7645
19.5731
8.19067
14.1553
14.7587
7.82675
74.5401
14.9092
16.1779
70.3791
16.7886
20.7794
15.845
24.2764
15.1818
10.4739
9.63937
15.8112
17.2491
45.4098
26.4553
18.1208
33.7335
32.153
18.5127
9.68534
16.2567
48.6504
8.86652
36.3241
16.4114
20.7976
16.3885
17.429
17.403
16.6934
24.7676
16.8513
17.8298
16.7827
17.7894
16.5705
18.0964
16.8151
18.5254
17.5226
18.112
14.7031
19.9713
15.4799
18.336
12.7174
6.43831
7.06683
11.9121
14.3864
17.1133
18.0018
13.5373
9.76332
12.8223
9.20268
13.4491
8.09775
8.5809
9.95755
13.8874
13.5684
10.3055
29.047
27.1803
15.3254
14.9931
17.2427
14.8065
15.8082
14.5947
13.8977
14.489
14.1082
14.0379
15.0335
11.2352
14.5492
13.5071
13.6937
13.5808
12.5362
14.406
14.0372
14.5275
13.4395
14.6923
15.5666
14.6008
14.7104
15.5736
15.6647
15.4608
15.2636
15.9312
15.7238
16.1396
15.7612
16.016
7.91514
12.3559
8.65961
11.8312
5.72728
5.455
7.47792
10.9803
11.4342
7.13127
7.45076
8.04427
8.87693
8.13648
25.9474
11.0531
14.2247
10.3348
14.2277
7.44216
13.7249
12.2447
12.7004
12.7775
13.7582
6.95245
12.2477
3.97092
6.23458
8.16097
8.05885
6.70192
4.16215
4.46145
6.86968
6.44858
5.36952
6.2714
8.61901
5.47793
7.43429
6.83174
17.1661
16.7409
5.51975
6.60102
6.49735
16.3279
13.5352
13.7465
13.5332
90.4758
909.457
530.184
178.373
90.294
44.7252
104.002
104.529
102.724
95.8033
166.864
72.678
258.292
209.864
122.8
43.2755
28.067
43.8424
27.2834
44.6972
27.3996
43.5948
26.8924
167.568
61.9132
142.039
231.384
31.1581
50.4151
287.524
89.0052
46.2097
236.831
84.4911
124.664
114.719
44.4449
27.8092
91.8031
27.3535
23.24
23.6422
11.8356
248.091
33.6719
31.9127
650.999
39.2751
24.5396
26.0135
31.2883
23.8991
17.5266
17.0465
37.0007
42.8171
40.7131
42.1627
2.50356
2.57505
28.7355
27.9408
32.6699
2.462
2.57227
22.2818
25.9516
34.6683
36.1437
65.0263
36.8204
39.8027
44.3249
2.12435
28.3023
27.9951
2.34826
2.56557
26.9383
103.049
12.0367
38.153
13.5926
105.385
15.9946
110.038
14.7739
280.715
28.154
90.7773
64.8933
25.8732
31.261
37.3823
27.8106
17.9858
24.1633
18.9561
38.8998
20.051
26.7332
6.66206
0.867415
23.4593
24.6617
18.3699
16.6705
18.4989
18.983
31.1734
31.8104
18.3246
6.24957
15.0972
9.784
19.6108
17.9838
10.8529
8.11213
8.36314
7.40206
15.0441
13.8652
15.1089
13.0559
93.6407
11.4816
8.57154
10.8662
9.22114
3.63139
8.41834
6.69398
6.35814
23.1269
13.7907
12.0672
97.548
13.9141
10.1357
9.83742
7.24669
10.3298
11.9032
12.2907
10.556
11.7644
10.3004
20.1063
9.66445
9.01207
10.1243
9.71575
5.9345
7.72342
7.62443
6.03253
5.81699
3.4488
5.16676
4.11647
5.31567
3.76435
5.41915
3.50361
3.21945
0.171148
0.257405
6.11489
6.20373
7.58717
4.96181
5.9682
3.27609
4.98753
4.297
5.54968
2.75463
4.40446
3.79801
2.18895
1.63921
1.90646
2.55535
1.32203
5.59966
8.92867
162.268
18.6122
9.86104
3.88109
16.9404
7.10097
15.7207
6.49085
15.1592
7.37531
8.85991
9.57461
13.583
22.5511
31.2699
23.5381
39.8454
27.7802
19.3052
30.4276
114.778
54.9506
18.3728
49.3373
10.5881
49.4947
55.477
159.892
14.0588
159.786
17.3222
43.939
23.9254
10.516
10.5048
7.16913
10.6724
11.1271
65.5555
20.3523
5.88282
15.1235
9.04644
29.0976
15.3236
11.9386
27.8537
38.1853
9.31755
8.7692
7.66053
12.9916
31.1169
37.1005
77.7657
10.4123
28.6046
12.4967
65.3715
11.3463
7.56839
10.9038
13.253
36.392
22.8734
5.8737
8.34723
13.74
20.6343
124.087
11.9419
20.6446
37.5184
36.5322
4.763
11.9403
18.7146
11.3396
19.0536
9.57689
45.4662
36.8428
23.9464
11.8808
24.6995
42.6042
26.7373
31.6585
14.579
26.0549
23.9197
23.0289
39.3185
21.5389
21.6967
20.7125
23.5074
21.3788
19.4793
23.7598
19.9904
22.4869
32.0786
23.0597
18.5047
35.0289
15.2946
11.6157
12.4575
13.7489
16.5637
49.2121
21.156
23.1222
86.9033
13.7809
16.5932
13.0834
10.9955
7.89926
10.3904
30.5695
17.8025
17.8769
35.1554
40.4514
38.079
19.4372
54.0348
9.04345
10.623
15.2205
12.2564
11.9489
12.7287
14.5729
16.5803
11.6498
13.756
17.4251
19.616
25.3293
15.9469
22.6589
7.62326
19.1903
23.0689
36.9411
21.3055
24.0913
75.2888
8.01045
8.5587
51.6136
7.70168
40.8367
44.9661
100.937
37.5642
18.7134
20.5295
39.0385
33.7681
21.8557
20.1444
17.0094
14.4144
40.6348
47.2518
39.1743
7.61687
27.6547
8.60064
30.428
41.3373
8.10511
7.99609
40.1177
130.973
13.2326
16.5517
15.658
13.749
17.7697
6.29115
11.1014
13.0808
12.6614
6.49768
13.0897
6.34374
15.7902
12.64
20.4807
13.778
18.124
7.38898
37.5367
34.4937
18.7314
21.7537
13.2679
12.7227
46.4251
19.1975
20.279
145.575
18.0826
19.6326
18.1559
23.8796
131.13
35.8551
16.3393
18.0809
17.7092
36.6934
17.4144
18.7896
17.3218
17.4524
18.1804
34.3486
20.8361
16.4083
17.497
44.5836
17.5348
36.9751
17.733
18.505
17.4655
43.9244
35.3484
14.0912
13.6089
42.1677
40.806
12.7143
13.9939
47.2332
17.4332
17.42
18.8897
14.0023
237.038
39.111
18.9592
21.1932
19.7508
119.923
224.892
16.3265
17.883
14.9648
17.2289
26.2925
22.828
18.633
210.115
31.5371
15.7519
23.1333
10.2375
16.5943
15.6333
14.6795
8.49915
13.672
9.15465
14.9305
109.482
16.0304
20.3189
15.0551
9.90733
9.45646
15.7912
7.7609
7.78851
9.02755
9.05134
9.0482
7.90309
7.78255
8.59223
9.05347
9.27414
8.63287
8.76729
7.95914
8.84576
9.18675
8.97541
7.86427
8.55937
8.55493
8.54075
8.24396
8.13683
8.15015
7.06739
8.37011
7.84976
8.01728
7.78563
6.24426
11.2581
7.9726
5.90146
11.7596
8.9035
97.0351
53.8595
23.9459
49.7217
157.38
28.5371
19.9832
44.6598
31.8195
30.9528
399.687
60.6834
41.4695
16.8929
24.5846
36.8392
49.1696
14.7491
22.7085
33.2935
152.659
93.3684
41.5661
164.815
20.4766
13.0445
36.549
83.998
44.0827
92.0077
101.198
45.0183
47.3438
30.7907
15.3782
65.7514
36.5905
454.508
24.6351
185.32
52.0524
35.9964
18.7876
90.7464
140.118
29.9561
20.6524
13.874
14.1798
16.0524
10.6928
14.5419
343.81
53.1123
382.875
46.1491
77.2358
32.2755
27.8439
38.6202
35.1701
49.4648
27.9557
42.1818
19.9786
15.1209
23.5739
12.9776
17.9342
22.69
23.8269
18.4976
9.60364
14.4526
14.0302
15.6125
10.8398
26.7401
234.233
49.1327
83.7778
24.4712
22.5615
46.9239
23.6817
23.6548
16.4511
16.9454
17.3493
15.7707
41.2002
17.4704
17.0613
17.6004
16.6307
15.4468
16.9758
15.883
16.4549
50.5492
15.6679
14.8475
15.5197
14.7961
16.0513
16.4746
16.5576
15.9968
16.036
16.6893
15.8672
16.5683
17.5506
17.8122
17.2077
18.2126
17.4381
16.6947
17.1078
17.1063
17.4448
16.9026
17.1294
17.1393
16.7819
16.537
16.6294
16.4782
16.7853
16.639
17.0497
16.2588
16.8503
16.8566
16.7074
17.0827
11.7569
6.23388
6.70692
12.9314
7.87718
14.5262
13.3677
13.8062
14.5643
15.2685
14.8815
14.9693
14.1947
12.6492
13.7685
13.1953
14.4187
14.481
14.776
14.0303
13.369
8.84818
13.5685
12.4419
13.3089
12.8561
13.8538
12.1536
13.5907
14.4833
13.9956
14.0879
165.242
85.3901
188.351
28.6159
184.186
63.3929
33.6965
128.27
75.6888
77.5884
35.8265
790.906
148.669
39.607
83.0414
33.8917
133.244
298.266
134.173
141.582
111.558
37.2965
98.2341
49.7445
22.1561
80.8945
203.421
42.9359
260.906
35.0329
309.04
47.9407
126.412
79.7524
26.2834
132.697
217.571
39.6591
187.736
99.7036
249.32
207.452
229.625
61.0188
94.3575
191.308
222.624
25.5495
52.8208
27.9909
53.1388
25.7406
285.029
19.0554
34.459
41.1782
21.8785
112.192
42.5595
70.6472
260.098
46.8578
130.739
115.719
31.7207
131.546
26.6432
19.0002
149.196
165.391
28.9179
28.1236
148.683
144.063
134.543
125.612
26.9031
27.8641
136.668
142.741
30.8761
141.446
24.252
37.1833
36.6998
35.2043
18.7467
20.7652
20.6901
22.392
20.3196
17.7571
18.1899
17.5952
16.8426
16.1463
16.9205
17.4606
68.1665
121.006
118.476
125.167
149.734
128.396
132.9
110.307
41.6546
74.3933
29.5245
31.9773
40.4276
33.4088
12.4808
13.3594
18.198
18.8598
123.113
20.1379
18.9683
20.2644
16.6137
13.1465
16.0179
11.8163
12.1049
338.527
12.8633
12.12
38.003
94.4417
24.78
8.19147
9.99048
22.3286
25.6274
10.6452
31.0492
10.1376
60.8711
55.4958
14.5692
32.7218
15.2289
28.9864
11.2637
9.6153
11.4054
11.9096
27.1456
12.2745
12.4901
12.1722
5.23385
4.73294
3.21067
2.90376
1.43725
1.14587
0.564293
11.8794
12.6936
0.424063
11.5815
11.2686
8.60243
8.33521
1.0647
1.15045
7.78373
8.18306
5.86668
7.02512
0.988605
0.920897
7.46986
7.14934
218.947
79.0626
4.75824
5.29267
56.6189
12.2963
19.8456
10.0213
4.16523
6.83736
9.3265
14.4019
0.667504
9.26836
7.96644
3.76716
5.18244
19.8887
4.95676
5.83965
2.64294
235.589
32.7389
204.114
0.95585
3.21024
0.792707
2.27761
5.55044
5.67701
29.3628
9.68373
10.8633
7.90737
13.7328
3.40808
5.41539
6.75859
0.43158
9.06854
6.03076
6.88554
8.13002
14.6358
10.6179
17.4664
13.8803
11.3108
16.6795
25.2922
8.01808
18.1928
30.1225
30.1053
4.05355
12.9181
40.8318
21.3975
7.01947
12.9571
13.6115
8.65732
13.0973
39.8398
16.2977
4.47655
17.1092
11.8509
5.11889
0.735691
11.9157
14.2718
18.531
16.2618
14.0154
14.9562
12.0183
14.8296
11.1751
4.96393
15.5805
14.3942
5.2178
45.5097
15.8388
5.62681
11.6
4.45269
14.8426
6.65021
17.7842
18.2432
7.40929
7.33853
9.62249
14.6043
16.763
25.3615
9.01697
7.57021
5.0048
3.67791
9.84072
6.11436
14.6219
31.6442
8.37989
23.688
11.5908
73.9034
46.8536
38.4072
9.45382
5.81719
4.40873
7.84581
6.51781
9.66431
22.2027
41.1987
6.106
6.0436
7.75556
7.49627
36.5312
34.1028
42.28
28.5019
21.5184
17.207
15.1366
22.5528
73.8018
17.3529
13.2683
19.8437
24.3049
8.19074
20.7857
11.3727
32.4846
12.1107
25.8539
19.1238
21.1536
34.2472
22.4756
159.878
60.4218
10.5712
21.7949
8.6632
59.4228
92.585
34.619
9.58123
169.009
27.8986
23.3397
207.129
17.0383
27.4099
17.4723
55.9908
25.4965
21.9894
56.5815
13.54
24.6389
33.0588
56.9091
28.8064
19.0247
21.8879
28.8723
14.476
109.501
16.2623
38.6083
20.2148
32.9391
94.8529
77.3569
76.5551
54.5283
14.4851
210.726
29.8883
53.9215
56.416
59.1102
12.3956
45.8394
25.7089
15.3217
26.5004
12.4212
12.34
26.2126
24.4029
15.4105
23.9811
29.1384
12.0805
214.16
233.474
12.4822
13.0963
12.2853
11.88
223.947
26.9612
19.0331
161.223
20.7653
15.6485
18.5069
25.0862
328.064
37.5913
13.8551
32.4691
54.7515
21.6231
42.6673
50.3317
170.51
9.33607
40.1287
7.09756
52.9869
8.58996
103.285
5.87594
63.2374
8.32922
18.7512
11.4416
60.1558
22.2805
12.6878
38.8764
151.963
94.46
9.06486
17.598
32.106
35.1285
65.7477
33.92
8.5265
10.1575
29.9533
12.9436
11.1407
9.34491
11.7223
11.7531
27.4133
11.2877
17.3129
53.0853
25.7003
7.86629
18.0892
48.6841
6.3129
9.60975
38.3794
5.90858
6.2119
21.8805
44.5121
14.9473
10.9639
71.049
31.3055
167.868
39.8202
40.308
42.8113
14.2727
20.9586
33.4978
20.3517
19.0102
10.8104
10.8141
33.6705
10.0809
225.761
20.9292
21.8541
33.3992
11.8253
13.1627
11.1013
243.151
40.6485
25.7104
266.49
42.5861
50.0898
90.9796
26.2726
42.8552
42.3853
35.8497
10.4591
12.9266
13.9631
37.5406
38.7002
42.1028
11.3201
11.9354
47.8183
20.7921
12.1763
10.7484
43.5506
12.2289
15.3967
54.9173
21.0452
77.6819
93.4436
29.8671
33.2322
18.5861
75.3967
71.8773
250.977
38.3771
33.4368
17.1987
91.7136
56.6147
300.564
42.1811
37.4503
14.7495
28.129
9.03408
18.2761
39.9952
14.1657
22.0528
138.452
112.854
5.64486
17.7306
6.07775
25.0046
32.4667
22.4349
42.2466
12.9549
17.5847
15.6131
23.6862
38.1721
48.0673
25.5062
10.6396
23.2008
10.923
15.7522
96.6045
18.6205
31.0827
45.0442
54.6765
8.16976
6.27446
9.68853
10.3773
112.053
117.149
12.7058
29.1149
9.69965
12.0886
11.9541
13.3672
12.9684
34.996
34.7845
10.9955
11.8858
10.9908
11.0061
34.774
36.7979
17.2892
12.3399
37.4902
17.4138
10.3289
39.1824
10.1126
293.563
10.9192
12.0817
36.8447
51.5045
33.8321
30.334
18.2371
12.8136
9.29
20.9521
25.1839
26.5539
30.7797
10.4239
48.0661
16.4347
12.9397
16.8634
44.2447
37.9408
25.5503
25.9196
66.8213
30.6718
239.5
289.137
32.2544
32.5249
52.8577
36.1341
85.9689
248.32
255.031
43.6118
50.9394
9.43077
7.78478
11.2657
25.3119
13.8154
11.5158
105.128
6.08526
10.0775
36.3941
28.8055
16.4877
15.0502
9.99053
14.5403
10.6237
7.37647
5.72915
5.8064
6.69768
24.6521
7.09232
8.19013
8.60679
8.25263
29.3346
19.7201
13.8587
117.147
9.18384
10.3065
8.36313
28.3733
21.1772
26.2562
11.5601
11.5185
11.1271
10.7796
21.6771
8.47382
20.6472
8.77008
11.9551
10.0645
13.1033
10.8607
40.1471
43.6218
8.81736
9.11875
39.5419
29.9727
41.3612
38.0965
22.1912
36.7445
45.2029
41.4727
11.7564
13.4215
17.5958
15.5457
34.506
44.9088
41.2224
13.7539
12.6692
26.7757
10.7987
10.087
25.5095
77.2621
49.6308
13.8175
15.4861
16.6691
22.0934
41.7054
43.3224
16.5665
15.5848
38.8427
173.996
33.275
17.2735
29.1867
28.5151
78.523
41.2318
16.0825
31.0838
30.2756
47.8915
47.2984
9.39141
4.82348
15.4199
10.4882
19.9413
20.5024
12.7523
19.6278
20.1624
17.4023
7.3592
13.6994
21.4373
28.1621
32.1419
100.932
9.36866
7.93043
11.5271
13.6702
17.1478
28.5031
10.8479
14.0986
15.8711
13.9982
11.9166
5.17887
16.3031
12.4174
11.8502
28.3365
9.86632
14.1529
10.1814
31.1947
7.62727
14.147
19.6046
15.6491
17.9813
6.90181
7.55868
10.1179
8.53714
10.3291
9.32413
11.465
13.1817
26.6996
26.4396
30.0306
18.4503
27.4377
21.5769
24.2601
19.5808
26.9083
29.2329
23.5811
30.1707
26.6914
17.1134
16.6202
44.1721
9.41479
8.51593
30.4957
26.8229
34.1886
17.9936
31.8606
31.9667
24.4586
36.8348
8.20065
28.8666
18.0138
13.8504
32.4373
42.6968
40.6409
46.364
46.4456
22.1144
19.0092
18.4749
18.5481
27.8523
32.2633
39.484
9.60468
16.7625
11.5885
12.1635
25.3338
48.5914
33.2659
69.5894
9.44653
9.72617
24.5602
14.3702
13.5499
9.71097
13.2251
19.019
15.6332
12.9837
17.78
20.2642
50.5543
51.095
23.4832
23.6425
23.4744
23.2042
17.0547
16.2561
50.2987
10.6283
10.7266
48.7991
10.3986
10.5292
47.4472
18.1604
36.8337
21.7434
60.7748
138.25
18.2344
20.2364
24.6697
7.77666
7.05383
6.31571
12.5403
13.2531
8.74474
12.1563
13.1299
13.0914
17.18
14.3756
130.291
12.1536
10.9778
11.0997
12.954
140.113
8.16434
10.1181
50.0751
42.8518
10.0186
9.91736
48.5806
145.104
25.5363
26.6032
26.2972
22.1084
27.0813
24.4547
21.0262
25.1335
27.6899
28.4353
9.77403
47.3056
46.1485
9.72252
42.83
10.7756
11.1386
10.0492
23.383
13.8653
14.0163
10.1201
9.77543
9.49069
9.57221
8.24475
8.55715
34.7657
10.5672
32.7181
9.53805
7.18822
7.76445
11.6441
11.4684
27.9103
7.49561
32.49
12.2923
11.0561
11.1867
7.82952
16.8712
17.4541
18.6667
17.4854
18.6139
18.2793
7.40656
37.9241
13.8588
17.5092
127.406
17.4868
7.76903
17.6515
16.8979
23.3472
52.651
42.7673
9.55499
42.4117
109.562
22.4626
25.2413
33.0898
222.218
214.7
9.60659
24.6241
23.2469
24.1255
14.779
24.3906
23.6883
24.7738
25.4384
24.5718
24.7391
14.7109
56.9306
23.6141
23.4815
24.1931
23.0138
23.8077
22.6185
19.7914
22.3786
22.0681
9.55113
22.2165
19.4916
21.8898
9.63062
23.999
23.0647
22.6503
8.37938
13.9063
13.7238
13.8929
7.90056
13.9177
22.7928
7.44941
11.6571
14.2988
18.2283
22.7978
13.0829
6.61342
12.1349
16.1912
19.1513
19.4423
22.3281
20.9693
9.11008
9.19907
11.5048
18.2955
19.3203
19.83
22.9922
21.1434
22.0009
14.1156
13.601
9.39169
9.33552
9.71364
9.38134
22.4275
13.8966
13.9765
9.45104
9.67217
9.65051
9.69006
146.164
14.4403
14.9364
48.6557
41.3607
172.827
34.4612
32.0774
17.8534
18.3837
31.4726
14.2576
14.1991
17.7631
17.7984
15.8556
15.6208
7.91652
15.8751
8.28054
16.1221
8.33174
18.0116
17.9953
16.0474
16.0307
19.6194
13.7195
14.8368
12.4172
12.3559
10.7716
12.2211
18.6215
13.9798
14.142
12.2862
11.8278
11.5533
11.6753
11.8017
9.2068
12.3747
25.959
53.8455
184.041
12.3703
9.73034
10.2014
12.3501
7.82183
14.6939
7.99773
7.63466
14.7712
11.2441
8.68762
18.3104
18.1383
7.63454
7.68263
11.293
15.6644
11.2809
11.1285
15.5402
11.2049
16.6032
17.2534
17.2292
16.4815
12.8547
14.9169
13.0163
10.6366
10.735
14.9261
12.9146
13.0216
20.2492
17.6132
18.4126
19.3386
17.5939
17.4202
17.0027
17.2801
16.4509
18.5809
10.5734
9.31817
11.2129
15.0348
11.4678
12.8518
14.8957
12.0011
16.8539
12.9383
13.0153
13.0532
11.4299
10.7338
10.9609
17.348
13.5825
14.0009
13.1533
13.1607
12.6199
13.0262
16.3332
16.6315
16.7052
16.2124
12.7406
14.2096
12.5763
12.2425
10.9333
14.1777
13.044
12.6965
17.122
16.8051
17.3696
16.6419
28.4722
18.5007
14.941
16.6155
16.1008
16.4759
12.2651
33.8051
12.5745
12.9477
17.5595
13.8041
13.0093
15.0977
13.4078
14.9824
12.1708
15.4239
15.6864
16.2545
12.3541
14.6257
14.6847
6.51351
12.0841
14.273
13.2349
12.3056
15.9555
15.158
24.1211
15.4642
12.3871
16.5782
12.3818
16.6753
12.8329
6.96356
11.7117
185.31
31.6883
128.867
31.4053
9.57814
16.1496
11.922
14.5554
14.6066
12.0348
16.2219
30.9903
13.0073
16.179
12.8645
19.0904
71.4305
12.3769
16.0304
12.6713
17.1485
14.5523
12.1774
12.0053
11.8799
6.53434
11.776
11.6805
6.50089
11.7596
14.5713
11.8435
12.0805
11.898
6.70202
11.9607
11.7264
6.70205
11.9514
14.2004
11.998
15.5034
14.2955
14.9968
14.468
11.456
13.8306
6.14706
11.7315
12.1489
12.7826
11.3642
13.6482
14.1211
14.7331
14.3397
12.5686
14.8946
11.452
13.979
14.8582
14.8766
14.9517
14.7958
14.8063
14.6295
14.7496
14.8894
14.8474
14.8506
14.9397
14.8211
13.2681
8.75169
10.9426
11.2629
7.37165
11.073
13.5851
13.5959
11.2655
27.0057
14.3727
11.1755
14.557
12.3187
13.7275
14.6676
11.3597
26.8935
11.145
13.9253
14.6309
11.2493
26.6495
11.1001
10.2378
11.1313
11.066
9.35159
26.6445
11.161
11.0802
14.6821
14.4519
14.5287
14.6445
14.8289
14.5637
14.852
14.3739
14.7954
13.0378
14.5982
14.2784
9.17969
11.2114
11.3928
7.43111
11.3408
14.2967
11.4322
11.3966
13.9682
6.14159
10.7618
11.2513
11.435
13.6901
5.49235
5.93788
12.3217
10.6987
10.5525
10.854
8.52311
10.6582
10.7896
8.48543
10.6531
6.07932
6.05116
7.33646
6.89529
9.39052
9.72333
9.46496
10.3004
7.65834
9.59338
9.93368
7.69505
9.62309
5.46237
5.48915
11.3818
11.2286
10.2683
10.4558
10.5975
10.8784
10.9557
10.2481
10.3886
10.3054
10.4192
10.7409
10.81
10.7271
12.4488
11.0715
10.1538
9.8331
9.94164
10.2506
11.0841
8.82096
9.66798
9.31822
10.1277
9.65085
10.0587
9.70242
94.3762
36.4402
44.8632
43.4118
81.5048
39.1904
35.5986
39.9652
50.6493
30.2647
79.5906
49.5
174.476
19.2623
18.3447
34.3625
32.0585
19.9367
38.5748
20.9267
40.5158
46.5639
43.321
46.181
39.9859
28.1468
148.033
24.6736
174.092
22.6055
29.9697
28.6283
31.8951
45.4664
23.7723
52.5684
45.5157
22.2534
51.9153
70.4234
91.5289
13.7162
60.0126
19.8804
65.0396
71.7657
19.6044
17.6329
19.4978
162.525
66.7868
20.4111
25.8798
52.896
65.1737
24.6461
20.5969
21.8811
35.4765
68.701
77.1667
204.352
32.2481
95.7615
63.0746
146.394
17.669
23.4799
23.3894
331.001
23.2924
404.197
28.2027
39.3445
36.7217
93.8708
57.5287
199.496
492.103
29.4505
363.961
185.146
86.0487
27.5643
347.059
133.856
17.9957
71.8872
22.8204
318.045
42.5001
53.6702
164.952
22.9802
216.082
172.525
184.602
73.0902
484.838
312.916
83.3518
43.0834
202.521
202.553
462.401
77.6102
35.5987
214.013
225.504
219.045
44.9568
79.7981
25.2165
46.6459
195.528
211.608
114.465
41.3683
156.413
275.766
26.1434
41.9532
609.55
33.2841
17.5057
18.2601
14.833
11.3254
25.2725
17.6856
24.0204
38.3102
52.1609
126.152
78.1051
37.4565
49.6113
25.077
63.4565
17.8487
50.5092
70.8563
16.5271
18.6091
17.5167
15.497
16.1499
19.5758
20.3576
19.3726
19.5386
64.6537
63.6355
19.2942
19.3975
22.9687
64.0368
62.5817
64.2493
24.8711
70.2818
16.9533
60.5532
65.51
19.5447
16.5445
51.0865
46.6698
16.9181
16.4303
58.3968
45.4154
55.0405
17.9238
25.2384
16.8563
17.2673
65.7231
22.3766
69.681
25.8385
21.4076
33.2601
21.8613
69.083
205.757
57.3397
200.312
23.0439
20.2762
23.4386
19.8721
37.6192
16.4854
23.8453
25.7618
57.882
19.7036
19.0733
361.351
39.9145
16.4502
87.9257
18.0925
85.7818
16.085
157.25
40.4426
21.8127
112.365
370.841
35.5167
186.795
52.0978
490.167
56.3102
30.6307
64.3176
120.76
398.348
30.5953
91.8421
28.8482
29.5407
190.283
44.3739
200.796
40.5201
41.0659
147.908
462.982
31.5817
33.9174
22.1814
35.8732
680.632
115.2
191.31
662.719
23.8188
553.212
260.65
19.6562
589.191
29.7107
111.742
233.659
22.6893
592.658
73.4604
43.7356
101.233
35.4276
71.3287
114.626
288.084
34.6099
22.0233
17.1856
15.7255
12.5071
52.225
74.5476
12.6953
51.7009
47.5968
56.8536
58.9399
13.302
12.304
25.3602
16.463
13.2125
13.4811
25.534
24.0539
23.9044
42.8197
19.04
26.3784
18.1912
18.2412
18.9391
15.6948
200.785
56.0131
25.2268
21.6889
37.6068
54.7556
19.6965
81.6536
52.8222
69.2802
33.837
20.814
38.5406
68.1877
25.1515
25.5568
47.7427
83.9198
101.27
65.4858
21.2303
36.5625
24.5602
255.686
64.6987
53.7409
63.4257
87.7179
102.783
19.2866
31.8642
41.8896
23.9704
20.1009
14.5481
463.987
17.684
66.5615
32.8417
191.981
172.035
22.5117
34.1257
16.0561
55.4984
36.2716
61.3853
22.353
388.765
44.4182
106.02
188.222
230.651
25.4631
18.3086
21.6478
535.447
36.9132
221.6
61.6458
19.5617
26.3113
651.135
60.5213
39.6189
35.5723
54.6025
171.627
45.0603
52.363
193.123
233.282
107.959
29.5293
17.2399
56.5134
170.863
18.7784
48.1292
28.3792
33.2404
46.6286
157.614
30.0355
46.7346
56.7101
19.759
636.782
23.5144
26.6671
39.6006
33.5632
12.8166
13.2247
13.2122
59.854
74.2508
188.222
24.1267
23.4951
21.8328
23.0275
50.0153
57.7809
31.1625
49.5127
54.6678
52.8085
63.0115
58.8519
61.3879
59.7159
55.3947
58.4724
18.0403
17.131
16.7961
14.8654
222.133
14.5504
30.8963
49.553
18.089
29.4067
16.3973
20.4086
24.2083
18.6972
41.5463
71.3433
81.7188
72.7167
219.188
34.4965
57.3767
15.586
76.3505
62.9964
71.1335
30.2722
25.9119
13.0813
14.8587
16.5003
14.2977
22.093
26.8257
32.9935
63.6848
33.0091
28.1731
18.1564
26.1509
88.8321
70.6239
33.1095
21.0954
19.5559
13.5987
20.136
31.1691
23.0651
24.7612
14.5086
33.713
26.3863
33.3182
18.2405
38.0215
19.782
12.3057
30.3949
42.6777
39.4916
54.7862
19.8909
27.3591
38.3445
10.6707
371.986
11.0451
24.1067
88.0067
37.997
30.4414
152.372
47.0059
578.884
140.601
175.451
15.3468
221.352
24.3865
15.251
42.6747
53.0922
51.9928
101.292
95.1751
48.7407
164.749
31.9446
41.4236
148.636
146.588
520.063
12.9791
12.8597
13.2377
12.4144
24.7148
22.2031
28.8692
24.3517
57.8712
23.6003
24.9319
56.9955
16.3554
21.8426
21.1797
21.6762
23.8748
21.7188
13.0844
11.7721
10.5021
11.0978
13.1013
203.403
12.6649
12.4272
62.4667
12.9263
12.5106
13.4409
12.7942
21.0671
18.9146
12.8257
16.9675
93.73
15.3575
258.526
18.734
15.5623
81.0244
74.6139
74.7615
34.6186
33.862
70.3372
96.146
262.282
13.8766
12.749
35.6047
38.4046
81.794
95.6639
24.0436
26.0531
84.2575
428.156
33.464
152.328
44.7713
31.4225
87.9737
20.5814
15.8606
46.1236
17.7193
21.9629
29.0324
51.0848
22.8968
11.9847
15.2062
155.4
183.743
32.4209
29.884
41.4895
38.2502
27.5293
15.4008
25.63
39.2109
16.0063
33.9464
31.571
37.4494
52.4494
40.4491
14.4372
26.8307
31.8447
16.6541
19.764
42.5143
23.3635
55.6262
482.295
58.5648
164.856
26.8247
487.845
91.9407
13.016
12.6298
64.3628
60.0434
11.8719
12.4713
53.1777
30.5314
29.4324
63.3958
30.8771
11.9426
48.2633
23.8713
22.3605
29.9945
31.9761
23.9178
25.0971
26.607
28.4004
54.1188
34.2409
26.1266
25.6327
229.911
29.8635
26.4887
28.9783
34.1974
21.2988
25.7107
40.3034
37.4844
57.4861
78.3656
64.8856
69.8523
13.1298
27.1985
71.7117
22.3453
18.5136
14.7747
15.714
68.811
20.2461
70.7613
121.79
28.478
26.8684
22.4427
16.6909
27.0387
12.4081
20.222
24.4715
19.1758
39.5635
27.6315
29.9153
31.6955
18.5867
28.4594
45.5042
34.0091
30.2924
25.3934
18.5069
28.2649
12.2924
15.7673
39.0938
29.3136
23.3838
17.1955
35.5838
21.0824
24.0923
17.9449
24.2707
15.0504
24.3494
141.887
13.9493
13.8225
18.0818
22.4717
23.0962
23.5056
18.0624
18.423
18.5425
17.5482
23.3815
23.5882
70.2044
18.5561
18.5603
45.4021
11.6823
11.3406
17.4331
29.1207
17.348
28.437
11.7178
11.639
12.2619
16.7782
17.2211
31.2929
17.3692
50.4127
11.7403
11.6501
67.8505
57.237
35.0478
55.9124
24.7617
25.1094
57.1218
55.1943
30.5001
24.9244
65.2831
11.1628
377.275
101.659
42.5255
10.4836
11.7951
23.0902
11.5496
23.7976
11.0319
22.2605
11.3385
22.0096
43.3196
20.2536
19.6933
20.5457
20.6264
24.2082
29.5741
52.265
21.7488
27.2392
28.2464
55.5976
47.9285
17.0289
28.8037
20.8301
25.6936
26.2598
24.1125
12.0441
24.2285
22.5059
12.6061
189.148
51.0089
21.7475
21.1743
52.7014
31.3787
27.1891
15.2254
26.8059
13.1886
23.4636
22.1762
22.6505
55.3264
113.955
18.3663
34.4303
19.5285
27.5079
106.823
84.6236
92.6395
37.0645
25.4558
21.3688
19.9333
31.8153
78.2363
14.9766
20.234
14.3536
21.116
27.0355
28.1899
79.2956
21.8672
33.6224
22.9905
14.6736
14.2902
15.1229
11.4952
35.8621
8.28178
9.76532
17.9829
18.269
44.7702
57.079
22.9904
17.8958
17.3665
23.0704
44.4244
42.7332
24.8775
19.5838
25.6371
19.1319
47.4604
47.9601
16.8271
15.932
20.7628
18.8941
15.8247
26.2673
24.3584
24.6945
24.2513
42.4631
11.1723
10.7806
19.8764
45.1902
18.6951
18.5462
11.0598
9.86139
18.7608
19.4895
19.8248
20.0856
16.6604
24.2241
15.4465
11.4456
11.0444
19.8944
12.3241
14.4383
18.7795
26.42
24.1461
21.4717
19.8632
20.1076
20.1076
19.859
20.3912
19.9818
20.0196
19.5464
20.6085
21.0927
20.1714
20.4965
20.761
20.3098
15.8022
16.4222
19.6589
13.7087
7.4216
13.2069
28.3494
14.7544
66.7161
14.2405
77.1426
66.656
91.4791
18.8974
15.4015
19.3634
14.9633
10.7401
12.9816
25.3949
42.9631
254.027
64.1378
7.25984
17.3665
10.9144
16.2537
11.3652
23.3863
60.9818
21.2403
70.1159
18.7094
14.9181
6.89875
13.0442
9.46609
32.3644
33.2557
17.3958
40.8371
18.0471
16.4401
16.5167
17.2808
23.5612
17.5185
16.9391
16.0745
38.085
38.6534
41.0333
38.8301
15.3553
15.8702
16.2646
20.607
19.9163
17.0324
16.2381
21.0745
16.7395
19.9927
15.6326
16.6571
16.7213
13.6832
13.4143
13.3515
16.3629
17.0385
17.5474
16.1354
13.0665
9.6113
39.1584
21.1013
18.9224
20.3236
13.5368
13.6521
16.4602
24.2982
18.3928
18.1787
16.3136
17.9565
16.5659
17.7155
37.4141
69.8038
18.9058
26.329
27.4713
20.0142
21.9721
18.7681
17.995
19.1378
19.0229
18.052
18.4121
18.5099
19.1774
20.1197
19.9791
19.1124
19.0842
18.923
18.4419
19.7958
26.1219
28.9889
20.4299
25.2451
21.5104
20.7602
21.7736
19.225
19.5026
20.4011
23.283
19.6951
226.49
18.0436
19.1492
41.0732
11.5147
6.35015
11.7766
6.24851
12.7149
15.7278
16.2191
12.2713
13.0482
16.9333
13.3798
16.492
41.0989
81.187
21.3986
16.5077
17.0345
19.6931
22.9683
17.8202
28.1456
17.2961
16.0597
13.6407
14.2798
15.4519
16.7665
19.5526
18.6403
17.21
16.19
14.7388
14.4131
16.5525
9.79039
9.15357
11.368
15.3578
11.8315
14.84
11.3185
14.1856
10.721
14.7522
18.9245
20.6566
170.305
17.5225
17.8783
16.1675
19.0609
15.6539
17.6153
15.0101
16.7949
15.5618
28.137
28.37
12.1778
15.433
15.1324
12.728
8.00177
7.52034
11.8168
14.7673
14.5111
11.1547
15.9666
13.3823
124.575
13.6789
14.9966
14.3829
14.954
15.412
13.9787
13.1874
15.225
6.69577
7.63875
14.8136
14.3849
7.54402
7.91828
14.2839
9.97207
15.0397
7.67681
10.736
12.9039
11.0064
15.3672
15.7156
15.3004
17.7431
13.9845
14.3479
13.6006
14.6702
15.4103
15.1075
15.3982
15.3451
14.2902
7.29351
14.1652
13.865
14.5018
15.8103
14.6515
15.616
14.8481
16.0498
16.4774
16.0013
16.497
16.039
16.1961
15.8107
16.4689
15.733
15.4563
15.9499
15.1803
15.6591
15.1986
15.9651
14.7575
15.8418
16.1973
16.0419
16.1075
16.4811
16.5462
16.4455
16.5669
16.3008
15.2757
16.0279
15.5035
16.4508
16.2557
16.535
16.1689
14.6088
13.2468
12.7118
15.1105
14.8338
16.2094
16.631
14.4157
14.35
11.8771
12.3424
13.9401
4.52722
5.4004
6.58997
9.76452
10.651
5.52415
6.14365
10.8992
7.06017
10.1491
13.9906
16.1601
15.7505
14.4225
13.6175
10.6999
11.5194
13.016
13.4362
11.7959
13.9009
11.1061
11.5016
8.4711
9.05733
10.9021
12.2827
14.6886
14.2052
12.8579
11.6116
9.89133
9.15658
12.2479
5.38454
9.66965
5.45832
9.53597
5.28283
9.29077
9.401
13.2371
14.7707
14.9654
13.0052
12.7729
10.5989
12.9158
10.4543
12.6556
10.2263
12.4346
10.3225
24.3963
10.9082
6.9498
11.1109
11.7513
12.3539
10.4586
9.3193
8.43688
10.0598
11.7681
8.00626
8.41213
7.10039
8.48038
6.8657
8.2002
6.16789
4.78498
4.82991
7.4848
6.57239
11.6379
7.18832
6.27025
8.77944
5.56519
10.1561
7.97139
7.65011
10.5181
10.6361
12.0713
12.6394
9.97828
9.94659
6.53656
7.45574
9.24713
5.90297
9.63901
12.3389
11.6178
10.4464
8.14017
4.60787
7.01577
8.91263
7.14796
9.79107
5.74532
5.24956
4.69245
6.50508
8.12538
5.961
9.06869
5.28992
3.72359
7.17487
17.2547
17.4454
15.7816
6.05659
6.78046
7.31752
15.7858
14.1231
15.186
47.9501
106.961
64.0566
249.568
390.086
220.156
166.797
224.6
930.817
71.2415
80.648
918.896
287.034
45.5971
349.842
62.8792
94.0415
460.333
362.429
40.346
189.184
942.825
207.03
624.035
58.8143
425.038
58.5362
47.8188
215.039
84.0581
79.9443
84.6416
61.7046
58.4052
86.215
22.9339
90.8973
26.8329
245.982
288.784
33.5761
54.6682
163.154
29.2039
303.087
38.9245
17.9003
68.4191
141.471
69.9011
104.425
100.022
53.6738
18.9996
123.758
57.0874
72.9535
47.0077
458.404
332.342
24.4755
68.7404
43.5611
40.1554
53.2017
40.0204
348.662
86.756
703.122
43.9445
790.551
304.786
26.1904
47.1818
67.9743
108.435
116.029
86.0811
104.303
86.796
25.512
29.3825
31.4352
63.4768
26.3761
69.9261
105.901
34.2392
109.627
36.6438
227.683
33.9113
77.2367
25.4834
49.193
335.719
47.9355
40.8088
91.1491
51.6805
45.4112
322.102
128.815
487.687
51.9987
55.7347
146.63
102.102
39.905
760.35
119.763
724.461
67.8161
70.8996
69.4889
71.2839
59.9909
51.8561
25.6466
48.7698
51.8115
18.7435
23.292
19.6983
32.2618
26.1712
70.3109
81.2833
147.114
85.5487
73.4106
29.5329
31.7283
36.3772
33.0712
530.967
85.5104
115.356
46.2086
59.7146
117.331
106.493
208.87
248.968
140.418
49.2092
153.552
95.9405
437.685
155.02
63.893
507.913
37.287
138.35
13.9025
12.8601
20.2268
40.6633
28.5136
20.9011
29.5917
20.7132
30.7224
20.656
30.0495
24.5671
32.9912
32.4674
19.1236
33.0132
19.1107
157.873
155.261
154.318
34.2955
36.4766
14.6198
35.7887
15.9159
180.928
200.428
16.8216
17.7137
197.598
75.0067
80.9188
19.3175
17.5047
158.36
88.2289
62.8507
309.613
124.129
64.8733
49.8089
43.5513
75.1273
20.1798
121.848
69.4385
21.1436
101.603
53.8171
23.0728
23.2664
44.7799
314.521
422.622
549.026
127.049
127.086
1095.77
1621.25
130.541
261.581
252.972
97.0265
55.2666
148.563
99.9638
86.784
86.8595
23.1147
32.6861
19.3546
19.9278
35.051
33.7023
126.229
131.406
11.3095
24.633
24.5238
151.401
26.4722
19.1394
18.6379
84.5107
54.4846
50.5791
52.3666
49.0763
79.6809
121.827
512.672
29.5468
88.9441
219.35
368.206
221.361
29.88
77.2938
96.8743
414.446
87.523
102.291
96.4381
29.6757
137.48
63.6102
33.8295
79.8529
44.8879
73.8937
88.9965
55.2484
168.687
107.525
96.2254
184.248
142.145
825.071
101.884
18.6245
18.6551
98.9274
11.8258
11.8966
24.2284
24.8053
18.2935
17.8881
89.7817
90.8734
147.071
118.315
102.886
25.4412
22.9257
26.3832
28.6858
129.088
48.3259
117.422
20.4034
44.423
28.9428
22.9148
84.3723
44.8838
43.0887
27.1784
31.9434
61.5473
341.022
328.892
26.5133
17.8402
81.2778
296.574
109.184
25.1962
49.563
20.9402
126.052
40.5673
80.8291
41.9401
19.4146
18.38
48.3865
94.7622
20.1923
92.1337
70.5715
124.831
68.2066
36.8175
29.7597
22.0123
21.6251
34.3301
88.2632
49.4982
231.24
61.5487
74.4987
47.9493
15.357
15.9928
25.2469
25.1287
15.0866
16.4103
42.304
118.216
94.4337
67.9551
32.1313
83.344
62.9813
14.4494
24.7245
101.694
83.9754
22.316
35.8066
83.8739
35.9562
57.4438
63.5097
198.016
15.1039
14.871
24.716
24.5787
23.9852
28.6436
77.3729
52.1472
66.1085
105.985
221.649
15.1739
15.5547
142.233
54.6858
45.984
72.7087
58.1534
346.825
87.4982
62.7559
34.2516
17.7296
18.8891
135.415
141.729
15.1799
537.928
113.279
42.3822
32.9608
64.1291
138.799
50.0211
94.9231
40.8072
353.834
25.3425
25.6297
39.945
43.1246
31.3588
23.6296
42.0205
78.768
53.7291
23.4111
36.2163
46.002
407.928
61.6487
44.1021
134.291
22.9153
35.5196
62.0897
30.0643
28.4148
53.6195
71.029
425.284
49.8773
40.3641
125.552
23.1421
34.9431
26.627
43.4671
19.7114
55.2471
41.1236
27.0721
48.5366
112.287
44.6276
51.388
91.1098
40.6928
32.6814
20.3873
17.4953
9.56814
3.02187
30.14
23.0894
1.43886
36.9023
37.9078
39.9254
38.7606
36.3132
20.5029
20.1221
9.15004
9.34768
9.60737
9.45039
4.22568
4.33511
1.1291
0.391771
3.02134
0.476429
6.39483
68.7358
116.937
537.235
7.15695
7.48663
17.433
16.2789
8.16728
7.48951
2.34392
2.58287
36.1444
35.4159
192.525
10.0277
32.5957
39.7256
8.97749
7.4329
4.87414
17.7498
18.4049
9.04666
8.8056
8.33319
8.65691
61.666
53.791
41.1354
118.136
451.148
53.612
38.374
45.1263
49.6652
0.937178
0.499305
9.10622
0.37873
35.8167
29.442
134.707
137.311
117.255
114.548
105.769
96.006
113.687
20.7084
21.513
24.4802
21.8814
29.1798
28.4777
26.2625
28.2678
28.4967
319.593
23.1673
72.8733
39.8249
60.9344
27.4012
32.1939
51.3368
94.6736
80.0115
319.071
74.2931
40.9466
36.9005
47.107
25.6617
44.9353
22.9441
32.2425
44.9019
41.2266
28.7938
49.7967
43.3139
21.9801
30.702
33.3183
7.19632
6.99626
14.0951
14.6935
6.55948
6.85963
11.4858
29.4014
4.27643
7.47172
36.4742
26.2461
5.59098
18.2416
3.39845
1.64816
37.0834
18.4423
19.7236
287.632
36.8683
48.1826
142.852
74.8719
22.6637
32.6789
45.0219
21.837
43.2067
61.505
50.6159
13.8039
13.0598
5.10349
5.65196
6.38677
6.06966
2.88609
31.4374
19.2605
7.89298
16.1419
24.6195
25.6978
16.6617
26.741
4.79369
4.56558
10.3752
10.203
4.67326
4.61337
18.1924
18.0035
115.31
17.1255
10.7452
10.6704
4.99722
4.87631
4.91152
4.78642
11.6355
17.8604
16.8043
16.0858
110.468
16.6224
8.94907
10.7976
9.98205
11.6358
11.2938
70.2533
10.858
11.1975
33.5037
46.1626
41.3188
41.7384
45.7903
32.7916
40.0812
40.5893
90.4598
49.4038
90.7007
73.4822
16.9144
35.6225
38.137
44.6046
18.0622
44.8833
40.7474
48.155
29.4861
35.1648
45.0278
81.9263
43.7114
17.6274
41.75
39.9384
35.4014
53.1392
39.4984
32.6596
69.3667
34.7363
34.0935
30.67
25.9392
28.9061
78.9532
38.162
35.1129
40.2847
304.844
42.2803
79.5017
321.031
285.901
4.51967
4.6174
8.93724
10.0152
3.98529
4.53014
0.13098
2.71257
8.1086
7.10274
3.5189
22.38
53.3102
222.052
323.421
27.7925
81.5024
257.449
6.40146
6.26726
0.801884
6.43274
0.966529
6.47075
6.56505
30.2695
26.3461
21.041
22.562
20.9243
19.3817
52.3639
10.5985
34.5874
34.3066
40.2747
96.1314
41.0956
33.8522
49.6221
36.3449
35.9075
46.0343
16.3064
30.2901
26.0851
23.659
23.1883
24.9364
13.8667
23.5861
25.1056
30.9763
25.6029
26.1783
13.6813
13.4162
15.8155
10.8493
16.3605
24.4549
20.0544
22.4777
23.6506
18.7603
16.0642
18.9108
20.7032
60.2465
3.12302
3.60226
6.8117
7.30317
291.282
3.2456
3.45325
1.38901
0.989763
2.93574
11.7116
20.8039
10.1322
12.4682
6.3527
5.89279
2.52403
2.6905
23.3579
14.6758
2.18012
7.72448
9.78122
3.00941
2.78274
5.586
5.36895
3.59801
3.4846
12.4249
2.70931
5.91011
7.75029
14.2332
7.52993
1.98428
3.99452
6.95496
1.14591
6.40752
17.579
10.2445
10.2049
3.70451
5.45683
2.34198
1.91941
9.23814
16.2992
8.72698
1.78707
7.76347
7.88708
11.4288
20.0096
11.0831
20.7762
8.62796
10.2494
8.52508
8.28123
2.38436
3.17438
2.22061
1.99345
8.80508
9.19124
131.52
14.8899
18.6564
16.753
16.8646
16.0534
13.1504
181.424
29.8857
34.6522
11.1412
8.37592
10.6513
9.1814
5.85432
7.7293
8.40102
5.24223
6.10658
7.50127
8.41024
4.96022
9.81665
8.84697
7.9018
8.51651
17.477
28.0497
3.63732
7.70236
5.94618
5.34647
5.23366
8.11729
7.69958
5.7838
14.8227
16.9656
8.25592
11.3841
9.8844
10.0055
7.43806
5.01592
5.42007
7.00501
7.61655
7.48847
9.31671
5.59494
1.7653
82.7091
1.05108
1.1151
3.98371
9.34418
18.4426
12.598
2.61581
4.34795
4.72977
2.33233
2.07485
0.924534
0.662149
2.90505
2.74033
6.89205
4.89911
4.33211
6.64128
7.95265
6.25771
8.08398
6.41876
4.76569
6.74698
4.81853
6.14933
3.93306
5.67091
4.53315
1.93897
2.89803
3.55713
1.38527
1.01831
2.44833
0.246814
0.20386
1.13725
1.39723
3.17507
2.92519
1.54863
2.40761
4.1008
2.15076
4.25482
1.62174
0.281931
0.446505
1.21942
2.1415
3.34877
3.96502
1.66225
9.27321
14.2805
9.51788
4.82584
6.13927
5.03501
4.99256
4.01514
3.29497
2.45533
4.7964
4.28872
2.76308
4.46631
2.67893
2.13454
2.72832
3.75014
1.26774
1.23642
2.01417
0.66116
1.66397
2.26375
3.24054
0.975189
0.81345
2.82226
2.00125
1.40376
0.620886
0.880991
0.600652
0.939157
2.25457
2.20538
0.921138
4.33024
3.07742
3.55223
2.69725
4.23403
2.06968
4.17338
2.57464
3.46125
2.85885
1.36444
1.4959
1.00811
0.543214
2.22817
0.936316
1.62789
0.133222
1.11269
2.1362
2.41599
4.05437
2.25446
2.32647
2.13406
3.64026
7.82095
3.43173
3.18414
1.9791
1.3121
37.7176
3.04432
80.1549
16.814
50.7383
1.34795
1.00972
52.7276
20.7735
0.361727
201.03
44.1281
0.568469
2.7358
2.20661
0.874496
15.0267
15.1946
22.1495
20.1051
76.2245
62.0173
15.9519
8.79344
44.0641
29.9098
45.2637
325.391
97.2828
11.3165
44.8776
12.4243
15.0939
48.3625
15.1081
15.3128
47.9988
15.2175
13.2987
38.6525
13.2655
13.331
38.2287
13.2708
20.1403
48.6242
19.8156
20.5423
49.2521
20.3473
21.0175
45.9471
19.7282
22.7952
51.1132
23.9279
23.4554
48.2807
23.4913
23.1282
46.6674
22.8305
20.4169
24.1396
20.3903
20.1635
23.656
20.0632
17.1465
20.4196
17.362
16.7663
19.512
16.5913
15.7058
18.3336
15.8503
15.4003
17.6851
15.2787
14.2195
16.6566
14.3014
13.8441
15.7611
13.5593
12.0316
13.8333
12.0924
11.8177
13.4336
11.7227
9.08499
9.3392
9.08726
38.957
79.5312
68.5722
60.0269
47.9878
46.4127
22.5573
22.1448
20.2956
20.1367
17.639
18.4843
16.2328
15.7289
10.595
46.7533
10.3951
8.99714
39.4923
8.75528
37.8039
8.09081
35.2643
7.84232
7.48929
31.961
7.0866
30.2662
6.70437
27.1687
6.55409
10.8866
21.7733
21.7693
8.53777
9.99229
9.94791
6.70406
6.74234
6.87972
9.67134
5.54865
5.63255
5.43182
7.72365
21.1913
2.45735
569.513
330.311
631.834
18.756
21.3749
73.7002
59.9382
15.474
31.9694
70.5761
21.7785
16.0115
22.2293
13.5625
17.1675
19.4627
15.6178
13.3111
14.5953
13.9809
31.7615
53.3034
7.83744
11.2247
7.78997
11.2679
12.078
14.3822
12.6997
14.1449
13.3969
13.9298
13.3937
13.8937
13.035
15.1143
15.0578
13.0825
9.27504
9.39686
9.38033
8.34659
8.7519
8.77922
7.94329
8.61527
8.43823
6.89727
7.03075
7.36003
6.27569
6.80864
6.68763
5.72922
8.81211
8.00439
44.2702
410.639
38.4642
30.4323
54.9644
20.4275
10.8643
25.0356
20.4015
8.62816
30.2395
319.405
261.969
37.776
222.82
49.4513
34.266
152.792
92.4806
64.5651
70.2033
24.9883
19.8618
10.7874
76.1287
9.03904
62.2999
7.65185
53.8348
7.16147
47.7755
48.2138
11.7262
48.6632
31.0678
5.58913
29.8113
7.87361
4.51497
7.96375
6.31368
3.33247
6.23226
5.66147
2.8048
5.72021
3.3444
1.53738
3.26279
2.18009
1.10614
2.23599
1.14724
0.615411
1.11389
0.379917
0.176125
0.397641
0.282999
0.281197
0.173192
0.155562
292.712
16.0876
65.7603
52.3878
18.2859
5.77277
7.44283
8.71958
15.8264
21.6447
6.90767
18.5996
51.5409
48.1676
25.8371
22.6086
37.1206
35.8959
241.041
27.8222
63.8942
46.8461
213.119
13.8089
16.7997
88.9873
42.448
12.5811
12.3543
50.7891
14.7908
15.1314
9.55199
20.8739
13.8645
7.98611
23.7423
16.4189
50.8744
6.82665
22.3742
42.8594
13.9821
13.9978
41.1724
13.9567
13.5396
166.426
34.8195
30.1793
33.7497
249.044
345.691
431.092
35.0335
20.9684
29.1018
27.5296
197.533
42.8271
102.55
376.659
55.4326
30.8227
52.0642
20.8332
20.5271
53.2178
21.1424
21.1871
6.23661
6.68828
10.2367
15.2515
13.645
14.848
14.0484
11.5331
9.86934
15.6759
6.9445
17.3451
17.3624
11.1268
24.7827
30.9871
33.7908
49.5598
20.7994
20.6527
49.828
20.9137
20.8856
50.5527
23.6962
24.2043
49.3602
23.6469
23.6792
25.5634
20.9413
21.0698
24.4109
20.7846
20.5494
9.04631
9.25304
22.0262
18.6552
18.6049
22.1769
18.6964
18.832
7.8121
11.2616
7.80942
11.2814
7.36511
8.10689
10.4388
9.59602
12.5778
9.6391
8.81283
13.1777
15.4637
13.8034
13.8528
15.3838
14.8361
10.8981
11.7898
14.092
19.8608
17.1192
17.1787
19.4485
16.9362
16.7997
13.4856
14.0504
13.4532
14.1424
13.5385
14.5671
13.218
14.7818
15.3727
13.7507
13.7963
15.3148
18.1233
15.5413
15.4495
18.2
31.1334
16.1051
16.1856
31.0251
18.6835
15.6065
15.8461
18.2693
17.3592
15.0668
14.9943
17.4841
15.0621
15.1101
30.9058
15.9855
15.9822
30.8467
29.4841
6.93647
29.3639
9.41974
6.48121
29.5398
6.96089
29.5181
14.6027
12.8155
12.756
14.5882
12.7858
12.7874
9.27882
6.2552
8.94159
10.6368
11.1407
10.5546
9.11005
10.7147
14.1434
10.7105
12.3697
9.83661
9.96169
9.55757
11.2256
10.8646
9.79857
9.83489
14.3604
11.0432
175.323
8.88526
9.56472
39.0541
34.9359
31.6849
9.90658
43.2271
130.443
30.3548
176.797
45.7403
43.4508
50.56
25.7959
25.1661
89.8171
119.195
36.9767
70.6373
43.137
169.997
459.352
47.0837
36.2461
79.4109
28.7724
18.313
19.6761
39.9469
35.1393
37.1529
23.5446
45.4634
20.2329
20.1903
19.2199
29.6438
10.5652
12.989
18.5432
36.8769
39.6842
15.3211
22.3907
22.1848
19.3866
19.4495
17.9108
17.1892
10.8432
10.3727
47.293
10.1855
9.91067
42.8874
8.7672
8.67522
37.4515
7.71215
7.81112
33.5033
6.80949
28.3153
6.8787
28.3436
11.5102
24.4381
22.9612
23.0237
9.0354
10.5177
10.5204
10.3034
19.5405
21.1786
8.66954
7.52227
7.49927
7.94864
7.69446
6.60787
7.22005
15.901
6.05778
8.15645
19.1222
6.27267
6.42318
7.27859
6.34507
7.53156
5.62525
6.32825
5.56755
5.64553
4.92852
5.58702
8.18621
5.13684
11.0829
4.10991
42.3603
254.29
104.343
45.165
167.887
167.632
290.019
23.388
70.8847
92.1513
23.4164
27.7102
72.2855
27.1865
301.58
232.105
28.0176
68.2237
81.4707
134.68
176.662
240.51
260.705
39.7874
48.1715
110.906
36.458
77.856
36.7439
29.9937
93.4473
210.057
111.748
57.9261
144.326
49.5917
62.3076
32.7844
47.3208
49.8682
30.1327
35.2363
48.1061
58.166
102.508
126.178
23.1955
720.423
35.413
46.4057
4.01786
14.7647
116.822
502.348
219.351
1.75971
34.3596
3.59978
127.033
67.2723
71.7121
92.8312
76.6692
88.8027
90.0286
41.3869
35.94
8.22536
23.5113
73.9946
63.0487
88.0903
55.4275
20.9429
24.1366
9.32622
10.2736
7.60242
50.7573
7.53701
52.7023
39.6708
47.2747
22.2223
2.23596
2.12965
0.679833
0.698265
0.112684
28.6592
0.199813
8.54236
7.07339
20.2694
63.3895
8.68674
4.27889
1.99996
19.272
26.0564
38.3847
18.2417
13.3463
27.6009
29.7478
5.81463
28.1276
14.6529
16.1105
189.209
19.1647
39.7218
11.2087
8.43169
21.1394
9.63024
9.87744
7.81821
11.465
12.4592
13.1094
12.4575
13.1145
12.7392
12.5194
8.43225
10.8513
6.53156
8.96708
9.64992
5.46991
14.8344
13.5297
28.9828
29.8295
25.9945
27.2462
21.7057
25.1929
11.0138
9.61515
8.43584
24.1034
24.7147
24.2396
24.691
20.4224
20.36
21.1777
19.481
18.4435
18.1792
19.7861
16.6102
8.42417
10.2734
66.6404
21.1349
7.63449
232.685
87.0916
77.5048
45.2325
76.4873
205.451
83.2084
217.367
34.1282
216.475
21.8554
20.2533
621.572
28.3003
28.8399
166.019
21.0381
169.858
37.1131
155.145
162.999
35.8537
14.1968
13.5421
148.811
32.8225
7.87895
7.35899
3.51787
3.11904
0.160288
0.152311
0.173068
0.339253
303.501
272.074
1754.42
72.1518
0.325597
5.35293
0.234001
2.99477
0.282626
0.183358
0.725015
7.65783
3.11154
7.91682
18.2818
33.4233
43.234
11.2876
7.48126
6.66665
12.3147
9.99742
39.5867
33.692
27.2069
9.77601
74.1806
15.4725
25.0127
32.2432
48.6257
63.631
25.813
39.9545
99.6485
22.8637
23.5422
233.457
14.6884
14.2391
19.1604
45.2172
12.6515
12.6209
50.7705
15.6583
15.7004
98.1283
115.809
52.7864
44.1235
14.1787
14.2139
38.3986
13.1773
13.0702
12.2665
12.8574
11.5069
11.4442
36.9647
13.2884
12.9423
47.4934
19.2595
19.1656
6.85737
13.8731
7.3458
35.5812
14.7204
13.9635
17.1222
14.532
8.85251
18.3639
10.0355
9.85729
18.583
45.8382
19.2262
46.8288
18.7432
43.1783
16.6941
17.3706
41.9342
48.4491
19.451
20.0186
45.0502
19.0826
18.9699
29.6959
9.73031
21.3235
15.4826
9.90403
6.27629
10.4323
113.385
49.2699
20.1539
48.9426
20.4084
49.5987
23.1348
22.2375
50.356
10.2819
46.8942
45.9527
41.4404
9.57277
50.3235
23.9512
23.9825
47.8331
23.0966
23.1201
49.6539
188.082
175.794
17.5505
10.7637
50.0798
9.53039
15.4351
17.3573
11.2094
30.4069
33.6329
9.69685
15.1331
46.4526
22.6932
22.7
23.3599
19.5396
19.6581
12.7445
15.1716
14.2092
13.7311
6.36992
8.07278
12.5169
13.2267
12.5731
13.1618
23.6456
24.5874
18.3169
14.2869
28.5452
28.6781
26.4391
27.2223
229.901
14.5954
18.9219
45.3092
23.1697
18.3394
25.0373
25.0398
24.7401
25.414
17.2644
21.4566
22.3017
22.4262
22.1953
22.5567
26.4861
27.2938
27.0059
26.8646
23.3594
19.7025
19.8177
21.9837
18.7852
18.7074
21.5579
21.5256
21.6764
21.4002
23.254
18.5229
24.048
24.59
24.2115
24.3377
22.0206
20.9972
21.7023
21.4273
21.9235
22.1677
21.965
22.1167
18.1241
22.1643
19.212
16.3674
17.6605
21.2076
19.3331
16.6127
16.5092
18.4569
15.8975
15.9588
18.9283
15.7817
17.0106
31.6297
33.5926
17.3151
33.8256
17.3934
33.8944
17.224
14.7682
14.8604
7.24178
7.28316
16.754
14.4451
14.4187
7.32442
7.31975
12.7679
12.8252
11.527
11.2306
14.6222
13.3513
14.6297
13.0019
33.2326
16.8618
16.4109
31.8767
30.0183
30.3917
7.08018
6.94515
15.0494
13.0291
13.0272
7.56295
7.01752
9.14773
6.52688
9.14464
13.9692
12.3578
12.2712
6.499
9.18269
9.14009
8.82065
6.71958
28.8321
34.1851
9.09359
6.6708
9.19059
12.8374
11.0359
11.167
8.64192
10.2734
10.3413
9.72863
9.20126
9.70386
9.69859
9.41119
9.41945
8.10843
9.48532
9.52026
6.58723
7.27332
31.1384
145.765
16.7625
21.0503
47.4267
44.8255
18.5466
16.2599
29.3955
70.8981
183.908
76.8214
93.3591
26.5821
53.3626
52.436
49.1668
42.5922
22.2839
176.133
45.0881
180.099
20.9168
19.9541
39.8706
167.767
162.908
38.7805
20.4753
48.255
24.6367
44.955
25.1279
196.491
56.807
143.715
41.0836
35.6489
160.972
19.9471
17.7453
24.6369
38.0533
16.722
25.3987
29.8349
45.7983
40.5128
23.9972
22.6542
43.0035
25.4139
15.7994
16.0517
24.7554
147.999
54.2074
83.7342
492.388
126.638
39.0994
53.4201
36.275
82.4361
17.7826
16.2637
64.8681
14.6373
16.1955
25.7929
26.9345
21.8053
20.0909
28.587
18.7455
30.0428
19.5486
18.1264
13.0428
30.8353
37.208
31.9067
38.8363
30.5985
32.9188
25.4969
25.8163
24.1893
28.2442
29.8473
22.7755
31.6182
46.7766
33.3399
42.0312
16.0311
10.2313
45.3676
17.0005
24.3173
15.4225
16.3935
69.9697
15.884
17.4797
23.7118
16.1233
25.9689
24.6039
30.7577
32.4557
24.3704
26.3125
25.9555
26.5966
25.5949
25.8371
25.2302
25.2843
25.6894
22.0873
19.519
20.9396
20.7922
27.9305
27.7439
27.5015
28.1514
10.3081
9.73818
42.4328
40.4481
45.7632
21.1036
14.1659
18.6778
13.5327
15.7358
8.5678
37.3601
24.0396
20.7343
40.4873
40.4133
8.19011
35.5528
16.1442
16.631
7.66012
33.13
15.2756
14.7296
7.49955
32.1292
14.189
14.1595
6.83056
29.0109
13.3636
12.771
6.70473
27.323
12.5762
12.6279
6.27531
12.2539
11.7019
11.3216
22.5213
22.671
10.3335
11.4921
21.7543
10.3352
10.7992
8.67874
10.1634
10.1137
9.72897
9.75234
9.43074
9.19109
6.88975
7.14383
7.06557
7.44659
7.84671
9.00478
68.3026
6.91916
7.09655
5.53557
5.4892
5.42248
4.94952
5.05435
7.45348
7.95232
7.06528
7.5412
2.80859
125.62
151.019
287.163
58.1529
259.579
26.9952
37.5787
42.3501
121.442
101.867
258.15
71.3698
132.133
67.6791
281.998
73.4425
318.826
56.1694
1484.55
40.5617
103.803
46.6727
75.7003
66.79
77.5554
70.5326
401.753
807.593
81.3495
181.921
155.992
387.689
150.084
20.0928
154.237
19.7066
30.1654
30.5349
76.4242
544.178
140.024
74.4396
108.287
100.301
201.945
22.2786
23.2071
44.3547
4.15073
4.1937
14.4461
14.4087
22.3854
19.0757
13.062
4.67401
3.98753
3.11345
3.2587
0.635162
0.565906
0.704844
0.670403
39.7516
44.5261
71.6015
0.705556
0.771304
31.2481
40.1106
31.1124
23.7208
36.2669
37.1741
42.0317
30.3644
33.7742
35.6583
67.0554
37.4387
40.8697
69.8612
36.6944
34.9216
15.1131
25.0469
31.0632
27.5425
25.6156
32.4849
30.778
20.034
23.481
26.2692
36.17
33.1245
27.5308
30.2885
29.5427
27.5019
26.4314
25.1585
24.4887
27.1887
1.23979
4.54513
6.79163
0.880121
0.77349
9.86532
13.2383
8.89809
14.4016
20.5894
24.791
23.119
22.7143
0.967569
1.02423
1.66908
1.29362
0.916079
0.857355
0.678715
0.656326
0.640721
0.545667
11.7426
1.81169
1.34966
71.5961
0.708826
1.21191
9.50984
27.9909
28.3523
4.58329
4.09812
0.642306
0.263561
0.314372
0.126889
0.229097
1.73989
0.322549
3.73907
4.17218
0.0978839
1.66086
2.04368
0.278039
11.0502
0.566049
0.422729
7.84042
19.9195
7.02966
29.9344
67.7073
11.5277
10.7168
24.1127
108.236
15.2292
156.011
15.0216
29.8667
83.5906
34.1774
15.8212
38.8885
16.856
84.1948
9.1233
12.0136
25.3917
6.51846
8.89789
50.8258
58.8935
10.636
12.2307
8.50029
39.608
10.0198
31.6683
15.5764
12.0593
36.6005
13.1918
10.9314
76.3521
28.6484
11.3293
35.7069
11.3748
35.2105
10.955
11.4015
8.89592
29.0532
22.4525
21.6106
21.6661
22.3015
35.2278
52.6008
74.0714
33.4501
10.3536
13.7308
9.13031
18.6689
18.9905
18.4846
34.8852
9.23805
28.8325
18.8666
19.8308
6.87067
13.0415
11.1041
7.08768
8.17466
10.6379
33.05
20.8202
20.8642
21.0508
20.2307
15.3906
17.0769
12.5897
17.5375
9.84984
6.20864
156.467
27.3518
18.2015
20.1831
36.1564
33.9365
22.3828
5.35118
28.1145
13.0764
6.76862
7.62785
10.9409
46.5334
30.8487
13.441
37.3166
32.5395
14.0839
8.76521
46.6756
18.6571
18.3667
19.13
19.6718
18.9541
49.4149
10.7267
10.5956
6.95343
31.3309
16.5755
8.21211
11.3617
16.4284
24.3803
20.3633
14.8027
15.6974
5.58556
7.25403
10.7886
6.97067
15.5234
14.6004
17.6522
17.7916
18.011
19.1178
16.4499
17.2949
18.0361
18.8806
16.1705
16.6794
17.9404
18.569
7.90318
15.1962
13.001
17.6281
19.4767
14.093
11.8526
13.0238
13.5446
16.3159
17.0071
16.2889
17.021
14.3445
13.7344
13.7384
14.3447
16.5806
17.2241
16.6269
17.1899
10.2327
10.099
7.9639
12.2687
8.68366
16.7493
17.3449
16.744
17.3779
10.2784
13.1927
10.7521
12.788
11.1094
13.4445
11.0034
13.5493
12.9844
14.9284
13.0447
14.7208
6.45409
12.9674
14.9294
12.9981
14.9273
9.44241
9.23402
9.62969
8.86811
9.19157
9.21974
13.0734
13.445
17.0895
8.88541
24.4988
24.9971
16.7284
19.4407
24.8358
22.7772
7.4995
8.50786
8.00516
7.3618
8.1962
7.7708
7.0733
7.76354
16.476
15.7447
6.24377
6.82836
6.70861
6.91915
7.76027
8.99433
7.75148
6.32937
7.11302
7.51513
5.51859
9.21085
5.72146
15.6674
15.9751
45.231
185.725
97.1789
63.5887
398.245
31.1684
27.3455
50.825
26.2334
28.9245
42.5431
26.3803
368.066
58.8526
102.267
427.389
15.0914
109.687
53.3213
395.094
89.9166
52.1737
140.28
34.4872
16.4603
97.6777
384.395
39.45
23.3753
20.6671
19.3032
16.3765
10.4127
24.6743
366.363
135.545
142.274
42.8715
38.5254
27.3901
25.8054
75.3508
37.7123
30.9764
13.5638
21.5473
18.5706
25.6754
25.4806
61.0815
32.443
35.0082
40.68
112.103
10.0959
65.708
34.9114
33.9419
38.0185
32.2947
19.0158
17.9513
29.9128
28.0648
29.5993
28.4436
37.4346
65.8132
43.1399
24.6665
22.0521
24.3225
22.5314
29.0745
29.8712
30.606
28.7761
28.5077
27.6511
29.27
26.7783
8.25857
7.0444
8.41864
17.9151
19.8548
18.8428
19.043
11.9689
16.3352
14.4366
13.9602
8.42246
8.32016
7.59548
20.0895
8.31701
9.32002
25.4144
67.902
170.1
41.6644
85.2162
36.7641
46.07
161.259
107.132
141.871
33.1263
333.276
75.8945
288.775
35.1146
288.733
107.167
23.1656
34.2288
57.6885
87.2905
37.1322
55.6158
277.284
22.3323
39.7436
56.3066
282.128
28.3405
36.5954
237.113
302.297
60.1819
199.564
23.6905
81.7362
34.2154
35.1163
196.068
104.793
99.2105
105.242
229.425
34.0328
33.256
196.016
113.591
116.837
114.142
46.2013
158.731
17.2867
80.4886
118.832
117.094
39.9555
32.6197
24.8494
72.3337
37.4035
47.2473
19.3058
37.1436
37.7983
19.5254
34.7116
153.551
35.3727
149.933
100.995
96.4542
27.1576
26.2375
17.134
14.1338
8.68434
59.4318
8.30315
57.4101
14.4544
55.8977
59.1403
12.7366
53.2211
51.9635
51.1327
3.96082
7.48818
8.0681
46.4788
43.1817
5.43756
9.24098
9.28998
45.6415
40.7351
11.2604
3.11588
5.91445
5.93095
10.6808
8.1271
2.98138
5.81999
5.81359
9.93474
30.9737
31.7114
31.975
5.83305
1.32495
2.68631
2.81158
5.23726
4.56579
1.16916
2.4999
2.45977
4.86263
6.23705
6.98953
3.1328
0.542789
0.895655
0.990995
2.90166
2.26468
0.441224
0.850823
0.831871
2.69822
2.60141
2.86773
1.44717
0.243527
0.228297
1.32388
1.10569
0.216461
0.209438
1.25396
677.919
16.3323
20.0736
66.5294
24.3463
35.9624
13.6636
14.8533
12.2935
9.62684
7.64849
4.74819
7.73284
5.58503
39.7406
14.3957
18.4658
13.351
4.65051
32.8355
15.3923
18.099
25.0711
6.45443
29.5699
21.0859
4.04276
25.6138
14.7028
5.18013
3.50497
28.7893
6.22745
13.8586
15.9331
13.5095
4.3082
12.0358
21.1233
12.0822
9.53272
10.6939
10.43
16.0504
7.35166
14.956
13.7823
6.47306
7.8088
8.7191
5.74348
23.2565
18.8075
7.17957
19.9606
25.5362
29.6629
6.52403
6.78299
6.60289
6.56069
7.00464
8.40914
6.08836
4.6721
7.53108
34.2314
14.9182
14.9852
4.71671
7.86607
4.34656
7.41551
5.11469
8.63561
15.3926
6.50523
5.67489
7.49466
21.0362
16.3362
11.1011
13.3304
5.13643
36.8694
21.969
16.2588
37.0488
33.3546
24.103
31.845
19.9739
23.6325
20.5367
10.4498
44.3458
14.5209
16.4687
22.3949
21.5218
37.9009
26.574
16.874
33.4733
38.6657
11.2696
10.0838
78.7826
17.4725
34.1935
69.9766
11.3231
59.7069
51.1544
107.24
8.18277
17.4754
67.9608
25.8768
33.5976
9.66087
37.5157
17.313
30.5275
10.8719
18.5064
25.4179
50.7265
17.1779
10.4867
23.929
140.568
68.394
10.2468
52.3746
41.7684
44.2729
17.5027
33.1585
60.6596
61.6516
39.011
13.4297
12.1064
14.8656
13.2334
29.4622
36.822
47.9689
42.8418
21.7483
57.7299
12.3818
13.8908
48.9432
113.98
375.536
404.1
380.631
9.82398
133.301
20.4235
55.2675
42.9016
12.7229
12.1444
48.9712
15.0304
14.9637
60.4582
71.1191
217.832
18.5399
48.0324
35.7794
63.5448
106.395
8.47085
6.37934
52.2271
10.5531
249.992
29.1749
7.84739
22.34
25.3693
11.5967
32.761
10.8168
10.708
12.7832
8.92213
47.7562
32.6553
63.3909
29.3661
30.1785
9.45251
148.986
13.6885
7.77473
39.4071
7.24219
29.4832
12.6615
25.4659
28.3788
31.5406
21.7019
8.28449
10.5455
85.6373
11.6851
4.94848
42.123
105.641
57.5782
24.7287
17.9272
24.8945
11.2597
24.9606
20.0316
16.8792
32.2227
10.8502
9.27337
41.8114
21.0627
82.1614
26.3694
17.5477
31.6753
28.5817
39.3541
11.9906
38.0385
10.2283
22.0284
10.4369
10.527
13.5194
12.1291
40.0657
13.2653
112.6
23.3508
42.3347
15.6091
31.3452
20.1375
71.5315
72.2654
225.741
93.0734
13.2207
29.4655
34.3752
11.3558
34.3299
10.1397
27.4702
70.0237
231.17
219.878
43.9401
14.3624
14.2433
37.5495
12.8509
12.665
12.6746
19.7639
6.45225
9.47788
25.0317
8.51186
28.7843
23.9678
7.25562
25.7189
41.6134
27.3329
105.499
5.77414
22.2116
14.235
7.62966
6.69494
7.46082
10.183
28.6489
29.5358
16.1874
50.3204
8.65445
17.264
23.5466
14.8417
93.4401
10.5005
150.271
20.2228
19.208
14.4751
38.4625
24.8585
5.53555
35.3704
34.7753
8.7007
9.49268
16.6686
242.77
250.065
23.4803
266.628
254.264
264.884
33.9776
9.67803
9.75561
10.7672
11.1467
260.486
9.41429
249.304
78.2275
354.843
11.9722
412.772
103.56
35.5875
36.7909
13.9832
14.2861
44.9683
20.677
19.2159
242.045
44.5944
40.5211
14.047
14.3084
49.3139
19.5903
19.8681
19.3754
21.5686
21.6293
20.3849
6.63822
11.8341
6.37889
7.74942
35.9847
16.333
13.1047
11.6724
5.69008
6.08954
10.6602
8.28699
37.7649
14.9174
20.8127
21.169
20.7029
20.7582
8.40368
5.14599
9.82982
7.1928
36.4937
37.8219
32.4418
39.5964
32.7897
37.1865
13.3146
13.5912
18.8969
8.66146
40.425
76.0679
47.9778
45.978
14.4125
14.0923
20.0681
9.15555
19.6785
10.7655
10.7554
19.6971
19.2161
10.3993
19.2031
10.4451
198.003
6.95814
85.825
60.9103
222.137
9.12408
73.299
28.9147
19.5389
24.4237
25.2379
8.75568
10.7485
10.4426
9.15599
9.55556
20.0576
10.851
19.9061
10.8465
35.4568
15.4775
39.2597
13.3335
8.34616
48.1077
19.8401
19.8944
45.789
19.2026
19.3144
17.6979
5.70259
8.92642
7.86435
13.4899
25.7514
90.1152
87.6798
115.383
11.2687
11.4318
8.67088
15.3164
14.3669
9.41836
164.137
8.8539
41.1306
33.9445
51.4494
23.7757
51.254
23.9634
10.0662
18.0592
17.2021
10.5824
9.9368
15.9432
9.82674
16.1151
14.7246
22.1132
21.5829
15.146
11.1551
17.5665
18.2434
10.2964
9.73722
42.632
44.1125
41.2519
9.5754
30.4838
39.8439
102.865
39.0078
10.6921
18.4207
10.6847
18.5514
10.0168
17.3163
10.0639
17.3015
253.364
121.696
50.436
24.0498
24.1131
47.9489
23.0528
23.0692
18.4762
18.3724
19.4714
59.2177
12.6862
18.9085
19.4922
18.9979
11.2887
15.8475
8.48223
22.4525
18.1973
22.4784
11.5298
16.4046
23.6074
24.2328
16.1097
18.0314
42.7365
41.4007
18.973
23.7382
28.2736
12.5962
28.2211
15.4503
9.88703
15.6177
9.83411
26.2539
22.8464
56.6321
21.9672
21.7619
21.6492
20.4407
45.881
14.6274
26.7452
26.2918
26.7782
43.3558
258.97
39.0114
22.0413
20.5601
22.0095
49.3367
34.637
22.3708
44.6995
22.2394
15.48
9.80661
15.0795
9.63139
21.6578
45.1873
21.7031
21.4885
21.863
44.0943
45.3741
22.6014
22.298
23.0904
19.4316
19.3677
25.2984
22.8234
19.284
40.0007
51.0992
16.7776
206.061
11.387
10.4408
14.9833
14.3805
17.4798
17.2595
15.1607
24.8455
16.424
17.1866
16.4528
17.1698
14.4539
13.8626
13.805
14.4949
22.5801
34.1182
43.7513
23.0623
36.5415
145.321
128.801
18.0575
19.0253
15.8604
16.6324
11.7928
114.694
24.7351
25.6822
41.8891
9.42919
40.0729
20.612
20.1923
42.9121
9.68391
23.7691
23.5773
19.9686
14.1044
22.7469
22.839
26.5077
25.9311
18.9997
14.6703
23.593
23.3963
24.3769
24.1056
19.8961
20.7897
42.0516
9.28803
42.1209
20.5188
19.5672
42.8743
9.71905
24.0311
24.1558
192.907
9.48262
6.05467
9.40079
14.1873
8.5125
8.41381
18.5728
17.8706
17.8805
18.5378
13.2608
8.28531
28.3314
42.2135
24.8636
77.9208
21.9541
22.394
22.5417
21.7906
9.99172
20.0601
14.1527
21.4937
17.6278
20.9278
14.9829
23.0159
23.0282
30.8491
27.981
27.8029
30.2346
11.9591
12.3103
19.9899
20.7713
8.14893
8.33135
41.9368
9.27153
147.608
7.52014
10.2219
9.13447
12.4701
200.3
23.6673
24.0138
22.5681
19.4274
19.1496
22.3477
18.9095
19.0065
12.9123
13.1444
16.9424
8.7994
9.12828
8.98647
8.91797
8.7791
21.0983
21.45
21.5868
20.996
9.44388
14.3514
18.2995
17.6648
17.6644
18.309
12.9593
8.84481
8.86009
12.9565
18.343
17.79
17.7663
18.351
21.4269
22.0974
22.0281
21.4868
14.0761
9.40382
21.3208
21.5723
21.459
21.4471
21.0887
17.648
11.1746
6.62285
9.8471
7.66191
20.5538
20.6111
21.1432
19.9114
21.9034
17.7717
16.8686
14.2795
17.4884
13.4239
21.0023
21.502
21.068
21.3985
11.8159
10.3699
13.2002
8.83918
8.8772
13.0222
12.8535
15.867
18.5043
17.9132
17.9497
18.4738
9.568
14.4442
17.4532
14.4099
17.6859
13.7375
14.001
15.2978
15.6195
13.3735
12.7283
17.0626
16.136
13.6745
21.3005
17.9593
21.3157
17.8702
5.36567
9.83679
9.04555
6.0425
15.7116
12.9824
12.7224
16.1916
13.0122
16.0409
13.2697
15.935
9.83219
9.14369
5.77096
19.4927
16.7226
16.8023
18.4425
15.8994
15.9401
13.0991
14.2501
12.9484
14.2926
12.7496
14.1877
12.8403
14.0872
13.8369
14.7982
16.8524
14.7057
14.3742
17.3049
15.5941
15.329
36.0272
18.4141
36.1246
32.6853
17.543
17.6548
14.932
15.0241
17.561
14.7174
15.7395
14.493
15.2124
13.9511
14.8004
32.0366
16.7677
16.7034
32.152
14.8807
14.0668
35.726
18.0214
33.8074
17.2879
33.844
31.664
16.7573
16.6011
32.1077
14.6007
15.391
14.0227
14.791
16.8284
14.5962
14.5193
7.48029
7.16089
17.0486
14.5523
14.6578
7.58313
7.63797
7.35756
7.38861
13.8224
14.4164
28.8936
6.75371
14.0504
13.329
29.6842
31.6954
16.2964
29.076
6.7959
29.1118
13.7368
15.6301
13.2657
13.9387
13.0008
15.3039
6.19369
8.40282
15.5129
13.307
31.81
30.6729
7.51847
111.293
13.8472
16.2401
13.342
15.6599
14.7621
12.9389
12.8302
9.33976
6.58507
9.30164
8.3112
6.22092
8.83917
14.3838
12.5291
12.6579
9.36879
6.66501
9.40102
9.27907
6.64545
9.35733
12.8094
14.6935
6.4191
9.45495
16.2532
15.5259
7.82909
9.41367
13.8082
13.5297
13.685
26.7784
9.4203
10.6884
26.741
13.6325
9.13154
10.7127
13.8815
27.4438
13.7493
27.292
6.13842
12.5546
10.9255
10.8814
10.1762
8.83809
10.6765
10.1973
8.50904
10.1562
6.22524
6.05725
5.55751
7.71608
5.50378
5.87168
9.61449
9.43443
9.36533
9.72763
7.88848
9.42005
9.48974
7.91431
9.42023
5.61289
5.64537
13.9794
10.309
10.4555
25.1336
10.3052
10.3853
10.3822
9.96298
24.1547
9.37686
9.69723
42.6254
37.952
20.6023
18.2653
86.7346
20.7152
72.6815
38.0935
35.3855
39.7948
64.2497
40.4166
33.4582
166.985
43.8277
28.7918
38.3169
34.5454
17.8221
18.1406
28.5184
37.9464
36.2421
32.4138
67.2968
29.9158
19.5009
27.5594
31.4541
65.2102
21.9752
91.6761
41.9666
50.2404
58.9995
185.615
28.3156
135.471
50.9491
71.6257
26.5507
113.013
26.3215
36.5797
103.727
64.3718
18.5541
85.1337
21.5493
77.8494
26.659
185.425
72.8551
147.982
40.3176
23.2867
32.0675
86.9552
34.826
65.7473
24.3363
79.1733
74.1437
454.82
177.366
24.4058
159.358
322.184
37.9771
189.718
25.2752
196.1
76.6971
18.0468
26.2079
72.6918
32.0351
457.66
97.1213
29.9153
44.27
23.5339
84.9169
17.4759
79.8684
16.954
65.8474
146.133
334.626
119.69
37.1254
144.954
286.645
67.074
33.6324
728.833
522.835
69.3019
30.0086
33.245
260.038
239.614
72.7753
24.4195
188.145
26.2836
647.651
118.421
175.618
46.793
177.241
62.7061
111.506
168.76
207.412
545.136
16.0196
19.8399
125.681
44.2695
51.8948
34.0312
28.3045
66.2117
18.1385
17.9568
71.1604
47.2179
25.7735
27.2874
16.5613
16.0897
64.4887
24.2764
46.1526
48.0849
47.5107
18.3477
18.2558
74.6985
54.9153
26.2041
19.9894
198.943
21.1717
55.4902
69.902
30.726
90.4309
16.6922
67.1323
18.8013
18.7996
61.3549
42.3528
32.4393
18.3584
81.5553
24.3581
27.5267
32.5958
66.4101
46.5234
21.3148
66.4705
396.445
30.8089
95.1282
480.506
230.959
27.38
52.3976
18.7675
45.6305
106.375
47.5888
19.9969
58.6427
47.9964
27.7899
64.4462
19.9372
40.5064
282.825
66.5732
193.551
21.4445
111.251
24.0536
218.831
30.6722
108.766
52.3759
109.441
231.653
624.341
51.8344
163.991
185.094
38.2924
193.039
46.03
41.9263
42.6694
154.99
16.8914
47.4505
35.6451
84.2892
21.9715
33.8978
79.9268
183.386
28.9856
61.8632
15.5686
15.4811
28.7906
73.6649
17.0117
14.6194
26.5394
29.4176
77.2197
23.2341
68.3941
43.9033
96.7592
34.1564
233.094
19.7013
62.4393
25.2929
86.7365
31.7013
69.4988
23.0639
19.2532
13.7035
15.7923
19.4403
47.9934
201.432
31.1096
81.6682
49.7127
80.6212
42.3696
230.652
459.739
11.565
36.0825
108.19
53.7642
49.3987
24.7249
20.9989
34.9194
13.8124
167.608
13.2586
415.717
88.1244
90.2368
132.482
28.2493
18.3416
117.682
570.663
66.2402
233.841
32.0548
174.602
190.574
23.8612
27.079
71.4983
27.8821
68.6061
16.3201
29.1162
15.3897
38.3334
13.1225
19.2169
23.7444
15.5188
28.2318
15.4109
28.2301
20.6557
11.7015
18.1819
17.3327
12.2092
13.6395
85.8093
251.255
37.8242
50.1793
37.119
15.8066
17.3314
78.4383
210.091
16.5555
26.2642
42.5723
15.8659
71.0326
93.2529
49.0431
18.5314
35.8339
20.3749
82.7705
35.833
34.2468
26.236
15.1213
15.1583
26.041
28.8346
19.9525
17.1088
32.8791
239.317
15.4729
70.4581
76.4269
33.6696
31.214
87.4065
54.9053
21.2002
23.7825
42.7987
19.0382
34.7113
54.4425
461.453
32.4842
18.8738
183.6
22.5554
152.417
19.3588
157.713
38.1665
19.2861
48.7901
212.566
52.8156
37.7661
56.8057
194.553
54.2526
65.3856
545.054
211.408
148.591
18.929
203.718
45.6202
174.03
50.7181
23.5605
36.0742
19.3656
17.7578
72.6442
29.5741
22.7382
14.4377
25.0137
13.5563
15.4372
14.7624
74.2201
68.3474
28.8383
54.8998
13.7507
14.8564
30.0242
16.9577
26.4862
41.3065
86
72.0259
15.4653
39.1145
75.7925
85.8853
36.5844
29.2117
40.0819
42.5421
266.911
96.3947
234.921
18.0119
27.3647
16.4827
19.6023
17.478
56.472
39.5727
51.5505
29.2232
31.6782
26.7986
32.1754
26.6667
31.2548
11.7088
144.011
37.3603
31.5073
42.2458
54.2468
12.0807
39.4697
30.6505
32.6937
52.2324
92.1549
45.7351
184.046
93.8675
504.84
26.5203
35.5772
15.9884
15.6361
23.1709
15.5868
24.0945
15.144
24.8867
17.6709
17.8326
148.859
49.258
138.164
33.1815
46.079
33.1406
27.9301
27.2419
14.8203
20.741
14.9037
26.0693
16.7461
151.793
47.8359
167.938
15.5892
150.675
16.3712
14.8928
15.29
23.488
17.1852
28.8046
22.9407
30.8635
42.846
17.8641
16.3317
24.1846
32.6916
33.7979
23.4611
34.932
73.8104
36.0938
275.453
66.0058
13.9687
61.4658
67.3146
33.167
34.1967
64.8576
24.6369
33.5479
24.1582
35.137
16.3267
24.0168
24.6146
15.8709
14.6656
13.2787
30.68
22.4207
29.1847
23.1934
64.5276
92.4603
40.882
34.3447
59.9576
30.5416
31.1894
43.517
15.028
15.3598
14.7555
24.1868
15.5515
22.4779
39.9231
45.022
30.2668
29.9738
72.6624
36.5084
44.4604
40.3922
23.6911
19.289
17.2701
11.2849
34.4471
30.7469
27.1935
22.6809
110.64
49.0835
18.558
16.0263
48.3673
34.0881
36.1005
44.8698
50.0619
42.4149
26.9207
33.2419
470.718
133.737
13.0565
85.6266
19.727
26.1959
20.6938
25.0667
15.6485
19.4931
20.6624
14.6769
36.3736
31.7144
40.1489
30.0775
21.4248
14.3546
24.7572
27.4977
29.8539
24.275
25.486
28.4663
18.1104
13.9805
13.5815
18.4328
30.4275
32.5811
33.7816
29.8392
43.7432
48.1318
12.7262
11.958
10.6837
12.191
12.8064
18.9803
14.1215
17.3933
21.2321
15.0034
19.5522
16.538
17.8423
14.0991
110.803
11.5256
74.313
26.6508
23.839
28.0198
22.3108
15.7219
10.1969
44.9769
39.6931
43.6028
34.6411
65.2059
63.0463
272.686
30.8352
39.4911
32.2855
37.8724
25.255
30.1406
24.1556
31.1389
27.3254
26.1005
26.7265
26.7253
16.669
15.8759
32.1605
30.8558
35.5151
29.5606
29.8185
28.2588
28.5399
29.9682
24.16
25.3084
24.8892
24.6483
17.5599
17.9472
19.383
15.8888
13.9667
11.842
15.1981
10.8474
25.4439
25.4419
26.0779
24.7789
22.2852
20.747
23.292
19.6954
27.7515
29.24
28.4138
28.4362
16.6229
12.3467
15.6508
13.3154
27.5197
31.0668
29.9023
28.5441
23.7104
25.8555
26.2925
23.2461
10.2032
16.0837
19.0129
19.6291
15.3877
21.292
25.3381
24.3041
22.5919
12.6383
17.3964
16.2615
13.7632
9.82763
9.9295
43.6284
178.602
9.92615
43.1499
47.2919
46.7012
8.6105
20.6701
39.8239
40.7006
20.6893
8.1541
35.5283
19.7733
37.6999
16.5345
36.3458
39.1847
7.43641
32.3446
14.6057
14.1468
35.6728
34.8948
35.5531
33.8026
7.76136
32.771
14.8509
15.8731
17.7065
17.4898
35.7521
31.3079
6.75771
12.8062
12.7365
16.4469
15.6731
15.1067
15.7952
6.86671
28.0405
12.9609
12.8789
13.1911
13.2925
13.72
13.4658
6.21784
11.5082
11.723
12.7693
12.0786
11.1999
11.8903
11.1721
22.5195
22.2981
10.6783
10.4119
9.97883
11.7642
10.4115
10.0795
10.0149
10.1928
9.92367
29.3319
10.6109
9.79954
22.9973
9.88387
8.90714
10.2949
10.379
9.9349
10.0227
9.44725
11.0694
22.0791
9.51682
9.62213
11.4667
9.80186
8.58939
9.04636
9.10082
7.90077
8.80077
8.61062
7.85268
8.73513
7.03511
7.2195
7.22585
8.20779
7.72549
7.68597
7.09573
8.13742
8.36114
6.79235
7.90303
18.7844
6.86461
7.40791
9.48037
6.96953
7.09565
7.22207
6.24848
7.23522
7.35207
6.48143
7.29985
5.84189
5.62825
5.75561
6.0382
5.55551
6.41054
5.60117
6.5707
7.28249
6.42151
7.22359
5.46825
5.74466
10.8774
52.8544
14.4282
3.61344
4.86841
3.68031
5.77635
5.53616
4.88052
8.13251
7.46469
7.79205
6.3709
12.9599
56.5821
7.10299
6.66474
57.8371
7.33096
16.3711
21.8143
3.86232
69.2871
86.3904
259.489
114.491
573.993
211.043
88.7976
80.8849
52.9407
463.837
85.9004
45.408
180.272
167.815
592.315
145.398
555.943
58.0766
54.3691
32.6411
29.6098
54.6032
138.876
40.4959
57.3484
46.5489
158.852
17.1866
24.3107
63.0681
214.284
47.1536
244.244
46.5761
25.4479
289.026
48.5604
105.92
111.669
22.003
25.1581
67.0579
66.5042
83.439
84.1744
66.8168
42.5641
92.9443
305.014
27.3971
146.691
229.996
298.201
63.2455
35.0926
266.561
92.0281
78.1283
55.4367
22.6091
19.0158
85.4065
40.7601
80.5942
141.466
90.5871
25.695
41.8732
30.2751
98.3742
30.4428
100.9
70.4761
129.135
34.2776
44.0847
135.485
35.4529
353.3
146.748
137.451
51.9919
116.039
230.47
67.4561
433.239
81.5979
113.437
58.8167
82.9273
61.9328
468.234
65.0847
98.9843
168.904
417.457
68.2999
155.211
19.9106
153.637
20.1904
228.756
59.2634
38.6776
686.492
769.343
146.241
38.5547
27.595
31.5431
70.3812
95.9042
19.92
61.8166
38.9265
51.9598
77.9894
123.314
65.7162
46.8059
30.5788
138.137
60.8241
30.9478
50.2708
20.7344
21.3013
39.1936
354.082
24.8506
22.8686
110.252
136.168
77.2447
346.29
86.4735
195.611
126.656
111.685
52.72
43.7507
86.3025
80.217
66.3234
49.2779
60.0184
71.3962
47.8141
38.6435
104.85
252.366
149.189
982.646
1328.54
40.8857
205.75
22.8101
23.2957
20.6952
20.8719
22.2619
22.9402
5.09789
12.4693
12.3882
4.93138
8.99708
4.71136
20.6511
20.6223
5.45734
4.73545
51.9695
23.8979
78.6628
43.185
21.8238
27.149
35.1605
124.988
81.2154
55.94
359.437
118.483
23.4327
356.9
36.5389
49.4848
30.3642
58.6098
21.7039
42.1545
36.073
24.9312
113.052
39.4763
108.554
20.4439
27.9187
33.3519
140.863
31.8044
512.929
114.281
60.0708
157.72
73.3742
122.483
60.5396
167.705
112.6
56.6977
127.716
369.05
957.728
35.6106
162.247
452.795
76.6088
38.074
919.854
5.06306
11.6115
10.6764
5.85436
5.92325
7.79886
11.2873
10.638
5.98607
176.559
120.373
51.552
72.1536
68.0255
27.4741
41.2997
30.2387
31.8378
820.282
71.8732
56.9149
68.2019
51.7743
66.5234
9.96085
18.5552
18.6951
10.5943
53.8435
63.2063
41.4547
129.754
11.0685
5.95352
14.4591
26.8454
56.7396
63.2211
64.8222
678.667
6.41513
10.3712
11.967
6.22391
11.7867
93.1051
341.353
8.585
4.21882
17.4349
35.5924
18.5935
33.7573
15.8605
25.0441
14.9591
27.0504
81.1199
83.466
25.8088
37.0424
93.6757
106.791
42.4992
53.446
53.4423
56.2653
52.2136
6.27199
5.71679
7.78113
7.85735
6.67381
3.30263
49.0413
7.11633
53.6464
46.2366
0.909502
3.68728
64.6004
54.9589
70.0245
47.1547
1.84849
2.10771
2.94294
2.91275
30.8696
57.2975
45.9714
70.4844
60.0568
61.9752
71.4009
7.35634
7.38007
7.72634
7.78126
0.780197
0.352184
3.44959
0.601314
41.4427
48.2183
48.3148
40.2542
5.01906
5.27768
6.18906
6.40126
1.65921
1.35641
0.734888
0.781227
2.48116
1.41814
1.44674
2.21459
5.63856
0.255883
7.20223
7.25998
6.62029
6.57778
0.625258
4.59181
0.223663
3.56428
22.261
23.0991
93.3583
86.0562
19.4056
86.7947
48.2393
36.9451
38.0757
47.2225
91.9133
15.5788
28.6604
34.5429
52.9023
96.1099
18.3955
320.284
5.47845
5.44867
4.97148
4.88905
2.26913
1.50122
1.58912
2.22468
0.610627
0.389081
0.543188
0.41961
4.30378
4.6686
0.27226
0.273836
0.31443
0.241861
395.182
9.61581
9.85492
34.101
35.9197
35.9865
84.2325
29.7296
34.1293
35.4965
25.6131
90.3398
19.5148
29.0207
19.2992
41.2116
93.776
77.4471
33.0584
16.8427
81.5646
95.1518
50.9696
21.8984
32.4096
30.1326
39.4713
43.2012
41.9766
38.7598
41.9259
77.2931
18.5105
74.5392
36.838
69.6686
38.3245
304.659
92.1832
42.7345
78.9368
38.1055
43.4914
78.149
294.803
17.8838
29.814
34.0903
13.1459
3.18399
2.98048
3.25125
3.20012
2.92253
25.3461
16.5725
35.5367
2.37341
2.39768
2.83924
3.01873
12.5621
8.67678
17.4698
21.6146
35.809
44.3096
42.361
9.88289
2.15824
2.396
2.24733
2.338
2.34431
2.36993
2.30316
2.37179
7.57852
51.2809
7.58449
240.87
11.5855
14.5507
19.3221
12.4184
13.2165
18.5173
22.9701
17.0534
23.4195
15.7053
29.5039
52.9009
53.5281
33.5626
29.756
31.7623
38.0729
39.0032
60.277
21.1626
27.9028
21.8998
21.0328
10.6688
14.2499
226.37
36.9387
39.3195
27.2992
27.1958
27.3267
27.3672
15.7584
16.7144
13.7564
12.6348
28.0871
33.1908
28.3723
31.3942
28.2155
31.5893
27.4429
35.5759
9.56055
4.98862
19.3191
17.0515
28.2081
25.1974
27.6937
24.9812
33.1845
27.5688
28.4052
30.5927
22.6587
22.8969
12.7971
65.0768
20.8612
20.7606
23.3017
57.6568
263.696
2.50279
2.51012
2.36453
2.39503
0.916439
1.80909
1.65855
0.768479
1.37824
22.97
4.11965
18.6279
15.1658
1.79428
1.71636
42.0546
1.72776
3.08323
2.11361
2.18902
1.98939
11.2298
8.57314
0.891935
0.863625
9.28843
4.61286
12.4437
14.5947
0.942676
0.952265
3.59562
0.783237
1.04258
2.45661
1.07216
2.16636
1.0222
1.01881
73.4215
2.69734
18.0645
20.5424
15.5108
1.68274
1.48986
13.9871
18.3152
3.21355
3.01743
1.00284
0.987183
71.9799
42.2021
43.3577
11.6069
10.099
19.0031
17.1424
17.7538
19.1538
46.4131
24.4609
25.5647
23.7978
25.9891
14.3327
13.7646
15.8296
12.0798
17.7742
16.046
14.6108
18.7422
15.1664
11.8338
14.0186
13.0439
11.6948
10.1879
14.4379
13.1357
15.2952
12.2625
7.27114
6.98048
6.13595
8.30206
11.647
10.3835
9.48963
12.5491
8.50553
11.4773
8.24941
10.0381
9.71234
0.728816
0.30661
1.71929
0.684992
0.723724
46.958
1.2315
0.557354
0.467866
1.62747
8.08589
11.689
9.95854
9.96933
0.92453
1.20261
9.47742
9.86694
8.12549
11.176
8.35213
10.9971
10.1506
9.18896
11.9373
12.4995
40.2991
13.1324
37.0675
6.62605
7.29255
7.77229
7.3808
33.3256
29.3027
3.50545
3.73713
5.51168
4.03704
2.54948
5.48361
5.78873
5.25996
1.53218
1.72614
2.08131
2.12274
1.40212
0.96607
2.26048
1.1022
0.112028
1.50602
3.73643
2.35513
0.602729
0.791902
1.90273
0.931313
20.9714
13.6681
14.2302
5.03851
16.324
14.3077
25.168
3.14187
12.2203
10.7772
9.83556
15.3548
15.7213
15.5969
15.7739
15.2091
15.3774
15.9288
15.895
14.5201
14.7804
14.2376
14.6637
14.3405
14.1117
14.8807
14.8447
13.3668
13.3982
13.3071
13.4623
10.8029
10.8103
10.6763
10.8867
9.22833
8.66865
9.23029
38.0859
229.906
313.145
96.9861
84.1551
39.5961
34.8491
63.5756
107.509
109.199
21.5014
18.4015
112.252
52.4452
29.6831
94.0374
19.3874
25.4645
8.59043
7.00527
14.9587
12.8791
11.0354
14.3414
7.44376
10.2603
16.6715
12.1042
15.4446
12.4634
6.10466
45.5549
5.42651
199.883
8.65211
6.93966
8.15808
7.41716
5.07666
3.99209
5.00368
4.04935
2.9291
2.09336
2.85607
2.14766
211.499
459.238
31.457
29.9658
9.32358
8.83546
10.0584
26.5712
10.5566
16.0816
33.138
13.1959
4.27053
10.9355
21.3772
9.1794
19.4811
40.1118
63.168
25.4229
27.6634
19.773
28.0919
4.97002
69.8686
7.56968
21.6574
31.9474
42.5554
30.6463
49.97
21.934
5.94364
18.5253
35.0806
92.4383
25.1425
72.2074
48.5629
46.952
78.484
79.1297
270.518
15.2239
22.9801
54.9275
14.9979
45.6137
12.7203
12.5991
48.9039
15.3379
15.2471
13.2686
24.8171
30.627
44.7627
19.363
30.2357
32.0403
43.4512
19.8244
24.8304
26.4691
42.6894
14.2913
14.4596
47.0284
14.8686
14.9375
38.5425
13.1764
13.2047
14.3806
14.1414
19.7238
19.6386
51.9768
38.2749
13.2759
13.3011
11.3216
11.1017
47.811
19.3238
19.4332
10.787
10.8683
20.3006
20.3162
52.4528
46.1402
45.3973
11.5869
11.52
49.6467
20.5873
20.5084
11.6748
11.6172
13.0186
11.6982
44.1731
18.4143
18.7551
10.7749
11.022
48.388
48.4253
60.071
51.449
15.0174
10.1793
16.155
51.5362
24.4164
24.3809
10.5413
16.7891
16.697
16.3912
10.6713
16.3806
48.0757
23.2889
23.3698
10.6051
16.2441
16.2964
16.2415
10.576
16.0981
46.6191
22.6928
22.7906
10.6056
16.1104
16.1219
18.2077
14.6806
18.1695
23.9246
20.0651
20.2043
14.537
17.8585
17.9979
18.0186
14.5397
17.9461
23.6982
20.0391
20.0954
14.5647
17.9307
17.9749
15.4138
12.7735
15.6217
20.8828
18.0648
17.7509
13.0484
16.2476
15.9645
15.0781
12.2357
14.9437
19.3486
16.3979
16.4669
12.1631
14.7925
14.843
14.8951
13.992
15.029
18.3938
15.9619
15.9092
14.0413
15.1293
15.0836
7.35454
13.2615
18.8067
38.3828
14.6182
13.5066
14.4939
17.6262
15.1699
15.205
13.4164
14.3586
14.4082
13.6423
13.3375
13.7238
16.7037
14.38
14.3456
13.38
13.7998
13.7666
16.2781
16.631
15.9476
16.1334
16.0729
15.9418
16.5612
16.3044
13.3041
12.668
13.0264
15.4202
13.1176
13.2738
12.3917
12.5938
12.7457
11.6083
11.5614
11.6599
13.8488
12.1366
12.1162
11.562
11.6878
11.6745
15.2169
15.4261
15.605
15.7276
15.1866
15.4001
15.6029
15.7325
13.9576
14.2725
13.793
14.1394
13.4081
13.4423
14.3197
14.2743
11.4245
11.2991
11.3402
13.3335
11.5675
11.6323
11.2451
11.2111
11.2652
9.1627
9.33405
9.16354
9.34053
9.13678
9.08624
9.33277
9.20747
9.1621
8.93804
7.63925
13.7357
13.4645
11.3906
13.4881
9.42253
12.7281
13.1092
12.9417
12.9167
13.125
23.6631
183.568
44.2036
41.6251
53.0407
17.2312
56.8396
25.7237
16.6508
337.539
25.6065
335.186
83.5548
28.2253
162.687
50.3832
27.8982
14.9514
56.6778
55.9658
30.5353
17.0262
17.4032
55.3012
17.3256
55.2628
48.2597
16.4006
50.6616
16.2821
51.1822
45.192
54.6763
54.0202
14.8076
14.7939
22.4602
59.0366
58.8632
14.2574
14.3776
22.2602
57.4902
57.8005
12.1058
12.0541
20.0682
50.9409
50.5996
12.2803
12.2099
20.5732
50.0412
51.3143
17.0554
25.9789
56.1778
25.137
18.4211
27.0913
57.2826
57.0187
26.9758
16.2149
21.1483
21.1515
15.8401
20.467
20.6014
10.4799
46.3425
15.9528
15.7845
10.4351
45.7887
15.683
15.7267
9.22226
40.3804
13.1
13.4415
82.2059
25.3416
19.2585
70.6672
28.0312
19.7262
8.61364
12.825
12.549
8.13828
35.3834
11.7243
11.806
26.2102
93.5045
17.5921
24.133
19.1893
16.7923
280.824
64.5825
14.3809
12.9931
10.6951
8.7902
14.1392
12.3248
11.2835
8.93082
7.90338
33.9549
11.3636
11.4994
7.501
32.0446
10.9413
10.9458
148.471
16.4947
16.4751
16.0066
16.1606
16.3881
16.1076
16.4633
16.3319
11.5595
12.7297
8.0354
10.4589
9.72668
7.39635
13.2705
12.1349
7.78829
6.08427
47.3617
7.66498
5.71605
6.95426
10.3735
10.1642
6.69994
27.1738
9.7911
9.77752
31.6712
37.8588
135.843
30.909
14.7829
14.8829
13.8975
13.099
14.1303
14.1567
14.808
14.5158
15.3704
15.3233
14.7907
14.5143
15.244
14.989
15.0538
14.6047
171.639
6.77736
41.0682
43.7969
6.43985
5.28591
12.0493
15.2436
15.7727
11.5093
6.50813
26.2691
9.58505
9.5248
10.89
21.9106
21.7729
5.44065
5.45078
14.0597
13.9993
13.2415
13.6089
14.3575
13.6412
13.7385
13.0302
5.16631
7.72838
7.51539
7.94239
4.53611
6.30039
8.43807
8.24102
13.7439
13.7672
13.694
13.8578
9.88206
11.2927
11.7299
9.6674
6.72566
7.50485
7.42279
6.79918
21.809
5.43574
5.48476
8.56328
9.98512
9.975
20.3159
20.2194
20.2067
23.9224
4.61568
7.19268
7.3995
3.55955
5.88422
6.69658
7.51696
8.58362
8.31547
8.8776
7.91432
11.2866
11.4199
11.3717
11.3362
6.30449
6.85163
6.97414
6.18917
4.02771
4.65398
4.56244
4.11424
6.7557
6.97487
6.92318
7.91182
16.5026
8.06713
8.16686
16.5711
8.10682
6.0464
6.25814
6.4784
5.82638
3.85637
4.289
4.22217
3.92332
8.75561
9.77874
8.68953
3.75972
4.21472
4.26472
3.71484
2.40731
3.01928
2.86613
2.55918
15.0818
5.50732
5.40165
5.38569
5.91515
6.61991
5.5944
5.53516
6.4872
5.52172
3.02974
3.29907
3.35613
2.9757
2.34402
2.3977
2.3888
2.33324
7.70738
7.62658
7.61133
2.04878
2.4124
2.53567
1.94248
3.42542
2.5478
3.63092
11.5934
126.045
303.927
927.945
171.382
339.462
97.6999
72.1951
156.585
108.198
72.7401
154.313
404.223
22.7314
32.3613
22.0405
28.662
96.0077
8.31903
11.7046
13.281
16.105
8.11391
10.6125
14.506
16.4664
18.5549
13.9007
19.0246
13.6484
6.6983
55.5152
6.80892
9.68981
8.55564
9.82892
8.43504
15.961
16.5982
12.663
13.1925
14.7916
14.3921
11.4617
12.7722
6.62355
4.64386
5.7017
5.53335
12.4776
10.7186
13.3403
11.8788
12.9886
12.6164
12.11
11.1285
6.92917
6.27259
7.56179
6.82967
7.48001
7.85934
5.95539
6.28066
3.12946
2.33386
3.1617
2.30761
7.01144
5.66877
7.07846
6.65502
7.51735
7.30885
5.4352
6.10368
7.0652
6.62518
5.96844
7.58703
36.0423
84.816
28.8265
34.2913
53.9291
11.8821
10.3278
11.0363
6.55101
22.7441
18.9845
24.2657
11.8588
26.413
12.4483
24.8607
31.4916
28.0148
35.1672
8.66079
13.2292
71.8446
35.6359
44.9836
182.257
14.2242
77.7056
9.86073
7.25632
8.18549
29.3687
8.63418
26.3642
24.2656
8.07392
26.5824
20.6969
6.07238
23.7388
21.9798
20.1672
24.1899
25.323
26.8089
24.0313
26.972
17.5278
17.5254
16.0234
19.589
26.0585
7.79579
29.7101
7.3036
29.6099
27.1144
77.0315
47.643
26.8585
30.2867
13.8784
14.6966
13.6252
12.9123
19.4516
13.3155
12.9983
12.1485
12.8368
14.7418
16.1703
13.7086
23.7291
23.9317
24.4266
25.2495
25.8283
25.1802
23.6562
24.5536
24.4107
23.9001
25.2228
24.979
7.60804
8.59439
8.50276
12.2643
19.7163
13.2315
7.57423
8.30225
13.6239
19.8544
13.5144
8.76336
13.7444
13.7598
19.9101
41.8702
19.9204
8.76764
13.756
13.7522
19.9436
41.9521
19.9462
18.7127
39.1464
38.8237
8.42203
18.4281
35.5505
37.2353
8.80701
8.35982
36.7973
13.0024
8.51785
37.4142
12.7584
15.2535
20.7521
15.3557
19.4964
37.1006
16.2384
21.9107
17.4059
19.8007
37.9184
39.0937
35.7644
7.94399
11.7904
11.3788
8.26255
8.97357
6.79401
9.95986
11.6426
13.8237
13.9537
11.4095
137.755
12.6098
10.7546
12.5924
10.8054
13.4691
14.7554
13.9946
13.9182
14.3481
14.5826
14.7373
15.1081
12.5755
12.4029
12.6357
12.2346
12.9985
15.0599
15.025
13.0101
13.9066
14.1626
15.1702
16.5159
9.45801
9.31126
9.54751
9.4168
9.17245
9.37898
9.29173
9.32975
9.53609
8.38525
8.90852
8.80464
8.90873
9.08663
8.93149
9.05532
9.09829
8.95264
7.86369
8.34583
8.37235
8.78367
8.82211
8.61403
8.49634
8.76438
8.55189
6.92406
7.46522
7.39886
7.13733
7.72082
7.4882
7.59085
7.78158
7.53249
6.37382
6.63384
6.76427
6.92333
7.18717
6.80256
6.77954
7.33427
6.87504
5.72792
7.22932
7.93767
10.4885
6.03889
9.73806
8.63308
6.80051
9.66481
34.6511
20.9394
229.989
32.711
21.7013
580.864
26.7357
23.1734
386.746
27.7973
90.633
30.8244
16.4441
19.822
66.0551
474.97
122.855
201.991
32.8765
86.9449
407.313
47.7719
41.5267
40.5642
26.1256
35.2001
52.2393
36.1016
38.9586
86.4405
101.738
49.8335
20.3839
27.5429
28.8044
15.307
15.6691
14.8348
15.02
15.0081
14.839
15.6744
15.3405
17.7614
17.4997
18.0555
17.6656
17.9968
18.1731
17.3859
17.458
16.6308
16.6128
16.0752
16.0001
16.5093
16.2667
16.4435
16.1657
16.6946
32.6136
16.3852
26.2842
14.586
14.0793
14.1454
13.8444
14.72
14.4844
13.7481
13.6845
12.8662
12.6937
11.4543
11.1235
12.4848
11.8908
12.2619
11.6454
12.5878
12.7107
12.6376
12.659
13.3386
13.334
13.4387
13.2296
12.2926
12.496
12.4311
12.3591
6.10098
8.82075
6.90475
8.25218
79.0778
10.3504
10.4274
10.5124
10.2626
9.67204
9.8822
9.84403
9.706
8.33444
8.56911
8.22924
7.94342
7.7983
8.05406
7.75142
4.67257
3.75692
3.29411
5.23164
86.212
126.373
130.729
150.963
119.7
187.509
86.282
105.669
100.885
761.629
36.5092
66.7416
64.9168
31.6447
46.7524
42.9706
68.7549
35.6604
57.9555
152.536
83.9615
18.566
56.6255
83.995
22.0288
93.4293
78.2587
175.575
28.9389
173.734
27.9642
312.303
33.8192
26.431
74.6397
75.5821
137.421
24.0627
27.2555
103.511
67.0879
77.7598
139.077
29.7264
141.775
30.317
127.725
26.1576
111.798
25.9793
88.4642
133.229
43.1349
81.8212
45.875
37.4261
58.3863
21.2699
100.008
103.932
20.4971
136.403
118.299
108.909
18.5489
90.1396
89.2598
18.7061
93.1103
17.9878
16.1874
47.6023
476.712
13.3648
13.0121
107.936
25.1838
108.874
9.86674
10.2129
86.1856
19.6725
85.2319
19.7183
81.4102
11.1197
80.1687
20.2623
82.9295
109.002
34.2262
33.3941
99.2669
16.5452
68.8909
68.4442
9.03159
61.9938
16.533
67.7708
68.2707
12.3191
7.69872
54.2429
12.4076
17.4227
14.0678
27.3719
19.2256
21.057
28.1418
13.4489
15.6736
11.2088
6.79759
45.0476
10.5574
6.18729
11.8689
49.5897
49.1097
6.24279
7.25192
59.6956
10.6127
8.65189
9.60084
11.4905
3.97865
5.43212
26.6332
28.8184
3.85705
33.6808
4.59498
8.11236
8.06152
34.1559
12.1105
10.3852
12.5133
10.0966
48.0297
29.0358
3.27435
6.09766
6.13204
28.639
2.90397
5.74572
5.82898
7.27208
6.17846
7.30568
6.15386
17.9304
17.5046
1.51433
3.14599
3.20385
11.816
12.9055
1.12147
2.32017
2.28955
4.48631
3.5954
4.55056
3.54453
2.39138
13.3926
2.32297
0.597609
1.05984
1.08394
13.1425
2.21643
2.2638
0.991021
8.65568
1.04583
0.402299
0.784047
0.760211
10.8885
1.72124
1.67058
2.12034
2.15044
0.542305
1.21381
0.53494
0.277462
0.279067
1.19851
0.523524
0.528537
0.35683
0.772551
0.316303
0.191628
0.180014
0.855982
0.377293
0.35764
248.613
35.3376
49.8555
19.6902
16.0982
31.6563
39.6552
14.5842
153.213
10.6142
16.3527
2.6961
17.0211
24.3413
2.61196
72.7025
15.6225
214.324
18.0361
35.4258
190.23
1.69134
2.56695
6.19016
0.857356
1.88616
0.56016
0.527634
12.3654
12.9722
11.904
0.74943
10.7336
12.9028
6.95242
4.50931
37.1926
16.6032
6.02774
18.7042
7.13851
7.25039
21.1624
16.9992
13.6809
0.793949
13.7787
39.9191
18.7943
44.8939
5.82597
24.3392
19.6406
6.73981
8.10689
17.3445
7.93087
7.3664
6.12718
19.3715
15.0393
4.96689
15.8038
45.2888
8.18996
5.17247
6.32314
8.62665
10.5164
44.8304
5.96802
6.6464
18.4893
22.4073
11.7125
15.1693
14.8506
12.3721
21.5225
18.4782
21.1212
6.30579
7.25948
18.0712
7.61561
19.2572
4.89901
13.2845
10.3804
4.69509
2.78637
18.5181
20.2563
8.39719
8.00541
5.06313
16.301
13.9103
14.1233
15.735
6.02107
26.5536
7.26534
36.6262
35.2363
24.4971
27.6265
21.2384
13.9034
18.5316
84.3511
26.2979
25.7238
34.4138
22.7431
12.3965
9.1365
35.6765
24.776
39.3026
26.1806
12.4082
22.3779
11.2646
74.96
13.588
17.2931
28.3747
65.7937
15.2898
46.3684
90.4638
26.3019
327.558
107.77
18.7034
101.645
17.187
47.2648
101.091
18.5894
48.0586
16.6036
224.471
17.9414
52.8623
62.6801
17.6449
28.3578
17.1004
241.27
57.3955
36.1711
124.51
14.9668
56.3657
66.2134
16.1614
31.2534
51.3804
21.7697
50.9468
85.3269
43.1932
12.4848
12.4701
50.6111
15.119
15.126
20.5871
7.58124
21.8157
45.2409
6.73614
5.92617
11.9856
15.0139
44.7825
53.9658
7.47903
11.4551
45.1844
7.03907
8.08537
7.43526
22.1599
26.9313
23.1408
6.66155
27.8904
7.74221
9.95885
7.08821
56.9623
19.7849
43.0303
42.0142
20.0596
48.0397
55.9071
313.618
94.2562
103.16
347.656
386.609
42.8117
13.9364
13.9626
37.5318
12.2764
12.3972
26.8619
30.0979
27.193
30.7239
21.1066
15.3721
14.5348
6.78733
21.1317
18.475
8.3168
98.2286
4.75331
80.0662
50.4477
6.50772
10.9035
35.1872
30.8004
29.5809
7.80563
43.2616
36.8859
6.54239
21.889
19.56
22.2563
20.402
40.4608
13.3053
13.2249
8.66626
72.8652
246.371
241.742
11.0538
104.094
285.525
29.3038
34.123
38.9394
41.3729
40.5457
13.0883
36.8596
12.3592
40.1933
39.2747
35.1988
44.4062
38.055
38.4784
31.3448
45.422
36.8295
37.8967
67.6934
45.5835
43.4755
317.307
53.0601
28.8044
25.5634
22.8771
51.0793
18.5567
19.9587
11.205
11.0275
9.85104
10.7132
52.7919
20.9039
21.0703
11.3855
11.4188
11.3053
11.3658
162.89
8.85063
17.2708
13.9308
11.9653
12.654
9.06196
64.735
12.1822
9.24626
38.2308
16.5558
17.5911
16.1762
17.9284
15.5505
14.1883
14.3702
15.2017
138.302
70.2901
26.4059
28.3908
29.2251
43.3954
26.3726
31.4506
152.931
34.1669
47.2563
17.2763
25.5697
21.3855
22.7827
7.59839
10.1329
9.05326
24.2626
36.4548
31.6318
30.5676
10.2732
34.7094
33.9169
29.9535
24.1804
30.6896
21.7467
19.6326
19.9918
8.08067
16.7545
8.81369
17.1251
9.25038
9.11936
16.486
95.9527
94.0472
347.437
11.3132
388.286
10.7825
336.468
32.4787
39.9776
33.2185
35.8103
16.2781
40.8695
16.5049
9.73995
9.43062
8.98543
9.13797
41.9693
17.4762
16.9913
35.8767
36.5009
9.0384
16.6666
9.09152
16.9886
9.27176
9.23623
33.4727
31.8747
30.8894
28.4074
28.278
28.8679
35.5553
31.6477
30.5922
30.789
29.127
29.7807
56.6547
40.4093
45.7588
54.0851
39.3796
43.9407
90.5653
92.6484
52.088
36.9983
37.5928
41.3159
49.0956
20.2556
20.4288
11.9634
11.8527
11.594
11.7073
49.2831
20.4827
20.7014
12.0435
12.0261
11.7915
11.9221
10.6199
15.6716
9.49153
8.59366
14.6947
8.77542
8.85162
9.36721
26.8478
53.5299
20.7187
10.2296
10.7102
13.092
11.6653
46.989
18.2957
19.1109
49.3075
48.0683
17.8906
20.7331
22.8631
26.2245
27.2261
26.2104
20.1624
25.0071
24.1698
24.8673
27.6326
25.8978
41.7636
42.6173
12.6255
21.3879
19.6804
17.4404
11.0041
18.2143
47.9688
9.91636
7.16082
34.7063
49.9144
28.5523
11.6758
52.8859
52.5542
7.96341
15.1316
23.1005
29.7179
16.0805
54.959
51.1017
24.4819
24.4909
16.4577
10.7652
16.7946
16.9915
10.8968
17.0016
49.5283
23.6567
23.7586
16.4409
10.608
16.4798
16.4714
10.6442
16.5283
13.933
18.838
19.438
141.307
47.7585
15.3588
30.7491
21.5794
39.3011
9.16507
15.0304
14.2099
19.893
42.0134
20.0334
8.91269
13.763
13.8769
22.0916
43.2953
20.4927
14.5824
9.0085
42.4758
9.01463
42.3907
14.3506
21.2279
44.7182
14.4652
14.4876
21.1777
41.1976
9.35237
9.21939
20.1646
19.79
41.7215
21.2243
44.5226
14.4681
14.5634
21.1546
27.6641
23.6281
21.6195
18.4335
14.3093
18.199
17.6028
13.4606
17.7593
23.943
19.986
20.1782
18.4102
14.7071
18.2272
17.7267
14.4574
17.9119
12.895
16.8809
13.1321
16.5898
8.51208
37.5286
13.0507
8.52827
37.6569
13.1041
53.9029
9.49543
9.65091
23.0073
25.1015
46.5679
42.4117
9.07038
13.3953
9.1111
13.3403
13.2234
16.9957
13.4538
16.7742
8.90292
8.81169
42.9296
40.1118
43.5742
9.17735
13.4134
9.12678
13.4158
50.0788
21.9271
18.5753
18.5741
16.7024
13.5015
16.6259
16.6429
13.5023
16.6209
22.362
19.0432
18.9966
16.7736
13.7779
16.9055
17.1079
13.9058
17.0585
34.0857
7.81468
11.0431
11.3032
7.6158
19.1668
35.5089
8.64019
8.49746
18.652
37.4709
14.3861
17.2685
13.8216
17.5401
50.4327
11.6385
8.47331
7.79422
12.4351
12.3105
8.4461
8.5333
12.2388
15.6139
19.4398
15.9725
19.1628
18.25
35.0577
18.1379
35.3084
15.6493
13.8494
13.951
15.7348
15.2631
12.5215
12.3259
15.4338
16.8826
19.8511
16.5028
20.0884
19.8236
17.0946
17.1448
16.2016
15.0866
16.2561
16.1636
15.0486
16.2189
19.2285
16.3459
16.5779
16.0304
14.727
15.8801
15.4544
14.5127
15.6563
7.8082
8.46714
12.6319
10.7393
12.6288
10.6718
13.5379
14.3774
14.2742
13.5598
11.0422
7.37316
10.6383
7.65654
13.8107
16.0484
15.1965
14.1657
18.1329
34.8633
18.0481
35.0336
15.5729
14.434
13.9238
16.435
18.047
15.2781
15.3607
17.9595
34.804
7.76263
34.7264
7.75527
7.24552
10.6697
31.3601
16.4689
16.3242
31.6044
10.7106
7.31173
20.413
18.8821
16.641
30.7202
36.0375
7.68338
7.78822
17.1598
14.6753
14.8223
14.4741
13.9116
14.3799
14.0034
13.5924
14.1838
17.5243
15.0785
15.1348
14.4874
14.1792
14.5365
14.4992
14.1957
14.557
7.19387
10.4577
31.6999
17.8346
16.2357
37.0555
10.4309
7.34881
16.1191
19.1415
29.4609
7.02972
10.0937
12.1988
38.8825
19.1557
10.3622
12.2771
30.6396
14.0769
14.3766
11.3816
12.1849
6.5109
9.54333
13.1461
13.495
13.6732
13.183
12.2388
11.5442
14.2859
13.8227
16.8819
19.3317
15.6508
16.1336
29.2083
6.91316
10.1293
12.3308
15.8752
14.8239
10.0401
12.2931
30.8763
19.2813
14.5283
12.6768
12.6909
12.3079
12.0464
12.2666
12.209
12.0076
12.2179
14.625
12.8236
12.8278
12.294
12.0825
12.2981
12.3219
12.1096
12.3303
13.5687
14.0377
11.2176
11.7081
13.0489
13.4683
6.16071
8.88759
13.2157
12.9817
14.0768
13.8153
11.4877
10.7183
14.775
14.7459
14.7399
14.7333
14.7469
14.7417
14.8148
14.7461
11.1356
12.2346
8.90745
10.5044
11.1339
11.1585
8.66855
11.0099
11.1231
11.2722
7.24473
12.5957
12.3205
12.8383
12.245
11.1023
11.0946
10.5317
11.1017
11.09
11.153
14.7061
14.6154
14.6705
14.6725
14.7454
14.6716
14.631
14.6505
31.237
95.7882
6.06133
25.1571
33.2167
9.14754
10.828
11.216
11.337
11.3266
11.378
97.4504
7.35291
5.98964
12.2677
10.5163
10.867
10.7085
11.7935
11.9441
10.4054
10.9121
10.7893
9.52906
9.15231
9.27362
10.0473
9.86599
9.65878
9.25396
9.58402
9.37661
12.1558
12.0356
12.3961
11.8745
11.197
11.6057
11.0141
10.8746
12.2405
10.8204
13.9358
13.5105
13.4747
13.8247
12.0423
12.3429
12.0898
12.2972
10.0662
10.2614
9.85533
10.1957
10.2215
10.2974
8.31996
10.4473
10.0225
9.03571
13.0745
11.0882
10.5411
11.0919
10.4087
10.2335
13.9357
13.5187
13.6167
13.7851
11.5523
11.7542
11.4853
11.8298
8.74004
9.14724
9.5886
9.46842
9.16907
9.30298
41.4049
50.816
88.1275
42.9828
88.367
32.7466
41.7413
39.1152
43.0367
20.5292
29.5936
37.0241
36.2351
217.262
45.0514
44.3159
29.3773
24.5317
79.725
35.946
29.916
82.068
37.5573
51.5194
57.6171
20.6267
60.1126
9.10204
68.0562
209.406
183.945
52.4641
26.1113
40.8105
22.7832
29.7697
43.2302
34.0603
197.655
47.4426
78.7119
58.2834
17.8636
46.3096
56.9299
205.877
81.0941
26.2853
216.045
31.327
101.182
42.414
95.9643
90.6952
35.9551
16.607
20.0213
29.0003
24.5518
118.205
231.573
38.0805
125.096
29.552
76.5753
233.816
186.244
47.1614
113.015
44.6473
75.6885
78.9578
407.513
169.396
632.631
38.0448
41.0418
251.532
142.355
67.7008
49.2891
622.983
79.737
272.508
237.635
164.53
220.267
171.571
27.7632
178.91
139.672
27.7595
191.25
467.786
37.0494
520.021
84.3972
15.6129
53.376
15.6421
52.9394
46.6124
46.7322
16.9675
52.6489
16.1557
55.7618
50.4638
54.2579
66.6293
20.8019
32.6162
33.945
160.407
68.3653
24.2948
81.8115
25.8022
25.89
80.131
18.1636
21.5547
26.0695
34.746
65.4971
22.4098
27.2404
28.2792
86.2023
36.5512
201.396
20.0299
206.759
91.6775
566.928
226.458
20.5056
96.8541
330.848
326.414
56.1586
82.1383
153.678
244.637
64.4533
570.261
465.762
539.359
22.7578
21.0155
181.1
457.3
214.72
113.571
55.1855
542.799
488.007
19.5796
21.3479
30.2347
353.41
52.8583
86.0544
15.2867
177.863
400.77
368.776
146.976
27.7619
94.2315
16.2645
41.2008
20.9448
180.094
51.2955
41.8616
598.281
69.1694
34.1092
26.6549
31.7917
44.7502
479.864
220.848
93.3394
543.981
53.3923
104.422
37.0641
23.9394
17.1642
216.16
539.88
55.9979
12.273
24.7651
12.4651
24.1303
39.8263
14.8806
16.7252
26.7137
27.9988
24.2278
245.782
30.1828
101.597
31.2607
28.3452
23.7573
69.1105
24.4244
90.5704
24.4278
21.4333
34.8198
107.505
40.1487
18.6311
20.8302
51.008
16.7243
59.5215
248.153
46.8396
19.2868
67.1048
33.5624
94.4897
25.3332
16.349
382.542
14.6015
513.717
553.809
62.815
215.907
16.3606
72.1912
53.3395
122.963
357.797
13.1681
29.4096
22.176
19.0278
148.089
23.9064
34.9649
14.944
22.1207
15.2452
13.592
15.2329
33.8237
15.2541
27.9778
64.8397
31.6473
32.925
62.907
122.462
49.504
17.8684
15.9372
25.2456
595.654
103.524
53.1251
36.9112
33.9902
25.7829
18.5065
15.196
31.4798
18.413
13.9212
13.7606
13.4343
22.7862
56.6392
57.9054
13.036
13.204
21.9501
56.2336
55.6252
27.356
52.5626
23.0614
19.7517
40.6013
22.1015
10.8268
12.3825
17.1352
32.8624
34.6888
27.5899
12.5098
24.3686
19.2295
19.4687
32.6204
25.1187
19.2743
28.5388
60.9841
28.4201
60.5773
60.7465
19.1916
28.7235
28.3223
59.5461
60.3578
18.0154
25.3611
50.3417
25.8499
62.689
62.2001
17.1648
22.6033
22.446
58.5635
28.9857
56.4717
27.8635
58.6066
59.2299
11.4345
16.4333
17.4838
24.3285
28.8716
217.891
26.0202
49.665
56.5032
22.712
26.3438
29.4599
57.5066
22.2266
24.7754
31.5832
58.9872
10.1211
46.3459
15.7978
15.4053
21.6117
17.1687
27.4623
23.9745
23.9219
27.7905
17.1274
21.4672
18.8101
22.2036
29.0977
55.7681
20.142
24.183
27.4553
54.9293
51.5898
53.7097
9.75814
15.5098
14.5379
12.5801
17.7602
25.6101
26.4054
13.9065
21.6036
21.6567
24.9251
10.5754
16.1818
18.1543
20.7529
10.2273
14.1114
19.7039
20.8493
9.97341
43.2206
14.693
14.7511
10.4038
43.7091
42.769
16.6483
11.3562
15.2641
17.7382
11.2981
48.8713
17.2511
20.1757
12.5577
190.612
16.4663
20.0914
32.7297
55.4142
29.7634
52.5802
22.2433
26.1426
26.9765
22.288
25.9737
46.636
19.5404
23.1495
22.2421
19.9247
45.5997
27.3225
22.2613
26.2047
25.6814
22.1936
80.1595
82.4142
47.8806
31.2967
8.75581
38.1066
12.6543
12.646
41.904
21.5179
21.7934
41.386
10.4197
14.8034
9.74879
14.5478
23.5421
21.1661
20.0934
25.7659
44.1338
10.4371
10.5029
8.74287
37.1301
12.57
12.8476
18.4643
17.5512
17.4265
18.5607
41.2775
21.9215
18.4015
18.7106
21.6728
10.1831
42.2809
10.1745
23.6881
19.8348
20.4767
18.0525
24.5975
22.4681
18.7298
17.7239
19.6591
20.9715
15.2441
18.486
18.5137
15.2623
21.1028
19.7588
17.7835
20.7902
9.78385
14.0385
14.6478
10.245
19.1066
17.1053
20.9525
20.5416
14.8885
18.2946
19.1999
14.9571
20.3138
19.5067
19.4718
25.4109
12.8311
15.3617
16.357
13.5996
24.4122
18.0994
19.0522
15.2619
14.7095
11.926
20.8855
17.3306
13.312
11.5589
7.60973
11.2181
11.0732
17.1651
17.5058
16.1396
19.3972
37.8186
15.285
14.245
14.3571
15.1886
7.82978
33.5754
11.3791
11.3977
14.6174
11.9441
12.2166
14.2316
16.3088
15.0149
15.3121
16.0265
17.0299
14.2684
13.5155
8.68618
17.3921
16.5284
10.4013
7.88486
152.431
12.5316
15.4128
35.049
7.87535
8.51042
15.3187
11.7507
8.4984
11.6743
142.925
10.6352
9.27604
13.8936
151.25
14.3926
10.9722
185.287
18.9221
19.1288
18.4145
18.5494
18.7261
18.5098
19.0847
18.805
148.266
145.281
9.58547
10.65
6.77793
191.001
7.73049
5.22451
11.0815
8.75901
81.6138
26.1383
25.2892
17.1894
16.4242
18.0767
17.0317
17.7454
18.3393
16.213
16.4974
9.89978
7.98023
6.39186
9.99057
8.31424
6.12088
23.9715
20.1108
20.91
40.0548
6.69756
28.1251
9.95171
9.76088
13.4591
10.9514
11.2076
13.1446
12.2859
10.3158
9.89715
12.6031
6.92268
28.435
10.0607
10.1164
10.7383
7.47558
7.60266
10.5296
11.1276
8.23397
7.84084
11.8969
33.6338
8.65545
8.51049
12.7393
14.072
17.4621
26.5252
13.0929
15.5394
16.7042
27.183
15.7323
30.9823
15.9563
30.4905
30.3538
30.4024
13.3602
12.9703
13.3478
12.9434
12.8293
13.333
13.5591
14.2469
12.8287
13.1613
13.2743
13.7631
15.8591
31.1799
19.3188
29.182
29.606
15.8094
15.4497
14.9987
14.8272
15.7725
15.3449
15.1155
14.8237
15.3384
15.2937
14.3825
14.2417
15.155
14.7116
14.9756
14.4326
16.3818
16.1093
15.9476
15.6694
16.2671
16.1505
15.8332
15.7092
15.5519
15.3005
17.1652
16.6526
16.0596
16.9816
15.3284
16.1292
17.6191
167.104
26.043
56.6582
45.5187
14.5361
13.9402
15.5167
14.5972
15.0431
15.6943
13.7007
14.0338
12.7545
12.0272
13.6987
12.7238
13.2813
13.8878
11.8552
12.1874
16.1133
45.0091
15.9059
45.3874
45.0779
13.8577
13.4158
15.1701
14.4681
14.3289
15.2348
13.4411
13.9309
5.28409
6.91963
7.83449
10.7387
7.27486
7.4807
10.3971
6.69633
6.90212
26.2167
28.4248
11.1188
21.8281
22.1831
5.70955
5.54312
23.7606
5.89991
5.78757
14.2045
12.7204
14.2712
12.9574
10.5735
11.0554
10.3456
10.0963
10.4069
10.6784
10.7421
10.2096
11.8678
12.5027
12.5513
11.6505
11.019
10.3993
10.9834
10.5812
9.20165
9.20654
10.1317
9.49991
9.66305
10.4577
9.0461
9.13932
10.2106
9.72481
9.95946
9.98052
14.025
13.0075
13.1939
14.0508
14.351
14.0846
14.3022
14.2203
10.3182
10.0208
10.9333
10.2813
11.2512
11.4079
9.97369
9.66428
11.4874
11.2253
13.3296
12.4474
12.1299
13.1555
11.4725
11.8652
8.50496
9.52704
8.63516
9.35241
9.75933
8.98371
10.5127
9.70414
10.4984
11.0957
8.13828
8.95243
13.0109
12.7839
12.4518
13.714
7.79907
8.42872
7.67459
8.55903
7.01741
5.98412
9.68349
8.98112
8.10158
8.99555
6.9955
8.12005
23.5488
11.5159
22.8767
11.4663
9.08715
10.6835
10.5955
9.09895
10.3035
21.3571
19.9887
8.96227
10.96
21.4335
91.3632
11.3174
11.1462
10.7483
11.1113
10.8511
7.83262
7.7626
9.11667
7.03776
2.68611
2.93092
10.0861
10.2326
10.2291
10.0528
9.22304
10.2252
10.0592
9.54752
6.89803
8.76993
8.78358
7.13239
9.9646
10.5153
10.0895
10.1828
12.3544
12.3694
12.3027
12.4232
10.8418
11.1247
11.0342
10.9225
12.1083
12.1641
12.2522
12.0094
12.0855
11.5715
11.7044
11.9547
5.31842
6.00872
5.37789
5.9433
10.9361
10.62
11.0119
10.5418
9.29697
9.02222
8.92521
9.39591
5.43283
5.79124
5.20468
6.02437
10.8093
10.263
10.6596
10.4261
74.2159
8.42128
8.38866
8.19855
7.74579
7.19843
7.41932
7.36728
7.43813
7.54554
9.36923
18.2667
8.99535
8.67872
17.8716
8.8082
6.84066
6.58239
6.82652
7.47123
7.00714
7.27004
6.81344
8.10492
8.31262
6.62173
4.66049
5.12278
4.71837
5.06679
3.69048
5.68896
3.89161
5.40452
15.7972
16.7438
6.85094
13.3097
6.03794
6.88059
4.25
4.73648
4.33521
4.66405
3.55863
3.55545
7.77145
16.6221
15.6873
4.99151
5.36954
11.6698
78.6166
24.9011
8.54878
8.87331
8.75538
8.67206
9.24339
9.35281
9.42269
9.17208
8.82473
8.39464
8.4746
8.74777
3.37766
3.83344
3.35219
3.8626
8.2739
7.89098
8.27501
7.89645
7.0449
6.80477
6.65418
7.19207
3.09234
3.50722
3.05207
3.55176
7.8358
7.38783
7.76504
7.45744
15.0032
6.49081
5.96313
6.20059
6.62822
6.26262
6.47285
6.48902
6.14624
6.49226
7.26007
13.9641
8.58164
6.38021
8.4083
6.84997
5.82732
5.77759
5.98022
6.55522
6.29343
6.51667
5.6863
5.16651
5.14302
3.67397
4.06494
3.77757
3.97435
5.47788
5.35512
5.19003
4.66358
5.13222
4.86865
3.42906
3.62077
3.30322
3.73553
5.58112
5.30108
5.30585
8.38159
8.05488
8.30699
5.18278
6.85247
11.2617
6.17973
15.212
6.51105
5.95335
6.13621
6.32711
1.28598
1.79556
1.37794
1.68225
12.4041
5.41785
5.17988
5.54197
5.05397
2.54938
3.42504
2.65952
3.29744
1.41987
1.455
3.96859
14.7371
13.9232
5.10811
4.70032
5.01941
4.78026
84.9028
274.822
104.208
108.181
136.333
350.235
814.054
445.817
133.891
181.236
477.513
360.044
132.506
303.966
47.7818
52.8314
77.2014
170.272
140.676
389.936
81.8396
42.7968
51.1128
127.068
341.761
33.8664
35.1334
45.2331
35.7118
273.367
94.8466
87.5596
25.0002
54.7198
42.2304
69.5199
89.8014
55.2622
71.8691
104.494
345.115
110.234
59.7291
31.5532
20.5872
24.3949
88.1489
169.106
55.6956
454.131
58.1976
41.4463
132.056
377.726
308.279
42.9199
41.8112
74.0326
58.197
78.5482
40.2459
19.0741
98.0484
71.3229
93.3292
37.8254
53.5005
19.6937
53.9248
99.6408
81.544
27.8066
181.341
21.5926
113.293
127.77
32.0823
232.219
98.7719
24.5764
65.8193
29.884
73.1822
21.6042
228.044
42.6973
27.3209
84.1974
423.107
91.399
44.7747
55.4416
384.979
93.0119
469.111
162.763
91.7125
38.026
1450.64
527.516
80.5438
422.777
339.101
1224.68
61.2131
62.3195
40.2733
30.3384
76.1721
165.866
32.3503
32.3026
137.559
42.5003
72.3431
74.17
159.815
84.4787
28.2389
21.1828
21.3736
163.141
162.049
158.831
72.4289
55.2523
166.358
67.0859
51.9192
164.913
26.5722
72.0135
72.4244
166.245
27.4784
92.2651
26.5187
82.8124
21.9277
77.0364
65.2244
103.44
54.5782
40.9449
23.9714
33.8771
32.814
42.3198
152.866
91.8393
412.095
25.3694
132.524
270.581
41.2642
21.2287
23.7892
54.7514
105.828
22.8409
36.8705
57.6492
21.1843
24.2409
40.9037
29.1405
360.61
129.875
20.0493
19.8691
18.3348
114.307
17.879
175.899
62.7591
161.937
68.7429
46.89
190.526
126.886
647.662
12.6346
26.3244
62.3589
19.4423
87.7499
46.5172
77.0476
521.311
106.932
189.435
17.5981
18.1006
111.618
18.069
18.0059
24.9564
151.992
125.929
29.9181
620.528
113.633
118.467
117.703
22.7111
24.1708
35.3066
26.9276
428.469
175.342
105.301
32.9692
55.9651
40.7344
25.8813
275.375
22.4128
103.557
46.6961
48.143
94.4308
40.6962
18.8458
22.2038
27.6063
23.4478
87.9907
33.1032
38.2257
30.7995
158.929
52.619
27.6301
19.5282
39.5127
23.1926
45.066
29.1308
26.1049
37.7456
59.3965
54.1479
40.7407
39.7887
68.9867
63.7952
77.343
170.925
90.656
130.169
209.739
95.8779
907.476
23.8048
362.554
132.666
40.9675
34.5119
30.4703
38.0367
66.8644
483.369
163.349
23.7994
11.4414
49.475
22.4927
17.1017
16.8653
92.6884
16.1665
16.2346
57.4293
63.8497
41.7234
53.0987
33.3688
100.443
13.2552
17.412
136.514
26.6041
38.534
78.9282
128.369
580.57
72.5016
14.7559
14.7819
7.92015
21.2455
3.94102
7.27108
19.5578
11.0791
15.8818
79.9299
15.8707
157.647
105.501
75.4868
449.679
536.004
36.8867
32.8777
42.8986
364.573
7.96696
20.332
19.6855
8.15714
77.4525
78.3064
16.2737
33.5789
53.5486
15.3735
87.7731
80.9175
74.8403
53.9378
106.233
92.0316
101.229
49.6289
61.13
65.1774
60.4523
27.5596
163.342
77.2735
124.645
421.077
37.0769
46.1714
49.8431
70.9865
111.379
67.3814
39.853
56.2511
53.2322
57.2364
75.8461
60.5617
66.8091
49.9312
55.4637
60.3082
15.2133
15.5967
77.481
114.86
12.4804
4.83355
3.28211
655.73
60.8908
33.5967
43.5897
49.5898
94.6417
622.652
150.075
183.411
19.5458
19.7389
9.06488
8.35223
13.4551
5.6349
45.9688
35.1364
482.325
30.3888
151.763
50.6565
15.5489
15.9602
3.51424
2.84791
19.0566
18.8315
55.8642
52.7308
52.4613
25.852
32.5345
38.2522
48.2223
30.7521
43.4067
51.0392
45.0149
49.1657
233.601
6.26578
4.69515
2.66388
11.033
10.8978
91.2341
20.9358
91.3153
12.1541
12.274
104.147
23.9476
103.441
79.9276
15.3015
15.131
28.4872
21.7241
25.1178
37.3896
36.4847
28.9858
11.5349
11.8945
10.2134
10.1014
60.7219
11.0048
10.9136
17.0297
69.773
9.38814
65.3242
17.1534
71.5003
18.7992
10.2154
71.7174
18.6801
77.6062
54.9322
9.98976
10.0921
6.71671
6.76214
6.64775
6.33772
31.6659
34.2764
6.61757
33.6312
6.61835
31.0123
95.1044
31.6496
12.0831
7.63449
50.9408
12.1544
12.1295
7.56924
12.1473
36.5473
7.15009
7.60703
40.951
5.5354
5.65011
17.1132
3.29282
3.33915
17.9218
5.12153
4.62954
11.87
14.6106
19.5938
24.0273
12.5128
16.3015
17.439
22.0907
5.05021
40.5933
40.1601
5.09758
5.93927
5.85284
15.967
2.90048
2.76519
3.84235
1.85393
4.16616
1.91961
56.8279
17.9364
55.4403
18.5154
7.76997
9.62252
6.87346
9.3041
10.8944
9.30535
10.8227
9.36103
27.4472
25.5341
7.29788
6.03461
7.11616
6.20908
15.7813
8.71993
7.93158
9.61117
8.81669
9.34457
9.74014
7.7941
8.23027
10.9849
7.71295
1.44846
1.90488
0.55676
0.86746
1.00046
0.588534
1.8336
1.27714
7.38098
7.13353
8.97737
8.50703
7.87962
8.6951
7.23596
7.83178
1.11573
1.28849
2.27109
0.233885
0.396188
0.757099
0.305917
1.08721
0.668906
1.39041
1.95176
0.461646
0.786805
0.963847
0.686441
1.63307
1.17768
4.01389
3.04981
3.91805
3.13835
5.02208
4.34064
3.86758
5.01455
5.22471
4.16669
4.46883
5.48534
1.22301
0.902796
0.152887
0.342362
2.11577
0.845832
0.175468
25.5938
0.819142
0.589779
0.322416
0.445547
0.789425
0.451346
3.68824
3.8939
2.64944
4.38727
2.8566
69.2907
2.26561
4.19199
4.91461
0.124367
0.305243
0.280239
0.131787
0.132659
0.754283
2.99418
0.353246
2.29946
0.157855
2.46261
2.78054
0.442241
2.22711
2.06761
20.0077
18.7024
10.9633
22.4796
73.3426
6.79101
34.0438
2.17923
7.64914
7.27701
28.5567
9.6852
28.5009
32.3003
6.93742
10.596
1.24616
0.394168
8.41033
1.26086
0.408078
0.56463
1.1787
0.520991
7.86005
5.21038
17.6188
4.79747
13.562
9.39513
4.49339
2.74306
3.19854
4.54933
20.2851
5.85189
4.12844
5.55223
5.19559
0.133658
0.160353
15.4618
7.86417
7.98797
9.44918
3.65246
4.76912
3.89239
2.34417
1.57272
7.62244
1.90396
124.483
21.5307
118.887
12.9376
28.4096
34.5223
68.643
44.6411
29.782
10.0153
49.4383
11.1796
47.4231
42.5085
10.1387
20.0704
40.585
8.82382
14.3346
15.4782
5.8564
34.2619
8.45669
6.44615
11.4634
13.7933
7.34893
12.9685
6.41301
14.4481
34.3176
32.0794
6.67482
6.98309
9.47434
23.0032
39.5523
109.984
8.21624
36.3466
33.7991
7.41814
13.7537
12.8993
17.2397
19.9063
11.7189
16.3365
13.2983
17.0577
36.2744
7.66067
11.4565
16.8749
10.8779
16.0545
11.4782
15.6375
14.9409
13.7014
72.2676
41.2908
14.7308
21.3627
12.3028
16.7723
17.237
12.0076
11.9488
12.2093
8.19408
11.7112
12.4355
12.8651
129.857
32.1577
6.69282
28.0956
31.9926
8.1035
12.9117
21.8686
30.5523
10.4197
13.4536
25.8697
40.2657
7.58791
11.0487
12.9669
11.9759
12.5404
31.1317
11.9817
7.17902
6.38313
9.38324
8.97337
7.0751
11.2217
6.70959
8.95152
7.00946
9.48329
40.5784
7.63034
16.1736
16.9873
18.3642
9.1586
17.2716
34.2747
12.4399
13.0912
12.3585
13.1065
11.7639
10.927
10.7673
11.7773
15.3335
18.5091
14.8552
12.2519
17.1093
21.5335
18.6443
11.1257
11.353
22.2907
22.5787
20.167
9.24357
16.8726
18.2558
30.012
68.1454
31.544
9.36738
18.2862
18.593
29.6199
71.1679
31.5037
9.88334
12.243
7.05008
6.12507
8.90848
6.45444
8.77562
8.922
9.75447
18.045
22.409
15.0072
20.5288
23.3522
22.9391
28.8977
28.5935
29.9507
28.4099
28.4799
28.3249
25.1041
24.6961
27.247
28.169
25.3357
27.9363
20.7347
21.7121
26.4339
26.7593
23.8533
26.7148
13.4887
14.7218
16.0555
12.0537
12.4089
11.5523
13.9311
10.0162
263.558
23.3844
23.3184
22.9482
23.6375
23.7723
23.9909
23.1282
24.4925
19.4038
16.8537
18.0551
18.3339
21.15
22.6079
22.088
21.7837
17.1007
13.4669
15.7621
15.1008
20.14
22.8723
21.8623
21.3184
13.9065
11.0024
12.8423
12.2282
19.2537
20.127
19.6265
19.8092
17.4865
17.473
18.1478
16.739
16.784
16.311
17.3962
15.7197
17.7824
17.8457
17.712
17.232
17.2241
17.4219
17.6383
17.3663
17.5494
17.7658
17.4437
17.61
15.3196
15.5524
15.045
15.0087
15.1663
15.1013
15.5124
15.1725
16.0856
16.4002
17.264
17.4028
16.2677
16.8449
16.7352
17.189
15.9027
16.3556
16.5127
16.8012
15.8817
16.235
16.6759
16.876
14.4346
14.4861
9.95429
9.5356
14.1933
12.2327
14.2506
11.6893
14.885
14.8381
15.2483
15.173
14.9904
15.1904
14.884
15.0572
14.6111
14.7671
14.5438
14.6252
14.4973
14.4848
14.8016
14.7186
13.178
13.3407
13.2529
13.2638
13.5958
13.4892
13.56
13.5405
13.4249
13.4258
13.344
13.4966
10.3695
10.7464
10.5438
10.6695
10.9485
10.8554
10.9266
10.8767
10.7626
10.7965
10.7398
10.8177
8.93068
8.30738
8.91829
8.68714
10.8295
9.56396
7.82265
9.06477
8.899
255.53
81.6277
80.3397
36.2878
79.739
278.292
39.5408
70.4593
258.667
36.6834
30.3784
104.025
684.593
93.8166
31.3554
152.126
183.633
50.4198
210.873
232.153
45.6644
23.1564
24.775
129.379
90.5078
202.667
55.0858
88.5839
31.1824
32.9945
27.6749
26.6463
156.457
27.8869
161.079
25.1606
148.226
22.9375
120.512
167.35
41.6001
195.596
22.1916
67.0735
154.491
19.8642
39.489
20.2455
20.0298
40.1783
18.1502
17.9128
38.7136
611.402
73.6227
189.326
39.5713
21.0434
40.9048
20.4207
153.737
128.397
33.4483
32.9421
17.4197
17.7746
126.101
31.3661
31.9742
18.5903
18.3636
32.3243
123.946
11.7359
115.139
543.93
33.6581
26.2305
43.7034
154.034
44.3552
26.0976
160.304
185.971
15.1524
11.2852
9.9298
14.3744
484.489
121.748
33.2952
120.104
31.6108
37.0456
22.1785
25.1633
103.886
102.648
34.043
22.6636
16.9403
11.6474
34.4488
23.5698
16.456
11.592
32.8704
22.4437
15.7269
11.0767
32.4688
21.6536
16.2967
11.2315
20.5517
16.1589
73.498
24.723
28.4065
79.4511
15.8961
19.1457
14.6208
9.99219
338.711
8.06843
15.6008
11.4443
12.6852
9.47678
12.4154
8.93258
8.98502
247.936
77.9376
12.8645
10.0674
11.4715
13.3754
7.58194
18.1216
52.2265
57.3392
17.3516
15.132
34.2703
22.1796
15.9684
13.9289
11.8092
14.397
11.612
52.694
66.3711
8.47349
10.1602
10.3385
8.34754
8.14885
10.016
9.89573
8.24506
7.79033
6.72624
7.92305
6.60892
4.32441
5.54427
5.99319
3.96879
44.792
36.215
3.75458
5.35766
5.25416
3.8281
33.4301
34.3041
4.89378
3.94182
4.9439
3.89855
2.88277
2.92339
27.5529
7.73923
27.1346
2.8479
2.82235
26.0613
7.42781
26.2357
2.49021
1.95051
2.67375
1.75094
5.35342
3.47509
5.28495
4.41635
3.24947
4.83294
0.459046
0.436395
0.132225
0.145188
0.390687
0.420811
0.35215
0.696849
0.118491
0.131738
0.360279
0.362586
0.112393
0.0536837
0.038321
0.0484545
0.0202456
0.0223582
3.33981
0.0301312
0.0256583
1.24082
2.29714
1.34162
3.235
1.86615
1.54475
107.073
3.69405
4.9983
11.9393
4.48801
0.580706
0.606524
0.620001
1.10086
1.02749
0.623378
7.54018
65.428
5.67029
63.7635
10.7438
17.9988
15.4087
8.19619
12.1239
2107.04
62.4487
62.5665
43.4257
19.2524
103.454
143.696
1.92456
1.49714
1.72029
1.80316
236.903
10.3538
5.01126
0.150974
0.205503
2.65872
2.01079
68.8859
4.0405
2.47406
0.1413
0.159835
0.963134
1.71579
1.77898
20.7665
12.4803
11.6762
55.2419
15.6669
13.3864
35.8921
13.1529
48.197
15.7509
24.5779
9.25476
6.98946
12.0708
43.0253
7.9788
6.74739
9.76952
13.7706
42.5422
7.34665
6.40151
11.1645
31.5599
19.5206
12.0698
21.2894
19.094
5.78345
32.5652
27.6137
35.5098
21.8072
43.3625
10.8488
14.8038
7.30224
31.3217
6.08336
11.8331
18.1587
11.5193
44.3982
7.05076
45.9265
22.2114
23.9719
35.158
20.0314
3.83631
43.8403
21.7195
12.1635
11.4076
5.62364
18.2586
18.3859
7.61894
4.96305
17.268
5.15974
23.3923
17.6055
34.9984
18.1415
40.3808
32.4253
11.431
10.6696
31.0033
12.9245
12.6248
37.1481
15.1409
36.8734
20.2881
19.2374
12.1883
11.5456
8.19102
47.0278
30.596
26.6257
20.5572
23.1815
64.0597
7.66795
71.7655
125.166
12.6157
16.1561
42.8655
100.792
17.531
8.97169
37.5788
35.5174
38.4253
35.6852
23.8996
20.6002
39.4177
53.2386
17.3895
70.7718
36.1003
29.3295
36.5589
40.2023
181.159
355.751
28.5685
87.9853
363.106
22.8439
262.911
80.0141
319.708
76.309
64.7577
56.6013
61.0415
161.373
26.9885
35.6186
13.1912
22.6649
21.6821
11.431
16.5992
26.921
26.9547
26.4138
15.5511
14.3585
41.4067
43.6527
233.431
208.168
217.949
86.2267
15.8291
61.0892
34.7928
16.4145
52.1683
36.4098
114.81
111.519
62.6542
27.2458
100.943
111.701
14.7601
313.02
39.1741
128.101
120.633
471.691
19.3271
358.26
115.835
243.748
303.023
33.8922
247.484
45.5576
12.6794
12.6902
50.142
15.4386
15.5384
18.3171
26.6732
58.6996
6.71116
20.6259
7.05191
16.045
8.1066
39.4166
8.82919
16.0009
31.6712
54.1996
24.5772
24.4963
21.6307
10.3886
46.3296
11.3885
6.19014
63.8592
42.9964
13.1534
24.6521
9.1298
32.1657
12.1269
9.77285
42.179
42.4044
40.8528
19.6104
11.5712
11.5767
19.7712
51.8017
12.2614
29.5163
60.8776
14.4263
31.0104
12.7414
14.4584
45.3374
14.3511
42.0796
41.8652
46.9178
15.1368
45.4547
15.0373
26.65
116.715
21.5561
14.1449
12.6502
35.5639
46.117
14.9442
14.6641
38.0969
12.997
12.9846
14.6628
45.6836
14.6506
43.7666
43.3413
40.7515
13.1629
41.8147
13.8951
40.9644
12.935
12.8297
41.8829
35.6902
10.1802
37.0976
12.0192
11.8965
53.7899
10.1238
19.5315
19.4196
34.5787
11.5411
11.6665
34.2331
9.99622
34.2199
9.98609
41.7861
37.5657
13.251
13.1073
47.4833
19.1575
19.1702
10.6972
10.6481
10.671
10.6556
18.7571
11.3714
8.5949
6.21587
33.834
12.7381
13.4743
7.82095
7.58159
7.01174
7.3727
44.449
10.6085
40.1991
18.4043
9.92771
18.8424
9.71583
10.6757
52.123
19.8612
52.2644
19.9774
18.4192
9.85732
18.5641
9.82568
46.7842
10.4975
10.5307
10.4661
18.2489
44.899
18.1272
44.6846
18.2924
17.9281
10.0182
44.9031
45.0941
43.6778
17.809
43.997
17.6439
9.68961
17.6078
9.85223
17.7155
49.5563
20.6749
20.4972
11.077
11.3535
11.7292
11.6302
44.6012
18.561
18.7802
11.1347
11.0632
10.8352
10.9503
12.4608
31.4609
13.1784
8.779
12.6352
13.784
28.6774
15.3113
39.3124
16.5159
6.36198
11.7891
10.7457
99.9584
26.7692
20.9881
42.825
24.0403
18.1456
10.8846
19.1844
49.1939
20.4374
48.8645
20.4681
19.2063
10.858
46.7363
47.7384
49.0826
20.6243
48.7019
21.2793
10.4597
18.5549
10.8641
18.9257
17.9139
26.0558
9.58047
44.6573
23.9102
15.7053
50.2333
49.8929
9.539
44.009
15.7563
23.4054
15.6324
23.3084
50.5294
24.214
24.0636
16.5577
10.5366
16.5565
16.6818
10.5482
16.6009
47.8597
23.185
23.1544
16.109
10.4457
16.1198
16.1712
10.466
16.1368
19.0306
14.2669
12.9427
25.8385
7.97314
8.17279
7.31818
10.501
6.81691
11.149
38.4466
9.64913
8.55667
6.06379
40.4284
22.926
27.2357
108.661
32.0812
15.0468
30.4664
15.8215
7.73417
11.5581
6.34596
10.9852
18.7139
43.2149
12.1102
166.902
45.0161
20.2108
9.18236
13.6912
22.753
21.2765
47.5708
23.1934
10.2416
15.3516
22.2331
31.2705
61.3199
44.3807
260.506
9.73226
15.1744
22.0752
22.0756
211.81
46.2616
22.6656
22.6249
16.2245
10.73
16.2173
16.1435
10.6722
16.1562
10.0666
9.96791
23.546
19.9319
19.827
17.336
14.0668
17.458
17.7219
14.1961
17.6137
9.63103
9.72386
11.7734
15.2182
12.1302
13.7107
11.9404
13.6833
12.3128
12.9906
12.2682
13.1688
18.0325
42.7364
11.3183
14.0571
30.6853
128.047
10.4957
9.28688
10.1526
8.09877
10.821
10.7582
6.88264
8.0688
7.81902
15.2235
7.89769
17.4469
9.1721
13.8655
11.5646
11.8706
7.61063
13.3944
16.4668
12.4492
13.0064
12.3474
13.0913
11.8996
11.2103
11.907
11.3833
36.3284
13.9307
18.0931
23.6844
24.3968
26.3266
26.8883
24.6968
25.456
23.6733
14.4389
18.7394
47.433
23.7398
28.4472
27.56
28.5016
27.1582
26.8996
26.5116
25.7693
25.2427
27.1237
27.3642
25.4099
26.721
31.141
58.7437
28.3821
26.8216
26.6729
14.5301
18.7802
23.9487
47.5665
23.7737
47.396
28.3974
26.9428
24.4404
47.1173
28.0598
27.5873
25.88
32.6868
18.1433
22.6117
24.5838
23.8744
24.0653
24.3441
25.2614
25.7803
25.3317
25.692
17.5673
22.3404
42.7947
44.0335
22.5077
23.7118
22.9421
22.8862
22.7299
23.3272
23.4726
22.6238
26.0023
26.5206
25.6815
26.5324
26.1834
26.2382
25.7482
26.7072
9.98186
10.0005
23.4244
19.9442
19.8734
17.6361
14.3899
17.7403
17.8489
14.4336
17.7909
9.8973
9.92633
8.89142
9.07891
21.8611
18.3975
18.5964
16.9039
13.7602
16.8345
16.5478
13.6727
16.7305
9.56477
9.50615
8.85069
11.0856
9.4484
10.821
8.22469
11.8828
13.5319
27.4304
26.0214
21.7201
8.68025
17.4734
15.6035
15.1969
20.398
17.634
6.19873
28.3225
6.51775
227.668
8.25052
21.7737
21.7258
22.0293
21.5588
21.6519
21.99
21.8454
21.7902
45.3908
18.4922
22.9026
44.6786
23.6368
23.4896
23.7122
23.4919
23.7674
23.5573
23.9886
23.3905
22.1618
21.767
22.1593
21.6753
22.4225
22.9116
22.1992
23.034
21.8317
22.0732
21.9184
22.0219
22.3139
23.0383
22.3763
22.922
18.2111
22.7227
43.3065
20.3166
20.2341
20.1002
20.4579
16.7077
20.2858
39.6557
20.686
21.0998
20.736
21.0082
17.5419
20.6593
41.3939
40.3594
19.8193
19.599
19.8242
19.6057
21.2667
21.8151
21.6195
21.4502
8.52956
8.48848
19.2301
16.3698
16.399
15.228
12.5163
15.0057
14.7824
12.2428
14.8384
8.906
8.62063
8.04336
11.59
8.10182
11.6307
8.14126
8.12731
18.5138
16.0009
16.0094
15.053
14.0449
15.1122
15.1601
14.0971
15.1638
8.07087
11.617
8.10847
8.15108
11.6618
8.14175
19.5805
19.3586
19.5342
19.3653
37.0573
15.6866
18.6237
20.0235
20.3722
20.0586
20.2824
19.45
18.8468
19.3005
19.0637
19.7314
19.677
19.8403
19.6026
16.0079
18.7212
141.155
18.1152
18.3337
18.1533
17.565
17.9018
17.8862
17.8302
17.5538
17.8687
18.3519
18.1872
18.1696
17.3953
34.0837
17.4449
34.1018
34.104
7.90851
11.1998
7.841
11.1194
7.75058
7.78378
17.3662
15.0879
14.9772
14.016
13.1516
14.1031
14.2983
13.2401
14.2053
7.58952
10.9043
7.63423
7.72572
10.9769
7.68596
10.2283
12.3761
10.2875
7.3106
7.30122
12.4159
10.3307
10.3121
16.7661
14.4128
14.4201
13.8724
13.4727
13.8469
13.8345
13.4622
13.8423
7.32319
7.32143
10.3671
12.5177
10.3558
10.3516
12.5033
10.3536
13.8139
12.8309
11.5621
12.4191
10.5672
9.68876
10.6195
11.4835
8.30348
13.1932
12.626
7.9976
14.0646
14.2483
12.983
12.707
12.5147
6.8664
11.844
17.405
17.5111
17.3616
16.8671
17.0411
17.0922
17.1622
16.8909
17.1212
17.4705
17.2636
17.3247
16.7088
32.4589
16.504
32.3689
16.2222
16.541
30.1295
15.8186
15.9124
16.0155
15.8144
16.401
16.0635
17.4965
22.3071
21.22
70.8267
17.1521
18.017
179.012
17.4455
22.487
19.0184
69.9365
30.3399
16.9818
17.3052
57.8365
121.82
10.0002
11.7602
9.80372
6.75576
6.81579
11.5133
9.51149
9.60596
15.0486
13.0227
13.0104
12.5204
12.192
12.5163
12.5077
12.1574
12.4959
6.75148
6.82378
10.0422
11.4533
9.7142
9.48523
11.3645
9.54025
10.8658
11.4744
10.879
6.50894
9.11344
9.12762
11.4696
10.8574
10.8676
13.9155
12.166
12.214
11.8743
11.64
11.7976
11.7107
11.6025
11.7497
6.48831
9.11109
9.12023
10.9615
11.5317
10.906
10.8614
11.4995
10.8794
8.51319
6.72278
15.3939
15.1958
15.6677
15.5791
28.2919
15.5645
15.6386
15.2877
15.4417
15.1567
15.1446
15.073
14.9684
15.1263
15.1276
15.0974
15.0083
15.1421
15.1175
15.0284
15.0796
29.1314
15.2274
15.115
15.0692
15.0493
13.2284
12.3563
12.0571
7.63859
9.59983
14.3711
14.4783
14.411
14.3708
14.3952
14.4323
14.4889
14.3476
13.3256
14.4563
10.8897
13.8701
11.1039
9.47666
14.5103
14.3299
10.7631
11.2607
10.7639
7.16188
9.89595
9.45947
11.2373
10.9532
10.8301
13.0093
11.4542
11.325
10.7362
10.9017
10.8541
11.1147
11.0306
10.9962
8.63066
10.2511
10.3774
10.8274
10.986
10.9162
11.0227
11.108
11.0043
9.67644
9.51618
9.67806
9.11552
9.61896
9.65884
9.51932
9.7181
9.67736
9.61122
9.22015
9.34002
9.48997
9.66433
9.48593
9.2934
9.58293
9.40998
8.32599
9.58556
9.5485
9.9381
9.86855
9.93722
9.80152
9.78209
9.8871
7.24021
7.37711
28.732
102.81
15.8275
30.929
6.83402
6.10044
7.42437
97.028
8.19556
10.124
10.6039
13.0289
25.0648
15.8442
15.3902
12.5135
12.7511
12.7185
12.5525
13.1217
12.9297
13.0928
12.973
12.635
12.756
12.5711
12.811
39.1555
45.7621
34.1141
24.081
40.525
36.4098
43.2353
24.7629
95.7746
38.9297
37.7542
91.4765
22.6212
47.0206
44.9347
45.8117
42.6373
13.8296
36.6394
49.4516
30.8462
17.7313
71.4007
65.0622
19.6356
67.2887
27.4465
58.2759
25.8768
73.8262
31.0495
58.9901
57.0476
32.1702
16.5205
16.6975
61.9239
40.628
209.954
57.3334
28.0157
30.5997
157.617
25.5111
88.37
28.6893
57.8296
395.281
97.9666
21.3008
21.8528
82.761
300.693
26.7679
180.951
29.8567
31.262
99.5075
47.3236
24.4521
176.404
65.2605
18.147
39.7133
11.6606
17.8961
17.0907
47.2615
50.9845
14.2924
15.2354
26.7324
14.3333
54.441
13.3583
50.9122
60.3093
48.779
45.2365
15.1979
57.976
17.02
54.1803
17.1387
16.9662
53.502
16.9599
15.9813
51.6582
16.2099
51.0974
48.8381
48.2107
51.8578
17.216
52.7305
17.2863
16.1512
51.2142
50.9856
16.3753
51.8623
57.7378
19.5361
12.5534
23.086
11.4354
16.2571
51.7688
16.6551
50.4463
44.4149
45.1069
46.1375
15.6763
44.9865
17.0247
15.0549
44.2492
152.858
13.0432
25.149
14.469
14.4859
22.1006
58.3544
57.9052
43.0116
12.9726
42.8503
25.089
64.6996
12.9308
25.3104
65.4216
42.0572
12.6593
42.2176
14.2578
24.921
74.7715
70.9942
172.154
14.1238
13.7093
21.7924
53.418
56.3367
40.4958
12.0301
25.0369
60.1259
12.8323
23.0402
61.0364
39.0163
11.4554
15.6719
46.4749
21.8011
51.6844
12.0408
12.0594
20.0073
50.4944
50.6023
52.2928
21.6565
21.5056
52.8047
11.5089
19.7425
11.6807
20.4307
52.9108
21.5842
21.651
52.7367
12.0221
21.1216
11.8027
21.2063
37.2455
125.392
21.0056
74.7396
561.434
168.522
155.097
42.9011
55.5468
39.6838
197.223
19.2034
169.811
80.4211
30.2266
118.084
27.8219
593.164
19.6329
14.3238
521.09
39.0018
28.3771
50.1586
28.992
19.3265
27.8656
139.162
33.4178
129.853
34.8658
27.1619
16.4899
12.356
11.7872
20.5783
47.1018
191.223
49.4368
32.1433
20.2149
20.4675
30.5658
198.204
10.8867
15.6441
13.9932
28.9459
20.2315
19.2285
30.3139
12.9513
13.5716
17.5745
26.2487
55.9799
26.0051
18.4044
11.6082
11.6664
18.3518
19.377
11.9862
12.2486
18.9807
60.2682
59.7944
22.5557
30.8781
80.278
64.4559
17.825
30.3485
36.4367
78.5066
56.6058
21.5977
16.7876
49.9452
36.5382
17.8094
26.7932
35.5803
17.647
20.011
30.1379
145.666
17.1163
128.245
554.028
14.6127
43.5166
41.3996
26.1274
16.8512
16.3312
27.529
95.5096
37.7505
37.5973
25.2074
27.1407
22.2438
53.386
147.213
47.8005
175.343
39.1772
29.2667
28.0938
42.867
167.325
488.009
43.6049
14.3239
14.6999
142.32
47.9433
42.3777
130.91
44.0738
122.146
28.622
20.5661
21.1069
27.7106
13.3433
20.4884
19.9609
13.5588
129.568
17.8956
26.0141
54.6276
26.1844
55.6389
19.9628
12.5539
12.7065
19.6926
60.4625
19.102
12.407
12.2571
19.4109
54.7384
55.6101
16.2357
21.2376
21.186
11.9616
12.0685
53.2375
11.9496
11.9995
88.7561
16.9624
75.2026
22.6363
35.2159
25.8399
34.4363
303.273
99.5199
14.5215
273.176
19.2101
36.829
67.2212
28.7455
45.9678
62.879
70.1232
26.0605
16.2195
24.0353
17.9246
34.5743
68.2092
65.4912
35.9575
60.4763
30.0325
24.2774
72.3683
16.1206
21.21
15.3668
22.7319
14.397
26.2116
35.71
33.6111
26.3376
23.3622
13.8977
37.3902
25.6053
17.0275
30.4722
30.9916
69.0622
116.797
33.4091
64.7285
30.5873
30.9038
41.0037
72.2478
33.1253
45.4778
26.905
29.3922
26.9994
29.2959
30.8665
30.842
293.304
131.073
18.0852
11.8252
12.6939
16.9
25.5971
33.0223
26.5706
31.5897
109.296
36.7489
13.2431
12.6928
35.5756
117.069
42.1247
25.9194
28.1648
38.9649
28.6911
34.409
27.1888
37.1711
24.6721
19.1197
25.8279
18.2088
34.1752
49.4435
428.782
45.6886
35.6229
14.5743
116.553
13.5976
29.1404
33.6595
27.961
36.5424
107.097
17.9426
13.0484
12.8569
18.3139
15.9198
20.8209
20.6736
11.9797
11.8148
11.9177
11.8806
52.8058
52.0943
10.3081
45.7024
15.4347
15.5365
50.7405
50.2379
49.7909
67.3851
15.5915
21.8936
22.8114
15.1186
77.8525
71.3485
40.4679
36.7312
23.4459
13.6749
14.3144
13.2253
22.7248
31.4017
24.1353
29.3475
36.0864
27.8427
29.1658
34.1969
81.9521
16.4492
27.7878
24.5766
24.7093
27.5806
69.4046
79.4635
17.2791
25.1029
17.6088
24.8897
26.0159
20.9453
25.4881
21.7891
241.078
16.6355
16.9699
21.7049
26.4898
19.2545
28.5714
67.8937
25.634
23.7218
24.6516
24.7908
26.9534
27.9478
27.7485
27.1897
25.8447
24.776
25.1825
25.5432
26.2713
26.1569
26.0361
26.4366
23.1667
22.7161
23.7147
22.0379
23.3301
23.753
22.3264
24.6305
28.2891
28.5189
28.3143
28.5066
27.5792
26.668
27.1812
27.0036
23.2268
25.9386
26.6704
22.5809
12.3163
12.9236
26.0303
30.7782
26.7804
29.7944
129.016
61.271
383.784
13.7485
13.3827
10.0768
88.9636
106.707
97.2085
9.77962
11.1234
10.3307
45.261
15.4681
15.5131
9.68817
42.2142
14.2681
14.1768
21.1769
43.0496
22.0493
23.5142
45.5207
23.3558
20.6381
13.5876
58.8567
14.1462
69.0836
20.0632
38.937
255.941
17.5661
17.2764
60.0922
80.3721
25.1701
21.3801
27.0969
19.7942
32.9826
16.2286
15.8122
60.8891
63.5516
32.2496
24.932
32.203
29.1901
27.535
24.2783
28.1687
66.5602
56.7072
22.4036
26.4598
22.8176
24.3904
24.0121
27.0224
25.8542
24.8424
22.7942
22.8706
23.0101
22.7214
22.1022
22.0639
22.2005
21.8695
21.8523
21.2125
21.5735
21.5682
22.8809
22.8319
22.6031
23.1156
26.9133
21.3593
25.2095
57.4815
27.3979
29.5814
37.355
88.8864
33.285
20.0498
23.0352
23.5448
14.6462
12.7634
15.2344
19.0011
17.9638
17.157
16.5853
18.8579
17.1169
12.713
16.0911
15.1836
25.0849
73.7403
67.5884
30.5364
22.9031
8.53225
12.3949
12.3531
19.3064
21.7687
41.0507
18.1521
17.4033
20.7188
40.5429
40.3447
17.4035
8.21011
35.6549
11.8879
11.9132
15.3454
16.323
15.5345
15.7827
16.5966
15.7704
23.4925
43.7634
23.8169
21.9461
21.5724
23.8616
20.5253
20.0113
21.0126
44.2655
23.2181
27.5838
17.0966
22.3764
18.0043
20.9844
15.4017
18.7294
20.4572
13.3486
21.8056
20.7873
20.4444
15.7926
19.5048
19.052
19.7432
15.7802
19.1636
20.5615
20.8639
20.2198
39.8847
19.6136
19.5115
19.6594
19.9029
19.8839
19.8221
19.6964
19.8256
19.7518
19.55
19.758
19.7161
10.7209
8.0602
10.5592
14.3814
12.3429
12.5653
12.8846
14.5266
12.6854
7.98951
10.2627
10.4693
25.9077
73.27
15.207
17.9444
19.2687
15.7082
72.0211
24.3028
16.36
18.6421
18.9049
21.3884
16.0681
17.4936
20.5548
22.3461
13.425
15.5122
9.78216
12.3318
11.729
10.191
15.2789
13.9777
19.1692
17.5935
30.1009
24.9125
21.3709
27.8034
17.5158
20.6417
7.76431
11.1663
11.3193
14.6963
15.6912
15.1028
14.5667
15.0671
14.8341
7.50983
32.1551
10.9469
10.9536
14.2365
14.1471
14.2159
14.2341
14.1324
14.2124
17.2911
18.8403
16.8747
9.9253
11.1629
14.0274
8.89232
13.1019
17.2722
13.9942
15.1215
164.216
8.00522
19.1332
16.4599
18.5557
35.2681
17.3006
16.692
16.575
21.8215
152.615
17.5379
19.7549
18.1549
20.0783
37.2788
16.6193
16.8883
19.2399
20.974
16.7006
17.5374
17.2355
18.735
16.7034
17.1431
17.457
17.884
16.6301
17.001
17.6977
17.9896
16.9392
17.1451
18.0221
18.2887
17.1635
17.5849
17.6935
18.1537
14.4694
16.184
18.4028
19.24
15.0109
17.0841
17.3058
18.5617
11.113
12.2983
6.52707
8.43009
9.17259
6.68293
12.0693
10.3352
15.8921
13.9766
17.3391
16.1801
17.0199
17.6243
13.7236
15.0452
9.59088
11.3393
11.8899
13.0574
9.44338
10.7481
12.4935
13.2386
6.2245
8.52068
186.478
42.891
5.04451
9.0436
6.82355
11.5338
10.3779
14.1598
12.9512
12.6448
13.9078
10.8071
11.835
6.81091
28.9894
9.97474
9.94278
13.4683
13.0491
13.1345
12.8715
12.7301
12.8278
6.68778
27.2395
9.79902
9.77219
12.664
12.5453
12.6373
12.7161
12.5559
12.654
19.8441
14.6687
14.8035
14.9183
16.672
15.1056
14.6558
16.531
29.9024
15.6535
36.0991
128.644
18.5279
17.3947
13.6691
14.0297
15.5023
14.306
13.847
14.3558
16.3945
14.1068
14.9092
15.0928
13.7592
11.8162
14.379
14.4941
14.8535
12.777
13.3843
13.5986
15.0505
13.863
12.9932
12.4845
14.9651
14.1628
14.3071
13.9441
14.2981
15.0492
14.3633
13.5716
15.0552
14.9315
15.36
15.5732
14.6152
14.9739
15.0651
14.6633
15.5684
15.3228
15.5055
15.7862
15.4242
15.5894
15.3707
15.3602
15.8732
15.7484
15.7405
15.8534
16.0429
16.1019
15.7487
15.9189
15.9494
16.062
8.51677
9.65146
11.3887
11.9543
8.11343
10.2218
10.8679
12.2458
45.9085
5.57343
45.1942
5.5047
9.21402
7.28703
11.0785
10.0127
10.4466
11.2067
7.19767
8.81489
43.3977
5.25334
6.18347
7.83281
40.0434
4.80391
6.75009
7.99257
12.0919
15.5
11.7415
15.9061
43.9377
5.32071
8.4882
7.55589
6.83261
8.27625
5.94642
56.2547
6.36228
9.18965
9.31112
12.3789
12.1945
12.3218
11.8456
11.8471
11.9951
11.2152
22.1006
22.4392
5.77784
5.6751
10.3457
10.3776
10.3797
11.3372
10.97
10.9339
14.1969
13.3533
13.0677
9.44138
14.49
14.064
11.0496
8.17218
13.4205
13.7604
12.3084
12.5595
13.0421
13.1014
13.1033
12.8101
12.8332
13.5863
5.5413
7.24247
10.4585
6.46513
12.7682
10.2374
19.9232
7.798
6.4067
7.98411
8.39946
8.19167
7.88134
6.54185
8.21764
18.9588
4.28187
19.296
4.35934
13.4021
13.5112
13.5065
13.3625
13.9335
13.7918
13.9074
13.8127
13.2253
13.4716
13.2854
13.4439
52.3017
15.0604
16.2277
43.3659
5.62969
7.4052
4.22124
5.11598
6.8771
9.42292
11.0871
9.53026
10.9412
40.592
14.6952
41.567
14.4745
5.80147
4.09491
4.96765
6.11324
8.83679
8.19083
8.10017
8.93619
6.95718
7.57999
6.87088
7.67138
9.12566
8.26943
9.02195
8.36551
22.1022
5.53922
5.67251
10.343
10.4119
10.4147
10.6841
11.3112
11.1044
8.64767
10.0432
10.0772
9.22668
9.5628
9.09786
9.25446
9.72283
9.22664
12.0911
11.2559
19.2918
9.49897
18.5567
4.11499
17.6655
5.97309
3.81299
6.05436
6.61919
8.56258
9.59577
8.5349
9.41262
9.3969
8.68374
9.14996
9.01772
8.92854
8.89861
8.59342
9.2004
9.69249
9.18532
9.44761
9.45782
11.5458
11.4991
11.4511
11.595
11.4031
11.4608
11.3758
11.4896
11.6691
11.5402
11.6378
11.5704
8.32365
7.49668
7.62481
8.18703
5.86335
6.66289
5.99749
6.53857
7.88962
7.3108
8.00196
7.19361
5.65277
5.1924
5.09442
5.75127
4.28771
4.76309
4.22354
4.83276
5.93244
5.30465
5.8529
5.37773
8.96322
9.30754
8.85699
8.74615
8.99572
8.57721
6.85479
7.00087
7.02592
8.39768
16.9619
8.28624
8.18968
16.8005
8.21268
6.15633
7.5171
6.19729
6.46533
7.71948
6.37349
7.28163
6.67171
6.89158
7.06535
5.55997
6.10522
5.67409
5.99039
6.80092
6.5212
6.91626
6.40523
4.93137
4.64859
4.58207
4.99674
4.04512
4.35442
3.9904
4.40958
5.11221
4.71175
5.05816
4.76688
8.84125
9.4124
9.03423
17.7691
19.5159
4.41943
5.2982
4.72099
4.77398
5.23903
3.50981
4.13985
3.64319
4.00603
5.02723
4.64383
5.15729
4.51001
3.79195
3.46921
3.31422
3.95034
2.75316
3.11796
2.65242
3.22862
4.18475
3.57301
4.05891
3.69175
5.69328
6.7973
5.60406
6.05893
7.04922
5.87461
5.52117
5.40193
5.40436
5.62573
6.51518
5.55369
5.53387
6.49406
5.53423
3.36929
13.9212
4.9768
3.3639
13.5123
3.40352
13.562
5.03223
3.39162
13.5197
3.99444
3.62119
3.68018
3.93276
3.19088
3.2702
2.94105
3.51859
4.12709
3.59713
3.89863
3.84128
1.51367
2.13892
2.09367
1.56203
8.60948
10.5806
2.16084
2.23458
2.11906
2.30902
1.8395
2.07849
1.60821
2.24421
7.72221
7.87793
7.61336
7.21769
7.13477
7.25269
7.62056
7.06204
7.20617
3.42729
2.84697
2.98187
3.2793
1.72281
2.31306
1.85495
2.16949
13.9242
3.01454
2.74098
3.16435
2.59637
1.41873
1.29646
1.14758
1.64628
13.647
2.73301
4.08756
3.94767
13.1951
1.79217
1.36057
1.74455
1.39386
231.645
729.43
52.91
639.848
78.3005
1082.77
140.707
282.763
316.97
110.937
601.044
101.56
420.791
72.9619
78.5172
125.791
758.571
33.1241
87.2285
28.9976
48.4354
68.4417
32.5765
107.31
103.015
44.0655
51.2512
69.3917
63.6826
61.7314
59.6108
54.5388
112.549
88.8724
100.97
105.055
67.9736
117.53
99.6084
142.307
119.751
679.022
258.125
950.881
129.962
328.996
61.226
164.246
170.166
135.24
343.939
92.7573
87.7667
88.236
71.1123
70.7675
70.4301
61.0418
70.3027
69.268
60.7016
70.3393
59.7942
163.879
1028.59
291.4
108.2
125.201
165.091
72.5366
892.974
278.343
983.979
102.245
57.1854
59.6463
44.8568
28.0073
44.6307
38.4236
27.656
43.7279
27.0928
43.6837
27.0311
143.492
18.3107
129.79
19.1338
33.491
152.743
25.7633
104.697
155.072
180.33
66.9048
16.1576
110.742
13.2076
205.87
31.8982
190.531
699.955
21.1495
37.5648
49.5935
50.4721
86.1213
207.996
200.994
76.2211
141.263
125.534
40.197
76.6475
143.877
173.937
133.657
67.1805
130.16
104.79
28.3403
25.0306
124.487
15.4736
30.5613
14.407
124.085
19.5569
50.3659
50.7255
37.0565
209.432
11.238
60.0282
26.9011
27.161
27.635
27.9661
34.4871
20.1523
12.5655
10.7754
7.40461
28.503
27.8642
28.4927
63.3681
3.29491
51.215
4.03921
3.5208
170.808
20.1012
19.722
43.0474
181.852
40.2043
44.9091
20.7958
41.7018
21.4068
543.963
22.4841
15.9937
74.3781
23.5792
47.3448
25.2024
42.0513
40.9529
42.7429
20.2401
54.0972
4.30468
53.509
4.34686
31.7253
25.2819
26.0913
10.6153
12.0848
13.5516
11.6871
43.6823
3.97913
49.7293
3.86767
29.1175
73.4896
7.14047
18.4286
52.69
6.01157
3.34188
28.6601
25.3064
3.401
156.114
43.935
3.78015
4.01394
3.2554
37.8601
23.3345
23.7214
7.18129
18.3289
25.971
54.0873
3.07188
3.81092
3.89962
3.20271
132.405
33.3095
17.3856
32.9931
138.662
32.1419
17.2462
32.656
40.6773
137.363
16.1542
15.47
36.1788
149.998
51.408
565.267
18.2081
18.9188
198.355
81.7982
18.0702
36.9677
17.9346
37.5492
3.49488
41.5011
3.72118
3.84322
42.8551
3.84418
3.02936
2.87833
3.77222
3.74853
5.49034
5.87825
3.01166
2.97161
5.65139
3.48643
3.46718
5.8242
18.146
36.3625
17.9101
41.6
25.6156
2.51556
25.985
2.5483
2.63243
28.0592
2.61735
2.62471
27.4919
2.59728
4.46961
4.2522
0.558502
0.493175
2.7811
2.63586
2.86706
0.591449
0.653419
2.83064
2.44516
25.5368
25.6851
2.50879
22.9411
14.1058
14.4531
24.2892
15.5574
15.152
128.327
13.9559
14.7277
124.066
34.9214
124.704
129.164
35.3159
132.578
139.626
16.5693
16.0941
489.225
40.7726
37.7536
37.9378
76.9093
72.3379
93.1136
291.612
65.5048
93.0467
285.934
20.5921
1.66117
20.3791
2.58151
28.3615
2.5788
2.5042
28.1798
2.5162
4.22762
4.18351
0.703983
0.797546
3.30855
4.42933
3.37064
3.56785
2.47276
1.08239
1.78177
4.09404
2.42769
23.7165
2.54291
25.8599
26.5795
6.4395
5.60394
6.89349
6.69741
7.82958
4.85789
5.97611
4.30147
4.16936
89.197
30.5873
17.4264
12.7211
59.9503
24.6102
19.8602
13.7281
32.4223
22.8558
15.876
34.1895
21.3982
15.6101
31.4188
34.4336
43.9778
289.892
39.4261
24.2224
32.2058
71.0544
40.4008
34.511
29.5131
39.8113
35.6061
28.8323
33.3339
37.7016
31.1662
31.1823
37.7459
68.8435
91.2732
292.358
44.4377
70.1213
16.2383
284.571
16.1808
21.416
43.5611
32.4806
34.5778
39.7199
19.7409
36.7516
36.2988
28.8002
21.684
33.0475
24.3119
4.53455
1.8197
4.09936
1.21575
3.93061
3.64603
3.85164
2.47233
1.15661
0.426485
1.38905
0.607369
0.295631
5.79749
8.06965
0.397563
0.932254
0.159669
0.954465
0.299714
0.184365
0.237554
1.94288
1.77652
1.77342
0.907504
0.149859
0.898907
115.053
0.431903
0.15561
0.126663
0.21099
1.60651
32.82
23.6863
23.9835
36.7195
18.0637
14.0507
68.0881
9.16947
17.5617
12.6231
10.1964
76.3511
18.6591
14.1219
78.2781
10.3124
18.7927
14.3397
10.224
76.8587
284.758
40.0365
69.1005
28.1042
24.4792
16.5344
30.6922
26.254
24.7851
33.9863
37.0361
75.1121
39.0236
68.9128
66.6848
36.1213
33.3712
42.6146
30.4586
28.8963
23.7957
23.0703
29.7899
33.6773
26.4454
26.8929
17.2302
282.718
18.9241
14.9298
27.0831
26.7383
25.4623
28.5634
27.2976
29.1962
28.5267
27.2646
54.8195
12.5527
15.0347
224.272
15.3946
23.1815
21.7503
17.0075
73.9453
242.263
62.7795
25.8819
26.4483
26.3942
25.9957
24.4432
17.9167
20.4815
22.2278
1.34801
0.398017
1.6396
0.364738
5.6013
1.57627
1.7493
1.74918
58.6032
0.566143
3.04362
1.05697
34.4054
2.04123
0.405137
0.113145
0.79914
0.105889
0.585275
0.575769
0.660894
0.55744
0.320372
0.369584
12.5601
9.41238
18.8739
16.301
15.2506
17.9379
10.2737
13.7081
22.2489
23.0522
60.3263
280.248
6.78445
38.2617
66.601
7.66269
198.882
11.5044
17.7026
14.0133
15.85
27.404
46.0636
53.2246
29.6796
10.0804
23.6025
46.5237
26.4816
22.3051
24.9223
22.3355
19.165
19.8519
16.9613
21.5328
16.6682
14.8866
19.7511
11.7188
19.8957
19.6537
20.0507
19.4745
16.0908
10.3628
171.999
12.3695
14.623
20.3462
19.4923
18.1217
21.0268
18.2697
18.8436
18.5117
18.1582
1.27828
1.09957
1.05211
0.422268
0.356677
0.282007
0.305782
0.359052
0.309228
0.224253
0.34015
1.16278
1.24134
1.00636
0.502576
6.04119
0.553341
31.0933
14.3791
20.4814
15.4169
7.71993
6.30254
8.07338
9.12424
11.3541
11.2017
9.22358
9.42335
11.5439
11.8084
9.32047
14.6814
14.9073
14.121
15.169
9.61463
7.54001
11.4329
16.6442
17.0145
17.2325
16.5152
16.7119
14.3401
16.361
13.8751
13.1667
13.5663
15.014
14.4064
14.2593
13.6523
16.2488
16.1251
0.780389
0.828407
0.228026
0.160376
0.141667
0.733811
0.691177
19.0738
10.8247
10.0924
8.65375
9.94674
8.76834
5.34289
7.19431
7.09492
5.42832
34.6516
5.59133
7.27762
7.37379
5.50411
11.2464
10.7817
10.5421
9.39271
8.73139
9.54697
11.0167
10.1595
10.3068
10.0319
8.97961
9.79066
4.28725
5.01332
5.87507
8.75702
7.59144
7.84804
5.4206
8.24879
7.11431
6.03905
6.66048
6.73723
12.7492
26.9042
15.4476
15.9156
11.8505
12.0902
115.635
30.8243
27.0774
88.07
12.9441
21.4899
11.3948
1.59258
1.10184
9.75918
3.02978
0.303066
0.100665
6.2995
4.96147
5.98009
5.27961
3.45942
4.23613
2.40958
38.7904
15.37
22.5314
134.483
2.89401
3.72763
4.01776
2.68267
27.1698
11.065
11.4072
11.875
11.5495
11.782
12.8246
10.1142
11.0237
10.237
11.823
22.0446
85.5329
12.1477
11.4881
12.9825
22.0634
10.9723
9.08663
9.27254
8.09472
9.5187
9.68439
8.83418
11.2966
6.51025
5.79239
7.54797
7.1771
7.06712
7.44523
5.87037
6.6213
5.71369
5.24224
4.01773
3.64944
5.39021
4.58883
4.67448
3.97769
5.18546
4.68326
4.3536
3.65024
5.24911
4.91777
4.06297
3.40209
3.96435
0.592698
0.518381
2.84794
0.499611
0.337873
0.144427
0.118266
0.0965642
1.25089
0.137666
0.230593
3.24679
2.36697
3.2007
2.40524
5.67846
3.7868
5.74779
6.29468
4.00949
6.06005
6.66443
5.60159
6.57268
6.0338
7.19973
7.00497
5.23743
5.51229
5.0901
5.42904
3.84983
3.13462
4.86296
4.41598
4.8671
3.33242
5.02856
4.97875
3.28725
2.98558
4.67319
3.84598
4.38732
3.29302
15.712
14.1962
8.83148
58.4809
1.44479
1.6077
49.2868
12.9022
1.24209
11.6848
45.0271
0.512563
1.57603
0.936247
54.4199
1.53901
1.26017
2.29724
1.50764
1.7844
2.59135
1.42673
1.90368
0.0906349
18.9664
17.9986
2.14663
1.67644
2.17032
2.59874
2.03281
2.57613
1.85483
1.62262
6.39599
1.6991
1.53289
7.55892
1.95943
21.4069
1.73484
2.68644
2.79907
2.34813
2.80306
1.80989
1.52207
1.81492
1.36073
11.4646
47.5224
7.17279
5.478
4.41828
20.3829
15.1701
12.3279
16.3662
25.9832
13.4649
5.97849
12.505
4.89759
8.77328
7.31514
9.12596
10.5831
23.4085
11.575
13.3802
6.35886
13.9669
11.4513
13.3045
13.1895
6.82185
9.75444
6.9464
6.73012
10.758
5.55734
13.1889
9.20178
27.3188
18.0064
9.47173
6.6845
6.24343
27.1875
14.0808
64.4893
11.286
11.7191
10.4307
9.14318
9.22436
7.97046
11.6661
6.6583
12.3019
11.8315
9.80228
6.48676
13.4289
13.2548
6.39523
7.40913
6.62237
5.74451
4.9809
4.74114
11.3955
11.4669
9.47432
6.8279
9.23887
12.6579
7.24709
4.87243
4.85924
6.71719
6.29866
20.5312
15.7305
2.81752
2.75839
3.03491
146.93
20.0781
12.245
12.1313
69.8207
27.0724
17.7198
35.001
29.6851
11.3803
18.8359
23.6273
13.5911
10.5015
55.2625
11.6609
38.0269
22.2056
97.8115
61.9288
10.4062
34.4806
142.249
19.7677
40.2411
153.987
145.47
26.2313
87.0443
14.052
66.6835
17.5983
12.3964
49.5072
13.7707
17.6002
202.48
27.1684
55.2788
40.2412
66.5416
78.4706
69.4232
14.9763
31.493
17.1911
159.015
52.4178
26.1075
12.5332
83.4973
15.6197
216.191
40.091
14.949
46.0602
168.475
16.3019
12.2302
48.8763
217.11
152.122
25.398
50.2447
88.5902
81.3591
24.0229
13.2155
6.78532
18.0019
16.2944
8.84265
63.8731
23.8893
8.16224
9.72566
10.4493
28.5036
12.1769
24.9865
13.7841
6.42503
21.997
62.2825
33.7957
17.9237
9.88699
21.6315
29.5143
50.2115
8.28337
10.5417
17.2823
7.68029
17.3458
59.108
10.5625
25.4748
15.4575
20.3747
6.59084
8.79583
52.4437
7.83682
59.6376
7.83512
21.3284
30.9723
16.8434
17.3933
18.5736
17.5881
23.1326
58.2377
7.79384
31.5563
10.7328
18.4028
21.7481
86.1745
26.367
10.6125
32.2731
8.87074
90.3111
13.4588
9.98183
19.1962
35.2962
11.0524
34.3651
11.1605
12.9414
10.8663
42.4833
8.29586
10.3585
9.44874
18.465
25.5025
22.2573
7.33479
65.4766
11.6282
26.2364
8.4812
30.0755
8.31253
8.90111
23.0264
76.2651
26.6474
33.7595
11.619
10.7555
11.4842
11.1075
15.678
28.3024
6.47965
9.65772
33.2918
10.0245
30.672
7.10805
72.1612
10.0426
7.83314
12.7757
23.5157
26.0328
9.45369
20.3698
28.6182
29.9095
10.3602
9.9897
10.0056
8.16574
34.353
10.9823
36.2535
9.79245
11.0015
10.9071
31.6275
10.2043
32.6949
33.4821
10.1709
32.9428
35.0726
30.6068
7.6124
98.1552
23.2714
22.7483
23.9254
22.7626
22.9024
26.3233
24.9308
22.5976
29.7461
28.3694
27.9304
29.9576
46.5496
136.093
109.411
5.18008
54.1431
37.9684
11.242
13.1404
10.4062
14.9107
7.23053
8.11876
24.1806
22.0295
6.47624
19.868
24.4916
48.4276
11.2103
6.37341
6.02879
5.40962
19.4658
14.3612
83.2593
10.1438
6.23541
11.2434
9.5283
32.7593
19.9057
24.3817
23.2946
9.17726
9.94161
34.3429
7.93631
8.11427
13.7891
15.8997
18.7094
16.1579
43.3025
28.1797
40.5753
16.1909
35.7771
15.4484
28.4116
7.90614
21.4442
19.0073
21.3688
19.8503
24.2379
34.7536
22.8874
49.6742
14.0482
12.2643
18.0306
17.7722
12.1777
15.8016
25.0116
7.10078
16.8444
14.0554
7.21922
21.5173
34.3955
6.78654
8.19867
9.43745
75.1801
11.6349
27.8638
7.34248
100.059
4.82495
18.4989
17.8038
7.04678
14.8012
16.1178
9.64902
90.2088
31.4195
8.04658
41.9642
17.9948
24.9685
8.8114
18.6672
25.1101
22.9624
123.873
29.7472
32.5401
27.5066
29.07
16.8314
20.0016
22.2926
24.0338
22.6346
23.6388
9.67616
9.71138
110.46
38.6553
39.3117
31.3255
8.07359
8.25708
8.35646
9.00347
42.2624
39.8031
24.3951
28.5444
27.1583
21.1462
22.0011
21.5563
22.7117
20.9564
21.2078
22.8012
23.3694
21.5582
20.7514
19.8954
19.3346
22.2524
21.0381
20.2408
19.5493
25.7356
22.4426
46.1546
26.1284
43.6948
71.7115
22.6679
23.9057
7.77605
38.1816
32.7886
9.40973
29.4837
14.1738
32.4892
14.202
15.4636
14.3808
12.5401
12.0999
13.278
13.2782
12.6369
13.4591
15.1748
12.794
14.1368
18.7543
16.4537
18.9444
24.2436
45.6999
23.7628
20.5652
21.45
20.9309
17.0506
37.7896
20.7928
5.62606
8.45389
92.3132
15.1859
14.513
8.0603
15.4615
7.58711
12.6137
7.31166
6.53647
11.4642
6.71956
8.339
9.20742
6.13381
9.30261
6.37687
29.3032
43.1758
22.5309
106.071
9.31548
16.2867
9.17102
16.4264
40.885
38.1788
8.35904
34.4607
10.5751
20.077
14.9878
26.2569
8.15418
15.7104
8.82772
14.4541
34.6364
37.8363
39.7058
8.82432
16.5718
40.2776
41.9939
9.11587
15.9962
39.4144
28.087
37.0113
134.671
49.6283
9.32345
9.85763
14.0234
14.9676
12.5215
12.875
12.3304
28.4224
13.2633
12.649
14.8433
13.5803
15.0329
23.3754
67.4856
10.0871
27.5739
14.1376
21.3463
20.7158
16.7269
20.1589
18.9505
24.3524
21.5277
16.3065
17.5655
18.8294
22.148
16.7954
5.68584
7.93867
13.2257
5.49389
10.5996
21.029
11.352
14.1718
22.4368
22.9944
22.3111
23.3668
26.9121
22.6941
21.8134
21.4348
21.7622
23.0216
24.8822
22.6393
159.42
14.4519
34.8014
14.8601
33.3633
8.02065
13.4827
36.0741
8.46539
14.8988
21.5253
15.2051
36.1504
15.0231
36.5966
7.0167
12.8008
16.9
41.5152
48.1921
9.4203
19.9301
42.8913
18.4517
18.2973
18.2034
18.6005
19.8228
19.5947
19.2246
18.9579
19.1334
18.9515
19.7255
19.1791
16.7044
23.0125
18.9752
19.733
109.549
27.8699
11.7337
11.1403
12.3082
9.04208
8.6266
9.49042
31.3194
9.70784
15.8663
34.9496
34.2622
14.9349
11.3921
7.36066
33.0322
12.233
11.6619
6.71368
10.8299
7.34913
35.9886
12.3681
19.0755
7.99933
7.5224
32.9879
19.3142
13.3403
37.3865
35.4825
8.70392
8.7162
14.4613
20.4144
13.8811
9.07879
8.77147
13.7819
20.1507
13.7825
11.1191
15.7276
6.79003
31.6896
14.9407
8.51998
40.8921
41.6174
15.5078
16.551
15.5329
10.0095
9.2578
135.098
11.0667
12.264
11.308
12.2023
16.6565
14.9418
15.4039
56.3694
22.3804
38.2407
4.84577
59.8476
134.038
8.68719
5.09863
6.57896
20.1477
20.9665
21.1167
18.3542
36.7999
43.8128
8.49268
12.2702
6.88926
34.3353
14.4156
8.22596
13.5313
12.9285
16.1871
36.6718
17.598
7.45881
10.2158
11.8825
19.6642
39.0959
18.9116
18.9005
8.09297
12.8418
12.8129
8.07975
18.9213
120.944
8.73195
42.2159
13.9973
13.4375
11.7149
16.6243
15.7065
14.9573
7.6382
13.6611
14.3729
12.8752
17.2761
15.6182
30.1218
15.1124
31.5481
6.04979
9.47354
9.27353
12.2416
11.793
12.8757
14.0622
26.3524
19.2607
15.1665
12.1874
12.8911
6.65867
9.64785
13.0321
11.9349
9.85794
6.94355
15.7356
15.1066
13.8175
13.319
18.9756
15.2025
14.4509
13.6731
13.5988
18.4713
7.24163
11.2988
19.531
130.991
33.5327
18.7498
22.175
29.9856
51.0069
8.72281
13.154
8.60739
13.0416
8.34554
8.543
253.419
63.1426
19.4392
39.6201
39.7344
8.88147
19.8564
8.80774
18.4997
37.6253
38.5404
40.651
18.8283
17.9362
20.3603
20.2641
25.0948
34.1733
38.6939
36.0294
16.4167
16.9898
18.0354
17.8907
17.5979
17.8039
36.0608
17.5322
17.3809
18.9389
18.0231
17.2875
17.4825
12.4477
17.7995
12.5916
8.66584
8.43062
8.22738
8.30429
18.0198
12.9857
12.7486
31.2997
143.271
9.2823
22.564
10.0525
16.3338
16.9636
17.2457
17.5149
38.6269
17.4133
17.4461
37.3795
17.7395
17.5852
18.5439
17.8207
17.5272
17.5306
31.4335
36.6458
251.787
93.0033
56.559
39.5891
35.7429
81.0665
33.1952
7.06555
7.50009
13.6948
11.2958
10.9811
10.3761
13.3695
10.6102
7.98504
7.77452
19.2407
39.7748
16.5632
18.3881
17.2628
40.7622
14.3043
13.7143
13.5492
14.3744
14.8509
15.3952
15.498
14.6284
13.4603
16.7791
18.5643
18.0571
13.3457
17.6374
22.1464
31.9325
15.9786
15.8943
15.9099
15.9379
16.3513
17.1185
16.4484
17.034
16.1718
20.0365
39.0519
16.0856
20.1197
14.3465
13.7566
13.7398
14.38
14.941
15.5423
15.5293
14.9496
16.2801
16.0312
16.0503
16.3198
16.5557
17.1691
16.5192
17.1845
7.70034
12.3384
15.1535
14.0152
14.067
158.893
10.5437
15.302
13.5115
12.3994
6.83635
16.8551
34.2976
32.3321
29.1684
16.4392
7.61896
15.5153
19.4241
38.6063
15.5086
19.3799
38.157
25.3131
18.4895
21.3227
20.3725
16.1866
15.9781
16.389
15.4458
16.4855
16.8029
15.5749
17.2647
15.5165
16.7335
12.894
10.2993
8.8228
10.2157
14.8852
11.0888
69.0405
73.0784
72.5486
20.6583
30.513
19.8234
19.363
17.4034
17.387
19.502
20.4063
18.8237
19.9394
17.5296
17.2639
13.3952
10.5859
11.0574
12.954
13.6021
15.63
14.6153
15.4632
9.66675
12.591
9.08603
12.3696
7.15946
7.50085
7.20966
13.553
11.0929
11.065
13.5786
9.00247
11.0134
7.47055
39.4412
124.229
12.653
15.5807
17.3458
16.2085
16.8324
16.485
16.2856
15.0676
15.6236
15.6062
17.9226
16.2844
16.6497
16.3979
15.1204
14.3151
18.587
34.9176
11.1819
13.6975
11.2649
13.62
7.76517
7.68293
33.8105
14.8626
12.5813
13.1848
14.5482
87.2302
25.68
44.4823
8.04464
8.1145
34.7258
21.353
35.203
36.9922
24.5415
20.2118
76.253
61.4432
19.349
110.168
13.281
17.1141
14.9943
14.9041
12.5654
11.8797
11.8072
12.6271
18.558
18.2329
22.718
18.0478
42.0779
11.4674
14.914
7.37784
10.121
10.0393
7.41919
43.5526
21.8878
13.4725
17.3181
16.3939
14.5778
15.4264
8.40853
11.3616
10.8395
9.28034
165.6
12.8247
8.74535
14.1043
13.8919
13.9483
8.97732
15.2379
15.5603
12.9344
14.9623
12.9501
14.9123
12.5366
11.8655
12.5868
11.8565
28.5016
36.6742
14.7561
17.9654
16.9006
29.3012
15.6377
15.3024
38.9365
9.73337
14.5704
7.40277
10.1131
7.40699
10.1075
13.9586
9.64203
15.0183
16.3219
7.86703
7.86043
10.7922
9.08348
10.2189
9.365
9.29389
9.72319
9.25057
9.52235
10.1969
8.08993
8.24652
8.80635
9.00047
9.18208
9.32533
9.3422
9.34412
9.14331
9.38325
9.31299
8.66006
8.67169
8.77927
8.91263
13.1909
16.5176
12.8287
22.6501
18.6994
23.6826
18.0921
8.91357
23.5117
24.9825
28.8942
28.6274
25.3078
28.5516
39.7272
42.8971
23.1668
21.2184
47.4078
44.8955
31.2091
45.2616
23.3245
23.2546
47.728
47.3968
7.55608
8.25969
7.99826
8.59326
8.37286
8.16805
8.40153
8.33892
8.14899
8.40996
8.3536
7.98415
7.95643
7.26028
7.50415
7.64509
8.30593
8.11013
7.89045
7.62492
7.9963
7.77296
7.99917
4.85769
7.92052
4.25084
4.5757
39.3124
37.9101
30.3797
37.2548
27.4941
25.6965
28.1533
25.6928
33.4103
6.29137
6.66714
6.71497
7.45348
9.63152
6.98153
6.81511
9.09101
6.93516
6.22018
7.18599
7.43221
7.90719
12.267
8.83996
8.53598
11.5855
8.78602
183.246
13.2155
27.6844
14.722
23.8221
397.97
107.539
71.6852
205.044
15.2712
57.738
119.416
447.617
47.6539
37.2186
40.9069
24.3036
59.7987
28.3543
25.9384
16.9573
40.4662
174.121
379.939
79.0566
40.9214
170.506
163.533
13.3767
379.813
93.5748
94.5611
50.5086
40.7325
166.738
391.596
15.9717
13.5626
97.4998
94.0579
180.304
379.203
46.7213
75.8438
15.8091
43.7983
15.3812
16.3321
18.2743
28.232
230.778
220.129
35.1848
16.4622
57.2273
26.8976
15.3686
100.639
31.2647
50.861
45.821
25.0638
18.0154
38.8469
34.14
162.311
98.2846
46.2047
94.6868
34.4085
52.4208
181.575
14.2704
32.7811
21.4303
38.8084
29.5385
39.5215
43.7466
16.3337
21.9335
25.7407
15.1466
522.627
15.8404
26.0491
24.1281
19.6922
22.03
13.7897
356.602
28.4843
372.437
58.9162
370.115
165.782
58.4972
47.0296
92.6936
12.7351
383.502
13.1852
18.2887
11.6324
13.0439
41.4112
52.7693
84.8804
12.4395
52.1843
158.179
48.1226
59.261
376.515
58.0973
64.1257
413.797
178.209
169.372
410.944
53.8579
60.9547
13.4321
15.1088
41.7376
34.5361
30.8791
21.3101
34.1944
23.8263
13.3757
24.169
21.3202
106.973
47.4052
53.1254
29.505
182.387
108.341
36.083
29.4861
440.561
47.1909
39.3522
17.7522
14.67
42.5676
26.4374
29.1976
18.2598
46.1134
40.3225
38.0457
13.2081
58.6108
459.525
169.69
15.3594
36.4069
30.2923
32.0976
22.7824
15.2657
167.615
21.2904
35.3158
46.1534
41.0785
37.5337
151.047
11.669
393.933
28.3194
26.153
16.3887
24.4188
12.0978
20.0144
88.234
83.834
50.0526
11.0665
46.3585
53.9305
39.9759
89.031
18.9069
23.648
24.7231
17.9737
27.197
26.0282
31.0373
21.5976
33.618
28.6123
29.5218
32.9201
11.1254
20.5022
15.1222
16.1025
384.155
390.512
84.3754
137.386
49.2867
160.555
37.2367
44.1762
12.1134
29.9856
27.9268
33.9401
18.8701
12.0363
14.6635
14.9261
12.2518
10.5658
12.1667
10.5286
21.6026
20.6539
17.1849
140.666
12.7941
10.0354
84.0836
152.642
425.839
80.409
41.9607
122.156
371.224
356.94
136.468
29.9334
34.6809
27.1049
31.1704
36.4648
34.3147
41.4026
38.7033
42.917
49.8286
79.5769
29.6661
31.445
50.0987
35.3011
16.8378
18.2549
64.9603
16.7753
11.6777
22.8391
22.318
16.0717
14.4163
20.5949
16.3482
24.6217
21.2007
24.8376
22.6529
19.9936
21.0364
93.9736
42.8803
114.854
38.8108
286.574
11.0864
11.0305
12.8971
303.315
11.6732
10.4707
42.9535
32.7601
34.4534
37.461
40.1865
124.119
69.8132
47.8541
33.7567
31.1628
32.8841
31.8032
17.6898
12.163
14.4961
30.9181
31.3611
31.9773
30.5434
30.2842
29.9379
31.6184
28.7234
33.6007
36.5716
42.1289
31.7292
32.5444
31.8757
34.4583
31.0237
26.1961
27.0677
27.2947
25.9016
25.4905
24.3681
26.3396
23.3842
29.9597
33.5945
32.0583
30.6875
28.4102
27.8561
28.0117
28.241
29.6359
31.0112
30.2608
30.4195
27.3984
25.1756
27.01
25.6171
9.57871
13.5096
10.8542
12.1696
261.621
10.5806
15.1236
13.5133
12.0904
16.4873
15.8689
17.5425
14.6664
16.8926
16.9112
15.5036
18.1692
52.4498
27.9688
31.0534
32.4615
36.3917
9.00332
39.2772
68.2195
31.3576
31.8066
30.8932
35.3943
109.629
29.6268
297.613
10.2802
11.083
12.739
8.57655
9.31743
8.86171
11.4598
27.834
26.506
27.0812
27.164
26.9399
28.9141
27.7596
27.6006
24.1332
23.3747
24.0627
23.3837
25.4788
25.5567
25.7988
25.3143
25.634
25.4934
26.0961
25.0278
7.23635
54.8515
228.223
8.77864
44.97
31.6799
8.18297
7.52228
93.7365
9.62556
6.43132
75.9083
69.9364
12.8222
15.1745
14.0777
14.1576
212.756
30.5146
55.5723
32.9917
57.6515
227.203
26.1638
26.4953
31.0061
9.09059
245.695
11.5729
11.0551
9.52837
22.5674
22.7686
22.9661
29.4409
27.8749
25.0308
22.8143
25.4287
23.5676
23.1589
24.6534
23.6486
16.9788
16.1776
16.7957
17.1043
16.7689
16.9263
17.2256
17.2516
17.1047
15.8927
16.4101
16.5693
62.5483
267.42
205.621
17.7168
17.1392
17.4485
17.2011
17.155
17.2935
17.7409
17.4217
17.5464
16.7425
16.984
17.1186
15.7937
15.6153
16.0843
16.7926
17.028
16.7801
15.9348
16.4305
16.3697
16.1012
16.83
16.5296
208.945
157.659
15.651
15.2291
14.9417
14.8159
15.5533
15.1914
14.9234
14.799
16.2828
16.0015
16.496
16.3633
16.44
16.4787
15.9931
16.2101
16.0325
16.2531
16.4783
16.6686
15.8983
16.2153
16.3934
16.6345
17.4885
17.7574
17.6313
18.002
17.3717
17.4045
17.9956
18.1368
17.3333
17.3715
16.8633
16.8208
17.2171
17.0148
17.2467
16.9591
17.391
17.3508
16.9822
17.0321
17.2836
17.0678
17.2415
17.1129
16.7803
16.6836
16.5681
16.5451
16.7248
16.5356
16.5721
16.5018
16.8974
16.658
16.8053
16.5467
16.9915
16.9548
16.47
16.4008
16.8554
16.9527
16.829
16.9817
16.8053
16.7849
17.0331
17.0577
107.195
7.21993
108.654
30.7732
7.06714
9.5164
9.4157
8.88682
100.293
9.04667
11.236
11.2761
9.84006
10.7536
14.4922
14.4246
11.8151
14.2804
12.7686
14.2242
14.7183
14.7797
15.1691
15.2187
14.8242
15.0498
14.9109
15.1199
14.0531
13.9121
13.0675
12.8334
13.9018
13.4494
13.5672
13.0287
14.5871
14.2894
14.5724
14.3819
14.7061
14.6758
14.1506
14.2308
13.601
13.1582
11.0129
10.8125
13.7484
12.6677
12.7848
11.988
13.4023
12.9758
13.2282
12.5753
13.6781
13.5683
12.5843
12.1768
13.8088
13.6946
14.3864
14.4005
13.9711
14.2094
13.9384
14.2665
12.7354
12.7569
12.6824
12.8121
12.7757
12.7776
12.7234
12.8326
12.9429
12.8231
12.8834
12.8796
13.5534
13.4113
13.5097
13.4636
13.0438
13.2409
13.1272
13.1577
13.3028
13.3246
13.3825
13.2428
12.6465
12.6063
12.5465
12.6989
12.4923
12.5511
12.4185
12.6222
12.8079
12.6584
12.7465
12.7266
8.2682
9.3647
7.64517
9.73026
10.2039
9.93165
9.66596
10.3285
10.4845
10.1639
10.3147
10.4268
10.7596
10.566
10.6496
10.6761
10.1021
10.3505
10.182
10.275
10.5381
10.492
10.6047
10.4205
10.1053
10.031
9.98866
10.1543
9.79828
9.91744
9.73658
9.97832
10.253
10.0703
10.1959
10.1295
8.38679
8.31384
8.27427
8.41078
7.53838
7.77172
7.86214
7.53036
7.79925
6.72761
7.37027
7.79306
6.10337
20.7519
7.45065
7.53755
7.59487
7.27027
4.73943
6.85955
5.44069
6.33691
68.8224
9.43268
7.11704
8.14111
6.28474
4.33352
5.75242
5.02376
3.52747
8.4675
19.6916
16.5152
189.342
29.1725
63.7634
27.8751
48.9398
58.6113
165.326
37.1772
29.0863
238.388
89.0006
77.3895
75.8667
48.6572
47.44
170.751
71.8507
34.8275
203.308
221.024
41.5094
37.9542
71.2575
218.992
31.5765
198.388
69.4796
74.512
39.5034
246.233
80.8119
41.2559
255.596
90.844
124.273
112.402
171.215
273.543
101.008
39.4146
913.779
355.916
78.2696
41.2018
98.6298
295.208
760.797
27.6056
258.137
144.408
780.341
112.625
679.387
375.475
119.681
95.319
106.295
418.202
132.801
285.684
49.4189
29.9675
31.9563
239.668
329.681
24.0739
101.551
94.3957
868.196
37.7728
51.3786
220.493
82.8071
236.56
318.864
122.026
758.088
52.4421
318.939
45.165
156.873
178.687
127.997
41.0646
77.9917
234.472
299.904
269.381
33.9033
115.07
118.802
138.26
842.418
93.0257
102.766
72.2113
325.881
128.992
774.286
43.9783
40.0311
26.1964
245.513
38.2527
113.049
293.115
278.108
88.9012
24.9976
49.9867
60.511
284.961
61.08
26.0422
263.782
62.1337
30.4495
26.2769
26.6381
34.5574
74.8184
33.6574
62.9181
32.0245
40.786
91.8139
26.3657
140.729
67.2149
54.3795
117.277
45.0751
101.131
243.825
101.119
55.9953
32.6269
31.5103
100.907
267.984
282.879
100.649
54.8121
38.2926
121.283
289.276
30.852
42.3224
65.9379
42.7245
199.491
40.5937
64.6377
261.421
175.995
78.9408
21.6559
22.1913
71.2307
28.0284
30.5657
37.0127
33.5126
57.4097
128.349
357.778
40.3493
200.182
155.525
30.7155
677.47
161.629
215.622
197.177
35.0419
170.808
186.758
188.735
35.2597
161.934
135.703
38.631
156.736
62.4601
40.4486
187.756
209.789
32.2975
109.586
68.417
680.422
33.5078
44.9716
217.03
281.34
714.005
249.884
47.8586
223.748
165.485
31.0643
172.588
36.0523
44.541
203.196
40.891
214.473
25.3568
680.851
82.3111
171.694
27.9285
31.5298
145.593
30.0303
88.0646
203.721
29.3394
78.4909
212.364
31.9738
232.437
196.381
26.8759
22.555
60.1448
80.6586
29.8986
71.3523
50.9109
36.474
312.895
111.867
32.7848
47.5122
45.2135
73.8051
51.1968
24.4541
20.417
22.0986
79.4498
28.5277
49.7135
98.5429
33.8775
109.919
109.793
43.0547
303.148
61.4262
35.5305
22.5465
42.9552
24.9075
57.6635
20.3214
33.8463
26.1028
34.4175
23.4028
90.9562
113.51
62.1579
328.242
119.258
356.079
56.7643
32.0883
107.868
27.7501
24.0239
305.748
139.987
49.7225
365.177
34.0578
70.5203
47.0627
131.825
44.745
26.4116
380.635
144.947
30.9852
188.164
39.7477
151.018
716.049
26.686
202.119
30.6573
56.9756
22.7602
175.737
22.142
40.4548
22.9057
46.9407
48.2938
22.5546
152.749
26.1164
25.7669
141.57
25.2119
25.4672
153.946
158.029
136.407
28.7052
122.094
135.332
28.4646
147.451
146.046
23.7249
24.294
24.9701
24.6642
131.196
129.074
131.073
27.2926
130.031
27.5779
139.124
140.943
36.0248
99.056
62.118
51.7283
23.0139
29.2136
39.5959
31.9486
22.948
27.1698
23.0827
20.3094
160.186
36.0912
157.443
20.4872
153.505
35.6773
23.6406
82.4717
28.0915
46.8626
17.4444
17.708
33.6998
128.307
31.9244
140.161
19.2365
136.777
145.231
18.6561
19.4607
8.09984
19.1834
93.3056
21.6091
101.683
22.168
105.654
20.2087
99.4928
20.5224
97.9052
103.314
87.4337
19.2586
18.2754
38.032
17.9491
17.7791
35.9813
16.6504
156.586
161.92
16.4896
34.5331
18.9779
90.7769
18.8175
91.662
95.7345
94.8612
36.1093
17.099
17.257
37.1717
102.091
24.4573
26.8749
17.0621
16.7096
113.906
30.6982
29.9153
13.9806
14.7648
17.2483
26.1965
27.2713
16.9168
119.709
121.67
21.1283
40.5862
23.8085
36.6547
144.542
137.164
15.1608
81.5321
31.016
28.5676
100.836
15.7438
16.778
16.5736
27.1727
120.354
121.407
14.5783
77.0485
42.9056
23.4802
26.4188
46.201
13.8761
73.9675
117.665
27.8756
25.8174
139.798
29.9012
15.9679
17.4653
30.5764
14.1695
15.0801
25.9828
115.305
113.721
44.1401
38.4189
22.7614
18.4733
35.6536
13.4861
71.9035
12.7488
13.0445
117.388
119.094
110.35
18.45
29.8123
31.3878
18.6882
128.788
111.324
34.1867
19.7753
31.675
19.3782
80.8121
18.2544
19.2637
72.4657
19.811
12.6653
10.1628
18.599
9.12879
7.99413
18.2884
48.5598
412.666
70.8883
27.0464
16.2133
47.5889
13.9084
13.3872
125.398
14.7591
19.9505
10.9895
10.8358
20.1909
11.919
84.1588
12.0332
12.8102
25.3646
23.175
89.0071
92.9693
20.6754
11.0376
20.2976
11.2355
12.6568
86.9769
12.3686
58.5975
128.387
86.8823
19.122
24.177
9.18345
12.2449
14.4094
9.75331
23.5471
16.7393
27.3694
19.4589
15.4003
10.3781
29.7132
21.1668
14.5956
10.1909
13.9885
8.74304
8.80198
13.8752
8.79259
60.2288
15.8753
16.071
13.5552
8.64795
13.705
8.56752
9.88833
10.2431
8.11881
56.4576
14.7628
59.6361
13.8834
11.6101
10.841
14.7607
17.6299
22.9396
30.2934
14.9715
18.5538
21.3108
29.4551
8.25256
10.9883
55.2639
10.3936
6.83076
11.5517
8.35795
67.832
11.7199
8.71186
6.70505
5.86531
68.3762
16.0774
258.64
73.8031
7.57691
8.3144
84.1657
57.3585
57.7419
12.4435
50.4662
51.0493
6.64919
6.51944
60.3519
7.37874
60.487
9.99326
12.421
7.53095
61.1618
9.77131
12.3179
13.5088
19.2965
18.9335
13.7293
14.0211
19.4752
19.6327
13.8708
13.9566
50.0621
13.5772
4.78552
23.7352
15.4427
182.066
48.9146
12.3615
13.5707
11.3664
43.4341
11.4262
4.88426
8.27262
8.54725
34.8478
44.8614
12.2658
11.927
13.5449
10.905
13.0772
11.4185
51.921
51.2234
51.257
6.50777
8.64648
8.40499
6.71575
44.1457
7.88885
9.15539
9.74952
7.20659
7.29329
11.1199
7.19747
3.17471
6.02673
5.98953
28.3257
10.7847
6.91558
6.97809
6.11213
8.25465
6.19942
2.93362
5.76576
5.77822
28.131
28.1272
28.1045
9.27723
6.62181
6.47301
7.37436
6.20481
7.3384
6.23238
3.47367
4.86175
4.83714
3.48666
31.2496
31.3698
3.51625
4.88672
4.91326
3.50188
31.6039
4.4875
5.66418
4.40525
1.39948
3.0386
2.95558
15.1128
5.34017
4.08905
4.17624
3.50044
4.66885
3.59369
1.15197
2.37602
2.40942
14.4035
13.9802
4.81523
3.75637
3.71798
4.62307
3.63042
4.59451
3.652
2.63539
2.59882
23.1725
6.71282
24.2979
2.66187
2.67851
25.1111
6.94536
24.985
2.29267
3.07537
2.24997
0.550409
1.02865
1.00515
1.92499
12.3836
2.08077
2.15697
12.5063
2.11145
2.92955
2.11842
2.13812
1.59894
2.58036
1.87072
0.431801
0.803442
0.81669
1.84255
11.4504
1.80744
1.75872
11.3593
1.78225
2.67892
1.95516
1.9414
2.19996
2.17657
21.8068
20.0053
3.41832
2.70289
3.54273
3.77535
2.82572
3.71556
1.00347
8.49533
1.43457
0.995549
8.40754
0.267942
0.252475
0.465587
1.03651
0.44474
0.507119
1.1018
0.481795
1.36298
0.915851
7.73257
0.944876
7.97715
0.765302
6.33705
1.17427
0.816718
6.83563
0.199227
0.203431
0.423474
0.959626
0.410213
0.390476
0.937291
0.399087
1.23789
0.869319
7.32873
0.858717
7.21974
937.331
119.185
79.1402
560.027
1395.58
496.526
32.8379
23.4491
248.309
34.1261
8.72301
3.81683
38.1206
10.6946
4.31821
3.16334
1.1686
1.31101
5.86995
2.10012
2.26637
1.57214
1.47777
1.06352
1.60527
1.40706
1.28202
0.75808
1.27723
0.718782
1.31178
13.7344
15.8631
28.0889
31.646
53.1078
24.7677
7.68128
8.56389
21.9251
5.13889
4.28243
9.33862
100.977
18.1995
6.64235
19.2878
4.46506
110.228
3.53175
5.22717
1.15655
0.741756
1.21376
2.23421
2.59117
2.55862
14.4246
2.74575
0.697471
1.06156
1.12856
8.52524
8.36162
61.533
4.29365
20.0068
4.8164
1.94167
3.23258
3.42483
4.41355
5.10035
3.46945
3.82311
4.1931
5.11933
4.47057
2.77183
2.91476
3.27026
17.1083
15.3497
423.795
1442.06
75.4891
34.4138
159.611
17.4599
25.8588
0.957795
1.07612
1.13456
1.87809
2.61597
1.863
0.809829
1.12666
1.14863
1.67665
2.38685
1.80786
6.19774
2.24515
5.31377
2.16848
12.6209
6.44085
18.2052
15.8795
24.4026
12.7226
13.5839
33.7816
10.4206
12.302
44.3063
7.80299
20.2575
54.6293
17.255
37.0709
9.02237
19.9034
22.8796
13.5947
11.6215
35.3144
16.7531
7.3723
9.66944
7.77212
6.87518
12.607
7.62501
4.99795
4.49342
5.5928
13.2615
5.16248
13.8903
5.92199
4.31361
0.483478
0.363192
12.1703
4.41443
33.5755
28.8595
9.73
4.68968
23.0644
10.1459
9.77546
7.51204
21.4278
42.5285
46.9354
17.3044
19.7253
11.867
14.313
6.32196
14.7524
32.7653
38.485
15.5152
6.62802
9.24627
8.8637
13.2924
8.60071
16.9854
7.49627
45.2655
15.4992
27.3634
18.3037
25.025
10.2503
4.43042
6.20142
8.33978
26.7858
5.31195
5.50667
19.2787
16.5613
8.41863
16.6586
8.12181
4.81127
22.5341
3.90714
3.59501
4.97623
19.9501
8.64299
2.0026
13.5102
8.6396
14.5582
18.9075
12.1613
7.93258
6.73552
24.2727
9.19519
11.7019
6.41886
5.15728
13.8987
13.3015
5.20066
19.4903
16.3826
10.9651
7.40358
20.4741
5.64435
15.0815
12.593
6.69193
14.1834
13.1153
20.1877
14.2864
13.0169
21.6324
13.4047
8.76248
6.37582
13.688
10.9864
10.1358
19.3117
32.5672
33.9687
5.63386
11.7216
11.5347
3.74653
27.6325
30.2487
22.7488
15.6046
24.9482
16.3469
33.6059
10.5201
4.21695
11.7578
4.85097
36.1162
6.24616
18.2688
11.17
25.8822
15.8082
32.6566
7.27342
5.19157
6.93348
12.533
31.8082
14.6567
6.57907
31.7315
11.8153
4.77757
9.75212
6.15559
6.54855
0.738782
18.1588
4.6723
0.815687
11.6334
5.2746
4.14631
5.01056
9.92148
12.6381
9.91597
13.4122
8.3276
9.13466
28.1966
22.335
17.9395
19.4374
19.5893
17.1299
17.8564
12.7317
5.15982
13.4834
21.5867
19.2329
13.4147
6.88489
14.7338
4.57663
16.4246
10.0931
3.29149
15.3917
12.8574
7.49045
36.1496
14.0194
8.29369
14.0199
6.52965
16.5596
19.6276
18.5165
16.7411
7.31558
42.7656
6.19698
5.24839
7.5172
41.1902
5.64858
20.0346
11.8062
22.5207
7.8665
9.10482
20.0078
12.8733
11.7154
12.9306
9.82303
13.612
10.4435
16.1811
12.3101
21.4032
24.0195
23.771
6.21898
6.09984
13.8787
4.86284
10.0117
5.11154
16.6688
7.11521
35.3353
5.58473
21.0388
10.3629
4.27704
4.85279
37.7546
20.3553
33.4929
35.2073
4.85156
7.14512
4.93919
45.0015
14.277
6.06682
50.9409
8.44172
5.72966
6.9431
32.6746
14.5445
5.75945
6.92418
15.5794
19.4274
32.8158
36.3631
82.8513
10.277
8.84166
8.09653
6.8471
6.3092
5.21258
7.91532
10.5304
6.33544
7.04729
22.0585
6.09717
15.6353
10.9917
17.1414
6.43103
21.7309
12.786
15.9674
19.7887
19.6566
16.2882
7.85548
14.3191
9.0959
39.6642
48.0069
16.7653
22.1567
18.6838
16.45
3.70237
5.502
24.3091
25.2095
16.3512
5.5909
20.5686
6.99752
5.8832
7.02106
4.59765
13.1147
0.735397
8.91055
6.56009
5.27044
11.0541
11.0807
10.0497
11.2669
11.5509
6.12967
9.32644
10.4885
14.1565
12.9477
12.9935
27.1835
17.3639
6.06331
32.0056
9.91072
9.81796
6.78226
24.6178
11.9869
13.7899
10.7442
39.6622
35.9818
34.8963
15.5383
5.06452
4.92279
17.2399
15.627
5.86339
10.8009
6.16029
21.3005
43.1939
7.84858
8.06141
4.7345
11.465
20.6939
20.7493
5.67409
6.35521
6.03534
21.2294
18.2567
4.4028
5.33022
3.84266
5.40907
19.2329
6.60374
6.21845
21.4237
24.1929
4.53562
21.0187
7.61582
17.3969
5.895
6.58206
14.8973
14.7143
13.579
10.1527
11.3786
10.5406
10.8662
12.2751
12.2521
10.9485
6.99185
5.53512
19.8728
17.628
7.4418
14.1124
14.1939
15.8586
12.9328
24.6175
10.6007
12.6439
11.3108
11.7273
13.4609
37.0716
36.6281
33.8704
11.2817
76.5766
16.7895
25.0987
35.1032
55.4787
51.5435
15.5282
12.1501
38.6504
23.6561
30.8834
19.3264
21.9595
28.1021
78.21
32.3078
11.8522
10.1646
17.9786
18.3055
26.6726
27.5847
65.1093
20.5587
15.8203
32.3143
64.507
10.9257
61.4097
17.262
32.4093
21.9935
27.5348
25.2237
38.0649
69.1855
30.1301
27.3107
37.5346
21.5215
26.9912
62.3649
22.7392
13.9818
11.3551
46.572
25.801
27.4677
23.8168
18.9109
20.3391
84.242
19.2358
20.4816
18.5482
12.2625
10.4008
19.8848
13.3625
44.9374
12.1824
40.7901
82.035
10.349
23.8757
64.4919
18.2464
17.4813
8.88052
12.5927
10.5751
85.2689
42.0442
39.5059
10.296
39.1267
13.676
19.5143
82.7255
20.8308
22.3836
27.0326
24.7132
18.2519
25.6807
47.0535
117.677
14.5198
61.4075
46.5578
27.3034
19.697
68.8657
10.8957
32.0722
8.09277
69.3087
7.93413
16.3533
10.7365
15.0977
9.95348
15.9813
10.8567
8.41436
37.4421
10.9415
141.519
39.0102
55.3539
54.1029
26.1799
39.193
22.2408
17.025
31.852
11.2396
95.5536
12.3888
217.284
26.0702
57.0642
70.0832
41.5683
37.6573
71.0669
46.1114
10.6144
20.4282
77.6892
152.377
10.1228
66.5641
21.1421
28.5386
65.6042
25.3317
18.1952
59.5895
57.1691
10.4348
63.3698
8.00814
10.3292
8.9733
34.1567
58.4845
18.8828
31.4418
10.862
69.7286
8.75905
93.1398
26.164
36.2839
79.5391
12.5423
220.443
99.5634
14.1434
12.4489
34.849
30.8239
55.6039
94.6369
26.2498
38.179
67.2176
37.8577
34.0834
41.8623
41.7425
78.7456
32.7736
26.8741
39.645
47.3396
24.7059
13.9454
43.3328
60.1758
22.5827
35.594
23.2647
19.0808
34.1541
34.0161
18.6398
75.8917
19.1751
33.7492
33.9413
36.239
36.079
14.9795
61.951
57.4538
35.0443
61.4528
26.0187
27.6202
32.6808
31.7204
37.1859
17.5727
39.6526
36.5002
41.5779
37.2309
113.597
38.5944
39.8215
45.1827
135.877
63.9928
72.7247
68.0684
23.9966
18.7866
86.1215
295.693
28.1373
372.857
432.886
37.2467
48.8387
144.217
40.7767
14.2212
112.219
17.5603
281.543
236.22
313.838
331.672
194.91
19.9297
224.064
50.5208
202.334
19.1424
178.445
33.0277
88.4653
70.3232
254.082
28.9735
84.844
126.749
38.6245
238.128
17.2663
18.5042
54.7195
30.5
65.6861
20.7697
17.135
25.0532
60.6864
32.516
26.3456
118.673
14.2323
41.0763
24.7561
23.5097
98.4226
26.2539
115.421
14.189
114.254
44.835
12.6001
37.6244
10.5009
30.0195
17.3812
25.2907
12.1247
12.5863
51.3707
25.9419
25.4784
16.2286
26.4159
16.6945
42.8697
14.3294
60.4222
15.4464
63.546
16.5953
37.229
51.9797
13.1716
25.6759
14.6314
21.5727
13.2706
122.991
22.3519
12.8136
16.4
28.5847
174.247
15.9211
55.0742
51.5543
71.2239
75.0935
30.7659
31.193
12.7186
32.5731
12.6976
28.0801
201.574
26.1409
63.4444
58.6275
62.0291
64.5869
224.327
211.562
210.594
16.751
49.6649
54.6604
186.817
37.2223
188.272
14.8086
68.3768
55.4779
54.9686
69.0604
17.8759
54.8256
16.3557
42.1104
74.4152
90.7857
156.538
82.8003
75.9317
226.536
45.4457
384.881
100.753
127.377
46.2325
44.0809
193.162
16.2972
232.177
14.0328
15.4513
222.165
50.3321
79.5148
72.2309
231.451
34.1452
17.6116
36.3795
73.4603
15.5843
218.426
17.137
195.851
31.4069
58.0103
62.1891
100.45
18.3592
250.179
47.1516
188.196
45.483
19.329
70.7936
18.3401
14.7352
59.6358
51.9374
214.979
18.0887
18.8808
248.421
42.7657
12.1779
12.1286
50.0197
15.1925
15.1784
94.3398
13.7675
6.46241
17.9557
26.7524
53.2178
8.9414
15.9733
22.8243
16.3655
48.2802
6.54567
66.2082
27.7991
102.677
15.2742
24.8974
17.9956
11.9204
6.19229
108.781
6.68121
113.406
46.3935
103.649
10.9488
40.9352
63.0162
81.6217
35.0535
157.363
9.31915
223.248
10.5254
97.7414
70.851
203.679
21.0234
23.8258
35.9001
8.86052
17.6478
150.591
14.9255
44.5552
35.6803
210.701
18.3354
47.5678
27.7724
37.4151
205.682
91.0013
15.4418
5.9891
22.0832
47.1651
16.3321
23.4497
8.13771
23.6501
27.121
38.3594
21.9416
17.3502
8.83965
8.17109
32.611
27.1677
7.60376
8.86664
73.3307
30.9287
24.4991
29.3704
12.4585
33.2186
10.6403
30.5674
76.6308
8.00466
19.4647
12.0031
9.64936
7.6225
7.84718
54.7834
26.7012
8.26884
8.25679
64.7918
28.3739
7.70685
22.1168
25.8695
13.8611
68.4877
6.97211
17.3227
10.8583
8.56929
69.2848
19.4536
7.68836
10.665
7.53013
8.45869
7.48944
24.3311
8.81599
21.9346
6.52206
7.6158
20.9205
24.732
11.2643
8.74025
8.63633
28.432
7.85321
74.9074
18.7891
8.36511
9.51412
25.2193
8.82138
24.2147
9.76736
37.6328
13.4148
74.2023
19.4197
79.7237
9.32026
10.7285
28.7738
11.9479
32.9606
9.48275
26.5162
33.441
10.6133
120.309
6.80095
11.9919
36.8774
19.2905
32.3959
24.9997
72.9375
154.386
7.57419
39.0628
29.6336
169.233
44.7852
62.3242
104.298
13.9763
47.4101
20.1988
36.3967
14.1805
20.7991
20.718
12.8119
26.973
7.51097
25.5568
30.3517
38.7013
17.4922
165.224
25.0385
15.7705
25.6248
28.4252
32.1305
11.0129
17.7143
22.7087
6.07359
34.6364
24.1677
18.9724
11.7537
6.60471
29.1553
110.648
39.6209
43.8079
18.2515
6.07861
10.2664
12.5446
47.1437
14.4027
20.7298
16.2336
21.1165
5.27332
50.6322
9.10599
33.4741
22.7535
24.3811
59.2626
24.8327
40.5668
28.2849
15.4606
10.9256
25.904
25.0474
30.7369
19.9136
15.3827
20.1732
30.7068
138.914
44.0892
64.6439
70.9276
6.74819
7.58908
13.917
6.72236
30.4459
35.1942
39.4223
27.4573
17.5807
15.3571
21.6259
10.75
76.0684
34.0144
20.4635
13.7874
83.0636
35.8848
10.9979
11.6921
46.8817
12.0938
19.1133
89.2471
13.5051
31.6274
20.1166
11.8866
12.2481
18.314
42.2172
30.294
42.4208
42.1129
19.7105
35.8916
12.6546
12.3414
11.266
29.9246
10.9317
23.483
36.5159
30.4439
85.6955
11.7222
11.7851
23.9872
8.9842
9.68691
39.043
12.2073
42.233
36.008
10.6007
10.4996
36.2532
10.084
11.2277
10.0496
10.3397
33.1989
34.1884
8.94353
20.5696
34.8088
10.2633
34.9141
10.203
18.9748
11.2641
71.1018
66.9128
82.2582
233.803
35.0179
11.1304
69.395
216.2
209.954
38.6416
10.4032
223.582
63.3675
68.1868
38.8569
50.0703
88.5972
23.4
37.8585
36.2908
72.8109
21.4416
242.499
31.693
12.2932
26.0574
11.2129
72.8053
62.3803
26.8746
97.9772
79.1185
280.003
27.5256
13.7977
65.2944
65.4795
234.954
26.4121
12.0673
216.761
78.0511
126.817
107.265
72.9772
14.3294
18.4698
16.94
380.046
102.085
31.6188
278.025
65.864
67.6056
105.926
49.5082
101.274
93.8401
428.087
40.649
15.2355
231.714
223.216
58.3885
49.4889
94.6881
35.6892
57.9529
66.6519
107.05
42.4265
29.1567
413.61
15.0467
15.5894
128.348
33.5106
11.5506
19.7309
83.1245
243.133
237.509
54.7411
330.152
304.417
14.0436
47.7161
29.1064
27.3864
376.936
389.152
93.6491
19.0208
96.9536
40.9069
114.345
12.587
13.2961
13.3002
11.5062
40.6807
12.7673
10.951
25.2181
33.9699
21.7417
102.225
15.4679
12.8855
36.4058
11.3718
34.0836
37.0211
30.9017
12.1321
35.8852
12.7914
39.519
13.0847
115.234
28.6071
11.8195
41.6307
14.1067
14.3905
12.872
38.5703
41.3986
12.9356
38.8018
47.6798
14.3539
52.5133
13.9253
39.9022
33.9105
11.1318
35.8228
11.65
35.5941
9.36484
43.8995
12.0581
13.6626
88.0801
11.7525
11.9061
10.416
11.0446
32.666
8.96773
21.1778
87.2217
29.3518
30.5649
10.8013
23.396
23.5378
34.8575
19.5182
83.1263
86.9456
256.96
10.7499
247.683
10.991
264.123
222.87
35.2412
33.1606
68.3051
20.0133
35.0562
36.7631
69.559
20.7937
71.3095
19.5851
9.40432
9.44334
70.8845
228.361
40.4772
73.3651
21.3143
10.1214
10.2182
77.6283
241.422
235.322
44.9077
10.6912
10.7194
20.9764
19.5881
31.0927
29.4599
23.0948
26.3567
35.8217
39.3065
31.5976
34.1518
43.8451
49.6619
298.652
44.9677
18.7085
30.9235
47.9925
20.2505
32.0243
80.7516
83.8111
46.0812
9.75681
9.72792
19.1582
29.0746
28.1392
41.2462
39.6997
18.4157
10.1058
10.1599
55.6361
22.8619
36.1749
50.2917
21.2034
35.0516
96.3486
89.5839
51.6974
11.3256
11.1813
21.9807
31.3724
29.7405
324.952
48.7336
174.989
34.9623
331.016
22.9984
13.0174
12.6813
42.3934
13.7203
13.7682
37.2894
12.4694
12.5102
28.4977
31.505
27.4447
42.5048
108.575
60.7092
47.9204
33.7137
33.1917
62.5079
74.2868
156.818
7.06986
121.384
6.17141
10.6561
45.7108
121.233
21.2415
23.8645
5.86139
14.7193
9.5242
21.3634
26.603
28.8757
23.6679
5.78784
6.31577
11.4152
21.1239
9.52759
16.6517
25.3227
15.2112
19.8113
13.9554
20.8466
15.9393
20.2576
5.83727
110.492
9.21467
14.0875
12.1605
55.9751
10.1729
5.40049
54.3749
25.9001
40.5959
26.3681
122.172
19.5649
28.1324
24.7354
16.6486
18.3458
6.87699
12.208
10.1901
6.2499
35.7436
50.912
19.097
25.1984
28.0486
21.5608
39.2001
31.8369
52.0105
31.9265
138.733
30.8051
27.9248
27.6218
8.26794
36.4893
25.1779
26.6147
8.17977
13.8932
82.5723
32.1392
68.8904
10.1555
35.9537
11.3597
31.1543
27.7874
16.6067
52.9253
18.5243
18.6995
21.6979
6.50138
76.6094
14.2798
8.21775
8.62885
27.1393
13.5708
6.79465
7.78633
14.8354
7.54076
15.4138
37.7284
13.8773
11.6585
10.3568
7.8769
27.0119
9.64201
9.31676
36.6545
27.6462
9.42269
40.1613
12.651
8.88392
10.3435
64.0407
7.40827
25.9953
17.6763
6.9052
7.68374
8.5912
8.28921
22.3358
7.31453
22.1395
24.197
10.3368
8.15801
14.2378
34.1201
7.10742
9.25504
27.3586
25.5218
83.0449
13.27
29.4257
36.4124
116.027
136.184
45.0838
19.409
14.0655
21.8757
22.5654
19.5045
22.423
17.4651
19.6278
17.6959
54.8189
102.535
16.8904
9.05294
12.4238
17.9327
16.6892
20.8991
12.6549
10.2353
13.6287
16.3968
7.75882
110.892
58.9101
9.63712
5.51299
5.10632
42.2139
37.1864
126.896
42.8849
15.519
25.435
12.6889
12.7412
12.9951
12.7989
11.5085
37.6079
11.8947
36.2563
34.9118
38.0671
37.5802
17.9146
13.1101
76.6663
8.44734
38.624
11.8976
11.8922
37.6475
41.54
13.2958
40.0299
12.9889
17.2895
50.4371
18.5591
113.586
50.7664
47.672
13.0851
13.0514
35.3084
35.7392
38.191
11.0407
37.3361
41.8002
11.4735
10.9454
10.9692
35.6596
35.4829
33.2425
11.7088
11.6462
36.3368
11.0795
36.3041
36.8576
11.2085
34.776
35.88
25.2946
8.6804
16.0244
15.9354
23.9364
24.5787
31.7802
8.56781
72.203
239.601
29.0147
10.689
19.4078
18.6907
34.7973
32.4144
42.9468
10.1419
82.4964
280.806
279.565
25.8487
9.55414
21.7647
8.536
33.3871
30.2806
20.1648
10.3516
18.1499
27.8018
27.4345
75.9048
272.609
25.8061
26.5409
18.111
31.215
11.126
32.4355
9.47879
9.25451
11.4218
33.2261
12.9021
41.0025
31.3831
8.82944
45.0751
17.9094
29.8967
11.4427
30.1697
10.6753
49.2374
16.6427
38.2879
14.1498
18.9257
19.0811
9.34356
9.2163
30.6848
8.31688
32.2602
9.08458
9.17234
30.009
82.0509
42.7389
51.225
48.8947
14.5392
15.464
267.542
10.1954
100.847
44.034
54.8157
57.6671
18.3433
17.174
11.091
31.505
21.6252
34.5265
23.46
15.9505
16.8542
103.305
8.48246
16.0072
29.6705
15.0892
11.1507
11.148
34.2205
11.4178
11.3194
8.50934
20.451
36.2813
10.5341
43.0912
41.1305
19.7107
30.6082
19.8496
31.0153
37.8039
37.9934
36.6593
37.9688
67.5272
23.5437
39.9597
26.3632
39.4466
45.1254
42.0142
39.309
42.2516
276.837
48.9943
8.19053
41.5294
16.0509
14.7417
50.1953
20.4561
20.21
10.8461
10.9613
11.1435
11.0892
145.643
17.5337
19.6979
14.9202
21.091
14.1364
10.6552
7.86851
16.6046
25.5721
25.0097
24.0865
25.784
29.3236
25.0188
5.14475
41.1082
23.8373
11.089
5.84202
7.74439
29.0393
12.1928
15.983
31.0008
10.7919
12.0279
27.0204
7.96015
12.7002
6.47725
12.1962
14.3862
14.47
13.5443
15.3639
15.5728
11.047
11.3291
15.7667
32.2544
6.44052
27.7593
15.1004
8.81421
6.69095
22.7576
78.0152
7.46643
5.5863
32.3516
30.9352
18.2276
19.8845
19.0547
19.1968
7.98697
7.14062
10.072
19.6575
26.7624
39.6333
15.5313
16.041
38.5462
9.38709
15.7843
8.43862
15.2792
8.54601
8.82679
14.2845
38.5144
36.5659
32.2764
14.5132
13.1411
36.2139
12.529
8.138
13.9099
27.1874
9.92492
8.59332
16.2545
20.3747
19.0204
19.29
20.1029
19.5586
13.3061
18.3875
15.7869
78.0661
5.62338
6.28781
9.2469
22.4552
8.25178
24.688
27.9724
8.8278
12.4337
13.0476
8.67347
30.9628
33.4538
21.9339
5.24616
7.19479
6.74724
34.4623
10.9368
6.37273
12.4691
6.5404
53.0742
4.90031
7.42309
10.0764
48.4853
6.93049
27.9124
13.502
13.0529
31.2335
33.5649
12.9067
7.51765
6.86308
13.9329
7.81949
44.6159
33.1052
8.09953
8.44098
9.54609
14.5463
7.81167
7.89458
14.4238
8.19389
8.19875
15.8714
19.7054
20.9614
13.04
7.47204
5.18924
60.6995
64.6228
40.4926
9.8487
19.6148
20.2607
21.0175
19.5683
29.8739
28.2218
26.9319
30.2067
31.4181
31.997
28.2971
35.1774
66.49
33.7725
40.3171
38.6993
18.4301
27.9741
23.5461
23.819
8.28991
51.5967
19.445
50.9877
11.1765
11.8056
17.5687
38.4975
9.0153
11.011
49.9117
21.7555
8.99285
8.95973
32.5515
7.58707
15.7445
11.3326
105.033
6.83965
41.4301
13.2308
11.8963
37.779
39.5245
34.952
42.2929
36.4052
35.2178
32.2436
39.4982
90.4111
42.2583
53.1748
50.1304
20.8773
31.0624
27.0288
26.1563
9.31186
21.482
144.839
22.1113
49.6088
11.5113
49.6578
19.9376
10.8477
19.8978
10.88
11.5635
48.6971
11.1704
48.7288
18.968
10.3568
18.9301
10.3408
11.0786
14.7088
17.8891
103.074
37.0973
43.2897
62.3177
13.2484
14.5505
15.773
114.097
39.6768
47.298
64.486
14.1896
32.3864
32.0052
28.2146
38.4691
33.2132
34.3321
30.0363
39.7658
10.8575
32.8906
10.2934
11.6494
11.1689
9.92956
42.9782
18.5258
18.6431
9.90895
43.5436
8.91506
16.5276
20.7451
8.98199
43.4369
9.5066
17.87
9.39021
18.0208
30.387
29.1558
31.9212
26.0706
32.3107
32.8304
27.6964
35.96
38.8085
76.9295
44.4284
46.7955
26.9988
25.7973
26.9465
24.7704
30.0338
28.2393
29.294
28.3524
17.9871
9.16895
270.319
13.3174
13.4105
16.7555
10.046
10.1636
43.5869
42.4145
17.2591
15.8472
38.0248
15.1588
7.55859
8.7258
8.34104
34.144
11.741
13.8624
39.8892
38.7596
16.0881
39.2734
9.84864
9.73135
40.9628
15.3077
31.3719
114.123
34.6507
45.081
44.195
51.313
11.8511
20.5586
10.673
24.7885
10.7445
56.4807
12.1674
9.63343
17.4782
32.4968
11.5329
30.6307
12.0927
16.9091
8.33376
297.63
131.061
36.0715
35.5855
77.5983
38.591
51.1382
38.2069
18.5602
9.22216
13.4524
17.5084
8.60057
12.8493
23.2098
22.7138
18.1586
8.71117
14.6935
9.7806
14.8993
9.92794
19.8776
20.3008
14.6126
86.8114
86.4732
14.9034
36.0832
38.5143
39.3494
15.3405
9.07977
16.6367
9.00355
17.0347
9.65862
8.98505
9.62741
42.0548
18.3727
9.81601
42.9309
18.0185
9.97714
23.855
10.0905
19.6238
15.4043
44.8081
39.2411
39.5525
15.4374
40.547
88.18
89.795
11.9259
57.7379
9.78864
31.8858
31.6475
30.2211
22.0518
21.8151
25.6108
30.7423
26.218
28.6221
30.2256
25.483
28.1554
10.9733
142.792
305.901
16.7931
11.5545
302.894
15.6924
36.6261
37.9245
33.8326
21.6622
22.124
27.7829
35.1216
27.0045
32.1163
34.7364
24.9147
30.1251
47.9044
19.8714
19.8349
11.2886
11.3286
11.3604
11.3143
46.0664
19.8941
19.4439
11.1991
11.2372
11.478
11.2835
11.4718
5.24927
7.17833
13.5153
11.3768
15.9313
8.08035
20.4884
16.6214
19.9399
20.6432
5.76166
8.99779
134.845
17.3268
14.6738
19.575
20.1368
20.1421
19.8242
16.1144
19.3112
65.1653
5.62321
11.1363
16.9011
38.1933
10.8841
6.46816
6.2087
8.22218
15.2694
9.59355
10.9775
16.7465
10.3846
13.9408
13.0456
7.10462
7.3546
12.2121
12.6479
13.9688
7.65421
35.4163
7.95356
40.6733
16.0164
14.3493
14.271
15.8715
11.9709
12.9931
11.7857
13.198
11.3297
12.8099
12.5961
11.5879
16.1182
14.4792
15.9274
14.6771
44.4173
8.536
116.888
38.6066
8.11133
6.98018
12.4371
7.6729
8.45915
13.3563
8.25884
18.5407
38.5785
41.0492
21.2377
6.51085
12.0001
37.2933
13.348
8.22582
15.1446
36.8852
35.8815
14.431
32.1486
14.0138
8.26155
8.1849
15.6205
12.5827
11.1633
13.7087
11.6696
12.4105
26.8334
10.4081
11.1588
14.1743
13.1003
46.1973
8.856
35.8819
34.8998
8.15453
15.3722
15.9815
18.7803
20.0476
15.8024
17.349
17.3473
19.4508
33.2144
7.50006
7.59438
9.26929
16.6584
37.1141
8.67904
14.9038
9.56989
9.37258
20.3228
126.762
26.3409
48.5489
12.3105
17.6685
12.8829
25.9703
41.0861
19.7794
19.8366
19.4878
19.9768
20.6911
20.2828
20.3207
20.766
19.6414
19.8307
19.4711
19.9482
20.9247
20.3073
20.3847
20.8457
27.9754
24.5278
27.8001
24.2146
28.8586
28.6849
21.8744
21.448
26.2954
25.7394
23.0852
21.1817
25.0668
24.0167
23.0427
20.7416
25.484
27.8817
25.7567
28.1147
24.2216
24.2293
28.9057
28.7014
24.1536
24.1268
8.68962
8.67689
20.9786
12.6936
20.5895
12.5081
19.4674
47.5464
11.6245
11.5166
48.5214
18.8713
51.0475
34.8926
36.7968
9.32205
16.6544
16.4708
14.7918
8.89349
15.5488
40.6916
30.4763
11.9201
12.8713
31.6088
26.0627
28.6632
24.8512
32.3243
30.5796
22.2654
21.9689
30.3621
32.9785
30.8933
33.5991
27.9722
27.7858
34.6299
34.6512
26.1027
22.9457
22.2656
10.0622
18.2637
9.94913
33.6474
33.297
36.7079
73.4885
35.216
70.2311
46.3606
46.2691
14.4905
20.5786
61.2428
24.8073
53.9006
26.2597
19.4896
11.0308
10.6148
18.4707
51.4352
24.1515
51.8437
23.9921
18.4664
10.7132
96.2343
245.239
28.9139
29.5887
38.7937
30.2403
67.5291
32.657
11.6633
14.1836
8.48221
6.05775
16.5816
7.8945
11.8653
16.6898
8.19884
12.1093
21.5447
21.2564
16.6443
7.9661
108.037
163.743
34.4813
42.4053
32.9365
256.799
258.774
41.1136
9.49225
16.6816
16.7172
16.9724
9.57729
16.815
40.7493
43.3835
43.9878
10.0988
16.5039
16.7731
10.1041
43.6775
9.95226
16.2354
16.1436
9.99765
75.977
274.027
270.813
21.3909
21.6277
10.3287
17.775
9.53668
17.7544
33.7675
38.2148
35.864
34.8646
43.8225
43.7327
74.7559
37.9243
65.0821
46.591
117.181
38.865
264.583
9.54475
9.13018
30.331
36.8299
30.8966
34.7789
112.506
51.5568
39.7309
233.056
15.0948
17.9075
171.022
7.02123
65.4798
12.4008
16.9774
27.5415
34.4747
29.6426
31.1787
234.252
6.90311
83.7644
59.3213
249.056
11.0856
9.50051
37.538
9.23061
9.5303
14.3643
20.8115
21.1057
14.078
42.9312
8.54807
18.6155
39.4288
40.0612
43.519
19.7259
42.0569
8.3096
12.5692
20.2638
19.3191
13.4998
50.576
50.5756
15.7615
23.9331
10.016
43.7064
23.8604
16.1917
15.7678
23.4693
9.81636
42.8353
23.0165
15.8817
8.3318
29.5641
30.0685
29.6802
66.9684
32.1989
37.3312
63.1129
34.5805
39.0369
8.73496
16.5129
39.2516
38.9338
38.6999
16.3086
38.8506
8.6324
46.9814
10.6098
18.2862
18.4186
10.5416
46.6837
10.2054
17.9237
17.6694
10.341
24.5809
24.3606
26.2327
22.1161
21.8553
23.1996
23.2814
21.2618
25.2931
24.8394
26.183
24.4119
16.4273
22.143
19.3146
19.658
24.1852
26.6414
28.0852
21.5292
28.3258
28.3492
29.5427
26.5457
30.626
29.4952
30.1497
30.2329
14.3956
24.4697
18.0315
21.569
50.4776
24.1068
24.1391
16.6455
10.6732
16.7008
16.7395
10.7026
16.7303
48.3476
23.4335
23.2297
16.0789
10.3908
16.0804
16.3234
10.4528
16.187
22.0981
54.5572
23.7478
18.4677
18.8172
19.4074
54.2461
21.3557
23.1906
5.25886
25.8691
23.8278
39.2763
36.218
131.81
9.23319
11.1674
8.06115
18.4938
18.6259
18.7029
19.6969
20.5203
19.3986
20.0323
21.878
19.4653
16.65
10.3103
11.33
15.3732
36.3912
7.67796
7.48947
11.715
16.5566
35.0287
35.7455
17.6631
116.202
6.49274
7.23926
34.4473
15.2511
32.4921
13.2189
8.82135
13.8053
8.01546
38.8427
44.3076
39.218
12.6104
18.1183
18.6574
12.8012
38.2698
9.50491
10.8917
7.8345
6.98562
13.1281
18.7673
18.8295
39.3967
39.4071
13.1099
18.8181
18.8186
39.2365
45.2469
128.373
16.4307
34.9003
32.9767
20.3427
15.9044
32.7283
11.9566
17.4079
15.6686
11.6654
11.9589
16.4777
17.1793
38.798
36.4211
12.4927
18.5992
17.8518
29.9654
47.1285
27.7275
12.8817
8.36622
41.347
18.9624
14.9536
9.03643
24.1022
20.8603
22.8877
20.9391
18.4993
21.2478
23.6654
22.3326
23.3208
14.6156
14.6777
17.8257
10.2476
10.102
16.6545
33.9261
25.6387
17.2837
15.1005
9.43167
43.8929
9.28805
42.9026
15.56
46.4501
17.4547
17.154
10.7706
11.7912
153.804
22.1007
26.3959
25.7285
26.8209
28.0892
26.9959
14.0814
19.5523
21.0722
27.2896
27.7554
27.3654
22.6427
48.3407
9.99527
15.8901
23.3274
22.9751
9.88586
15.734
23.0947
26.9642
27.4157
27.9267
29.3137
67.2877
32.4362
24.4091
23.2057
24.8785
32.0124
88.7665
35.5904
20.3714
12.4293
13.6418
18.9732
37.7655
15.3169
9.75949
9.80819
15.1826
22.2697
46.6244
46.3083
22.4283
14.5922
8.37205
13.4678
9.21012
22.2286
46.5713
46.5071
22.3689
11.5482
11.7773
8.64035
26.5254
25.5721
26.5813
26.464
27.3196
26.9868
25.7894
27.3076
26.8235
24.9216
23.6584
26.7613
59.4037
25.4351
33.2351
30.1334
23.2937
24.4696
23.2796
20.6801
22.4588
22.1233
24.6503
23.8405
23.4258
30.8269
28.9974
34.6436
29.4049
35.5366
36.5444
19.82
13.998
14.0765
19.4019
24.8674
46.6649
53.7706
23.1066
41.0286
8.53606
8.86558
18.7758
18.923
40.518
22.4325
22.5757
17.4678
12.8026
13.2618
17.1343
22.6664
9.81659
15.3993
22.5491
22.0277
9.65995
15.2918
22.3698
23.785
45.8893
7.81759
18.3275
16.6598
32.8414
15.0963
9.74685
9.73779
15.1299
21.5857
44.6589
44.9413
21.4619
15.5701
11.9426
16.3952
10.6921
21.332
21.3365
43.326
21.9764
21.893
16.1818
10.7478
16.0401
16.2939
10.7873
15.9418
9.67465
8.90269
23.2149
19.6486
19.4303
17.2224
13.7991
17.1498
17.408
13.8223
17.1847
10.0573
9.90003
9.43675
9.44739
9.1822
11.5846
22.1961
17.5322
17.8028
21.4472
43.5396
17.2852
33.4601
9.88128
13.5468
81.1237
15.8571
32.892
28.7669
76.7814
26.994
69.713
29.1602
10.9584
12.7252
19.1111
247.862
7.33251
7.65451
48.6318
30.3056
6.12135
189.155
29.004
19.0978
17.8719
15.6723
21.7207
12.1046
13.8615
32.5657
6.72209
7.6253
11.2857
13.937
9.59271
13.2308
9.89814
16.084
30.999
7.53937
11.4493
219.606
7.55128
7.8296
15.7333
31.4874
15.4404
13.7993
14.2153
14.6493
20.792
55.6195
22.9632
46.8099
18.5606
37.4728
18.9095
11.9684
15.9124
15.4359
14.5383
11.606
15.0126
20.1397
19.3943
12.494
15.8605
12.2082
16.1448
16.0377
16.0592
16.0863
16.0213
16.4497
17.3924
16.5759
17.2198
14.4313
13.7125
13.7566
14.4366
15.0893
15.7276
15.1187
15.7065
22.8902
57.9095
23.4108
55.7168
18.3006
17.9065
17.0197
19.1906
8.33904
13.9363
6.64249
12.432
15.8898
15.3114
17.5622
17.5965
19.0115
17.9599
17.6331
17.566
18.6242
14.5997
14.4549
9.28131
6.72349
10.2857
18.5234
13.3601
13.9999
11.14
7.22527
10.8803
8.37254
43.7503
13.4981
9.21917
131.535
12.8151
15.4068
15.8996
17.2167
17.6167
16.9575
17.6406
6.934
12.7272
15.3533
17.0987
15.4733
16.8834
24.1447
24.84
29.294
79.6746
28.8422
77.1201
20.2351
14.202
14.4263
19.8411
42.2096
9.53921
42.2571
68.2459
84.5913
40.8952
8.90421
13.3264
13.1569
9.0247
38.959
21.5497
23.6468
21.4672
28.2261
26.4753
30.7791
42.7323
9.63473
42.4961
21.3835
17.1124
16.9785
21.4366
24.1532
24.5706
23.4442
23.2214
24.4642
23.569
43.2023
14.0723
20.7266
36.7392
23.8594
24.8544
23.4404
24.1155
24.9833
24.7122
26.1222
25.3121
25.4271
24.9614
25.1608
25.0219
24.0624
47.9842
14.6491
19.6105
26.4393
23.7569
23.5303
23.3409
23.7656
23.7312
24.2241
23.748
22.8576
23.9794
23.8787
22.7491
23.2846
19.9508
20.6392
21.6016
22.3174
21.3871
22.202
41.5678
41.4878
9.05735
13.3888
9.06103
13.3714
21.1931
17.092
17.0366
21.2435
41.8411
9.26136
21.3835
22.0939
19.5404
20.338
22.0049
21.1285
21.438
17.1818
21.4891
17.1496
42.5493
9.67234
24.1002
23.9689
23.6743
22.9833
23.3354
22.7495
103.446
9.39388
41.2644
28.9381
27.1532
21.0295
20.8096
14.0306
9.1243
8.61125
8.70046
12.5161
15.6997
15.9402
12.3603
39.0849
39.8306
18.7071
18.2249
17.9733
19.0547
19.262
19.8662
19.9521
19.2011
13.5584
9.00516
38.8391
19.3276
19.786
31.5158
195.921
42.4106
100.104
21.8078
18.8907
20.3914
19.9385
22.3522
24.0917
22.9354
23.489
21.3083
20.5236
20.6375
21.167
9.8713
11.4501
31.282
50.38
40.9628
222.342
9.33479
43.6768
13.9765
19.6183
22.3219
21.2301
13.2739
8.78743
17.6964
10.1076
42.2153
14.4228
20.1962
21.6576
16.3156
22.8071
21.6222
14.608
18.7369
32.5793
28.5343
27.8954
35.209
40.4251
37.36
12.5289
15.4459
12.4999
17.7666
16.6655
18.654
19.913
20.0889
21.5672
22.333
20.5938
21.9995
7.78095
7.16647
12.1792
15.5466
12.2513
15.8324
38.5837
21.1648
17.1058
17.0528
21.2556
41.4565
9.15514
41.3349
32.4578
18.9676
19.664
48.4626
9.38396
41.8787
10.511
15.3281
15.9425
18.8378
17.0577
19.1971
22.5969
20.7663
23.5714
22.9431
21.0977
22.4788
22.1781
18.6758
18.8268
17.3941
13.9249
17.1522
16.737
13.7012
16.8693
9.32391
9.323
9.58861
9.44137
22.3845
19.0658
19.0364
17.0117
13.9528
17.0907
17.1332
13.9655
17.1126
9.54115
9.63293
9.6818
9.68753
12.0939
11.6148
11.571
11.7979
8.72353
8.47989
11.588
14.6064
11.7442
8.19432
8.32463
12.138
14.7625
11.9007
13.3077
42.6366
13.1419
13.7868
41.653
12.545
13.5024
12.9643
12.9711
13.4845
11.1635
7.91058
49.8078
7.64979
37.8762
11.3208
32.2313
10.4714
7.09981
9.50774
46.1193
22.0342
143.197
15.2427
15.9666
15.3494
15.7838
13.1544
11.4695
12.4471
12.6549
12.2869
7.97974
8.11836
33.9224
11.9944
15.5095
16.1498
15.4695
16.135
13.2247
12.7594
12.6462
13.2765
16.3525
19.0921
18.0172
16.9968
8.22829
35.1309
18.0337
35.4316
8.12763
18.2126
35.7689
19.3858
8.7013
8.72921
38.1818
19.4722
38.0602
13.9051
14.0495
14.8534
13.2433
8.6069
9.3457
15.3565
15.9708
15.4081
15.9064
20.5867
20.0009
20.0464
20.5173
21.1934
21.8868
21.7046
21.3379
21.2674
21.4129
14.3369
9.43512
18.2867
17.7385
17.664
18.3553
18.936
19.6021
18.955
19.5732
12.9698
8.782
12.8518
8.86829
16.0645
18.2256
18.0718
16.1093
18.9165
19.4633
19.4874
18.9112
18.3602
17.776
17.7756
18.3827
21.3481
21.9657
21.9315
21.3923
20.8274
20.2433
20.876
20.2055
14.1322
9.41536
41.4491
21.7993
21.431
21.3812
21.6817
21.584
21.3829
21.1537
20.9465
20.7754
21.287
41.054
17.6875
21.1281
41.1317
15.0681
16.4975
13.66
17.6336
12.5184
9.90888
13.8142
8.70167
20.9946
21.6488
21.4772
21.2617
19.9472
18.0546
19.179
18.9586
42.802
17.7485
21.2535
19.1523
20.5365
20.3107
19.5268
16.0164
11.0732
15.0087
12.2796
20.5675
20.0988
20.6007
20.0868
20.886
20.9398
21.2532
20.625
91.8523
175.86
15.5549
16.639
14.1429
17.5786
13.1671
10.3153
14.6804
8.81349
12.4395
8.44105
12.2389
8.5547
16.9971
18.952
16.3725
20.9721
8.64773
38.0594
15.8782
12.6003
37.154
8.4458
19.0479
19.5713
19.0259
19.5785
18.4453
17.5803
17.8761
18.2132
155.593
23.6636
49.3344
34.5857
15.0533
12.1933
8.15635
19.4011
20.5464
19.6177
20.27
16.7613
11.5169
15.8564
12.603
18.4275
18.9782
18.8725
18.5229
11.5357
8.02123
15.5937
14.745
8.16729
12.1765
15.4798
13.4722
15.7192
12.8909
18.7005
34.3941
34.86
20.9416
36.459
16.8612
16.6411
16.5464
16.8643
16.2162
14.9305
10.0169
7.46176
155.05
12.2906
8.10218
17.1782
16.8626
16.8238
17.2317
18.0261
18.4326
18.4386
18.0215
21.1913
20.5803
20.7708
21.0866
41.4539
18.0244
21.5528
41.9964
27.9924
35.0645
5.88063
53.0101
26.323
41.6064
17.9336
21.5469
49.1491
6.88941
7.91981
210.758
69.4106
21.9816
22.1174
21.7455
22.3198
19.1267
19.2702
18.758
19.739
19.4781
23.639
18.6549
27.2579
15.5679
12.6035
15.5172
12.6409
17.6646
23.0882
18.6101
21.0242
8.76539
38.73
16.0798
13.2049
8.92707
9.23798
48.0869
15.9671
13.1974
8.95028
17.4162
16.8477
16.9242
17.282
24.9727
7.81395
156.608
83.8638
32.9074
19.5727
16.9544
16.8935
15.5137
14.3314
15.7506
16.0204
14.6761
15.9223
8.64672
12.4522
8.66865
12.4205
8.59445
8.64566
7.35318
11.5634
8.01329
12.0293
8.4955
8.35434
18.4946
16.098
15.9909
15.0506
14.0078
15.0846
15.2334
14.0566
15.1371
8.55281
12.1511
8.45807
11.9696
8.23131
8.3279
8.05767
11.5707
8.06321
11.6074
8.12919
8.085
9.98931
12.1995
10.8531
8.25406
10.7218
10.0231
7.72301
6.81497
8.99435
12.3498
11.7121
11.4427
55.9989
7.98592
7.85545
31.6315
26.9292
52.757
29.6327
40.4662
63.6144
237.367
13.3061
14.3852
13.4836
14.3463
11.234
7.77686
8.41061
10.8426
34.6673
19.9363
20.7625
30.1955
11.7464
12.3048
11.6922
9.89955
10.9876
11.0342
11.0929
9.97706
11.024
12.3123
11.7402
11.7103
16.8479
13.628
16.8067
13.7295
12.6831
14.1924
12.9183
13.9503
10.5303
7.5425
10.6343
7.42955
16.6202
14.1108
13.8192
16.8004
18.4005
18.6651
18.7363
18.3617
11.3949
7.79012
14.7281
13.7328
7.82369
11.4608
17.0949
16.7313
16.8185
17.0277
16.7319
15.4936
18.7703
14.2783
31.7615
7.2908
31.1206
6.59925
17.3863
17.0362
17.1342
17.4025
18.2277
18.6066
18.6127
18.204
15.0021
13.9097
13.9966
10.7121
11.9003
9.78058
18.4754
18.8652
18.7374
18.6556
18.3791
35.9352
36.0653
14.1578
10.7791
13.1981
11.9976
17.3604
17.3981
17.852
16.8106
17.9367
35.5754
16.2811
15.3079
16.6677
14.8597
18.1959
18.4969
18.2757
18.3919
10.3658
133.12
7.38609
42.1056
7.50534
84.6685
17.7344
15.1652
17.8232
15.0914
34.1746
7.62154
34.0232
7.65154
13.7506
11.3238
15.7165
14.7011
11.3152
13.7445
15.8975
14.8595
13.259
16.6755
13.5768
11.0988
15.4104
14.5954
11.151
13.6501
16.0352
14.162
16.5351
13.1627
16.7179
16.5764
16.7181
17.2518
16.9467
16.9558
16.9501
17.2489
16.963
16.5325
16.6743
16.6977
13.6844
12.9316
14.8683
14.1547
12.9857
13.8775
31.9045
16.5694
31.7907
16.6384
7.23771
10.6863
7.30968
10.718
14.9183
14.1608
13.7844
12.9686
13.8809
13.0067
18.9107
20.3648
18.8143
17.9516
17.7275
18.0792
18.5115
18.2346
18.3545
20.0976
18.1496
18.5518
17.765
34.4814
17.3347
34.1199
33.9519
65.0793
68.9734
5.70284
6.19377
16.6392
17.4222
16.942
16.9608
17.3733
17.0296
16.4706
16.6706
16.7183
17.957
17.7234
17.3129
30.2386
16.37
30.0631
16.271
7.19059
10.4378
6.26982
10.0542
13.6451
11.1464
15.1762
14.1507
11.1749
13.4128
13.7332
12.7496
14.828
14.0617
12.5039
13.5067
16.7966
14.5459
14.4939
13.8628
12.8867
13.7952
13.849
12.8975
13.7815
10.6346
12.7369
10.2105
6.53037
12.1075
8.48416
9.4566
7.52046
10.7035
7.5124
10.7488
7.80626
7.57928
17.2213
14.962
14.8283
13.9647
13.6651
14.0554
14.3764
13.8448
14.2307
10.7743
13.2133
10.8445
7.63185
7.65648
13.2244
10.824
10.8672
10.4176
12.695
10.4669
7.56412
7.47933
12.8684
10.7231
10.6
16.4584
16.3095
16.4555
16.6582
16.4875
16.4967
16.5235
16.675
16.502
16.2851
16.4334
16.4582
13.5626
12.6429
14.287
13.5079
12.5652
13.2803
27.5751
121.751
27.603
9.91623
12.0144
7.96004
11.5151
14.1219
13.4875
13.2366
12.9969
13.2928
12.8663
17.2996
17.0051
17.165
17.0139
16.8091
17.0117
17.3573
17.23
17.2199
16.8244
16.7713
16.9652
29.0461
124.281
16.6987
38.7388
32.88
15.6592
16.0779
16.2892
16.4868
16.6256
16.5076
15.9519
16.3982
16.3749
16.3695
16.5944
16.4833
29.2409
6.93243
9.97773
12.2788
111.397
10.2073
12.3511
13.1555
12.8543
15.5554
15.1707
12.9681
14.3391
13.1781
13.0152
14.1824
14.0083
13.1043
13.6865
15.4107
14.7986
12.3992
12.2585
15.3661
13.2006
15.7868
15.3503
15.8272
15.9537
12.3112
12.5886
14.6934
15.0014
14.2047
14.8455
6.44199
9.54458
10.7772
12.2241
13.6654
14.808
13.72
13.3804
11.5552
12.2978
15.0866
15.3582
15.6281
15.3356
17.6604
19.9387
15.486
13.2321
12.6777
12.395
16.1049
16.9404
12.6179
12.396
15.5715
17.7072
11.468
13.0623
11.5305
5.54228
7.20653
8.38213
9.44551
6.54376
9.17587
12.8349
9.64938
10.9956
31.827
31.0424
5.48394
6.90236
7.54425
15.3255
16.7164
29.0456
6.85346
10.2397
11.8467
14.2864
15.0543
14.9377
14.793
9.93279
11.9076
14.9908
15.5873
38.2578
121.057
13.2308
13.0189
16.2475
13.8342
12.9855
13.159
19.0993
37.4808
29.3066
12.6998
12.3987
15.8449
13.7044
12.5182
13.0356
15.6015
19.3999
14.6331
12.6853
12.7373
12.4451
12.1132
12.3481
12.2184
12.0425
12.2638
11.1887
11.8389
11.1488
6.55818
9.23996
9.2689
11.7966
11.0835
11.1101
10.4783
11.749
10.8438
6.43028
9.19985
9.11085
11.7585
11.0512
10.9999
14.5008
12.8039
12.7538
12.0282
11.9548
12.1519
12.3006
12.0358
12.2486
11.2155
11.9209
11.247
6.69117
9.44175
9.43131
11.955
11.2878
11.2799
11.0812
11.8334
11.1786
6.68468
9.44296
9.4136
11.9114
11.2856
11.2491
14.4563
14.3311
12.2217
11.7823
15.3659
15.1784
14.4125
12.2307
14.6913
15.1903
14.354
14.8353
11.5619
11.6673
13.4857
13.7629
6.23238
8.88577
12.2348
12.8226
11.3219
11.7589
13.1369
12.5777
10.7049
11.4662
13.7219
13.2698
14.3656
14.0588
14.801
14.5247
14.7026
12.2522
13.4051
11.94
14.5887
14.8203
11.674
11.5696
14.0393
14.2773
14.8806
14.8282
14.8611
14.8415
14.9142
14.9158
14.7771
14.8096
14.8747
14.7572
14.6678
14.8658
14.9217
14.6585
14.8694
14.957
14.8722
14.9346
15.0213
14.7926
14.904
14.9996
15.0056
14.8545
12.0746
13.4373
8.42054
10.4108
9.9318
12.4906
10.8032
11.0316
9.99976
8.73226
10.9586
11.047
13.5162
13.182
14.0014
13.3283
11.7933
11.224
27.0505
13.7045
14.4295
14.0267
11.1916
11.7032
14.3005
14.4579
12.8953
13.5593
13.8304
14.0969
14.4696
14.6221
11.8112
11.0897
13.6539
11.1179
11.6665
13.8709
14.2277
14.3824
14.6652
13.8606
12.485
13.19
13.1303
11.7218
11.1898
26.6993
13.5121
11.138
11.5717
12.2619
13.1387
12.8022
12.3961
9.84611
11.0156
11.1085
11.0858
11.1277
11.0704
15.5701
13.8141
15.8796
13.0409
7.81453
6.32075
13.5061
11.6596
11.1099
6.4586
11.5579
11.086
14.6545
14.5729
14.419
14.5421
14.5938
14.4016
14.6025
14.6031
14.8411
14.8536
14.7998
14.5183
14.8642
14.9195
14.6487
14.4589
14.7495
14.7917
14.1284
13.7064
14.6786
14.4571
14.5859
14.0874
15.7474
30.754
15.49
24.8176
9.16884
10.8365
11.175
11.2896
11.3302
11.3563
8.87765
10.4739
11.862
11.3812
13.9777
13.9092
14.2294
11.4212
11.951
10.2572
13.2127
12.7524
14.1309
9.0944
96.0647
7.64272
12.0623
11.7574
11.3346
13.9755
11.3994
11.9502
11.8326
13.0635
6.12378
12.5247
10.6888
10.8372
10.6412
10.6583
10.6049
10.4792
10.6219
10.57
10.7653
11.6425
11.4022
8.68875
10.1468
10.388
11.0018
10.6526
10.9518
10.7411
10.7457
10.6965
8.49153
10.1096
10.1267
10.7075
10.6259
10.6607
6.17271
6.04778
7.60258
5.19814
5.40832
6.29474
4.80137
9.49901
9.1477
9.25176
9.51779
9.67459
9.45723
9.24828
9.56512
9.34652
10.2553
9.94724
9.91771
7.71168
9.1242
9.1951
9.68567
9.58415
9.66778
9.95179
9.87995
9.88234
7.8062
9.16254
9.29139
9.74953
9.6181
9.74819
5.49537
5.56986
12.9047
12.1704
12.6442
12.2747
11.905
11.8534
12.9396
12.7998
11.8201
12.1055
11.898
11.9889
10.2745
10.632
10.3805
10.5284
10.5462
10.5868
12.2453
12.3075
12.5018
12.1333
12.6913
10.9492
12.6287
10.9952
15.0432
14.2544
14.4236
14.7344
13.616
13.5188
13.7308
13.4849
14.2585
14.1029
14.4879
13.9404
12.1893
12.4087
12.1349
12.4802
10.2743
10.2761
10.3119
10.3388
10.2222
10.3092
12.7547
12.5748
12.5329
12.787
12.204
10.6563
10.7444
12.5467
13.0352
12.6664
12.7609
12.9129
12.614
10.7594
10.7304
12.5214
11.3846
11.1264
10.9344
11.4614
11.885
11.4626
21.1093
10.4327
10.7823
9.77615
11.0356
10.6422
10.6919
9.78826
10.3141
10.068
11.2184
11.6001
11.2626
11.5247
11.352
12.0532
10.9308
20.8037
12.7236
13.6024
13.4995
13.6291
13.4463
13.422
13.3949
13.6164
13.2426
13.0905
13.3511
13.2766
13.1825
11.2676
11.6609
11.3979
11.5225
9.02755
9.21582
9.60424
9.55637
9.23304
9.43677
12.3253
11.9987
12.0836
12.2312
11.8527
9.87806
9.6989
11.2814
11.9901
11.9021
11.7599
12.1313
11.7614
9.94432
22.5353
9.82517
11.3362
37.8323
38.5388
26.0524
181.884
23.7204
81.3705
41.5518
28.4411
22.6352
208.238
28.3722
27.5452
24.0131
79.1118
198.171
45.9691
36.9021
25.3973
37.8711
45.3609
55.1106
43.2508
153.952
92.4815
46.7676
178.47
61.0057
21.5281
21.6911
37.2934
42.7485
42.3042
75.8137
78.6622
21.0222
36.0348
40.0571
35.7266
39.1445
36.5185
37.1517
79.0197
54.7629
33.5307
39.9515
21.5145
16.4039
44.9036
44.1201
45.136
28.5961
19.3905
60.0839
46.3702
52.368
21.4999
174.431
84.4144
19.6493
167.146
22.8152
34.4327
32.4086
59.5338
46.1393
86.562
35.5168
46.2689
39.8133
36.8289
38.7691
35.8421
69.2734
24.8463
83.2808
18.9991
73.0187
71.8105
19.8288
19.3623
31.9587
18.3902
68.8162
69.3028
33.3382
77.1551
33.5804
29.361
32.596
75.0797
85.7466
22.1631
33.1503
50.6169
41.5544
30.6934
17.5087
31.2454
18.5103
29.9286
37.1615
39.8439
78.466
36.5535
72.6948
18.5127
50.0076
150.994
67.6166
64.0002
44.7738
87.1337
188.748
35.797
17.5511
16.7773
34.4253
25.0424
43.1484
64.0075
60.9877
25.7532
178.915
28.0652
28.1921
190.898
68.3662
45.9509
68.1493
45.0398
65.5722
31.8841
46.9883
64.9229
165.109
40.8618
62.7246
28.8986
55.7069
210.72
83.4652
25.6866
190.284
30.2946
70.0698
29.5989
50.8387
35.4704
216.714
40.6376
176.309
60.1748
24.2997
40.594
22.8935
52.217
175.12
67.4178
267.1
26.9091
153.057
52.2938
92.3565
395.834
126.105
32.5067
193.836
75.6857
43.7826
158.561
50.2164
45.8071
23.4373
158.517
33.3326
71.5745
48.427
31.5837
23.3951
41.3237
26.4911
31.3783
22.7326
47.8541
19.0728
43.3851
63.9893
24.3374
63.7045
32.4105
21.4332
51.9281
74.774
48.278
172.997
25.4091
26.4487
29.256
175.554
29.7286
27.8043
52.7345
189.317
163.639
210.872
22.9665
52.6949
29.1446
22.6628
19.0337
45.2103
154.43
66.2322
25.6962
69.4636
18.0633
36.443
180.347
21.307
23.8257
20.4746
41.139
43.2135
62.2431
45.3533
39.7533
166.432
74.4052
77.9241
19.69
58.4746
71.3543
17.2785
84.073
60.927
17.8103
38.1251
23.8175
43.6378
61.5629
42.9549
25.6039
32.7743
62.3509
24.8681
59.6451
42.0347
368.176
431.744
65.8261
95.0426
239.206
26.9711
36.7459
18.9042
112.274
457.036
24.2532
26.1527
401.759
368.328
34.902
431.666
38.3231
205.036
68.6838
100.567
26.4222
156.54
24.948
309.752
50.9521
59.0813
31.354
499.172
412.871
97.2762
99.7151
23.0793
101.577
22.2702
375.897
28.8125
467.955
100.479
69.4929
90.6578
144.967
85.5076
78.1796
357.174
335.279
88.8703
15.3032
22.7049
51.7977
366.776
128.823
83.2658
308.67
28.6523
128.314
302.014
24.3923
76.3652
209.816
420.337
176.929
65.2701
29.1538
191.814
43.3975
79.7759
32.7035
125.85
396.011
68.9132
52.6829
238.173
62.4166
191.122
373.578
20.9067
177.261
48.7778
73.7994
367.349
113.564
99.6678
43.7601
33.6653
22.7707
203.058
29.787
523.739
378.063
345.153
24.6863
291.841
84.7107
205.48
122.157
57.4242
17.3526
368.486
350.934
89.1017
28.9946
19.0049
101.981
25.0851
77.1949
17.1774
478.12
20.545
73.8135
174.773
21.1416
17.2391
173.638
88.1119
24.6465
67.7116
332.419
26.4938
73.211
29.5301
67.5489
289.505
16.5478
45.1271
71.4607
156.417
20.401
247.819
78.3453
119.69
265.727
106.328
205.639
452.229
51.5396
22.7977
225.919
27.5356
462.367
87.086
519.852
61.8935
31.5021
665.192
133.493
249.033
568.34
211.32
120.002
24.9532
135.145
661.401
32.0067
273.305
31.9161
171.288
449.816
33.8709
66.9653
179.781
32.797
436.128
202.628
173.335
405.082
66.6142
33.4656
43.2177
516.497
75.747
117.192
71.152
546.305
208.218
36.9836
192.512
212.115
142.391
45.009
132.927
34.5746
682.737
97.442
528.241
25.2818
61.7506
36.7046
37.2832
54.0164
215.93
435.815
188.97
36.2966
177.813
51.9055
214.999
81.3262
44.6895
37.9582
505.186
86.6511
244.99
37.4179
33.1486
211.812
33.2324
325.228
48.4846
23.0661
647.437
49.427
276.552
72.2091
596.653
193.831
29.1197
235.039
105.392
111.889
48.9451
109.942
79.1198
50.6788
225.474
251.554
36.0672
42.4531
42.6021
202.733
215.589
99.1332
47.9792
232.14
32.3651
203.457
116.78
193.148
95.4933
512.506
38.1943
97.6293
62.6426
168.863
32.819
64.671
102.078
508.097
23.379
39.4417
26.8993
177.855
90.8154
131.415
23.106
374.276
471.043
25.0133
17.483
16.0778
69.5451
15.9992
14.8385
47.2148
51.7813
14.7106
50.3977
50.8687
13.6244
13.5964
14.7872
14.4754
45.7332
15.0824
51.3583
14.9101
55.2859
44.8104
24.4501
23.3725
120.396
24.8528
29.7274
55.1969
42.7187
13.5855
12.295
47.7581
15.1795
56.7047
18.6485
62.0223
63.1274
16.0088
17.2583
57.8155
62.5499
71.0408
13.9092
143.941
26.8964
55.785
16.2451
53.2344
18.081
16.3846
14.7781
43.0096
31.6074
155.252
18.0118
18.3953
54.6848
21.6341
46.6492
60.5089
25.6105
21.6131
20.1325
65.491
20.6814
20.6804
15.6148
65.5618
20.9862
19.5175
15.9121
55.6289
17.2021
19.804
57.9938
17.7016
16.0934
54.1366
16.5637
52.3733
49.3525
49.8946
49.7323
50.762
18.6398
54.088
18.6525
68.3669
16.5731
56.9671
16.107
19.258
66.8639
61.2566
19.5602
57.3507
58.8922
58.994
17.5243
19.1797
19.5222
19.4573
60.0368
55.1119
18.8209
58.4662
18.2867
58.5783
16.2993
29.8091
14.2694
133.475
20.2847
70.6929
17.9003
164.97
31.1752
61.8649
63.5127
18.4783
17.5585
59.0583
18.9271
58.9574
19.451
36.1809
131.992
45.1369
57.3296
65.1343
22.5429
24.0921
33.7609
20.2886
25.609
157.63
19.7639
21.2306
20.8639
159.577
25.2484
68.5809
26.8046
77.8615
20.8802
34.8332
22.9496
14.32
15.6105
48.5199
52.2275
15.7955
59.3442
15.5872
50.7147
18.689
59.1267
15.6165
136.717
17.2563
15.4506
125.833
44.9248
15.4827
48.38
14.1444
132.556
53.5289
14.9952
17.4412
16.4653
45.1171
75.6783
27.8624
185.382
16.7674
40.4292
23.6162
167.02
19.406
19.7697
152.352
20.7096
24.5519
55.7502
21.2436
50.4496
16.2004
38.0892
161.219
52.5217
19.2492
25.5253
21.42
129.336
15.7
35.7956
20.2191
50.1304
18.325
47.7926
58.725
27.0352
95.1009
39.5675
30.3032
16.097
60.6821
46.8406
71.8873
21.8295
69.7333
22.9678
23.3176
24.3067
30.0415
82.3249
62.1617
19.7549
70.255
48.0445
15.3793
71.0554
78.2799
65.4615
15.1512
19.0553
66.1097
22.2376
82.0907
54.7397
62.9204
18.153
23.748
71.7851
82.9022
22.4654
78.3812
26.6143
22.2163
56.9297
22.5094
13.8132
57.0878
19.6379
34.185
49.454
55.5885
167.746
21.9039
15.0111
26.3108
22.6396
22.0984
63.59
61.476
45.0667
19.9704
23.122
42.5906
32.1152
26.184
29.2161
29.1468
37.7602
190.869
18.3548
23.0961
33.0565
86.0364
26.7166
190.198
53.5979
15.1919
103.063
219.567
427.294
29.6604
236.569
97.1347
58.4209
23.0752
18.9177
372.418
167.411
99.1545
46.9722
14.1958
90.799
16.08
33.3234
38.0118
20.5512
41.0521
70.4894
178.829
17.9152
21.9298
12.0912
69.3517
364.041
173.739
42.0711
21.7866
16.099
79.1279
166.756
23.5535
412.457
19.3869
13.9677
34.9749
41.6592
192.759
16.9013
181.465
31.7228
44.3507
20.7957
96.1187
20.6148
16.6672
373.901
16.3905
25.4861
127.797
45.8165
58.4965
506.176
30.0273
46.1792
51.8775
420.262
111.853
475.235
25.8648
17.2746
51.0382
54.4024
99.9542
41.0731
212.749
18.3583
203.125
486.973
115.066
218.728
32.983
101.476
50.0766
34.8834
49.3025
435.818
22.8937
496.447
37.611
19.3668
230.342
12.6136
37.5148
16.96
206.986
399.716
31.1568
36.3828
52.4538
101.859
26.5957
159.951
96.0744
85.1127
36.665
374.653
15.7174
14.8047
16.9616
31.2448
14.2046
16.8553
97.06
179.189
343.665
471.571
473.471
52.7444
90.3621
32.1245
24.69
43.2846
56.7414
18.6596
17.7043
231.022
510.5
199.978
22.8534
26.3862
26.0822
236.871
153.471
234.355
69.9131
218.853
190.579
25.86
29.9394
58.2715
23.5684
105.255
202.471
25.6287
170.332
22.2222
96.5422
16.1378
29.9135
75.4472
37.19
68.6958
198.296
31.2528
30.9191
280.94
44.181
801.759
220.581
246.591
26.9789
536.234
87.8677
57.7447
276.361
124.32
71.9284
636.726
101.585
37.162
117.54
28.6141
65.6413
214.056
22.2669
33.5675
51.6407
27.9648
31.2888
96.1395
228.962
26.1463
180.166
33.4197
242.527
41.3313
32.7515
225.383
231.628
36.5094
34.4189
189.73
19.7982
29.6265
10.3037
19.3822
474.016
184.437
22.2438
22.5147
60.9148
226.545
48.4062
52.4103
21.1559
44.1179
25.8046
40.1998
27.2384
113.795
29.8233
65.555
28.8903
103.271
63.6092
31.7813
215.74
648.362
28.1417
266.955
181.213
40.2249
59.7912
203.786
195.105
20.9395
47.3474
33.0471
690.7
698.614
491.519
205.197
22.8733
47.5867
20.7294
83.8736
16.7246
19.8788
17.8608
24.7548
36.7749
49.7626
21.5397
44.9931
55.6446
108.345
195.877
20.641
288.347
59.3255
632.414
53.712
123.432
20.6152
100.838
252.351
60.1534
29.0636
26.0089
28.5883
200.58
47.4404
52.595
168.75
62.5907
29.6908
212.34
617.636
243.298
193.084
28.0887
26.5997
16.7363
15.8621
12.1261
25.3027
12.3896
29.8725
39.7095
39.1982
44.6939
42.4971
66.8094
15.2921
47.2298
14.4401
72.2208
15.8015
11.2168
24.1489
51.9352
16.2558
56.3818
16.7519
16.7997
16.7578
63.7943
50.6077
30.2666
151.506
53.6931
17.1768
146.568
43.0211
11.7948
46.5156
15.9662
29.2321
28.5606
15.3033
50.2608
50.8264
54.4685
17.2655
45.1631
16.0233
50.5301
16.7996
16.4164
14.7139
47.8979
50.3034
59.0535
19.2848
20.2462
50.1898
19.0403
31.9422
14.087
45.1523
13.1387
28.8397
14.4271
48.8317
47.0064
65.7958
19.7978
13.3538
12.5648
14.472
14.359
21.687
57.7794
57.2892
12.7671
43.7123
47.16
44.2763
59.7736
14.3127
12.8025
42.6329
13.8045
14.2141
21.1904
67.0506
58.7547
17.4681
49.9425
16.0382
44.297
42.2448
67.9732
42.9283
11.8922
45.5386
14.3094
14.9194
60.1134
23.7829
13.5962
12.4319
25.7364
54.2514
14.764
13.2328
44.7517
12.5176
15.9603
25.8358
67.1505
68.0125
24.329
16.1119
50.5213
17.9235
52.2567
17.3874
26.9841
12.5462
20.2576
11.748
40.5898
23.2816
27.9864
14.1514
27.0452
14.4126
80.5459
17.3474
182.026
25.0074
21.5725
22.1886
70.7378
19.1511
15.1747
51.1914
36.6207
196.326
19.7835
20.0299
54.1902
58.7118
16.8925
18.3387
19.4432
51.6829
88.8499
197.722
14.2018
23.9257
38.4173
208.278
28.1945
29.5233
90.4965
63.6374
17.3898
18.4566
17.031
72.2908
31.5677
92.0818
25.347
15.9591
50.8029
24.2912
57.7851
15.2811
18.3068
61.1574
18.4418
57.5802
57.0241
15.5798
37.4829
60.9606
64.8335
20.084
27.0493
15.2935
26.4385
13.7792
47.7895
34.0902
68.0716
56.3879
25.5542
21.4527
41.2115
17.1889
17.4792
69.1413
19.2928
34.9808
17.43
46.1912
234.409
22.5363
58.0622
63.3409
209.386
29.2802
47.8028
57.5802
17.743
18.6681
49.1317
26.1295
80
30.3007
15.4541
15.9939
88.9508
37.0242
31.6667
51.9684
91.1631
54.4966
22.9245
65.2849
28.6454
65.9938
21.0769
58.4513
16.9865
71.422
32.3038
80.1633
73.9848
17.1259
27.8038
32.702
18.8401
50.0986
36.1362
72.8821
84.9034
19.3272
30.8921
28.9247
72.7334
51.8082
30.3675
69.5397
26.1942
51.7895
17.3548
69.1198
18.5172
76.7175
71.5569
18.5618
25.88
241.589
253.023
36.938
21.9069
25.1178
16.2849
34.1576
116.139
88.8167
19.7803
27.4161
71.6985
23.1983
52.2141
18.4733
27.5966
16.7879
41.825
95.9198
51.9866
58.1526
201.669
114.797
69.1367
30.1863
24.4074
38.9845
116.029
44.9747
57.1053
53.0723
29.548
45.8194
24.5204
26.8078
34.2372
17.4437
464.899
358.945
30.2262
34.0479
22.3887
43.3399
22.8421
19.5781
13.3712
31.3185
29.3356
14.1994
375.564
22.2524
20.7626
51.4449
44.1938
11.2646
88.8074
35.0346
41.3575
178.564
93.6978
57.4176
20.7921
11.6591
13.9736
377.849
14.7546
13.336
52.8857
23.1075
38.328
32.1576
155.01
11.7097
11.1115
13.2149
19.7082
360.628
155.145
39.3809
23.2855
27.3787
26.9506
13.958
23.6895
48.6887
39.8797
35.507
14.3045
17.1266
32.4806
50.1808
44.1739
43.6169
95.7829
48.5197
24.3768
32.3519
35.2169
99.1229
62.3928
67.3315
48.4461
62.8322
14.8886
563.464
62.3956
51.6702
23.1375
188.156
33.2755
21.7232
41.1079
21.3668
45.7458
233.554
109.086
30.1614
111.449
62.6539
47.5361
166.996
17.6974
24.1593
103.885
31.8607
55.4925
35.2406
24.8772
109.384
23.29
23.693
631.623
22.6571
24.4055
55.8464
645.712
254.527
16.5911
62.7116
30.2825
242.605
99.1651
213.377
46.9937
190.115
52.7046
27.8711
52.5825
20.6243
48.7262
67.8488
42.5358
209.848
46.5962
100.572
21.8841
23.1551
48.5926
105.786
23.3133
34.886
20.8073
19.3858
174.026
46.9556
41.8998
16.6408
195.28
576.721
180.626
21.9463
21.3488
23.3866
24.3774
37.5062
27.878
16.4099
19.5308
637.896
608.964
21.7604
17.2164
229.313
21.1231
182.662
67.5998
107.362
13.6426
17.5366
112.45
36.3156
106.401
33.9162
46.2577
39.1378
19.3054
243.485
42.6752
23.3241
59.1974
37.6164
34.5032
33.9587
19.3569
20.0843
55.9365
111.238
183.791
46.094
18.2586
200.729
168.918
31.064
19.3646
29.1801
39.1554
20.6316
17.3707
569.598
58.2628
33.5865
103.241
19.9697
33.8889
31.3767
59.6347
33.6593
52.6495
217.695
54.4265
63.7493
174.051
13.8793
14.6015
23.8023
61.4492
61.1855
60.2409
25.0732
24.414
62.0676
24.0671
13.0853
14.1224
24.101
65.8838
25.2491
26.6724
62.471
15.1428
36.9658
14.6141
35.7051
61.9006
12.8582
23.8439
23.8646
24.4427
13.1726
24.4121
60.018
60.2143
14.5428
14.832
25.6914
59.9946
23.6558
65.1866
80.2566
200.887
18.1701
53.6004
20.667
48.0917
67.2824
49.2267
12.9775
24.7395
24.054
18.984
11.9903
22.3517
62.1161
60.6619
51.9454
14.8913
28.5812
15.7262
26.8416
61.8106
62.3364
67.406
65.2077
15.7871
28.7837
15.8315
28.684
12.7894
12.6408
20.9342
52.355
53.1042
58.7337
23.5744
23.8945
57.9265
13.4049
24.1279
13.0608
23.8626
56.0914
23.1094
22.8381
56.7725
12.1627
22.1517
12.8067
22.6347
21.5286
52.4727
22.356
13.1763
12.6762
12.3392
12.6727
54.3658
23.754
22.5731
39.7428
74.4044
186.77
48.4863
14.9228
73.2514
26.3699
63.1561
63.5834
26.6806
63.9097
14.6014
19.9152
41.7335
197.931
20.8035
32.1379
66.8464
53.3312
53.5775
25.693
61.7769
25.2459
13.3504
13.5963
14.204
13.9527
60.1651
24.1584
24.6277
27.6108
73.2469
16.1498
16.6071
28.4825
69.7788
61.3878
60.6665
24.8832
15.4285
14.6615
59.2555
23.7556
62.4275
56.2439
57.4606
41.5091
17.2359
32.2869
75.4505
78.3021
17.2816
30.8066
31.387
21.311
13.2598
24.0127
29.9108
15.5809
27.4938
206.479
15.1687
27.278
41.4469
13.0988
26.7165
37.2844
276.932
50.0257
99.6626
88.9222
34.9386
75.7451
36.6844
21.6855
16.2273
24.6059
69.9622
18.4192
61.5899
237.042
18.8212
22.151
57.2921
20.871
32.9271
16.8575
21.8502
13.9665
52.0881
69.9793
15.7278
19.4509
49.9748
29.0304
64.5988
30.6435
70.8909
15.8589
70.9137
73.379
29.4054
21.0291
35.9269
19.9524
39.5838
85.2663
292.463
76.8287
16.6216
59.0451
20.0661
38.114
28.9085
41.4276
16.0824
33.0661
18.7647
28.6675
63.6328
74.3234
272.099
85.0213
18.5256
57.8589
110.297
27.5509
32.8505
89.8469
48.677
27.0271
23.4396
15.4921
13.2332
77.2605
30.3525
32.142
20.0773
19.1946
17.1991
18.0647
28.1266
27.1716
62.4758
26.6171
15.1184
15.2359
26.4915
60.8934
14.2769
14.9108
68.5432
15.3964
26.664
14.7787
15.3517
25.79
14.8161
35.326
24.5249
62.7982
26.4252
13.7227
247.91
27.076
22.9944
14.8876
16.7505
273.918
69.8274
15.9574
16.5245
19.0784
17.3177
93.0175
79.6015
71.603
84.6809
43.6171
55.7407
72.0437
28.8523
29.716
69.868
18.071
30.7542
15.8329
29.1948
20.6301
205.447
60.3685
27.454
25.8383
66.0476
23.2611
14.8049
78.6878
73.8192
22.0137
34.1904
39.3597
268.362
98.6786
62.6343
26.8869
31.087
43.667
19.0744
30.2795
303.539
25.0692
15.8913
17.9476
31.6512
86.4755
76.193
35.4627
22.8805
20.9141
37.7312
80.1954
18.0077
98.3891
58.8491
168.309
51.2858
15.7768
437.611
13.4207
15.4396
43.5267
51.5351
58.6435
39.6801
99.7846
443.742
23.4365
30.7107
15.9489
451.319
15.95
28.7459
31.9744
42.3866
40.1576
32.7867
26.7645
18.4239
21.0117
12.8137
31.4357
27.703
12.5822
24.588
32.1274
30.359
34.3959
20.325
24.8015
35.7676
36.4149
18.1162
13.6087
14.0902
35.374
32.0603
93.3149
97.9034
39.314
50.4305
36.417
50.24
41.1239
44.4121
22.3502
26.7553
34.3386
22.3549
41.296
32.6627
10.6862
16.2716
11.0032
16.972
18.4457
12.2046
156.856
46.6068
50.0789
37.0049
134.246
37.4503
35.7482
84.3387
54.6706
87.3744
36.4222
26.9256
34.0704
29.1645
14.5607
13.9921
147.48
435.482
60.2465
173.642
27.4732
21.4355
28.7658
20.3505
14.929
19.7549
21.6751
13.2991
47.9965
163.387
28.583
41.6684
11.8463
148.709
17.5819
16.44
20.1077
220.248
28.0957
30.1182
22.06
591.091
21.9072
36.3116
149.4
42.7394
166.04
17.9736
26.9662
52.8632
18.2166
14.437
106.346
53.0744
166.754
64.8945
31.2255
51.5506
39.5999
529.423
18.666
14.9849
209.599
19.2027
37.1718
28.743
23.6766
45.3433
15.4091
19.2092
25.2854
182.25
39.3231
97.3627
61.3301
167.78
61.1304
56.4106
36.9423
58.6546
38.8073
59.2715
160.896
179.162
19.1763
18.3264
54.3146
58.1419
33.8816
58.7143
16.7559
132.401
53.4816
27.746
223.918
185.611
19.8662
33.2342
582.766
14.3784
120.778
81.5369
34.1408
24.3555
191.187
161.906
24.4877
16.08
156.875
16.6332
25.6235
33.5665
24.2346
19.0772
29.3471
28.5413
61.3782
22.9006
13.2237
13.3391
22.7699
12.9011
12.8745
22.7324
12.8148
13.2189
22.0125
13.0882
12.737
14.3253
24.0407
14.07
23.1703
13.4381
13.4558
26.592
66.079
62.2141
58.2555
24.8143
13.8518
58.2468
25.687
59.7845
59.0401
14.478
24.447
23.3626
56.5786
56.043
59.7445
24.505
11.851
54.6597
16.6483
19.4935
18.8948
11.6227
20.739
13.4612
12.8667
13.9928
14.3783
77.9671
21.1178
31.2236
33.7898
21.2604
66.6357
23.4095
56.846
54.1609
43.1666
22.5681
14.2543
14.0475
17.6594
26.2684
56.0191
56.1251
26.0715
55.6893
22.7856
13.1191
13.3792
22.2082
12.9594
12.4125
21.2794
12.7708
12.5187
21.4604
12.3041
12.937
42.8691
69.2128
12.3143
20.1055
21.1152
12.0483
62.2396
29.6372
12.8469
22.1893
20.9787
12.6654
54.876
13.0834
12.674
12.3032
62.1483
30.6665
20.835
66.7353
27.9969
19.9106
13.129
21.9238
25.7306
14.615
54.1123
77.7662
40.4577
17.9039
12.7703
234.294
25.6338
14.1342
37.0372
250.384
50.8597
88.5189
19.2589
17.0368
68.3091
74.0152
53.979
30.7128
17.079
26.7798
16.0055
26.0548
49.2261
25.0414
15.8916
16.5518
61.1543
73.9706
97.7653
285.163
64.4343
32.2025
79.6016
34.8849
90.621
72.7455
16.7623
86.0038
39.5877
23.308
14.3402
71.3712
70.9461
16.2219
25.6266
27.394
15.9128
22.0471
37.4541
24.2531
33.2269
12.4364
32.1901
22.9122
256.976
39.0637
53.9927
14.3468
65.8114
16.9253
77.0487
28.5993
18.0131
27.6859
36.3251
75.8225
24.047
34.555
24.3506
23.8687
35.6547
69.1843
14.5101
65.1232
54.8117
25.4437
24.5898
50.7835
239.465
66.287
15.4046
15.1803
31.1049
30.4708
67.6012
54.0268
27.124
16.8906
18.1251
25.801
31.5942
72.8453
40.2851
80.1038
85.3099
49.3835
24.3163
37.0038
25.3306
20.9668
14.9925
67.8741
15.4539
24.4177
15.4237
24.4652
63.9921
82.0607
15.1291
15.1299
31.7654
36.2046
67.7755
27.0429
16.2324
35.7912
35.7505
18.9652
19.9033
12.1452
419.889
129.103
14.4579
159.358
161.38
136.166
37.0831
40.3067
46.2735
419.13
53.9761
87.625
26.182
24.0051
20.5131
36.6315
48.947
37.8568
29.4155
37.1456
34.9247
56.1828
46.0632
41.5835
23.2213
30.0445
27.1401
29.0696
31.3477
29.6913
13.1087
16.2511
17.6342
36.4104
35.5331
34.4772
32.5793
33.9891
35.3728
12.3226
10.5046
139.646
38.4154
53.9665
45.4345
46.0556
148.675
82.8165
13.9205
18.4086
12.0927
15.7555
42.38
36.123
34.6808
24.2245
19.5154
26.3534
29.1927
21.2089
28.1962
38.0157
26.2118
34.5933
56.3232
37.948
39.5944
22.9812
30.3243
30.821
13.51
14.7407
142.922
18.7595
203.079
34.2227
24.2018
17.0383
16.5648
16.6769
24.3592
35.0544
37.8398
23.5747
512.765
35.2958
92.7661
38.3104
57.8741
21.244
11.7185
13.8808
18.528
27.6749
21.9562
55.2478
87.1803
140.729
15.2944
15.8102
45.351
59.4824
36.0806
53.547
30.8428
21.2241
24.5147
21.5382
14.9408
20.8442
15.2291
12.3882
18.1304
23.3875
19.3779
17.301
13.732
11.8603
32.3334
35.6122
16.6826
22.2158
35.1345
28.3253
37.0116
32.3674
48.6346
34.8998
144.101
46.9746
43.6668
54.9378
12.7661
20.2229
21.1079
27.5575
26.3117
29.7468
176.316
16.7875
496.15
47.9888
31.0435
45.9188
32.1967
22.2927
33.5692
22.9429
32.5106
12.8142
11.1473
22.2193
13.5085
50.8881
160.627
48.9596
15.0695
21.7918
14.5496
22.55
150.782
141.202
176.579
35.0083
46.3366
23.4641
30.9467
50.5929
39.3893
174.499
89.7807
137.071
29.6321
34.7539
88.3832
176.096
45.7365
146.081
17.8984
26.1186
26.2082
53.8019
54.7349
17.6227
12.0128
11.5509
18.4969
201.04
18.5716
11.972
12.0545
18.7619
29.218
13.0405
20.6511
19.9958
12.8918
30.3316
66.9438
66.1767
28.7569
12.0559
18.6559
19.7162
12.2495
55.3126
26.5485
55.5346
57.9685
21.6163
30.3409
12.9675
13.8514
72.0518
30.0628
20.5631
65.9382
75.1158
22.2946
32.0818
11.6549
19.0496
14.953
10.8017
34.6096
27.4217
16.5607
21.3196
21.6402
12.5521
12.4659
56.4425
12.1682
12.3571
18.5701
23.1965
11.3915
12.1914
53.7277
22.4554
17.2366
30.033
58.6944
58.6504
30.8147
63.2027
18.5342
23.9744
12.4173
12.1398
53.4298
24.4878
19.0965
27.2401
18.856
12.5207
28.4606
19.8523
12.1785
53.1231
50.3702
18.6629
26.1605
53.7858
12.3273
12.0925
55.1038
28.1849
19.1156
26.5156
41.1295
36.6319
29.6568
16.0119
15.4857
34.4947
71.0914
23.9824
35.0761
23.6857
34.0632
60.1387
67.4098
33.992
24.8218
16.5867
25.4694
16.191
31.3605
19.0216
21.5861
26.9618
88.2269
37.0175
74.9211
41.5252
21.6821
28.0198
16.9323
26.5209
37.3253
31.2066
32.6829
45.0366
71.1414
36.0451
72.8237
35.2764
13.8794
23.7329
16.6239
25.0056
81.1846
38.5952
37.0065
64.6236
61.4903
15.7986
15.87
22.5995
27.8136
30.816
20.281
69.7722
22.1287
13.548
59.7202
14.2334
20.9235
21.8787
14.6045
67.5859
14.2182
65.9898
22.8685
85.4989
16.9267
26.4425
25.4007
18.3057
74.0157
30.2642
59.4271
53.7309
29.1844
23.9064
30.1533
31.4266
22.3798
34.0517
24.0798
32.7964
24.2523
40.1339
71.8398
36.7398
83.8824
258.64
36.9293
25.1957
77.8151
37.4469
23.7548
29.4232
36.6673
25.6459
34.3927
27.9134
86.3878
16.7122
268.445
72.9454
15.6955
23.8526
16.6123
63.6981
35.8974
18.3718
27.568
33.6693
16.2025
15.7411
66.2185
32.8329
68.1068
14.4942
14.828
12.5811
11.6201
61.9479
13.3942
17.9568
20.4478
45.9759
323.726
122.058
29.2428
26.9501
28.7115
25.4371
25.0401
23.778
336.086
346.512
11.0962
84.1088
131.66
77.6913
378.259
47.4456
14.1566
13.1059
25.5604
25.3421
15.9013
14.6614
23.148
17.6124
21.1948
22.743
11.6256
134.493
20.8412
15.4608
36.3929
33.9815
29.4183
29.0314
31.6267
29.5739
29.5659
31.1336
20.7114
22.8696
30.3034
25.9988
71.3828
35.8473
37.9951
33.238
32.3559
32.195
22.3338
26.9211
17.6324
22.7849
27.8601
25.8898
133.385
14.3277
119.647
53.8565
42.2553
38.7204
83.3402
163.43
15.4971
43.8436
32.9817
34.5622
26.863
28.5221
26.1702
22.3216
19.3808
34.3444
30.4876
20.8062
26.2515
161.757
46.664
53.3126
128.771
18.4092
21.5435
12.7104
20.7123
14.4255
10.2151
15.1393
19.6006
24.3116
18.9706
24.9549
26.7561
19.2849
19.5351
26.25
29.2863
21.7455
31.7061
20.8355
17.2615
23.5689
18.3083
22.4813
11.0159
50.0252
78.5702
146.403
35.1034
29.0211
29.7367
33.8217
120.902
23.3081
19.5859
76.4217
116.028
409.966
14.7007
20.024
13.699
26.0935
19.7352
12.0084
14.9293
31.4355
28.203
27.1198
32.6396
34.7961
40.1759
44.6811
32.7937
22.5292
26.5603
26.2458
22.7894
17.3315
12.1038
12.9511
16.2552
31.3077
40.901
35.9799
33.6246
27.5248
23.8147
24.4649
27.0423
34.0282
30.2705
29.6873
35.5102
39.7302
48.1203
74.6039
36.3294
13.2883
10.446
14.5446
116.948
16.9249
20.1822
21.0252
15.963
44.5111
119.601
13.5935
13.0415
42.8572
129.786
20.3774
15.4117
21.1707
14.7644
426.787
113.067
10.3991
13.7961
14.8202
127.833
18.8506
13.2704
113.104
18.6741
13.4231
114.932
25.3812
27.7684
23.8955
29.1681
22.3218
18.3067
17.6217
22.9537
15.9451
400.067
124.401
50.7712
46.4636
42.9386
31.8823
39.0561
33.6208
121.778
13.1112
24.2043
18.4013
19.5758
22.9811
30.6815
37.6011
32.0303
35.6506
15.0219
20.5219
19.9292
11.9663
12.0605
49.5435
11.8595
11.972
12.2427
19.0476
206.638
10.6545
20.4379
16.4341
23.2182
28.7444
56.4591
23.4202
29.1768
56.0973
12.1864
18.1462
55.5047
18.3148
12.403
12.4419
18.2866
17.9207
11.8103
24.2851
27.1943
23.493
29.0304
33.9124
213.848
12.3815
18.7577
55.7521
18.5093
12.5044
10.499
45.3432
15.5515
16.347
11.539
10.8165
44.6957
9.73355
43.4451
50.5037
11.5549
50.8087
50.1209
11.5258
17.4002
21.6105
24.2111
28.572
17.355
21.5881
23.937
28.4516
50.8815
11.6962
50.8297
11.6747
201.403
13.5111
49.8922
15.395
11.3035
17.1858
21.5804
25.0066
46.2966
17.6785
21.7962
26.516
49.3341
51.6209
11.644
11.7248
13.843
59.5831
20.4025
20.9528
13.584
58.0091
53.1724
55.0913
17.8991
26.1954
24.2699
19.813
248.578
61.4389
14.2754
22.0374
15.1413
21.636
57.6284
31.634
21.5102
23.9167
28.4784
36.8487
70.0213
37.3511
68.4695
67.9853
33.0596
14.4708
16.0496
34.8111
63.5446
38.1854
28.3962
34.9797
29.4945
41.8243
74.9249
38.4899
86.1925
51.3247
72.8701
221.322
18.1945
11.9576
55.0966
16.7437
13.8089
14.2499
29.0731
24.9641
29.531
57.6799
25.0621
29.8386
29.7477
55.5201
55.1933
30.6465
58.5297
26.1841
32.4987
24.9111
24.6797
18.9269
26.1669
17.2474
30.1887
35.962
29.4969
37.0063
34.9412
29.7899
38.4172
28.0656
18.4056
17.0545
27.2196
38.1767
30.2912
33.1282
26.6259
49.702
33.1145
57.8829
59.2274
25.077
29.7077
30.1159
213.627
200.91
52.9947
54.436
13.4166
12.7824
27.6709
27.4503
28.1746
27.0629
27.9197
28.1028
27.3243
28.7608
14.087
9.24552
11.6488
290.817
30.4103
28.3417
29.3204
28.8725
40.3574
62.6953
29.8275
28.7384
28.8097
29.5561
32.9607
65.9321
35.0038
43.691
23.017
22.7735
23.9398
21.6745
23.0331
22.3207
21.4878
23.6871
64.8511
9.77246
300.214
118.285
19.3177
21.6817
20.8379
20.4231
15.196
10.7543
13.3532
12.567
17.0158
20.5256
19.5128
18.2015
11.9003
9.97442
9.02887
25.8612
26.781
26.4349
26.2007
24.6306
22.5592
23.8811
23.3636
24.1872
26.4578
25.1004
25.6261
21.715
17.3013
20.3769
18.9839
27.4774
27.6405
28.0478
27.0791
27.2722
27.405
27.9207
26.6537
19.462
20.8167
18.5648
21.6665
18.1383
15.8022
18.9811
14.8528
379.944
12.1771
12.7004
46.4726
69.3982
137.928
27.2963
29.0009
29.6341
26.5915
24.7607
22.2207
25.6987
21.3027
20.6999
16.2528
16.8451
20.1483
23.9225
27.6775
26.5212
25.0854
395.672
105.802
13.2474
18.3083
14.1792
17.3191
20.0478
24.5002
21.2551
23.6085
129.789
109.314
17.788
21.1731
21.7325
17.2165
68.4084
134.217
376.301
11.5259
10.1346
39.8928
101.272
36.5133
17.0294
21.6901
20.5193
18.4809
12.5267
11.8103
17.7997
15.4321
19.3485
13.9818
20.0533
22.6429
23.1089
19.5956
39.456
30.2939
31.1233
36.734
24.8542
23.417
23.0207
25.3651
28.0524
28.7922
30.0466
27.1464
31.1374
40.851
38.2426
32.439
23.1826
19.8411
21.0021
22.1866
13.2202
129.345
16.5273
12.5851
108.175
17.2761
100.081
15.4867
19.9967
16.1335
19.4563
28.2612
25.7689
27.7037
26.265
127.009
102.43
11.8217
13.7423
15.4285
10.1526
10.1564
360.375
104.294
44.6957
12.3063
11.3774
100.518
350.718
123.239
40.5737
30.5064
28.2296
31.5387
27.6709
9.72361
14.8665
14.537
41.1206
45.3728
30.2969
53.0998
62.5288
27.3738
11.7303
17.4682
20.8291
23.4419
11.6621
17.1221
21.3358
23.6457
26.2977
26.5241
50.49
23.5261
23.9752
11.3664
16.5493
20.2992
22.2043
11.2852
16.7701
20.2326
24.0761
24.7141
24.3321
47.7344
9.94524
43.2215
14.6022
14.6473
24.3224
47.0397
24.2384
24.0271
46.8037
24.0857
20.1071
23.3792
23.1931
20.1269
10.9335
46.2218
16.5691
20.1288
11.2714
47.6613
16.0445
19.988
20.8115
24.0833
20.5546
24.4379
21.8225
25.3636
25.8786
21.5688
11.4973
49.0251
16.7667
21.2052
11.3898
16.8603
22.3568
21.6223
25.4259
21.6181
25.5012
27.5265
22.8326
25.1247
30.3497
25.3742
25.8873
32.3601
33.5344
27.4936
22.1694
23.7426
24.1593
27.7277
52.3956
54.7504
28.0062
18.0015
12.6497
53.2542
19.0432
12.0039
50.9288
24.859
28.8713
24.4671
29.2431
57.2772
13.771
12.8024
26.4536
35.4828
28.8196
31.2912
17.9049
20.3629
20.9818
24.6948
27.685
23.7682
19.401
23.0177
22.0099
22.2414
26.6013
22.855
61.1895
25.8411
49.1672
47.7626
29.6023
28.4749
17.2645
12.2264
17.5419
23.3609
22.1535
21.5805
20.8914
22.902
21.2366
12.3844
18.1589
17.7897
26.4651
51.486
21.5694
23.2831
22.6303
21.4055
51.9539
27.3032
11.9296
50.5405
27.3138
50.0335
11.0034
217.939
51.758
26.702
49.5151
25.8436
29.3249
26.6909
27.7365
12.9261
13.1432
24.5463
26.0746
24.362
26.1392
13.7628
19.4028
18.492
23.7479
23.8999
21.9547
13.0718
19.1562
18.3951
21.8573
23.2087
21.4905
48.3745
207.17
23.1117
23.9188
26.1551
25.2133
64.2423
28.3402
23.7709
23.6319
23.6814
23.6853
24.9367
27.4583
26.4743
24.992
24.5752
24.8062
25.051
24.4496
23.6816
23.2165
23.5488
23.3619
21.1775
22.2269
21.7656
21.6899
15.9636
12.9747
14.5798
14.5044
19.3705
19.4152
20.1218
18.4851
18.2106
17.7264
18.914
16.9498
23.0373
23.2624
23.2644
22.8924
22.3626
21.585
22.5769
21.3496
23.8776
24.3718
24.1279
24.1112
20.8892
19.5255
20.6479
19.7533
15.7311
12.1401
335.709
12.6492
15.238
24.4865
26.1635
25.7553
24.849
22.3727
23.1989
23.7484
21.8654
18.8218
17.2928
16.0044
19.8412
18.6314
21.0311
21.4369
26.2482
32.4959
25.3245
19.0057
22.4982
21.9207
23.639
29.7917
24.4104
89.9122
86.1356
11.7514
9.09064
83.3802
12.2012
56.0964
317.475
17.2305
18.9404
19.2622
16.814
19.6072
21.7467
21.3627
19.9633
23.0044
26.7979
23.6953
20.6719
23.0851
22.3442
21.4074
20.415
21.9234
29.0913
25.5703
24.4949
278.103
10.87
9.72109
14.7787
17.3635
17.1271
18.4907
20.5318
18.7783
14.6097
16.6524
16.9239
19.2911
20.7962
19.0124
78.0788
27.436
79.6847
82.1284
27.7645
54.0005
32.0673
29.5736
23.6642
22.2136
24.1746
36.4622
26.451
27.5225
25.6284
22.5651
24.8254
13.5102
16.4853
16.1845
13.9382
11.1099
13.4243
13.9169
10.4812
105.802
8.64525
12.4541
12.4999
17.3827
20.8084
41.2464
17.4199
17.3198
20.8234
41.3429
17.3923
16.8165
18.3457
18.5807
16.5928
41.26
21.446
41.2902
21.419
9.94202
14.3648
9.72725
14.3025
16.4914
18.2698
16.5131
18.246
17.4044
19.4488
18.8408
17.788
39.5451
24.8677
40.1301
21.5159
10.0917
14.196
12.9384
17.0837
21.2162
18.7386
18.7543
8.16895
35.6167
11.8305
11.8625
17.1567
22.0593
18.8007
15.7044
16.6703
15.7891
13.4282
16.3395
16.2066
13.5402
18.9135
17.5696
18.5943
17.7722
165.177
50.1025
13.636
16.3506
13.5536
16.4839
38.1819
14.7006
16.7131
17.1609
13.9798
20.4961
17.8372
20.9664
17.498
37.5737
9.03935
39.3798
9.40981
13.167
16.1813
13.4228
15.8905
40.6845
10.5687
10.6033
19.5502
13.9958
15.4627
15.1256
18.554
15.2354
9.5353
10.5686
45.8401
47.9786
19.7014
22.9424
17.4533
19.2369
18.6323
17.3777
22.7568
20.1622
44.2021
42.8494
24.9781
21.5312
21.6148
20.7928
19.2986
20.5746
25.0528
21.9833
21.6601
20.4657
19.207
20.5368
11.4409
45.7815
16.0743
10.6302
46.5407
17.1461
11.9212
48.1416
17.7199
11.8532
48.3002
17.8721
12.4511
16.2501
11.5544
11.1953
16.0233
11.2924
19.5539
21.091
17.8163
20.923
18.5422
16.7493
22.2349
22.5597
46.9815
24.4765
24.682
47.9386
24.818
46.8159
48.3194
27.1679
11.023
10.9822
22.682
22.3025
23.1487
19.7574
19.7348
17.3828
18.6256
10.2431
15.2391
14.3865
9.95434
18.6873
17.7574
22.5596
19.6622
45.0065
42.599
19.7413
23.181
19.5885
19.2849
18.8825
20.5596
15.4478
18.5456
20.4581
22.5648
19.7163
18.248
14.9805
17.8492
12.4347
11.9546
43.6493
41.0607
9.07233
9.94863
10.8584
10.619
18.997
18.9258
13.3056
15.9968
17.8002
13.863
18.7878
17.9513
23.4478
42.5921
23.4376
180.581
20.0307
26.1161
45.3317
19.8366
23.2818
53.8833
19.9196
20.1738
19.9891
20.0197
20.1375
20.0348
19.8632
19.9276
19.9372
20.2774
20.1915
20.0878
19.8113
20.2819
20.0281
19.9144
20.0033
19.9178
19.5687
19.7617
19.7761
20.5047
20.2313
20.171
20.7004
20.8903
20.4926
20.2248
20.1636
20.2481
20.5596
20.2844
20.3259
20.8493
20.3697
20.441
19.1694
20.0235
18.8995
16.0202
17.2546
17.4615
17.8845
16.174
17.6256
19.8491
18.5319
18.7309
8.87347
9.55765
11.8548
13.0724
11.093
6.63106
9.76581
9.02143
11.1309
13.6276
11.6702
42.5946
20.1
17.7019
14.6246
61.6886
23.8461
16.5858
14.4469
73.2362
70.2387
273.87
19.1062
17.7537
17.9958
16.8912
14.861
16.4187
19.0005
18.2047
17.7879
16.4563
15.3064
16.7403
8.73994
11.6907
9.645
9.00024
8.32043
6.60022
7.55491
12.5153
11.095
10.5218
26.7156
60.7489
67.4605
233.21
29.1047
87.842
71.1212
16.9627
15.071
12.745
11.1582
16.6098
14.3853
13.264
11.3172
27.1957
47.88
42.3014
20.0474
29.4874
27.6858
89.1598
19.2895
21.6703
14.6808
13.3791
13.1514
9.12047
8.12873
10.3054
14.0299
11.1845
12.3578
11.5291
9.15351
11.2513
7.41794
32.2721
10.8405
10.8055
14.5141
14.3709
14.2941
14.0519
14.0743
13.9883
11.3869
14.7096
14.4105
10.7701
16.621
16.0972
17.3366
15.5084
9.1902
13.5131
9.63901
12.9592
37.4392
8.48296
11.9026
12.0117
8.39443
34.2703
15.1942
14.1691
15.1168
14.2336
8.36806
11.8305
8.33944
11.8779
33.6122
7.75355
33.0515
11.4095
11.3111
14.7475
14.8074
14.7283
15.4959
14.7533
14.72
8.48802
8.64591
34.9873
17.5123
34.464
14.3903
11.9961
14.3212
12.0411
8.5144
8.54619
17.3975
34.4482
34.2088
8.88794
12.4329
12.7142
8.69877
35.4563
15.4311
14.5877
15.7736
13.862
7.57306
11.8951
8.31384
10.9843
32.6435
134.456
18.2922
17.6365
22.0287
21.2047
17.8177
18.9416
13.7628
16.7072
9.11879
9.58745
17.7518
13.4663
18.1008
17.6662
38.6726
19.4718
20.7918
19.2967
18.1898
16.5381
13.9906
13.8358
9.55398
9.66729
16.7998
13.6743
14.048
9.60936
9.55504
37.2899
38.4446
39.7543
39.1321
12.515
15.4694
8.78788
8.49091
15.6058
12.9702
16.5023
16.3515
19.849
18.1706
17.1718
19.9281
16.4748
17.5967
16.3411
16.5036
18.0794
20.5111
16.4549
17.2204
17.2204
20.1933
16.8162
15.0667
18.3717
16.8131
16.8003
16.875
14.807
16.3373
9.01189
13.9865
13.5063
9.02413
17.3915
17.1754
17.3494
16.9528
17.4398
19.4384
16.3539
16.988
11.8683
8.94635
8.05989
10.5651
24.2553
40.2643
22.0077
22.4544
23.8542
20.5266
9.20002
13.7508
14.3744
9.20196
16.7571
17.3597
21.0719
19.9587
17.2437
19.7942
17.4797
18.7856
16.6322
17.1569
17.6401
20.8292
17.7009
17.5403
17.172
18.0973
24.2038
165.736
61.1178
37.5443
146.915
20.9329
21.8623
45.4256
21.1737
31.3922
23.0355
73.3516
19.9258
21.1405
19.5683
19.3238
18.2198
18.8243
18.6091
17.8463
18.8386
18.6015
18.8781
18.8526
18.1647
18.2608
18.6722
18.2902
18.6747
18.4148
19.2976
19.2009
20.1413
19.5555
19.5197
20.0996
19.162
19.289
18.9253
19.1853
18.6505
19.2618
18.7115
18.4979
19.3897
19.5539
42.004
22.4128
43.6472
23.7257
21.0878
21.6347
21.2646
39.2643
21.4219
26.3031
21.5123
21.1129
20.5129
20.166
19.3111
19.6417
19.9298
18.956
20.8385
20.0314
41.4201
21.4755
41.3404
23.0743
20.332
224.963
28.2365
18.3349
19.3746
21.4372
18.6822
59.7912
22.8451
11.6614
10.0065
8.32575
6.28752
11.6615
10.2189
8.16258
6.34986
14.2055
12.2689
15.9901
14.8597
15.3266
15.8615
12.6654
13.7552
13.2066
14.519
16.0146
16.7735
13.2415
14.8852
15.6184
16.6647
225.2
59.782
66.2571
18.9206
20.5501
16.7417
17.1576
17.7447
16.6968
20.1516
18.0157
24.8131
19.4372
18.9145
17.6289
26.044
21.3077
18.0437
17.4866
15.5466
15.8421
13.8697
14.3769
15.0004
14.0587
15.6554
14.9653
17.2807
16.9587
19.0662
18.5275
17.822
18.8251
17.1123
17.8249
15.6659
16.3893
14.9268
15.4517
15.1315
14.7156
16.5323
15.9609
9.69891
7.95791
5.6297
9.53096
7.35452
6.10606
11.4736
12.8487
14.4605
15.1363
11.6205
13.3285
13.9359
14.9871
11.2031
12.7866
13.2777
14.4542
11.045
12.1973
13.858
14.6182
21.9336
18.3295
23.7052
19.2791
37.5045
43.411
17.8821
18.2979
18.1899
16.9469
16.8403
15.9525
18.5519
17.6393
16.3246
15.8026
17.3249
16.798
15.6969
15.2612
17.0663
16.1869
16.2265
15.4241
6.70434
9.87744
9.79092
12.9047
12.3737
12.5143
12.8138
12.5622
12.6506
7.69278
7.86927
32.3355
16.0771
31.6254
12.9524
10.8195
12.9886
10.7825
7.59487
7.56513
15.6405
30.8209
30.7678
7.24125
6.95057
28.3038
117.57
14.7823
28.1924
13.3032
10.5527
12.8378
10.9153
7.38894
7.60138
15.4821
31.2312
30.5453
6.91381
28.2525
10.0355
10.1036
13.0599
13.0404
13.1304
12.9903
12.9719
13.0782
15.4322
13.1436
15.3573
10.7664
7.46737
10.5389
7.593
13.1463
15.561
15.3494
16.1145
13.7541
16.0795
11.0653
7.96272
11.3835
7.78595
13.5797
15.6991
15.8391
14.9014
12.8979
15.3681
15.9037
15.4248
16.6285
12.5675
15.4083
31.8876
8.01435
31.9489
7.99344
14.4364
11.8544
15.5877
14.7528
14.8629
14.7206
11.9247
14.0089
13.4989
18.0107
29.5754
13.0329
15.2609
28.7155
13.8714
13.0213
14.2608
14.9433
14.1402
13.9881
13.3853
14.888
13.445
15.2282
13.7219
13.8821
12.9666
13.4206
15.2117
14.3291
18.395
32.4668
16.5445
38.3073
11.1984
7.49076
14.2857
13.7537
13.5482
14.0624
7.50704
11.2146
8.09685
11.611
14.1218
14.1481
8.75186
12.9368
14.0697
14.4431
27.9748
14.7504
14.9812
28.1023
8.46996
7.1363
9.74782
13.8947
13.2943
13.1612
14.3098
36.1225
15.3397
30.2548
17.1666
12.1471
9.75906
7.39465
11.3024
6.49702
28.785
13.8483
15.4505
15.3638
13.0616
13.8367
15.3111
15.8696
13.4908
13.2159
14.2519
14.1137
14.0804
13.1693
13.8272
14.5564
14.1674
14.2108
15.4692
15.523
14.6937
14.221
15.4944
15.5309
14.7564
14.5079
18.9236
15.6084
16.8379
6.40545
8.65938
130.982
13.2985
14.0032
6.95078
10.8312
12.0169
13.9337
8.11473
39.1887
10.8797
13.838
7.27613
11.878
14.0087
15.7669
15.4721
15.0116
14.7458
15.7005
15.3464
15.1504
14.8131
16.0589
16.2404
16.3606
16.4942
16.0356
16.2077
16.3854
16.5194
15.984
16.222
16.0991
16.2958
15.9058
15.973
16.362
16.3907
15.8579
15.5281
15.5949
15.4134
15.9285
15.76
15.3475
15.3228
15.7551
15.4129
15.4889
15.0339
15.8612
15.7624
15.0978
14.8797
15.9607
15.9296
16.1486
16.2159
16.0272
16.0978
16.0205
16.1882
16.5193
16.5649
16.5639
16.5573
16.4329
16.5304
16.5922
16.5919
16.1808
16.0825
15.5596
15.2202
16.0683
15.8267
15.8048
15.3513
16.5331
16.3388
16.35
16.2759
16.5608
16.449
16.2295
16.2476
14.1543
14.8686
12.8804
14.035
13.4987
13.0847
14.801
14.6275
15.3424
14.6612
16.3386
15.4529
15.8767
16.4755
14.523
14.9025
13.8567
14.1648
11.9818
12.6975
13.1622
12.1162
14.0354
13.4052
41.9543
5.04639
5.30734
8.29332
5.98315
9.94758
8.68251
9.65288
10.3079
5.64984
7.23166
6.61355
7.76478
9.93189
10.7745
6.93505
8.73606
9.09067
10.5187
14.4533
14.2031
16.0593
15.4278
14.9866
15.8978
14.3627
14.9275
13.0175
13.4441
10.8881
11.5622
12.3126
11.229
13.186
12.335
13.6657
12.7727
12.6179
11.677
13.8331
13.3342
11.9892
11.4386
10.7513
11.3686
8.82236
9.35855
9.94654
8.98287
11.1975
10.1533
12.8556
12.4189
14.4997
13.9003
13.3963
14.3345
12.6062
13.3932
10.8579
11.7547
9.51908
10.7644
10.0507
9.30365
11.9584
11.5397
15.4361
44.2689
15.6971
42.065
38.6656
5.454
7.05721
8.59472
9.6691
5.47517
7.15354
8.47403
9.63378
5.01165
6.92491
8.0773
8.70678
4.49915
6.5876
165.699
8.33493
9.10322
13.7591
13.0257
14.6701
13.9956
14.2123
14.8047
12.8137
13.5236
12.8629
12.0789
11.4568
10.5919
12.9002
12.2301
11.3075
10.5534
12.4207
11.9537
11.0402
9.70504
12.1768
11.7682
11.1779
10.0465
6.28624
24.9249
9.12224
9.28752
11.5722
11.6133
11.7009
11.8449
12.5802
12.5004
14.9031
12.718
14.8586
9.98598
7.11625
10.1539
7.00069
12.2362
14.0586
14.244
11.5779
11.3558
11.7636
7.48622
7.00518
13.7089
13.4801
15.6905
11.035
21.7692
22.0313
5.57154
5.5145
10.693
10.3434
10.3627
10.4504
10.2848
10.3121
9.95893
10.0533
10.0535
97.4352
29.3582
10.6699
12.3191
10.7682
10.7648
10.1175
10.4666
5.94708
5.84263
10.0424
10.3907
10.3918
16.8461
12.7149
14.8257
13.3402
27.2833
6.26601
12.0346
12.0765
12.3757
11.7052
11.6489
11.9312
12.2305
11.4904
11.5033
11.187
12.0853
11.1555
11.9186
12.341
10.8711
10.7256
6.58561
8.88339
23.235
102.876
8.62203
5.55725
10.797
7.62914
6.42278
11.3466
9.56138
5.04063
22.7952
11.3923
11.4297
11.6978
11.0921
11.1433
12.463
11.3975
12.4892
10.4966
11.1292
10.7711
10.8487
10.8347
10.1537
10.9143
9.8659
10.1947
10.0188
10.253
9.95838
9.26321
9.69819
9.33485
9.6316
7.62928
8.91103
8.74742
8.48837
7.35263
8.61495
8.80502
8.44876
7.5263
4.52083
7.91756
5.37323
89.3639
5.50598
4.06874
5.02025
10.9389
10.0841
10.2749
10.8922
9.4342
9.45163
9.71393
9.1562
10.8037
9.85081
10.8386
9.59184
13.8086
13.581
13.6333
13.7847
14.4626
12.8093
14.1485
12.6172
105.463
13.7948
13.5519
13.7831
13.5554
14.2233
14.0275
14.2639
13.9974
14.4131
13.1194
13.5556
13.0338
4.25554
12.8021
13.1043
13.1832
12.7542
9.07209
5.40739
8.68447
10.5419
10.4822
5.3988
8.48022
5.00975
7.08908
8.95894
8.47216
28.2624
9.40358
10.5582
8.52593
8.91102
8.59947
8.08534
10.8424
9.74047
11.2924
10.4695
12.2632
11.3611
11.9341
12.466
10.2372
10.6848
9.19735
9.77803
6.98318
7.58525
8.39866
7.2872
9.53406
8.45219
8.81424
9.67613
8.72956
9.83119
11.7991
10.637
10.3366
12.528
49.4951
15.0416
10.9685
11.3529
13.6766
5.07929
4.28391
149.574
10.3212
9.42318
12.0274
11.6963
10.9619
11.5969
9.99146
11.0809
7.10273
8.13412
5.9425
7.12559
5.82725
8.64976
8.03896
8.23885
6.36205
9.27632
9.06682
6.94609
5.56963
11.5033
12.1675
11.9687
11.6503
17.9605
13.3139
15.2804
14.1781
128.322
4.79897
4.44745
45.6747
3.34528
12.0063
12.414
11.8011
12.7765
7.54001
8.29317
7.54176
8.28872
10.2351
9.20365
9.34362
10.0709
9.88702
9.06269
9.04829
9.91595
6.01154
6.87154
5.71148
7.14962
7.99059
49.3499
143.269
4.66154
28.0265
5.81582
4.63738
15.5983
28.2231
18.0736
5.04265
4.59419
85.8902
9.52007
10.0262
9.54837
10.066
10.1327
9.89479
9.89125
9.99582
9.959
95.2854
13.724
22.5206
11.5227
10.5714
11.7321
9.65667
9.80128
9.65143
23.0383
11.5551
11.562
9.8702
9.75473
9.7461
8.98785
10.5797
10.4797
20.9904
21.1996
9.45822
10.217
9.68726
9.50917
10.1447
9.62008
9.23985
9.23106
9.02133
11.0625
9.50472
9.49324
9.49305
9.34177
9.32408
9.45457
10.0092
9.87181
11.8267
28.0844
9.84002
10.0849
9.94353
9.64841
9.81195
10.9078
10.5545
11.0197
10.3177
10.6799
10.5077
10.6133
10.6285
10.1429
10.2692
9.97991
10.4144
15.9533
10.5542
16.9263
8.53558
3.60988
5.31288
4.55735
7.54537
7.66344
7.15714
7.95807
7.88723
9.46215
7.7361
9.35372
10.2478
10.6603
10.5609
10.2609
9.56206
10.0416
9.83555
9.79496
9.79605
10.5542
10.0605
10.402
10.2511
10.289
10.2541
10.1958
9.89423
10.4417
9.77508
10.5687
10.5581
10.498
10.4068
10.6484
6.98877
7.52574
7.1713
7.4165
7.98907
8.97135
7.55511
9.21027
8.29156
7.93749
7.86242
8.34374
9.76749
10.2883
9.83478
10.2617
9.82768
10.4867
10.0418
10.3694
10.0259
10.226
10.2139
10.0454
12.1774
12.3129
12.2499
12.237
12.5437
12.431
12.4886
12.4812
12.3337
12.3705
12.2913
12.417
11.2585
11.2502
11.1567
11.349
11.0715
11.1901
10.9804
11.2879
11.5373
11.3315
11.429
11.4454
12.5163
12.3111
12.3827
12.4455
11.7813
12.0657
11.8993
11.9606
12.2737
12.23
12.3659
12.1401
10.8856
11.1765
11.3105
10.7463
11.7407
11.4346
11.8251
11.3511
10.5041
11.0304
10.5947
10.9457
5.47737
6.06291
5.4271
6.12009
7.19299
6.62514
6.55522
7.26804
7.39303
6.68006
6.741
7.32623
11.1568
10.6843
11.0767
10.7652
9.72959
10.2085
10.1301
9.80376
9.94081
10.2746
10.3557
9.86602
8.1499
8.65902
8.5569
8.25341
9.56995
9.1075
9.46772
9.21364
8.4465
8.74676
8.34341
8.8509
4.81339
5.59165
5.01413
5.38427
7.22214
6.38413
6.61505
6.99472
6.58117
6.18208
5.97229
6.79117
10.3417
10.0973
10.5008
9.9337
9.69677
9.88668
10.055
9.52225
9.16456
9.7172
9.54843
9.34546
7.41099
8.52083
7.68448
8.62202
8.86187
8.44483
8.88607
8.94539
8.72337
7.65948
7.88195
7.60615
8.54407
8.55235
8.28079
8.39603
8.34081
8.10816
7.58615
8.00072
7.7553
8.53366
8.54279
8.33122
7.08588
7.3531
7.26506
8.46649
17.1815
8.44766
8.58829
17.2474
8.48716
6.80149
8.05852
6.67434
6.40143
7.75783
6.42652
7.5024
7.72396
7.52577
6.80727
7.31851
7.04475
7.93517
7.95839
7.73703
8.13881
8.19354
7.96414
6.89844
7.02081
7.11192
7.95146
7.70514
7.76045
8.78335
8.58098
8.78706
8.58269
5.96923
7.83685
6.35165
7.51233
18.1495
8.24755
8.35459
8.39173
8.15129
4.87542
5.19853
4.7954
5.28023
5.84205
5.51829
5.46147
5.89863
6.04853
5.59052
5.67292
5.96677
4.11394
5.84804
4.01756
5.96215
17.7102
17.2701
7.16522
6.91907
6.69703
7.27992
7.4611
7.05581
7.16462
7.37048
4.49935
3.15492
3.07907
4.6135
6.37193
8.25552
64.9997
18.0184
7.36577
15.0531
4.75138
3.20709
4.68189
3.26816
4.56949
4.9175
4.54727
4.92688
5.46938
5.13628
5.07602
5.52397
5.61623
5.28353
5.27582
5.64177
3.61162
3.57332
7.67563
14.4543
15.4287
6.31333
5.21683
5.21039
6.32903
6.32006
5.27744
5.206
6.39477
4.49854
11.8946
11.4612
20.1973
23.7225
19.1754
77.5898
9.15058
7.12732
7.58707
8.83431
7.78298
6.49867
5.74628
8.34073
9.00822
9.04051
8.92195
9.15638
8.90308
8.98192
8.78339
9.09641
9.38216
9.14915
9.27305
9.25804
9.70021
9.50711
9.57446
9.63413
9.03815
9.29058
9.10781
9.2247
9.51563
9.44707
9.5758
9.38398
7.69314
8.01604
8.09633
7.61373
8.58327
8.31217
8.67242
8.21369
7.41373
7.92882
7.52475
7.82401
3.27705
3.75135
3.26602
3.76665
4.85832
4.3193
4.35077
4.82531
4.77583
4.24229
4.26166
4.75228
8.33657
7.88534
8.27602
7.94397
7.11711
7.50239
7.51411
7.10053
7.13155
7.48899
7.54527
7.07833
5.86507
6.41881
6.26417
6.02338
7.45951
6.92963
7.31489
7.07562
6.29607
6.54447
6.14889
6.69106
2.93098
3.45297
3.00078
3.37958
4.51337
3.97132
4.0189
4.46371
4.32585
3.9141
3.83761
4.40543
7.6123
7.31769
7.6954
7.23255
6.68472
7.00854
7.07722
6.61728
6.45932
6.93826
6.85155
6.54717
5.69489
6.94861
5.71952
6.04215
6.93047
5.78893
7.07426
7.02103
6.83831
6.36419
6.45387
6.55553
7.29955
7.06669
7.13769
7.19668
7.22696
7.0624
6.2267
6.66492
6.4262
7.13193
7.16403
6.97843
5.97683
5.99345
5.89913
5.77892
6.95809
5.91584
6.20273
7.18749
6.08778
4.3757
60.335
5.79509
4.01562
18.662
3.7514
14.5035
5.69812
3.85897
14.9579
6.28513
6.53033
6.43865
5.6963
5.83306
5.91747
6.60608
6.42496
6.47563
7.13765
7.23458
7.09184
6.79348
6.62086
6.94608
7.42792
7.11094
7.33839
2.37966
2.10216
57.6119
5.58637
5.24798
5.40575
3.06378
3.53679
3.22279
3.37302
4.41448
4.34077
4.26045
4.53055
3.94037
3.84366
3.6763
4.09787
5.46408
5.49649
5.19524
5.6448
10.9918
5.59468
6.58644
11.8728
5.79363
3.85284
3.8535
4.07173
4.99683
4.57945
4.71625
3.80639
3.78355
3.92181
2.80821
3.30921
2.99174
3.10832
3.9134
3.82213
3.95453
3.72812
2.96353
3.48316
3.24964
3.3003
6.34826
5.50778
6.17003
4.82389
5.5026
4.82242
4.80933
6.66817
5.97088
8.02018
8.05187
7.90184
7.64033
8.07658
8.14411
7.87456
7.37458
7.54106
6.04237
6.62068
6.40054
7.08029
11.9197
15.2563
8.00242
5.92289
6.38681
6.95887
6.12133
6.68804
7.6862
7.88565
13.5812
6.56895
7.27581
6.35867
5.38117
5.58217
5.76275
5.2045
6.04336
5.81315
6.18511
5.66741
4.91744
5.4432
5.06778
5.29432
1.51161
1.87517
1.44121
1.96394
14.5056
2.52732
2.24773
2.1247
2.6515
2.8665
2.33743
2.44192
2.74898
5.82691
5.3049
5.66941
5.46044
4.33557
4.82099
4.69357
4.46362
4.7308
4.94266
5.09541
4.58208
2.38471
3.26632
2.54226
3.03343
4.03915
3.83087
3.79039
4.01509
3.46861
3.61446
3.33543
3.76938
1.39812
1.35763
4.04227
11.6436
64.9109
13.0076
2.33383
1.85104
1.89507
2.2821
2.19325
1.82191
1.76881
2.24892
4.8546
4.64014
4.94158
4.57219
4.10078
4.36567
4.44078
4.02932
3.91772
4.31149
4.2477
3.9795
293.172
270.811
276.424
44.6128
50.8469
238.007
85.3117
42.7176
51.2312
74.7131
319.234
351.336
47.8458
94.7349
45.6645
101.308
79.3635
252.556
273.091
64.1112
108.026
247.549
44.9464
129.212
126.901
65.5119
409.812
292.227
355.226
68.3565
121.183
354.379
291.254
65.4979
59.2345
328.339
81.4454
80.774
232.368
100.535
696.996
657.721
250.059
611.148
143.818
180.506
282.648
107.884
84.1364
168.232
144.134
499.125
93.7337
264.295
127.733
140.261
532.353
652.036
86.0468
111.828
821.92
173.833
225.423
69.876
124.348
266.799
645.215
149.79
174.785
79.6509
546.647
126.679
86.064
452.913
95.1038
84.5676
521.165
103.702
329.558
69.4329
63.4833
86.2902
376.086
251.547
63.2858
74.2557
103.321
413.593
337.31
783.423
111.597
513.094
102.168
74.02
210.599
618.468
523.792
569.882
102.774
77.4069
69.8233
62.0715
83.6754
38.5369
70.3382
64.4735
93.5262
94.0231
81.7235
95.1185
62.5167
453.823
140.12
165.491
78.6648
81.0339
131.756
733.132
71.0549
85.6793
106.645
133.546
38.0614
305.503
123.341
296.317
44.2315
144.04
52.8776
65.3875
410.958
98.3672
187.003
101.444
94.8222
41.8376
192.34
250.003
53.0383
77.3214
71.6666
29.315
173.994
188.645
190.27
28.4337
210.719
31.8295
64.6919
38.2933
75.6963
38.0361
219.217
35.202
63.7876
210.057
28.104
25.7605
197.716
30.6875
34.0904
57.9336
209.291
78.4939
26.181
222.94
34.068
187.644
24.5869
55.5463
20.5786
72.6523
31.8978
28.004
192.624
49.9679
42.1545
90.6794
245.987
35.2705
215.224
39.8602
92.4189
78.4034
229.338
97.643
47.8923
116.635
30.463
294.466
264.49
25.8257
176.684
62.0187
153.91
26.2989
83.6422
42.0525
42.8614
100.45
228.808
100.525
103.497
247.93
230.602
78.4186
39.4543
57.5898
270.501
31.1767
76.0389
116.469
58.5948
36.915
20.3227
52.3434
64.145
82.5434
150.105
39.3545
64.9204
114.016
80.1542
81.1913
119.628
38.9838
432.676
81.3466
87.3982
44.4714
80.7596
46.5659
56.5388
377.046
93.6907
31.2972
89.4162
98.6429
68.6593
82.915
60.7057
83.8259
65.243
58.5284
88.2379
91.432
71.3148
78.4174
74.6772
72.9574
69.8541
89.2639
91.3856
70.9554
86.0365
65.6322
67.5584
75.8388
40.3341
17.4207
393.077
62.0445
47.2216
26.9566
411.862
109.765
75.4906
98.8753
49.3742
114.325
58.0836
78.4292
168.96
44.4764
27.2255
21.8487
62.0726
61.3395
61.2621
63.965
576.295
58.8373
77.7422
60.7681
77.2235
62.0655
78.2942
48.5049
292.138
24.1869
80.2447
40.2146
26.476
21.1555
23.2557
327.181
95.9803
59.5741
81.4775
18.9754
22.3754
68.7
15.6525
47.9732
43.4736
68.7395
81.5266
81.8343
65.3436
65.8134
67.7371
71.9883
68.7689
88.1998
84.3696
47.15
69.5414
45.1162
30.1377
24.4448
26.7989
77.6499
31.8522
48.3611
36.9299
37.0982
293.287
27.365
221.982
176.091
103.076
115.574
73.0529
103.146
47.5092
231.913
635.947
26.3974
75.5415
206.086
19.1003
23.7307
158.337
80.1745
38.3213
226.761
182.214
29.5653
26.8918
217.962
122.813
103.654
267.488
24.918
26.1396
256.543
29.4969
128.282
113.521
44.073
258.381
307.9
66.4057
745.085
57.5011
267.53
303.928
128.76
36.5038
40.6416
39.539
44.564
122.297
117.837
51.0777
212.21
277.538
112.832
45.2193
111.27
113.752
126.457
251.553
332.871
297.501
131.227
31.3005
95.125
285.075
35.1352
262.39
26.7635
58.9886
100.32
298.759
53.1988
36.4187
59.7725
62.3814
314.367
41.7869
63.4831
43.0504
27.0691
21.6257
24.2184
79.222
97.0111
246.649
70.5743
251.88
78.4656
33.3945
28.1618
96.3467
31.6036
29.8358
46.1977
290.687
37.8283
52.8277
115.951
31.0905
35.0569
47.0146
34.714
76.282
26.4774
65.6829
209.699
88.9705
31.4598
116.422
37.1248
93.0276
96.7416
102.327
28.6307
79.1075
108.638
20.7153
34.461
26.234
281.92
402.238
53.4084
142.421
34.3246
128.09
57.4118
38.8431
100.089
126.978
69.4641
324.612
122.75
112.711
326.97
33.4917
91.2733
38.8322
65.1043
65.5836
48.5398
30.2156
71.4003
81.3743
150.555
53.6404
533.207
548.256
61.9486
498.626
110.401
652.491
76.1918
233.826
102.514
55.2369
393.065
37.8699
74.7772
80.0516
156.194
398.927
354.556
509.072
526.279
693.261
55.9949
331.205
95.8311
115.237
112.603
1181.26
34.9552
125.707
156.92
292.8
93.5296
62.8374
65.4626
84.0703
106.944
176.32
191.241
90.9764
115.165
160.801
197.246
105.415
70.5992
409.098
115.084
164.165
40.6375
44.1184
71.9278
74.9006
45.0063
46.7847
94.7769
474.118
47.8348
561.725
79.0249
151.083
48.5768
439.223
62.0211
68.0269
69.5334
27.2309
55.2134
59.0603
61.569
26.1451
79.3668
137.803
97.4923
71.4387
71.2995
28.0308
18.0539
41.2792
52.9584
52.023
36.2058
34.0636
37.6848
41.8004
44.428
20.9101
27.5816
247.671
37.3524
15.4736
51.8654
53.9909
38.4984
33.1905
33.5858
41.5805
22.0972
165.397
149.802
42.8869
34.4779
17.0299
31.5087
190.946
29.9198
78.7258
79.9682
160.286
172.808
54.7148
22.5792
22.688
69.7481
68.971
65.0347
63.3698
57.5313
127.139
93.6367
58.7493
62.6912
66.4871
21.341
23.1188
58.1871
86.1665
297.315
28.8682
30.4095
62.2998
20.0985
32.6377
16.5739
259.448
29.5667
76.0859
42.5126
45.8926
47.6797
35.531
41.8082
46.1875
204.726
60.6764
125.86
50.5334
77.6738
41.1886
56.4529
241.368
136.003
52.5463
125.172
46.2749
81.5026
400.279
81.3169
1066.38
76.0794
523.014
349.336
1402.79
534.593
229.225
99.3266
111.379
71.3547
72.8577
88.9313
184.01
161.309
52.2543
47.2781
190.355
198.628
36.2781
361.483
164.454
80.2918
119.884
66.027
51.4664
84.9694
78.1572
492.035
187.924
46.956
426.34
50.45
449.223
48.0736
35.6885
107.937
106.413
195.545
48.0007
68.9065
632.587
528.522
66.6677
13.248
152.781
132.145
12.914
68.2289
76.022
185.484
548.118
17.7123
66.5879
121.651
130.396
24.2231
36.8206
64.6162
33.9122
29.2078
21.8248
42.4661
29.4916
38.821
20.9281
30.6525
38.4715
20.7853
43.8169
30.2081
27.2333
31.1005
23.5565
32.1747
32.4282
26.8287
19.4942
24.5428
28.3737
19.7246
28.7111
33.2703
508.376
174.845
163.327
55.9804
22.2499
22.1747
69.202
69.1211
56.2065
68.8743
156.377
155.507
54.782
22.7366
21.0484
53.6647
23.3631
13.775
25.1928
23.0839
35.5258
22.4444
36.2434
22.0029
24.8637
28.764
28.8492
25.2433
28.7898
174.418
33.6242
178.285
32.8129
33.5352
187.976
36.8696
191.197
194.532
34.3904
183.873
35.6938
39.2354
615.591
135.99
17.4793
143.203
31.0074
30.8905
17.474
554.734
179.535
76.4796
176.304
143.723
76.9837
89.8954
566.745
20.8759
33.7946
30.542
158.331
19.0589
155.668
31.6588
32.4782
17.8322
145.586
26.0677
122.283
161.443
34.8565
34.2701
42.6144
231.252
25.2141
99.0648
72.7172
76.2066
33.0531
53.1906
27.2857
114.836
73.8867
22.0409
25.8528
29.277
24.8986
94.828
29.1564
38.9034
21.1711
36.5387
26.9998
20.3573
79.9914
137.025
348.138
58.8754
42.001
26.9754
47.7775
29.7009
25.0377
22.1171
57.1024
39.7389
36.26
112.883
23.1896
33.287
38.4274
52.7433
74.4434
286.361
27.793
90.73
61.0197
37.4758
113.86
37.9881
43.3167
49.0728
35.2769
83.9189
20.0814
38.0098
120.01
42.7023
23.4524
101.194
78.9841
30.6002
20.004
38.0361
86.5688
57.2173
109.695
42.4907
302.295
77.6984
19.3315
42.2036
28.1237
36.0565
119.596
723.372
57.9889
47.4967
82.967
61.5802
68.3417
50.1544
78.0769
48.9293
34.0808
61.0314
109.268
54.1072
96.5437
186.248
70.1505
109.114
165.406
92.9464
204.456
251.473
446.433
104.669
187.068
95.2819
1458.74
528.443
908.913
987.972
65.7325
137.277
92.6513
72.2351
73.8195
232.688
46.4257
50.1738
34.85
184.178
43.841
53.6735
103.327
169.483
511.572
105.245
251.839
79.2922
65.1645
53.1514
976.002
70.7007
48.2444
122.53
89.0738
97.3278
113.916
1301.27
35.773
29.0036
52.9388
33.2495
26.789
47.4759
66.7108
49.0928
219.745
34.8771
64.4147
74.7692
59.6542
73.727
93.6781
392.667
47.0528
114.386
48.7034
51.1878
14.1419
28.8562
494.65
15.5265
30.5892
100.944
19.5906
125.82
19.8035
123.704
17.4153
17.5885
35.8303
122.972
159.95
42.7745
45.8911
11.5678
18.7843
227.381
22.9538
21.5203
26.6799
26.5713
14.9274
127.057
29.6128
14.7554
127.551
10.1042
24.4273
24.3838
26.8423
26.5349
15.4562
495.072
27.7625
25.324
120.184
19.007
18.8222
112.936
48.0916
47.9757
19.5075
72.7471
17.8378
59.224
118.652
120.524
19.0484
49.9381
49.7975
121.472
18.9675
20.8384
21.012
21.5894
21.5589
36.758
76.3828
58.4865
62.8751
82.0081
66.6064
43.808
47.9577
99.6455
91.1116
76.4272
111.734
181.753
52.9319
118.095
52.1
47.8675
562.507
50.0088
45.7931
50.6547
90.0946
63.4364
74.3201
98.5415
72.9307
187.19
151.641
99.3047
95.9898
122.285
101.66
111.96
99.3014
155.749
116.245
840.555
220.631
47.9322
414.654
43.561
147.287
178.148
59.0749
45.3097
65.1731
38.6792
89.4612
58.7214
79.2494
91.0986
220.508
41.4792
69.4221
75.6706
806.373
96.1481
91.0848
178.029
1018.8
262.119
99.3151
112.01
121.825
395.005
113.304
152.608
237.745
129.233
155.96
69.3059
59.3151
37.623
106.817
103.121
109.611
128.299
89.6423
8.74651
8.75762
50.824
119.361
18.8445
18.811
43.3056
41.5801
9.18917
8.7747
27.0903
27.1214
27.106
28.3358
11.9959
11.9573
24.2385
24.2923
27.4174
27.4022
28.4088
26.9651
27.7751
26.4656
11.6227
4.51169
12.2438
4.80218
11.1096
4.6859
17.1635
17.8141
118.619
47.5853
20.171
91.4224
118.798
20.1762
91.3598
134.757
31.7034
93.7097
39.4854
7.98331
417.903
21.0201
90.665
21.3101
25.2839
26.1422
12.4822
61.0703
17.9855
201.936
20.2983
21.3265
45.8634
193.68
47.4914
25.2884
196.744
38.8583
18.947
20.4321
45.511
21.9423
42.1883
130.29
220.235
42.9592
46.8307
34.9471
17.0505
24.0218
23.8804
22.6478
110.325
23.4648
120.333
22.7184
23.0065
36.9021
171.573
34.2864
182.657
93.0739
123.624
26.9658
125.775
27.6551
133.549
23.5048
25.0083
26.7714
125.801
26.0454
77.4377
239.122
665.053
109.233
104.677
18.9537
16.2293
637.037
207.488
40.7774
35.6711
64.782
96.0643
140.678
52.7264
48.6354
36.4395
54.6625
30.4849
151.77
371.133
57.296
68.3257
49.2585
84.4709
40.967
62.2379
45.0858
26.8913
36.0026
29.8733
22.0951
38.2442
75.4579
90.5319
43.3427
20.8489
47.4791
30.8425
26.1864
68.2077
98.989
20.6116
336.394
72.7436
302.499
21.3571
39.1622
119.672
50.5399
78.1111
39.6233
22.6879
60.2982
81.851
36.1481
66.1137
87.3666
23.9161
57.9386
43.333
31.7358
21.286
37.1695
92.3505
106.824
68.0403
25.6594
28.3555
349.004
96.5316
138.461
33.8828
39.9479
77.0367
33.0612
60.0128
34.2773
80.2565
54.8837
43.6047
74.1205
62.6854
50.9739
23.114
169.228
36.4792
69.2259
41.6512
49.1835
62.3
94.2264
26.3157
33.098
119.188
35.9724
64.9233
17.0583
20.5741
101.972
46.9338
27.9205
29.8751
25.3144
53.23
32.4001
36.0482
45.4694
75.5876
40.7269
19.9221
22.5713
38.4999
18.5852
34.5059
22.6658
15.7453
355.501
301.261
107.802
21.2565
90.4982
352.694
43.2157
25.3504
104.266
35.2034
50.6277
83.8615
42.8876
26.5575
24.1154
25.1272
36.6646
69.1971
30.9334
21.0288
368.929
24.5968
364.585
52.0964
65.2401
45.2289
94.5788
41.8319
33.2842
50.4583
26.9817
37.7339
20.6426
114.753
391.335
24.8905
326.173
32.7444
51.8007
44.5119
63.0519
36.9789
55.7415
74.3307
83.675
158.178
186.761
41.9114
903.699
781.759
71.4572
56.1293
104.487
99.6073
84.9066
833.663
28.8402
422.56
201.942
71.9084
52.9079
77.0255
30.239
84.1997
42.1078
58.3766
90.4768
118.644
117.351
83.3766
43.085
425.39
62.0199
76.018
81.1191
49.428
61.5178
65.4877
56.986
45.8632
39.1504
64.8008
71.5603
83.4264
78.3755
22.9811
246.644
102.059
18.0779
236.44
8.89024
8.91545
74.7867
69.5857
76.6733
83.7591
15.5196
15.729
72.6374
8.5196
66.0284
66.8159
8.45045
11.169
5.57208
11.3228
5.50499
11.0545
5.80332
6.00647
10.9574
33.5861
51.7594
25.179
25.1436
15.768
10.43
15.6727
10.5435
15.6369
10.3262
6.41998
11.7574
6.53152
11.6502
11.3551
10.72
11.0122
82.5738
15.0244
16.304
13.967
13.951
67.8834
68.0111
68.9472
8.20465
8.19855
10.479
6.76073
10.6462
6.76162
10.3479
6.29857
10.5047
6.34454
36.6742
180.672
85.9134
100.829
105.897
87.7517
92.2799
72.7595
80.5335
83.5876
43.1373
43.9667
58.427
75.828
81.1015
74.7024
54.596
75.9924
68.1712
35.5114
21.3508
28.2318
12.9208
16.1636
23.0634
128.691
108.206
183.078
320.292
107.783
368.782
9.36051
6.62637
13.1449
28.8689
17.1804
19.0149
27.0068
13.9828
74.3047
81.5859
69.7348
49.6892
45.7661
60.6424
74.5659
45.2983
61.2895
58.4307
92.8598
96.0756
642.824
199.571
13.6252
79.302
15.5314
76.4099
15.0166
14.9445
64.661
65.0977
13.0291
13.111
6.13531
11.2941
5.94304
24.7368
24.8356
12.3734
47.6673
2.52807
6.42328
12.0021
12.1448
55.0622
6.41071
10.509
8.54545
15.7822
9.17516
17.6071
9.17384
43.5874
36.12
64.3782
80.5267
36.7513
76.4642
5.41909
9.75014
15.0232
16.0006
170.988
339.386
149.148
707.464
292.837
15.6993
7.77957
15.2628
78.7306
15.3971
13.716
13.7528
67.2942
67.3958
67.6274
64.9541
13.1402
13.1068
70.8578
65.1685
139.152
25.7547
407.919
84.1057
86.7118
40.3737
67.3582
57.7352
51.364
64.8021
67.7451
55.061
63.1309
703.365
108.468
154.197
75.8095
77.6679
67.97
11.3254
5.08164
13.6186
5.45694
18.7803
8.91732
4.41707
33.6655
18.0666
34.2645
140.068
141.94
36.0255
18.7146
35.3789
149.094
145.486
17.3578
32.7583
33.3716
17.1789
138.126
138.359
16.1563
30.8313
28.9273
16.3674
17.1267
116.559
113.885
31.7866
33.5402
138.558
16.2115
13.9909
28.1017
13.8085
28.6143
80.7914
18.0998
129.953
35.4617
34.6939
18.5181
133.598
173.038
23.3593
13.3062
32.4206
94.5694
14.6118
31.0991
14.8736
30.1859
84.1557
85.1835
147.134
21.1684
35.8855
63.6289
179.202
18.692
135.143
349.455
30.8655
39.3313
26.4639
20.0075
37.001
21.1077
24.3122
97.5635
132.28
430.144
39.306
24.7051
115.575
32.8511
56.5471
99.3159
118.76
78.0321
34.3338
80.1142
78.6118
29.6732
40.825
29.8838
35.7092
24.6751
28.7491
40.4684
26.3212
20.0584
36.2857
23.09
92.6557
20.8878
18.4442
46.642
91.1248
99.9541
56.2382
24.7916
17.8839
323.016
100.541
57.1678
37.9117
79.2716
21.2599
37.7851
29.6373
49.9554
33.5168
43.2191
39.0218
69.1231
36.5587
284.33
21.6929
110.894
40.3405
24.577
33.4223
43.6991
45.7707
57.7975
40.4675
65.8215
126.8
412.71
130.497
56.7119
113.342
23.5659
60.7394
52.4404
92.263
65.1255
114.066
26.5508
35.3874
48.0902
31.883
94.8522
47.3251
24.1112
26.155
25.0804
42.7017
37.9958
38.7151
59.6394
45.6102
25.3336
31.4579
56.3433
62.2704
50.9911
96.3299
86.5439
44.4083
55.7114
42.8763
386.916
31.9179
19.6874
20.8492
29.9612
27.3097
36.4671
39.5725
69.1256
31.6749
46.7313
23.6738
17.857
27.4163
92.3641
50.0596
39.3538
36.0119
56.4923
98.2929
20.3851
20.4252
29.358
18.3664
31.688
88.1121
81.3315
26.2209
23.4641
89.0408
50.6656
112.434
90.569
44.0671
80.7252
45.3904
22.3609
32.3273
30.5862
45.8013
33.7447
31.1946
17.7662
48.1127
42.8148
22.0739
28.0907
34.6733
22.528
30.3186
58.7198
47.8966
136.932
68.452
394.72
46.1615
55.1764
57.0868
64.4195
60.1868
363.252
129.563
30.3812
37.7723
115.398
19.6001
92.8748
35.7963
21.1782
160.145
125.286
164.526
44.0747
34.3063
30.0258
80.6296
516.776
97.558
240.099
290.189
21.3619
80.7152
136.958
72.1086
51.6307
53.9647
45.5046
56.9394
45.0389
34.1111
33.118
45.609
15.8332
14.4691
6.72189
6.97224
23.2763
103.389
19.3513
82.4846
17.8388
7.63885
7.3225
46.9433
9.07418
23.126
8.21381
2.92825
5.02443
44.166
21.5224
32.2889
21.09
721.534
708.071
16.8648
19.2036
2.69665
35.6872
4.25482
8.42477
11.2276
3.42077
266.893
3.96668
1.35292
3.31099
136.133
191.031
672.784
101.763
48.7632
18.8726
26.3652
33.889
150.818
11.2922
16.9498
38.2492
37.4826
37.0771
3.36348
3.37889
3.45642
37.5181
3.43128
2.85779
2.81548
2.37993
2.26014
4.24864
4.40798
2.89075
2.85762
5.10473
2.60316
2.778
4.93242
16.7536
38.3844
16.6565
35.9656
28.4138
43.7116
502.54
46.956
54.4689
38.844
62.4864
49.1133
27.4775
676.687
28.9604
343.74
156.504
69.3062
62.2683
62.4952
68.628
82.5791
125.594
90.8635
100.958
103.725
20.4163
101.482
20.2531
48.4191
9.18951
20.8664
7.43083
7.52309
9.27472
50.1598
9.57463
7.65882
7.63807
9.50254
574.202
13.3668
23.1578
21.3658
259.449
52.9824
12.504
17.9272
7.19945
3.13188
10.8376
5.66239
7.22175
285.581
1.15634
1.31054
0.345778
1.14128
1.80529
2.36848
0.526692
2.42079
14.8263
11.6068
37.3676
32.9506
43.1344
28.5639
30.3159
15.3898
28.0663
18.8011
25.0254
75.7992
88.9133
124.042
77.5489
150.773
57.0312
53.7055
56.0477
55.1534
48.1238
39.387
38.8783
47.5489
30.9531
7.16599
33.9384
15.8401
7.43806
88.8485
17.1494
84.843
16.684
5.7349
5.24675
40.856
8.01094
42.2746
7.72537
2.35011
21.3553
23.7483
2.52347
26.3285
3.26659
35.965
3.25298
3.25227
35.681
3.25942
4.14592
2.34138
0.864136
0.972903
3.18684
2.90806
3.03488
0.813591
0.796426
3.01159
21.1153
17.2416
39.6749
16.1288
33.9269
15.7816
1.92128
1.77957
3.70044
3.79994
1.62422
17.8966
4.79692
19.1198
7.45735
14.8241
29.8621
24.2642
21.3684
30.5911
33.2295
24.6334
6.11106
15.2097
12.3215
7.89003
4.26133
0.969828
1.17052
156.602
5.45277
0.20673
0.269881
2.75006
2.15451
7.50957
17.9401
18.2134
47.9167
8.98523
47.9841
7.10624
7.07524
47.349
8.87422
18.9188
44.0151
8.42146
43.4355
6.74733
6.87573
19.4387
44.9662
8.55511
60.4708
66.5292
63.7072
47.6796
65.1147
58.5602
53.3775
44.423
56.1128
74.8412
80.4335
67.9965
51.5218
49.9041
47.121
36.0559
43.0703
41.0295
48.7618
39.0976
43.5294
48.3187
46.9356
45.1593
30.226
38.6635
26.3029
41.8098
0.96574
0.79351
0.275297
1.73306
0.618487
0.508917
17.2453
424.923
14.1935
44.6221
1.56016
2.24287
0.234931
1.99041
0.26698
3.46844
5.14946
0.432925
19.8126
25.0482
29.8769
16.6176
34.9316
20.582
20.0373
10.2479
11.6671
32.9662
16.8433
18.7721
12.7433
12.436
16.357
135.916
25.0185
16.4391
24.9305
116.572
115.725
15.4651
129.146
21.3471
14.5381
22.8031
104.26
110.955
93.4864
21.3579
20.9986
95.0948
20.8511
12.944
13.3866
21.0569
11.2677
11.3921
22.0541
96.4052
95.6443
97.4307
21.7823
96.5486
21.9721
22.9413
14.224
13.6055
22.2322
106.376
23.7528
23.9116
105.512
15.7542
28.9787
15.3812
28.7641
12.0712
12.0176
23.3407
99.9135
100.873
103.577
23.5674
104.68
23.322
27.2333
14.5804
15.2734
27.838
34.1465
40.6026
30.6671
42.2224
51.5483
45.4502
43.7667
52.0137
123.042
22.7388
37.1397
26.3877
33.8352
108.367
359.178
56.5555
49.0046
48.1478
59.1939
121.376
25.6886
105.493
22.9105
44.805
103.397
340.994
50.9237
17.0385
81.3266
324.682
30.1061
26.5856
15.8456
292.347
18.077
38.414
50.0625
38.3701
80.9481
38.6222
29.0924
30.5891
44.6884
88.0143
54.4163
54.4867
28.5481
35.9125
59.4889
71.4597
34.7506
50.6875
49.3093
60.3759
96.5288
60.0625
122.213
22.6033
353.675
26.3415
20.6905
36.0014
39.2785
41.6246
39.7185
42.8938
47.615
33.2896
19.2254
23.0905
29.4
46.267
88.4299
75.2645
23.1849
17.4059
26.985
281.24
17.3794
25.5307
19.4021
16.8753
40.0376
32.8256
40.5573
58.7389
398.15
113.945
46.3406
49.1204
94.4995
87.1668
22.2932
289.391
27.7965
32.0525
42.0195
36.7094
41.5682
32.0702
44.6375
44.7717
31.6356
27.1168
43.1315
41.3703
18.705
34.499
36.9592
26.7879
46.4504
46.0377
38.7157
49.5593
40.8013
34.7383
47.9585
51.1818
40.0306
40.0022
21.7281
26.9709
35.8917
27.1233
36.0296
30.9664
35.8784
7.16318
5.41214
5.32898
7.08909
14.293
14.5078
14.8361
5.06538
5.16279
32.7141
6.65732
15.534
33.4019
6.76453
88.8121
7.09122
44.4418
19.1019
213.997
4.76458
9.50068
7.03519
1.52306
1.72153
2.26939
1.279
1.55703
1.74682
19.3747
2.35662
7.90549
17.9963
26.9675
19.173
10.3944
12.1075
13.2501
20.2052
13.5494
4.32432
2.38872
6.07246
0.952781
1.22521
0.92723
1.22983
1.67217
83.8837
463.421
498.15
8.71859
12.618
18.5865
1.58351
1.59218
1.64572
18.9881
1.61586
0.436699
0.479067
4.37275
3.44721
0.627713
0.607657
0.544289
0.53221
5.51937
3.21972
8.27052
12.0823
11.7513
23.1525
70.4555
518.326
42.5286
56.0355
56.4366
46.0454
211.724
116.171
470.264
119.659
73.8517
32.3318
23.8983
32.5845
38.144
32.7048
37.352
41.3092
42.6034
40.8264
23.5982
25.7736
30.0773
118.035
68.8189
45.846
49.679
75.3915
49.8243
56.1563
51.5994
72.3959
13.3774
67.8184
12.9435
17.1232
5.19616
35.0719
37.2884
17.9514
5.37898
28.2428
6.13947
30.7679
3.84865
24.4373
5.89249
6.08523
3.17898
25.9822
22.8648
11.9574
20.7497
5.09724
13.7047
8.20101
5.41372
0.138419
2.92431
9.17528
0.389169
0.455403
0.22001
0.195075
0.207637
0.183169
10.5288
15.4392
10.6294
17.0372
20.9722
33.0101
49.031
37.0449
47.3999
191.009
66.9842
64.6125
226.856
17.9001
20.6999
44.1829
50.4918
40.486
52.5231
474.812
70.7316
92.2302
272.889
21.1182
14.3416
18.7674
24.4939
176.567
8.577
16.5807
4.6819
56.2747
237.758
46.644
15.6653
4.58779
56.975
10.2344
56.1241
10.2144
42.4755
15.4809
4.60166
15.6071
44.5669
15.5588
4.60477
7.16908
7.81601
6.27938
6.76776
1.58851
18.1022
1.58249
1.61573
18.1055
1.62175
0.497945
0.674393
8.18952
10.8694
8.11838
11.9194
22.7887
3.48073
2.70322
187.167
14.5674
30.2494
10.5796
58.5734
10.582
16.2434
4.94048
33.0337
32.7159
16.0656
4.90429
33.5197
15.7191
4.77573
16.5553
31.3788
15.4947
4.75338
25.399
28.4781
29.5136
24.2406
33.4988
34.5772
36.0945
32.3096
36.9718
32.2779
33.1556
35.7064
25.2143
31.7236
28.0727
29.1937
3.62542
1.69487
1.48681
4.40766
1.34
1.94366
2.11073
11.4305
5.06686
10.9491
3.83965
7.11124
10.8383
76.6906
119.33
6.61397
140.836
36.6405
28.9406
17.4226
92.5358
24.2143
17.0863
112.73
35.6875
22.9737
16.2365
34.3522
23.8127
16.4248
15.9394
9.44236
9.26226
16.9653
9.58302
66.8392
17.5608
73.4147
73.2031
17.499
17.7176
9.56148
17.467
9.64073
10.7222
10.5534
18.8383
10.1621
10.2244
18.7125
80.4666
11.5185
79.9236
11.4139
9.94045
69.6187
17.9841
18.1528
18.3827
10.0677
18.5421
9.9801
77.016
10.9559
78.0453
11.0777
34.6621
36.3263
37.7796
38.949
43.374
38.2663
38.5818
47.7396
41.3381
47.1123
43.3751
51.2694
50.847
80.7327
31.823
36.1684
36.9982
37.8409
40.8812
38.6706
38.354
44.2528
40.5708
16.9635
79.7322
22.4753
76.2835
96.7033
76.6512
73.4086
303.541
15.4546
25.5849
28.8492
38.985
32.8363
36.3647
35.3623
40.862
17.7153
27.645
39.663
36.0789
49.1714
48.0453
93.7496
44.0047
38.9485
41.9262
37.5273
16.6095
25.5164
36.2952
29.5431
21.01
18.2248
21.9142
31.3799
24.4161
29.0311
32.8721
26.1475
51.8297
41.0909
43.5483
84.1871
54.4962
48.2921
41.0269
47.787
43.169
20.0486
25.869
28.5344
37.8707
39.4575
36.0228
33.8134
39.2374
35.2015
38.026
36.7707
39.6951
47.7921
46.6046
44.5853
37.8565
42.7627
41.3075
35.9021
32.3623
44.5942
43.8136
32.5502
38.1233
67.3622
15.654
70.0586
27.5462
35.3741
23.5239
33.3076
17.6211
26.5671
86.199
62.8408
41.9017
26.9945
20.5698
94.1729
42.8623
43.8853
40.4843
37.5496
37.2937
46.0086
48.0083
38.569
49.4134
50.3374
79.3447
98.498
88.2249
21.7872
14.6492
18.9985
31.1514
28.6696
29.8439
30.991
33.6401
30.0322
15.7611
17.6593
20.0468
20.5037
4.52782
18.6
14.4378
3.35559
3.44897
21.761
4.58335
9.58964
9.88592
3.33301
3.36837
20.9612
4.29917
19.426
4.45286
1.15534
2.59512
3.49717
1.4194
8.94304
3.96569
2.86382
3.06942
0.868422
3.39414
2.50461
2.5077
2.64681
2.62839
0.0369764
0.065713
0.101641
0.105527
0.0961536
2.89185
0.760102
10.1125
0.581047
19.6861
21.2644
24.9115
195.186
32.1789
39.0207
35.8826
9.12013
36.1362
7.74398
5.73756
5.75063
2.41159
2.45299
11.7832
16.8113
2.6148
2.54114
14.9604
17.9241
29.4695
24.6435
23.2904
52.6474
350.394
57.9515
17.682
23.5344
19.1955
31.7868
34.9693
38.7442
53.279
163.475
57.1801
56.1104
57.2642
7.62394
14.4123
11.4494
6.13358
186.365
10.806
2.14196
2.236
12.8037
13.3486
6.34911
31.6841
6.31167
2.2166
2.26328
5.77383
5.81215
1.22227
0.271936
1.16458
5.59125
0.398028
0.205029
0.849148
0.681725
2.36495
2.36075
2.22556
1.33283
0.314596
65.0973
1.7097
2.19433
1.06577
1.16226
32.7409
6.49341
33.4919
6.53288
5.75094
5.7322
14.4461
2.33351
2.37428
14.5992
14.8573
5.82519
5.84478
37.0457
2.31302
2.3579
14.5654
29.7066
93.6895
28.4642
56.468
21.4358
15.4175
12.593
22.0422
17.023
11.0193
20.6386
15.3482
10.3673
20.0476
14.4703
10.9785
7.87699
8.009
72.6948
7.60165
12.1555
12.1638
7.92641
7.98507
9.08339
9.13491
7.59266
12.179
12.1539
8.97666
9.13836
74.4271
75.7498
56.8122
33.793
36.9374
63.2156
12.1951
53.7028
19.9684
14.0861
13.6526
20.8094
24.038
27.5502
26.1716
24.1107
28.717
29.9459
27.7907
32.2848
20.6187
13.9132
14.2296
20.2027
31.8831
223.724
52.3485
62.0745
26.731
28.9853
26.7238
29.9084
31.8412
36.3401
33.0304
31.812
37.7017
34.2477
80.9314
46.8043
35.321
34.566
41.8017
50.5868
34.9967
39.52
39.8884
32.2305
307.499
35.714
72.2074
18.5157
22.0222
29.4537
30.1606
25.2077
27.6934
22.9896
23.8801
21.9026
24.1156
24.1721
24.7007
12.0613
20.0662
20.0436
23.9454
23.9554
24.4041
32.4726
31.0864
29.9695
26.0373
28.1583
26.2641
27.1528
26.2391
27.1449
26.5943
29.2608
27.0711
26.6338
30.6133
15.5098
14.8266
22.459
26.6065
22.821
26.8168
60.8414
20.2138
23.9156
18.7495
25.0382
14.3814
14.4571
59.3187
31.3853
28.2297
27.1879
35.5691
27.6226
27.498
27.3972
27.7521
32.7322
241.02
63.1386
56.1548
27.2555
29.875
27.0818
30.9916
13.1321
12.796
27.0776
48.8138
9.39346
18.058
11.4486
17.9554
15.359
10.0636
11.7809
25.4172
26.2418
25.774
26.0056
29.0651
24.5789
31.9232
24.6498
54.9529
30.2069
34.715
54.8718
64.9325
12.7207
55.5814
236.467
10.8634
14.2225
23.8154
25.6969
21.4679
21.8713
24.5683
22.9527
33.1062
56.4507
64.5594
19.0109
23.5115
12.6425
21.4738
20.2764
18.6215
19.1287
20.9135
19.503
21.891
41.746
16.8818
3.31782
14.9033
12.6562
2.57265
2.67413
3.56116
6.94495
39.0764
7.13391
11.4278
2.42759
2.54658
16.8515
3.29895
16.5758
3.38382
0.584579
0.236876
0.431664
0.259824
18.5637
2.0103
0.35753
0.23561
0.384768
0.228002
1.89306
0.86656
22.2158
3.93856
5.51516
14.5998
8.63224
19.4915
17.8473
12.6512
10.8152
15.1846
11.4535
34.7701
6.1748
5.98538
13.6438
2.58402
13.3114
7.64607
1.8792
1.91878
9.39428
14.0168
2.65289
29.6995
28.2386
20.3016
18.2735
17.5253
1.91771
4.3063
5.30008
8.36574
7.00851
8.91447
15.2964
2.92794
2.02186
1.99906
14.8209
2.82599
3.50107
5.11755
204.192
2.50714
6.02268
33.4877
7.47429
3.50363
2.36565
19.4437
19.6557
2.31182
0.903196
0.906748
3.54948
18.3612
3.51392
12.9032
10.2986
3.4994
4.74092
8.08051
7.38613
10.0604
7.31524
16.3562
12.0063
9.80813
9.77407
0.939778
0.939756
2.60409
21.5389
2.64881
9.6949
1.7545
1.36722
18.6113
33.2691
3.37343
206.328
2.45433
5.41457
3.72317
2.892
0.766128
0.962101
0.115548
0.341417
7.03722
10.1462
1.02492
4.59091
8.88672
1.12322
2.23942
6.43868
4.14141
18.8904
15.0358
12.8879
13.0848
12.6316
10.9647
3.84751
25.9228
4.31399
12.7126
2.38909
1.48352
1.34969
4.17767
11.1005
2.13462
11.6007
11.2281
16.466
13.6376
8.80352
11.1535
1.92311
3.23313
5.26967
10.6661
5.46331
8.48692
3.42437
2.83658
22.1568
2.74568
23.4052
1.0485
1.16069
11.3109
14.431
16.6105
20.2695
11.2121
13.9785
17.189
20.4974
76.8192
8.86608
9.41655
72.3966
8.44301
72.614
72.0153
8.37139
17.8716
242.22
28.7701
41.3699
41.8058
5.37532
5.33293
51.2554
50.1955
54.9535
5.61923
5.74411
23.532
50.6339
8.79694
25.4709
43.4572
22.5244
24.1991
22.8828
24.2621
21.8678
22.0947
21.8556
22.276
21.589
28.8741
24.4203
25.1475
19.2552
19.6124
18.5682
19.8497
18.8055
18.8721
18.1147
19.3242
30.3649
29.8446
45.0807
26.7029
23.6944
15.1296
17.6532
22.1308
22.9029
20.9704
22.5047
21.1143
24.9421
27.0673
26.3637
25.4849
15.9269
18.1397
17.1398
17.1937
14.6416
13.2316
15.5595
12.3852
16.5328
11.1727
12.9511
15.204
18.5979
18.7106
19.1989
18.1105
16.881
16.8647
17.8367
15.8447
13.2297
10.705
12.8692
11.011
12.7506
9.72506
8.74236
13.8687
15.8686
16.8646
18.0205
14.3728
16.0757
17.8865
16.8244
17.2163
13.8366
11.2147
13.3628
11.6797
21.121
19.7076
19.7815
21.6957
23.1269
23.9854
23.1664
24.1567
21.5422
20.5645
21.1118
21.0539
21.7417
25.6678
24.3491
21.9472
20.1511
35.4041
19.3615
18.7695
21.7712
33.9165
51.8508
3.58171
4.1948
162.274
7.30724
6.9834
5.68819
8.6209
7.14758
3.93854
6.36661
4.84323
16.4343
19.1222
16.8963
19.2983
176.251
6.4024
7.83696
23.6671
40.6278
45.8671
13.5403
15.4425
14.4177
14.5268
11.7976
11.6423
9.60123
13.5292
10.561
14.9661
12.2081
13.6933
201.995
45.357
12.3283
8.8647
10.359
10.7939
10.4164
9.82979
8.66277
11.564
0.7293
0.325924
0.29863
0.808515
1.57145
4.75151
2.97329
2.93533
27.6358
1.96115
18.3824
17.9257
2.04822
0.594466
0.557974
1.59179
18.8569
76.7691
121.873
11.6366
13.2592
12.2133
17.7757
9.73583
11.5019
2.52196
2.77848
0.884289
0.307449
0.326583
0.807999
3.0395
8.17596
6.49577
6.28574
6.57918
4.60878
8.25478
8.19556
10.789
10.0925
8.77058
6.31336
5.76244
1.53347
11.8664
12.3105
1.45947
1.77623
3.88107
2.22023
3.26787
0.807512
0.726093
5.08609
2.50333
7.20086
8.70607
8.97193
6.98975
7.78063
4.73802
6.42646
6.04705
8.31049
2.07519
4.24291
2.01484
1.3066
1.21151
4.89643
4.04207
5.25146
6.60248
5.67652
7.39987
4.94684
7.85893
9.20084
9.6196
7.4743
0.638668
0.612628
2.65456
3.08781
1.81095
4.22321
66.3032
5.47427
5.51094
1.41549
1.41434
56.487
18.9811
57.0697
18.572
6.65399
9.02187
6.95077
9.16657
10.6249
12.8887
13.4042
10.1058
10.6403
13.9213
13.4613
11.1805
7.73849
12.0747
7.83346
12.4117
8.11419
8.05751
10.6146
37.5202
10.3214
14.2167
8.40998
8.67572
8.29582
12.1359
10.0515
10.6823
5.71738
12.8615
13.8255
13.819
12.8881
11.0939
10.1918
9.23018
12.1601
14.5042
16.0284
15.3074
15.3962
9.27683
7.62588
7.55594
9.33927
11.1796
12.3781
11.9998
11.5344
6.85235
5.72739
5.43792
7.27287
10.2913
11.2801
10.9742
10.783
7.75479
6.4928
6.23725
8.04281
14.086
14.3965
13.3946
16.8456
14.8725
13.7791
14.7483
16.558
14.0708
14.5956
14.4069
13.1634
36.3052
131.578
14.3443
31.4182
25.7477
15.0399
18.1073
28.5422
3.67845
3.59441
4.15963
3.74423
3.14194
4.78796
7.20438
4.76472
27.1373
134.1
5.21735
26.8599
6.67626
8.96778
5.76827
7.6928
7.24267
10.9376
9.23628
10.4332
8.92338
5.93202
4.84131
4.69811
6.10529
10.7404
9.3187
10.8226
9.24934
6.03052
7.8008
7.84502
5.98811
5.95199
7.82458
7.76583
6.00878
39.1282
5.01911
6.70112
5.07168
7.03072
5.60561
5.35766
5.8915
7.65993
5.82005
7.66207
5.67331
5.91391
11.2662
10.5534
10.6867
9.22483
8.64901
9.48425
10.8818
9.99089
10.2432
9.89933
9.27693
10.0113
6.7655
5.63957
6.53218
7.89812
6.94401
7.11528
7.61864
8.15365
7.37424
5.39969
6.11354
6.27965
6.96855
6.19354
7.03899
7.77661
6.69035
6.97004
7.71281
8.49665
7.78924
5.22952
5.84353
6.12692
9.04823
9.83541
9.21126
9.31931
7.90457
8.66523
8.3938
9.15691
8.99547
9.26884
7.8683
8.65172
27.3939
14.4251
108.731
15.6659
4.50452
3.71004
4.56612
6.89133
6.96257
6.14872
5.22205
6.02597
5.27789
4.56195
6.26124
5.4471
6.16272
4.50755
5.42925
7.04804
7.38619
6.20796
6.91811
7.01918
6.20437
4.45747
6.69548
5.40847
6.92319
5.92264
6.99613
5.86118
3.53379
4.7116
4.87553
3.40382
31.9025
3.28751
4.60909
4.55215
3.32745
29.4611
2.57229
3.63909
2.68135
3.62811
2.71625
2.62152
4.32186
4.79042
3.59712
17.6089
17.8073
4.05677
2.96203
2.97264
8.55527
8.90211
11.0059
10.7429
9.08202
10.4629
9.51896
10.283
6.78122
7.2925
5.15755
5.68782
6.10657
5.28234
7.15706
6.35355
7.9168
6.96067
8.11244
6.4501
8.45856
8.72655
6.28481
5.88281
1.9731
1.62421
1.76308
1.67234
1.41144
17.4249
72.8456
0.799343
1.61456
2.58614
0.884508
10.8187
2.40025
8.75365
12.703
17.0549
76.2983
24.8838
3.33314
2.51975
4.48171
3.69512
4.05086
4.59955
2.42966
3.00398
1.52277
2.20384
0.785644
1.43163
1.05838
0.70974
2.43117
2.04982
3.48017
2.92066
5.74744
6.51469
4.20931
5.17437
3.27923
6.02083
6.49515
7.11799
7.41877
8.04592
6.41869
6.84463
7.619
8.02496
6.60748
5.9068
5.43766
4.73749
6.67021
6.10613
5.37185
4.9133
5.97853
5.63216
4.51558
4.14003
5.85332
5.09757
5.09131
4.3225
2.45276
1.73391
3.08187
2.36285
3.00435
3.40105
1.49601
1.84592
0.685012
0.985209
2.47382
0.226514
0.483411
0.406872
0.191569
1.08248
0.780339
1.84304
1.35367
3.06519
2.60195
2.36708
2.83894
1.47883
2.03632
2.48913
3.03465
3.44951
4.08746
2.15523
2.77179
3.67145
4.33363
1.17522
1.49051
0.339297
0.535665
0.782774
0.398875
1.35339
0.847956
2.75017
1.98122
3.55833
2.776
3.37867
3.75084
1.82053
2.19919
3.71438
2.91883
3.78408
2.8605
2.22451
2.28799
21.842
5.63355
21.4129
2.12689
2.02206
12.285
5.8813
18.7768
1.0627
9.00274
1.54944
1.07512
1.64835
1.20444
1.14862
9.7742
1.46804
2.00037
1.40235
9.32961
2.37169
1.52023
1.72914
5.3315
5.30265
6.08791
6.40278
5.74737
5.59121
5.54908
5.72543
3.47146
3.80923
2.34738
3.78118
2.94636
2.27634
3.92703
4.28493
4.79615
3.73327
3.31266
3.64438
5.23731
3.88936
3.18991
3.14731
2.64371
1.28503
2.59328
2.20606
3.19561
2.78009
1.17158
1.70889
0.843588
0.930546
1.7973
1.24732
0.235954
0.539794
4.73675
0.774969
0.405315
2.14597
1.3049
2.47521
1.78791
2.6834
2.75844
1.1153
1.34931
1.15687
0.706795
1.88824
2.33748
1.56038
1.83456
0.710628
1.85902
0.387031
0.860981
0.911981
31.2704
0.63402
0.198939
1.24234
0.359963
1.3105
1.24207
3.14764
1.76238
1.73969
2.64616
1.67408
1.30703
3.4772
3.76267
3.03634
2.22276
2.70067
16.7886
3.43728
3.04206
3.18853
2.24062
3.70832
3.70337
2.54087
2.00391
3.42009
3.75518
2.98883
1.85984
3.12549
3.37216
3.30215
2.11959
1.22863
0.664316
0.550423
3.02654
0.446464
0.761384
0.154642
0.341965
0.140315
0.417228
0.143041
0.878339
0.939764
45.4939
0.87624
7.6415
2.22591
1.12659
1.09189
0.687146
1.51579
0.76528
0.553726
0.838114
1.76669
1.8063
0.681628
1.33029
1.21028
1.58685
0.419342
1.26113
6.82549
0.126496
2.31377
3.43999
1.50694
0.614418
1.42546
1.66934
1.96083
1.69198
0.430184
1.25096
55.0026
1.80271
1.94821
4.60457
3.05122
3.91879
3.06124
2.41143
3.15378
0.603173
0.79216
1.28529
0.953218
1.54165
19.5573
2.59756
7.8576
1.58289
2.36183
1.87459
2.2663
2.42669
1.67526
2.55611
3.01182
2.72314
2.98503
0.886265
3.36369
0.661568
2.28193
1.42154
1.40565
1.2461
2.15161
1.27248
10.7851
5.54379
6.80791
5.90702
18.7622
6.09466
18.0702
21.2614
9.83687
3.44158
3.27601
1.49968
1.18363
1.35174
23.4366
3.70509
21.7954
6.45626
51.6539
17.5244
3.17301
11.2455
8.43371
13.4347
16.3591
134.316
16.3963
15.4359
27.6509
3.96063
12.3087
3.3309
8.02573
5.51054
380.01
74.4417
42.1126
16.298
32.8878
256.039
36.8965
82.4574
22.2188
510.076
155.465
2.34092
1.32416
2.44701
2.39287
2.43998
2.4927
1.2403
2.14116
2.33764
18.3489
31.4016
0.514994
4.57005
1.10687
0.277757
44.3463
178.345
31.4547
1.4248
0.672498
1.67112
2.61073
2.55137
2.45896
2.01768
2.28079
2.2058
0.787432
2.01046
1.89338
7.18937
0.498164
3.88038
0.54244
16.5507
4.88016
14.8863
4.7718
13.7698
4.43135
3.96944
132.855
14.2606
1.36034
1.6877
19.2072
4.0943
19.8251
1.49829
2.30806
0.0801781
0.144701
0.148366
1.88284
8.45321
3.24579
2.58716
2.91223
9.49396
0.860696
1.1544
6.4412
3.21767
9.01981
9.28608
9.03885
8.31408
8.41083
8.4124
8.05554
8.25064
8.16559
6.78666
6.77367
6.92396
9.48617
6.27918
6.53429
6.42393
5.77493
6.40694
6.16279
9.04535
7.13134
1.78935
3.85859
1.40539
26.1467
25.9099
13.2543
13.3151
6.57512
56.2463
9.20498
6.48433
8.77251
5.76621
9.3971
3.50103
4.11727
6.38205
1.93459
0.0423004
13.5346
13.4602
15.1404
13.1058
15.1226
13.0891
8.96311
6.4541
6.68434
6.80999
7.40052
5.19151
21.3241
12.8598
12.9079
1.84632
12.007
1.68678
1.031
5.2046
0.466731
9.54366
1.01621
0.425416
2.50593
0.171324
0.109843
0.161197
0.100026
12.1806
12.6238
11.5489
11.2236
12.5648
12.9523
11.9731
11.6161
8.90018
8.92291
8.97375
8.78726
8.87882
8.87264
15.7888
51.7993
46.4719
12.8229
17.1787
8.671
13.5296
12.0707
11.8788
9.0511
8.28587
8.97976
7.58928
7.91167
7.74596
9.02098
9.05424
10.4111
9.82578
10.1237
6.01444
6.22177
6.35322
6.36773
7.23253
6.52577
7.26028
8.78801
8.44554
5.37535
4.84408
7.32808
0.673788
0.102973
0.126636
0.119543
0.102971
0.109474
1.81481
144.105
103.818
9.96582
7.79902
6.51859
1.57468
1.47442
2.32681
1.05992
0.607085
1.67487
39.0567
16.5531
7.36956
32.4105
32.1726
10.9243
15.8967
10.9925
19.7864
19.2072
9.04473
5.90392
8.3255
12.7309
8.20348
7.74583
33.907
10.8215
9.72001
6.1547
9.70073
9.24969
9.71221
9.28117
8.92689
9.02319
9.18117
9.46545
9.53616
8.44297
8.5793
8.53285
9.12631
9.08535
9.14345
9.25646
9.1498
9.2111
9.50808
20.3567
21.9662
7.87399
8.0159
7.97948
9.01768
8.90953
8.95601
8.71149
8.69942
8.74823
6.97303
7.16886
7.13146
7.28488
7.47314
7.45534
7.77993
7.82131
7.76937
79.5009
10.2945
9.03635
8.98299
9.18015
9.06272
7.21072
6.32347
7.18141
7.08711
7.06583
7.002
7.24184
7.79088
7.46629
5.73415
6.03416
6.011
8.52901
5.47038
8.46947
11.0767
8.43983
11.0234
8.76645
8.91354
8.5837
7.83633
5.04694
3.78783
3.73994
74.9808
4.76367
0.964968
1.05306
2.46754
1.54216
0.353647
0.403519
1.58529
1.60879
2.61696
2.54835
2.50761
2.51724
3.57522
8.51306
3.97492
5.17765
4.13834
7.54718
4.19732
5.88123
41.8258
32.0572
18.6704
23.8462
5.67722
152.305
51.9059
42.8462
9.27699
7.85731
9.80481
8.15329
6.54271
16.9181
2.14133
1.37705
0.577032
0.533996
50.1114
0.491817
2.52753
0.501808
0.751041
2.16444
0.222451
3.11014
0.226064
0.936746
0.321344
22.3536
980.439
58.2692
28.8101
120.038
43.2818
8.55758
12.354
14.4339
12.0079
10.4114
25.314
25.6223
13.5092
13.5871
6.09255
6.17594
7.02309
7.29202
25.1827
16.5502
13.5872
15.5482
6.42217
6.40047
7.25724
230.141
62.2391
6.69511
8.65425
15.7438
6.6349
33.7498
8.04816
5.89475
17.6169
5.52329
4.80404
3.54706
4.14502
8.46956
7.61444
6.78509
5.96991
6.69471
8.59514
7.08038
5.19669
18.4765
4.20517
6.38576
1.14993
1.09215
0.622456
0.777014
3.73236
0.250041
2.95897
0.21987
0.157139
0.375855
0.0576143
1.24226
31.7668
3.86789
9.96283
8.14982
23.3113
41.1304
23.0794
8.5916
12.9846
12.343
6.57215
15.1536
16.7932
4.28342
7.27675
12.0164
17.0671
14.5405
22.8975
10.4848
15.3164
49.9766
14.5143
14.3162
4.78628
5.85094
12.8152
6.21174
7.51947
7.15817
6.82427
6.14179
6.82273
8.78382
11.3101
6.04846
12.4598
13.5861
10.0739
33.5931
7.74393
5.16711
18.0837
14.5091
29.4283
28.1607
11.576
10.7292
5.63037
18.6398
10.9354
38.9702
9.07462
8.47702
8.57473
14.1977
8.70937
9.20018
5.13739
8.45952
8.90897
9.72698
11.289
5.56616
7.79675
5.61211
7.80501
5.77318
5.74697
8.91913
8.81165
8.75472
9.4366
9.07215
9.46506
9.3959
9.05888
9.40339
6.09386
7.9103
6.07387
5.81343
7.85077
5.91673
8.66188
8.6789
8.74749
9.41117
9.11943
9.42071
9.33654
9.33374
9.39927
7.3916
8.65453
7.41419
8.7224
7.54793
7.50177
6.17372
8.15438
6.54204
8.90093
7.62127
7.67436
19.8277
9.94989
15.0265
18.388
8.92508
14.8716
49.5485
85.9208
26.3063
10.261
7.78355
9.34467
12.0689
20.0398
8.38454
9.8443
13.4716
7.73652
7.95255
7.83206
8.66689
8.78491
8.94287
8.60368
8.44931
8.48984
7.31042
8.491
7.26743
8.28664
7.04542
7.08439
6.99144
8.28493
7.057
8.05433
6.96913
6.88877
7.09491
7.21745
7.22976
8.42991
8.2831
8.30378
7.80489
7.86764
7.8224
6.97537
8.00468
7.12722
7.80291
7.37495
7.39389
10.6411
8.9721
9.02131
10.7562
11.6958
15.4278
9.94895
9.73309
12.1367
10.5545
9.80715
8.93976
9.16518
8.98565
9.56539
8.37259
7.22045
6.37197
7.17974
10.2992
10.7683
9.65438
7.40162
8.55246
7.90063
6.01248
6.12452
6.22445
11.0574
12.4456
12.1134
11.2042
9.46305
11.4926
8.75006
4.48755
7.2011
8.22327
5.92326
3.63078
4.85466
0.520112
0.0337794
0.429202
0.394488
0.327719
13.0305
1.26889
1.11541
1.86796
0.473166
0.533153
2.32285
2.16976
1.83649
140.648
1.19299
1.37322
139.671
333.313
100.832
157.61
8.54033
6.48024
4.644
4.70166
15.46
15.3326
2.87391
2.48887
2.19095
2.46141
9.10212
9.29575
9.12125
9.34798
9.13822
9.0976
9.34678
9.21296
9.17699
8.33679
8.44138
8.43239
8.58098
8.76503
8.58953
8.61073
8.7732
8.60317
12.7976
12.5776
12.6184
12.7537
7.97614
6.32759
8.66685
5.59038
7.9997
8.05594
8.11092
8.4329
8.54097
8.35452
8.24772
8.4881
8.29907
6.84703
7.05419
6.99881
6.90807
7.19141
7.06392
7.21372
7.29276
7.15249
24.4826
24.8845
8.97259
9.32934
8.94125
6.23404
6.41549
6.37998
6.67748
6.7045
6.57068
6.55739
6.66217
6.52743
5.72461
6.0579
6.06927
7.32946
8.29998
6.93135
6.72334
8.06936
6.76096
9.21643
8.97453
9.1044
7.29445
5.9495
6.18815
11.2589
9.31174
0.828031
0.689018
2.1092
1.6473
1.88154
3.63405
2.98523
3.44336
3.16298
2.00563
1.73788
2.06905
1.67762
4.03078
2.58695
2.65812
1.44126
1.14946
1.40751
1.17833
1.18171
1.03827
1.23369
0.965372
1.43323
1.13053
1.15464
53.8384
12.718
12.3895
13.2405
13.5164
12.6577
11.7615
10.4588
9.54787
11.5057
10.7036
11.404
11.0445
11.915
10.3514
6.55639
56.9777
28.8674
23.4453
29.3146
22.6259
26.7867
16.6009
26.5485
16.8378
9.31121
6.51706
10.1258
9.19101
7.37626
13.1762
12.5988
9.35745
7.8408
10.9392
2.91289
4.54572
6.37111
5.11373
5.12544
5.46531
4.61086
0.0647414
0.15886
0.0637186
0.153314
0.0595385
0.0602924
0.189735
0.243673
1.97132
1.5307
1.55676
0.84005
0.299692
2.41559
3.7515
0.253936
0.737171
3.17714
1.62566
0.244847
0.447954
0.216282
0.437829
0.670407
0.431902
9.92292
26.9274
26.793
13.6389
13.7189
12.7574
12.4221
12.7746
12.4083
12.0298
11.4613
11.5457
10.7258
11.4753
10.8506
12.0424
11.3861
14.1783
14.9295
12.5267
12.6702
12.654
12.5508
14.9482
15.0485
13.0163
12.9134
13.7472
13.2403
14.4117
14.0884
13.0418
13.5447
8.93164
6.31928
12.9879
9.1311
13.1008
9.0346
33.783
13.4303
33.5433
13.5984
6.70229
16.808
10.5525
16.0158
11.6621
24.4574
15.9325
25.6847
14.2668
6.65108
7.27536
4.8787
16.6419
2.26318
0.980305
2.42564
1.0105
3.63247
1.62021
2.97987
1.33505
14.354
2.15517
0.903468
2.0026
0.869179
1.65242
0.720698
1.63102
0.805432
1.86677
0.822942
4.02769
3.99827
0.812032
1.57583
0.613149
1.36015
0.552273
1.6015
0.739795
3.63558
3.61373
0.703847
9.66419
1.03303
1.55319
0.290208
0.733548
1.43383
0.311984
0.448916
7.50201
0.514182
11.9636
1.94086
0.246488
0.24339
1.17571
9.93578
0.119006
0.135399
0.145271
0.140439
0.962946
30.6804
0.815657
0.279026
0.708641
1.02668
0.261593
2.54295
0.437339
4.20136
0.383075
0.915713
0.25289
0.094193
0.104165
1.02359
1.05314
0.125186
0.123399
0.28102
0.130899
2.70058
0.185716
0.297998
0.155338
0.114617
0.236436
0.113175
2.17385
0.119117
0.403656
0.0990053
0.293012
0.391835
178.404
0.247552
0.361447
69.1121
16.2036
6.08425
9.22471
20.368
0.552621
0.363824
0.48153
24.7341
0.472315
0.423122
30.8269
8.41225
6.66504
24.9581
19.9597
21.4023
19.8142
7.60363
21.7671
10.7763
9.99654
10.4599
10.4471
7.32319
23.9435
9.33119
11.0813
10.6076
9.11705
13.1881
13.2713
12.2708
12.2395
11.1163
10.2102
10.8064
10.4323
12.2936
11.8684
11.5169
10.9771
11.0772
10.7073
11.543
11.0726
13.0543
12.0874
13.4245
8.16177
13.0617
18.9543
10.4699
8.42082
19.3307
9.16612
11.0277
9.02638
9.41065
9.07652
9.08063
9.2764
9.12686
9.5167
9.36391
9.22068
8.82844
8.9356
8.90513
9.03775
9.18552
9.03164
9.07892
9.20477
9.05572
14.5381
220.833
14.2744
5.72747
6.32465
27.9427
13.3641
18.1852
58.6973
15.5387
18.6929
12.077
11.9591
12.1279
11.904
18.6495
8.82139
14.9423
23.2639
20.0112
24.736
25.7683
21.5062
24.8928
11.7986
11.4545
11.7381
11.5683
7.19961
10.3563
17.1571
6.93733
8.33329
17.9746
11.9611
17.6603
18.6473
28.5945
10.7513
9.3014
16.0714
23.4708
15.3086
7.84911
7.63928
7.99153
8.4022
8.97358
8.96863
7.8247
8.31961
8.16201
7.46517
7.50859
7.62234
8.06225
8.03819
7.90166
7.64778
7.90304
7.7751
7.65179
4.13339
7.72655
4.23627
4.20788
10.3449
8.95137
9.89049
6.84385
10.0763
16.2744
6.6999
16.019
9.3789
8.91627
9.62395
8.93159
10.2681
6.23772
6.38098
6.38094
6.53608
6.77006
6.53603
6.53263
6.74016
6.5414
7.44272
7.63077
8.31749
8.0859
6.59222
6.52927
6.75808
6.7303
7.85008
7.41501
6.84481
7.64608
7.04385
4.56125
9.21926
8.51375
8.64885
8.82071
8.73374
5.77045
8.50064
8.39574
8.31101
5.52191
4.81956
4.85349
4.62624
4.6347
4.538
6.66996
4.99571
4.73976
2.52148
2.179
2.56544
2.13976
0.092686
0.193276
0.202264
0.0887241
0.0883099
0.61946
0.639627
0.0279188
0.0693148
0.0671179
0.0288679
0.880756
0.140528
0.158735
2.22057
1.95092
2.31151
1.86159
0.0182219
0.0614717
0.045929
0.0264156
0.0912297
0.0742773
4.09815
4.01254
2.05917
1.91125
2.19414
1.76976
1.95469
1.51519
1.78616
1.69538
0.0782343
0.0961972
0.204634
0.10857
0.682188
1.77396
1.44928
1.41628
667.152
121.49
622.439
184.036
95.5883
1555.43
292.947
16.6417
4.47282
5.91847
4.13873
12.3411
13.1075
9.15038
11.8223
11.2982
8.58068
7.57653
6.52456
4.93224
4.86269
12.3196
2.03364
1.55417
2.00676
1.89552
1.49811
1.92954
2.47622
1.76808
1.88272
1.3517
0.819414
1.09494
0.839402
0.679802
0.921744
6.385
5.21301
13.6017
16.0079
9.70063
8.91948
149.09
8.87822
14.4535
607.763
9.77844
8.75122
17.6142
8.35953
6.75491
18.6106
17.9311
13.1114
86.5227
25.7863
14.0078
25.7127
12.5847
32.4282
14.0619
10.5331
11.4028
17.6888
21.8063
16.379
95.2833
5.28214
9.51714
6.38038
5.7805
11.9678
6.77776
7.21439
10.4076
10.6662
8.28768
9.62753
9.47421
9.63331
9.29293
9.73123
9.73444
9.51967
9.68455
9.6698
9.40469
9.15153
9.12777
9.00783
9.25351
9.09474
9.21988
9.34198
9.18806
9.25
9.68984
9.62491
9.45059
9.40667
9.52192
9.66005
9.49283
9.60696
8.41315
8.47514
8.502
8.74515
8.86333
8.69925
8.64065
8.8307
8.66597
9.04091
8.92396
9.05642
9.08739
9.14398
9.14559
8.9284
9.05694
9.05818
9.17461
9.00981
9.13012
9.12024
9.15886
9.1813
8.97917
9.07564
9.09966
12.2382
12.3946
12.4326
12.2025
12.6393
12.5353
12.7101
12.4681
12.0971
12.3543
12.1643
12.2888
9.94218
7.20497
9.33167
8.01016
10.9388
9.96668
12.0304
4.94548
5.59926
82.5913
12.1648
25.2685
7.83535
7.98125
7.95129
8.18125
8.34491
8.16218
8.1777
8.33985
8.14628
8.92498
8.71156
8.85763
8.86526
8.86568
8.91002
8.66231
8.76469
8.80995
8.62291
8.51202
8.65331
8.7287
8.80764
8.77073
8.51762
8.7053
8.66911
6.94457
7.08574
7.10666
7.32372
7.43978
7.29188
7.2486
7.42199
7.27048
7.22439
7.3023
7.39138
7.62117
7.67715
7.58917
7.41511
7.59528
7.51588
7.69704
7.571
7.68218
7.81012
7.73047
7.75731
7.55609
7.6438
7.66865
24.5938
10.7204
11.7535
10.7879
9.27196
9.34381
8.99362
9.16533
9.14738
8.92637
9.0236
8.94822
9.24855
9.03647
9.05697
9.08135
9.03902
9.04754
6.62746
6.50474
6.73274
6.48282
7.22178
7.19565
6.64
6.95013
6.84644
7.01643
6.82134
6.91987
7.09457
7.01724
6.97966
6.78133
6.90671
6.88447
6.95212
7.25437
7.31419
7.5582
7.1084
7.28381
7.04321
6.97886
7.13882
5.72636
6.04859
6.03113
6.43835
7.46344
6.50691
6.69326
7.75911
6.62053
10.9869
10.0161
10.7652
5.56921
8.99684
8.57209
9.79652
10.8467
10.7112
10.3677
8.9881
10.6672
7.88607
9.79596
10.65
9.41919
11.028
10.9735
9.04264
8.7981
8.99672
8.9573
8.89217
8.95513
8.65256
8.7104
8.76726
7.58197
7.15745
6.71022
3.89702
4.2934
3.482
7.70612
4.50195
7.16775
3.35216
2.98152
2.72272
3.22696
2.86908
3.31875
2.78531
2.28699
2.54891
2.71346
2.13681
1.97297
2.44165
2.36624
2.03959
2.17564
1.79438
2.12907
1.83757
1.10545
1.43297
1.37724
1.15627
1.23471
1.48374
1.52148
1.2016
4.39538
2.96084
2.85508
1.25672
0.980396
1.27642
1.36911
1.04166
1.35331
1.57781
1.1111
1.36931
1.30319
0.730684
0.91706
0.941028
0.711565
0.829629
0.879182
1.05305
0.675309
0.987233
0.745412
0.946958
0.784634
0.564465
0.854632
0.760447
0.67581
0.443261
0.564933
0.60383
0.405398
1.51328
1.24653
1.22158
0.515342
0.363511
0.528872
0.583257
0.391373
0.567031
14.9339
13.0145
18.8286
61.6398
1.18644
1.46304
1.56213
1.13802
20.3451
1.43754
1.11507
15.0315
1.93184
1.78926
2.10235
1.78058
1.4759
1.97682
120.086
1.63143
1.95792
2.37712
1.85507
2.01584
2.23108
2.4912
1.91279
2.27396
2.30011
62.3915
92.2338
366.454
31.0468
5.12892
3.40048
4.77152
3.4496
13.159
9.71829
8.50411
3.04745
25.3048
16.336
6.84105
6.89907
3.18535
10.6719
4.49252
0.996671
5.62852
7.25738
0.815711
0.833003
0.703762
8.15168
5.89106
5.71452
7.67108
5.32129
3.60022
7.60029
6.60535
3.5431
3.53631
9.68909
9.40177
6.07424
3.79438
5.54372
8.02936
5.26758
5.45819
8.16481
5.81906
5.59728
68.4083
69.1828
6.36131
6.20844
15.811
14.2372
10.8937
7.47278
11.7326
11.1302
9.36549
5.84467
18.5829
21.4122
18.6748
23.0016
44.114
7.32922
69.7023
6.68406
9.32131
9.61979
6.79365
8.27068
6.14366
20.0672
181.772
38.3282
8.57395
15.4201
14.343
8.94894
6.20589
7.52304
6.30415
198.975
6.33685
36.9456
26.994
35.6544
28.3964
28.8124
24.2809
29.4721
23.2339
15.4082
14.4741
9.55298
9.69413
12.3893
17.4299
20.5025
10.6454
9.12001
16.45
9.30218
15.8164
9.03219
6.62519
8.79478
8.72593
74.6788
9.79208
7.97151
5.41063
5.99087
6.47713
5.15543
5.15025
4.46839
4.27853
2.57539
1.50084
1.90684
1.75868
1.31416
1.68666
4.83514
0.45282
0.569258
0.440295
0.0481121
0.135472
0.0497928
0.0554079
0.143864
0.0544272
0.545834
0.398371
0.415858
4.60793
0.894763
0.413563
2.06467
0.528401
0.544486
0.0415025
0.114051
0.0395989
0.0476902
0.0940032
0.0304813
0.456889
0.347801
4.22748
4.05134
0.301512
3.94156
2.18131
2.02623
1.72389
0.717284
0.512889
0.731658
1.0323
0.581691
0.824555
0.332137
0.277617
0.619674
2.78574
3.0149
0.0598569
0.183567
0.209866
0.130167
0.0411976
0.145253
0.169234
0.0474037
0.163787
0.0607784
0.0204053
0.061425
3.1765
0.239916
0.236808
0.0222807
0.0658054
0.065403
0.257345
0.267505
0.0992243
0.0281035
0.0825355
0.0728559
0.0260576
0.074793
1620.03
36.5681
45.0917
11.0404
15.1381
6.8637
5.49421
5.65107
0.163662
0.577312
0.185768
0.687783
1.46169
2.4444
1.28457
2.20991
46.4115
19.9319
3.73909
3.92428
3.21294
0.13564
0.501251
0.143712
0.449203
0.764988
1.20936
1.11684
1.55031
173.295
13.1984
461.588
14.5575
25.3817
80.434
72.4721
9.69554
1.29931
13.7203
13.7709
13.2639
13.3359
12.9754
12.4265
12.0438
11.7031
11.7269
11.4551
11.2175
11.9323
12.8858
11.9778
8.42659
10.4552
8.16747
9.58138
9.97752
7.48117
10.2085
7.13476
8.48541
10.7681
8.96439
10.852
10.6246
9.1162
5.74792
6.31564
6.06267
6.03157
5.66221
5.31085
11.0518
9.27548
11.7928
9.832
10.1389
11.9876
43.1201
12.3058
8.14333
13.253
12.9483
12.7455
12.2539
7.36269
7.2568
8.21899
10.9259
168.291
14.8452
15.0735
12.9003
12.8009
13.9686
13.5648
14.3304
13.8394
13.4335
12.9565
12.6855
12.607
13.4686
12.2809
13.1529
12.8233
11.6038
12.3578
6.53362
6.82385
9.58751
11.6752
9.59449
11.5923
6.03204
6.71027
9.4166
12.0759
9.68286
7.99453
6.09483
13.6638
9.2345
13.3716
9.3222
37.9716
14.0779
16.4862
24.4136
6.71706
52.3189
15.1527
10.0573
15.1604
9.96076
22.3317
13.5746
22.6096
13.5897
9.17949
9.16979
8.26161
7.60658
4.95808
16.9718
2.61589
1.08111
2.49296
1.0619
6.45865
106.886
11.2641
6.6617
4.36233
3.03885
5.31851
4.29229
2.44262
23.4943
2.45622
1.84976
1.54977
2.8689
1.07024
0.372315
0.397528
0.332068
0.367506
1.29571
0.284191
4.94217
0.277363
1.21401
0.287261
0.30505
0.344322
5.67844
5.58167
0.352488
1.33838
0.327674
1.30957
0.311825
0.669096
0.216143
0.281887
0.252387
0.326267
0.567116
9.98061
7.68295
5.9755
8.376
3.64007
5.18206
4.43533
2.99664
18.7196
2.72871
1.18184
2.88435
1.22291
1.13808
1.06556
9.30804
3.64144
3.01793
1.40955
1.08106
8.2542
7.01951
5.47247
6.69933
5.49334
2.45969
3.73308
3.94788
2.23519
1.2518
0.96443
1.76347
5.61575
4.15231
10.6942
0.607486
0.786205
5.21835
0.97465
1.35291
0.410363
0.402019
1.98928
1.57607
2.19772
0.890284
5.25468
4.63493
3.34183
3.87307
14.1172
1.86042
0.790674
1.95091
0.816919
3.65851
3.56402
2.45309
2.52406
0.353415
0.390584
29.7598
0.238251
0.244607
1.0107
0.199294
0.175626
0.559858
0.716499
0.174402
0.166698
0.790781
0.0700473
5.82475
0.503699
0.114721
2.38121
2.27665
1.42426
1.4763
13.16
1.77491
0.73123
1.69176
0.712122
3.012
2.82443
1.85239
2.00257
1.38161
1.51767
2.62444
1.74234
10.6235
2.35664
2.60732
0.205308
0.230119
2.31996
0.14067
3.44404
0.142717
3.4002
0.267525
0.921874
0.312898
0.574183
1.8961
0.941267
4.40939
4.27454
0.820419
1.29703
1.02601
0.237541
0.280806
0.270202
0.22663
0.275767
0.275985
0.268001
0.301897
2.25773
4.15942
2.97219
1.3786
12.7383
1.05811
4.75973
2.244
1.80236
1.73617
1.07241
7.94577
1.10744
1.54765
2.19071
2.0748
0.182563
0.170263
1.61708
1.12252
0.300777
0.400218
1.03725
1.50251
0.40931
1.06773
1.40414
0.63923
0.111959
0.137266
0.0562992
1.05831
15.1358
0.375334
0.954334
0.331679
0.432624
12.4113
3.35445
0.320761
0.301009
0.165629
0.330636
0.929566
2.54098
0.107544
0.201645
8.59247
0.911817
63.881
0.22727
0.222256
0.472814
1.56404
0.170077
9.68218
0.249595
0.628711
3.83463
0.36273
0.397568
0.322827
0.429088
0.217173
0.0819698
0.0923653
0.86595
0.194046
0.407958
0.260351
0.362479
0.167876
0.146409
0.1082
0.0899148
1.03276
0.103874
0.17016
0.20442
0.0777707
29.5029
72.2784
10.4119
5.28225
10.2102
14.4724
5.53559
15.7846
13.2852
7.56822
7.31948
5.43585
10.0557
3.57485
7.81216
14.1093
5.20167
7.33151
12.211
23.4804
8.49887
5.81635
53.1328
13.872
36.1181
13.5436
15.2374
60.2242
6.02312
30.0103
17.9822
11.1312
40.3199
7.00747
11.0427
24.0159
23.3678
12.6178
13.7
5.11701
39.0571
8.33889
14.7624
14.6655
4.61844
9.83681
7.01205
6.20017
15.294
8.03954
21.2166
27.5881
7.48766
14.597
14.9491
7.23319
40.3904
22.3619
19.1548
7.57279
5.1509
18.5086
17.7968
6.22553
10.448
4.56561
13.9763
10.6232
9.43348
4.00089
10.028
13.1551
21.8213
8.1144
6.86406
8.44608
25.3623
7.14167
4.5531
52.8826
13.6735
14.4424
5.41822
6.01481
10.4797
4.44077
19.0462
15.0788
18.8315
50.3755
13.1933
10.8559
10.0351
13.6325
12.4496
7.73117
10.2916
11.0399
57.4421
7.91626
10.8648
9.82397
10.5309
9.42776
7.82467
1.59174
4.73674
9.96197
8.24864
6.00882
9.15858
5.63907
17.6876
4.82917
13.512
12.033
5.73971
2.37399
6.56068
10.5015
8.18195
27.2399
5.75612
6.45213
9.31946
10.3529
12.2015
11.5339
11.1541
11.7195
9.70471
10.8854
5.59079
5.09092
8.31874
4.48653
4.01125
7.3254
6.16938
5.43975
6.54083
4.31108
6.85289
11.7404
8.39391
8.04665
11.0327
24.8906
6.54767
5.62794
5.00118
5.78415
9.32274
8.6843
9.79139
9.85157
8.83895
16.3725
7.57202
6.3751
4.23203
1.76963
12.2108
11.1037
5.38978
22.8092
4.56052
1.73241
14.1444
12.8197
6.96742
7.52383
20.9208
11.8817
10.9419
11.2666
11.8872
11.0896
11.2143
10.6572
10.1546
10.6616
10.3793
9.72155
10.6447
17.9338
25.7134
10.7269
8.28586
6.87178
7.37176
22.5611
4.03366
9.2371
4.86422
9.01301
5.12186
5.34569
11.9473
11.3392
6.88774
12.1833
12.0488
12.1093
11.0144
15.8585
8.84411
7.31579
11.024
10.5633
5.66504
27.1762
25.0031
13.076
13.074
29.4851
8.29349
7.64749
24.9651
11.642
7.82246
6.84186
18.5216
8.1568
6.15177
8.07637
6.14104
11.0847
5.43837
9.09705
5.2314
14.404
8.37949
6.15947
8.10792
5.82128
6.60136
9.00326
17.4788
8.59072
4.27877
11.238
11.0268
11.0466
6.65033
10.7315
8.99133
8.21691
8.20372
26.4465
9.60195
10.3077
10.5158
8.86598
14.1573
7.62922
25.5048
6.84071
27.3842
6.15742
43.1088
6.2484
9.1785
13.3847
6.30237
20.6227
5.92152
9.51242
6.66386
21.5442
7.30454
9.97864
9.51621
14.8505
9.77742
9.60268
6.56707
8.21174
6.13632
3.09861
15.1555
10.6009
10.7536
11.0465
7.8425
5.70505
5.66614
7.83771
5.72348
5.73649
9.2442
10.3736
9.10586
8.90838
9.07341
8.88147
10.2572
9.39661
9.22738
9.45578
9.40407
9.49111
9.13695
9.71983
9.53606
9.48661
9.77874
9.56884
9.37889
9.25148
9.38569
9.23956
10.0182
9.62526
9.54379
10.16
9.64626
7.96636
6.16298
6.09592
8.0336
6.23889
6.08626
8.73549
8.88237
8.81871
8.84062
9.06718
8.90772
9.03338
9.13077
8.97557
9.41994
9.31785
9.41348
9.23697
9.48305
9.45459
9.3334
9.43893
9.42757
9.25883
9.2094
9.32357
9.37295
9.47579
9.44442
9.26784
9.41565
9.37538
5.52256
5.54739
8.659
7.43355
7.42605
5.59105
5.57179
8.69363
7.44817
7.47196
5.71781
5.67607
5.61668
5.64423
8.48505
7.46386
7.1005
5.65556
5.27794
8.93315
7.66596
7.70465
5.78129
5.82814
5.82335
5.85635
24.1278
14.0498
10.2512
7.88519
8.51807
9.77407
15.0864
27.706
21.8175
11.1478
17.9775
27.1378
20.6636
21.4906
29.8222
229.057
19.8075
20.0805
60.3426
8.61527
7.10045
9.22017
6.40148
21.5702
29.5162
19.6317
12.2224
12.0008
12.1688
12.0542
11.4165
11.7707
11.7074
11.5317
11.6692
11.8184
11.8733
11.6014
19.8582
8.93361
14.9725
24.709
20.933
24.2028
27.6824
21.5251
24.7587
29.1502
54.4487
28.5495
186.18
50.5354
28.5519
53.1137
42.7229
26.7127
61.969
27.9514
11.5724
11.2794
11.6698
11.027
9.68383
10.7192
11.0174
9.03508
7.53946
10.3047
9.70965
8.34177
11.7507
40.2221
10.4386
11.9497
41.1266
7.41859
8.22907
12.8202
15.5935
22.9424
12.0398
13.9376
22.4605
10.7074
13.5613
47.0064
12.3528
46.3333
20.4509
49.8915
231.546
16.7113
17.4464
46.4534
8.71321
10.0134
13.7003
15.7373
23.44
13.447
15.7346
23.4767
12.1735
14.7963
47.9781
13.6659
48.0438
7.62928
7.6673
7.73081
8.10489
8.14243
7.98714
7.8328
8.04865
7.88961
8.6497
8.98044
8.97568
8.56606
8.4031
8.63169
8.45682
8.3048
8.56441
8.51995
8.28468
8.40396
8.36756
8.3696
8.40438
8.1942
8.27595
8.31657
5.45446
5.41909
8.44959
7.19677
7.2316
5.36028
5.38977
8.31979
7.14744
7.11608
5.22251
5.26123
5.32046
5.29157
5.2531
5.24234
8.13119
6.82357
6.93432
5.04866
5.13769
7.97947
6.8063
6.82656
5.16152
5.09707
5.03188
5.04878
7.16153
7.3896
7.28462
7.36723
7.5218
7.38298
7.5169
7.56647
7.42451
8.38344
8.1472
8.23174
8.20399
8.08327
8.19978
8.01071
8.00103
8.11277
7.72606
7.64286
7.74338
7.91287
7.95603
7.86836
7.68843
7.87758
7.78992
5.31834
5.70144
8.01591
7.5289
7.36668
4.70479
6.43074
6.20228
7.84784
7.51089
7.44352
6.18895
4.26889
6.21106
6.38681
4.33929
6.27536
11.9979
9.21035
10.4927
8.98522
9.36075
9.45928
8.98073
9.57293
9.68414
12.1028
38.964
10.2362
11.6467
38.456
10.0801
11.3041
33.6161
11.5177
36.1652
10.6349
26.3325
9.96557
10.8455
25.8913
10.1367
10.7828
26.6346
11.0357
25.8376
9.68361
8.9857
9.54862
9.24164
8.90809
8.91405
9.00387
9.11904
9.19422
10.179
113.815
9.18085
9.44722
8.49855
6.99999
7.24853
6.50431
6.41871
6.6084
6.52118
7.21521
7.18625
6.56004
6.85285
6.72714
8.65821
7.2348
8.18831
10.1968
8.5863
9.06673
7.08498
7.54162
7.80459
7.01668
7.27938
7.45264
8.73638
8.18781
7.94841
7.0169
7.36494
7.32183
6.13917
6.4226
6.34328
6.4749
7.24684
6.55663
6.74591
7.35477
6.66792
9.30995
8.8084
10.3747
12.4865
12.4314
12.3869
8.85319
10.7114
10.6282
10.2974
8.58891
10.3832
10.4704
12.2574
11.9264
8.70317
10.6649
10.543
8.72241
8.83812
8.82423
6.24745
4.9378
37
6.7122
8.21671
6.67471
7.95536
8.20634
7.89106
7.91637
4.58731
5.84234
4.85902
4.84783
3.89178
4.06607
4.18524
5.20754
3.74195
3.9834
2.7057
2.24957
2.6402
2.30898
1.45291
1.81668
1.78218
1.4818
1.58693
1.88274
1.93467
1.54289
0.552734
0.337748
0.354088
0.523767
0.0784104
0.183118
0.0838567
0.172167
0.0823792
0.599851
0.474894
0.320645
0.497142
0.304436
0.266463
0.15326
0.149265
0.27329
0.0364837
0.0799508
0.0349749
0.0837138
0.253147
0.177924
0.208969
0.249418
0.307649
0.16999
0.296697
0.176716
2.66451
2.26202
2.61502
2.30976
1.22337
1.61458
1.52945
1.30216
1.64261
1.92542
1.96734
1.60751
0.183254
0.108575
0.0963419
0.202607
0.228953
0.118189
0.217439
0.125796
0.207811
0.133621
0.110987
0.239583
0.386017
0.257456
0.39967
0.239477
14.0314
3.66847
3.77255
1.63943
1.23799
1.60043
1.45236
1.14367
1.48699
1.50347
1.32923
1.6011
1.24311
1.24914
1.64508
1.4985
1.39846
0.795052
1.08044
1.00629
0.857628
0.077222
0.0349662
0.0360852
0.0745186
0.104408
0.0284445
0.0632954
0.0520336
22.2825
4.20086
0.0994201
0.107927
0.862995
0.531196
1.3339
1.23275
1.49127
1.08602
1.23042
1.26252
1.45342
1.03017
0.660179
0.996619
0.86144
0.783562
1.92703
1.51726
1.56945
0.677455
0.457751
0.657668
0.748512
0.564795
0.783661
63.6141
1076.23
14.1904
419.303
179.425
1.81511
37.4495
159.296
36.5443
430.793
69.2753
215.262
1077.52
3.5367
3.54267
4.26592
4.198
18.9583
0.857771
1.3312
90.5748
125.435
10.1404
12.5657
19.0568
63.633
624.321
95.385
160.496
344.381
52.4109
457.162
140.73
1355.71
56.1498
123.95
3.63551
3.86307
3.18097
266.266
4.02272
188.042
2.77746
1.05279
6.82465
5.43909
6.00112
5.42673
7.4949
0.232488
5.15466
5.78184
8.52877
5.11628
7.78656
7.2984
6.16951
6.57979
7.76395
7.35369
7.35923
7.7393
8.37107
7.01552
5.96969
6.14724
7.89725
6.71323
7.2261
8.81188
5.73151
5.66409
7.97058
5.72276
5.52832
5.39542
9.53623
5.82347
5.96868
6.33364
6.92021
0.081563
0.161457
30.4657
0.88086
5.23296
5.98165
4.32214
4.83719
5.60417
5.25044
2.3264
5.77689
2.54477
6.31368
4.77078
4.7274
2.38949
5.95535
3.14557
1.069
0.831099
0.876588
7.85701
8.50812
7.05762
4.52064
3.65002
4.94447
6.56467
3.9385
5.66044
4.17087
4.01097
3.20656
0.475203
0.248323
0.304594
0.37026
9.09712
10.2587
17.0934
14.7686
0.0557968
0.0489836
0.829598
7.74109
0.172944
0.0730821
0.0380581
8.19091
11.5487
7.60246
7.10344
14.219
11.3988
6.39699
13.7711
6.1149
6.46891
9.12272
14.9045
6.45119
11.2867
10.7512
0.0611298
0.0653429
0.148057
0.132418
0.640173
0.415254
0.345664
0.347974
13.4848
0.455218
11.1153
9.87936
9.9878
4.20526
3.90472
6.01927
7.38296
4.50222
7.37695
0.199271
0.194532
0.276477
0.14594
6.37696
7.51394
7.22295
6.99126
4.54745
3.56416
5.13811
6.03969
3.954
5.7571
7.75523
7.32272
7.35271
6.16816
4.235
6.17538
6.14586
4.23175
6.17178
8.09444
5.85583
6.51488
8.3618
6.91592
6.9068
7.20021
7.27518
6.61701
4.20824
4.31239
6.46063
4.9699
7.7552
7.53187
7.17738
7.10307
5.78211
8.57275
5.47639
5.57277
7.9636
5.40751
5.40621
5.11019
9.48221
5.79817
5.93306
7.22075
5.4498
4.93827
7.30248
4.47593
5.54384
4.94274
6.16166
5.96538
0.0923017
0.0321947
0.0829491
0.0353489
0.0890621
0.14929
0.0498571
0.157036
0.0467376
0.124294
0.674256
1.91204
0.0754177
0.843697
0.146537
7.01861
0.10212
0.0890724
0.064901
0.597762
0.0362857
0.0665017
0.0268582
0.0687094
0.0571002
0.0241113
0.0563191
422.812
418.293
1187.32
263.053
1015.15
160.867
370.626
382.515
24.7127
19.6031
45.9795
30.9077
26.6065
10.7904
8.36018
6.30902
9.4069
6.21145
7.45115
4.88594
1.45569
584.976
16.9801
17.7468
16.9776
15.6445
15.7827
11.8381
11.832
11.5578
11.7229
11.1836
11.4851
10.616
10.5133
9.05109
77.3891
7.76936
1.90966
98.4856
16.8953
9.14958
9.41469
7.61875
23.3847
192.307
48.6971
42.7507
28.5381
13.8674
9.09652
8.20086
10.2941
6.08713
8.3917
1.72568
180.878
127.968
113.614
42.1592
32.3745
19.1735
16.246
70.9243
12.6848
57.5313
10.4722
8.13941
1.6106
59.4292
1953.41
24.1031
15.5255
64.7746
175.37
17.9564
56.545
97.5148
42.41
33.7977
32.0598
31.0151
13.4456
15.9488
66.5712
44.4823
10.1602
129.734
434.786
392.25
13.5437
13.3352
110.211
12.2615
12.364
12.008
12.0707
11.3173
11.1556
19.6467
83.7705
11.3986
9.13661
6.55458
7.54624
24.4774
10.2026
6.31756
7.74735
10.1579
7.13348
6.85593
5.35298
6.34993
7.02882
6.69866
5.1281
6.1092
8.22409
6.18219
3.21015
11.2797
2.92571
86.4852
46.0102
254.727
269.924
29.5825
37.1098
29.447
101.906
96.0514
87.7248
61.4494
32.1553
179.207
60.9134
31.6352
26.1522
21.7052
25.5591
51.368
52.8306
107.113
34.4954
45.0999
20.4821
19.8681
14.465
19.5394
69.6042
92.4767
20.6657
80.7678
12.327
16.5449
91.0515
18.8779
13.8235
79.4171
59.0789
10.7111
69.6515
12.4938
16.2486
13.9846
15.8881
50.7263
52.9582
13.7493
11.5178
11.4927
11.4262
8.8968
11.2839
11.0057
6.4155
4.90813
6.21686
3.48136
4.24626
2.79644
2.73508
1.71511
2.65261
0.678147
4.72037
1.05747
9.51503
4.44282
0.164778
54.2057
16.0362
95.0297
11.0724
22.511
14.635
7.26569
28.4503
111.33
50.317
44.9267
37.4554
10.6926
8.14754
6.21937
8.48287
7.62814
7.93694
205.793
25.6972
27.198
9.5187
5.46927
4.82217
2.67248
2.36638
2.36735
13.8341
52.286
12.4691
5.66007
17.6765
180.965
61.0206
328.751
13.5447
279.862
21.5052
396.836
16.2928
20.6399
10.6306
11.4547
15.8441
25.5964
10.1749
22.2334
8.27866
26.8728
15.738
37.4329
15.1173
16.0056
14.1981
11.9373
146.114
11.6908
11.1446
30.6383
21.3085
11.3667
10.9235
65.3089
15.5519
29.1706
69.1797
82.4539
11.1001
10.6389
47.9895
27.9012
20.258
10.6633
18.3858
19.7945
17.8876
15.191
14.2321
14.5295
13.8388
12.9528
12.4754
12.6831
12.298
11.4746
10.1647
10.6603
10.1333
10.3714
10.2695
9.85845
9.76386
9.83787
7.80915
8.56011
10.1536
7.71531
7.53788
6.02246
6.37819
3.76074
8.79352
8.02985
7.24159
7.16652
7.38285
35.2114
2.34867
345.878
90.9126
92.8221
77.9962
312.189
102.848
38.6924
46.7473
31.8812
38.8145
1.89153
1.93927
9.71529
1.77075
156.59
1.92213
15.6985
2.59174
1.844
15.23
1.50043
1.44815
12.547
30.9491
37.3786
5.73054
7.82431
2.74895
3.52921
1.24011
1.5946
15.0338
19.5219
62.3092
42.8017
28.1678
25.8887
9.18307
10.433
59.5342
10.7013
7.55168
14.0359
17.0881
26.6605
94.5282
14.525
12.698
19.1986
23.1303
9.63893
30.7136
19.0678
13.9959
18.2506
20.2777
18.9681
10.3531
55.8504
27.6335
6.98843
18.0597
10.6275
17.1592
20.2827
20.2385
34.9617
16.3375
16.0123
21.3209
9.92348
8.59969
8.77783
8.78876
8.48314
8.33124
115.01
181.812
13.5184
60.2406
35.6509
145.522
13.9161
477.391
41.729
33.0411
16.2471
29.5076
26.7185
30.4166
45.2673
12.1009
360.596
25.448
39.1728
44.2626
37.5117
32.5149
28.7777
10.4877
8.08181
6.29696
8.87713
7.31013
8.88491
8.76958
7.05823
10.0739
5.53283
5.36217
11.7275
187.005
127.337
125.505
162.006
56.2264
116.022
767.975
36.0088
97.3045
156.171
35.2972
30.1232
108.534
277.605
33.8194
88.4481
18.9577
326.3
26.7984
246.681
20.5579
96.9263
20.178
13.6082
13.4358
9.38562
51.5741
9.08767
11.8862
8.58384
9.30645
8.72207
6.6346
5.76954
6.43842
3.91392
4.72372
4.18092
3.66595
2.90283
3.583
1.98821
2.28961
2.02468
1.83145
1.50591
1.76807
2.2752
13.5078
5.88013
30.1087
15.5946
50.6843
7.37104
5.91825
27.6892
8.89039
15.0743
13.0462
10.3779
8.04141
33.2676
10.5771
8.68938
11.5136
57.8087
4.34907
20.3773
11.3653
9.9512
30.0536
72.617
42.6229
40.4994
60.8112
68.5299
17.5791
256.339
59.3435
26.7381
45.3094
26.9456
19.7186
27.1028
44.5568
13.4
24.0982
12.0699
9.72043
25.636
30.4359
14.3692
5.62873
41.7838
102.72
9.36521
261.63
275.897
14.8491
230.569
11.8096
10.0621
31.2102
11.347
86.6454
20.7579
41.9316
19.762
18.2066
21.5434
15.6125
19.4301
12.7092
11.3237
32.9318
34.0574
79.8789
120.707
76.2047
63.7773
78.2017
39.6286
47.5015
14.2732
8.61377
29.0761
106.269
24.2895
26.6723
24.8997
30.9511
57.5866
39.9317
246.374
49.1402
7.5838
16.5318
16.449
26.9433
30.2439
7.11377
10.4709
11.263
17.2405
18.279
16.9193
19.5128
14.9672
21.7472
239.288
13.2722
21.1023
20.4762
30.0525
34.8342
30.2173
46.6651
63.0389
22.0366
20.9486
61.903
19.8659
25.9656
18.8545
20.6257
13.1136
26.0374
30.2178
37.1262
24.3868
16.7825
10.9946
27.3517
24.2813
24.9837
23.5713
23.3908
183.757
52.2527
30.8797
50.2283
24.5859
44.8605
162.087
200.749
162.623
19.6605
327.009
116.358
221.915
34.2982
42.0343
31.5651
644.153
49.7309
35.2536
163.412
15.1071
24.0364
74.4645
15.3573
30.2452
70.2376
37.6668
24.5835
21.9727
527.106
20.445
467.695
29.3706
16.5213
412.393
209.264
17.0056
454.908
19.9427
164.317
260.534
32.9566
232.195
14.405
23.2814
13.7079
45.0422
11.5988
72.8995
28.3028
30.8305
26.6057
132.095
26.2812
229.097
582.898
51.0243
12.5906
11.2776
221.014
21.2699
65.2699
26.2118
74.228
49.031
20.5332
31.076
18.1932
87.652
20.018
37.8368
21.5691
634.349
182.695
17.5047
39.4511
53.8929
27.5191
101.665
145.574
31.3319
16.0105
24.3457
45.1095
29.8225
89.3863
11.7025
10.9039
17.0629
73.4691
287.761
14.6507
259.96
35.5238
105.182
75.6842
16.6641
32.4303
17.6358
20.0804
34.843
24.5171
30.8245
39.024
11.0567
126.523
45.4373
24.9265
25.0847
39.0112
44.8168
19.4143
178.225
14.9081
25.4238
18.9271
11.1509
10.5963
15.6547
71.58
27.2062
30.3321
11.4876
22.7178
10.64
40.4155
19.6618
38.6923
15.4782
14.9282
35.1521
17.6361
18.0402
17.2842
15.5905
15.1245
14.8901
15.2826
18.2313
16.2308
14.2796
12.9652
14.4428
13.5066
15.0851
13.5367
13.2437
12.762
12.5535
12.7848
13.5058
12.8518
11.165
11.3262
12.3596
11.4886
11.0136
11.2875
10.869
10.3141
10.0072
10.4607
10.7166
10.1113
10.0303
10.1945
9.96555
10.2401
9.90198
10.0492
9.95903
9.96589
10.2314
9.72424
9.80657
22.3666
9.8347
9.32089
9.408
9.62663
11.1241
9.7811
9.3014
8.69889
9.28622
8.93252
8.29385
7.7859
7.93415
8.57328
8.85553
6.7808
8.22692
17.9605
10.4873
8.04443
6.7095
8.87805
7.56194
7.67433
7.75751
6.28538
7.48152
7.64829
6.94032
7.65944
7.33236
6.58857
6.29154
5.52595
6.68398
7.48306
5.8177
6.90669
6.04043
6.79418
3.46031
5.29308
4.37804
9.9252
5.59156
13.5971
4.85594
8.05138
6.98473
7.16985
7.11514
6.88593
6.68349
6.88539
5.60544
39.6635
2.62138
60.5162
260.15
469.383
513.487
40.7593
84.4023
67.0672
139.699
704.845
538.983
79.8064
81.1146
63.3561
24.6246
38.5122
16.8181
30.6941
95.4624
108.15
355.961
21.0849
74.6032
344.57
49.7604
38.1263
196.2
52.1323
152.084
27.8111
54.7999
28.1868
55.904
22.4637
23.276
335.35
29.7342
95.5312
102.604
103.895
19.0877
18.7256
51.3034
18.4533
51.7462
18.5764
49.7292
781.04
59.0025
56.2222
19.9306
98.7809
34.0208
392.546
85.443
17.5732
86.4618
17.7424
65.7954
26.1081
48.1553
28.0538
76.3539
75.3328
64.0749
65.2761
11.5651
11.7595
51.5061
328.212
23.6732
36.0278
42.4462
30.4315
43.5918
21.2955
18.8616
76.5503
20.9852
38.1837
68.4609
28.5121
91.84
53.1288
14.697
14.9392
348.174
16.1684
34.1307
31.4461
19.3865
94.9507
34.9794
47.207
53.1266
34.8423
16.9046
79.6766
33.9723
36.4204
51.6633
9.41698
23.3736
34.9985
6.74065
12.7409
5.39724
9.90889
99.9439
35.4575
12.3031
19.4259
9.0468
4.67492
11.2156
33.0584
34.8854
4.00647
2.90783
321.896
11.256
31.0996
9.86939
10.0863
31.5893
7.81932
3.68076
8.48183
7.32929
5.3606
5.48596
3.72307
3.79279
2.28409
3.52398
45.7341
2.8528
1.95035
40.1282
9.35413
10.9707
11.6907
10.6927
0.807215
0.880658
7.96062
8.48591
8.01591
4.36569
5.16115
5.66797
5.30792
3.03479
3.82568
4.48332
2.08369
2.72846
2.83561
3.6221
2.37134
1.73657
0.879507
1.15405
1.83385
1.26955
8.81463
158.805
204.291
5.32471
3.20346
12.0677
18.155
18.6319
18.2607
18.6483
29.2879
26.178
10.9651
8.14005
6.19657
8.61383
9.51004
8.22705
7.39302
226.011
89.9623
26.383
30.6589
23.5528
22.536
1.20665
1.10408
3.2402
0.606535
0.41356
2.30188
21.6353
14.5073
15.3834
35.0163
22.3033
11.9045
40.9693
66.155
19.5914
300.55
26.6995
13.3942
47.1563
47.5814
47.315
18.3037
18.7322
18.2092
18.8927
17.7485
18.4715
18.1335
17.9912
39.1163
22.9388
36.6627
146.981
15.9916
15.9739
15.0111
11.7511
11.7617
11.1888
11.7225
10.4058
52.9763
11.4157
56.2936
10.6285
26.7478
26.9496
36.3047
93.0575
10.451
26.4517
26.1086
20.5891
20.2132
35.004
32.8032
26.2151
11.6246
22.7531
13.8848
20.3784
20.1971
15.8887
16.6629
19.853
11.3391
9.82492
21.811
8.56657
7.63062
16.6339
15.0365
14.0457
14.3725
20.4724
23.2161
19.3466
19.2505
18.9074
18.9691
19.09
6.66071
13.8102
14.5113
13.278
13.3479
18.4105
19.9724
18.17
18.183
8.57793
15.4978
16.5658
12.9799
12.2145
11.9046
11.8975
14.3293
11.0219
11.7667
11.5854
7.98815
8.1116
7.94612
8.12522
5.2125
5.10359
5.04678
4.85417
9.01754
8.79589
9.3168
7.72446
7.63473
7.39688
14.556
5.78431
2.10101
12.7264
399.8
101.034
525.656
36.3449
33.5079
10.3185
97.7741
24.4908
30.8765
8.34792
79.3054
10.3214
47.6192
37.4759
21.2982
15.2406
16.4052
16.7029
15.4428
12.7011
15.5969
13.1524
14.9088
4.24286
4.49843
31.3978
8.61857
9.88424
7.12756
11.0543
9.02739
6.9017
42.2059
25.8756
20.792
221.697
43.1438
101.797
14.9121
28.4329
14.9979
74.1692
15.0579
8.15207
26.6035
8.19375
5.80847
50.196
18.3319
7.23626
24.4724
14.8412
20.7158
12.0995
13.3403
11.8942
14.0206
17.0049
16.174
12.0872
23.8854
9.42962
37.6517
13.0157
145.153
16.0265
19.8863
17.4504
17.308
36.2772
20.4375
16.5262
34.072
14.0742
8.24552
12.3597
10.2633
11.525
9.54422
9.63072
9.91656
8.97949
9.12705
8.06373
11.3014
8.60836
8.93945
7.52229
8.07763
93.1146
65.0664
40.1583
218.818
18.3634
86.2258
14.9618
513.9
20.2128
54.8159
32.236
39.4643
36.3113
27.8011
22.8573
22.6858
22.4968
23.4382
15.8597
32.6269
13.6599
16.7294
10.6821
17.3223
16.547
18.3253
15.266
14.5804
9.85531
11.351
11.8501
28.0934
23.0997
9.97064
7.62782
20.5117
23.1607
6.16336
8.43285
8.05085
8.11474
19.2555
6.01417
4.67501
6.67492
133.913
43.8704
152.588
350.738
236.185
20.7177
29.4615
72.2619
210.343
32.2864
185.861
273.744
36.453
274.746
19.7514
33.6604
122.641
410.578
24.3641
94.6432
19.5995
171.376
139.081
14.2304
72.6303
12.9737
17.8222
113.723
120.597
16.2067
10.1447
80.0658
85.5858
14.8148
16.2131
20.8414
21.8908
18.9951
15.4496
9.31426
9.59802
6.27286
5.41703
4.46135
4.60134
34.2755
29.3435
3.58022
3.47522
27.9199
3.23011
3.30648
28.1068
2.3621
2.23413
16.9109
1.60891
1.81412
13.5379
18.8598
19.7675
0.656466
0.752499
1.94019
2.01039
0.219187
0.283249
25.0451
1621.71
52.4438
1591.19
0.192189
3.89167
6.49943
41.1392
13.5692
6.22929
14.5942
10.5049
13.2395
5.67693
47.4597
35.9499
10.6793
6.63809
12.8223
10.2745
4.88569
35.2405
88.1044
21.688
11.6366
35.64
34.487
39.3567
309.831
18.665
69.0378
18.6992
144.05
84.1066
15.0967
170.854
70.4757
13.8013
6.77151
60.8303
16.6449
32.9333
53.8526
42.9489
29.8375
27.2632
109.881
30.5953
28.5824
75.5151
6.76007
143.13
23.4605
35.8565
5.90731
23.352
8.37209
6.70722
19.7526
23.0696
9.2663
27.4973
135.029
28.4185
26.5331
13.0328
8.40121
27.6073
26.4269
56.7183
30.4545
40.8273
16.2599
18.4183
18.561
26.4321
24.0694
9.16937
73.0333
32.0573
14.9392
3.77291
12.4401
8.04957
65.7237
100.746
28.8155
11.7884
10.7604
30.124
190.66
30.6915
38.2281
9.86445
10.4109
15.3069
19.1818
14.1842
10.7773
10.3345
8.70411
21.1535
20.3968
47.5453
49.0634
44.883
9.11473
9.10993
44.4903
15.3341
13.7586
47.5741
44.6495
9.13401
9.50608
44.3859
37.0132
8.45421
21.6772
40.1886
8.97551
20.4369
16.987
18.5428
16.4751
19.9842
168.072
21.5844
20.9425
21.5631
32.6134
17.3903
17.49
15.6822
15.2217
12.5783
14.3534
9.8477
14.566
13.2258
18.5875
15.5475
15.1311
24.2484
135.321
152.105
16.4604
14.9627
15.0958
16.5086
23.3445
20.5569
17.0646
20.1777
15.7536
37.2224
16.0773
14.7572
14.1219
16.3168
16.8637
14.1431
16.7787
15.2035
10.8801
13.1791
13.487
14.7731
11.1072
156.049
26.5082
27.3903
22.052
41.1947
195.124
19.1949
66.6293
47.2895
22.6854
196.355
47.8595
54.5369
18.2142
100.71
770.219
85.6693
249.879
19.5543
166.903
112.702
159.637
218.691
44.4195
239.204
53.0358
22.9076
34.9366
14.1144
15.9748
171.595
43.4992
17.4197
209.457
18.0992
57.6335
65.4522
50.8839
18.7714
191.707
270.144
42.2928
17.1471
52.4981
12.4408
22.995
203.228
188.375
39.9708
29.5344
80.1561
45.4369
226.837
23.1721
13.6312
11.1023
18.6697
64.8722
276.82
18.0301
73.623
26.4384
181.832
15.0265
16.8019
220.318
30.9176
148.633
42.112
112.109
22.0231
12.4971
11.9587
187.765
62.1342
11.7428
61.3245
61.4306
26.2534
25.3999
11.618
61.7612
15.3483
68.0537
14.0336
23.2872
25.3347
11.3835
44.8459
54.3517
61.043
13.8422
67.404
63.6482
14.3102
29.2692
31.1049
11.0428
31.2771
28.306
15.6681
18.022
30.0298
24.9928
63.8174
20.7222
22.9454
52.1607
31.7301
22.8166
25.0417
14.1591
12.4916
22.6047
21.259
47.8455
19.6026
59.7855
18.4388
27.0614
12.7962
13.4901
25.5669
22.4985
21.1554
24.4275
12.6771
12.1566
25.3171
381.304
19.5738
21.5642
104.781
88.4089
18.9973
102.058
18.5278
18.7999
18.0513
18.3015
18.1099
18.6842
19.9024
11.8686
11.8827
50.5631
11.3773
48.1223
11.9115
50.6974
15.1031
13.9335
28.7919
24.3057
12.1195
12.803
15.1767
15.2521
15.0478
15.0223
47.4518
24.3723
29.3372
20.4092
50.3839
24.582
20.4376
19.5755
16.8582
18.7272
18.1948
21.6817
22.2977
22.2648
21.3581
21.8372
26.0611
23.1823
19.514
21.8611
22.6786
18.4474
12.5839
15.574
17.059
10.4738
17.0433
21.4442
20.4415
17.9198
13.7503
13.2852
13.7839
13.7969
18.0018
18.6359
18.1734
18.4813
17.2543
19.0788
17.9597
18.9319
12.8791
9.33778
10.0243
9.94087
9.62469
6.46862
225.467
8.45849
15.3348
13.9843
10.3402
8.12044
10.0402
8.24723
218.793
5.50413
57.0363
12.5983
11.8241
12.3658
12.3957
9.06485
10.7364
8.67181
7.96181
11.8226
12.2444
25.5348
23.7742
5.35785
5.59013
11.7294
11.6954
9.8783
9.90027
21.195
5.3277
5.56833
21.642
10.2452
8.96127
9.70281
11.7506
4.37774
8.95755
9.46301
8.16824
8.99884
7.36486
7.72335
7.15529
6.38325
7.09655
8.12079
6.75555
7.45462
18.9243
8.39594
6.12691
14.1302
6.75493
8.8233
7.40628
5.90954
6.57295
7.22923
6.07087
6.66181
5.91073
5.8128
6.35008
6.96309
6.03643
6.69593
12.8881
5.61827
5.86009
5.82289
6.24826
5.0804
4.3732
5.62285
4.87091
5.79659
5.27857
4.95597
8.18472
7.81244
7.85953
6.07094
5.49696
8.21571
3.74303
52.4781
2.67074
282.233
120.389
81.6717
30.3175
46.6408
59.5514
66.1824
31.8549
29.0671
73.0636
65.2036
39.5074
87.8856
244.136
34.5702
155.958
90.4695
64.314
34.0392
88.2033
47.8858
109.504
53.7732
328.648
113.083
42.1533
147.144
100.49
14.0784
13.5921
18.8618
10.5569
193.433
141.625
171.513
29.8303
26.7179
22.6946
24.8508
330.255
84.5035
20.9336
31.9303
46.1997
121.064
15.2577
107.807
40.6729
89.8605
383.743
1039.51
85.6404
109.076
19.6924
43.5435
17.7581
48.9123
17.1089
52.8939
19.118
78.995
16.9207
334.305
124.978
68.0988
33.5037
26.6927
63.8515
770.231
20.3743
859.541
3.03561
3.41375
83.479
17.1955
89.7895
18.4489
33.8171
38.9759
61.824
119.42
30.2981
47.5321
62.6786
77.2124
1.627
0.982716
5.70312
54.2462
10.1549
52.1099
26.1754
60.5541
60.3919
33.533
6.29572
7.70518
10.9099
67.9369
12.1994
55.7922
18.7598
14.3018
15.4915
12.2645
119.595
102.892
13.6383
39.9818
71.7675
78.7753
77.0291
50.8325
52.4754
13.5831
11.7491
5.13858
3.67469
21.8776
11.2188
11.3658
14.4792
14.2186
19.5088
20.035
20.6394
20.3921
9.36522
10.7008
10.3886
6.65992
5.0967
5.83813
7.22191
7.79981
9.15291
8.84024
3.6038
3.94273
2.60514
2.85878
23.5473
30.1615
3.67409
3.7987
4.30506
4.08959
31.785
22.4363
18.3465
18.5104
16.9518
17.7077
18.94
18.7718
18.1965
1.7692
13.0765
4.01296
2.46427
2.53026
2.62963
20.1284
27.5485
3.17302
3.08739
11.1236
6.50919
10.0476
5.22333
3.06067
2.16014
4.50904
1.62754
9.65099
1.93514
3.95862
9.59595
9.72315
3.83366
14.3436
0.669255
5.50592
0.668854
6.00866
1.68238
2.09317
4.94082
1.51449
0.980889
9.13924
2.43622
3.76495
1.48345
106.4
2.64519
106.492
0.539887
55.3995
1.85407
2.77298
1.28234
1.36022
0.134065
0.169431
0.17791
1.47296
0.630109
10.4693
7.32817
22.7924
20.4962
0.679568
0.104723
1.21879
0.108668
1.46897
6.48119
1.83996
8.07895
0.375928
0.472922
5.80419
1.47158
6.07325
1.97027
29.4855
0.435876
1.02343
7.86479
2.99997
3.72827
2.55257
2.33655
3.27536
18.578
95.8704
88.519
30.8932
63.1309
35.8289
8.52552
8.26226
33.6725
24.6102
9.93449
12.0413
15.1927
12.4934
15.5007
19.019
17.5211
14.8713
8.33172
128.837
11.8172
59.8756
11.2244
29.1918
37.4862
7.93617
72.8169
64.9754
9.83424
11.7643
26.0732
35.9647
33.9525
77.5024
41.059
35.7205
45.4299
16.5203
207.425
7.52486
13.2557
12.014
18.3734
21.1389
19.8063
20.7822
37.1888
17.6093
17.5535
19.3946
14.7792
17.4277
17.9905
20.2345
13.6744
17.9669
17.8024
18.096
17.5541
18.0986
18.5011
18.6114
17.8433
10.997
8.05184
6.3144
8.48999
8.12754
15.9981
8.09066
9.80153
9.85529
8.10012
7.96693
8.93312
7.94309
7.39541
58.1463
41.1923
246.699
242.096
213.528
46.5011
257.125
83.618
30.7173
145.442
84.4462
159.668
40.8457
134.752
165.293
147.327
17.6774
19.2977
142.526
15.5532
165.941
12.3588
16.3299
152.374
182.72
16.3065
16.5764
15.2327
24.5214
20.5536
18.2474
19.8861
11.3671
14.613
145.671
20.371
21.8526
10.4394
10.0933
5.14741
5.06774
27.7262
20.3367
2.56642
19.3636
6.45072
2.51715
1.22351
1.06296
0.854754
0.785311
9.10665
0.871403
0.752927
3.79542
0.333179
37.6727
0.853794
3.70133
0.410247
0.263533
1.68087
1.92361
69.0458
1.40608
14.0819
0.881064
1.5272
3.27392
2.05143
10.9538
0.442776
58.316
1.07577
1.51507
55.8272
20.2577
6.97316
30.5865
1.61202
1.9412
13.8565
1.74904
120.744
5.21323
3.80214
12.4277
11.8606
16.3674
18.1638
22.22
15.2346
6.01772
32.4057
13.7385
16.6583
12.5646
14.9806
47.3619
60.5564
54.1434
22.9737
7.1451
110.904
25.0609
61.8693
19.0981
74.1016
20.2247
34.7152
38.9175
32.4067
65.9886
19.6071
249.97
51.2016
43.9162
56.7643
57.6874
64.1033
29.9269
75.7312
15.053
296.219
16.0929
64.5027
24.5095
66.7989
11.575
36.8931
11.4361
25.6659
13.8624
36.5246
13.4487
28.6027
12.8588
40.2146
13.8212
40.7324
13.6732
106.868
14.5933
42.0024
13.6755
45.4051
126.781
34.2748
7.0759
9.35066
8.45184
6.46586
5.66617
13.9856
10.7526
13.4184
16.4031
13.6512
8.60042
13.145
9.10116
12.6019
12.526
9.6983
12.0911
12.7594
16.3271
10.8285
13.5534
48.0719
46.7694
21.8762
24.7879
16.6536
46.2248
46.1309
8.51099
226.907
18.0859
10.7185
24.4652
9.43603
14.6096
6.70753
32.405
45.3564
44.4784
7.00987
3.33597
5.50874
16.6938
11.8962
7.24163
9.16656
8.02082
17.2848
11.659
16.2437
3.44245
5.11014
6.47136
11.092
44.357
20.3781
20.0197
19.5732
20.8897
37.6235
20.4619
21.3469
20.3724
21.4372
20.1593
19.2918
20.0795
19.3771
20.694
22.3818
21.7057
21.2428
19.8438
19.1644
19.482
19.1445
36.4933
20.0076
21.0218
19.9892
20.3907
19.8908
18.1017
19.6698
19.0127
19.9141
19.4022
20.1429
19.4601
36.7201
18.1768
17.3867
18.1093
17.4326
18.4322
19.2121
19.0608
18.5289
17.679
17.2035
17.9027
17.0279
17.6197
17.716
17.9757
17.4636
4.83874
57.7731
38.879
85.9755
62.8475
57.0308
174.487
33.6294
377.069
48.4944
77.7114
30.5268
316.53
15.3282
62.5386
25.8203
15.8425
69.2441
29.5166
15.7581
58.2825
15.1736
56.6887
30.2086
71.8368
11.5487
42.3103
178.419
40.1911
91.2663
625.257
230.524
157.04
11.7631
11.0943
51.8507
39.5923
29.0341
34.987
36.2819
26.2542
16.7905
157.95
16.3011
101.456
48.9531
16.2165
13.6912
150.941
11.8736
10.587
56.0829
54.2655
18.927
20.3311
17.3022
14.0721
73.3869
17.1891
259.157
19.469
26.7054
22.1229
26.2528
33.217
39.3516
36.1133
11.3107
54.2556
10.5887
27.0842
26.8929
53.7344
54.0179
53.6075
73.2969
15.8269
42.274
35.2461
236.579
10.8555
7.88224
323.837
479.921
24.0012
22.0338
16.7694
21.0415
114.77
27.215
117.318
29.9698
102.513
20.5623
18.3568
25.5354
43.0252
23.2446
22.404
24.4507
10.5179
26.5473
26.1845
52.6769
51.9457
19.8992
20.0979
25.9707
25.4648
25.1952
25.3175
32.7546
54.3638
79.175
59.1155
35.1572
19.9954
19.5769
34.2255
38.0738
33.6257
30.6594
61.4445
14.2404
28.3924
17.7651
57.0977
19.4881
28.7409
31.4509
17.7382
15.5316
18.0424
26.4218
30.3601
14.8371
13.137
20.3247
40.8422
23.0015
32.9984
18.6876
16.4949
36.3505
29.4722
27.4758
15.3449
14.1728
33.678
12.9086
15.6582
19.7942
20.0846
25.7613
25.5487
24.8163
25.3708
17.4195
16.9614
17.6572
18.7896
19.7111
19.1733
25.9113
24.8301
29.6872
33.263
26.8999
13.9227
28.2885
11.7786
28.6031
27.3805
52.8685
12.7536
14.2938
25.1908
23.3014
18.3927
25.1453
202.644
14.3019
25.6871
12.4024
18.9203
35.03
26.5453
21.2525
22.5729
23.1864
23.5918
22.0076
22.414
21.6847
21.7416
21.7407
22.3505
19.7865
21.3634
21.5216
22.6844
22.7478
22.0195
23.6232
23.595
26.8524
18.9678
9.27941
16.8813
11.7009
118.172
11.5368
16.6522
10.3447
17.842
9.01455
97.9389
10.6681
15.0004
14.9598
18.9279
16.1889
16.101
16.0732
14.3594
14.4045
14.8333
19.2163
15.1885
15.2361
19.3458
15.2353
45.7163
21.6698
19.7495
11.1839
23.1575
58.4226
12.1708
22.2983
58.0946
11.071
21.7765
24.2238
20.3199
10.7804
19.4214
13.9057
24.0833
22.8053
11.1633
55.4295
19.4796
19.4428
19.2719
19.7562
19.2394
18.877
18.9423
19.2986
8.48638
15.788
9.3485
15.2112
13.4681
14.0992
14.5734
20.075
15.651
14.2341
16.982
15.0186
13.4098
13.3585
14.0158
14.29
14.0922
14.1867
14.2938
14.0994
18.7223
10.3211
42.6163
18.4304
10.1184
18.2822
15.5386
17.4998
16.6681
39.0124
45.1601
9.37857
17.4682
17.102
12.8401
12.2023
12.1281
13.7033
12.986
12.8712
12.8575
12.8864
12.7809
12.0293
11.893
12.5341
12.487
12.5338
12.6905
12.4806
12.5312
6.89439
9.99918
11.0839
11.4931
12.3933
12.0676
12.1923
11.6527
11.9416
12.0928
8.38927
8.2202
9.6987
10.3623
9.844
10.1827
10.5178
9.98558
7.98494
8.25238
9.65789
10.3495
9.8349
9.70475
10.6789
10.026
20.5617
5.20137
5.13726
20.3372
7.69657
9.64082
7.45488
7.59731
9.72018
7.50168
4.99676
4.7846
19.0146
7.45083
9.20887
7.13696
7.39769
9.07485
7.03735
4.11261
8.02296
4.23068
4.41849
8.07556
4.25657
9.93506
19.5476
11.9446
9.07864
11.1452
80.2224
19.05
13.1031
3.12734
3.96388
7.31931
3.84061
4.69477
7.55455
3.94126
6.24865
6.27615
4.88465
8.96477
7.69872
7.73444
7.33897
7.53135
6.80178
7.2462
7.60367
6.68944
7.17658
2.14966
18.1728
70.296
311.289
115.174
47.7791
79.2594
213.16
1113.66
535.14
61.4176
120.737
218.14
956.808
64.3941
170.958
279.571
470.029
16.3495
26.1117
20.4203
190.403
11.9511
26.4357
11.9153
26.1021
65.778
6.44714
25.8066
40.3633
21.1456
16.607
184.197
181.167
24.4472
31.6545
25.5444
6.72814
14.7252
31.1612
11.8249
12.0571
23.4599
51.094
23.7091
37.5167
57.8825
16.9271
18.2591
25.6929
194.8
20.014
15.9765
16.858
16.067
124.657
27.1271
32.7059
145.672
142.914
29.6859
37.5818
68.8755
18.3425
22.3494
21.6664
20.7089
24.9147
23.21
73.1689
46.8379
40.9812
35.9675
19.7227
26.9009
34.7592
28.8537
29.058
34.2352
26.0044
1.73956
8.72867
1.82362
4.06772
4.19991
1.67801
6.94654
2.72738
4.81857
14.9353
4.12708
1.69178
4.51209
1.76498
11.0587
34.6757
33.018
11.4858
32.6524
78.4202
17.6251
17.9362
76.9804
33.2708
26.4704
18.3111
0.281732
2.10112
0.449037
5.14432
1.8618
1.84387
46.2642
1.62842
3.40568
1.74361
1.71121
1.00453
1.80977
1.07152
1.21943
1.12424
3.8461
11.4282
122.903
10.511
97.4327
26.925
29.4728
56.6536
30.848
0.976239
1.49648
0.956628
0.856903
0.92905
2.10102
0.450343
0.457284
0.302128
0.365902
181.551
24.6223
24.1541
22.5353
46.0992
22.3777
25.2879
22.3972
20.6578
22.3895
21.5964
21.0849
18.7656
9.64038
17.2391
20.5837
16.5365
11.6884
21.8703
18.7903
19.0071
18.3285
18.1223
1.3957
10.2773
0.199414
1.04173
0.105264
2.15639
2.21618
18.0131
13.5783
14.9728
10.3613
15.4915
12.1047
16.2895
15.5543
19.4226
10.428
6.89654
14.8862
17.7687
17.5828
15.8694
15.7996
17.3147
17.1119
15.9038
14.4701
12.6977
14.8057
12.2914
1.65123
13.7196
1.60549
13.4218
1.0335
35.2141
12.1689
9.91771
12.3231
11.4862
12.0162
12.9243
14.423
9.78222
4.73069
3.16196
6.47811
6.9638
7.22923
2.40961
2.87387
2.93728
21.8149
5.5728
4.86095
2.81036
1.31608
2.99622
3.54854
1.54761
3.2944
2.21717
2.13573
2.32594
2.20046
2.46628
218.58
2.75138
2.39634
2.17141
2.43046
25.1603
25.0084
5.4447
6.61704
10.0257
61.182
10.0656
26.6427
9.7494
7.16186
11.342
10.8854
22.7418
16.3382
29.1955
9.86246
208.583
84.3448
15.9054
17.0655
124.613
45.1425
190.932
33.5435
29.7857
13.7837
26.7949
18.7626
8.08539
10.0407
6.77072
13.9421
9.53402
56.9292
7.18051
34.0417
24.6252
47.8969
18.0905
37.9183
38.9612
11.9132
30.946
8.21834
7.57528
94.4536
10.441
34.8433
7.45061
55.5252
10.498
26.075
65.5205
11.7376
8.97809
17.1936
31.2833
33.5441
23.1966
9.34523
12.0354
12.4938
11.1638
40.7426
9.79267
10.4139
11.0037
9.94703
33.9468
27.7396
13.2335
7.07923
21.1505
10.9787
27.4004
4.95747
51.6483
8.44871
98.0444
6.67415
25.417
8.98096
11.6517
17.036
13.1267
33.2547
10.4266
30.1919
7.5235
6.53544
5.7418
68.6256
37.8196
8.605
13.2854
14.8701
14.906
20.6425
35.2606
12.1297
5.26678
151.637
68.0168
16.9218
18.491
39.5201
15.2796
21.4808
32.0179
14.5991
14.8828
15.7874
15.2876
14.3858
12.0664
128.994
35.4874
52.9155
22.6964
16.9155
10.1381
21.577
36.7218
36.9983
18.2471
18.5703
18.4596
16.8685
20.6039
19.3131
18.6038
17.5279
18.9688
18.7132
20.362
18.9532
14.4821
147.966
20.3998
14.1903
23.2073
13.104
11.8569
16.7786
37.4552
34.9513
120.1
30.2629
16.1873
25.1219
14.5043
17.5128
14.431
10.1125
8.37448
13.0632
13.3542
10.4836
13.3239
17.6729
10.8391
14.2549
19.3245
43.25
24.541
64.211
145.895
19.2889
21.9818
27.0023
40.1709
13.6842
4.50679
15.727
17.0442
5.5253
137.096
13.8121
13.611
17.4118
6.87079
17.3469
16.2092
13.9131
15.4416
23.8798
11.758
37.9189
12.6773
25.338
20.6552
14.9687
20.8495
14.1366
14.7712
14.6034
35.1577
8.04144
12.5319
12.4742
39.2164
8.34481
36.4114
8.31374
14.6266
15.7638
35.1034
72.7056
22.3739
131.841
9.22339
12.3656
12.4447
12.3104
37.8451
8.46267
35.8706
8.21465
15.5507
22.8738
19.4844
12.6559
7.83213
69.0405
13.5964
16.8472
7.81167
14.5757
7.66234
15.9836
6.87914
24.4
8.02755
14.3834
8.75959
16.3409
13.7441
16.3628
29.4786
31.492
33.0476
11.772
17.9865
8.21954
8.15979
17.0009
7.22279
120.068
12.9202
16.2322
16.3623
18.5586
13.7096
11.1635
14.6694
11.338
15.6214
31.1119
17.1662
20.4885
43.053
18.0026
8.90898
11.0904
17.3446
10.8985
20.2288
22.2205
7.07809
36.0925
11.1676
15.2136
18.6254
16.6962
15.356
14.8085
14.8115
13.6911
12.3841
12.8302
10.2868
10.4381
11.0754
8.72473
9.18058
9.75015
9.71811
8.9217
9.35298
8.85982
8.7826
8.91232
8.95201
8.80985
34.221
19.9827
11.6601
8.93002
6.47827
8.11468
152.609
120.348
51.7654
106.59
39.8059
20.7174
426.971
341.766
13.66
46.2763
31.6958
25.0639
23.0139
11.5648
357.251
54.8679
19.4844
53.7313
32.7343
359.118
13.8215
28.5036
41.6152
164.702
12.8665
22.0456
27.1625
13.8616
42.0608
21.9466
12.57
163.377
12.228
22.8517
55.7248
38.3789
30.9757
447.256
15.5623
21.9286
48.3309
21.3252
27.8109
33.0603
25.3974
155.377
126.659
41.4496
57.7766
27.1899
49.4719
93.4793
35.2684
22.9327
42.8246
23.3242
19.6733
135.916
11.2348
19.7715
15.1788
33.523
20.2192
28.8467
32.4469
26.5849
30.3568
36.0452
32.8604
30.9441
18.6364
23.5406
28.0885
31.3957
12.8229
20.1914
22.728
17.7121
32.9728
27.4587
22.812
15.2395
139.084
97.8127
32.2873
245.547
36.9398
25.9052
29.318
31.4945
34.4335
57.9922
27.839
32.5449
30.133
27.6721
40.7918
30.2328
25.3069
27.1551
27.1316
26.1389
37.9874
28.2916
27.4128
25.2721
21.7631
24.3406
22.9229
25.6939
25.5988
27.2157
24.8053
25.7565
25.1207
26.9107
23.6806
7.47469
198.022
11.9049
37.7415
209.807
7.62645
12.5964
21.5797
23.9924
25.1173
9.34897
16.8554
13.6586
13.9685
10.1404
89.37
88.1964
7.59152
266.476
10.5448
29.5625
24.4229
23.9631
25.8166
16.9345
11.9182
12.0989
22.4033
21.5789
22.7425
21.9737
22.9675
24.2224
23.5784
23.6815
16.697
17.7252
17.4479
17.2331
15.3932
14.2321
9.22721
17.7221
18.3991
17.7897
18.6148
17.05
13.7835
16.1232
14.9275
15.0255
14.5353
10.0527
14.9072
13.4489
15.9231
12.2384
12.3256
7.73287
24.3483
6.22918
8.76363
8.82366
8.6784
7.91987
7.25931
7.95556
8.79114
8.35887
8.62635
17.435
8.82189
7.12169
18.7008
8.56973
6.24677
4.26935
7.47697
176.889
285.548
43.9223
36.1967
71.5731
78.9885
224.572
72.5793
102.469
92.2965
101.304
218.934
87.4698
110.331
130.898
1032.75
186.745
60.2824
109.343
55.3367
118.446
87.9802
169.673
125.398
404.861
171.704
122.514
107.44
134.34
304.716
30.8245
57.2518
88.7554
241.979
168.277
34.3427
66.0856
41.203
110.193
224.566
42.6039
29.6336
62.301
23.9288
24.7674
72.8263
90.7331
72.6925
145.691
36.2485
195.19
260.81
50.3882
693.518
28.3232
43.8524
66.5936
32.1081
68.836
592.613
35.2831
158.586
198.231
201.839
29.6528
132.054
34.9249
188.661
26.8178
206.647
24.6522
20.9618
189.399
84.2102
33.6986
127.267
309.067
40.231
34.7574
42.3566
63.0571
28.2728
330.546
129.025
48.9027
47.8759
38.5747
121.342
48.2423
18.6412
140.209
21.7238
31.1494
41.5281
27.5139
135.993
29.1811
31.5808
157.291
143.916
29.5899
26.7817
134.608
120.466
21.6529
215.309
113.553
110.737
18.3744
690.538
38.0146
39.7906
142.333
53.2285
32.9961
34.686
151.623
160.178
37.1306
29.2794
29.311
24.6566
124.68
22.6792
172.239
16.8452
17.3971
19.7418
166.51
162.134
519.19
42.1202
75.1391
42.4147
37.7713
150.529
15.9733
112.95
75.728
13.6718
13.0855
18.1335
449.496
19.6247
12.322
11.2386
100.081
122.631
55.0339
10.006
128.322
106.754
19.5026
16.8435
64.0142
66.9715
78.5094
84.7541
23.7413
102.068
51.9638
10.9023
14.5272
17.7753
35.1745
15.3648
15.8161
10.3686
9.7613
16.9739
16.0583
9.2158
8.06765
35.6889
4.56858
5.06755
6.98289
7.58563
6.72487
6.94467
37.9078
4.85717
4.67802
7.29585
7.05541
54.1361
5.16438
4.96363
3.39528
3.44357
28.4207
39.3726
4.79476
4.90601
4.52883
12.5741
4.63631
28.1086
3.35575
3.31327
13.607
4.74421
4.65271
9.04523
9.10554
3.38553
7.16159
3.19342
2.02885
2.18526
16.4733
7.00283
2.91909
3.12863
2.34383
6.18507
2.63344
1.91136
1.84171
13.8078
6.24499
2.77216
2.67003
4.55171
4.60209
1.63755
3.9377
1.54025
3.87172
1.40671
1.50915
1.02601
3.44806
1.31487
3.48656
1.36711
1.32967
5.09382
2.16583
5.41711
5.85773
2.19643
5.4918
1.96073
1.92827
1.66997
1.69516
0.990526
0.795124
4.0514
0.449654
0.515774
4.64549
0.691975
0.548467
4.89697
2.16139
0.32184
0.350074
16.0964
40.5565
11.4962
25.6088
0.372716
1.22324
14.1864
0.654462
2.40585
1.9751
1.11597
0.581499
3.29619
0.466232
2.4385
4.07315
0.462354
2.79517
0.872034
12.5731
21.4869
41.8616
6.29648
25.3757
100.663
1.89357
2.16438
0.701068
1.66203
1.91431
0.330711
6.83839
9.88666
23.7002
17.3106
16.024
8.4738
18.2359
34.9644
39.3048
11.1411
53.4327
13.2579
32.377
12.4614
59.7316
18.5136
54.6575
8.32022
13.5838
0.541945
4.22999
6.12586
4.65067
0.395908
3.93346
33.8387
20.669
11.2939
15.3448
15.26
10.19
4.34688
43.1518
15.0167
4.85881
10.9427
15.8051
10.1473
46.771
10.8649
5.39958
83.4994
18.9834
5.9834
7.50796
15.8967
30.9447
5.68914
16.6723
12.2605
5.09209
47.315
27.8713
10.7048
9.46182
14.1039
30.8429
65.8962
13.5015
16.5835
6.34014
19.4258
16.0473
13.9294
12.4443
19.8369
18.3686
6.88309
10.2307
6.64701
7.15552
10.5587
37.9176
18.1517
20.078
15.8892
9.90342
45.8262
7.05266
17.9961
17.0321
7.39509
5.81331
4.36273
6.52193
9.46432
15.4564
14.3128
11.839
8.12867
12.9013
10.8461
22.2122
31.3643
56.1652
25.1728
21.296
23.3904
30.1754
22.573
63.486
24.1576
20.0199
12.4845
11.5705
73.0407
23.1974
33.1075
12.4338
15.1379
93.0732
45.4467
42.5145
15.0049
30.5351
26.3108
39.1944
19.6955
55.3876
27.8213
17.6066
8.32873
61.5015
55.1907
31.056
14.2757
16.607
13.7924
200.658
105.269
10.3597
41.7173
103.489
15.388
21.233
24.4865
60.9283
9.27221
72.5567
85.5946
10.8083
167.622
30.9553
13.6531
91.7159
17.0822
55.9403
43.2581
47.7789
38.5603
31.8492
35.3753
36.9203
15.7627
78.2141
43.3175
90.8424
37.3987
50.3473
73.398
17.0922
209.143
54.0592
14.7299
24.9334
18.1649
27.763
13.9567
20.3898
13.245
61.0143
31.9086
55.0632
31.2817
35.6465
57.7778
60.5292
51.7235
26.6959
48.6783
214.853
18.1923
209.167
266.851
13.754
198.538
15.6668
211.304
31.0412
13.917
33.0472
54.1067
130.313
330.883
16.3977
7.03796
212.123
18.1955
196.105
284.689
65.8814
38.9044
66.7352
264.754
32.112
15.694
211.042
20.9721
18.0564
240.171
52.6591
8.06795
88.6974
68.656
28.2623
8.88354
23.9602
60.0368
37.8555
12.4047
27.1034
148.548
13.4064
18.9746
57.8546
136.686
7.70217
42.2785
25.8007
25.1858
9.03754
27.9852
22.5876
20.9781
8.69286
24.6668
22.4031
7.80018
17.6256
7.35285
23.7067
28.2627
75.4172
8.80728
35.7602
91.5894
39.7058
16.0126
65.0146
26.6906
121.103
46.1381
29.853
136.737
74.8667
17.703
26.861
41.7558
13.3205
22.1625
11.4867
42.5941
31.6724
8.88549
37.1122
13.9277
9.66825
18.884
11.748
39.0054
41.5868
33.9353
18.7746
8.74144
111.447
118.097
10.9027
215.605
13.3449
27.9934
241.742
12.9696
234.316
13.2709
338.01
97.9612
363.597
346.373
13.5096
411.219
17.5962
314.1
80.7294
24.4113
21.1627
11.8256
13.4481
14.6601
38.7504
12.7495
37.3129
11.9944
35.2466
42.4412
251.561
10.3638
285.942
11.693
71.1576
63.8869
18.4567
71.7123
78.9574
20.478
43.3972
18.2689
37.0791
238.798
8.91942
241.917
10.4022
49.7178
23.8607
48.6537
333.472
13.8903
11.4861
5.42913
25.4576
12.3206
23.8911
51.4337
20.7571
18.235
28.0808
4.61614
35.9545
9.81363
20.7437
17.7642
9.49762
62.8685
129.096
146.974
11.167
38.8736
25.4139
6.39596
65.7061
9.84228
7.29108
41.5412
11.4312
14.5346
7.16606
24.6442
29.1084
17.3823
12.9015
8.16715
6.41498
22.605
9.09249
25.1096
23.5564
36.7225
5.17935
19.2736
32.54
8.55606
7.65334
26.5689
20.1855
11.119
24.3086
32.1252
28.7033
63.6467
28.677
12.8898
26.4148
26.7916
40.4326
27.9574
131.289
26.1424
23.4395
8.76415
25.0187
38.3037
11.0496
24.0077
16.1261
21.7586
13.818
5.42727
20.7479
11.0596
27.2118
25.2585
11.1899
13.4248
31.688
19.1312
17.1817
18.8328
10.4832
33.281
9.355
34.7908
8.48541
9.48168
34.9298
89.263
36.5459
97.6404
23.1718
24.9865
71.4729
32.596
29.571
28.9284
85.3224
36.5146
17.4652
20.1618
25.3682
28.0853
31.2867
30.1911
23.2109
22.7046
73.3551
10.5668
9.1042
19.025
16.9693
11.195
48.4233
15.4143
32.0355
30.3283
33.8603
8.73089
29.2008
10.3131
34.6717
33.3873
9.74958
10.9018
45.9279
9.67147
25.7359
24.7777
7.96102
16.6616
26.2822
22.8985
15.3771
19.6606
16.4844
31.787
24.5939
22.8243
27.7731
17.9656
44.4903
22.4199
22.3357
15.291
14.2126
12.5765
17.3916
16.0854
120.159
4.80277
17.7204
16.4925
20.4191
18.6064
18.9971
95.5891
6.61324
40.1428
7.46372
83.0022
11.9863
22.0421
15.129
19.6008
25.2352
23.4765
21.5561
35.4639
15.8177
27.8102
13.5763
22.2172
22.4587
6.26682
10.5585
16.6633
15.7884
20.3122
21.9187
18.7888
29.9539
42.0704
38.0188
72.7291
17.6593
24.1141
33.2399
40.4556
33.2756
34.6993
52.8243
50.094
83.2769
35.8738
30.3471
46.756
47.3128
116.923
46.0403
32.2354
28.567
36.8975
15.6451
34.1238
29.3262
18.4917
40.7185
35.7185
44.3745
47.1511
74.5192
28.3185
24.2354
27.9815
17.2802
29.2062
28.5327
32.6702
19.6016
26.4047
12.9676
14.0387
9.24875
9.91893
9.04467
118.159
7.582
15.6916
36.8038
27.7777
29.4792
304.037
376.148
335.124
42.2139
36.2989
42.5199
29.699
20.655
12.1084
8.51811
48.0948
44.4786
33.8831
25.9171
10.816
14.732
274.262
9.68922
31.5136
6.64006
36.7076
6.03815
34.2285
88.6175
35.3261
40.1715
12.0778
10.3907
124.058
7.95014
9.55308
13.9759
17.3296
270.438
266.318
7.22358
9.77948
40.715
9.64032
18.146
18.8183
18.0206
17.649
14.7895
14.1449
35.6596
22.5384
67.7746
28.9839
32.3782
32.9009
29.1099
38.0405
33.5443
39.0065
14.4338
14.1417
21.706
19.1968
21.7473
21.5598
12.5508
131.866
5.35266
14.238
13.3077
25.6038
14.3051
14.4716
8.45774
16.5562
12.3744
11.8497
9.90288
13.2092
18.8888
8.55186
17.2965
18.0098
8.45359
18.2693
8.46741
8.5618
17.9938
19.3787
18.2474
17.2092
18.1428
18.2026
18.1429
19.6911
18.3682
7.8994
6.9677
8.354
37.8734
129.774
40.2144
8.31545
25.2108
15.763
22.6034
21.2406
14.0977
22.7563
24.6859
21.0597
22.9959
14.4162
13.2222
22.1337
45.1013
45.1058
21.8078
31.9071
11.6343
27.1884
26.5178
25.4543
28.7876
27.3085
8.25914
22.3528
25.8302
27.3361
28.4467
27.5184
65.3038
48.4618
31.8665
27.9129
31.9449
32.3461
36.7969
28.2651
39.09
25.0936
27.1868
27.9722
23.9486
28.6854
24.4673
22.3192
26.7409
27.7323
29.9374
44.4255
8.95088
11.4056
12.489
8.527
233.968
11.3163
10.2902
71.2773
10.0238
85.3558
25.3697
23.2179
24.2997
13.1374
13.3467
20.3033
19.5414
22.5675
24.3541
20.7299
23.6896
20.1643
18.9446
22.813
26.3505
25.7378
26.5133
46.9191
27.819
28.581
27.2761
27.0465
27.7768
27.0327
25.6341
27.3708
26.686
12.9368
10.3192
7.91139
10.1794
33.0876
36.3902
8.32641
19.7263
7.63138
20.2776
18.7682
7.74265
7.42083
31.7226
19.2746
6.88751
17.6901
17.6252
20.0032
19.2
16.9673
47.8245
20.1189
20.6578
42.4111
41.8382
34.6904
11.2296
16.666
11.8695
7.57084
9.5103
15.3181
11.8393
11.6057
13.8052
13.1707
11.9445
14.008
12.4083
33.8127
12.3353
13.9794
14.1345
14.2351
17.6488
16.6945
14.638
16.4658
14.4441
16.2299
13.9329
8.16071
12.0479
13.2983
14.5127
14.5707
14.7162
16.3841
14.6547
16.3332
13.8419
12.3362
18.8787
12.1239
13.8929
14.7252
26.2732
18.7136
16.4647
12.3385
12.0689
15.7475
16.2814
14.0316
14.2875
17.2624
12.2608
12.4292
13.8395
14.5298
16.297
14.6233
16.2192
41.3803
17.8415
19.5408
19.1336
18.1283
17.3038
16.6125
16.3794
17.2563
17.4353
16.5499
16.4626
17.6818
17.7002
18.8765
18.9522
17.6468
22.3141
20.0881
20.9379
22.5454
24.1546
82.7259
23.792
42.0068
24.7706
28.5661
22.3896
22.4377
21.289
23.0957
19.1691
19.603
18.1474
21.9683
18.9359
29.1402
16.9277
18.4011
16.4988
16.6146
17.6864
19.8892
181.509
27.2424
11.1279
20.1331
21.0207
7.53186
12.8504
14.6459
12.9642
14.6401
14.9207
20.8867
12.5884
12.8645
11.0838
14.7071
31.432
10.6908
12.0198
12.9912
14.6317
12.9322
14.8413
13.3037
12.2442
18.0701
18.9539
19.1675
18.0904
17.603
16.5528
16.8051
17.3338
17.7022
15.5826
16.8787
17.7775
17.9815
18.9963
19.1236
17.7366
17.5012
19.0495
18.8793
18.2207
16.187
83.837
6.23165
13.7278
9.76438
17.0539
17.5038
18.6784
14.9728
16.7388
11.7283
17.6673
10.9592
17.5162
18.8767
18.1013
18.1904
15.419
16.6859
14.0146
7.84795
17.7911
16.6947
10.8249
17.6762
75.2395
7.43354
16.5777
17.1195
17.1469
16.6661
16.4962
15.1829
15.1678
16.4175
19.9782
19.2552
18.5752
19.7584
25.1466
22.1671
196.755
7.13501
7.99559
8.1692
16.7502
15.1735
15.4468
16.3896
17.3912
20.0113
6.73272
164.082
16.4129
16.9478
16.7998
16.516
15.9449
10.1425
13.493
15.6306
17.1468
17.6476
17.4215
17.2141
16.8726
15.5364
16.4742
15.4433
12.4721
8.5823
15.4089
13.8306
15.25
16.3205
9.03432
12.3485
6.818
10.0708
13.6354
15.1786
15.0598
13.1742
14.6773
7.461
120.361
11.3197
27.5377
27.5384
104.17
24.0701
24.1998
24.8763
24.8133
22.4341
54.9065
193.699
40.202
51.2884
58.3182
38.8203
32.5918
37.4094
34.0658
18.4066
132.603
23.9595
37.6608
132.471
62.8611
19.9075
51.3839
49.8874
37.599
22.2518
37.0226
72.3647
19.6322
33.3124
74.939
33.5929
66.1875
158.069
22.3671
67.9425
36.3925
21.4525
36.8931
20.8189
27.8545
49.4112
24.8303
62.6047
76.6706
189.002
25.892
34.5686
38.6904
99.9406
42.8055
71.6588
150.005
25.0053
105.462
60.2983
52.0628
29.1693
53.7713
190.921
21.2496
72.1067
28.6724
76.7533
62.5698
24.3164
80.2506
28.471
81.6102
34.3197
102.048
403.861
63.5704
25.7348
81.4869
30.1014
27.0591
134.046
174.898
104.166
36.8389
398.274
347.375
140.014
23.7147
446.816
208.273
477.86
23.3075
112.496
189.873
33.8208
36.0137
395.232
60.8098
56.8481
94.9513
388.904
357.536
44.0966
304.859
356.093
42.4313
21.1267
235.688
145.376
26.9354
115.338
19.79
74.8378
218.033
588.631
22.6963
34.3486
657.805
240.726
61.1859
39.8694
203.38
441.872
41.2167
127.495
144.902
127.459
71.0256
217.445
36.4906
108.948
240.062
147.204
565.231
227.268
211.547
657.384
192.793
56.8778
259.095
526.897
115.836
41.3829
36.7989
523.066
58.3132
58.693
15.681
49.1176
14.1046
13.5559
14.179
31.9755
15.5711
51.8604
20.01
33.5904
14.927
27.042
20.087
45.6529
26.4107
51.0339
65.1336
20.0386
20.4589
15.9744
154.718
15.8028
17.7616
18.0972
18.2383
18.6231
16.153
52.7045
94.3411
29.3156
84.5111
21.1745
75.8646
22.8152
21.8711
204.661
53.4127
20.8396
53.9085
53.0749
62.4468
23.449
59.7764
52.4869
19.9637
168.312
64.5915
56.0427
74.125
22.7257
65.3947
22.2362
202.047
70.4452
83.637
26.6558
58.0801
16.9192
19.4483
20.8497
62.2039
73.9892
27.456
68.7879
23.6712
119.31
74.4997
231.115
59.018
155.634
193.328
21.5869
368.668
23.6549
172.026
17.6503
174.277
13.4975
400.94
75.1744
339.398
78.3953
182.213
54.6044
112.066
15.2518
188.922
35.0868
30.0365
66.3993
55.4689
98.1539
28.7976
19.0604
36.289
21.8559
44.5482
35.5294
87.6637
29.3233
35.1347
87.262
25.3254
44.4255
158.878
241.075
40.4486
602.159
36.9841
576.832
168.83
14.5748
501.051
30.284
53.7755
595.555
19.9776
155.722
621.528
34.9636
155.661
60.2685
37.4218
570.827
96.5317
29.6504
231.313
86.8498
23.1708
250.111
58.3492
96.4775
55.0134
24.7769
52.6869
205.754
197.462
22.6914
234.949
24.693
53.6122
28.6078
63.7171
13.3109
15.0247
44.6351
15.6103
65.7799
48.3936
151.001
18.1007
16.9043
18.3528
44.8161
47.2362
75.0825
11.2426
14.7876
12.6862
39.6802
41.4652
39.5442
26.4905
15.839
16.5306
74.8835
25.6993
22.9057
46.1078
43.8247
25.7439
88.3446
71.1427
17.5128
26.5979
30.5794
72.9062
54.0997
22.5656
72.848
59.1606
83.8413
40.2615
75.5859
20.4808
92.7728
22.0603
45.9947
65.4632
18.6789
17.6524
22.9846
64.396
17.7654
199.767
14.0111
27.9352
206.139
24.6833
31.6543
37.9231
28.1734
276.562
20.6554
62.336
17.3862
21.3825
33.2101
63.1554
73.2449
410.407
17.2169
26.2998
43.2403
93.8981
17.2883
32.9262
54.6162
521.043
49.6752
29.794
14.7381
86.7642
35.2974
21.6906
364.331
44.7705
46.2451
109.423
199.089
25.1804
14.1036
192.625
17.9042
22.4524
595.618
178.383
19.8602
214.257
42.7519
50.2056
42.1853
21.1056
241.862
32.3779
64.8736
215.437
36.2609
51.4845
191.526
55.7776
68.54
195.181
20.7728
169.403
19.1174
174.326
23.3237
17.4075
102.641
577.127
23.0474
39.6972
32.2283
24.1072
59.804
42.855
23.0426
186.025
12.4636
14.6713
13.6549
15.373
13.8321
43.3298
56.2716
66.3854
15.2383
21.1356
36.269
25.7466
13.6843
14.1152
23.9317
15.9061
67.1458
12.5598
25.9013
26.5481
11.7116
39.4897
26.0253
65.0237
10.7691
12.6765
15.0331
67.2599
15.9112
65.0689
14.4677
12.7495
17.76
71.081
16.8431
22.0638
31.4781
21.4764
17.6675
70.341
56.0524
33.7511
17.1137
68.9253
286.343
79.829
32.593
43.9891
32.9754
30.9598
25.9309
24.9564
70.4118
30.9499
41.7594
25.1884
29.4239
74.2701
243.248
14.6881
75.716
16.7205
399.825
48.1975
60.0402
16.276
57.0298
53.2859
173.88
35.8216
48.9017
26.5103
32.5947
26.4834
168.514
19.519
15.6137
149.373
106.665
14.008
628.224
17.6989
205.939
41.0578
50.5863
157.059
15.1519
17.9738
527.608
42.3841
33.9408
22.9593
27.2793
28.5288
23.6894
538.459
24.0441
21.027
49.7764
95.4546
27.7503
34.727
35.8336
18.4288
41.4031
14.4479
11.4809
72.9461
59.6374
24.362
25.6594
36.0915
34.4403
25.0398
32.7125
22.4239
24.13
15.5261
14.9116
26.6104
32.6983
204.608
25.134
24.3453
11.2338
57.9781
17.6931
20.7774
51.9428
214.377
11.2004
13.7266
12.5387
48.9439
21.5903
15.9052
14.3532
14.9593
21.4342
20.2716
13.4416
15.0485
58.8384
84.3863
15.3708
36.221
28.1154
21.442
16.7542
18.2896
25.1322
78.5581
55.1264
34.1329
42.5609
33.3468
37.6754
61.8686
48.9626
46.0957
18.3923
61.6582
15.1838
17.862
85.1166
21.7937
19.8645
17.6002
89.7691
25.0863
61.5123
38.6939
32.7868
27.2279
27.1305
35.9842
32.4675
27.19
21.769
26.2487
27.5048
25.8062
26.0477
14.591
29.0939
20.1469
12.6738
16.214
33.7124
28.7271
22.4666
33.2225
29.0961
12.2123
17.76
25.7875
35.3465
34.4562
31.136
55.0846
39.1698
26.1384
16.3546
31.6436
30.6359
36.4069
41.0451
18.4952
33.4594
29.9723
33.7815
43.0525
32.8201
51.9807
36.0516
76.4634
386.234
11.8458
22.9352
30.7354
94.8346
47.6067
31.7429
43.1874
44.4496
32.6324
144.215
20.0015
16.2569
482.879
185.849
130.401
158.758
11.3144
128.985
13.2886
158.179
140.849
121.315
43.0225
81.0244
11.1426
54.2836
13.5223
49.7709
11.4662
217.052
62.3292
35.5246
31.6241
10.9226
27.0208
27.9633
67.1975
53.8722
55.7887
19.9694
18.1798
20.9031
23.6777
70.7264
65.6579
15.2453
75.6672
14.445
63.2973
14.1798
34.2905
19.1139
95.0435
21.2249
284.886
32.3589
25.8942
30.1666
33.8435
57.5206
34.6624
20.5775
78.8077
21.8502
26.6638
23.3815
55.6565
12.8183
13.4609
14.5512
75.0372
19.4581
54.1147
67.2741
14.6125
28.4357
23.3894
22.8081
23.4059
29.2817
30.2548
21.1122
15.9505
32.5819
32.4426
9.38826
119.564
14.8372
26.1897
28.0227
21.3825
23.0135
17.2863
13.1746
26.54
19.0622
137.424
41.0624
13.3102
13.9702
35.5452
42.4917
15.6548
14.1891
130.379
78.1766
33.8281
30.7284
112.317
119.899
27.2444
12.3318
32.1772
36.782
48.7723
26.1778
24.6856
9.18523
26.5479
25.4055
51.1619
52.8264
51.3026
12.2916
12.232
12.066
54.7592
19.9674
21.1155
49.2105
25.5733
25.9207
30.9468
207.914
32.285
17.7828
17.8424
29.7017
37.2908
30.3588
13.9278
32.682
29.7846
26.3326
28.6882
25.7801
22.7522
28.1243
17.4741
13.7741
29.7538
32.5336
30.4294
20.5097
22.1312
13.5965
58.009
54.7308
13.1227
25.0809
24.2487
22.163
22.3271
54.0925
11.8472
60.6076
19.9611
36.7719
20.6608
27.1796
249.41
22.2903
77.5143
13.5998
14.998
25.4922
11.6589
22.1881
28.5547
30.1478
20.9404
17.0484
32.5435
316.646
77.822
302.77
33.1825
40.211
43.1876
14.4757
28.2676
17.4606
25.622
25.4638
22.4877
10.3135
12.9111
108.464
14.0449
23.9845
25.011
12.6769
32.4428
28.7741
129.391
26.6126
27.8666
45.744
26.1165
21.8036
19.9796
28.0665
27.2555
29.5909
38.9882
25.0037
27.785
61.2826
30.2269
25.7429
16.3361
19.1744
23.5823
19.4145
21.2138
60.6049
15.7932
34.5268
18.1132
10.3551
23.5254
12.3623
21.5077
31.3717
22.4316
28.7644
23.9863
40.9297
37.0034
31.269
32.7885
26.0751
41.2993
24.201
19.523
18.3151
21.6711
22.2051
24.4156
22.7861
17.5956
18.0584
20.6722
20.3243
19.8909
20.295
22.8019
58.5304
53.3406
23.5027
19.3177
17.7113
21.4829
26.3237
28.3837
47.5131
23.0382
54.6748
22.9843
20.2521
18.808
23.6702
246.236
29.8753
58.0815
12.0766
16.7023
16.9438
24.1899
25.7979
17.1215
11.7412
22.5744
22.0439
18.595
14.9305
28.1125
27.6445
23.4148
54.9167
25.2117
31.5657
19.0596
20.0246
22.9238
30.549
20.7638
30.8446
10.4206
16.4041
24.1008
17.1698
23.7993
24.3128
23.444
23.7534
23.9937
24.5764
55.8693
28.7401
23.9397
24.5595
25.3416
27.2481
24.19
24.2951
22.8129
23.7505
23.4055
19.5303
23.0817
21.6242
21.494
17.9301
250.542
9.84862
14.0995
13.318
18.9767
19.0522
21.11
15.4893
18.4634
16.6091
20.5891
13.8164
22.9613
23.377
23.8887
21.9998
22.759
20.874
23.9644
19.5805
23.2319
25.1706
24.4166
24.083
22.2748
17.5658
21.1873
18.7773
19.9318
11.1295
17.3166
22.5245
28.2395
26.5179
24.1117
21.854
24.1249
26.0021
19.5285
20.7271
15.1818
12.3655
22.6815
15.3389
16.4265
18.0893
23.5166
26.1432
16.919
13.7074
16.4503
15.0869
20.1495
21.5617
13.0091
26.6753
33.3749
16.5664
23.9631
22.4384
18.8269
12.1903
10.0942
90.0301
24.3521
18.2712
19.4241
22.4207
31.777
10.6454
14.2366
11.1599
11.8317
11.2615
15.2876
22.5064
15.8563
21.5292
87.885
9.79092
19.1367
17.8696
11.6406
86.7016
25.3633
23.5087
8.59438
298.388
15.4405
16.9344
8.70193
80.2187
15.014
15.1546
16.2222
16.3747
16.1099
16.291
14.3207
14.5548
16.0436
22.9953
16.0951
15.1869
20.5756
15.4826
37.968
48.2594
20.0306
18.4313
49.912
24.7947
21.6194
19.2417
29.552
19.5444
21.8825
22.2667
22.4553
17.5227
16.0341
9.50088
42.008
175.983
22.9911
27.8478
21.2035
20.2497
24.3023
16.7134
18.6253
16.9645
12.1516
190.062
15.8499
16.5762
12.4416
20.1175
19.4942
19.8436
19.8792
20.348
21.2165
22.3738
20.5913
19.699
18.765
19.2557
19.0174
19.8676
19.7013
20.6699
18.4127
21.2965
21.2866
21.7338
20.7062
21.4019
19.9225
20.8652
20.9105
20.788
17.479
16.8872
21.6422
21.3341
23.6827
24.7515
20.658
11.2066
12.5326
19.9128
23.4736
22.9544
20.3892
18.4412
13.0046
14.3295
17.2987
10.7535
8.52831
12.5572
18.6395
17.2133
14.508
10.2982
8.85171
269.237
87.0309
270.676
16.2604
18.8392
19.9427
14.6036
15.8254
12.2
16.7199
10.8399
13.2907
13.1684
14.5137
14.8167
14.005
14.0388
14.7012
13.886
32.6664
20.8869
17.1787
17.0379
13.6458
13.7164
14.5622
15.331
14.5313
14.4795
15.1042
14.4416
14.9234
14.9265
17.822
17.4197
18.1087
15.5785
16.6299
18.6617
16.7983
16.1349
16.3019
18.0596
13.7749
17.909
14.0341
15.2971
46.0663
8.91005
7.65369
7.78781
150.621
5.08882
130.386
66.244
8.4016
7.86537
81.4545
12.3656
13.6139
11.9553
10.5181
12.1641
11.8459
13.4433
12.451
12.4389
12.8317
12.5332
12.4712
13.5481
13.4405
12.9383
13.0544
12.1368
12.3829
13.084
13.1436
13.0879
12.7964
13.0706
13.067
30.1093
12.5667
12.5591
30.6747
13.2841
13.1807
30.6939
6.43073
11.0149
11.1486
10.7883
11.6321
11.5973
11.5733
11.9548
11.8693
29.5424
12.1165
29.0297
11.9792
28.6098
13.2286
11.5359
14.1935
33.2871
11.954
15.6669
8.27933
7.9557
10.4372
10.0438
9.6056
9.98688
10.0467
9.604
10.181
10.2262
10.508
22.4551
12.4997
10.3678
11.9514
10.679
12.8752
9.93581
11.9659
22.5886
23.849
9.93712
11.7665
11.9896
7.77745
6.05265
7.78481
10.0825
7.99847
9.49701
10.0745
8.28146
10.107
10.1638
10.1871
10.4006
11.9319
10.5203
10.04
10.5325
9.58468
9.96568
9.62468
10.0499
9.95559
9.94683
9.76532
9.67177
20.8277
5.2697
5.46815
21.4012
7.74375
10.923
8.16484
7.68789
10.4834
7.99778
10.1379
9.50109
9.00236
21.936
9.23622
9.11066
9.5896
9.27038
9.12454
9.44486
10.9415
11.2511
9.36085
10.2204
10.3934
9.3978
10.146
4.93278
4.60192
18.1678
5.06892
8.70826
6.42232
7.25295
8.77126
6.74089
9.10224
9.03107
8.38073
9.12192
9.55548
7.95911
8.88385
9.58146
8.18436
9.062
8.55477
7.94163
7.53028
8.61836
7.83549
8.62227
8.79104
8.04106
4.77276
8.38723
4.45687
4.3956
8.29908
4.42249
7.35553
7.93599
7.34056
6.45075
8.14207
7.15609
7.99316
8.26811
7.39958
8.3191
8.29642
7.6801
6.77407
7.43553
7.40934
8.21642
7.67026
7.63796
8.61567
6.20289
14.3969
6.78376
8.87362
3.14593
3.70462
7.35577
3.864
4.72736
7.30497
3.88731
7.52713
7.28477
6.77955
6.77619
6.85692
7.10398
7.56725
7.04551
7.23864
7.37117
7.31947
6.85703
6.01056
7.26077
6.60166
7.25603
7.38152
6.79584
3.32778
6.91761
6.93568
6.06436
6.60396
6.49961
5.94665
6.1832
6.41474
6.65864
6.37664
6.55507
7.14526
7.21676
6.88906
6.14918
6.4463
6.7833
7.2589
6.62919
6.96791
11.2162
6.60994
5.4948
7.2898
6.17435
11.7849
5.75971
6.64722
5.00829
6.34416
5.08908
7.46325
5.01307
4.10767
4.16834
4.60601
5.79483
4.45277
5.22147
5.52344
4.18721
5.05509
5.91628
4.76146
5.07592
5.10508
10.2813
4.72433
4.50165
4.83311
8.05263
7.74481
7.67658
7.65714
7.19027
7.73618
7.63092
6.9316
7.5338
6.33423
6.58107
5.73081
6.1405
5.37783
6.44176
6.12826
5.58858
7.63664
6.90747
6.79176
6.41424
7.15349
6.62573
6.22798
6.2073
3.86845
46.1501
2.66678
44.5998
156.577
50.5271
298.645
92.2535
55.4559
228.132
393.03
133.326
34.605
286.278
138.329
380.463
88.139
763.199
234.827
512.743
73.9888
133.845
581.378
154.914
171.002
113.185
57.8275
51.2224
80.4312
123.375
189.581
194.475
240.44
44.758
195.994
62.7202
420.351
54.852
433.032
878.66
51.9042
76.1291
744.821
124.181
207.031
65.0779
118.806
99.0664
38.0182
371.632
45.7987
233.08
71.7293
93.4802
96.5754
50.8034
224.359
21.9151
164.473
24.7792
47.303
226.563
87.6827
37.0654
229.399
28.7034
70.0285
97.3948
92.3757
52.8902
77.6143
127.921
205.692
100.519
30.2321
59.7655
80.1668
54.3848
76.2995
89.7638
78.4039
92.3493
34.2207
51.0239
23.7774
102.774
248.423
112.669
108.133
623.541
74.4238
77.1579
63.8725
74.9777
78.7388
74.9395
36.509
45.4
61.5951
34.4948
70.0579
68.6434
81.3082
78.797
19.8273
48.7937
34.1812
20.6107
731.784
107.385
39.477
77.9849
217.462
40.2168
248.865
62.5468
89.9107
252.031
96.9134
112.778
300.994
112.703
262.046
106.091
44.5584
42.0755
101.037
118.335
46.0659
115.06
66.1226
35.0629
34.3675
35.8303
275.115
284.479
42.4497
35.0473
362.303
125.457
251.277
92.2801
252.575
37.2269
49.253
34.5228
66.8079
54.0407
27.7674
78.2102
444.982
508.147
67.8501
198.512
225.962
279.12
108.251
925.448
132.493
51.3511
328.151
132.64
553.83
151.855
196.298
20.0698
83.0126
66.8517
60.7132
1027.4
51.2842
94.946
73.0285
184.179
12.2141
13.0085
33.9651
13.9717
10.7806
33.9194
19.1649
18.6544
96.0125
228.382
37.155
23.1222
90.3441
31.2273
35.3643
150.957
25.9313
166.551
29.0702
15.0942
35.5393
148.278
164.784
19.6925
20.3765
168.948
199.494
29.2207
27.3114
50.2677
22.9865
24.5888
269.003
77.778
51.5404
134.388
352.275
31.0356
56.6346
46.2265
22.3753
142.192
27.7914
76.0163
38.5637
144.167
63.346
483.769
55.836
67.8127
101.96
87.3451
135.571
33.5083
93.7671
567.613
52.745
110.125
35.9096
18.4207
185.888
19.0386
6.26775
16.5966
26.2076
5.80075
16.0636
23.0319
5.8278
17.2267
25.1193
28.24
27.7372
27.5831
5.84692
13.1434
24.0805
24.1099
14.2904
25.8527
8.1697
16.3958
24.5804
6.70305
14.9704
69.6633
73.1436
26.3104
1025.23
7.77641
914.752
78.4827
961.375
48.6665
73.5134
33.3834
22.2646
87.8965
142.963
133.129
79.8629
92.4194
225.572
48.4009
100.403
9.70812
422.734
12.1056
30.2851
11.7751
27.4498
25.3532
26.3202
6.63348
200.377
5.33734
18.1948
97.6813
89.9175
12.7074
23.8436
31.469
5.95906
14.198
117.227
20.9973
23.2698
30.16
135.572
24.5357
40.1123
73.3714
197.905
107.752
19.624
43.2903
18.1608
39.795
17.7686
18.9009
56.7788
31.9752
68.1569
25.3726
26.7185
296.393
28.6794
47.7337
356.719
87.7387
43.2206
62.5866
86.9043
20.329
32.5389
112.292
81.5337
22.8776
51.115
38.1016
95.4776
46.2338
86.5499
28.0265
41.7732
58.4226
18.2056
46.2281
82.6652
36.3723
20.4853
63.1534
34.8902
90.8449
47.8241
103.244
97.3631
56.1585
28.5559
90.3544
492.544
195.237
41.2536
96.3833
94.4552
10.1538
5.77482
147.019
111.417
312.307
10.4953
11.3146
10.7621
11.1214
24.1097
24.9397
10.6049
16.2178
55.9484
55.5065
95.4509
10.265
10.3571
10.5124
10.387
30.3636
16.1211
9.74974
9.68602
9.76898
23.2248
51.0735
52.9898
17.3219
21.4464
56.7267
54.325
10.699
3.61981
3.2385
664.612
772.279
3.53014
3.04976
88.6456
10.0261
9.97035
9.5251
9.77059
9.57128
18.3228
147.017
18.4913
36.5744
45.7438
31.5295
21.3793
19.9331
166.805
25.6214
34.1757
33.759
147.813
84.1288
17.2921
16.3654
149.13
11.8955
18.2069
48.2356
24.2813
121.938
67.1394
61.7197
43.8619
27.8135
369.573
103.019
26.4098
94.323
40.807
35.477
72.4635
148.314
24.8562
41.6066
22.4354
18.4121
46.5811
81.4004
19.2677
40.1316
39.5021
111.086
525.61
81.8919
60.1164
69.2713
63.7747
19.7812
22.8
2.06948
1.43021
0.587113
0.320229
0.741617
124.136
73.4126
21.4107
22.4156
21.8178
70.2361
22.3046
142.361
0.196596
113.444
45.2509
56.0212
55.768
59.9158
46.8588
51.6862
25.1526
22.4938
43.3624
13.1231
18.5286
15.4199
33.3738
34.1843
14.3451
55.5875
36.6585
34.2326
16.2442
20.474
20.0082
60.6443
242.304
58.8783
16.6794
286.989
100.797
12.1043
51.9067
16.4038
41.1096
4.4787
8.9977
21.7655
36.8713
132.767
41.287
38.8338
36.4334
37.2717
27.8379
35.8994
62.1122
11.2231
67.1977
12.0971
107.911
86.0863
33.0365
45.0876
45.6922
33.5373
22.0651
31.6958
81.5479
45.7648
28.4496
77.1981
102.001
31.0777
30.2903
54.6854
23.7321
98.9392
20.0087
52.713
17.0634
21.3713
34.1837
51.9884
83.7787
35.2822
84.777
46.3072
71.4646
16.5703
71.6436
39.6916
36.8768
15.3429
42.6878
66.4299
28.2104
30.351
45.5401
19.9632
43.5797
42.686
49.0776
55.3567
48.0884
17.2403
34.7392
43.4748
16.2882
16.0609
10.3513
24.9905
21.6189
1.29232
1.52421
12.3924
246.355
478.728
30.7335
4.71142
5.49202
14.1867
9.185
2.6283
10.7077
5.12633
14.4525
4.77425
5.21038
1.20339
1.23229
4.70363
12.156
2.29436
11.8739
4.58639
8.73744
15.2799
4.60492
4.47902
6.17816
4.24571
2.32929
54.5936
2.21063
2.04978
1.66848
11.9182
114.846
34.8163
11.5193
36.6731
8.97067
72.3145
73.9934
76.1449
25.7798
29.1578
28.2786
26.64
34.6142
71.97
36.0898
301.326
15.3487
37.7154
45.5319
27.4568
29.9865
17.9074
42.8088
23.9771
26.9326
17.7176
93.778
50.939
36.297
22.709
33.4291
34.8493
25.5502
22.1934
7.72344
20.5574
32.364
23.7424
24.4546
26.0567
34.1381
24.8426
7.22215
19.8954
20.5371
17.7303
13.3916
16.4179
17.1817
10.7631
29.9893
2.76739
1.88211
0.231832
1.50456
0.163328
0.272867
1.35628
1.40211
0.183186
1.55035
2.94657
2.77274
1.46072
20.3723
22.7677
39.1654
52.1227
61.1219
96.1768
62.2709
26.6091
45.3055
41.7802
11.9957
14.5527
14.6372
15.8495
24.8762
198.712
13.389
21.7442
11.8126
17.7818
3.98576
16.0632
11.1705
34.7068
20.7447
23.1175
22.7809
32.9153
20.8885
14.6851
13.717
6.81008
16.6772
19.4378
8.09305
1.30072
2.21817
1.27038
19.1036
1.25765
2.03232
1.23687
11.3761
11.9826
367.716
13.9278
70.3431
20.2083
20.0488
73.9846
72.978
77.4731
76.0475
20.26
20.3837
20.7996
17.6089
234.855
56.2596
9.57213
11.1289
6.39167
109.495
13.5566
12.7119
20.0147
24.4681
18.9292
9.30011
15.966
15.3388
7.81319
129.615
21.9501
17.7853
12.1423
0.7942
1.16125
0.690565
6.83261
10.6089
9.75592
1.77027
2.83767
1.91611
3.02132
5.21456
3.30129
2.00196
3.15655
2.20229
0.473639
0.978763
3.18128
1.51649
6.20812
5.83381
2.49828
3.67578
10.393
12.5633
8.2859
8.00399
13.757
13.1338
15.1217
14.6332
8.42711
8.86889
13.9771
14.6273
24.253
27.3238
186.368
21.9025
22.6215
22.7404
23.071
23.8081
23.2102
24.7238
23.4197
21.3832
27.4484
51.3766
22.4226
53.8425
19.9152
19.6023
20.2907
19.6659
21.6306
22.2189
20.7576
22.877
20.6636
17.0929
20.9332
19.5668
20.828
24.8887
22.1742
20.7596
37.0193
23.2357
21.4687
175.534
3.65488
10.2169
292.584
18.4942
18.4487
18.9031
17.5766
18.2835
19.6944
21.7104
3.87868
23.3932
0.955755
2.41874
2.65729
0.272449
0.332333
1.19573
0.5825
0.419145
2.92537
24.0587
0.124765
8.04875
0.268052
0.188282
0.330781
0.241362
0.621796
0.38045
2.09113
0.234812
0.311798
0.201022
0.327302
5.30474
43.5419
5.50149
31.4005
3.91562
3.84258
31.1583
5.68267
5.56401
6.50699
6.11993
31.6427
3.96162
4.03955
5.74996
5.97967
14.021
8.71246
11.2457
33.339
15.4453
18.7916
36.4044
17.1181
5.78291
145.737
6.41585
9.78929
12.4243
14.6922
15.0373
12.6136
11.8953
9.1434
6.91933
15.2136
12.9644
17.531
15.4622
16.042
11.3424
7.45254
6.48446
11.7456
9.89289
13.7041
12.0564
11.3112
8.55742
5.81595
4.49158
10.0309
9.59916
9.35545
11.319
11.0108
8.84801
5.86965
4.71493
10.2461
15.6818
18.0244
17.2034
17.5621
17.3754
18.4838
30.9965
29.7535
3.76091
6.5011
12.0441
12.0574
1.80627
13.3015
4.52451
21.231
27.1798
28.1458
1.75144
4.65529
3.68852
2.62516
6.82798
3.66669
8.77045
8.0241
9.02881
4.6009
5.08325
8.87987
140.076
2.84417
9.93587
7.52126
9.98025
7.87463
4.99554
4.06869
8.26789
38.9539
3.60338
9.93309
3.7518
26.1968
3.13337
2.67851
10.1079
4.36192
3.81808
4.45401
11.3328
4.33826
23.7553
2.85082
3.25947
11.4979
4.04691
4.53134
11.5737
9.37458
11.2202
7.43893
10.7612
8.13288
8.74075
10.0662
6.42442
12.4501
8.97716
15.8161
4.70825
1.61648
1.88773
4.15799
5.57249
7.32843
7.94234
4.95383
5.01821
1.47696
2.30218
3.88524
8.65002
5.87956
10.4588
7.93727
9.84709
9.0653
4.72736
3.86895
6.62716
2.81704
2.76174
0.671871
5.873
1.95647
16.2277
0.909565
4.36077
5.96133
7.12584
4.73969
8.29651
4.22667
0.944134
8.81001
2.31271
1.8481
4.78315
18.3383
8.66705
8.36938
1.71791
4.69012
1.74796
4.77602
1.9366
1.75756
2.23221
5.80109
2.25984
5.56831
2.01859
2.1398
3.29371
3.16692
2.56219
1.30779
8.88923
1.74095
1.41487
0.163088
31.9747
4.01911
7.33404
74.9378
3.57456
33.6183
3.58804
2.17971
2.23126
1.00262
2.63802
0.918966
2.66107
0.934873
0.480748
0.508186
0.404759
0.383664
0.926739
0.885535
6.84738
1.33833
0.484892
0.59431
1.06696
1.25536
9.41112
17.716
5.63184
2.02753
5.1238
4.02663
1.90651
4.83937
0.928057
1.12718
1.49285
1.39845
1.7122
2.058
1.43289
17.4428
1.9324
1.64053
2.78989
3.17244
1.32249
1.91722
2.79444
2.22934
3.32436
1.34511
1.07582
2.99221
2.0036
25.7986
8.0147
1.17441
7.51082
1398.22
1590.67
1.78983
2.40939
30.9365
2.51778
20.0815
1.70249
0.630745
9.46939
0.355879
0.493167
1.68299
0.288757
2.10768
0.130662
1.96865
0.287176
1.912
1.10481
6.94985
0.592793
5.64862
1.30802
0.486564
1.40368
1.25311
3.755
0.713568
0.593404
2.75495
1.47503
2.30527
8.85268
2.80587
1.33931
0.766635
1.12324
5.09495
7.0317
2.10741
7.58598
0.93271
2.00285
45.6955
34.0146
26.4473
13.3285
13.2843
10.8239
21.5726
13.3687
21.6531
13.2468
10.7369
10.4877
8.25998
9.73477
10.885
9.61472
10.1503
8.90272
6.19184
9.40673
6.46928
6.34333
11.8577
7.49654
3.48353
5.41753
2.89832
6.24347
7.86811
3.07198
49.8401
10.4669
11.7336
12.1386
9.88805
6.10041
7.16302
7.00182
6.24365
3.72726
4.44027
4.39385
3.76774
4.14932
3.99829
3.98937
1.83315
1.60536
0.184818
121.25
223.622
1816.55
58.7323
19.6266
23.9152
44.1859
47.5275
82.506
22.563
304.748
53.8559
43.3489
43.6481
42.9712
52.0568
51.9927
53.1308
13.2338
13.3081
13.3688
13.1723
41.23
122.39
13.5301
23.7774
25.0193
296.625
16.7713
65.3146
15.8071
47.2073
15.5386
47.3999
11.8391
22.5123
11.7035
22.4861
11.3821
20.643
11.4107
20.9128
10.8995
18.0565
11.5124
18.4961
10.6586
16.1792
10.3759
15.9983
10.6124
10.449
8.98047
9.02294
8.01475
7.87709
7.45491
48.7108
16.4886
16.9771
7.24874
6.69072
15.6733
15.7511
10.063
8.47893
9.5705
8.96003
6.58897
13.556
13.3956
13.4878
13.4589
8.92035
8.10562
7.9199
9.1555
5.95058
5.20161
5.89199
5.25217
8.15628
7.25524
7.62143
7.82335
11.1448
10.816
11.0533
11.0169
5.71124
5.09655
5.03974
5.77611
3.44315
2.87359
3.41062
2.9002
5.97238
6.07576
6.52085
5.52012
3.53084
3.30934
3.65678
3.14723
9.62897
8.93944
3.30151
2.81346
2.78023
3.34096
1.79104
2.33975
1.31886
12.5904
2.79102
2.64651
3.00285
2.44703
1.96006
1.54365
1.76203
1.71936
7.76695
7.77034
17.0934
1.71452
1.85317
2.29683
2.00547
147.036
333.672
48.0808
54.5844
10.8605
12.3775
10.4854
12.7821
7.03627
7.51006
6.56433
7.98716
3.88392
4.53009
3.84967
4.56945
7.01898
6.82521
7.42809
6.38924
1.74714
16.1778
2.29293
1.7329
2.31271
20.983
43.2072
7.27622
17.0064
18.5421
18.4771
32.8405
73.0061
10.8215
9.10456
9.12308
9.09466
8.7143
9.19845
8.70774
7.74119
35.2572
4.06003
4.6491
53.036
26.7225
102.862
87.667
50.3474
42.8547
38.1799
33.2963
14.6217
22.9988
14.4211
29.6183
14.37
98.2877
14.4872
12.4633
9.17053
12.3707
10.5951
10.6949
12.425
12.4115
13.3281
13.2935
13.4316
13.1824
12.0455
11.8115
12.001
11.8561
11.6053
9.39083
8.64655
10.6813
10.2379
10.0496
10.3188
9.97356
9.45725
9.17253
9.38739
9.24344
8.67994
6.12479
8.28018
6.19959
6.26598
7.97602
7.9813
8.20528
7.74733
5.42037
6.16498
5.29118
6.08037
8.43713
8.022
7.6175
3.1567
6.15049
0.846393
8.09827
1.48043
98.7281
71.0263
219.953
21.898
81.6589
25.5145
66.6254
216.661
94.2433
184.026
74.6742
73.9991
125.032
24.0294
24.3522
114.653
22.0348
21.9045
30.8047
25.3452
354.634
121.856
165.137
29.7653
91.381
19.3566
15.7909
78.53
24.8512
12.807
71.4956
20.2349
10.3277
10.6084
9.1367
7.66316
7.46084
14.8806
19.3146
28.988
13.8483
8.25804
9.25502
9.34774
8.17816
5.14029
5.80347
5.92604
5.02707
2.74544
3.41754
3.4333
2.73089
1.92546
2.08372
1.75102
0.855987
0.93713
22.3713
5.04096
4.71887
25.9856
5.58717
20.4099
21.3831
6.88086
5.95407
18.0566
13.5005
23.1
6.9756
7.77071
28.9324
62.5249
59.1281
207.67
12.8619
64.5713
25.7413
18.4417
7.67545
6.6958
10.0423
19.8064
22.1707
22.2249
34.8818
12.4558
22.1723
22.8303
16.4771
70.4414
6.66315
11.7212
20.1154
21.5379
24.2359
6.46515
9.94169
34.6472
23.2749
73.2122
27.6491
40.5192
11.4494
11.8261
20.2844
66.7318
7.48526
107.913
12.0837
99.2245
33.3001
38.0848
29.7731
6.89514
9.47838
26.4589
26.5936
6.96982
9.1218
10.5809
31.4668
104.945
40.5209
11.1079
12.1014
12.2682
12.2295
12.2174
10.77
26.4933
18.8963
18.9686
11.4561
12.0481
12.0005
11.925
12.0265
14.3366
14.4351
14.3571
14.3957
10.0621
11.6409
10.8382
11.5234
11.0811
12.9892
33.7675
5.42783
14.2772
14.4239
14.3592
14.3485
9.33265
11.295
10.6305
11.391
10.5064
32.4297
22.3743
22.2382
30.7169
21.4721
21.548
45.3713
208.75
89.4422
152.595
50.1259
35.3802
430.305
154.189
512.486
20.8495
26.7404
13.8526
16.1033
50.3182
22.7728
18.4233
61.7951
200.26
29.1977
28.8208
191.091
102.486
36.4658
201.8
27.0558
30.8179
18.8426
84.5725
11.8691
83.5031
177.306
86.9824
540.64
25.6736
13.6922
39.0868
12.7315
19.3364
68.1117
80.9891
51.619
47.0898
25.662
12.3024
22.188
12.2801
22.3402
11.9455
19.4824
11.9843
19.6092
11.3289
18.0684
11.1007
17.4576
10.6628
10.5195
9.98096
9.86868
8.7242
43.5849
8.64594
20.9808
39.3305
40.1956
20.5471
42.7695
7.76911
19.3089
19.8584
35.8256
16.1475
19.0233
16.9668
18.256
7.77231
17.3676
16.3425
18.4686
15.9467
17.4546
22.2802
19.5537
18.4284
33.8245
17.3231
21.1183
20.9567
46.0296
35.6583
22.218
63.6456
52.979
6.95848
14.5981
15.1601
14.9912
14.7388
13.0701
13.266
12.847
13.3424
6.89109
13.4258
13.7444
14.449
12.9024
12.6935
13.1519
12.6606
13.2088
17.4898
15.6787
18.1749
15.1812
13.642
13.2633
13.3162
13.5961
14.923
13.8213
14.726
13.7502
13.3632
13.1382
13.1576
13.4247
12.4034
10.4748
10.5965
12.2142
12.3301
10.4032
12.1236
10.6306
12.7188
13.3498
12.5563
13.5894
9.35012
11.0265
9.19369
11.2136
5.80858
8.16092
8.29797
23.4954
5.72361
8.67447
10.7347
8.94204
10.4038
13.4244
13.35
13.1414
13.6428
11.698
11.5158
11.7127
11.4962
10.4416
9.7159
9.90562
10.2086
10.8461
11.2165
10.8636
11.1995
14.3321
14.4132
14.4211
14.3425
13.8928
13.5129
13.6431
13.7952
7.50154
6.57905
6.71229
7.35693
13.1636
13.2965
13.5799
12.93
7.15189
6.46193
7.23249
6.39078
5.81975
8.12474
5.69043
8.33201
22.9978
5.73181
5.68798
12.1399
22.3399
5.53463
5.25548
10.523
9.68073
10.1718
9.96663
15.3342
77.1738
16.9508
9.76911
8.21964
8.11388
9.96896
6.53431
4.40897
5.59406
7.37315
18.755
8.8997
14.0076
9.25896
7.92442
7.51939
9.62106
12.3406
12.3155
12.3717
12.2826
10.5116
10.1751
10.4444
10.2524
12.006
11.8063
11.9919
11.8285
12.6189
13.08
12.9663
12.7272
4.64197
4.03489
4.0515
4.62552
11.2657
11.5762
11.6191
11.2226
9.61501
9.90249
9.98356
9.5324
5.02395
4.20787
4.79571
4.44223
11.2763
11.5784
11.6095
11.2369
9.38824
10.138
8.92141
7.51476
6.77007
6.36762
7.67593
7.03296
4.79888
20.4684
5.01322
4.15828
3.67486
4.10189
3.72713
8.37603
16.3608
6.24611
6.11253
3.94615
3.59132
4.01595
3.52472
7.07749
9.28331
11.849
19.5596
8.27148
8.22541
8.43185
8.03129
9.13205
9.02156
9.24563
8.9032
9.31589
9.77225
9.6891
9.4009
3.07489
2.38986
2.95159
2.50762
8.69924
8.95722
9.02815
8.62691
7.40896
8.00392
7.7745
7.6758
2.66835
2.21846
2.76004
2.14077
8.33993
8.80047
8.67969
8.464
7.22577
6.03771
6.98995
6.19661
5.56566
5.40813
6.55646
6.11362
7.11162
5.7651
3.03151
2.52263
2.84545
2.70293
5.93708
6.51772
4.88857
5.1801
2.70611
2.37805
2.6959
2.38469
5.86873
5.82856
8.30365
8.0881
5.68212
5.84087
4.32847
5.81266
4.86537
5.34916
7.14815
7.73864
7.498
7.39067
3.51007
7.20903
5.75735
6.28635
6.05996
6.03624
11.5
1.69249
1.55779
24.4556
2.80367
4.47903
5.55987
6.02474
5.72681
5.79654
219.018
107.206
274.509
39.2251
53.6888
56.8164
67.8308
119.756
35.4355
87.815
129.573
128.27
98.9312
88.6452
210.905
48.2471
26.1451
15.3529
21.6912
42.3076
12.2864
85.3827
84.4012
96.4506
14.9423
34.3226
238.282
98.4823
319.436
92.2546
50.3336
90.1581
29.8225
113.392
98.1009
99.1139
88.8515
62.369
32.9529
92.3135
29.1541
39.9517
75.7593
23.0579
23.133
19.6766
52.6964
48.1075
135.241
48.8468
138.591
74.9571
138.192
26.2437
25.7187
174.586
30.8391
60.0375
26.5554
53.1573
22.2491
50.9879
25.2856
135.683
341.13
58.7214
31.6118
44.3572
129.605
55.1769
118.316
54.9665
486.335
37.3943
137.513
46.1917
105.508
54.1384
117.4
116.395
178.205
37.8685
21.3459
110.674
21.5267
20.0875
19.9036
47.0325
15.0862
53.6736
19.3716
67.4627
41.1827
258.101
96.881
33.3402
51.1009
165.051
44.4821
104.446
93.3351
17.334
81.448
17.4144
81.9378
73.443
15.5397
81.8275
15.6858
73.0157
90.4687
17.0892
81.1895
17.0293
9.50346
74.6136
16.8656
18.7036
12.8678
42.03
15.4276
73.381
15.4117
14.8037
97.8016
14.8816
12.4534
80.3103
12.5385
69.0994
14.5611
96.8961
14.4633
20.7221
10.8223
59.6649
24.4758
12.398
64.7729
72.2722
12.1942
56.8482
12.0762
16.5578
8.23438
61.5204
8.36421
7.19994
55.2707
14.1306
7.25565
55.3806
15.7176
8.05426
7.97572
60.161
9.22565
10.3977
7.07136
13.6449
7.02715
54.7508
11.5703
5.87422
34.4697
5.89096
6.00485
36.8996
11.3139
5.81383
11.3657
5.82241
5.78947
33.9457
7.6298
7.61361
38.7709
9.15816
11.1398
46.7566
5.67708
10.7796
5.58692
6.49513
3.90635
30.8963
3.95519
31.3844
3.00303
5.02408
3.06925
6.13875
3.76494
29.8167
3.72082
6.51582
3.52058
6.59761
7.5833
4.1713
7.47527
1.45109
2.68945
1.41606
15.6621
22.7002
2.77517
3.62984
1.73584
3.69295
5.54582
2.59326
5.48703
13.1272
17.9087
13.3366
17.5275
9.62144
1.2216
0.73528
1.31456
2.06342
1.04013
1.94571
8.40829
9.19609
8.12737
9.45033
4.31738
0.295098
0.297319
0.365118
0.163547
2.36586
0.360085
4.87559
5.69438
4.92951
5.63174
1.38356
0.0610906
0.0909703
0.790484
0.0731188
0.0984467
0.719247
0.118294
0.0508591
0.0489493
4.3945
0.1907
0.0459307
0.079927
0.245169
0.041316
0.0736432
3.11045
3.58965
2.89042
3.82409
110.892
4.04716
14.4606
4.64382
6.23239
10.7171
21.6058
7.71731
7.919
3.65335
8.6414
2.11009
20.3923
2.30486
1.27659
3.77304
1.19661
3.64051
0.397852
5.09906
0.444026
4.94002
0.231792
0.58026
0.262454
0.639359
0.512025
6.49447
0.449441
7.22964
0.311052
0.501146
6.07168
0.260318
0.445022
3.81622
2.13222
56.9038
72.7006
13.0779
6.25091
29.1846
97.5968
9.70713
27.7435
6.86874
11.1265
17.2671
11.6313
16.6213
6.39946
7.99084
12.1912
7.54663
13.086
14.8792
25.115
27.3045
73.5842
11.1277
8.36112
20.581
8.48569
12.1837
12.8003
10.2431
8.80025
30.884
30.6681
33.044
80.626
42.7969
76.2519
16.8758
299.7
29.2585
26.9325
23.8148
45.1448
25.3706
12.9882
10.8381
12.8291
21.4543
12.9233
12.8924
13.6407
13.7052
13.6837
13.6515
13.345
13.2494
13.2666
13.3204
8.99409
8.07416
6.1849
9.51455
7.0346
9.40288
8.37486
11.0385
11.1067
11.118
11.0252
10.7143
10.6815
10.6957
10.6938
8.51431
7.44449
8.39204
6.9996
8.43187
17.4098
7.55199
7.89358
7.10903
11.6836
3.90324
11.5812
3.73018
245.87
49.5238
30.0209
78.5063
269.535
767.669
200.949
41.9428
30.6954
32.5326
11.1526
61.2529
43.0311
72.001
19.2559
70.4768
19.8474
12.498
8.6447
12.881
8.38928
11.0902
7.66043
10.8519
7.82305
18.2858
53.3515
18.036
6.24497
41.2103
4.47848
6.32476
4.42859
5.87491
37.8119
4.09849
5.7444
4.18522
8.83343
10.0044
10.1059
8.74087
18.0548
3.00285
32.401
9.67805
5.71462
6.48603
6.55949
5.64889
8.11171
5.31721
7.20327
4.94814
3.94286
4.17069
4.6707
3.40631
3.58106
2.62641
3.04704
2.38222
3.29494
3.10619
2.55512
1.20366
1.25428
2.26175
18.9264
32.9272
13.2931
8.61693
4.15293
26.9078
14.3067
11.8654
39.1838
81.3172
18.2634
60.6653
14.0788
69.7338
29.1102
42.0488
27.1087
301.093
47.3654
197.695
98.2474
18.5787
56.7034
69.254
25.944
30.4172
44.6359
20.4103
40.795
52.0286
51.8834
51.2623
28.4028
6.26072
6.89534
10.8662
30.8668
6.64755
9.37352
10.0259
9.56212
42.0413
37.5605
15.3145
16.2939
15.357
17.8933
61.2235
7.34008
16.6486
10.9468
11.5591
10.662
11.0462
16.1198
14.5571
15.0797
10.8904
51.9198
116.68
15.2643
25.2904
25.3836
24.9142
16.3534
35.5851
15.1135
44.7288
12.3013
7.50133
221.587
9.65105
23.5762
19.7508
21.4578
7.06364
10.6777
24.1458
18.6414
28.0224
26.9106
89.1958
7.29516
219.861
18.8824
185.978
79.9137
23.036
21.8243
5.7075
23.1978
22.3756
19.5006
21.0874
18.7897
21.2288
34.0035
32.9258
32.0481
25.4065
38.4731
25.1827
15.399
32.4821
15.977
13.6858
14.0409
13.3671
14.4503
12.2399
11.9777
12.1933
12.0243
13.2844
13.4709
13.3235
13.407
12.4999
12.3332
12.3007
12.5416
37.6057
44.7588
29.3127
20.2099
20.4078
59.664
79.4245
428.931
15.3169
15.9863
49.3452
14.333
42.1483
11.6638
22.9704
191.595
197.915
20.5552
19.5315
11.2035
21.9901
11.0846
20.0798
66.3861
31.8149
68.6944
40.3735
548.406
17.1874
13.6261
60.9675
11.4676
19.7913
59.1124
10.8886
17.7997
27.5508
59.0985
28.3795
57.5978
28.5403
28.7214
16.9902
24.9234
27.7955
27.009
57.8564
42.5321
35.4295
39.0733
75.255
37.9463
25.9731
370.99
33.3188
51.1724
11.1413
17.693
29.2092
60.4799
29.1482
26.8442
26.4154
10.6141
16.3299
17.9807
25.037
17.9705
25.3162
18.3435
26.1778
18.4496
26.0543
68.9812
15.7063
34.6972
43.9174
32.1784
25.852
69.7759
18.4066
89.8765
28.9568
20.2999
21.6496
29.0063
35.0232
32.5233
27.0178
17.6513
17.5041
14.8713
10.6243
16.1042
18.7988
24.9178
18.0207
26.5695
17.7336
22.939
17.8878
22.7824
10.1584
11.4485
16.6884
11.5093
16.6065
11.3696
49.6377
16.4845
11.3526
16.5022
16.2469
83.9611
64.6288
10.251
50.2677
11.9192
16.8117
11.5231
17.7944
11.1396
48.7492
16.1102
11.0863
16.1822
9.78255
39.2347
161.996
8.7488
9.92569
45.8875
10.7935
10.7653
8.58296
37.6706
50.0151
20.7321
8.15521
15.8661
18.7277
16.6617
19.6371
7.59681
15.4831
17.5051
14.5191
15.4459
7.52241
14.0489
14.4021
14.2861
14.3568
28.8701
6.85225
13.6879
13.5039
12.8293
12.8883
6.73757
12.4894
12.5745
12.6782
12.6404
15.7424
11.7652
11.8811
15.612
10.7273
9.67898
9.54192
10.9339
6.2036
12.3289
12.2289
11.5415
11.6447
10.3052
10.2036
10.8368
11.5062
107.907
9.4259
8.56346
8.60027
9.16705
9.74978
8.73061
8.60518
9.92441
13.3266
13.4985
13.3184
13.5499
13.9042
13.8442
13.8126
13.9504
12.8154
13.3695
13.4058
12.6406
8.29666
7.32751
7.40974
8.20242
9.44575
9.90833
9.36114
9.99141
6.3758
5.93019
5.64255
6.66787
9.9883
10.8025
10.5295
10.2748
10.2836
10.1899
10.463
10.7416
10.1072
9.79069
9.79439
9.81778
8.74586
8.30558
8.2309
8.85725
10.2165
8.99963
10.3119
8.64785
9.51068
9.35478
9.13879
9.70685
8.14247
6.06197
8.01668
6.33636
9.5583
8.91959
9.79023
8.55732
11.6282
11.6975
11.5629
11.7601
11.3222
11.2368
11.2462
11.3146
11.8282
11.9961
11.9873
11.8317
9.1244
9.76128
9.21358
9.67295
5.89474
4.84126
5.29496
5.47877
8.99903
9.29241
9.5063
8.75578
6.18445
6.64742
6.12371
6.71269
3.86517
3.6061
3.27525
4.2152
6.73232
7.65935
7.27855
7.12193
9.69478
9.46563
9.70861
9.21156
7.35399
7.88763
8.02582
8.3198
7.97645
8.72436
8.42689
8.30232
4.93589
4.38352
4.48525
4.8301
7.01422
7.24687
7.36389
6.89433
5.2623
5.44536
5.19874
5.54949
3.73136
3.38889
3.34348
3.77852
5.49129
5.83997
5.77371
5.5434
9.01251
10.5542
21.8336
4.28306
5.19382
7.08207
9.0458
7.68542
8.69247
5.94972
6.53516
6.01659
6.46506
2.90805
3.03401
2.37773
3.60387
5.53938
6.5239
6.05039
6.06381
4.14494
5.12868
4.75969
4.5596
2.44954
2.31923
1.90038
2.87311
4.91562
5.62476
5.33645
5.23193
7.21723
7.34998
7.23854
7.42751
4.96616
6.07093
5.17009
6.25393
4.37716
4.84509
4.63344
4.54239
3.42285
3.09975
3.09196
3.44071
4.68365
4.33267
4.45267
4.70058
7.09905
3.86324
2.051
1.94645
1.80219
2.20391
1.48823
7.91042
1.65955
8.00471
7.95156
7.35587
6.88721
7.32788
7.46121
4.06145
4.70021
4.3024
4.45202
11.1704
1.17333
69.5424
3.30764
4.30875
3.6926
3.95418
28.9445
1.19734
1.31235
2.23834
2.99215
2.2692
2.87074
2.621
2.50645
95.9465
53.1107
292.926
106.308
154.849
73.6979
306.807
85.1558
40.2477
189.836
191.806
27.129
326.744
71.2292
72.7429
69.5189
728.541
160.799
194.15
786.671
89.662
511.15
103.576
75.5182
232.456
69.564
69.4916
59.6075
70.5904
192.778
69.289
49.061
50.2451
1403.62
86.9028
84.8487
51.1689
155.673
42.1213
38.9911
40.2345
38.6892
37.2281
51.9975
88.5117
48.0505
38.6027
177.999
22.4651
179.892
185.059
66.3443
38.5564
74.517
99.1659
84.2591
67.2457
17.9028
16.2398
47.2537
40.1584
40.0817
26.9284
32.5363
28.8304
38.434
30.2807
36.1656
36.0453
34.0629
35.3024
34.4018
3.29927
0.623458
1.73122
0.58203
13.3375
2.39847
73.159
17.6595
76.4735
32.2495
1.46408
1.24671
1.15213
6.28101
14.3474
14.4641
9.28601
13.7044
9.93933
19.8542
12.5221
20.2481
12.3072
0.918411
0.0625502
8.18884
2.03218
2.36271
19.0975
6.56378
42.1779
4.59228
6.48765
4.64025
6.95384
44.9392
4.91395
7.02275
44.6311
4.87448
1.73928
1.55259
12.9608
2.69479
41.9673
0.587488
0.43036
1.34316
10.6818
11.9671
16.1151
15.0147
12.2459
33.2974
3.74287
3.50366
36.8263
4.10746
4.14193
2.10865
1.50333
0.184786
0.303893
1.07608
1.31564
0.988527
1.74625
7.55162
8.63563
8.52281
7.65288
8.55408
6.09802
7.69836
4.16699
5.1847
4.90961
4.4208
3.67855
2.79441
4.65128
3.13395
13.1609
6.50465
8.59737
11.966
16.4822
9.16746
1.99729
2.92875
2.6283
2.24233
24.0721
1.6436
1.25134
2.08039
1.5728
51.1039
8.99526
43.0171
18.1455
60.354
19.4155
10.7689
14.006
5.83672
69.5593
19.6007
11.1762
20.5316
4.66653
11.8221
68.055
10.078
5.65709
6.08665
36.8426
28.2805
27.1147
25.659
71.1666
14.2325
106.037
54.7025
11.4988
155.375
20.4919
10.5108
191.445
90.9812
25.7638
162.574
30.4298
60.0975
199.624
104.653
14.4227
17.189
8.00666
62.2342
19.253
20.6153
7.07272
8.077
7.21789
24.0518
13.8666
8.01716
9.81943
8.25181
35.8921
36.6475
24.605
8.61058
9.4335
33.203
9.76163
22.3239
11.8044
7.35627
34.6221
10.4727
36.0644
20.5124
10.6815
8.25335
14.3306
16.1526
7.71406
13.0922
8.19804
30.0476
38.6981
21.1776
19.0577
11.378
14.6625
20.6501
105.289
7.82935
25.6728
12.1089
15.3608
10.175
30.7638
10.8675
12.6313
16.3115
14.6924
24.786
101.263
13.2912
11.7271
8.06756
5.41549
64.1038
20.5357
17.437
20.556
48.2717
14.42
33.848
12.3588
37.3089
6.84376
85.9127
11.6699
34.1497
30.2848
7.21045
32.4626
13.4921
34.6476
17.5689
11.8285
17.7858
115.276
12.7667
20.93
15.2712
39.1264
93.9318
32.8115
7.54556
6.93123
9.07657
40.8526
9.40571
18.5326
19.1321
14.9238
17.986
18.7235
18.5859
19.6879
20.3378
17.4297
21.6339
44.0682
8.15775
8.69055
10.8365
10.2272
15.2389
19.0666
16.6651
17.6024
13.4322
18.8423
12.2537
26.0692
6.60408
24.728
11.0866
63.3101
6.69968
17.7249
37.9858
37.6551
17.9145
37.5766
47.4974
18.5611
20.4263
40.7112
16.9058
17.6035
7.53789
11.1667
10.7442
17.7185
15.5183
24.4786
20.3341
128.523
5.23164
12.4256
13.7725
15.5199
19.6675
16.7687
19.2763
19.7891
20.7898
126.748
14.9297
8.48508
11.418
41.6856
6.92699
2.54186
6.64555
2.74358
12.7157
10.3117
9.53855
8.88963
5.70596
2.78284
14.8178
19.8201
16.4101
13.0468
13.5698
14.0593
17.0697
15.5746
18.6509
17.1723
18.0392
16.7744
17.9054
13.9378
9.52787
17.7338
24.7817
17.7144
11.2417
24.862
27.3674
11.2018
13.4543
25.3408
19.7576
10.5709
8.58156
8.9058
10.925
10.6173
8.45574
8.66338
8.6105
8.60676
8.97887
16.4739
7.19731
13.0519
7.45591
8.54765
8.36233
8.68975
8.50122
6.9117
4.76953
40.0081
8.26213
8.05041
7.051
48.1963
99.8113
26.9836
16.5093
49.6159
379.194
39.9834
36.7577
23.3324
15.9733
46.4962
51.0578
31.8019
44.2678
35.889
191.704
105.136
500.906
148.345
88.0196
39.6383
31.2856
20.2263
24.9802
16.7294
22.9676
18.4629
57.8121
51.8147
46.1489
92.8714
39.7867
37.074
32.8962
46.1834
16.8811
13.1248
11.3318
18.9271
28.0113
29.2866
30.2788
26.5262
38.88
42.5891
40.8739
39.4215
49.8225
54.6406
151.972
11.2686
12.6632
41.328
32.5366
20.0919
30.9546
26.7703
24.5209
22.7498
16.5632
27.0845
27.8294
9.39802
29.3342
24.276
27.1572
31.415
30.141
31.3697
42.8634
36.5948
36.3567
14.4436
16.131
18.5466
27.905
21.6609
24.4099
12.7169
10.9053
36.3353
34.6215
32.9029
50.5819
29.487
131.926
35.061
11.6005
302.053
112.524
19.8398
24.627
15.5792
37.5335
28.5163
107.109
24.9341
108.015
31.1839
12.729
10.2646
12.7413
20.932
12.8005
12.6719
19.9114
12.7526
12.7287
12.776
12.7071
13.0783
13.1572
13.1714
13.0761
13.6638
13.7256
13.6628
13.7328
12.8702
12.6156
12.7653
12.7246
13.2616
13.2033
13.2868
13.1719
12.6985
12.741
12.7746
12.6738
12.4484
12.4291
12.5923
12.2739
12.9598
13.1006
13.0209
13.0553
6.96031
7.94236
5.44001
24.4151
9.43465
7.71058
4.81419
9.25966
10.2457
10.178
10.2478
10.1507
10.5628
10.6258
10.6389
10.5439
10.9346
11.0739
10.9917
11.0201
9.86458
9.75681
9.95108
9.64091
10.5849
10.647
10.6508
10.5929
10.1463
10.1415
10.2094
10.0788
9.71946
9.67194
9.8766
9.49786
10.4342
10.5911
10.5002
10.5346
8.50447
7.4636
8.8729
7.11015
8.46706
7.59044
8.15659
8.68782
7.44317
5.88729
5.00917
4.12564
6.78419
7.24195
7.29388
7.47366
7.01309
9.52039
17.1409
6.97412
8.08746
7.15516
7.25838
7.42135
7.01443
7.72686
16.276
5.96196
8.48072
3.30504
8.15013
3.16645
4.81011
8.56889
3.39265
8.61022
3.56525
10.6913
11.7076
3.95715
11.4858
3.56797
58.9827
33.1348
74.7225
41.8687
54.1106
277.928
48.684
138.141
125.039
106.383
133.274
73.3873
121.56
836.985
110.752
135.563
70.4637
110.436
111.979
161.277
799.104
110.695
49.8796
91.2367
261.759
110.22
94.3893
240.938
90.7578
110.383
95.4067
51.5286
292.35
45.1845
128.417
40.7225
64.7393
186.608
22.6181
91.5539
145.501
17.392
40.2612
194.064
27.0027
92.3305
629.434
198.554
81.8652
79.8824
701.314
59.1739
586.782
36.4398
35.94
192.895
79.3583
67.0567
45.4652
49.064
32.8121
28.3081
56.1524
61.089
20.6103
84.5383
29.0654
24.5425
123.704
61.2965
36.2833
70.7395
53.2439
116.182
15.1464
209.101
24.9568
119.905
23.1179
22.9894
115.531
22.563
22.7092
20.8592
100.318
99.6914
19.9296
97.8804
13.6711
27.0955
13.3034
74.6162
26.7022
9.60955
53.7481
16.0561
100.713
94.8442
82.8586
82.2638
8.49515
15.2737
88.9359
24.3162
93.6026
92.4472
24.6658
8.60414
22.8348
22.4236
16.8316
16.3364
8.36366
19.4473
77.0808
21.2155
60.084
16.3796
16.9597
18.632
68.8222
18.282
10.808
18.4514
17.0532
11.3039
7.79433
67.9007
11.3607
11.7618
7.50912
6.59834
9.84559
10.0097
56.8006
6.53681
7.04438
10.9304
10.7162
7.18664
9.48891
6.55375
6.70423
9.22408
10.8512
7.69916
10.848
7.73253
53.1884
5.95466
5.77751
44.9887
5.34429
5.46674
42.6213
4.55501
4.64045
45.386
5.39659
5.43656
17.2579
17.6367
41.3313
4.53543
4.48194
5.01555
35.3563
3.83961
5.3979
31.8717
3.44714
11.4615
40.528
38.5823
10.5561
8.01147
12.0582
10.3159
8.55259
9.88334
8.6242
9.80031
30.3757
8.85895
9.20066
6.09825
7.99793
6.7605
5.12493
4.34222
6.01078
6.34575
4.94116
5.52623
6.40339
5.5727
6.34918
6.00139
4.08406
7.07232
4.66557
3.21674
4.06892
3.77782
2.80246
2.16062
3.03681
3.53754
2.73287
2.95738
3.80897
3.07013
3.67845
2.56513
2.0264
2.93428
2.24698
1.46819
1.9952
1.83275
1.32878
1.06686
1.54752
1.73517
1.27766
8.22806
0.160605
0.828426
0.142816
0.736123
2.88443
2.62656
0.215568
2.49726
2.66947
2.99049
3.03843
2.12465
1.17354
1.10597
55.6829
1022.01
111.402
55.948
46.8638
23.3826
7.28951
154.176
17.8014
22.918
33.7626
94.1849
8.75814
3.59825
11.1019
13.3213
11.1407
4.05081
12.4409
4.35518
25.8392
5.8844
7.74627
20.9291
18.3874
3.94959
11.3963
19.2501
5.75404
18.8347
8.83388
17.0339
28.5028
11.5825
8.60779
13.8738
29.7043
18.8778
14.6884
22.5199
8.33027
63.8678
8.02405
11.6674
11.5479
8.29454
10.9285
14.2272
24.8865
27.0479
25.7318
41.4512
22.605
12.585
15.3825
19.5112
24.0795
13.4786
4.50811
6.00024
12.1156
11.5316
6.1813
30.8104
4.26456
6.0376
5.71205
6.80966
5.12005
14.3346
6.80326
9.3967
6.93159
33.0086
10.6987
19.8451
13.336
6.64396
54.0976
15.5085
9.39321
60.0031
34.8419
12.5354
7.05261
56.4295
24.3309
4.0345
5.69423
31.1391
7.89466
24.9969
18.878
19.7617
8.08502
6.01253
6.80289
5.34931
5.56044
9.86095
9.14731
54.1233
11.2585
27.0195
17.7979
18.4578
10.1982
12.0406
15.5929
16.5314
7.35279
17.6759
7.79458
9.2337
33.0098
8.38726
20.6004
7.30574
6.27264
18.9681
22.3157
21.1072
9.15746
61.7165
11.0476
8.98474
65.395
17.9494
14.0141
25.5262
22.2912
19.7035
30.6258
17.3255
11.5164
56.6274
8.47255
72.5678
80.6264
18.5551
150.671
57.552
43.3105
37.3017
39.1167
78.0181
15.4234
111.883
28.5627
34.6273
41.2471
302.898
253.251
18.8121
73.2534
14.4615
15.4657
33.7147
57.5904
15.2794
27.5825
95.1765
59.5118
14.4288
25.2523
15.1162
26.5035
53.7236
37.5431
124.569
31.1596
20.5303
188.162
59.7047
42.9945
56.8271
188.525
75.4677
107.448
97.1164
37.8571
11.9401
81.9011
204.892
64.4659
55.3568
17.1685
197.883
229.538
17.3371
38.156
21.1887
34.7325
7.12477
127.064
13.7298
20.5128
19.8245
9.76075
36.732
93.7545
40.5306
30.3488
20.7708
35.0117
14.0662
114.616
39.664
57.2371
72.2024
154.827
7.63954
23.3798
78.4549
8.96658
21.5318
19.7689
8.6461
76.3097
64.3908
18.3969
10.793
34.1714
32.3556
15.596
78.6581
7.44142
36.704
6.45746
25.1043
72.4892
8.40279
12.472
13.1499
41.0457
34.6898
20.4135
20.1645
22.6992
253.339
254.873
21.5311
71.1986
70.7288
27.4522
29.1316
74.1573
66.0815
29.5761
26.6961
25.3831
49.6767
283.536
10.6559
33.9898
36.2245
10.0006
11.3732
44.3364
41.7145
10.7829
26.1272
23.4017
28.463
21.3035
58.6136
25.2977
39.0076
27.6647
74.5609
10.5061
22.1172
6.82119
21.4621
22.4036
22.9728
10.8787
46.7926
10.3559
20.2268
7.7981
10.1531
17.2878
44.6722
36.2505
53.6654
36.4419
18.308
22.2358
22.3024
42.9974
5.92923
17.4078
13.4459
10.2119
7.20798
192.872
20.8866
16.1526
18.6823
22.2168
17.8343
11.384
18.4137
20.624
22.8424
14.6834
41.5929
4.56083
6.72818
21.7822
20.9844
9.22186
8.15269
11.4545
29.8808
10.2747
11.2788
98.888
14.1451
7.96513
16.9727
11.9055
33.9302
11.8423
48.7748
84.4509
59.8278
107.46
44.4009
93.7529
47.6026
99.2883
9.60864
248.289
10.1076
74.3239
8.97462
49.1099
84.887
80.6349
14.4348
12.8768
393.374
78.7322
9.54102
27.6076
9.37009
17.0119
17.4614
43.347
45.0113
46.998
111.004
45.9818
78.3293
235.996
8.84667
8.79962
14.9584
41.5589
13.5204
15.3731
38.5101
32.009
8.28545
10.0286
20.3137
34.6452
12.2972
11.6721
35.7567
37.1854
33.9261
19.8817
239.323
116.632
39.2374
37.5005
31.197
28.6017
75.0686
30.4059
14.623
7.58326
8.20332
16.0545
31.074
7.29561
29.5988
37.3495
33.733
54.7137
56.1423
134.724
24.5908
22.0846
21.909
23.4264
22.2568
42.4451
31.2219
12.322
19.6689
48.8325
27.2425
23.0394
11.2567
10.0599
10.7066
10.6231
10.3675
10.0946
9.84192
10.7473
17.9794
19.7447
18.3163
19.3596
17.3311
10.3852
11.2845
16.1783
35.1832
16.7554
15.339
16.1068
11.5075
14.3866
12.5465
14.1833
8.9307
8.26393
14.72
11.5607
10.1465
6.93115
22.1241
52.1966
36.3638
23.7085
20.9348
18.0829
18.8262
20.9021
20.1124
20.4719
20.4049
20.0773
21.6347
22.1887
21.5869
22.3369
252.965
82.5997
301.228
294.312
31.3811
30.3011
30.9262
30.9533
45.6439
47.2344
40.3022
78.7139
68.4122
68.127
39.5841
27.0077
24.4432
25.8508
25.8973
24.232
22.6232
23.3357
23.7266
107.343
69.2321
42.3917
10.0894
9.59503
41.3145
15.5305
22.0431
19.0749
19.1574
30.0936
31.5413
33.8134
46.1784
36.5743
24.3856
24.2387
25.9382
22.0233
20.7742
17.3966
20.7547
16.9579
24.3251
22.9676
23.1307
24.1987
10.7789
7.62979
7.60284
22.48
22.6294
24.4787
20.1678
29.023
28.3741
29.5304
27.507
32.3823
39.4228
33.967
34.5957
75.9416
8.96544
128.014
12.5372
16.6677
15.3582
17.0575
15.6135
7.2341
20.2686
33.3376
11.1879
27.6988
19.517
16.0194
10.7698
11.1824
10.3372
10.593
19.3313
18.1481
17.2084
18.0966
18.0604
18.0489
18.8099
18.4417
17.0576
17.8309
17.9035
18.9037
19.6381
19.0067
10.887
12.6019
23.5767
20.1603
17.8612
13.5907
22.4184
21.1971
8.33064
243.514
8.8769
18.18
24.827
28.2744
29.5105
11.1789
29.8064
30.0209
15.6646
45.2812
45.6859
31.0224
29.5842
30.239
51.4734
36.8683
39.1619
15.6495
44.4932
34.9032
61.6713
23.6344
25.3895
58.3769
11.5996
22.1663
21.5189
34.3544
238.29
17.4025
17.6902
7.45069
85.9154
26.4729
25.7936
26.3538
159.594
38.6286
19.5026
19.4435
20.1839
22.0288
20.7584
22.1386
15.2061
15.9303
17.7344
26.0992
25.9606
26.0822
15.4772
45.0902
29.6473
30.1921
29.7592
15.0988
44.3438
31.5228
30.2551
28.5274
25.398
25.5076
26.2394
16.1607
7.19825
7.68014
14.4784
10.0014
10.8362
13.7286
8.17928
18.1918
16.6373
11.6947
195.259
26.3539
13.5284
259.473
17.4241
14.3556
21.3507
9.79849
13.7929
12.1982
42.9277
23.6344
19.6547
23.571
26.0384
18.9959
23.4945
24.1977
20.7824
20.4628
42.9894
24.1041
69.3647
9.32215
40.8913
41.2431
8.69159
36.9324
204.737
7.51069
94.3258
19.9377
19.1878
20.4365
22.3984
14.0968
20.8447
42.1233
35.7243
13.449
23.8078
7.46667
8.64049
7.22497
6.45037
9.45793
41.7938
41.6315
9.38028
42.5561
20.968
21.6466
12.736
10.2541
14.2025
14.3075
21.4231
21.4156
13.1
13.1485
13.7549
14.8064
33.3941
14.7642
14.38
14.048
14.1161
35.3461
14.4436
14.0151
13.693
27.7129
6.50425
13.3916
31.8398
6.81297
13.5284
13.2765
13.0938
9.09163
13.2778
34.7725
6.96309
13.8864
13.3968
12.5745
9.17701
13.2664
27.1205
25.5289
9.76339
13.7593
13.3677
13.5907
13.0722
15.8479
15.576
13.8173
10.7498
12.9573
13.2688
13.47
12.4948
13.5608
97.5747
10.7622
12.7869
13.966
13.5412
13.3804
13.9261
13.848
15.4077
13.3189
12.9361
13.9685
12.3517
10.5249
11.7637
11.6704
11.641
11.8644
12.9088
13.6914
25.2609
13.1286
13.3657
16.9045
32.3864
22.2759
19.4928
13.5437
13.319
13.3532
13.5255
14.2543
14.1085
14.4516
13.977
10.3274
11.9121
11.6381
11.587
11.9042
24.8872
12.9339
13.1003
13.1503
12.8732
24.8873
13.4158
13.7849
13.4682
13.6994
11.5678
23.4607
11.7549
11.8033
11.5062
22.8882
10.4344
10.1037
9.49487
9.18958
10.4656
28.395
11.8723
12.1155
12.0917
11.8855
13.6363
13.5853
13.5159
13.6984
13.3387
13.2243
13.4341
13.1281
12.741
12.3986
12.6128
12.5242
9.51165
10.7927
9.83659
10.0204
10.6463
22.9933
12.6731
13.0019
12.7679
12.9058
23.0936
12.0519
12.1745
11.937
12.2938
25.6328
32.2135
37.9332
38.5857
28.6741
19.9513
19.8268
58.0008
15.1649
137.796
32.8673
66.8995
81.7636
26.0797
58.6468
22.6256
43.3615
77.4896
92.1746
26.7629
26.2039
46.3981
73.3025
69.6242
64.3715
215.114
78.9193
47.6417
160.814
97.934
26.2024
191.832
26.7204
224.541
20.6832
169.113
223.51
48.6752
30.4158
39.0085
22.7552
18.7011
33.7309
38.4867
18.1545
164.933
70.3998
350.086
24.8653
31.0415
403.105
94.0139
58.7999
17.335
357.908
283.848
17.7873
26.2002
97.4321
61.9174
129.818
61.2971
423.007
189.912
494.755
22.5987
24.0321
347.331
394.221
85.5924
88.9322
32.0951
25.1487
356.218
135.968
19.8917
70.7532
31.2687
224.453
203.038
38.1558
24.5783
123.216
271.687
281.953
49.3184
601.194
78.2186
37.1459
668.857
167.362
102.294
37.5015
256.531
704.008
245.676
111.886
23.502
559.122
62.414
118.37
241.86
48.704
609.921
200.104
26.6976
200.956
37.778
47.7184
39.8513
29.6196
14.0559
56.0404
13.218
18.2921
30.3599
71.3284
20.0018
34.0456
34.7124
15.3929
17.053
20.0599
15.0915
15.4524
48.0691
12.1668
45.536
16.4334
50.0751
21.0658
68.5238
63.848
20.3634
61.8097
30.6865
76.7826
22.7289
71.4445
163.087
21.5075
46.1527
25.399
55.096
150.945
15.8501
17.3593
49.2317
74.2421
40.7437
172.565
55.0911
29.0837
70.5696
69.7207
23.3821
30.6925
16.3899
144.769
46.5108
219.54
13.5976
23.2425
73.7599
21.1991
76.3591
177.288
14.6532
17.4403
53.3526
109.988
397.169
33.255
46.8009
93.1436
52.7927
103.963
62.7401
122.273
216.006
34.6079
26.7522
53.3257
36.2534
163.747
182.354
12.7505
66.5055
117.94
51.1593
103.8
171.309
17.6036
34.8524
94.5116
55.5378
31.6751
30.8096
19.3377
42.0949
14.6855
185.769
93.794
32.4795
38.4295
92.5143
29.963
25.8999
776.274
73.8288
140.096
59.0951
222.512
37.7078
39.6082
191.976
198.272
20.8981
149.723
33.2547
165.996
24.3794
26.9711
159.56
32.0757
185.304
31.9837
282.627
32.9558
31.6981
14.1942
66.815
20.3026
45.1286
14.0095
17.4093
56.2586
28.5023
11.4447
22.2607
66.4066
14.7697
70.1243
91.6536
37.0432
31.405
82.4583
34.3074
182.893
20.9892
14.6668
220.278
24.1632
28.3863
212.713
24.4935
82.3045
30.7882
67.1972
51.3295
87.5115
59.411
60.3679
86.7679
19.5422
23.7199
45.1616
93.1763
21.7958
20.638
31.815
65.8862
74.7149
168.027
181.933
203.797
25.4313
23.6395
34.4766
128.195
165.94
55.029
108.294
22.2809
662.168
22.4361
44.2133
46.5433
22.6222
251.244
62.1603
26.0206
49.9929
31.8078
109.808
65.6402
116.72
24.4051
200.985
80.7603
22.6241
21.1777
105.003
57.2444
28.6061
35.4819
19.6467
37.703
20.3006
16.6592
190.867
550.362
14.2173
158.813
14.0302
17.5592
19.0855
182.532
40.108
21.6331
34.3333
12.7322
23.6485
11.4282
20.3555
18.3933
30.0584
20.2507
18.9811
74.6552
258.734
16.6638
30.4357
17.7373
33.5205
64.5596
16.6173
29.8679
14.4946
29.0679
56.458
12.9415
221.455
70.1234
15.6638
35.3017
22.7378
37.6134
17.5862
74.292
28.633
16.4157
19.5766
90.9455
17.3023
22.5041
34.7503
20.8302
36.4292
35.8953
41.7874
18.208
19.4274
35.8648
65.9278
111.129
47.7856
315.759
179.124
35.2822
25.1365
36.0697
25.099
22.1694
12.5312
19.4035
161.545
14.6658
89.7062
41.1092
55.0667
47.6703
57.0428
403.64
91.0225
160.389
48.6939
40.5959
31.8796
34.0108
27.6017
38.2985
172.646
12.7105
468.82
14.5714
33.7698
21.4426
233.273
15.6009
191.255
21.1661
24.2017
13.2438
28.2754
58.3411
44.6423
35.7597
15.9732
220.447
20.641
37.5777
21.9989
113.783
66.8827
19.2494
36.2471
59.7139
34.6564
38.6071
41.6122
31.6529
48.2533
99.1958
43.238
64.2111
15.7309
486.08
16.1894
49.0456
45.7474
26.0532
37.8535
16.3295
23.9
24.5186
25.956
16.0453
166.404
17.0338
179.559
18.1312
143.044
42.2959
29.5157
28.9457
32.3022
21.5124
40.4318
54.8284
11.6743
19.7621
54.5171
55.0509
55.7508
56.872
10.9049
17.7702
55.325
55.8397
30.9619
61.5023
28.9883
70.3575
32.8308
68.5091
16.369
17.8272
77.075
306.062
33.0668
19.3826
29.528
61.695
17.1497
23.6672
20.6851
14.5832
16.4528
27.7477
18.8004
88.0085
23.9375
38.0308
46.796
75.65
55.0483
80.5892
71.0323
15.324
83.8956
16.7082
75.0318
75.7379
21.2732
30.8397
93.3873
18.6442
23.1782
14.6342
33.7479
30.6045
22.0633
28.5834
29.661
31.86
38.8328
36.9302
15.8389
12.905
17.886
53.5424
38.2973
41.397
30.1977
22.1021
27.6203
27.9029
28.9585
21.2795
26.6586
23.1066
25.3102
37.4149
46.4133
42.1119
81.7925
17.0062
14.2067
155.907
59.9577
487.872
96.431
12.9977
526.134
22.178
19.9142
26.4741
17.6516
526.677
186.789
25.2715
17.6946
193
47.2233
23.1629
52.5839
13.5601
16.3786
11.2818
481.649
16.2764
138.605
16.6596
152.836
30.2687
467.911
39.7282
11.2132
17.7482
22.2723
28.3777
29.5588
20.7105
26.0754
53.9055
26.1317
52.3362
57.9682
59.8169
10.6311
16.2932
19.1836
27.267
19.4861
27.1265
18.2566
25.982
18.3086
25.9608
49.9234
54.2023
56.0314
75.8937
17.4416
18.1444
25.771
17.2823
43.872
33.2182
71.0649
29.9515
30.1251
29.5031
9.89358
333.052
15.3992
13.7166
20.3285
24.128
22.0393
28.8891
21.263
15.2878
139.198
114.089
32.2556
26.4969
44.5953
20.3745
403.765
37.5046
29.0405
16.5763
23.352
13.2504
149.476
10.43
16.0741
17.4267
22.1199
22.3377
17.3009
17.7924
23.1003
17.999
22.8689
49.1331
46.3091
28.7288
28.5346
55.9772
53.7666
27.261
27.7237
52.6314
28.9458
28.7035
56.3365
10.1342
17.1316
21.8248
17.1491
21.7906
11.6827
58.9634
16.4907
11.4168
51.0393
16.6985
25.7633
20.932
20.911
25.5521
25.8926
20.8116
20.8527
25.7841
48.8398
26.5518
26.2813
25.7042
20.7475
20.7913
25.6876
65.5581
13.9224
10.1091
56.3593
11.2803
11.8704
10.7577
46.5924
15.9275
10.9553
15.6393
28.4957
21.113
23.0013
25.5466
22.1973
19.8033
19.896
22.08
19.3174
16.0015
16.0985
19.6419
21.4724
19.5779
19.2352
21.8206
9.85098
48.9584
11.5139
11.1222
46.2378
10.8647
10.9571
18.6767
12.8621
14.5846
16.6316
18.8847
15.5023
15.459
18.9409
20.0012
16.9193
21.6232
16.118
19.2858
15.6106
15.7601
19.0801
8.59397
20.3224
20.6775
40.4846
14.3349
11.139
10.1702
15.1085
13.6163
9.58833
9.54997
13.6728
14.2262
9.77294
9.94001
13.9814
13.7137
9.59168
9.6431
13.6718
8.14271
19.7455
37.1511
16.5549
19.6728
9.27068
37.0458
9.09573
24.4573
38.8093
9.71309
38.7734
10.0036
12.3615
9.32727
13.3644
8.51488
37.853
38.6181
9.28489
9.49645
7.4882
14.7806
15.2614
14.2866
14.7748
33.474
8.40939
8.78319
17.1621
19.2546
16.776
19.7705
18.0216
34.8969
17.7339
16.1349
18.7412
16.3603
18.4786
17.1075
34.182
7.62582
14.8614
15.5462
14.7291
16.853
17.4156
15.1042
15.3526
16.0087
15.3721
16.0149
15.0208
17.9162
36.0521
18.1442
15.8105
16.1698
15.5351
16.454
19.4549
19.7666
37.2194
38.3529
36.1941
35.9764
18.4771
18.5136
35.8457
37.0549
18.6761
19.0436
36.2466
46.5282
6.81732
13.8797
12.8729
12.8269
12.8862
16.8545
14.0912
13.6481
13.6966
13.6547
13.7496
13.4342
15.7631
17.3451
13.2687
15.3476
14.1486
14.0821
15.8637
13.4768
15.8235
6.80665
13.1575
12.9817
12.7673
12.8708
13.0465
12.6709
13.8499
13.9493
13.2197
14.8887
12.7539
13.3062
14.4047
13.1194
13.1007
13.6514
12.9957
13.7702
12.9574
13.3612
16.18
13.9468
14.0997
15.8191
18.8315
14.3505
16.5737
16.056
118.711
15.542
13.9408
15.218
13.854
13.6724
13.5991
13.7423
13.4924
15.3496
11.6392
15.4805
11.5397
11.5268
9.83792
11.2252
9.98218
6.16513
11.3238
11.3459
11.4262
11.6592
12.8266
12.296
11.9378
13.098
12.0726
12.7741
11.671
11.874
11.0155
11.1965
10.6073
12.3769
11.3522
11.8578
11.6295
11.5817
11.0275
10.5419
10.5111
10.2544
9.91338
10.0598
6.45117
9.18515
7.20578
8.68951
11.5366
10.3889
10.7195
10.4087
8.38409
9.81662
7.96494
10.1644
10.103
10.0389
28.0925
12.4718
13.2812
12.7973
13.1811
13.0186
24.7191
15.3754
24.4112
11.7513
12.2372
30.6864
11.8136
12.4798
12.0218
12.2754
10.4073
10.2427
10.5786
10.1363
10.9761
14.3715
11.9372
12.6673
9.61693
8.83794
9.34502
9.16392
10.2755
10.1393
9.94888
10.351
8.89514
8.69403
8.59532
8.97911
21.6803
11.3352
22.4079
10.9659
12.0057
9.25563
10.6402
10.0236
10.7909
10.4974
10.7263
10.6037
9.51313
9.89939
9.81711
9.58453
9.82119
9.13316
9.37045
9.67585
13.7769
13.6245
13.6911
13.7332
18.8284
30.5621
30.3013
13.7358
13.694
13.6721
13.7881
14.0233
13.8732
13.9919
13.8909
27.9516
96.0709
12.1999
13.338
12.4323
13.3425
14.8526
13.7611
14.026
14.0137
8.02198
7.23886
8.10032
7.17531
13.0296
14.7825
17.3482
12.1837
51.0629
27.6204
145.355
10.8986
10.345
10.434
10.8011
11.6188
11.3213
11.0385
11.9465
7.49791
6.50002
7.21979
6.80504
11.3073
13.2633
11.6368
12.4777
10.9388
11.23
10.7318
11.4436
27.7738
17.5621
49.1252
15.0595
12.8192
11.7451
12.4221
12.0046
9.97939
10.0629
10.2877
10.1314
9.85788
10.0253
24.4774
5.8559
6.22192
10.647
10.1562
9.75755
9.94636
23.2421
5.65003
5.62526
9.99048
9.94528
9.91844
9.96686
9.90173
10.093
10.166
9.6431
22.1875
11.0397
9.68767
9.54711
9.65076
9.79703
22.9516
11.1914
9.96935
9.65986
9.54754
8.64373
9.19786
9.01407
10.3734
8.27916
8.72867
9.89751
10.6245
9.34499
10.4646
9.66489
8.47984
9.93296
8.90765
9.69706
8.01654
8.49579
8.08247
8.46109
9.59221
8.01967
7.99799
9.60598
9.63363
10.1747
9.31533
10.367
9.21525
8.87729
9.23401
8.85073
9.99887
9.53286
9.87791
9.6561
8.05487
5.46455
5.54772
7.88369
10.1925
9.25047
10.0015
9.55462
8.41744
6.48575
6.56068
9.24411
8.08308
8.95902
8.57557
8.50539
9.39048
8.95279
8.59873
9.62842
8.14099
5.52146
5.66695
7.94108
9.30443
9.33499
9.66441
8.92055
10.0783
9.27925
9.58177
9.85497
12.0279
11.8444
11.9075
11.9676
12.6362
12.6825
12.6597
12.661
12.2616
12.1611
12.1468
12.2699
11.2348
11.2061
11.2867
11.1541
11.0211
11.0545
11.2622
10.7926
11.7718
11.9867
11.8129
11.9571
12.6475
12.6926
12.6452
12.671
11.4926
11.2707
11.465
11.281
12.2266
12.155
12.258
12.1281
10.557
10.2008
10.1162
10.6483
12.1962
12.4089
12.5216
12.0779
10.2988
9.7348
9.92209
10.1367
4.93315
4.46854
5.09595
4.32418
7.7634
8.28221
8.31735
7.72893
8.18265
8.9451
8.38918
8.7404
11.6949
12.2092
12.0446
11.8645
9.23981
8.75225
8.78725
9.20592
9.64676
9.4109
9.83928
9.20955
7.62059
7.09891
7.16781
7.54858
10.1716
10.816
10.5363
10.4687
8.21237
8.11442
7.74829
8.56071
4.08994
4.20513
4.77967
3.49477
8.00351
8.386
7.8444
8.52921
7.12951
8.04928
7.54839
7.68635
10.6744
11.048
11.0326
10.7156
9.39528
8.84259
9.28246
8.96867
8.633
8.46724
8.88183
8.16442
8.81708
8.91878
9.37526
9.05181
9.44479
9.30459
8.91859
9.84336
9.02992
9.69347
9.21473
8.8012
8.0186
8.35291
8.91333
9.12078
8.46111
8.65272
7.84456
8.14677
7.69009
7.823
6.87411
7.97777
8.27349
8.50358
8.68491
8.55599
6.59272
6.99314
8.06046
8.08413
8.86266
8.99212
8.59958
9.20297
3.58
16.9389
78.301
7.90669
7.5714
7.6718
7.81848
4.6102
4.30723
4.741
4.1818
6.13566
6.42652
6.47814
6.08239
6.55851
7.08595
6.74282
6.89316
9.28485
22.5602
7.02277
6.73931
6.79246
6.94305
7.47281
7.4021
7.67826
7.20194
5.37496
5.52504
5.67533
5.07713
6.68934
8.98939
5.77579
6.03521
5.95327
5.9091
4.07402
3.55927
3.94671
3.68472
5.93006
6.34593
6.00047
6.27519
5.81005
5.98767
5.68535
6.10351
6.55614
7.47886
6.71992
6.65897
6.82698
6.57504
6.43517
6.22782
6.21565
6.34904
9.07867
9.06292
9.88887
10.0761
10.0117
9.99041
8.78321
9.29026
8.27841
9.47677
8.31553
6.09993
7.00635
7.70995
8.84341
8.72259
8.9221
8.6312
9.5683
9.53537
9.39297
9.61842
9.88351
10.0401
9.97302
9.95387
8.73668
8.50763
8.73776
8.50355
9.558
9.57587
9.6154
9.55263
7.35256
6.98216
6.90917
7.42802
8.96624
9.50007
9.35094
9.15005
6.94873
6.92107
6.50019
7.31954
2.889
2.56866
2.32055
3.16084
5.53248
5.87827
5.98136
5.42729
5.48829
6.28022
5.78884
5.9852
8.89031
9.41813
9.24378
9.07071
6.79678
6.28954
6.38829
6.70497
6.86966
6.7105
7.13794
6.42852
5.38875
5.50077
4.97559
5.86774
8.07172
8.51957
8.41224
8.19541
6.14346
5.99919
5.73976
6.37649
2.33093
1.74391
2.22088
1.84216
5.08637
5.66823
5.2148
5.53341
4.65965
5.05751
4.61872
5.09118
7.91525
8.27234
8.26821
7.91656
6.37225
6.08662
6.50729
5.94986
5.92119
5.47743
5.90026
5.50398
6.9211
7.45433
7.3339
7.44559
7.72239
7.32661
6.03242
6.48674
7.36765
7.36972
7.61241
7.45441
6.27528
7.05949
7.40311
7.59376
6.48549
7.09542
5.35254
6.84527
6.32476
6.37735
5.38495
5.73717
6.56802
6.68877
7.43994
7.32126
6.24074
6.02009
7.19654
6.91994
3.73486
4.81061
4.43285
4.20094
5.76552
5.75188
2.51883
11.8882
3.43345
3.64387
54.803
2.35639
2.84442
2.72054
3.06823
2.50802
3.79449
2.57809
3.0123
3.44173
4.07369
3.85039
4.33587
3.53114
6.02611
6.62029
11.5241
2.06571
2.87207
2.5158
3.59417
3.50453
5.1477
5.01696
4.0758
3.89754
2.71186
2.2269
2.49242
2.44345
3.16607
2.29063
3.20406
2.24077
12.6829
2.07429
1.87147
6.03256
5.32062
6.20992
11.3292
4.26172
5.79834
8.20344
7.95377
7.2892
7.17565
7.34023
7.69217
6.86246
6.68529
13.3384
2.55617
7.28967
6.58459
6.50983
6.87325
16.0377
3.04134
3.38939
7.50238
6.59185
5.23558
5.0996
4.84683
5.4924
6.39914
7.07243
6.75167
6.75621
4.47222
4.66518
4.08353
5.01702
4.64665
2.81433
3.75091
3.18156
3.40638
3.50655
4.21648
3.84686
3.88133
6.45735
7.0391
6.78558
6.72212
3.92418
4.09216
3.55202
4.43043
4.63091
4.58625
4.95021
4.25795
42.5488
1.52108
1.41834
3.87361
3.55931
3.02189
4.31458
3.27679
3.20963
2.95113
3.54077
2.74999
3.48688
2.80346
3.39428
3.03035
3.15999
2.46365
3.34539
2.99613
2.82859
4.86267
4.17264
4.39703
4.85968
3.87083
3.75397
4.11101
3.51553
3.53685
3.66478
3.97413
3.18392
327.914
64.8459
440.888
126.639
315.35
97.883
373.28
428.105
149.029
73.186
105.214
177.636
480.174
626.407
58.6697
237.674
99.0268
546.945
236.321
1595.43
98.2389
464.824
68.6435
104.538
82.6414
80.4306
526.417
45.7127
202.992
77.8137
458.617
205.68
64.0434
30.1449
69.5634
59.3573
88.8152
247.109
63.401
22.7524
248.834
87.9651
80.6684
70.4486
534.464
51.3683
96.0608
131.558
109.864
115.1
103.85
70.4605
93.5429
45.3355
54.9259
66.6862
93.5152
111.718
107.063
445.049
93.1362
69.3891
211.881
69.3574
302.706
48.9631
69.463
72.6212
83.2059
77.5615
60.8739
79.8732
62.8625
230.289
38.7157
21.6637
67.4778
77.5916
86.985
88.5745
68.7989
31.1576
14.4389
56.8942
66.3504
68.6078
101.622
107.512
27.9674
316.126
275.756
256.669
777.597
74.0692
722.263
72.3425
18.5522
187.266
79.1171
22.8141
228.697
84.342
24.8263
216.785
106.126
92.7916
69.8615
58.3889
79.0491
69.0187
44.6307
42.3649
118.01
41.6864
273.302
25.0001
58.5565
415.095
64.1165
387.691
36.218
134.543
70.1717
44.1243
12.2499
34.2491
93.0208
395.537
127.461
33.3302
45.9826
81.0529
81.6357
37.7528
58.3294
142.539
120.949
103.533
58.9447
77.9202
78.3826
225.018
568.786
38.9765
42.3536
60.1016
33.7744
346.825
112.461
177.507
47.5867
39.8346
41.889
44.2835
48.8619
72.215
49.279
69.8872
258.779
36.4438
28.7061
143.659
30.4457
38.7451
724.611
277.592
22.476
64.11
161.438
161.013
60.855
46.868
28.11
55.1906
27.8176
55.4346
47.7999
22.3553
23.9873
46.5891
49.7974
23.3118
119.88
141.365
32.2659
46.5356
117.789
26.2333
58.2969
385.029
40.5006
30.6367
23.1361
109.513
91.6405
69.1404
312.536
105.658
901.486
404.016
99.3998
1421.23
381.788
41.507
223.76
785.849
386.639
42.0411
121.633
41.0818
99.3094
148.498
485.546
127.358
71.4894
53.7014
115.908
51.041
115.893
10.6291
5.2247
115.57
50.2836
4.894
4.65486
48.2116
25.9351
190.794
101.576
16.7309
17.276
104.281
19.272
18.31
19.2992
42.4258
18.5187
40.6454
18.353
18.2921
402.68
130.851
76.1279
24.4414
132.893
77.7582
80.6661
38.8192
383.004
69.9557
366.194
190.845
801.814
15.7834
81.1394
59.9864
78.4786
66.0765
181.339
366.817
56.9821
51.2417
39.5789
802.916
69.9494
57.8936
76.2044
10.9752
129.793
39.1073
419.388
46.4681
17.9498
18.1691
11.7432
5.45706
10.8242
95.9626
17.6059
17.4687
81.884
11.2894
7.89938
10.4917
5.92454
39.047
78.9467
85.0074
16.2585
76.0638
16.1912
59.0037
17.4125
8.83846
6.00456
87.1216
16.4125
76.5562
16.5048
44.1234
64.0358
330.663
23.0311
7.75239
8.4358
4.36837
17.4905
81.6229
17.9021
82.4782
106.39
66.4541
47.0469
40.5822
23.0431
27.3578
36.714
79.6631
301.482
17.5301
30.6953
21.5394
19.6404
34.2026
44.2406
90.162
46.4743
85.1721
16.4501
23.1732
37.2632
24.7402
32.5042
40.7671
43.0635
30.3166
79.8949
352.473
53.5628
45.0199
40.0287
29.68
52.8459
56.7087
102.007
76.4421
15.6548
15.5617
42.0525
4.2961
42.4967
15.518
15.4168
103.095
0.912585
3.45846
63.5707
13.4793
13.3651
7.0507
0.281727
13.7296
90.2281
13.8314
0.50572
2.99246
0.228316
11.4764
22.5316
11.8913
65.8963
22.9073
28.0901
103.819
20.7559
18.9318
30.5455
52.3425
56.8921
49.6857
63.0995
49.9506
84.2039
384.415
76.3852
17.6163
20.78
118.674
24.7647
40.4865
27.672
36.9196
25.9413
31.8005
33.8761
47.2792
33.9538
43.1643
51.7539
91.4389
41.8267
35.567
35.2745
23.5093
32.8821
26.6543
61.6023
54.9908
93.1761
48.1759
32.3184
38.0063
45.3147
61.6853
52.3605
50.0389
40.1776
53.8873
28.8618
34.9183
25.0704
37.4372
329.456
18.839
31.1502
27.9826
18.5031
18.8989
16.7613
313.533
67.1996
93.4169
23.9456
35.5432
31.5892
68.9548
36.5244
25.8244
57.4644
19.9056
348.444
33.0282
22.3564
29.6703
102.953
11.3345
73.4533
11.4491
48.1575
11.0927
10.8068
70.885
22.6581
17.6591
22.4125
17.4373
107.32
97.6524
58.3338
393.535
42.448
40.7177
41.4894
42.0581
14.6024
7.50339
7.45606
56.5235
8.54574
16.7348
13.9064
10.6193
1.03118
0.691285
15.708
1.72146
4.73478
1.81782
1.22862
4.53937
362.605
10.1915
7.88298
15.0136
7.64447
57.8917
7.65854
57.7626
24.5708
22.4492
27.0247
19.8098
25.4206
18.1843
21.1031
41.9315
40.9962
38.2847
43.7242
17.4058
14.6809
12.5853
19.0995
6.40013
11.9073
11.4455
6.60053
389.185
27.5011
25.4445
9.67681
75.6644
9.78342
76.4523
99.2627
19.1827
27.9823
33.5347
25.9293
31.0874
25.0015
280.479
21.678
27.2209
319.609
21.7663
34.8155
38.3927
37.8885
41.796
45.6721
45.8645
30.2898
36.7393
36.5377
73.4651
18.3648
73.7092
35.5807
30.444
33.5809
37.2339
35.1134
36.0799
40.3084
51.9024
14.2234
13.2433
27.3027
27.4141
33.2124
36.0063
8.55653
11.2383
13.0073
6.55133
49.4957
6.71454
52.4327
2.39032
6.45401
65.0984
331.874
5.72384
11.4471
14.6944
12.0244
171.183
80.0357
15.8403
11.165
9.21893
12.7631
8.8234
33.7477
37.4212
12.6854
6.26397
44.5354
6.60134
16.7859
24.9547
6.12748
13.6928
9.14824
4.24771
8.3615
11.204
5.71713
32.4951
5.70025
34.2516
29.7209
30.8007
31.2195
33.3283
29.6
4.80014
8.19492
9.29166
1.06114
3.53438
1.24156
56.9182
15.4504
5.35791
11.2921
5.74267
5.75497
32.9813
78.9988
11.9349
19.5588
20.2765
11.7403
7.65463
12.331
21.2126
21.3404
12.4121
14.422
40.6624
15.3654
26.178
7.64445
12.6516
21.3649
21.9981
12.4566
59.9637
31.4602
25.83
28.4838
21.833
40.2143
62.8476
10.6957
26.319
22.3597
16.3088
34.9157
9.76371
42.5716
8.02108
198.913
183.464
49.4188
18.4082
24.4309
10.3124
44.0986
11.7257
57.4398
240.004
22.5075
28.6163
30.707
29.0166
8.0313
4.77361
36.6951
4.85839
37.3244
5.97573
7.57319
10.16
9.24953
126.824
13.8275
15.2092
0.706707
0.712341
0.897844
0.522844
0.991723
0.67313
8.4207
15.8586
7.10826
4.46014
4.33653
33.9808
39.9952
3.50434
1.76733
5.3048
3.23168
18.9709
3.20932
7.78664
336.703
12.0756
0.362545
0.357984
3.99351
95.8805
17.9484
5.61872
3.3011
19.4162
3.3752
15.8748
5.27379
23.7121
15.1638
38.4689
14.1237
20.6908
12.7364
20.5276
12.9022
58.5787
6.44574
6.93204
5.79137
8.54811
8.43153
5.86213
51.7567
55.4433
6.33926
9.5549
6.41301
9.34794
6.01918
53.2094
8.68256
8.78555
5.95225
90.5027
3.70413
6.93256
6.90647
3.81907
7.02813
7.05617
78.7891
2.1657
138.812
1.22002
1.14435
32.5355
3.45099
8.61718
6.33248
8.89613
6.14158
7.36816
5.00473
7.15469
48.0412
5.15272
11.7439
42.8541
12.59
41.4881
4.39761
4.27377
12.7774
2.15319
5.69839
4.60257
2.16447
4.42818
4.92896
12.5911
16.5823
12.4061
16.8841
39.6345
4.36589
4.40569
37.845
4.18039
4.11678
6.47217
9.63414
10.726
7.48278
7.87349
11.5417
10.9789
7.17125
10.5509
9.84527
0.784992
7.01892
1.43421
1.3961
0.94125
8.58487
1.54467
1.63405
7.85195
8.75979
7.76572
8.86167
30.1181
10.0541
28.8394
8.18264
3.35892
4.57181
5.07233
3.80588
4.22364
7.03176
5.43572
3.9303
0.36613
0.346175
0.466933
0.628782
5.35629
5.76286
4.99395
6.09445
5.86972
3.77166
5.76888
3.7323
1.51236
2.11701
2.38823
2.00901
2.10959
2.79683
2.84815
2.83569
0.2164
0.507451
0.150103
67.0445
7.41566
14.9235
14.6762
5.42343
9.16048
2.58126
0.255288
1.04318
0.0775371
0.117945
1.97684
0.074346
0.0242917
0.0296006
0.0211287
0.0476925
0.0777589
2.24787
3.54763
2.85295
2.87177
2.98568
3.08906
2.25201
1.81481
0.600491
0.885678
1.14159
0.797532
6.81951
1.35167
2.47681
1.32971
0.886722
7.41644
7.76888
6.91384
17.0897
11.6642
32.6535
14.7654
30.9117
59.6305
19.4551
659.083
211.945
68.2355
30.8317
70.9988
8.05666
25.646
7.12823
15.5387
2.38224
3.58288
15.2802
2.27389
2.24766
0.735771
3.74745
0.652208
3.81005
0.545558
5.66444
0.57723
0.401035
0.965883
1.00754
0.414427
0.413747
1.0238
1.0774
0.430395
11.7628
5.02502
2.44
21.0045
3.14801
10.1375
10.3945
9.03796
37.4611
18.2983
18.3883
18.5239
18.5366
18.7778
18.6637
18.3519
18.4454
18.5573
18.5195
18.7734
18.6456
15.5292
15.6038
29.652
15.3906
15.7345
14.6438
14.5642
14.4719
14.7376
13.2718
10.8986
21.9583
13.1454
13.1937
13.218
13.4268
13.5789
13.4708
13.5277
10.5303
8.19782
9.47024
9.11411
9.53705
9.70949
10.2648
10.911
19.7657
11.0481
10.992
10.973
19.2358
19.3635
9.22794
6.14438
8.50352
6.36062
6.2911
9.42473
7.58419
8.54985
15.2213
7.43038
8.37289
7.46521
9.25439
7.36505
53.2454
7.46909
11.3975
3.30226
9.25408
3.03973
62.7927
109.503
40.3325
27.4835
42.1572
131.888
138.988
28.6439
72.1522
45.7443
11.7384
11.879
23.2478
17.0592
16.8437
16.4922
23.0198
16.7289
12.1051
11.9489
22.8158
34.5331
31.496
24.2003
9.41132
12.5475
11.9555
9.97651
62.4907
61.0559
52.5655
30.3406
17.3215
12.9673
17.6607
12.7637
9.91138
10.7959
11.4585
9.38046
9.21614
7.25898
8.51877
8.03224
5.9854
6.77151
6.86956
5.90006
5.17486
4.22994
5.29996
4.12881
3.67584
4.24594
4.3361
3.5901
2.97076
2.20428
3.00168
2.17984
3.40599
3.93065
2.74231
1.16358
2.63461
2.41893
1.1442
2.59199
3.82907
1.42888
1.54271
1.46203
0.510149
1.27829
1.12524
0.486972
1.22798
3.79834
14.9191
2.62598
5.61586
12.646
56.4765
26.8823
48.1206
672.253
37.6292
27.9787
117.535
727.616
14.1769
14.1721
29.0495
11.807
19.5656
12.7652
18.2133
21.1843
40.8017
23.4142
15.8467
33.4676
9.15982
16.0294
7.33805
130.96
45.905
13.4883
44.8108
21.0284
21.6624
17.5283
45.3017
56.1695
173.27
45.4915
41.7679
49.4777
90.8049
81.5357
402.421
70.3248
21.9143
24.9093
13.8243
22.491
54.3189
14.6043
24.0931
11.1201
47.5206
7.23662
54.0608
37.9689
29.731
85.3129
20.0219
20.7781
20.3986
43.5449
46.9147
45.7289
44.6392
43.9687
45.5276
41.596
42.1552
51.8587
52.8541
52.7616
46.8395
46.4522
47.4421
10.1954
12.8353
12.0046
14.6898
18.214
18.4862
18.3884
18.553
18.7479
18.5587
18.2011
18.373
18.3721
18.6879
18.7772
18.5831
17.8623
17.875
18.0059
18.3853
18.3043
18.2287
17.9983
18.3014
18.1533
17.9284
18.138
18.0714
16.2576
16.0734
16.0623
16.2567
15.3979
15.5679
15.3718
15.583
14.0823
13.9822
13.8112
14.1631
10.3847
31.3435
13.0251
12.3753
11.6852
13.0448
12.7973
12.9861
12.8531
13.3001
13.4228
13.4336
13.3068
26.2613
39.5674
39.0882
39.8718
38.1822
21.7266
15.4218
24.8904
16.3688
46.362
36.1526
374.001
62.464
22.6996
27.4672
16.1624
32.1627
15.8516
48.6765
17.2891
54.4943
17.306
54.6372
15.1456
44.7214
17.2435
17.4149
11.772
22.4167
58.8529
14.81
14.7364
58.6927
11.7716
22.249
58.6739
14.6824
14.3389
57.7938
11.212
20.0579
51.9279
12.3504
11.9794
50.5756
11.6318
20.7673
52.5793
12.5512
11.9474
51.8311
10.5144
16.8945
26.5566
55.0807
24.9064
53.4115
11.4971
18.2692
27.1593
26.7624
56.7289
10.6239
16.2485
21.0865
26.8764
21.1999
26.8955
38.7787
135.361
61.2013
10.4593
15.829
20.8503
26.0113
20.5864
26.1576
10.3931
15.9671
20.5626
15.6627
20.3449
34.5306
110.776
108.708
95.9186
34.0395
103.443
25.3142
21.4107
20.7922
15.1132
12.7268
16.3741
24.2153
18.7093
19.9144
17.7103
13.5025
17.2149
10.4038
15.7777
20.2528
15.6606
20.2934
9.41852
13.0916
15.8611
13.7486
16.2918
16.5392
20.5101
17.0736
10.6507
14.7079
14.1133
13.1059
10.1886
13.5627
21.143
18.182
17.632
77.2667
8.27304
25.971
74.7415
8.05214
26.6643
8.5451
13.3812
15.654
12.4196
15.225
8.18043
11.6075
14.1913
11.8712
14.2893
19.8351
20.8809
19.7076
19.5931
39.4783
24.9095
21.8175
18.9797
22.2518
24.2593
21.7852
19.0989
19.3443
19.2065
19.0759
18.9314
19.1184
19.0338
19.0896
19.1482
19.2924
18.9669
19.1661
28.8927
22.3077
20.4745
44.1766
12.6635
10.8157
12.4577
10.9887
8.02355
11.4129
13.7475
11.7783
13.986
7.50676
10.8879
13.3525
10.951
13.3465
19.908
17.9298
19.8925
17.7158
19.6917
17.8021
18.3427
17.6165
17.8054
17.6928
23.0276
20.5045
35.22
7.79875
12.414
11.4498
12.833
16.5336
14.1037
8.92123
10.3104
15.3428
16.4888
14.7044
16.3328
16.1295
16.2136
16.2764
11.1801
10.048
9.35633
11.7722
5.97774
49.5029
17.5472
17.2946
50.2402
5.88204
6.85994
10.6227
12.6692
10.0213
12.3911
6.68633
9.76368
11.9468
9.75663
11.924
11.3762
13.1317
9.98905
7.66285
6.624
7.65266
12.1805
8.81894
14.7292
13.4645
13.8271
14.6363
15.1914
14.8588
15.0792
14.9482
57.8132
27.1269
12.9341
14.2827
17.8437
4.75786
11.6572
14.6569
11.1244
15.3325
10.4608
8.68613
9.38722
9.84819
6.48524
9.63783
11.7006
9.4892
11.6345
5.44113
8.00346
5.50039
8.0307
13.745
13.8315
14.1142
13.3694
7.19312
7.81113
6.65336
8.19383
13.6232
13.4983
13.5235
13.5874
13.6703
13.7098
13.5949
13.7951
10.213
13.8029
10.6025
12.6862
8.72438
7.65068
7.76687
8.58029
6.65038
7.27162
6.58444
7.34399
6.02002
5.37315
5.31241
6.08772
5.40832
7.98372
5.53842
8.0469
20.1794
5.11532
5.09838
85.4549
4.82915
6.81862
5.34617
6.60478
8.47652
8.30324
7.97397
8.7721
8.26956
7.04155
7.94849
7.48438
11.2407
11.2482
11.142
11.3298
11.1953
11.1713
11.1198
11.2448
6.3923
7.14433
6.46248
7.06831
5.63069
4.86951
4.96878
5.52219
3.96932
4.45395
3.93144
4.49757
3.49417
3.01224
2.94283
3.57272
19.5221
4.95507
4.9036
6.41605
7.36094
6.95174
6.84037
5.59968
4.92942
5.14535
5.38067
3.89102
4.2984
3.97797
4.24991
3.49008
3.1701
3.1027
3.55746
8.87282
8.92414
8.83319
10.0876
8.91521
8.86732
3.80803
4.36848
3.85311
4.31851
3.25907
2.71171
2.74482
3.22027
2.267
3.41256
2.88574
2.74716
1.91664
1.58092
15.188
1.46696
14.1044
2.05682
3.11947
3.67736
3.33999
3.45101
2.7069
2.3225
2.36936
2.65599
2.14772
1.85207
1.90859
2.16271
2.1463
1.9084
1.90424
2.13791
7.76909
7.6481
7.71785
7.49325
7.53759
7.48751
2.21137
2.91363
2.38565
2.71978
1.57892
15.4068
1.49303
2.9745
10.1074
2.05811
2.61237
3.75172
142.43
1290.21
151.968
1584.53
1282.43
44.5405
94.5195
143.722
253.36
499.379
35.4401
124.268
34.6892
109.009
117.182
9.08402
14.8491
13.4374
17.8273
25.2695
18.2763
12.6944
13.1691
20.8895
27.2619
18.8805
31.5225
86.7389
9.45339
30.4057
92.8006
10.0511
11.0787
84.229
70.7532
13.5251
10.8221
13.8278
54.0871
18.2634
13.2749
18.071
13.4297
57.8924
36.0548
36.5431
15.9896
15.8089
16.4463
17.3583
16.4282
17.4536
16.4455
16.9275
16.7965
16.897
16.077
17.3061
11.0957
13.2436
13.0472
11.2565
9.47565
7.87446
9.11258
8.23681
13.3211
13.5631
14.1876
14.8204
15.8303
15.1871
13.656
14.1446
14.5285
14.1891
15.4973
14.8298
14.55
12.196
14.3675
11.5622
7.55287
7.66408
8.45599
6.68022
6.05103
4.47883
5.59073
4.90921
11.3831
13.0188
12.1109
12.4958
6.81696
7.05472
7.35901
6.50665
3.92537
4.66848
4.6176
3.96528
3.09698
2.2589
20.7983
3.06969
2.2813
21.4997
6.23708
6.56198
6.80174
5.99942
7.21489
6.55115
7.5742
6.12416
6.7265
5.77643
6.02788
6.71839
1.77153
16.3323
2.40412
2.34609
1.81701
16.0007
4.29219
16.7345
4.34282
153.859
14.689
23.963
962.624
36.2298
42.5569
68.8844
93.6786
20.5043
7.8756
8.12809
12.7642
16.6448
9.73328
11.831
16.8027
6.7424
6.85634
4.55492
7.98631
6.6738
7.09949
29.855
81.7832
28.4692
19.6729
24.5137
14.2631
24.5895
35.0999
18.712
11.4728
30.058
31.9575
27.279
15.4165
51.98
42.3121
8.11918
83.2419
20.9568
31.4121
23.9518
160.495
87.4177
198.707
13.2004
28.324
30.6895
54.9883
10.5394
8.90915
35.174
7.60958
22.9137
27.9008
8.55797
23.0986
7.47484
27.0288
8.2202
52.2811
8.54746
10.8911
27.2246
17.3842
4.3831
10.3331
25.5709
25.7261
25.1584
26.4797
8.29957
20.4544
23.7539
16.8844
15.3123
18.0377
19.745
19.7384
19.3767
10.1802
14.8909
17.6372
18.3509
34.7428
23.4312
29.296
35.1873
29.4134
7.6204
13.0065
8.90269
13.6947
7.96468
13.0666
16.9319
8.56768
12.16
16.6836
11.3713
15.7553
18.4376
35.0883
10.4639
14.1617
19.7009
13.7656
15.802
32.5397
45.9848
14.8445
19.7497
19.3184
18.1922
41.5778
34.5633
34.1131
17.706
42.5117
8.29334
16.4718
18.5981
17.1385
8.04413
18.7149
22.0898
19.2509
134.691
16.9301
17.5203
17.9144
21.4619
21.4432
18.1625
12.7013
11.4513
6.8616
10.9604
8.16595
13.1091
12.8942
13.8043
12.0908
64.9337
6.93245
10.8
9.58353
9.69246
13.2317
10.9636
14.7117
12.5247
11.9784
12.0859
12.517
14.5607
14.1451
15.4133
19.1336
10.9561
9.69313
10.5228
12.0946
11.9692
9.16551
9.36216
10.0575
9.80025
10.5669
9.82295
9.42692
9.39349
9.13649
9.0292
9.11821
9.36147
9.15029
9.35211
8.39756
37.1825
9.39143
44.5193
8.61821
8.69509
8.641
9.17773
8.61475
8.73698
8.63972
8.54464
8.66748
7.73951
6.27284
4.81125
33.2451
4.66424
142.059
46.1235
49.3722
45.987
17.5328
45.8348
28.0264
31.1283
404.899
179.021
38.8821
162.024
12.3413
48.8919
51.3623
59.8587
35.2777
112.191
29.401
22.1885
150.585
40.1839
100.078
28.8953
49.1124
58.429
42.4849
215.677
67.5129
30.2787
41.1382
87.5571
105.799
122.267
28.879
33.9683
37.2436
22.7659
23.3321
23.1826
22.8646
22.9731
23.1205
22.6487
22.7953
23.0067
23.529
23.2137
23.3343
16.2514
14.1986
14.927
32.9201
14.4571
12.9671
13.8346
16.5691
15.8414
15.4867
11.7762
11.9757
12.9428
17.5654
16.7709
16.9814
17.2701
16.1073
16.8834
18.0294
17.8698
17.5315
16.0775
15.368
16.2413
13.9917
13.8917
13.3819
11.0699
10.6781
11.8661
13.0176
11.7272
12.6901
12.9966
11.3151
12.4916
15.3379
15.02
15.0244
15.3326
17.7025
17.8079
17.9332
17.586
16.518
16.2042
16.3867
16.3506
14.6506
23.1276
13.1534
14.0864
13.7688
15.5547
15.9352
14.8745
18.3822
14.3352
14.1716
14.4754
14.0236
12.5146
11.6353
12.0962
12.0997
12.5202
9.34849
12.5156
12.1585
10.9805
12.4676
12.5682
12.5286
21.3609
12.5566
12.4887
12.5989
26.3315
13.4519
13.635
13.5481
13.5443
13.2101
12.9355
13.0609
13.093
12.2132
12.3182
12.1725
12.3574
12.1263
12.0143
11.9409
12.196
18.9609
7.9511
8.76809
9.02403
4.80184
5.52262
10.6075
7.30915
17.3554
5.11941
7.79838
17.2341
17.3489
10.4514
10.7009
10.5472
10.6098
10.1514
9.81961
9.89319
10.0745
9.64744
9.74114
9.57783
9.81055
9.47319
9.27218
9.25019
9.50129
8.41788
6.1491
8.35378
6.32829
6.3036
8.15633
7.19394
8.52719
7.32905
8.24851
7.43628
8.10049
15.1949
7.3923
8.17908
8.57657
8.40709
8.33066
7.7439
7.32477
7.51088
7.55733
65.8108
4.12183
3.81486
5.78343
6.41887
6.21819
6.1988
15.8555
7.61416
3.01058
5.44699
1.78406
8.17558
3.71864
8.03119
7.43296
4.09567
10.2025
2.58752
8.70599
1.7794
47.0484
30.6191
46.2175
160.07
44.3228
732.398
291.388
143.182
115.665
98.0883
118.629
117.081
101.562
117.547
116.612
91.7475
34.1755
116.547
312.2
143.408
38.786
845.89
80.7875
102.13
100.451
281.091
77.634
43.0439
73.1123
27.3811
163.441
64.3074
22.1638
75.5398
27.8883
155.367
27.7878
26.9534
75.3042
91.3682
30.7513
213.192
89.9631
77.2521
31.616
28.4771
183.731
74.9933
75.705
28.3167
125.909
27.9847
312.146
48.3853
119.893
69.581
34.9112
52.9993
28.3966
23.3209
53.0861
75.2191
77.1174
370.968
375.121
137.234
23.6805
123.927
23.4133
143.743
128.99
126.738
21.7877
110.766
21.9553
124.997
25.2278
22.1164
22.5877
107.048
26.553
18.367
86.2498
18.1595
88.059
19.4485
94.0289
94.0044
146.506
140.994
6.65759
17.1458
7.03579
15.9547
15.019
77.696
30.2398
150.591
106.732
12.6334
12.7585
12.8841
25.5222
110.087
25.1823
17.5753
24.8158
35.053
36.44
37.6574
37.1228
17.1586
23.1466
24.285
87.7398
10.5267
10.4101
10.2483
56.2448
19.4474
83.2832
19.3393
11.8671
21.3406
104.294
15.1113
10.6774
10.8777
11.7261
15.8219
11.4638
101.858
16.5954
9.04865
16.3905
12.1508
21.2035
7.8158
21.4627
12.4961
17.0709
20.0391
20.6613
16.4719
11.4587
18.5
6.07725
17.4188
9.45058
6.12632
9.40878
9.49254
6.31256
6.86104
56.5719
8.29345
33.2151
230.603
50.6517
9.10464
6.02737
4.17162
5.97358
5.78329
3.60649
33.9236
4.51789
4.56385
16.1507
43.6946
16.8964
11.7001
9.72099
11.3974
9.87057
3.53459
28.7315
3.49443
28.0648
3.26497
28.3105
3.30624
8.3325
9.54251
9.45014
8.38489
7.21248
6.04189
7.14235
6.10458
2.29678
17.1877
2.26458
1.73925
13.3518
1.79204
5.31594
6.1957
6.11
5.3912
4.32275
3.31819
4.22155
3.40202
2.80982
3.54877
3.50591
2.84634
19.0615
2.06576
2.0529
19.4912
15.7775
2.26347
2.13046
1.53546
0.710908
1.64996
1.75382
0.729485
1.68595
24.7873
1.79011
1.04929
0.958726
0.66228
0.245576
0.730921
0.825505
2.28385
0.252547
0.748079
2.03341
6.92852
10.9276
89.3734
357.515
20.179
155.344
31.1175
46.5701
22.0519
47.221
9.24192
29.6943
15.9279
5.17177
23.2655
5.33652
15.0013
1.43592
14.2698
0.85267
45.7035
4.25621
6.30242
2.08298
14.8249
30.0133
12.3659
39.4561
5.39225
21.9089
7.9699
13.17
6.31266
18.1357
48.6867
5.58593
18.1953
5.24836
6.78984
8.83199
4.46768
7.51121
10.2986
7.98061
24.4433
21.0723
22.549
18.404
18.4942
15.3626
15.3733
18.3371
6.9872
30.6812
25.3687
11.891
10.3464
8.65635
54.3591
20.4181
5.75776
7.35394
4.40784
16.3776
16.7828
4.35129
18.0516
10.5025
6.17165
5.9062
19.4651
8.63069
12.0712
7.51566
11.2079
4.89665
6.14824
22.7973
31.8753
18.0951
18.4229
19.3482
17.2972
21.2321
26.4669
10.5629
35.5952
12.2245
31.4888
83.5283
34.8671
25.8879
42.5508
12.8994
19.2668
27.635
20.2377
34.657
17.6311
9.41352
73.4704
204.975
14.9794
77.3354
12.7571
218.046
16.5522
215.157
45.2933
18.3131
30.3542
19.8693
45.8286
78.745
15.4925
27.5261
146.094
32.3061
24.319
40.1049
51.901
66.5077
16.0642
50.8046
255.521
201.075
16.7222
27.5891
31.5461
63.376
17.5992
28.3531
17.317
27.8676
221.427
15.5023
36.835
13.4869
87.3385
36.6921
9.6522
7.69903
15.2246
212.007
195.205
65.3745
20.679
17.5196
312.935
51.0281
47.5265
17.3816
9.06239
9.0659
8.18216
22.7865
5.5983
18.5677
6.39708
58.5916
12.4995
8.99755
20.0133
24.8695
139.88
41.3201
35.8706
43.8829
63.4767
151.273
39.672
59.8282
42.2041
19.8351
41.9566
103.254
108.068
54.6078
50.0568
23.6504
22.5816
48.9336
46.6259
44.1837
33.1791
59.5284
42.2852
43.363
29.1391
60.0966
43.9776
18.0907
29.3001
37.849
17.9266
28.8779
76.4677
50.2574
41.5336
8.8062
235.091
9.10747
17.6964
52.2103
15.6644
28.4957
53.3382
14.256
29.5132
104.396
111.118
51.3727
12.1661
20.1127
12.8036
9.86761
22.3815
24.749
28.4195
20.4043
30.6643
17.495
13.3035
41.0532
18.2123
11.3379
42.4737
17.4707
11.763
28.9421
184.521
13.0335
18.911
28.39
32.92
24.0991
7.00982
26.565
13.9885
66.1405
5.30411
10.9816
21.8471
31.953
7.79475
9.16714
23.594
7.46651
6.75661
50.0959
21.0328
7.13183
7.54159
15.2998
26.1098
19.3377
6.12527
17.6362
14.0107
27.4405
24.5177
22.5954
71.4039
44.2027
31.7091
28.5392
29.4163
27.4398
8.50434
12.4151
10.8882
4.82408
111.255
23.7659
36.1526
24.228
21.0636
19.4186
20.3599
20.1676
40.5269
47.2099
40.5142
40.4871
19.0921
38.3576
29.845
21.4236
37.9279
31.6682
48.0139
47.1506
40.9689
8.70655
23.2315
14.6387
15.9132
40.4451
40.455
72.1871
11.3862
323.144
31.2288
20.8935
19.7648
60.3805
54.9065
91.7007
40.0335
237.12
8.55138
243.793
101.721
8.01826
71.4036
66.6623
37.1521
39.4638
51.5157
50.991
49.2959
49.1341
43.4304
89.8256
51.0108
54.3708
10.8589
12.9923
7.18898
64.05
242.74
7.71079
330.804
11.4153
10.7696
56.8922
96.2164
31.3294
21.8712
32.181
17.5307
15.3642
15.5553
48.9385
5.82819
187.618
81.2802
34.9414
52.9971
13.9605
13.3735
9.31892
13.1631
11.8279
9.67337
16.7816
16.9642
18.0003
16.1644
5.89179
12.5191
12.6992
18.2544
7.89285
235.02
225.896
16.2528
16.0369
22.9855
10.3354
324.968
384.38
358.226
28.8878
26.8485
25.6591
23.415
22.1099
17.4273
15.8441
30.4675
31.8033
60.6132
94.801
30.3421
36.2861
32.6794
60.8754
9.83898
44.584
9.9618
9.00578
16.1099
8.1199
138.048
17.6866
12.9955
8.6346
37.8752
13.2538
36.762
142.597
11.6999
9.1968
8.79063
40.6502
14.497
21.3333
8.79724
8.98144
20.8266
14.0128
48.9324
21.2661
9.11255
14.4451
14.5017
9.11358
44.5753
21.1446
9.05912
41.361
9.1034
14.265
21.1966
19.7591
13.8287
43.4245
47.5723
47.553
21.3457
9.17208
14.4413
14.7745
9.28068
44.4342
21.1178
8.53454
12.8051
17.3827
20.8853
8.71431
38.3838
13.4951
16.5032
20.5015
8.43838
13.0356
17.0782
8.54064
13.1557
17.5259
158.414
10.63
9.88809
17.5378
22.0158
34.9519
18.5716
44.5407
42.0907
8.9923
13.0788
8.87539
13.2388
21.5318
42.5099
41.5882
21.3141
13.0456
16.4832
16.5817
12.9396
40.9881
40.1987
9.30138
13.7837
9.9017
148.524
13.4695
21.874
42.5131
23.4896
17.4466
33.1195
34.1939
34.2765
17.4304
15.5966
19.316
34.4098
15.3184
18.356
37.9428
15.1351
17.9863
17.8109
15.7313
158.784
15.4549
18.9824
15.4038
19.0613
18.5208
36.3126
35.892
18.7132
17.1422
20.3735
17.2586
20.2823
11.8646
7.91748
68.4083
9.09353
9.49964
10.7187
9.74961
12.6375
12.0478
10.4466
13.3916
10.5976
12.5804
13.1942
13.5483
14.4288
13.7687
11.1117
12.0153
12.7801
14.0051
14.4863
13.896
11.2331
13.7277
7.8111
32.9675
13.8629
14.4028
7.76039
11.3727
17.4139
17.1608
16.2529
14.6223
16.4351
15.4191
14.4982
15.747
15.0745
18.5044
42.1819
36.0421
20.3296
34.6138
34.6896
38.303
34.8853
16.1005
16.434
16.0284
7.27679
14.9942
15.5079
15.5173
7.29933
15.6057
15.0289
15.5405
16.4678
16.0129
16.0112
44.3409
21.7197
28.0802
206.725
29.3321
46.9284
20.9294
22.6235
24.5885
41.9316
16.8197
17.7898
17.5518
18.1905
23.0149
19.4279
34.9915
136.139
16.3836
16.4228
17.1195
22.3524
27.2846
20.5417
15.563
16.1885
15.6865
7.16459
14.6327
15.3213
15.2386
14.9726
14.4524
15.1376
16.2561
15.8267
15.7619
7.18492
16.8287
16.4553
16.3297
14.8824
14.5452
15.2299
16.81
16.0437
16.2034
15.7749
14.8852
15.515
118.396
7.60605
9.16324
19.2849
29.3283
6.89829
10.0331
30.6012
10.0669
38.3643
7.57862
13.9337
11.4583
9.52596
13.5167
13.5691
11.5135
13.8597
13.7584
12.5877
13.2428
13.9794
12.6886
13.3005
14.2744
14.3943
13.8103
11.9229
11.9893
12.6736
16.2409
16.7099
6.95466
29.3824
10.1381
15.3069
10.1088
19.3202
13.7101
11.0187
13.4224
8.96186
25.7841
25.6451
13.3498
13.773
10.8149
14.7178
14.7288
14.6916
14.7546
9.96018
5.99417
10.5425
131.337
11.0772
7.2445
11.0411
8.62272
11.071
12.1445
12.5725
12.3726
12.2119
11.1221
12.4399
12.4022
12.4877
12.2302
11.1331
14.6118
14.666
14.6662
14.6261
10.8099
16.2348
15.8278
15.414
16.4678
11.2711
11.3117
11.4829
12.2301
12.0903
12.0003
12.4549
11.6956
11.9483
11.6677
11.8817
11.7194
11.873
14.0274
13.1594
14.0043
13.3725
14.2064
14.0858
14.2607
14.0368
10.2034
11.7488
11.4388
11.3142
11.8058
10.0702
11.9558
12.1349
11.8574
12.2243
10.1876
11.8231
7.56573
8.66006
6.62574
9.41951
11.8847
41.0047
6.12472
7.03203
10.8635
14.0593
13.6338
14.1017
13.6768
14.1352
14.0431
14.2199
13.9602
9.17618
11.2097
10.3634
10.4194
11.151
9.36095
11.6418
12.0192
11.7364
11.9225
9.2016
32.6557
22.7014
22.7079
86.4683
85.6416
39.8048
29.8386
79.1962
30.1672
20.9848
20.89
82.6036
33.59
87.0138
25.9963
86.8245
38.8345
195.454
110.24
29.2281
70.3071
23.1314
181.772
62.184
21.2932
20.3463
156.975
33.1158
73.1314
21.8789
182.82
49.836
79.2863
31.273
68.3043
24.5874
501.926
531.589
200.089
65.8994
591.525
540.813
22.4726
197.963
29.3079
50.1698
302.504
232.684
77.4191
260.102
620.677
654.523
126.19
192.353
66.2218
386.399
62.3584
175.011
28.0293
87.0156
134.807
42.5932
77.2813
29.855
47.9226
26.0042
19.7741
583.714
291.317
44.0853
104.824
29.943
41.1319
480.309
539.003
71.5786
22.4966
195.678
34.0293
105.469
220.661
151.983
86.321
33.2407
15.3184
149.624
33.569
22.8944
14.0952
15.1454
45.9517
14.0544
50.8562
16.0969
49.9713
16.8924
16.3219
55.5483
22.2115
78.2838
28.6866
188.031
22.9581
69.6446
178.62
21.265
141.197
53.6168
18.6771
145.604
17.0925
72.3292
129.254
86.2357
24.1784
69.6909
38.1153
15.6716
55.6702
535.315
19.8194
38.8896
25.6068
13.0113
37.1251
175.972
14.9499
40.452
77.3519
19.398
45.1073
12.9889
24.9047
73.0094
125.689
44.4137
16.0022
68.4472
20.0107
34.5213
226.693
16.9157
26.4492
15.6928
13.1775
171.831
33.8319
28.7003
33.5329
19.1257
375.837
80.4685
38.1138
32.7393
491.329
136.389
16.2614
27.1378
225.353
28.8643
191.211
150.351
29.6042
100.394
50.6469
141.896
21.4112
147.757
224.532
24.2944
24.0181
474.667
88.114
41.2718
19.9462
176.733
174.527
37.2408
185.251
25.21
49.1817
13.6229
40.0428
12.1708
23.4428
11.9939
23.8535
11.1623
22.2362
10.3449
139.268
22.4284
11.5021
20.3499
63.6942
46.1365
17.3814
56.483
218.803
19.0567
35.4781
103.466
15.9466
218.683
58.6365
43.3075
64.467
22.2586
233.894
62.8273
257.748
21.9627
27.5712
41.5162
13.9839
27.6082
18.6553
26.3992
19.6518
85.3718
10.8546
374.265
49.3353
86.7983
90.9877
172.15
15.1652
385.059
22.8664
382.113
13.5879
21.8951
540.494
169.196
41.8856
208.199
18.5925
44.8008
12.4115
23.1311
56.1014
13.17
13.2252
58.9605
12.1465
21.6219
56.5714
13.3806
13.367
54.8153
64.1776
11.8265
19.2253
28.7377
28.3511
61.0379
25.7365
61.1415
60.4392
25.3635
11.8176
18.903
28.9635
61.2948
27.9232
24.1285
14.0545
23.3574
75.1096
32.2437
33.3322
45.4488
13.75
22.0908
21.9812
25.1839
35.5943
49.5877
25.1715
56.2056
81.0808
11.3932
18.0668
25.6941
26.2863
51.941
62.6776
14.1615
21.6051
22.1395
32.3911
32.2469
63.5603
14.3152
22.4292
22.3921
31.0401
31.8689
14.2583
14.2687
21.1954
30.0665
21.5938
13.9268
14.146
21.9746
30.8512
21.9339
11.1256
17.0363
23.4252
29.0406
22.2598
28.6084
17.0366
52.9449
10.5463
11.4856
12.3485
17.6115
12.0468
52.9519
12.706
13.2958
21.3173
27.5122
20.6597
13.7282
13.5684
19.1216
26.2785
20.0919
62.9163
22.5021
25.2883
28.5817
28.8294
22.4476
27.8933
32.8635
48.5346
36.3954
77.0644
62.9604
33.465
66.6877
12.4744
16.1869
23.1411
18.2738
24.4975
30.5203
70.3868
13.1792
33.7066
60.2394
12.8031
25.7186
29.8226
25.1367
30.5753
10.0299
16.0217
22.2903
15.2127
21.6943
21.2862
23.4404
23.4954
21.2802
22.8924
28.71
23.6119
28.1759
29.3039
28.2674
24.1658
18.8968
23.5608
30.1127
28.8034
23.7441
18.5412
23.3094
23.9644
26.387
23.4717
12.9056
18.458
18.5986
19.421
13.2029
19.0269
25.7224
22.7609
22.9125
18.2412
23.4193
18.5064
219.437
11.1304
12.0304
12.6198
12.598
22.135
16.3773
17.526
21.728
24.6172
21.985
12.582
18.2787
18.1359
17.5503
12.4174
17.8732
25.0561
22.5315
22.3311
60.2913
39.2728
19.9818
24.9231
25.523
29.0016
20.8622
26.8974
34.926
35.9984
95.3235
31.9659
33.1415
24.3263
18.8091
24.0488
34.0606
33.5835
23.444
18.7813
23.9033
9.58783
14.9513
20.126
14.2491
18.3693
18.419
23.3116
19.5603
22.3052
15.7903
46.337
45.3152
18.9378
15.2526
43.4792
19.2766
9.98663
14.692
18.1782
14.743
18.1796
9.29939
180.11
26.3578
41.7516
12.0817
54.5728
13.7812
11.3549
50.3264
16.7322
11.6304
58.4549
16.51
18.7271
12.9482
13.0672
67.6855
19.1515
14.5768
13.4758
58.0059
50.8914
12.0875
26.1374
26.2339
50.5616
11.9224
24.9183
21.3083
21.4754
24.6027
50.2538
11.8291
26.2677
26.1144
50.8131
11.9612
11.9049
14.8864
11.7321
8.07013
8.57596
8.89196
8.76445
14.5929
10.8357
11.4736
52.0092
26.5071
34.763
50.9375
97.0343
25.2752
28.5697
31.4362
12.6333
85.4568
9.07565
9.51296
302.922
7.07056
13.0915
9.83251
10.1029
101.419
8.73773
12.5866
15.2709
12.6232
15.2683
23.1865
22.2823
10.0602
42.8698
45.0245
9.88391
22.9753
19.5375
22.7036
19.7538
45.5915
52.927
8.45733
12.4821
15.2176
12.3285
15.8502
18.0426
16.7596
17.6905
17.0801
21.5417
41.3861
21.5849
43.0972
22.2375
19.2913
22.4381
19.0616
42.0024
20.2387
19.4853
20.8593
19.0558
202.587
19.7302
18.5602
18.5114
19.8233
18.949
14.5311
15.3004
17.7805
25.3756
46.5454
48.5541
26.4731
19.485
18.1201
18.2991
19.2451
20.8673
20.4924
21.117
31.3
25.6499
23.6068
21.8
27.5898
22.6095
20.4677
21.7314
21.3317
19.3594
19.2678
19.0266
17.6312
17.4286
18.1267
19.0795
18.2596
18.6825
18.8036
17.9092
18.5396
21.9701
21.7681
22.1129
22.5184
22.1758
22.3865
22.1636
22.4987
22.3735
21.6668
21.7832
22.0578
22.8957
22.3151
23.5839
47.2047
33.0566
28.2914
24.1585
29.3927
25.5358
22.6922
25.8456
24.4409
18.7957
15.0852
15.8177
18.0144
20.4975
19.185
20.1968
22.1751
20.5693
20.9118
21.4538
22.4355
21.1915
18.8544
19.5127
19.888
14.0981
12.1483
13.7284
16.2153
13.8739
14.5782
15.4974
16.7513
15.1662
11.4026
12.2704
13.07
15.7417
14.0515
16.4408
13.6011
18.1234
17.3588
18.4988
21.342
20.1253
20.0476
19.1438
20.8892
19.5611
17.9649
19.0315
19.0212
7.51897
11.3104
13.6325
10.9384
13.4517
16.8116
16.2606
17.1499
15.9399
19.5379
35.885
35.7126
22.5278
15.4901
15.2577
16.2689
14.59
16.0175
18.2435
18.2776
15.9448
7.80326
11.3262
13.8397
11.3574
13.851
15.9027
12.3869
14.9418
12.9908
15.5426
15.628
16.073
15.0939
16.8739
16.6159
18.2134
15.7497
16.6969
16.8615
17.2657
16.3853
15.1465
12.8428
15.9858
11.7401
17.8166
18.3921
18.0877
18.8174
18.7409
18.7874
18.2275
18.8317
18.7408
18.4592
17.7465
17.9742
12.5072
34.1093
8.31735
35.2102
35.0832
8.50321
12.23
7.79412
43.8326
33.5831
17.8176
18.1382
33.522
17.4074
18.6197
18.5387
19.1396
18.3294
18.5844
17.5031
18.9511
18.5115
18.9768
18.4645
18.686
9.47274
38.9503
19.3798
19.9994
37.4196
9.89521
6.86528
8.24541
11.99
11.914
10.7796
7.68395
166.047
10.7296
9.3653
8.63229
11.0956
9.78324
18.9264
18.6339
18.7106
18.8703
6.86922
10.9311
9.14431
9.8113
7.43973
149.226
10.8198
9.06597
6.07575
7.89987
8.02247
10.4111
8.47635
10.4036
14.8416
13.7084
13.1499
12.2441
14.0082
12.2176
9.55167
12.1496
11.4834
8.90968
7.43433
7.09769
9.30906
68.3712
8.87072
58.1564
6.10653
6.88892
7.85698
9.49332
7.39942
62.9881
16.9615
17.2763
17.5192
16.7338
8.04642
50.1574
50.3661
51.0116
6.24617
8.1367
6.16987
25.3179
78.6739
7.52453
63.836
6.68284
27.4661
6.66636
10.2312
12.1498
9.71626
11.8739
13.8063
11.7897
14.1628
11.4982
14.2478
14.033
14.411
13.8992
11.7441
8.3063
11.1589
9.19646
13.2855
13.5434
13.4212
13.445
6.94068
10.0996
12.2905
10.147
12.3532
11.0268
7.54784
10.703
7.73714
12.9599
13.3988
13.7442
12.6929
30.0441
30.3518
10.7026
7.70788
36.9526
10.7667
7.60491
31.9325
13.3207
15.7014
13.9569
14.5875
32.1438
31.6847
32.5253
34.1298
17.1748
14.4444
14.8696
16.6441
35.7151
12.8287
14.4707
13.0853
14.4616
13.6961
13.5069
13.3762
13.8565
15.6767
15.6315
14.9367
13.278
13.4144
15.3412
13.6554
13.3667
13.7684
13.2095
12.4426
12.5881
12.5081
12.383
14.1565
16.1912
13.9548
16.9496
15.1261
15.3586
28.3138
15.4217
15.0267
15.3811
15.0536
15.0891
14.5842
14.9013
14.7732
16.1857
15.9016
16.1096
15.9292
15.761
16.3903
16.2479
15.851
12.8176
10.9989
10.7723
13.6983
16.4166
16.078
47.2593
14.405
14.7495
14.9402
14.1913
12.6038
12.9492
13.1197
12.4379
12.248
10.3589
10.5434
12.0552
16.1842
15.9597
45.4987
13.9026
14.4308
14.4157
13.9135
5.80138
6.29723
9.54187
8.53709
10.1743
10.5734
7.37829
10.4575
7.43256
29.4832
13.0233
13.4329
14.0986
12.5054
6.55307
26.6514
6.43926
9.55217
11.8233
11.4703
9.83347
27.1775
5.95559
8.35045
5.44902
8.0989
11.9473
5.9645
24.1109
8.45501
8.54852
5.94298
24.3582
12.1069
6.0794
24.848
6.25738
8.37333
9.79352
10.0098
8.20187
24.1876
13.0111
12.4128
12.7007
12.7247
14.3362
13.5456
14.3628
13.2992
10.9527
10.5324
10.8491
10.6391
12.0317
12.4435
12.0113
12.5742
11.4982
11.0179
11.2908
11.2352
10.4707
10.0064
10.196
10.3264
10.8874
10.0608
10.2551
10.5774
9.71182
9.90084
10.1787
9.48307
10.3943
10.1959
10.4321
10.146
10.6538
10.7253
11.0007
10.3924
14.0511
13.5439
14.0886
13.3903
14.3741
14.9538
14.561
14.5027
13.9644
13.821
13.7467
14.0114
14.4227
16.0043
14.4883
14.7529
10.5884
10.777
11.1877
10.2007
11.8413
12.6315
12.4527
12.054
7.69902
6.99973
6.90293
7.80949
8.29523
8.93681
8.13825
9.11497
9.72649
9.77768
10.4241
8.99521
12.6733
12.0998
12.4975
12.237
13.722
17.1978
14.3459
15.4373
7.04389
6.17181
6.28726
6.92397
7.91366
8.78084
8.00136
8.68244
7.12772
8.94334
8.14873
8.07722
21.5732
5.38583
22.3423
5.44102
23.3161
11.8362
23.5821
5.894
8.08824
8.48835
22.5347
5.6241
11.8951
11.4904
9.90665
22.918
5.65006
5.6208
9.87696
11.4937
21.2271
5.34519
21.412
5.43959
10.6679
8.95036
10.7075
8.76288
9.22124
11.2356
9.561
21.5839
4.85946
9.98528
13.3888
10.552
9.95214
10.1542
10.3871
10.9825
9.91402
10.271
10.7009
15.0112
19.3088
8.20299
9.46857
10.5374
7.49027
9.6037
8.06705
8.00168
9.7103
10.3
10.7168
10.6012
10.3123
8.52399
9.14167
7.76526
9.6349
7.3582
5.34695
5.02103
7.78658
7.49158
15.3629
13.8112
9.68441
6.6457
7.5009
7.5695
6.80863
8.96063
6.43036
7.03675
8.69437
9.95015
10.2818
10.221
10.0268
12.2928
12.1851
12.2323
12.2444
12.4036
12.5043
12.4349
12.4749
10.7502
10.8404
10.6785
10.9287
10.5972
10.4331
10.3458
10.6767
12.1652
12.2989
12.1575
12.3043
11.9443
11.6432
11.7639
11.8349
12.208
11.9276
12.3129
11.8263
12.4952
12.7148
12.8435
12.3673
4.72162
4.17764
4.12968
4.77237
5.23048
5.82515
5.20821
5.85078
11.3561
11.7825
11.7079
11.4305
10.8454
10.4071
10.805
10.4477
9.19878
8.75806
9.11983
8.8318
9.71223
10.1694
10.0798
9.80383
4.85991
4.04521
4.27061
4.63064
5.58406
5.97243
5.36706
6.17285
11.207
11.4124
11.5428
11.0674
10.8832
10.4423
10.8321
10.5065
4.00223
8.94721
8.52209
9.734
8.17097
8.33535
8.01682
8.93794
7.98735
7.2221
7.29722
7.66778
7.49396
6.97549
7.05144
6.33277
6.6307
7.04792
6.87453
7.8985
7.71881
6.80001
6.95952
7.52672
7.21038
7.01544
8.7693
7.27185
8.53652
19.4772
4.64977
4.50687
4.23735
3.86303
3.80301
4.29997
4.58035
4.93899
4.52187
4.99313
8.15452
72.0039
3.32766
4.32535
4.90878
6.98042
13.3676
6.07094
6.11126
13.8234
6.99126
3.83936
3.51775
3.41721
3.93409
4.35626
4.84805
4.43075
4.77081
6.80109
7.71724
20.1621
3.88815
3.69765
15.5796
9.56891
10.2923
6.64804
4.59416
5.90904
20.2322
8.49564
8.79141
8.62339
8.69702
8.32024
8.2109
8.08032
8.44621
9.33682
9.61495
9.44383
9.51416
9.03632
8.73606
8.80761
8.96336
8.9127
8.6374
8.99377
8.55985
9.22546
9.5234
9.60036
9.14946
2.87391
2.299
2.31508
2.85274
3.57477
3.93066
3.45263
4.04975
8.67737
9.03198
9.0192
8.68364
8.30668
7.86312
8.23086
7.9422
6.9912
6.94357
7.29542
6.59788
7.46153
7.96373
7.82668
7.60486
2.61896
2.07152
2.10029
2.58416
3.14841
3.72458
3.25064
3.61373
8.24211
8.51077
8.58351
8.16914
7.93498
7.68574
8.06144
7.55777
7.32196
6.68228
5.70909
6.15591
6.41044
6.38116
7.11521
6.80811
6.03105
6.28879
6.66017
6.48711
5.75178
6.00231
5.58774
5.98433
6.1639
6.17371
6.76807
6.77194
6.08759
6.24741
6.73154
6.47601
7.9633
6.79123
5.41733
5.3453
5.83975
5.27118
3.33225
3.11853
2.99565
3.45371
3.37805
3.49845
3.1855
3.68753
5.76743
5.54646
6.35083
5.11831
5.27488
4.97151
4.63341
4.39566
5.38285
5.38319
4.60376
5.12905
3.111
2.67869
2.81178
2.98479
3.04762
3.35177
3.03391
3.37202
5.85342
5.51647
5.54491
5.02914
5.23092
5.04478
8.45087
8.07745
7.93967
7.94452
7.95669
8.26793
5.81089
5.44505
10.9018
5.97463
6.1346
5.40381
14.5965
3.05673
62.5696
3.47291
3.77106
4.6234
4.93042
17.8418
3.38055
14.4619
6.7493
6.63636
6.9952
6.38017
6.9072
7.06986
7.25711
6.72088
3.65549
13.3148
66.0007
1.16487
2.06698
1.58269
5.78886
6.2336
6.10145
5.91459
5.38602
5.40818
5.71985
5.02242
1.91856
112.742
1.80915
45.875
2.13778
2.05592
2.78754
2.72583
3.88291
18.6772
1.67673
1.51583
13.5851
5.40033
5.3026
5.4907
5.28529
5.24595
5.14746
5.47576
4.9111
235.527
219.799
85.6476
353.036
249.693
43.7474
53.4913
564.077
190.891
163.924
283.23
143.41
61.1437
71.8605
248.873
58.3657
60.9931
45.4332
62.6542
75.273
358.366
315.462
79.2409
183.799
29.5827
81.5493
39.8285
58.3805
247.949
76.6819
348.155
64.6586
228.614
261.542
295.39
41.3563
89.5784
93.6281
122.452
100.547
124.42
100.911
95.49
27.4619
406.864
57.4787
124.25
97.3673
74.4834
88.3347
73.5213
100.68
72.3404
85.7547
102.636
44.0017
61.5329
50.4667
41.7857
76.5591
185.893
290.237
60.0516
77.8094
59.347
75.0028
57.8317
63.5894
77.1675
35.2814
38.0834
20.9347
37.6543
239.068
35.1684
27.0969
39.0591
68.9674
82.5361
69.6628
82.6891
94.8362
83.3597
70.7492
85.085
57.511
36.6112
107.307
40.9282
16.8094
53.616
91.4195
84.3696
36.5698
240.65
101.678
103.785
82.4699
35.3363
282.006
131.895
26.874
27.6421
89.2394
271.15
140.006
89.8041
33.4947
20.2198
35.5344
86.2982
92.2581
73.9969
25.0324
17.1833
231.933
47.0812
179.097
100.858
495.781
185.525
78.8756
166.996
48.5588
85.5273
195.046
85.0117
74.3612
75.3518
58.3093
76.2747
58.8715
155.265
72.3253
52.4917
26.1011
43.803
20.9994
56.4353
69.1618
27.8874
168.328
78.121
53.2828
76.6791
52.8833
77.0766
166.751
165.315
52.233
20.1714
39.6321
50.4865
50.5407
140.33
49.786
140.659
50.6709
13.8105
20.2808
50.3351
73.3223
74.0241
160.265
190.054
21.992
37.6796
173.079
157.254
27.1247
140.163
27.8071
152.116
27.012
71.2878
173.736
70.4182
27.2585
30.2618
26.4243
49.4736
22.5373
50.6491
25.1508
30.7622
18.1441
36.9025
54.2212
37.7623
75.2332
31.8571
85.3126
151.096
416.348
59.3667
125.405
67.1661
44.396
27.706
34.9883
71.6361
19.3932
27.387
22.8591
37.0994
25.8444
90.7442
316.117
310.337
110.282
19.5517
447.46
31.4221
44.8449
102.533
35.6197
65.7204
56.9187
97.3843
125.751
44.0168
127.541
19.6014
38.6106
113.494
37.8207
118.436
507.179
57.754
102.069
73.7926
51.8723
41.1439
79.567
28.3353
1212.74
42.0695
326.036
53.6221
161.033
42.8349
47.8978
66.3971
94.5153
56.281
137.165
107.395
71.8502
72.0226
109.813
74.8266
73.8684
114.916
47.531
115.712
24.5255
23.6242
62.1023
12.8956
115.403
120.453
110.084
21.0858
20.8446
122.229
19.9523
17.6367
48.0842
16.1002
53.2845
19.2815
43.5998
78.9234
51.4886
33.2764
97.964
30.1267
18.4097
305.733
119.2
63.4839
68.5878
100.051
146.12
25.3009
127.464
430.617
33.9485
485.131
109.186
23.9097
378.497
25.8032
486.885
88.8328
146.804
82.4447
7.98654
28.8274
11.2603
27.4217
25.818
41.4119
55.1977
72.1381
41.8982
51.7469
130.098
15.3173
39.6479
18.3839
42.5016
34.3272
101.819
72.0315
71.6152
30.6664
98.1281
69.9516
83.0308
17.5587
17.4781
75.3817
75.6157
82.4674
170.095
71.4125
74.2489
15.9782
73.7562
15.9084
69.1403
60.8559
1.43374
3.05215
1.55435
11.8983
3.42423
5.57576
9.04582
2.99935
2.07769
1.7606
90.1795
16.9693
80.4576
17.0231
80.6805
74.8582
74.5688
189.85
27.9139
7.78811
18.696
7.64074
19.2019
17.08
82.976
17.2266
17.7351
18.6133
86.57
11.3974
39.1768
23.0574
130.611
21.43
27.9237
384.663
44.2832
55.8103
55.253
110.687
99.4915
76.6433
78.252
36.1724
45.2285
60.4591
41.9133
66.3242
57.0626
73.7406
85.1641
94.8336
15.4762
15.4109
74.694
120.351
102.3
43.1419
87.9193
13.2119
11.4724
1.30147
639.506
7.33267
1.02392
79.032
82.5881
65.7205
124.898
72.0643
100.412
15.0869
14.9896
98.599
99.5799
8.93691
24.0714
80.3327
2.38692
14.9221
3.96526
40.8754
56.412
40.8756
26.6795
58.6314
54.6659
81.1722
82.9015
12.6397
81.8747
12.5032
94.2158
14.2461
94.9517
14.3235
96.0709
10.3522
6.72328
3.00815
136.781
89.9233
10.7959
10.8526
10.7765
59.7221
21.2662
92.3873
105.109
12.4342
12.3626
12.3028
68.433
23.8532
102.565
78.987
77.1504
11.8746
78.0604
11.9667
17.1805
65.5383
8.96092
63.8547
8.60026
62.4159
14.2255
55.6697
7.31853
55.4129
7.28891
15.5961
59.3124
7.8803
59.6981
7.92153
12.7485
17.7857
18.5829
31.56
93.0008
29.7752
13.2549
426.876
20.0956
19.2775
25.5062
62.9171
27.6403
16.7544
70.9655
9.46244
17.2236
18.9757
78.0762
10.1599
18.5259
52.6319
13.6092
55.0024
7.02425
54.9359
7.01992
11.6456
35.1259
5.9818
34.7593
5.9215
34.5849
37.1564
37.2332
4.06667
3.66323
33.0215
45.2622
11.2761
5.72958
31.865
5.75371
36.5361
37.879
11.3902
5.80171
33.8546
5.80674
37.0979
37.1389
96.2717
98.0441
10.4391
14.3508
97.3921
10.3648
10.3348
14.3746
10.418
11.7404
20.0785
7.70692
20.2318
11.9761
12.0634
20.6765
7.62591
20.6349
12.0041
9.26614
10.8593
45.5409
46.0104
39.1223
10.7269
5.59362
5.64307
40.8659
6.58465
32.1111
4.05615
31.7829
4.01213
17.47
5.06275
3.11351
3.09827
17.7226
5.94199
24.5836
3.49898
3.57612
29.3478
27.2311
14.9831
18.7982
15.6561
17.9441
4.93039
7.44809
7.60417
5.16816
6.01139
9.04077
8.92139
5.79956
3.57829
6.7395
6.69206
30.876
32.7504
3.99568
7.18619
7.25134
31.9192
2.62694
15.0409
1.35978
15.2144
1.37174
23.1889
2.83227
3.96641
10.2672
10.7301
4.08592
7.27092
60.141
72.9096
21.2179
19.4367
7.01093
30.4539
3.72337
30.7492
3.76955
32.4444
4.22886
4.13862
19.5641
16.946
16.8205
18.6491
17.98
18.559
18.6666
17.4328
17.0814
18.6654
17.5888
18.5665
18.2965
16.2614
17.1388
17.9432
18.7621
17.4578
18.5488
18.1096
17.6565
16.0308
18.6012
16.9115
19.1366
19.527
1.75202
12.9862
3.79648
3.74329
5.69256
6.82336
20.5214
22.54
144.055
27.4048
2.4905
5.37203
5.36639
27.1595
12.9688
17.2302
17.3223
12.881
11.0238
9.56179
11.1538
9.47019
2.57614
19.8269
2.59959
3.13867
27.1013
3.08716
10.8972
10.6969
10.254
5.2019
6.652
7.61099
9.30689
5.87242
8.50129
10.3536
8.90279
9.5595
3.99511
5.91065
4.45501
2.58357
4.66232
3.68413
11.8866
2.97266
2.35048
3.25693
7.75729
11.5686
5.45889
3.47545
4.23991
3.24974
1.69629
2.25919
2.34341
2.63613
1.77856
2.44612
4.0855
3.02163
3.12447
7.60464
9.45979
7.8238
5.95524
5.69939
120.688
5.26095
5.47285
9.5456
8.37215
8.09672
3.04219
3.01137
2.27609
2.53462
14.9423
2.70144
0.875253
6.81047
1.21824
1.5045
0.820538
1.01238
1.2338
2.30717
1.10853
1.62162
2.56427
2.98285
2.44821
1.49934
1.79398
3.97741
3.71262
2.79729
1.381
2.12183
1.96915
10.297
7.47033
1.00683
9.37379
1.71488
1.79233
3.1562
1.43477
2.04976
3.57318
2.85905
2.68797
25.9664
3.68124
4.10528
8.30891
9.17268
9.35733
8.12446
7.4014
5.99969
7.09732
6.3176
8.56991
9.05516
9.20113
8.42655
2.68802
1.98781
0.843975
1.31095
94.7484
2.45356
1.27948
1.82421
1.39151
0.913066
0.956666
1.3356
7.6202
8.3715
8.17265
7.73572
0.895898
0.566586
1.30179
0.574415
0.311675
0.303257
0.439015
0.969193
0.556581
1.52716
1.32717
0.604227
0.587394
0.733702
1.48667
0.787104
0.957487
8.06138
0.943005
0.139706
0.299048
0.316038
1.06762
1.17922
7.66972
0.811959
0.856139
4.78527
5.42215
5.53265
4.68081
4.09328
3.24869
4.13705
3.21159
4.7899
4.76605
4.90079
4.861
0.575929
0.296058
0.334566
0.522688
0.269535
1.83666
0.0937792
0.110966
0.0848844
0.106057
2.2588
43.7448
0.266856
3.86483
3.75456
3.23091
4.30396
0.116894
0.0700092
0.245491
0.170196
0.0709368
0.111307
0.260136
0.731196
0.126786
0.0535533
0.0557736
0.172798
0.0747996
0.0732026
45.9023
3.87332
0.822042
0.973122
6.64772
0.509311
0.16778
0.0346644
0.0654104
0.037053
0.0682175
0.150227
0.710359
0.346554
0.383677
2.94434
3.43535
3.65076
2.75165
21.9738
2.37571
2.18701
20.3111
12.4753
16.0099
14.2492
22.464
5.86707
6.72985
10.4959
35.2453
6.89141
23.0072
6.51727
20.0473
20.3949
10.7025
0.685994
1.29565
3.62005
10.5574
0.544922
1.3041
3.74991
3.75923
0.924438
0.0929481
0.525433
7.91113
0.936352
0.0989978
0.475119
6.4203
17.3943
4.82507
10.0115
2.35696
26.9103
2.34096
4.73598
1.20625
1.1282
4.58908
0.362278
3.80984
0.396193
4.56264
1.61987
5.59253
1.82405
6.32732
5.59664
0.398639
6.82611
0.20932
4.93052
0.67391
0.657039
0.197268
0.430362
6.73715
4.71153
4.78705
2.38744
6.24977
0.623502
9.16539
0.7027
2.11213
6.03114
0.667026
0.358135
0.394642
5.03878
0.39821
0.405534
10.2611
0.880736
2.61438
3.73009
3.6509
4.42158
3.3923
3.68115
2.75141
2.40039
2.1603
1.52308
40.9113
1.79727
2.14804
64.2636
11.1709
48.6453
12.4971
46.0698
10.1356
76.0869
60.9931
100.627
21.7486
11.9257
64.2381
21.8327
37.0663
141.296
60.8017
34.7385
20.7477
103.383
53.0435
49.5688
119.201
43.192
113.267
69.4873
14.3603
146.705
30.5985
136.551
12.4312
30.6137
8.83989
31.6517
7.76633
31.6637
6.98179
7.29426
10.4013
14.8183
117.716
9.22803
15.8469
29.8323
5.99212
101.143
10.9143
7.27289
11.4109
10.2712
14.2533
13.1352
7.46847
37.8833
8.10839
14.1734
8.55268
13.6438
33.673
16.6582
44.5155
17.3026
35.499
7.68733
13.8168
15.7285
11.7565
14.4215
36.2627
7.69077
11.957
18.2328
6.99477
28.3848
7.661
29.3723
9.66171
13.0331
14.0506
8.81328
19.4378
11.831
12.5505
17.6407
17.5871
12.683
10.9301
8.18282
15.5496
8.00264
11.9082
134.028
8.13618
10.6109
18.3561
20.2202
38.2855
8.04191
8.4282
44.8142
62.4146
9.16652
51.8678
9.30799
8.99335
7.31225
10.5922
76.6479
8.44019
11.7862
8.30712
226.445
65.7845
250.38
7.68101
11.6373
8.07814
7.13269
6.08585
3.76164
8.17392
5.68841
3.52967
8.69643
6.78054
4.06335
5.46079
8.15606
181.73
7.14274
4.95759
3.43316
8.79334
47.5195
13.2484
29.64
11.7063
10.0743
11.4216
10.5809
44.1242
20.4213
133.032
14.1671
12.5604
25.548
63.3135
23.8947
11.9239
11.5391
26.3032
62.1599
23.9708
10.6
18.0743
20.4081
50.0628
41.9426
33.2992
11.0578
25.5789
22.3348
24.6633
31.4261
28.4198
33.1092
41.084
35.7206
31.7556
36.9575
34.2863
48.1785
43.2832
38.1346
49.6797
68.241
127.642
37.5974
40.0368
45.7134
51.1383
87.8299
19.8608
18.3543
21.048
29.1652
29.3003
29.2038
26.2576
27.1032
26.651
23.1601
25.2995
25.0176
14.8722
18.5207
17.2482
16.2633
101.256
284.095
22.928
21.4417
22.3538
22.1657
20.2687
20.2383
19.0728
21.3255
18.9302
19.8956
17.8425
20.7825
15.3147
15.2749
9.57336
9.03625
235.588
14.3839
11.4538
13.8256
10.3211
19.0742
18.6321
20.3184
21.1667
19.5035
19.8778
19.2319
21.0829
37.1826
18.4437
16.5289
18.0681
16.8457
18.9868
18.6688
15.6978
15.9862
17.7653
16.3576
18.8704
15.0069
18.3853
19.5793
15.1592
14.4442
18.108
17.8515
17.9939
33.4323
17.9323
17.8242
17.9724
18.1713
18.0142
18.0741
17.7255
17.7078
17.8769
18.3362
18.0448
18.2915
18.5653
18.3275
18.4074
18.4779
18.5927
18.4455
17.9688
18.12
18.2317
15.3038
15.0884
15.1413
15.2472
16.5573
17.1124
16.7249
16.9162
16.3323
16.5729
16.283
16.6372
14.131
25.69
11.9073
115.495
13.5039
13.361
14.9729
15.1402
15.0798
15.0275
14.6882
14.6315
14.602
14.7182
13.0917
11.0017
22.0462
13.098
13.1659
13.0243
13.0724
13.0627
13.1572
12.9765
13.6497
13.6628
13.6247
13.6835
13.5854
13.5165
13.5349
13.5803
13.3157
13.1427
13.2382
13.2163
13.4333
13.4582
13.4944
13.3958
9.55804
8.02385
9.36178
8.46404
9.95368
7.79935
9.32872
10.1257
19.4038
10.4547
10.566
9.83719
11.0342
11.0869
11.0114
11.1103
10.9524
10.8597
10.8779
10.9374
10.7141
10.6461
10.6851
10.6878
10.7606
10.7966
10.8164
10.7384
8.93379
6.62078
8.37936
6.5193
6.96587
8.2731
8.16456
60.5609
13.6719
8.24427
7.71641
8.90201
18.8573
8.55527
10.9744
8.49804
17.483
8.19096
9.36366
7.93716
7.78303
8.01201
10.2201
7.80138
8.9079
7.75221
7.14148
11.5152
3.43868
11.5589
3.67176
169.95
234.736
73.9048
55.3057
97.4373
47.9456
43.7764
71.2374
213.756
203.283
32.7024
52.9568
197.439
61.3596
86.9859
68.0982
85.9943
41.0149
202.479
53.3605
15.8744
172.957
19.5008
257.807
22.745
21.2878
83.7381
89.8296
60.6467
27.1268
46.971
56.1781
722.001
271.004
92.2371
137.706
141.239
28.853
30.6143
662.499
17.3573
253.024
126.764
50.1948
156.265
23.9318
141.805
21.9042
146.887
153.115
135.9
151.15
70.2989
30.4327
44.2559
21.2583
15.4696
571.255
37.9592
17.8664
34.1688
19.4237
164.897
137.175
173.466
161.306
16.9426
512.495
8.26059
19.5852
187.965
36.1731
21.5361
170.422
41.8787
18.7406
29.8582
18.4031
131.382
77.5071
18.8934
158.924
34.5602
152.079
37.1483
40.8598
25.6402
15.153
129.195
24.8353
45.1393
43.468
20.7549
14.0307
118.647
23.0417
26.7187
16.4645
43.2662
47.3322
158.101
16.4753
25.8162
163.066
16.2137
15.688
37.8596
22.3948
35.3207
100.174
125.17
21.14
32.0266
33.3159
18.9774
106.83
12.3018
12.7484
19.4637
13.1136
12.9941
115.61
108.027
12.6375
118.636
13.9803
96.9569
453.732
87.9404
59.1203
11.5549
11.419
20.8593
15.2843
15.6617
16.1813
21.3234
15.9411
10.9849
11.238
23.0726
16.8292
23.2811
16.7326
91.3422
22.2932
15.9814
84.951
86.7083
22.017
16.1949
88.2726
20.128
26.7225
27.6882
19.7741
10.8498
102.189
22.3538
81.5054
25.8161
11.8799
9.33808
74.8325
22.1074
77.4743
21.0851
9.10386
8.22355
10.3058
61.5965
64.3274
10.8248
7.77557
18.6618
19.156
12.1492
7.99546
11.7837
8.1838
14.5301
19.8448
20.4034
14.2169
11.3921
7.83044
11.3853
8.0064
18.7345
20.1218
55.5415
13.6716
11.2605
11.4409
13.4622
8.6036
10.6602
10.5227
8.70149
6.15019
4.31935
39.7791
6.07626
4.36496
8.02921
9.58685
9.76001
7.85564
5.95368
4.27638
6.01348
4.23794
8.95485
10.4471
9.11176
10.2529
7.68779
6.44777
6.51975
7.60666
4.99694
5.90732
6.66649
4.33256
11.3664
3.70384
5.11288
5.17849
3.65833
9.86602
5.7745
6.69434
5.83222
6.62776
4.84023
3.79282
3.85074
4.7784
28.3937
3.06428
2.98515
5.22203
7.63744
26.8448
25.6925
2.76159
2.79667
4.99624
7.52834
26.544
3.18892
4.05651
3.39585
3.88113
99.4077
3.16126
2.61005
17.9983
5.4485
20.0233
2.59628
3.43147
19.7859
5.20973
4.0908
10.4794
2.45145
3.35727
15.9542
5.07258
3.09467
2.88286
2.5709
1.18521
2.412
2.31156
1.02134
2.2036
0.8266
0.811922
0.861652
0.723048
2.63845
2.09908
1.29692
0.946528
3.20691
0.348526
0.988556
1.77331
0.365377
1.02414
0.340745
0.325113
2.67468
22.9796
1.74462
6.62428
21.3556
8.02927
18.1118
1.54115
6.03469
0.482309
0.908652
0.574532
6.79266
0.773674
1.01421
0.580532
2.96302
1.20169
0.904456
2.5734
0.666602
13.0182
15.2525
20.2828
38.6139
0.8702
13.1749
94.2404
1.53493
1.29275
140.347
299.741
18.4542
8.71267
23.6911
59.8856
11.0214
23.757
1.23126
1.81189
1.50796
1.13163
8.52544
1.64812
1.94303
1.88772
1.51026
16.9751
29.1928
613.172
17.4846
8.03318
38.2868
14.2397
16.703
18.3964
29.7757
11.8725
11.6755
36.3523
18.0915
5.76352
8.35379
34.1176
11.577
12.3457
38.2823
27.453
22.2817
8.69866
74.9397
19.2125
27.0892
10.1344
12.65
31.6708
10.8204
12.0515
16.761
9.6308
35.9745
12.545
7.11908
14.9421
21.9607
8.21902
15.1516
9.10989
9.76441
5.42699
56.6483
3.61829
6.216
13.481
10.2526
10.4289
20.5633
12.7704
10.0934
15.2985
6.75275
30.0263
5.56055
5.43276
38.6662
6.77229
20.8841
29.8641
81.4148
37.4885
17.9948
19.5592
42.7009
27.9042
23.573
40.884
17.4417
18.2309
9.35333
64.5418
18.4068
20.4033
24.2495
40.1877
7.1861
48.0224
92.0868
34.327
18.0825
35.3249
8.42666
117.377
26.0862
13.9894
31.7079
7.87633
57.5752
108.823
36.4257
37.6684
38.6075
42.6835
38.3498
46.0437
37.1925
35.7082
79.4516
45.7668
39.2502
44.0275
149.682
35.4459
21.1883
26.0994
38.751
40.428
37.5546
40.3048
23.3161
294.209
343.079
76.1713
86.2968
18.6215
15.8755
17.5846
61.0898
25.6387
49.2378
13.7001
23.9814
23.663
42.4527
11.7073
26.7551
53.505
58.5922
16.4976
16.0083
32.8904
15.4119
26.4207
121.079
40.8994
76.4834
12.9533
125.287
13.7171
25.8285
45.5279
53.6614
42.1931
43.7489
28.7911
96.4919
77.7533
36.5874
36.7483
250.39
20.3854
21.9002
12.187
95.8257
54.1666
39.7225
108.425
7.23431
145.86
37.6687
89.928
20.8577
50.8828
17.0396
56.3806
159.49
76.3455
11.5341
41.8291
41.3733
41.3814
11.4714
32.7194
18.8462
10.4223
40.425
34.3034
11.6934
42.4891
20.884
20.797
20.6164
19.252
19.1942
11.2174
41.3914
11.589
19.9629
14.6657
47.6366
46.6576
14.8477
42.224
13.7658
42.6629
41.8739
13.5963
46.6341
40.9838
45.8947
46.0809
14.8319
48.6589
15.0535
40.0893
48.0214
11.4933
114.035
14.455
44.2442
44.7087
14.3436
43.6425
13.878
40.2952
42.6679
13.8229
40.3486
39.229
39.6641
41.3022
44.2883
14.0501
14.3632
42.5639
43.3302
13.3984
42.9157
13.535
44.5414
35.1776
35.0051
48.4719
46.6911
51.3015
51.4164
35.4371
33.977
34.4623
37.7553
47.3118
29.3303
48.0851
32.1243
51.6914
47.0883
47.5368
36.5894
47.1981
10.2952
10.0763
9.72565
9.79846
12.07
7.32678
33.16
7.35352
7.19704
8.04256
14.3817
7.29732
37.1538
6.87793
31.5013
36.877
7.92436
8.36267
12.44
16.5177
11.5591
10.8748
10.8927
10.5913
10.7718
16.8323
9.71698
45.0627
16.0177
9.54471
43.0366
15.725
15.6621
17.7139
14.3504
12.0303
13.5112
12.2643
17.3946
14.4239
42.9255
16.3641
15.4824
119.898
15.4396
36.6473
13.6112
14.561
14.5158
15.0362
7.2824
30.9846
10.2289
9.07517
7.8594
7.29643
12.4006
10.9469
8.33632
11.8433
9.27693
11.5696
12.1468
10.6933
11.68
35.749
7.7408
12.6344
7.92567
11.7992
11.8859
10.4281
10.8841
11.0652
12.7343
11.8597
11.885
16.2341
15.4142
15.2931
12.7791
17.4899
12.4865
16.7901
13.8926
7.4551
34.7749
36.254
14.4876
13.2671
14.3067
6.98509
19.0684
11.1808
58.9598
19.5093
47.9546
227.319
14.7342
38.2374
39.4136
22.6062
22.1877
24.208
20.4455
23.4429
25.1485
23.8376
24.4688
18.7111
21.288
22.5067
22.7507
15.6356
22.3717
46.1112
46.0987
39.6367
64.9323
101.262
6.74375
15.1346
45.097
44.7814
22.0327
22.0369
14.6396
15.8012
11.8958
7.25475
13.2189
6.93455
9.29951
24.2318
23.1928
22.554
14.9392
10.9818
16.9155
19.9894
12.8255
18.6138
15.981
11.703
11.4315
11.4054
11.7194
19.7604
14.7376
27.9798
6.99305
9.69619
42.445
11.0986
9.05806
11.1994
6.99782
8.05683
10.7893
10.7383
8.17971
20.2072
35.4234
17.2065
11.889
11.5446
11.8186
11.5393
35.5766
17.7242
34.5134
24.06
25.0252
24.5678
23.7368
18.756
23.7788
27.8714
27.5136
27.2191
26.1674
26.7792
26.2254
50.2315
34.8414
29.7458
18.8028
23.8993
23.8024
25.2679
24.1956
23.8064
24.8986
45.1641
22.8006
44.7957
24.7644
24.2847
24.2096
24.823
22.1248
43.2583
43.7187
22.854
23.7166
23.053
23.5994
25.6518
24.6906
25.1743
25.2205
5.99072
6.89006
3.52902
8.30076
11.0544
10.7107
11.3384
13.5547
11.908
16.9915
13.652
6.87927
6.98255
4.46839
10.2855
10.7527
10.6849
10.394
14.1327
11.877
17.1041
13.7432
27.5296
46.8215
185.293
7.45498
8.43537
9.51562
10.0343
21.9009
22.5601
22.2242
22.1499
45.2476
23.0976
45.0567
23.4344
23.1053
23.3573
23.1295
22.4838
22.8346
22.4148
22.9995
22.1907
22.7495
22.2617
22.7301
22.5501
43.7206
44.0396
20.1148
20.5929
19.9052
20.3535
19.8976
19.7735
20.7489
20.5827
38.1693
19.9058
38.9449
20.3621
20.7858
21.0215
21.4728
20.3909
20.6924
21.1164
21.3229
20.9121
41.1625
40.8319
20.0606
19.9086
19.6247
19.2704
20.0757
19.846
19.6966
19.2823
21.0317
20.9211
22.1726
22.002
21.3729
21.9667
21.0883
21.6184
19.8215
19.5453
19.1853
19.3144
19.7286
19.3267
19.2737
19.2853
36.7942
18.6805
36.5865
20.0708
19.9371
20.3921
20.8501
20.0728
20.0159
20.1369
20.6347
19.8982
19.5233
18.5162
18.5236
19.8332
19.0432
19.1964
18.8139
19.8209
19.8476
19.73
19.38
19.9724
19.9381
19.727
19.3349
19.2083
44.773
38.0036
18.099
18.0051
17.9312
33.986
17.6619
17.3644
17.6472
18.09
17.9423
17.9239
17.7278
17.3635
17.6537
18.6296
18.4821
18.6871
19.174
18.9751
18.945
18.8429
19.1364
18.9111
18.5071
18.7432
18.7173
43.1201
168.291
14.5599
17.7958
17.5275
17.6414
17.4705
17.1651
17.424
32.6423
17.8499
17.7435
17.6934
17.2713
17.125
17.3777
17.7275
17.5772
17.6727
17.8323
17.6253
17.7276
17.8521
17.905
17.7891
17.5338
17.5322
17.621
32.2304
16.1043
15.8893
15.9156
16.0424
20.4868
24.5626
18.8445
39.736
19.8958
22.101
18.1908
29.7648
15.3591
15.5721
15.5159
15.4381
15.123
15.0406
15.0944
15.0755
15.1229
15.1351
15.1847
15.0897
10.9212
6.38334
97.7868
31.4836
9.31975
7.88241
99.101
14.3603
14.3767
14.3883
14.3587
13.9377
13.308
26.671
12.3976
98.9829
14.1851
95.4503
17.3208
12.5831
13.2702
14.5875
5.95494
30.8339
94.2195
6.16464
65.3967
19.0222
25.4107
30.2751
8.35242
12.4661
13.2214
13.8508
12.3833
14.3182
16.0818
16.2534
15.0086
12.4502
12.6022
12.6555
12.4009
12.3036
12.1379
12.3479
12.0881
13.2614
13.3372
13.2508
13.322
13.1557
13.0966
13.0155
13.2547
12.448
12.1752
12.3779
12.2498
12.6859
12.9245
12.8589
12.7388
41.1594
35.0464
24.5801
40.454
40.7409
38.5241
23.5771
64.475
84.4933
44.8073
48.4709
45.9994
32.7257
126.608
16.5424
27.8177
18.6351
16.6943
75.2226
30.6309
30.2854
30.3181
16.3442
58.5527
16.9154
60.4466
71.3981
32.8199
40.5361
148.765
222.554
124.51
205.886
34.48
54.1638
78.3174
49.0383
102.238
370.456
65.6575
25.048
59.9528
421.037
346.529
28.8058
150.378
219.559
228.453
23.8357
329.661
100.238
410.917
35.5849
357.199
173.584
18.1225
58.4341
24.1483
27.2603
15.6025
55.3776
25.4586
24.1653
18.6701
21.2739
16.933
31.2355
51.1347
30.2788
142.428
38.0293
15.9126
16.1411
51.8312
16.0964
51.6784
51.4396
18.4738
51.691
18.2296
17.138
55.4109
17.4525
51.8473
14.9588
45.1267
14.9633
14.7213
46.705
51.4091
18.1612
53.3303
50.712
17.6312
12.3209
46.1844
15.6195
42.3382
30.9365
11.5597
22.0394
60.6581
15.4935
14.6739
57.6875
12.8549
42.7535
42.5658
24.7548
12.7784
24.9468
12.8511
32.5741
45.5102
42.7769
13.1642
26.1703
20.2825
42.1819
20.5655
526.276
13.4463
45.6354
28.2267
20.4717
169.968
202.454
47.5014
195.296
42.9486
17.4018
18.7569
36.5383
40.4799
11.5567
22.2433
56.7305
13.7183
12.9145
57.7329
41.1689
12.34
42.3186
41.1279
23.4201
12.1738
23.8183
10.3297
37.3541
17.1106
169.052
26.5157
30.9222
71.9006
19.9715
11.1232
19.9297
50.7886
12.1298
12.0498
50.3525
21.6922
21.2023
50.8043
11.3796
51.0068
11.6591
11.8231
52.9562
21.8225
21.6548
53.4606
11.8645
62.9497
35.104
92.363
78.1642
52.3358
31.141
59.1904
34.0149
96.5326
148.114
19.3208
33.5531
18.7839
14.4773
30.8481
17.6067
168.466
17.5115
43.6156
194.368
18.2448
631.832
62.8959
237.335
56.3044
202.638
17.2466
97.6161
61.6338
94.3594
40.4396
42.7226
17.4449
17.407
11.7495
20.9608
39.8872
10.5929
51.9132
41.5867
21.8383
20.7771
50.3518
74.7476
66.4666
57.4495
26.6628
15.3229
17.3702
25.0128
62.8395
65.3115
10.7831
17.2248
26.3153
25.4583
55.4781
18.9864
12.4335
12.0479
19.5731
26.7434
56.2253
26.7201
56.0983
19.6153
12.4032
12.3849
19.6821
28.2026
58.0347
27.65
59.0737
17.8019
31.4831
30.2808
37.5014
42.941
69.9639
59.9279
23.4296
32.8024
36.2807
72.375
31.8517
73.7281
16.369
66.5632
15.2617
26.9395
17.6823
27.0554
74.2434
39.8741
37.2534
88.0784
17.6022
28.6828
26.6742
26.96
37.6971
39.8132
37.7952
25.2683
35.6154
280.991
44.0322
61.976
24.0216
31.4164
34.9097
384.335
24.3199
137.368
580.174
148.967
35.1842
25.8327
81.001
158.503
45.4456
191.336
162.905
49.7192
44.7707
35.6798
31.8167
35.8098
24.2462
32.8713
26.6369
15.5515
15.2667
40.5981
28.7126
133.804
75.594
30.6358
29.7626
22.2554
30.4022
21.8752
122.811
12.7746
17.1185
18.9758
112.92
11.2023
39.0975
131.371
38.0519
11.2074
18.0797
25.8642
26.4655
55.0114
20.1826
12.7721
12.824
20.11
28.7561
58.2269
28.2139
59.4411
18.7852
11.9311
12.0902
18.4902
27.296
57.3655
27.7521
56.5058
10.6082
16.2112
21.3229
27.0315
21.1579
26.9396
53.5244
11.9181
11.9369
18.1491
25.9802
18.3466
25.6769
53.5865
53.9364
12.056
12.0872
18.1983
25.8515
18.2527
25.8165
53.701
16.2195
24.7922
24.9175
24.6888
22.091
41.7672
29.8429
30.4528
19.1237
20.1769
22.9799
37.8731
32.9235
282.37
31.7394
26.1551
23.4501
17.1161
15.2838
35.3751
40.6321
31.3871
59.7975
236.208
66.1287
64.0687
262.926
13.9531
22.9222
15.1722
27.6816
36.9011
29.402
34.7271
58.708
84.942
261.792
21.2835
27.6073
18.7778
32.4046
44.0855
37.2514
32.0547
38.2685
35.5588
28.1664
28.1151
29.3853
14.369
9.05876
12.1096
12.8872
10.6627
8.60355
19.2078
14.1924
161.87
13.5635
20.0386
73.757
10.2697
23.5831
37.4764
32.7923
22.8852
123.341
46.6061
135.632
18.2034
23.9494
30.0443
20.0069
124.817
36.4688
21.7312
14.6905
20.546
15.5367
32.6553
28.5191
151.458
75.0148
43.2826
128.711
29.241
38.2059
111.103
109.016
19.654
15.3337
18.6835
13.3528
415.181
10.6777
24.45
30.7749
32.5643
46.3783
23.5203
27.5382
40.4374
70.9476
16.9111
23.6431
13.1569
12.14
24.1288
18.4634
10.548
15.8919
20.9356
26.4139
20.644
26.2201
51.9051
12.2355
11.9697
17.9769
22.6548
17.5143
23.8336
52.0818
52.5266
12.0508
12.1365
17.5784
22.5359
17.5337
22.5996
52.1271
10.3465
15.3498
19.9382
15.5717
20.0563
50.7805
25.9171
11.3843
16.5521
11.3727
16.5283
25.6286
49.9691
49.7299
25.1626
11.3743
16.5432
49.7783
11.3729
16.5231
25.2894
16.362
26.5145
236.487
18.4032
23.9692
33.8458
64.3508
36.8551
33.4
34.2488
63.0442
15.2861
64.5465
21.0622
26.3647
19.7745
27.3968
67.3228
61.2477
39.6691
35.6529
30.9622
59.7542
260.767
29.2899
32.6536
19.7938
24.8684
25.2567
19.7911
32.7877
28.1993
35.1067
66.8847
34.2642
63.584
29.205
27.0796
20.7872
14.4474
28.6518
25.3954
23.3464
15.7164
14.6527
61.401
63.0483
26.3822
26.4849
25.5149
27.2656
26.3839
26.4595
26.1863
26.6043
24.2382
25.7247
24.6707
25.3891
27.8968
27.1587
27.8796
27.2411
23.817
18.8963
29.4561
25.4521
27.2738
30.3876
18.2083
22.1544
10.9378
17.0548
17.8019
13.0864
412.035
138.272
27.1561
37.1262
38.4022
64.6208
28.2806
41.6551
111.55
116.836
14.1256
13.5229
21.9208
24.611
31.7248
37.8381
22.6666
27.2437
28.2847
35.1155
17.437
14.9387
12.6823
17.058
11.3067
34.6666
358.841
32.6877
59.0591
22.0513
29.6597
22.75
14.7852
19.61
19.0097
18.1407
14.4329
18.5238
32.1895
24.3702
23.5892
13.3252
88.7063
11.9503
14.6503
10.3693
15.3737
19.9131
15.5876
19.9726
50.3443
25.659
50.0824
11.5609
16.5149
11.3229
16.97
25.6754
49.7592
48.3796
25.0238
48.9764
11.1835
16.3168
49.3787
11.2171
16.2511
25.1588
9.57873
14.3476
17.2923
13.998
17.172
20.8814
17.7184
44.2138
10.4448
10.2616
18.3211
22.6159
23.6024
19.605
44.9931
10.603
10.704
19.4487
23.0523
21.7267
25.1491
13.5252
15.5595
24.715
20.0813
31.4579
35.5954
61.8371
36.8849
69.9406
28.3085
23.3397
20.6555
14.1267
31.0162
25.4556
17.7796
13.1689
54.4128
33.9397
27.8615
58.886
65.7651
27.4069
31.7696
54.2017
13.11
13.5404
51.3305
29.415
22.882
26.137
47.5463
26.8786
22.7401
26.0803
17.7488
22.7116
23.6253
29.1341
17.0145
20.0889
24.3135
25.8548
48.6296
11.928
48.281
11.1693
23.2952
19.4824
29.5388
29.8068
24.9587
27.6882
20.1053
26.5023
22.9729
22.366
23.3028
22.7154
23.2156
23.4113
22.2733
22.4886
22.1986
22.2792
21.8373
21.8555
22.1645
21.8867
22.0213
21.6134
22.1285
22.0645
20.3997
20.7462
21.9134
20.8918
21.8271
21.1987
22.5593
23.0467
22.5147
23.0902
22.3055
22.2972
23.2898
23.4042
24.65
29.6405
32.456
95.441
25.5995
37.7052
34.404
57.749
15.7613
18.0989
14.934
7.4338
10.5284
10.3833
12.4224
8.70252
11.6675
16.7949
13.6513
13.5297
10.7448
85.8734
9.46646
11.1764
14.0956
13.689
14.8212
17.0892
15.2935
10.8845
12.8518
13.37
16.0434
17.4142
15.6169
292.083
9.77577
45.7811
9.73752
7.95293
7.01252
8.53578
12.4159
14.9752
12.3742
14.9264
22.8399
17.1734
42.6625
21.1107
16.4764
17.7245
17.3796
16.0772
20.8442
16.027
17.5166
8.19979
11.8398
14.4096
11.8926
14.4344
15.1229
14.9923
19
16.4579
15.0929
15.6541
15.776
15.2684
19.5053
16.5234
15.2774
15.7139
23.9441
24.4267
23.425
20.5131
21.7788
49.4221
28.4099
25.461
20.7752
20.036
21.1195
11.3118
46.8586
16.9476
21.7768
24.4365
11.8599
18.0276
20.8906
22.3383
190.527
17.0428
10.0113
21.9975
18.0591
21.8125
23.4246
12.2868
19.8357
19.773
19.153
15.4353
11.5987
53.9988
16.6023
21.2951
18.4785
19.9522
17.7543
12.3224
16.6269
26.9849
21.2807
23.6476
42.3824
21.2259
27.4713
24.2222
44.8876
10.3261
42.8216
9.10236
19.5585
19.6103
19.6706
19.4013
19.6803
19.6364
19.4876
19.357
19.5841
19.6906
19.7942
19.7386
19.0868
19.2615
19.1049
18.9238
19.016
19.0324
19.0166
18.9363
19.0242
19.2899
19.1262
19.1248
9.02736
11.0806
11.6881
13.8771
16.1419
14.3392
9.77276
11.7874
12.2702
13.2976
15.7767
13.888
25.3755
18.2922
18.8071
24.7851
18.1188
19.2653
17.7619
19.773
13.7908
11.7409
12.1672
13.4417
19.5867
22.7739
22.0285
19.762
7.88478
11.0688
13.5971
11.5279
13.7927
14.8168
14.4894
17.8547
17.3549
14.8257
16.3098
14.3903
14.3887
15.8948
15.7664
14.6172
15.3439
7.51591
10.9868
13.351
10.964
13.3506
14.1242
14.11
14.3361
14.1161
14.0961
14.2036
14.3313
14.1084
14.3096
14.1193
14.0998
14.2045
19.836
17.6989
18.5421
14.766
10.3212
42.1668
14.8181
18.626
17.628
17.7544
14.6206
10.4766
41.96
15.2311
17.8227
19.2214
19.2877
16.8476
15.9727
17.0627
17.4525
20.1005
19.4558
17.6102
16.4214
17.3934
38.8818
18.9532
19.3449
22.0412
16.8079
13.4234
10.5429
14.457
17.3443
17.2379
16.9217
16.1438
17.7574
16.9275
11.7589
15.9283
15.1281
36.1299
19.5378
22.6389
36.1038
16.9467
18.1645
17.189
17.5052
17.0913
17.5304
17.0413
17.6133
17.1972
17.8224
17.3433
17.7126
16.0757
17.8921
16.6123
17.3363
10.6767
8.54068
8.72949
10.4672
15.5018
16.3847
16.65
15.2429
11.1529
12.1294
10.992
12.2992
6.59165
62.5991
52.2243
17.9522
19.3103
7.22214
11.9365
13.3188
13.0179
12.2951
6.81219
10.0096
12.155
9.94973
12.1149
13.804
13.3717
13.1877
12.8562
13.0606
12.9402
12.9289
12.8047
12.8511
12.7607
12.7616
12.8515
6.67623
9.84969
11.9677
9.74825
11.9296
12.5948
12.5903
12.5419
12.4998
12.5646
12.6002
12.7756
12.6278
12.5512
12.494
12.5785
12.5988
17.5072
14.7168
14.893
16.7966
28.8953
7.69509
6.84114
8.93499
6.03915
29.5747
13.9118
15.5999
14.1142
15.8017
14.9547
13.9873
14.4862
14.5578
13.2925
14.9822
12.9124
14.9762
14.2286
15.1051
14.3448
15.1318
15.3522
14.988
15.0312
15.333
15.6186
15.5458
15.4738
15.699
15.882
16.0151
15.8993
15.9875
10.1821
10.9524
9.74141
11.3343
47.9069
15.9753
12.3336
16.4165
12.0633
44.921
9.00087
10.1053
10.2231
8.89615
44.166
5.247
42.9462
6.57253
5.13086
6.72184
10.4031
8.91495
10.0739
9.23835
12.4791
17.6647
16.4605
12.9173
5.42764
44.8824
7.15824
47.0345
6.95947
5.59803
6.42806
9.07912
11.2243
9.41123
11.3665
12.4547
12.3195
12.1699
12.1059
12.2567
12.2437
11.6845
11.8074
11.7912
11.9928
11.9552
12.1389
5.67473
8.60702
5.5557
8.41371
10.3244
9.72199
10.2556
10.4857
9.75194
10.4827
10.8398
10.5379
10.8475
10.6512
10.2425
10.6419
13.5384
12.4887
14.0222
11.55
13.6199
12.6946
13.3354
13.0283
12.3581
8.47724
24.3801
9.8076
25.5039
11.1709
88.391
19.1172
11.2642
19.439
23.9455
9.83803
12.3643
9.18921
10.1935
11.0114
7.85655
8.20473
8.08216
8.01406
18.2386
9.64624
8.54186
9.55148
8.54705
19.681
13.3707
13.3805
13.4352
13.3412
13.3021
13.5095
13.2067
13.5527
13.8639
13.7751
13.8475
13.7927
13.9925
13.8981
13.8536
14.0592
12.9594
13.4697
13.0822
13.4397
13.1625
13.385
13.4199
13.0887
155.662
35.9663
24.2027
6.1026
5.48724
8.39022
7.56326
8.47558
7.48898
9.30859
10.5736
10.7793
9.18537
4.57579
35.442
152.417
38.4744
13.7397
14.2026
4.83901
8.74656
7.9393
8.01782
8.66112
9.54191
10.1881
9.64357
10.0889
6.23525
5.4352
6.15462
5.50961
7.10436
8.11309
7.81892
7.39754
9.83589
10.2734
9.73051
10.3772
9.27569
8.8061
8.51271
9.57265
5.42233
8.17792
5.60446
8.40013
10.298
9.69359
10.2653
10.5069
9.75411
10.5075
10.3828
9.96525
11.355
10.8002
10.2808
10.7457
5.17737
20.4762
5.16076
20.4025
9.51251
7.51549
9.59365
9.59412
7.44657
9.11675
9.29532
7.56473
9.78729
9.66323
7.54203
9.17581
9.68695
17.5285
18.0192
9.23577
10.7888
9.44582
9.23272
10.5978
3.48792
83.1802
10.0797
18.467
4.37175
21.4732
5.1703
8.71028
8.9015
8.56317
9.07825
10.3205
8.47808
11.4748
8.34164
9.28943
8.60786
9.04382
8.88586
9.62002
9.58265
9.31716
9.81882
8.65986
7.97595
8.27657
8.44742
8.42804
7.27002
8.73136
6.79685
9.90582
9.89912
9.68582
10.0966
9.30349
7.72879
9.02741
8.15856
11.5049
11.338
11.4101
11.4383
11.6727
11.8659
11.7245
11.8079
11.3132
11.2106
11.2858
11.2364
11.4168
11.4978
11.5029
11.4107
11.8076
11.9182
11.7717
11.9608
11.6838
11.5783
11.5838
11.6818
8.43218
7.80709
7.7256
8.52058
9.01168
9.42321
8.87422
9.55973
5.1868
4.68134
5.33032
4.52937
6.50955
6.78963
7.12751
6.13223
8.58994
9.25329
8.69432
9.15718
8.35544
7.41999
7.72091
8.08435
5.57617
4.97643
5.02376
5.52269
6.26784
6.89936
6.36554
6.80006
3.73609
3.11363
3.67987
3.16103
4.43068
5.35142
4.98728
4.7918
6.53952
6.99179
6.45586
7.08125
6.11327
5.91815
5.54449
6.4957
19.1199
4.84272
18.9423
4.76291
9.18289
7.2975
9.32859
9.19393
7.21812
8.75489
9.15527
7.12523
8.99671
9.06358
6.99983
8.63385
6.06873
4.18276
7.95746
7.59377
4.18974
6.26956
6.5815
4.35431
8.16154
7.64416
4.2976
6.31479
7.62334
7.74459
7.24392
8.09951
7.64796
7.77998
7.43566
7.98748
5.11879
4.7795
5.23068
4.67212
5.3796
5.70114
5.81374
5.26987
7.17455
7.63874
7.29
7.52386
6.63459
6.11791
6.2336
6.51656
4.94097
4.61257
4.60186
4.91419
5.26389
5.6033
5.32871
5.53207
3.67909
3.23732
3.62455
3.29064
4.09737
4.51048
4.46099
4.14605
5.44224
5.66375
5.38852
5.72108
5.16146
4.86713
4.8171
5.21217
8.89947
10.0951
12.0352
11.4292
10.4786
10.4503
10.6753
11.3123
4.30804
6.94216
23.1958
4.91588
6.17391
10.1258
4.98548
23.7222
5.65742
6.38091
7.57618
5.59999
8.16055
78.0604
20.1723
5.36484
4.88599
4.83249
5.42477
5.87518
6.31482
5.80766
6.3871
3.01723
2.6466
2.51035
3.15175
3.41749
4.57499
3.92477
4.10168
5.59183
6.22555
5.72055
6.09797
4.96548
5.04752
4.4385
5.53113
3.69665
3.87669
3.20984
4.34719
4.23457
4.80712
4.39658
4.64301
2.22718
1.64722
2.13979
1.717
16.7339
2.99521
3.87567
3.48283
3.40802
4.64594
4.92702
4.51195
5.06815
4.45058
4.32519
3.9549
4.79097
5.90726
3.83952
7.20062
6.90213
3.78335
5.68629
6.31913
4.34319
7.4476
7.09395
4.0212
5.83486
3.42442
6.14149
5.04888
3.40076
3.47928
6.2346
5.06551
3.40602
4.09856
4.00999
3.77955
4.33165
4.26794
4.25489
4.18485
4.4012
2.86405
2.27841
2.61648
2.51884
3.72398
4.05094
4.02249
3.7486
4.31666
4.12226
4.1241
4.23002
4.56447
4.34278
4.31335
4.60516
1.34152
1.54574
1.86078
1.10622
4.26524
1.93814
1.65805
1.90103
1.69643
2.28575
2.65946
2.46911
2.45066
43.3123
7.9669
1.28819
2.10461
2.71586
2.48729
2.33997
7.80235
7.61253
7.84872
7.78519
7.49115
7.47505
7.45299
7.34407
7.00698
6.97041
7.35477
7.11923
7.47757
7.68849
6.90476
6.87104
7.32854
7.03546
3.64035
3.38962
3.17981
3.86884
3.83811
4.06049
3.68092
4.22348
12.7953
1.31607
1.42423
1.59785
2.63847
2.02899
2.13053
3.40585
3.93447
3.55935
3.78084
2.90656
3.13878
2.47603
3.57441
21.1348
1.05532
0.873491
1.6638
2.2688
1.98343
1.86327
2.18879
2.67794
4.52386
14.3179
3.8572
13.5389
2.18314
2.44467
2.1203
2.523
1.86485
1.62847
1.45026
2.08221
90.5327
96.1819
119.839
157.171
350.007
1631.57
163.435
568.631
50.0547
151.99
221.256
527.386
49.7845
189.535
556.333
730.815
25.6098
199.974
66.4109
24.1307
29.2653
58.56
52.1145
31.7824
40.9705
66.0559
66.5995
58.9651
36.9754
239.63
58.8174
276.904
268.185
32.3821
229.615
26.2201
216.513
1011.18
380.38
189.448
844.917
184.388
88.7951
1194.96
180.696
816.993
328.311
70.0224
69.3045
59.0769
69.912
70.2003
60.3745
118.424
101.029
131.871
86.5744
97.8857
132.457
1148.13
62.7111
653.35
106.376
75.934
202.912
158.216
245.882
91.9851
86.3472
126.016
133.273
116.87
174.019
110.643
201.942
1615.55
647.353
40.0788
671.862
42.06
41.4278
40.5478
38.2966
39.2093
37.2674
39.8375
38.8469
38.2793
37.7115
31.7546
164.932
162.823
29.2447
152.931
21.1456
23.7313
30.343
27.0589
173.047
527.965
133.876
103.933
83.4757
737.303
13.1806
41.7637
182.531
32.5226
29.2689
15.7088
28.8779
30.8912
27.3722
28.668
15.6394
30.2065
207.279
38.3202
26.8785
12.1256
30.435
27.4829
42.841
26.6065
26.4272
11.9731
31.6306
5.8557
9.81612
5.23688
8.62285
29.5899
27.1376
31.1077
56.1556
26.1423
48.2704
143.431
17.5714
19.0418
44.0574
20.7735
116.708
185.723
34.4379
19.5732
72.0088
28.5454
21.9085
123.753
206.056
191.4
221.355
557.45
111.687
13.4625
22.8384
44.0701
27.114
171.963
35.9449
39.2733
21.8161
153.868
31.2536
53.5934
24.6632
4.35587
15.0786
4.31324
15.2542
55.0541
31.507
25.1128
15.3228
15.4734
11.4996
11.182
28.4187
33.0579
259.87
36.5131
30.4006
11.8957
12.0929
7.02437
17.6972
50.7062
11.3371
22.4283
52.9009
6.03889
11.3295
37.7044
34.4281
5.85964
3.41482
7.66001
18.9614
224.688
15.3319
12.2998
20.9206
63.186
28.6648
3.47179
3.48338
17.5076
135.592
17.8537
137.279
23.0718
44.9043
136.466
20.0914
565.914
35.8573
159.961
26.7995
16.2099
136.447
28.4238
49.2243
78.3075
31.5207
16.5544
30.3553
14.0597
115.424
46.8932
28.5773
169.153
30.513
120.956
144.298
143.512
37.3292
37.2628
41.112
17.5537
3.70575
3.73002
3.79918
3.7687
17.6483
5.7319
2.76413
2.75718
6.26136
5.58731
2.96058
2.94749
6.07642
35.0464
16.2497
17.4254
28.2546
32.3747
4.53515
4.56803
32.1697
26.2916
2.90344
2.87362
2.73232
31.2512
2.79783
26.2859
4.89079
4.73337
3.14343
4.49931
4.38039
2.85324
3.05089
2.90544
26.1872
25.8132
39.0906
42.9614
497.453
165.564
12.2883
20.2903
15.1667
21.4964
21.2473
13.7757
13.5777
20.9871
13.4618
13.5031
126.067
24.7955
16.6717
15.5735
24.0782
131.526
136.601
160.557
41.4347
98.5057
80.7102
50.8823
38.6305
46.0178
48.5004
74.8168
39.0612
40.8885
47.3372
21.8769
18.2995
25.0074
16.5649
26.8034
32.5171
24.5266
31.1476
19.7096
21.8278
71.8828
43.935
45.9533
36.0218
30.6357
36.5707
38.6393
33.4569
39.626
16.1558
89.233
26.285
11.6023
2.20634
2.22716
2.27584
2.24859
14.6129
3.40621
4.50225
3.6087
2.41175
0.799099
0.915901
1.96589
3.46937
24.7384
25.7696
5.83921
12.6672
6.68927
3.84107
6.62296
7.32024
10.9381
4.05799
1.67711
4.1207
1.65104
7.11561
3.28312
7.99253
1.88493
4.28334
12.1552
4.3233
4.33619
1.63738
4.5223
1.71505
5.98599
6.5335
6.06046
4.70452
4.2573
15.8344
11.3422
108.382
16.2663
34.4505
23.182
23.0451
22.1838
34.0141
22.7997
11.4394
109.439
16.5071
16.4221
29.5243
18.4363
98.7279
118.548
26.8913
19.6515
33.5459
22.6949
33.9644
22.3656
19.7277
69.5291
15.2799
22.5644
33.6111
30.5456
30.2786
16.616
25.4418
24.3168
39.9108
72.4045
15.9207
66.5294
37.3426
30.5018
37.7969
36.7199
31.0938
33.4532
33.0176
23.7978
30.5382
26.1938
20.5016
28.3575
33.6335
36.9579
34.2678
71.103
90.0298
77.297
34.6501
29.4987
30.9413
1.43174
0.308712
0.173649
0.178898
3.62885
3.10442
3.80192
3.15294
0.238909
0.356193
3.2216
0.200295
1.27919
3.94014
1.91054
3.74463
1.85935
5.88874
0.15565
6.90249
6.38495
13.564
0.227693
1.65313
3.29993
1.7163
0.168982
2.76798
0.27333
1.00544
1.95259
0.988282
1.93783
1.42013
0.637919
0.452309
1.86485
1.89279
0.177271
2.36597
0.257637
1.05338
1.80324
1.08514
1.23214
1.1915
0.144386
21.6106
3.1935
0.843156
0.521522
0.176821
0.869158
0.137273
0.67271
0.194656
33.2689
103.396
10.9582
99.073
10.6944
34.0824
13.8333
9.7672
75.5815
13.4232
10.0616
14.2431
10.3176
78.3208
77.7511
14.2922
10.3091
79.4099
68.2952
21.2884
14.2066
36.3896
67.316
41.5974
32.3406
40.804
37.3298
33.7924
29.2341
25.4888
22.2895
26.7567
25.002
24.9897
27.3379
53.808
11.6994
19.0003
13.1031
17.1497
34.0666
32.4368
54.5391
29.4303
63.143
14.7067
20.6259
21.0436
58.7918
14.2098
36.0628
32.5095
24.72
23.3086
25.5611
21.81
1.61053
1.31511
1.4246
1.28392
0.359795
1.23936
0.35427
1.27142
1.39727
1.02475
1.69876
1.05051
3.56191
5.50582
1.99862
0.806874
0.0709302
1.28845
0.916443
1.31844
0.938766
0.62305
0.446324
2.05296
0.444734
2.01686
0.543558
0.25441
0.231733
0.325213
1.84148
0.30374
0.402304
0.41865
0.353753
0.359346
12.1688
15.7015
14.8928
13.1063
21.0439
64.801
66.7125
20.1494
15.4156
10.0908
14.9264
10.81
18.8811
11.0929
16.8707
11.8835
70.404
51.6843
9.95043
52.6627
180.17
27.2062
44.6281
25.3066
25.9597
27.5628
22.8566
22.6614
196.199
50.0249
29.4911
31.4893
22.5242
22.1284
26.3288
24.3577
23.4623
21.9488
14.9925
8.76995
12.8244
10.1762
20.3807
20.6447
21.8039
19.5169
20.5906
21.5114
20.734
19.2936
17.5656
17.9482
9.45498
14.2633
8.22229
17.2681
14.0831
19.5884
20.7448
15.4284
20.3998
16.545
13.7215
21.094
21.7439
18.2858
18.5942
18.948
19.2212
18.1039
18.7925
18.3544
18.001
0.15059
2.33089
1.30999
0.129279
1.59375
2.07704
7.34506
9.63743
2.36519
2.7476
1.97348
1.19579
2.30609
0.146616
0.405858
0.0779207
0.221213
24.183
0.917898
212.501
69.4604
5.62625
46.9236
17.1659
16.6319
51.0704
8.99684
10.9121
11.0336
8.90656
6.66489
4.75115
6.74144
4.70537
9.5492
12.3322
12.1295
9.64514
6.87777
4.7953
43.9627
6.81281
4.83075
12.3944
15.36
14.4726
15.049
11.4697
13.266
15.6346
15.1042
8.22061
41.9685
13.505
156.318
8.60281
14.9624
12.9511
157.632
17.3618
17.3607
20.408
22.6543
35.95
32.2306
6.97077
35.4284
8.84375
7.75222
41.5283
15.8397
16.0993
17.8979
16.8006
16.714
17.9978
16.1226
16.2837
16.4952
17.18
17.6275
17.2237
17.0369
16.9554
16.8903
17.8437
17.7941
15.8165
16.6309
16.5434
15.1455
13.7374
14.5119
13.4755
15.6462
15.8998
16.5062
14.1729
16.1912
12.9983
13.1861
13.8516
7.35924
5.5383
1.9035
2.98982
1.70356
6.25973
5.15797
1.70554
2.64769
0.876706
1.6565
0.991172
1.71796
4.734
3.45031
0.844297
37.3574
1.63229
1.569
4.65436
3.65966
0.937959
1.37294
0.468187
0.709717
0.417278
0.72605
1.30683
2.68238
1.88822
0.232942
0.393778
0.185179
0.321123
0.260348
0.42584
0.383388
0.644058
3.51935
3.96207
6.19341
0.910278
1.62363
3.47485
3.88516
3.04182
0.77363
0.547185
0.49171
0.967297
11.6347
13.4767
11.411
13.958
10.2785
8.9811
8.91477
10.3906
5.18787
6.55126
6.9134
4.86357
34.1583
3.84739
3.90349
5.70806
7.54962
7.50119
5.75609
35.9715
4.01876
3.95663
12.7875
11.932
12.5338
10.5508
11.7608
12.1604
13.0924
11.4768
12.6626
11.6805
11.9659
12.2311
12.8791
11.3252
12.1893
13.4818
11.7041
12.4363
13.6224
13.9705
13.0636
10.5853
10.6307
11.4458
13.7985
17.3761
12.1759
27.2567
99.7287
4.17878
4.09708
3.05441
24.6572
5.52306
5.25924
4.16219
1.06808
1.28183
0.133586
0.103402
0.580274
0.123056
0.201916
0.950418
1.62756
0.0829449
0.414206
1.32972
0.550378
1.64394
1.24034
7.25081
7.90213
6.93186
8.22271
6.6017
5.65928
5.57677
6.6938
30.5292
3.25986
3.60556
6.67746
3.1035
4.3639
4.28876
3.15378
7.5032
25.099
11.9234
11.4018
12.4696
10.7371
10.1543
20.7191
13.3396
11.4312
10.6118
8.37166
8.91564
10.5008
6.35645
7.00259
6.89936
6.45202
5.13419
4.22702
4.8065
4.55558
4.55905
4.22762
4.76511
3.94038
4.06346
4.72318
4.00974
4.78884
3.33651
2.66531
25.1899
2.47874
22.9286
3.56453
5.58771
21.1031
2.83068
3.84095
21.3017
5.82183
6.96867
3.007
3.91907
22.2209
5.93095
6.16435
6.32803
6.70618
5.79412
4.50829
3.71111
4.28719
3.92007
4.4548
3.53658
4.10811
3.86652
9.63253
7.69582
7.77751
8.50978
55.8012
12.1643
5.77478
7.55397
6.33589
0.882805
1.92694
1.82371
1.94406
2.07626
1.9231
2.49542
1.89466
17.6095
2.53271
5.08872
4.95722
2.12195
2.84493
1.26065
1.75043
2.87954
2.26363
2.66569
3.39843
1.5677
2.00356
3.35091
2.53522
2.09242
1.75078
1.54974
2.07498
1.83956
1.37132
13.9237
2.192
2.1369
2.15624
1.67071
211.2
1.84447
2.48433
2.58445
2.6636
2.83317
2.25222
2.11071
22.6073
2.56313
2.7708
2.17301
1.68104
1.64856
2.28823
2.16068
1.26978
12.2199
19.8841
38.4595
21.4637
24.5635
14.5201
21.1354
0.337017
8.44165
32.3386
9.15223
0.475574
46.1849
78.4633
21.9999
25.4957
13.951
18.0117
8.6413
17.5263
24.9002
18.1815
6.77169
3.53895
17.8276
0.470724
11.0907
7.93472
0.651632
4.05296
0.720477
6.81117
10.0974
11.9369
12.3698
0.268766
9.93946
6.2481
1.35052
4.18449
10.461
9.84105
30.1792
10.1976
5.61655
20.0246
8.6325
27.1428
5.78512
1.26226
4.83933
8.33628
11.5095
24.5733
5.22192
19.6141
22.2873
6.2106
13.3075
11.9139
10.3147
11.8267
12.5424
8.63459
5.16165
8.91176
11.5095
13.5707
5.90331
7.91103
70.6322
14.0103
7.70719
14.3471
12.3884
19.4249
9.31735
12.5325
12.4238
29.6492
7.32958
15.6255
6.11503
6.88612
2.43511
14.4168
11.6727
9.22146
9.64517
13.3211
10.9134
6.19114
73.9534
11.355
18.836
77.2077
32.6565
37.6598
34.1959
44.4924
24.4087
98.6735
24.4903
19.9112
27.0677
50.0246
50.6178
8.84956
45.0708
37.706
99.5335
124.276
29.8777
14.8846
74.1595
40.0005
8.79973
59.9179
46.8284
81.466
33.362
21.7656
87.4894
8.27486
16.063
135.777
53.4683
135.879
37.6713
34.3917
42.0593
65.6093
14.8504
44.3657
114.807
212.893
92.9431
183.027
20.4697
30.7538
204.738
209.401
197.747
72.8811
17.8563
145.717
173.044
12.7415
24.4819
11.628
60.728
21.9334
35.6551
57.9779
63.6117
63.8004
192.91
181.296
177.535
51.4849
13.1071
81.3934
26.3474
8.06353
9.83547
32.2051
29.1594
24.4193
27.7605
15.2754
16.6264
8.32484
7.26144
23.3422
55.7863
17.396
8.10019
62.9349
57.1341
24.1135
10.7002
28.9691
6.86405
8.82838
65.0709
21.974
8.27442
14.9617
28.6383
23.4404
28.9011
15.3717
18.8634
8.13874
21.5502
9.56545
6.70376
6.48004
19.1546
28.1965
15.5534
9.71341
15.7458
22.0357
70.3079
8.20993
16.884
30.9394
30.1315
9.51781
23.8921
17.3641
6.57198
15.2725
8.64472
15.4402
64.3673
17.2203
32.0858
40.5793
31.1225
7.95854
35.587
11.059
32.3792
32.7456
10.3981
19.6658
67.7952
33.7346
11.6022
11.1506
11.7037
12.0317
46.291
15.8465
13.216
29.828
9.8683
9.03392
58.3337
20.8144
7.40148
31.2949
26.7097
30.0401
22.7082
8.30532
78.1777
9.19691
10.5841
30.6548
8.90219
26.5717
7.61199
17.1933
10.726
28.7213
8.858
10.2108
8.94682
26.7638
29.4346
9.34489
8.83078
66.0593
7.08908
13.1699
10.0016
31.8152
57.1635
5.32995
30.4459
31.5808
28.2937
24.4711
35.4314
73.0858
36.7807
75.2379
10.3205
69.1838
13.0577
35.2932
10.0205
28.7613
9.62857
15.1859
30.3647
38.997
10.7576
8.43533
26.5685
19.6453
45.3755
105.443
23.5893
25.01
24.4086
24.6446
30.094
26.9623
27.3169
31.6154
65.8891
27.2457
28.6898
41.7411
121.446
5.42845
59.2042
11.5041
28.6319
26.8178
8.48333
9.08868
7.70214
24.5099
74.7299
8.79645
35.6464
29.4057
14.8127
5.48184
69.9947
39.0547
9.66208
22.0053
23.3354
44.7823
8.74376
20.4859
19.3842
17.6128
5.48227
60.1408
5.2117
8.89174
15.8236
125.589
7.89597
12.6078
9.44395
67.6426
32.9897
7.20597
21.0502
15.304
7.87094
22.5183
6.24538
76.4254
22.726
26.198
38.456
8.29941
30.818
7.81694
27.8751
20.6471
9.75284
42.712
30.2556
8.7323
17.63
8.92944
16.7946
10.7687
45.9923
32.504
48.382
16.2544
9.80281
19.922
8.50217
26.8848
15.2898
34.6426
87.9572
6.43605
22.8452
13.7577
7.18424
25.0412
32.9098
41.2803
95.5394
14.9681
17.177
15.658
6.67233
11.8666
19.9479
6.09443
82.2425
12.8886
8.9476
28.1268
8.05619
35.6877
10.214
8.89284
7.82142
15.0946
5.81031
21.4475
22.7585
9.94185
16.579
12.523
34.2453
18.9015
8.74939
39.9941
7.8838
20.7237
16.2734
22.3634
131.069
8.5788
44.1329
20.5279
22.1484
22.3277
9.55485
7.03846
10.973
9.01435
38.5186
8.86869
18.2313
46.0415
18.1249
47.0452
40.005
8.06102
14.9219
7.97229
15.373
7.58779
112.023
27.3937
15.5624
16.7173
30.282
41.3882
137.131
7.03117
9.74007
64.6239
5.09409
143.683
7.3191
21.7421
22.17
21.5539
22.6443
20.5524
19.674
20.6025
19.826
24.3874
27.4254
30.2571
23.8893
17.0836
19.0696
19.1789
18.7381
20.5771
20.3882
16.7558
17.2436
18.7691
20.8705
21.3862
20.917
7.46582
12.3985
13.542
27.8238
95.1745
9.73055
19.6809
14.3752
8.21485
38.3855
36.4202
15.6944
8.45518
6.95877
16.391
39.2227
9.59931
17.595
16.7593
10.4297
7.54605
12.3009
122.687
23.7241
32.0022
7.14305
13.1669
14.2673
106.894
7.45295
10.8174
13.3905
39.9266
8.87221
40.4104
16.4472
9.01293
16.1746
9.05325
15.0663
9.92795
4.67359
5.2573
13.8564
8.75306
13.9161
13.1266
29.8165
13.2059
13.8347
19.5398
40.4705
37.7893
20.3382
17.9712
40.0836
99.0506
18.8977
19.5429
20.8323
18.0556
20.1524
22.4232
20.8662
14.9856
19.8106
18.956
15.6925
12.6241
17.6356
21.9941
21.1754
21.1333
36.0366
8.37091
8.5191
12.875
19.4454
11.8322
25.4563
13.7404
34.5042
130.777
14.6191
27.3291
38.0732
8.67648
8.55172
15.8604
38.6855
38.1037
16.2705
11.7976
122.457
17.579
10.2967
18.7565
18.2578
18.5132
18.6542
18.2956
18.3388
18.3098
15.9686
18.7264
19.9948
20.1642
19.3534
19.7279
18.8068
18.9772
18.1697
18.7713
18.8762
19.1371
19.065
18.5236
20.3496
19.8595
18.7551
19.3863
15.9208
14.8206
31.6099
66.5072
16.1981
31.0339
18.6242
15.2065
11.4963
8.54085
9.79114
17.882
55.7231
11.7872
13.1843
10.5486
12.6184
14.0474
14.2155
11.2409
8.27713
7.08038
12.6514
13.0745
13.6356
132.829
10.844
15.7273
133.683
8.0504
37.0326
7.5744
14.1786
33.2642
15.1263
44.2448
5.9419
23.9261
8.47912
16.2831
13.8277
32.1814
10.9052
17.0365
7.60653
19.0037
12.9602
17.3564
16.4428
37.2572
12.0862
7.7406
7.63695
12.2454
12.7852
35.1277
36.1522
7.86263
7.79137
12.9457
138.337
9.66399
129.986
26.8038
8.84791
15.7142
14.4131
17.4986
16.582
14.4313
15.562
9.18092
10.8948
10.8335
11.844
12.4786
12.1063
13.4133
10.6283
11.2312
13.3653
12.1403
17.8305
16.5959
13.4337
12.8503
15.4739
13.9629
54.9828
5.2894
4.80167
148.444
19.6349
20.8692
24.6924
7.09538
16.4973
9.23544
15.1136
38.3346
26.8974
39.2547
10.8828
8.24963
12.5176
6.89786
13.5527
17.6376
11.393
18.5023
19.4641
20.2233
21.2147
22.3601
21.9615
23.7706
17.2774
9.69066
11.2673
15.8516
40.226
40.1333
18.9632
12.8634
12.8832
18.9289
7.94761
14.1673
36.1288
36.9009
11.7507
14.9731
7.67568
14.3261
12.2396
9.19789
10.7929
6.39087
2.99475
6.47513
2.84725
10.5686
10.6512
16.8344
39.6815
34.5716
19.4327
11.4765
12.2578
13.382
17.6626
12.9233
17.9752
9.85839
10.0236
6.27516
3.06839
6.02834
3.04397
10.5048
12.0808
10.6306
15.058
14.1201
14.6434
14.3858
14.22
11.0709
47.7953
9.09352
14.1989
9.84685
27.6704
7.85704
137.978
7.19837
22.4375
50.7593
4.65991
15.0088
11.8223
11.0173
16.737
15.1323
14.2634
7.69261
10.3054
8.86078
8.93354
40.6138
13.7462
40.1233
8.81773
13.5923
9.99123
6.60398
11.409
17.5697
15.9503
16.2495
38.9996
7.39287
11.6281
12.1924
19.0555
20.1879
22.272
12.4927
18.0352
12.7996
8.15118
8.26196
17.0943
17.8354
17.7241
8.26284
8.30058
16.876
12.2903
12.5724
17.5127
18.0855
17.4687
7.29796
9.03177
41.9339
14.1491
48.5779
11.2789
14.6601
16.8556
17.3113
17.279
17.6466
17.8676
17.5926
28.2862
25.204
223.942
170.011
8.46492
11.826
8.5457
83.5805
32.0451
64.6004
24.4104
9.38739
44.1619
12.0932
8.75517
21.808
17.8453
16.4758
15.0884
20.801
18.3036
15.6461
15.7196
14.9555
36.6655
15.5792
14.9873
15.5618
14.8487
18.3747
18.5423
18.5046
14.8463
18.6257
7.42346
34.1712
145.468
16.0312
16.0018
15.9313
16.1311
12.6337
16.1312
19.8337
39.4076
12.5908
15.8889
20.064
39.5124
14.9396
15.5635
14.9749
15.5259
36.9397
8.41208
36.7563
8.38723
16.2554
16.0477
16.0657
16.2076
149.992
9.82927
8.93493
43.3092
37.2662
11.7956
14.6827
18.1207
18.1822
73.6051
20.359
136.778
14.9848
18.6713
141.774
8.33063
80.9415
8.77733
146.158
11.2831
37.6222
37.1958
27.1707
10.4246
31.1087
11.5291
8.10222
12.3203
15.4865
19.5696
38.3749
12.2432
15.6499
19.267
8.28166
35.9934
8.18286
42.214
40.3499
17.2164
16.5107
27.8277
19.3496
24.195
17.7686
15.4172
11.4755
13.8415
13.7679
34.9068
20.7606
12.592
7.77935
15.6974
73.0784
8.17281
13.1997
9.24062
9.49643
9.85829
72.5486
7.98922
13.4291
9.70174
6.78096
7.3646
13.8126
34.6837
15.2014
7.57202
56.2074
9.8061
159.783
11.3136
24.4769
7.89165
32.1182
41.2865
14.7168
12.3605
10.5892
12.2987
15.7609
16.3458
12.4451
14.9892
14.9721
16.3635
129.582
30.7014
6.60167
31.4017
126.946
7.64151
7.2507
9.80674
9.319
14.5867
16.4034
7.97061
11.3809
11.6374
7.91429
16.5591
13.8691
10.7447
9.19426
14.4612
14.0409
15.6067
15.476
15.5137
20.4584
15.8572
15.2038
11.9859
14.2826
13.6636
14.0645
14.5809
13.8314
14.8928
11.6324
14.4771
14.6756
30.6518
16.0646
16.5916
14.7632
15.2367
34.5309
7.82882
19.0318
18.4299
7.90563
22.8655
129.047
34.1812
20.7135
32.8281
22.0526
38.1251
15.0972
17.7874
9.96408
11.8952
13.5376
10.6484
17.5704
14.2181
7.49075
40.5651
8.54177
140.885
32.5435
279.942
8.89217
8.271
29.9326
20.4539
33.8747
27.9263
51.6965
20.9159
36.69
73.1495
36.5294
12.7696
12.2411
13.8534
11.8452
108.325
8.4191
28.4742
8.2237
9.89453
6.92413
18.8098
7.28034
9.87463
47.9824
7.01413
9.91919
16.2513
15.6217
40.4177
18.235
15.9213
17.7187
15.2294
47.8912
7.79347
10.2615
10.4631
7.57201
13.4466
27.0448
14.6482
13.8592
40.601
17.2849
16.0951
12.4838
11.8853
12.4757
11.849
18.4033
15.463
18.5044
15.8902
38.8494
7.40817
10.1503
7.45558
10.1074
14.2379
14.7398
39.1977
14.1755
39.0458
14.7106
15.8005
18.7156
52.7634
235.062
11.5047
31.9027
28.3375
25.5407
30.5533
32.8949
89.849
27.4794
13.511
10.7469
14.3462
15.9632
14.3272
9.70355
14.8723
14.0338
27.039
23.7869
19.546
16.3905
17.6661
13.9448
15.3253
16.7742
11.6379
9.1512
9.09287
8.63769
9.02583
8.94709
9.09042
9.15192
9.10705
13.1823
9.40452
12.8049
9.89741
11.6396
13.1815
9.43475
9.22119
9.75266
9.33631
10.5219
9.86841
8.60076
8.90177
8.70917
8.70283
8.69786
8.64661
8.93886
8.73023
8.72876
9.36347
8.70989
7.17201
8.68423
4.09395
4.67258
4.79598
5.92415
138.56
17.0753
15.1272
8.82302
8.88384
8.8478
7.3567
8.30658
8.75302
24.2908
4.3741
8.55092
8.14221
6.57277
6.86089
6.85304
5.31208
46.6868
4.89445
5.13709
393.162
68.3194
184.898
59.306
70.1347
52.8586
68.3946
36.4295
209.603
35.0871
29.788
23.5921
13.5805
14.0905
26.8467
22.5572
41.5114
110.759
30.0505
55.273
52.4222
90.1219
33.4617
11.9891
50.0734
15.2597
25.019
160.79
11.1289
93.3219
15.599
383.024
12.7117
27.2403
160.954
11.9829
13.8916
21.5704
366.7
11.9594
14.7096
29.802
25.6406
18.0492
501.229
47.6727
28.4031
32.4302
126.874
69.9059
497.412
114.921
184.702
28.7854
435.054
32.9821
18.7609
106.976
56.5185
432.137
14.5832
181.441
41.8549
58.3813
51.4646
43.1253
490.198
461.494
104.011
184.505
63.3955
59.2836
47.1296
104.507
38.25
29.2946
31.5513
36.2274
23.8379
17.6424
204.494
173.313
57.2781
64.8784
17.4173
88.2905
55.5552
28.2922
22.167
31.836
85.9851
38.3254
43.7318
44.98
29.4044
39.6325
12.4428
156.654
21.981
19.9352
31.1471
12.4062
360.264
31.6822
37.226
14.0309
20.0783
13.8096
18.9405
29.9684
20.965
11.9121
21.607
18.8547
12.0807
13.3895
36.7367
30.8187
27.2444
13.9217
19.7044
152.015
377.12
14.0148
90.5019
159.595
384.385
14.0748
101.269
14.5343
20.441
12.9723
55.5002
42.9534
62.6751
41.8437
37.2669
23.3367
157.126
32.8958
27.7235
86.2749
41.8824
47.0576
34.1418
36.0099
32.8248
18.9042
21.1896
15.8202
43.8469
37.8411
26.9765
24.862
32.8689
27.091
26.8565
29.0668
13.2792
27.6264
19.1132
30.9753
33.8817
35.9395
29.0706
29.608
25.8036
31.6968
23.3694
13.813
366.487
23.8832
19.4603
17.8375
388.148
47.7983
37.7245
40.7973
41.7818
160.659
358.085
37.0652
27.0013
33.0153
30.9628
53.5699
150.908
87.5381
22.9796
30.4186
25.2478
28.4479
13.1094
402.869
12.686
31.3017
35.3771
34.4354
32.9355
23.3961
15.8669
17.5739
21.5009
36.4021
34.4193
38.0228
32.7265
36.3222
36.214
35.7317
36.7914
80.3137
10.4634
147.492
10.9703
12.479
11.5286
19.3068
17.0624
13.4423
54.7336
44.6854
162.056
52.0241
56.4039
93.1778
30.343
34.1555
58.4251
40.0995
18.0352
20.4371
24.5922
14.1791
14.02
415.397
12.1283
17.9876
430.972
161.974
29.349
36.2337
21.0163
30.0265
40.2379
35.8018
24.5979
19.9918
24.4804
15.7978
15.7216
12.549
15.5432
16.3408
12.5625
351.248
11.0609
11.4037
358.207
31.4817
31.3876
29.4475
22.7968
23.7359
25.967
30.4979
26.5496
28.4616
31.6628
32.7129
31.7573
28.9662
28.2696
30.4261
32.1133
29.0018
30.9704
39.3263
33.3642
35.295
34.2625
33.1606
34.5399
32.405
32.6161
34.004
16.1181
22.4628
20.1986
20.1357
25.4759
22.3388
25.5651
26.4647
23.6377
29.1641
28.4499
26.0037
17.1585
15.4502
20.0772
24.7634
17.3615
22.0574
17.5093
20.765
15.6347
18.4836
12.8774
13.496
33.8116
30.2541
30.873
31.2909
25.7362
29.6996
26.9839
23.5597
27.6493
140.391
10.9834
78.5474
12.8058
383.074
10.6374
32.1096
30.5009
33.3451
355.493
133.064
49.2972
77.3482
42.6729
33.3782
38.5126
14.8675
313.78
9.90403
110.538
13.3332
21.3359
17.5779
19.3169
23.3563
23.819
22.3611
106.919
9.52574
66.4423
44.4047
115.93
37.7786
36.7298
39.5742
45.4078
34.7996
68.8172
314.592
14.2012
313.507
12.1167
117.002
10.5892
31.4793
35.7166
33.0751
33.0866
30.8952
29.4713
30.1167
29.9168
26.9747
28.5507
28.0166
27.6393
29.1104
29.1038
29.5912
28.6633
28.5816
28.9943
29.3938
28.1796
8.10468
96.1674
254.113
9.38246
10.7781
57.2434
55.8963
37.297
42.8642
9.00851
9.90606
11.728
7.51461
100.459
267.243
104.744
60.0235
15.2859
11.7208
13.2531
13.7988
93.6017
232.802
7.73621
26.4376
26.5343
36.3972
27.4274
56.8719
28.0295
58.7641
30.7535
33.4389
264.84
28.7998
29.2432
37.7758
29.8189
33.2954
29.012
60.8928
42.0461
28.604
28.3687
105.41
71.2321
276.861
28.7665
28.7411
26.0923
25.7313
27.7267
26.6401
27.9329
26.3523
26.4985
26.4942
33.0215
30.5344
27.0359
29.9577
27.0038
28.283
24.7095
24.7033
22.9523
22.2661
24.6131
23.7099
23.9573
22.3613
26.045
25.1429
25.8511
25.3828
26.4497
26.2875
25.0178
25.1407
26.1022
25.2628
25.9136
24.6092
26.5707
26.4512
24.6102
24.1485
9.21163
80.6873
7.91996
10.7032
9.99743
37.6773
9.55616
8.51327
11.1844
10.9263
51.2392
53.0747
28.5669
22.0008
21.7867
22.5787
28.0446
22.6788
24.1484
30.1272
22.5433
24.3411
11.0728
11.1165
16.0337
16.0817
12.576
15.0388
12.701
15.2416
8.15808
8.21625
8.80002
26.2018
26.7488
25.2589
24.4807
24.6481
24.7497
24.6674
24.2129
24.5583
26.2666
25.0224
25.2313
7.92837
13.476
15.5554
10.0289
12.936
7.41939
13.8327
22.3037
22.2765
22.1036
21.8554
21.6456
21.8669
22.3815
22.2076
22.0992
22.1363
21.6987
21.9058
23.0716
23.4957
23.624
24.2796
24.0101
24.0819
23.3146
24.0029
23.8287
23.7357
23.8295
23.8791
17.1381
16.9364
17.3242
17.7307
17.669
17.6529
17.3406
17.6029
17.5029
17.1545
17.5386
17.5005
14.8385
13.2285
12.2611
14.3446
11.3642
10.4138
8.76375
17.9418
17.9774
18.1946
18.2441
18.5138
18.3682
17.922
18.0354
18.1462
18.3653
18.7073
18.503
16.6568
16.479
16.0207
14.6933
13.6529
14.6381
16.1958
15.4763
15.4916
15.7632
14.3386
15.2425
15.1495
14.1587
13.4703
9.06753
14.9197
11.5686
12.3709
12.3774
8.17042
10.9079
14.9743
14.2018
14.1714
14.4167
12.8242
13.8752
15.511
15.2426
14.7703
13.3281
12.0544
13.2063
15.2074
28.2772
14.9117
15.168
14.9185
16.2238
16.3797
16.377
16.2186
16.2777
16.4652
16.2166
16.4455
17.6919
17.8059
17.5732
17.9291
17.253
16.9822
17.1288
17.1141
17.3082
17.1182
17.2127
17.206
16.6798
16.5995
16.6274
16.5805
16.7773
16.7274
16.8895
16.599
16.9491
16.9453
16.8925
17.0161
30.8849
15.8142
18.7547
19.1721
7.06545
6.75552
18.9508
30.2105
30.6082
6.79037
106.002
105.451
9.08752
12.3473
14.2218
13.557
13.7044
14.918
15.1302
15.0068
15.0434
13.7618
13.2317
13.597
13.4121
14.467
14.4824
14.5962
14.3409
13.3539
12.4102
13.3638
12.8262
13.0508
12.9892
13.3645
12.6343
13.9252
14.2922
14.1036
14.1385
12.6608
10.4994
12.5558
19.9474
12.6082
12.6075
19.9338
12.8074
12.9649
12.8819
12.8867
12.7136
12.6202
12.6614
12.6714
12.8143
12.9083
12.8735
12.8431
13.0203
13.0414
13.1092
12.9584
12.9918
12.9554
12.9255
13.0044
13.6478
13.6931
13.6087
13.7236
13.5771
13.507
13.5835
13.4921
12.9008
12.8231
12.9852
12.7369
12.9978
13.0001
13.0989
12.8963
13.3423
13.4413
13.3686
13.4203
13.2269
13.0779
13.1742
13.1335
12.5852
12.4419
12.479
12.5574
12.7463
12.8727
12.8253
12.7865
12.3357
12.0771
12.2584
12.1576
12.6014
12.8514
12.7359
12.7262
12.8766
12.9098
12.9535
12.824
12.8998
12.9402
13.0061
12.8243
78.9724
6.12758
7.82263
8.97855
5.41648
9.11054
8.87647
19.226
10.2698
9.43414
10.0183
18.8512
10.0672
9.05992
9.40364
9.89383
10.3214
10.3749
10.393
10.3111
10.552
10.559
10.6288
10.4382
10.4958
10.423
10.4473
10.4727
10.8532
10.8341
10.7459
10.9411
10.8422
10.822
10.9004
10.7618
9.90362
9.74502
9.99194
9.66808
10.0632
10.2839
10.2346
10.1298
10.6279
10.7562
10.6937
10.6933
10.4951
10.4111
10.3792
10.514
10.0596
9.87809
9.94813
9.99053
10.1981
10.3258
10.2667
10.2529
9.59
9.29514
9.5276
9.35852
9.91826
10.2193
10.0607
10.0883
10.3507
10.371
10.4237
10.2959
10.3447
10.3508
10.4546
10.2299
8.47114
6.49103
8.75003
6.42863
6.82305
8.85473
13.4231
8.17685
59.4208
13.7752
8.72218
7.6072
8.1324
18.4975
8.37773
7.76659
8.47122
7.24621
7.53833
7.94466
7.784
8.77359
8.01846
7.30248
8.46346
7.96787
8.58438
7.404
8.55682
8.19787
8.0579
5.00922
71.7642
4.34113
7.28336
7.1795
7.41285
7.04905
7.36254
6.74651
6.99537
7.43537
16.4726
3.79771
4.16369
5.35146
5.83424
3.72824
68.1369
7.27081
15.2839
7.04081
7.37404
8.86941
6.81962
6.584
6.52435
6.76312
6.83799
6.28982
7.24949
5.69966
65.929
7.38756
9.70152
4.69788
4.07391
15.6697
6.10234
7.76614
3.07554
8.09301
3.13419
4.62444
8.28967
3.62565
8.57537
3.58913
9.62524
10.5854
2.81311
11.3442
3.39244
31.5513
66.9029
82.8847
59.3205
45.8647
47.1625
25.1028
211.657
33.602
49.4459
25.224
42.9412
212.824
29.8341
64.9117
77.9447
35.147
202.451
215.801
95.795
50.2994
77.7243
91.2009
138.467
70.7718
89.9477
243.09
232.132
29.0862
87.1826
224.624
37.6813
104.234
39.0286
529.447
90.4472
182.198
49.1659
147.998
166.229
297.443
111.296
72.9953
35.9023
62.3797
107.69
335.048
150.8
124.397
144.945
101.478
282.654
115.161
92.8359
113.224
99.9243
109.994
96.6515
62.2338
77.0229
98.596
101.694
93.6498
102.111
114.689
48.6986
84.9568
39.231
937.555
159.584
135.231
176.979
123.532
59.0626
79.8524
38.0237
128.615
728.808
128.291
143.841
201.297
254.905
69.7785
151.493
96.8117
112.878
760.145
154.623
273.171
94.4362
44.3522
107.799
160.823
336.164
89.4148
23.8971
83.7472
103.477
96.0799
34.9212
30.1451
87.3485
47.4582
117.816
72.4965
114.261
63.0507
45.2867
64.0757
302.724
26.3759
44.3563
35.6596
53.599
122.935
35.3271
313.588
25.9455
41.588
321.994
131.55
40.1275
86.6673
67.443
64.114
210.478
21.2544
52.406
193.741
87.0321
20.6999
203.161
66.796
73.7245
197.872
174.802
27.6676
31.8576
22.5112
25.8126
20.0181
49.6322
230.851
22.8791
34.1197
61.4838
79.2319
26.1232
58.0747
28.8176
37.3194
53.2199
328.489
31.8444
306.22
292.823
57.5727
102.932
113.197
54.575
37.2905
43.0275
30.7592
224.241
90.2923
297.564
256.545
26.9712
70.2796
96.5951
90.4545
23.3949
31.4096
179.95
27.9327
72.4137
35.545
181.486
63.4246
80.7943
65.8054
69.9853
27.0124
22.7549
32.9631
22.2134
96.9336
24.6283
91.6812
70.0897
222.232
81.9198
51.0233
106.002
106.24
67.863
45.5321
27.0799
193.168
74.3329
252.876
46.9217
603.355
28.2837
156.697
35.8131
275.954
83.2688
37.4549
39.3434
219.569
234.685
42.4546
40.71
25.7565
741.582
230.33
42.3973
37.4767
201.642
37.3724
191.68
251.15
33.7812
155.318
31.0863
235.913
182.691
34.1326
41.0689
188.365
221.26
32.9573
63.9806
86.0692
22.3332
202.418
88.5484
50.5461
43.0529
235.33
71.6389
180.533
29.6754
23.2534
24.7003
38.1549
72.7494
192.091
32.5003
34.3912
38.9237
185.411
101.457
32.4172
22.4968
21.525
181.643
30.243
77.5671
76.7413
191.812
31.0119
650.374
39.199
174.429
90.0493
20.6967
291.639
28.6335
35.3513
68.0848
21.3326
69.9031
126.73
329.807
141.521
36.4655
56.2788
29.9344
113.546
332.54
42.1943
36.8677
29.7341
20.9967
117.116
138.532
81.5423
25.5277
33.6333
315.416
93.7604
39.6257
314.608
63.4608
27.1616
57.5447
110.656
31.9491
22.4997
51.1359
25.9357
34.8429
27.0996
88.5258
30.7094
299.73
22.4084
89.8772
85.2528
27.5621
26.0644
54.6017
42.7152
46.9888
74.7106
32.184
145.114
110.527
28.0489
64.7016
42.5714
282.882
34.254
25.1669
72.404
136.788
30.7094
76.6218
33.3724
348.449
312.906
134.906
77.0443
24.6471
111.217
33.0029
30.7148
268.763
125.59
137.813
29.1038
86.5987
227.635
54.7
656.096
126.086
17.4245
210.623
28.5532
237.963
29.6055
48.8892
196.635
23.2395
46.3234
23.1054
159.934
85.2315
26.2013
51.2786
32.2944
248.499
145.888
196.929
32.4749
28.0988
137.733
28.5333
139.515
26.4917
26.9809
28.5656
27.5332
137.183
120.547
23.2788
23.4088
134.511
30.5207
149.962
30.1396
146.916
25.1872
132.178
23.6212
128.904
22.7129
21.2072
43.9274
47.9454
77.4265
19.1162
19.9626
114.809
22.3586
22.1934
132.507
133.373
38.7648
19.9989
155.726
39.1628
20.8007
131.308
13.0587
578.683
15.2658
87.2903
206.338
33.6947
151.09
34.1899
155.917
17.0687
16.5264
157.703
19.7009
35.5403
148.639
32.7735
17.4574
28.1752
10.7301
104.425
10.4408
9.48856
26.9898
10.0992
21.3954
109.222
19.9032
95.2217
96.356
19.6806
64.195
196.942
573.527
40.7026
35.6099
159.269
17.057
160.526
17.2119
35.2894
19.8646
19.1622
93.8155
19.3702
92.7596
36.4505
164.476
163.467
36.7305
18.0339
43.4367
25.7228
29.6709
47.0639
16.7434
23.0526
39.2124
22.2642
13.3694
13.4635
13.855
13.6098
38.2419
21.7031
21.9138
12.9807
18.6331
42.5333
145.176
15.0622
25.2667
32.1121
131.084
82.0022
14.4901
90.5434
30.191
28.6116
15.3112
13.5664
75.8931
27.8252
119.225
16.2344
16.4008
126.053
14.2921
75.6256
23.987
24.7751
14.0895
74.6497
112.161
24.7974
25.0484
16.1843
110.429
16.5998
13.2045
73.9716
25.7919
117.179
15.918
15.6079
111.687
11.1822
456.25
61.5439
21.3732
67.3156
19.4308
12.6575
18.5434
25.6224
26.3058
67.5118
151.266
43.0041
19.0284
29.484
27.4102
38.3875
39.6861
108.72
12.1677
30.4685
30.9876
106.203
11.8898
114.047
33.1828
116.987
32.432
20.1649
19.8151
89.2368
12.3967
87.0188
11.6444
9.82451
54.4533
19.0506
29.9106
77.9032
427.211
24.4333
12.805
13.4558
23.2368
19.6268
10.5618
10.6463
19.4671
84.7381
7.52643
12.9686
27.2154
99.328
22.7342
91.1291
21.3382
12.0768
22.0268
11.6608
85.1586
382.89
14.4699
18.0063
13.1891
10.3709
9.1439
12.1775
17.4276
12.7705
18.6925
13.3092
57.8868
339.59
63.617
14.0662
17.9838
19.8477
15.036
81.5745
20.5694
14.7085
14.0227
8.83888
8.78438
14.1686
24.336
89.8489
23.8955
8.92671
15.5536
65.6553
16.171
66.4239
23.4984
88.8429
23.589
13.2661
8.2412
8.37899
13.0196
79.4081
9.68185
9.56881
17.4938
70.1433
68.1428
17.9172
80.7561
7.96382
15.0708
54.7091
12.9264
38.2713
19.9272
72.5767
75.484
18.8255
11.0897
7.68958
12.1706
6.82284
336.587
17.8709
22.0813
18.1546
21.6282
8.06004
64.0283
65.3696
17.5434
17.3149
7.60817
8.45656
66.7502
17.7705
66.1314
17.9565
8.58009
65.478
7.23011
7.46794
10.0371
13.3589
15.1099
8.92751
59.8705
7.2396
11.4271
9.44536
12.62
8.51016
13.5154
12.7038
9.26859
64.0235
18.6824
277.842
21.228
15.5216
6.67439
10.2672
10.1549
6.73799
58.2408
15.6526
6.85046
10.0738
6.43123
9.89129
6.90775
59.5585
10.4111
10.5209
6.83696
61.6764
16.5251
58.9801
16.253
7.45997
60.8342
9.95414
61.1441
7.51026
9.88457
12.5906
16.1248
17.6047
12.0969
10.2719
7.44047
10.4254
7.35486
14.1836
19.7749
14.1816
19.789
10.6952
7.52245
10.5519
7.62185
14.6235
8.77832
5.52014
48.6946
5.64078
8.51206
13.0234
4.92749
45.1153
3.28311
5.93566
47.2212
5.41619
5.60853
11.7225
7.47115
12.4514
8.54369
11.1861
6.82262
43.7848
5.22567
5.17713
6.88266
11.5313
5.01044
37.6822
4.79301
35.7656
5.28224
44.2544
5.35241
12.0571
7.47753
11.6989
7.21382
18.0798
17.6023
52.4405
12.7127
10.8832
13.0836
10.4977
6.36655
8.13526
8.23532
6.28438
42.104
4.635
4.78403
6.95397
9.19576
7.44705
8.76348
182.009
5.85265
5.16434
7.42296
5.07788
40.0892
11.0197
5.00807
7.13039
3.40475
28.2822
3.42343
28.3644
38.9619
10.899
6.85409
4.82026
7.04958
4.86064
6.03583
4.578
12.2626
8.38176
4.62806
6.25408
3.3412
3.32753
21.6593
8.66224
6.74188
4.71335
6.33952
4.68287
8.48388
9.6304
8.43164
9.71294
7.43178
6.33617
7.49273
6.28115
3.44678
4.73347
4.79447
3.40197
8.98699
3.54409
5.00708
3.57666
4.95645
9.14834
31.5216
4.63743
3.28693
7.42567
5.5498
3.23745
4.33885
2.08823
15.5799
2.14151
16.1068
6.87869
5.43872
3.99116
2.99833
4.25506
3.06829
3.28891
2.52427
6.12491
4.72122
2.59993
3.63764
1.8799
14.1993
1.85918
6.29063
4.77508
3.8207
2.72517
3.68415
2.69583
5.47673
6.25127
5.44146
6.29306
4.66638
3.72757
4.70829
3.68945
22.5219
2.42052
2.4837
4.4683
6.82906
24.6383
25.3506
2.71977
2.70125
4.6341
6.90131
24.8687
2.35349
1.59612
3.99597
3.02922
1.56549
2.21434
3.81504
2.97483
2.03482
1.47277
2.17204
1.4852
1.52371
1.07491
3.38425
2.62843
1.29351
1.90437
3.5127
2.65785
1.98041
1.35012
1.9258
1.34058
2.90582
3.58416
2.87727
3.61746
2.24134
20.6061
2.33061
20.2286
3.37219
5.15583
2.11861
2.75654
5.31796
3.61514
3.87994
5.65738
2.22024
2.79245
5.56222
3.6679
1.01719
1.97787
1.42201
0.987155
1.8833
1.39733
0.923598
0.969428
0.736124
1.62993
1.20507
0.837779
1.71379
1.22448
0.884748
0.850824
0.131193
0.165178
0.197349
0.176522
0.32184
0.293925
0.225608
0.270813
2.38587
2.56387
2.21398
0.882805
2.00603
1.83223
0.852842
1.95401
0.488199
4.39848
0.501608
4.50566
5.39511
0.613359
5.22988
0.589844
0.605084
0.398821
2.94016
0.549636
0.103166
0.132383
0.13331
0.535329
0.221024
0.155938
2.12749
1.19418
1.11077
0.92064
2.76423
0.297073
0.86163
0.94894
2.74259
0.297444
0.86445
898.136
544.018
39.0661
10.1634
83.2504
591.036
257.724
681.386
3.08165
3.19717
5.98489
4.51756
20.3165
8.42873
8.91833
368.762
9.87428
83.3917
6.76348
1643.37
131.082
3.29924
3.46999
44.2237
3.64641
2.4332
36.8386
3.22288
23.1123
8.69374
8.94092
37.6153
32.4994
26.5526
10.6465
12.9704
50.6434
10.0323
26.247
22.3676
127.863
12.6649
33.2949
7.98568
8.93396
27.5918
163.586
3.80009
1.14506
12.182
1.80435
1.72627
1.58687
1.05327
1.72819
0.940812
0.752585
2.19843
1.83089
1.35168
1.98664
0.934444
1.45546
0.514329
0.851333
1.20955
3.32103
0.487232
0.67101
1.36631
3.00025
0.546602
3.23415
0.714635
14.3979
66.3763
7.79619
22.3913
219.127
31.1966
16.5068
10.1148
4.40441
3.66352
28.2771
50.646
10.7671
9.36075
159.98
1.17712
1.06352
1.69293
1.84244
2.48966
11.5258
2.19649
0.907381
0.961121
30.506
8.49283
5.80308
1.70239
413.636
480.118
43.9209
2.24977
399.34
1.78026
75.5414
1.8213
2.25311
139.149
2.33164
2.1348
1.9019
2.15829
2.46529
13.4931
13.4419
4.37675
15.9798
4.3793
15.3386
2.14173
0.916782
0.523029
0.771469
1.51153
1.25923
1.06597
1.35971
1.64788
1.16475
0.318803
0.743703
0.641692
19.6621
13.2442
24.4975
34.9453
35.1302
9.23464
10.4885
16.2284
34.7508
31.921
6.87837
36.8075
16.3228
12.885
15.412
5.57889
26.6069
15.7388
27.0032
5.23379
0.401943
29.5039
5.84196
43.7187
5.34681
26.225
6.59486
8.74409
9.48308
4.88319
5.95058
4.46601
9.89328
24.2041
12.1641
12.0597
6.52774
9.98611
12.0343
30.308
26.2195
10.2145
16.402
15.5724
25.2979
19.8709
38.9332
14.6385
15.4292
7.05903
9.31154
40.5579
44.6273
12.1042
15.8536
19.3642
16.1936
16.5154
13.2559
25.8567
11.6493
8.42543
35.1089
56.5122
10.2332
39.2995
15.4394
9.27804
23.6684
19.6301
54.8202
9.00265
21.059
56.4112
10.2929
29.0563
17.8011
10.5856
51.6968
7.62723
25.3758
8.16785
6.18848
13.759
11.0357
10.8547
17.4314
10.1915
14.4842
2.935
4.48851
0.445598
8.04093
6.22914
6.26587
9.84074
9.02897
21.9355
4.94177
4.48846
0.470941
6.10218
4.12979
7.00794
4.90292
2.89638
0.387294
13.0491
2.93669
15.1332
7.60163
11.4646
0.447179
9.88485
4.47461
4.11562
7.15545
11.766
34.6406
6.24483
19.2618
7.49469
12.6355
5.87607
32.3755
5.48943
12.8661
6.52853
11.052
39.1787
5.76756
35.6473
40.4174
13.9406
8.0706
20.7915
8.31616
20.7715
34.6164
14.1049
12.5564
7.70538
15.1909
24.5054
37.1675
5.24755
8.28526
58.6769
6.69369
10.8618
7.05631
11.217
14.5612
56.2426
33.7308
20.4717
15.4259
16.2301
21.5478
16.279
9.99932
12.6201
5.27487
18.6573
8.45762
10.0531
8.56245
26.4412
4.20269
29.5555
18.9128
4.33326
9.45991
9.47674
13.1189
6.31858
8.0202
3.35664
4.86306
5.82147
28.449
9.77436
8.55037
14.3288
4.43227
5.67195
9.84808
10.861
3.39933
25.0278
38.1455
4.99593
6.44364
9.4483
19.493
43.8291
20.7986
13.0838
8.4188
17.6952
9.35392
16.2795
22.3467
15.8399
15.5702
14.8635
17.0852
5.53738
16.8419
4.95363
15.8712
6.26124
19.4681
5.5439
6.52231
18.5071
22.4751
47.5316
6.05353
51.2676
14.2704
8.558
13.4762
15.0743
17.4972
14.0462
30.4427
17.9179
26.6689
11.2795
4.22752
6.91013
16.0833
0.942861
3.86935
9.057
7.90098
4.81213
0.929889
0.910827
4.67569
0.99198
1.38641
11.9444
36.4855
4.6942
19.5085
5.42395
16.7342
16.148
6.97263
7.59052
20.0362
12.2582
40.7885
15.0441
10.5822
10.0737
4.40369
6.63131
20.8507
24.4501
8.27558
24.9025
10.7507
5.0442
19.6376
10.3239
6.27296
15.6959
14.1704
36.3093
20.5019
23.1881
36.7625
14.0299
16.7944
5.69523
6.5513
21.1488
5.7514
18.9401
5.36041
53.9217
49.2346
18.1424
20.1744
18.9876
17.1703
21.7568
30.5166
31.0023
15.9212
13.9141
21.589
26.6189
13.5103
15.1767
17.3408
46.1579
8.53915
16.9314
23.7654
39.6304
12.5863
3.43519
24.4034
9.11436
8.11201
20.0067
6.255
0.814971
13.0384
6.47742
13.0974
15.6128
17.6819
12.0811
4.39297
11.426
14.0293
13.8024
12.3533
12.5765
9.91853
8.56763
17.7666
12.7163
13.9709
18.1018
14.5987
16.9054
14.5109
4.46913
6.78883
5.24091
41.4914
5.74136
16.584
9.57034
4.96154
17.5324
24.6771
6.84453
24.863
57.9297
25.6027
7.02447
6.12072
17.5296
56.1376
8.91014
6.4497
12.2886
8.12488
7.21304
15.1601
4.39793
49.1798
4.82446
23.6692
9.78338
5.1742
16.9841
3.99146
13.3557
4.73889
1.13152
7.8644
7.05776
8.69527
16.2337
14.2402
16.2324
13.235
13.0399
12.3008
9.27403
9.31125
12.2033
12.0582
9.99923
11.2868
19.6792
17.7649
9.89697
8.33061
8.9894
9.84461
14.9967
18.1277
17.2934
15.0892
28.1793
9.32944
9.0284
9.46349
8.46054
7.91004
10.0967
21.0212
7.96351
8.52898
74.3732
12.3885
18.6919
37.4253
70.9693
20.3839
24.8653
22.2054
64.8041
15.6117
20.4175
29.5265
16.2645
74.8498
11.4829
21.7951
21.6048
24.3876
28.7675
50.7963
11.4001
14.5017
17.1179
30.8941
16.4769
24.0913
22.4957
15.0467
45.6439
48.1302
67.4056
32.313
75.5953
11.4207
57.726
11.3733
15.8832
78.28
12.539
20.1728
31.311
21.869
16.124
22.5261
20.6535
33.9629
56.5757
11.7428
71.3164
31.8403
75.4576
68.0738
30.9165
59.0154
13.1073
20.5958
24.2885
27.0598
18.0511
22.3013
21.0668
31.2665
29.2301
41.1997
31.3479
22.0921
24.0468
10.7695
92.7276
13.1677
20.1616
13.1139
10.2531
64.4306
10.5841
19.5659
11.2478
12.854
29.2746
73.2971
11.5334
20.6289
22.7357
51.3417
44.1857
19.8228
18.5447
86.4926
27.9155
17.5066
32.7425
28.4977
22.4426
36.0371
38.2378
33.3716
7.90142
53.7603
15.6472
23.4211
56.631
29.2993
71.187
41.082
38.0628
67.6764
10.0068
119.513
8.70563
18.6677
62.2099
32.2516
8.08087
15.928
22.7984
33.113
22.8927
63.829
22.1449
17.3253
9.40789
18.9907
15.9231
9.50356
73.1618
21.1833
29.7895
206.442
53.5773
60.9304
72.8364
197.481
218.927
18.0715
33.0056
27.2353
158.141
89.3948
10.8323
16.8472
21.1769
29.1761
9.13452
9.80138
17.183
9.79566
14.5577
16.0617
23.731
16.5388
15.6678
26.8685
52.0905
203.919
26.6568
56.2094
40.9211
26.7689
12.5345
57.1726
231.605
62.9998
191.897
100.333
20.2859
177.375
11.6519
28.483
118.974
31.1089
29.8669
28.1798
26.1009
25.5575
27.3329
25.3699
16.9128
25.3034
16.1089
26.8561
97.8228
69.6744
16.2384
62.9752
13.8788
53.6301
77.6351
43.5194
45.5667
34.4193
35.8446
43.3188
58.9489
54.5635
34.1407
18.7255
18.8501
38.5172
76.6772
76.767
32.4254
30.2408
32.2606
32.5693
36.7153
32.9917
28.5979
113.889
27.9824
42.9685
26.5106
34.8713
15.5066
32.2027
14.1209
26.7406
39.9385
15.673
18.0258
135.724
48.2222
35.1286
27.7211
30.8192
20.0494
122.378
89.3261
55.6405
32.2469
30.0346
35.4745
39.3229
49.3189
47.4875
43.7112
58.9815
104.633
20.9483
358.667
27.29
65.6068
17.0316
16.1365
256.255
233.446
206.131
36.1301
239.685
57.6648
68.3143
245.065
241.389
96.8152
155.065
83.5971
36.0103
89.8935
233.298
18.9259
49.0668
21.9045
52.4625
22.3769
24.165
13.3422
45.5455
31.1483
16.8505
26.4067
27.5096
18.0886
124.935
24.6322
12.6534
49.819
24.6211
35.3852
14.5133
10.2064
23.5791
48.7365
13.2448
56.4786
15.7018
15.6472
15.1496
15.6196
49.3336
26.8917
31.4958
26.6354
60.3959
16.2876
26.3242
31.3889
31.1561
16.4986
31.2597
37.1079
59.8158
31.2084
59.9126
27.092
27.5999
113.552
23.6153
13.1371
112.312
37.19
19.241
60.4256
31.8431
27.6258
16.0806
23.6492
15.6139
102.467
27.8751
37.1559
12.3386
178.025
209.807
97.2005
12.6304
29.6812
40.0978
17.739
11.7527
12.4807
224.365
225.874
28.75
68.9632
68.0427
26.4533
72.1319
13.4869
201.129
11.4351
12.1238
28.2168
14.9554
284.053
118.665
32.5999
48.8831
77.902
26.476
20.1372
358.839
21.4267
353.315
413.156
45.0569
116.977
104.582
46.0775
256.136
330.512
17.7979
16.5479
39.2319
380.068
18.6937
17.343
52.3497
400.179
61.5072
37.2715
14.9716
73.2621
16.1414
65.0598
44.74
234.419
192.698
66.1158
14.8783
235.84
15.3526
223.84
240.513
25.243
9.12495
105.255
34.9765
19.0678
18.6876
97.8418
217.985
51.3099
19.7661
206.873
109.351
18.1054
20.3633
163.957
16.043
81.2198
49.4833
57.4275
15.427
8.36316
31.1999
10.6373
30.5185
43.2196
20.6685
70.773
54.3852
14.0372
190.431
23.5095
29.9614
37.8958
42.845
68.7731
44.7906
117.507
68.014
190.908
8.69201
22.3272
22.6331
6.27256
52.3343
7.20221
15.9023
6.42593
25.1008
13.6127
26.4004
18.3921
50.2903
12.289
127.185
30.487
25.7877
18.4091
43.5403
29.5478
41.7747
33.2921
59.1493
6.04634
64.9349
10.4292
54.0948
20.7566
28.4042
40.1518
23.4161
21.9499
13.0309
22.8063
10.0974
18.0303
6.37154
22.6224
16.278
52.5347
130.061
24.386
16.3896
8.20325
83.7778
67.952
249.586
82.3515
25.0446
41.7364
46.974
11.9665
26.1283
83.4475
33.428
56.1431
64.3986
9.1567
10.1134
220.313
11.1321
23.834
17.6964
6.51719
41.3208
31.7634
12.8557
32.1053
7.87
87.5309
15.1693
33.9599
25.6543
9.33685
7.94542
19.4039
28.8563
24.8772
11.7896
85.7303
40.7568
65.8574
7.60181
9.42133
31.6095
13.3782
11.2576
9.52145
21.7785
8.66503
10.2073
28.5593
32.1773
72.9284
17.2025
11.9815
23.6176
17.2566
9.05419
9.501
12.4332
34.4867
30.6751
7.27816
71.8343
26.4237
11.4997
8.4563
68.1055
30.4038
32.2214
12.7458
9.53853
27.3787
9.49631
11.1793
31.2518
7.96813
8.70501
26.4316
17.4436
27.4681
10.5021
27.7844
16.9105
11.7509
30.7394
8.26513
7.52707
68.5674
18.6711
7.55307
66.1187
24.6933
30.2469
27.7414
30.4074
10.2842
9.92647
19.1622
9.3491
93.1677
28.8767
33.5941
19.4916
32.934
10.9589
15.7506
26.4219
9.5649
10.0986
30.5202
32.8783
10.2118
31.9679
52.9934
142.658
84.6723
22.9793
8.42834
32.7416
52.6821
26.8133
32.1246
62.0107
38.1005
44.7242
156.287
83.1585
22.93
19.4706
26.26
15.2547
123.329
10.8415
15.385
19.4658
6.0882
45.8083
126.947
51.6632
28.8881
22.8882
28.0665
24.6312
50.641
111.971
10.1332
5.85999
22.5716
19.7656
29.3581
42.9727
22.5383
10.4495
98.8499
15.9275
20.4054
23.8745
52.5514
43.5252
138.797
46.8424
33.9141
138.689
150.699
49.5805
126.782
12.279
7.41128
82.8106
7.86794
33.9123
22.998
57.0857
31.5085
56.3398
18.6211
23.076
25.671
12.5774
19.3837
6.64569
29.4401
25.2949
6.91608
20.049
23.597
43.8249
14.5582
42.3057
21.6048
10.6865
25.6633
85.67
9.74233
38.6209
11.7572
11.1424
24.6991
20.9108
11.5993
10.1827
45.3139
23.8881
44.1007
13.059
33.5009
18.2425
37.8296
41.311
19.896
41.5212
35.5316
12.1848
12.2276
11.6368
10.7274
37.4461
33.4123
11.9067
11.8191
20.8709
10.0827
34.3953
81.158
8.89437
9.79435
19.9989
10.0225
33.5921
30.7651
32.864
25.1825
11.075
10.2549
33.2009
10.0271
49.013
95.9812
9.91674
38.2849
11.6142
11.1114
17.6039
79.2067
42.6327
12.424
36.257
12.0389
22.2645
50.6211
10.607
21.4229
27.4285
218.206
11.4053
28.4338
11.2524
73.7155
254.328
219.618
12.5381
242.299
12.4376
30.4866
12.0415
239.112
231.487
11.8771
238.122
27.5323
67.5541
65.5296
63.4376
66.2316
29.4983
63.2258
65.8766
28.9631
44.1654
13.4846
278.153
289.4
27.9287
105.046
36.4638
59.08
332.635
168.24
278.02
41.4491
11.8229
23.0943
25.0447
46.8472
54.5751
27.7067
33.3722
81.8522
9.82715
48.8319
41.5865
36.5494
92.5499
11.1945
99.6317
43.3606
39.8899
10.789
36.8323
14.5533
44.3519
42.1034
17.3497
39.3268
40.2069
51.8378
23.8615
12.8501
16.3082
12.1875
40.7787
38.6315
12.7398
101.294
36.4216
12.2439
12.4183
11.8651
40.6278
39.0366
39.8999
30.6672
25.1016
37.1733
23.5601
41.5704
14.9777
14.6045
12.6769
40.7866
12.8719
41.3804
17.0414
16.5006
12.8314
11.2537
35.985
12.2816
37.1111
36.3294
11.2999
35.9896
12.2868
10.5705
43.5756
19.3352
34.5671
11.5697
11.28
22.6072
10.1957
13.622
19.7185
30.3184
89.5564
9.11351
33.302
29.514
30.8374
19.3063
20.825
20.0423
9.63967
9.55155
225.83
40.7952
222.838
39.8781
28.9333
28.2007
225.674
41.9006
46.2022
30.7294
33.2383
11.3471
281.975
55.8971
96.8151
90.9631
11.3868
286.514
268.291
252.682
19.5437
320.795
13.3944
373.447
54.7088
102.528
113.666
13.6996
407.299
189.158
23.7436
47.4527
281.908
259.619
81.1967
87.8064
77.2827
79.2064
240.187
243.639
246.639
9.17585
9.33297
40.8819
74.033
71.3535
26.6378
28.7998
17.3026
18.7889
105.772
92.4877
277.093
331.835
12.0196
12.5648
49.8391
96.9159
84.4301
36.1549
34.2343
24.6978
22.6235
25.091
15.9521
23.8495
18.773
30.725
43.1415
39.8222
33.177
33.6365
39.1498
6.35097
110.287
17.5147
10.4924
13.7404
8.03761
49.6612
10.281
20.7551
25.3515
10.1562
82.8767
16.7437
17.5552
25.8222
28.1401
28.3533
22.4524
21.4387
24.1244
32.8353
23.9985
20.8184
24.7764
43.4675
103.898
30.9407
43.3709
66.0539
6.01907
13.9659
59.6864
13.6062
17.4331
8.45101
99.6873
36.917
5.5718
114.786
52.0686
98.2744
10.4346
16.2794
8.01273
52.982
13.5631
5.28412
23.8519
28.9214
21.3778
41.1753
32.695
26.7108
27.2783
32.0521
22.5073
16.6299
26.8407
135.434
47.4042
31.375
53.3815
34.8114
21.5304
33.3147
30.2656
146.057
69.6065
44.5135
32.7802
9.15812
31.2037
9.46418
28.5711
8.9442
34.3648
12.2578
35.7357
13.5002
42.6802
37.5189
25.5365
8.06311
16.5422
24.0479
6.67706
27.5321
25.6857
87.7669
9.95088
8.89036
29.8367
25.0678
7.40325
7.97701
61.0371
12.3028
4.80413
6.76999
5.24142
8.41044
9.96814
22.451
35.5798
25.3626
24.4608
26.7896
39.3829
22.5325
7.58482
5.82775
24.6373
16.6314
8.07423
29.2509
31.3867
8.47737
9.9667
7.17111
11.0451
8.44427
29.3365
8.36636
7.96591
9.81494
8.9244
5.29814
18.8254
19.7615
28.5738
7.0122
22.3267
21.9316
23.4432
4.57876
6.42571
22.8341
19.8227
7.9651
7.49403
8.0254
20.6013
6.85109
25.4782
31.2087
10.6718
8.50133
39.0098
11.7668
32.7296
29.7706
32.5565
64.988
35.8677
35.8645
29.529
30.7008
31.5944
16.0206
20.4793
22.032
23.5881
25.0001
23.8355
25.1113
25.7268
24.7143
47.6449
123.769
105.144
28.7956
57.3888
31.6259
27.7175
41.2179
60.2059
5.70689
9.19664
43.7271
5.85196
31.0545
28.3988
15.924
25.3883
6.25395
16.8368
25.6744
22.9819
24.0404
26.0118
13.7499
18.5588
23.7959
22.8571
17.0297
16.1555
22.2723
19.6441
15.55
17.2525
19.275
18.7609
5.66474
5.26522
15.4816
7.78802
20.9258
27.4679
22.9825
24.6819
14.1495
5.41936
61.6023
9.89104
8.58184
12.6692
18.3957
17.9173
14.2461
34.8134
27.4087
127.55
23.078
53.7827
5.82849
88.4239
42.2656
92.9103
51.1442
21.2467
17.1624
13.4879
14.771
8.81897
8.11885
10.8872
11.5953
11.7796
37.1163
30.1829
22.8698
7.26739
33.7073
37.6663
37.5995
41.2477
39.7923
39.7203
40.1865
14.8669
43.0039
13.5092
56.3995
30.7321
21.9297
12.9041
51.4286
39.1558
38.9791
13.0124
18.3886
52.2146
18.7342
11.1187
11.2532
32.2907
33.6992
11.0921
11.4167
33.8378
36.6703
44.2378
12.5324
11.9589
50.0699
10.3931
9.06566
36.5243
33.8626
11.7686
11.7921
9.32551
9.51519
34.0868
40.7522
44.3982
52.0887
55.6526
87.6195
43.0731
48.2594
58.3638
60.3182
100.262
33.7694
30.6181
24.4982
37.9259
36.3947
38.8619
25.7666
68.0904
238.601
15.8358
31.5889
17.0618
32.695
41.1189
41.2959
8.93132
26.4819
16.3311
16.6292
42.1618
41.8139
72.1779
38.8133
41.291
29.4031
52.1521
38.4539
37.6858
27.986
49.112
24.3781
41.4706
20.6806
40.4896
51.6199
52.4928
10.2097
28.0109
18.2503
18.1265
46.2986
49.3074
87.4081
16.7582
248.559
15.9396
235.11
72.3802
24.6426
9.50637
243.506
11.6285
130.608
10.1438
230.462
240.968
51.3449
82.3721
18.188
258.341
40.6826
39.3348
26.8075
75.2387
40.8389
39.8876
28.0367
74.2481
274.751
10.486
10.5899
12.6782
337.842
11.5922
311.405
33.5979
17.6819
36.2292
18.543
10.9141
11.017
39.6447
40.8265
70.7777
72.781
37.5911
38.7659
49.0675
69.5751
125.085
15.4002
30.7973
22.5305
15.0295
30.6456
22.3822
40.5946
40.6778
30.4998
8.90484
21.303
111.873
9.05064
30.2776
17.9822
18.4622
18.1452
9.73129
34.8793
8.89721
17.6441
15.1459
8.38353
29.2801
20.0758
27.8608
105.655
7.59219
16.5611
11.5831
52.9404
7.98676
12.9749
10.2514
41.4635
47.7705
16.6501
15.3719
10.6348
40.8205
45.314
53.5568
112.058
18.2636
18.127
31.6871
30.8462
21.6893
18.5236
33.0698
30.0141
290.114
83.3035
9.56023
308.239
93.3741
11.1535
337.341
27.8755
28.8947
22.9806
11.4309
12.8638
7.85802
28.3251
17.1227
15.651
33.9717
8.29832
30.2722
29.7499
10.0614
10.0595
7.716
105.36
10.1532
9.90087
33.5474
10.643
42.18
9.74602
36.6076
8.78395
31.5916
30.2505
10.0966
10.61
10.2558
31.5184
20.5373
28.0791
32.2451
21.3065
28.9224
13.9123
13.9771
21.5127
25.2686
25.3048
30.1798
9.66746
14.0614
8.35294
63.7667
242.464
7.98687
33.1665
17.3336
24.42
30.7234
15.7478
23.5618
10.2691
9.72836
16.5043
31.9704
35.105
37.421
251.245
8.9734
9.26004
47.9231
79.1301
11.7821
14.5447
250.363
9.0817
9.63359
236.616
10.6206
9.69974
11.3419
8.37
5.48743
66.7724
25.8309
29.2152
24.3303
25.639
23.561
23.4796
28.083
26.175
15.0474
41.8194
26.8781
27.5138
22.0054
133.708
61.8776
23.4249
22.0465
33.3236
79.2008
7.19129
6.8837
14.2406
15.3859
13.6391
15.2027
13.3703
12.7683
16.3379
16.2628
14.3354
17.6714
6.10114
9.37329
10.4689
6.23955
18.367
14.2747
22.4565
25.5016
30.3173
16.518
18.2204
21.012
19.6482
17.4223
20.3446
19.1555
19.1712
12.0994
14.6438
105.631
30.7995
8.91324
41.6968
47.978
18.1961
16.7669
8.58551
7.88575
13.5212
43.8819
9.72602
9.17966
34.8076
27.9411
8.62393
10.9668
19.5058
6.91618
102.7
7.77482
24.8638
21.0579
36.3987
19.8084
17.4054
19.0924
17.2417
10.7692
31.1581
11.9108
14.6657
34.5749
19.9171
8.78552
13.6153
13.4868
8.46008
28.7042
16.4227
36.3298
17.9021
16.7941
13.1445
24.7025
89.3103
73.6821
29.9127
31.8018
11.7826
12.0571
6.61121
13.2279
12.1435
7.74735
38.4748
24.9593
124.078
40.467
24.1656
6.28403
94.3237
13.7755
34.4705
12.0976
26.976
105.808
11.25
10.0225
25.7678
35.6456
8.29298
19.0557
10.493
14.6077
8.09055
15.3629
7.9046
36.8643
36.592
41.9861
17.9683
11.0808
22.9048
17.4518
21.4733
22.8563
8.47796
9.79206
5.43336
12.968
127.149
7.15718
15.0725
12.1518
19.1467
17.4187
20.5932
19.8111
21.4329
21.3112
18.3377
19.3451
28.1605
18.4761
23.8643
23.9322
236.639
225.766
7.86263
31.9513
31.2072
69.4698
35.1925
63.67
33.1596
12.8209
12.7336
18.1169
247.139
8.18656
250.461
260.987
46.6525
17.8224
50.5048
21.2662
10.3861
46.2895
11.811
31.3232
32.1834
10.3132
40.8065
44.9504
10.8438
30.3569
34.5327
14.1015
12.9795
36.7053
15.5474
11.5545
34.212
115.023
7.99323
33.5037
22.3689
29.1513
28.1439
312.422
9.9898
37.163
39.0329
92.9186
44.1186
84.9027
43.0028
15.1196
15.4535
21.5059
9.88659
267.646
292.011
284.181
61.9815
50.3181
50.2208
47.1777
47.9423
47.604
44.2923
45.6354
45.8644
224.129
10.9672
7.82551
10.0413
232.177
9.22495
229.015
39.0323
66.0185
66.6059
33.2824
31.9545
25.9743
26.7801
30.6866
9.90214
46.7953
18.5167
18.6512
9.90054
49.2705
16.7306
17.2506
44.5767
9.60539
17.19
8.99205
18.1484
34.2383
27.0323
31.0252
25.5307
35.1041
33.215
21.2197
20.9586
30.4326
35.1854
26.9751
34.5674
24.8998
20.891
38.216
37.5368
37.0072
36.6088
38.9842
73.4507
40.8293
78.4637
260.998
28.9775
25.5624
25.976
23.0443
28.4408
26.6154
22.2428
20.8449
31.084
27.2017
30.1107
25.8645
30.4154
30.9437
24.1221
25.2613
22.4734
23.1655
18.0655
8.84244
18.8467
9.19824
16.67
9.33358
44.8092
42.2548
9.64306
17.7266
16.3549
8.87821
35.4305
41.5496
8.43257
13.9163
50.2985
46.7362
137.19
44.9599
9.5218
9.18009
48.4084
54.0434
20.8098
19.9935
24.6837
33.0384
34.2737
31.1264
24.9049
30.2589
28.0194
24.8917
32.2182
28.6149
73.4734
38.0439
44.3522
43.362
287.883
284.521
315.608
42.6232
46.5031
39.1685
9.53308
18.5155
46.39
9.89957
17.8249
45.4964
9.92196
31.3938
129.389
11.689
18.8527
39.1159
61.454
33.0579
39.0547
71.4971
35.4445
40.9154
250.251
68.4402
31.1989
31.9749
34.1762
14.7514
18.3327
6.64432
173.041
7.66722
236.241
15.474
82.2672
39.7792
46.2567
77.2886
38.5926
46.2549
291.146
78.213
37.366
35.9939
40.0946
21.5003
22.1025
16.1174
10.1647
20.787
7.01756
62.3485
137.196
5.27425
133.644
26.405
41.1998
9.17159
13.8265
18.1571
19.2921
11.4491
18.223
20.0132
20.1221
18.746
146.899
27.1928
23.5038
39.3749
22.2545
40.8751
45.9749
27.6646
11.2648
6.65641
30.3999
16.0568
6.57694
29.3695
10.1231
32.5537
14.6388
7.14403
8.68706
16.6544
15.6808
14.3728
18.7028
17.8913
18.8514
17.407
19.6651
11.2123
10.5113
10.6765
11.0484
12.0872
13.1459
11.6009
13.4066
11.1177
13.2957
12.4625
11.674
10.5978
29.5411
10.3202
10.0695
10.857
17.5407
18.7238
17.3652
18.8792
16.4981
14.9683
16.7001
14.9748
18.7721
12.4506
11.9287
24.3199
36.5125
49.9593
7.29306
32.2334
13.3984
14.1438
30.3404
7.98988
124.154
33.5787
10.3704
132.532
54.8927
22.369
36.0086
7.28386
129.184
11.8823
12.4804
12.2383
11.7215
12.9874
108.063
18.6326
17.0286
14.1077
27.156
29.2609
17.1643
19.0975
17.6018
18.5986
32.4274
14.2666
8.25112
8.28508
14.1302
33.583
34.1897
15.9706
37.5197
15.0558
39.1362
41.4355
39.5434
12.676
7.81906
7.59605
13.3414
18.2117
16.8402
18.7486
48.5477
20.4042
42.8066
19.8825
19.4396
20.2388
19.3553
20.8656
21.7688
24.1692
20.4574
20.8492
19.8844
19.4723
20.6554
21.0139
21.6849
21.2455
21.245
19.5368
19.3406
19.5293
19.3245
20.1589
20.0996
20.2047
20.3953
21.0389
21.1594
21.2002
20.6131
21.5495
21.9973
21.4196
22.2182
26.1915
26.1949
27.437
24.1801
25.3462
23.2572
24.5771
23.466
26.1747
26.0078
24.8121
27.2298
20.6754
12.2654
255.071
16.6561
16.3898
20.5079
11.0966
46.6441
50.2858
10.6494
18.4957
8.55616
40.0913
9.40204
23.2379
15.1233
147.656
39.3257
57.7744
16.8528
40.9332
28.1948
27.2596
29.3281
25.309
31.9254
32.7619
30.3912
33.5758
18.6527
9.95362
14.1991
13.9167
287.731
35.5038
72.421
42.3628
40.934
12.5999
11.4092
10.624
10.644
60.4051
31.2636
34.3103
37.5803
202.299
78.1002
55.1958
40.9259
9.74159
9.68155
17.9716
43.2121
45.1571
17.9962
17.9434
43.765
43.4298
42.8482
17.8044
9.43298
17.4583
13.4759
13.3507
284.136
33.2609
35.076
33.0836
35.1138
31.9371
31.9923
32.5561
31.583
77.2763
38.2067
35.7478
36.6575
36.062
39.2988
32.6005
34.1449
34.3209
28.2642
27.9084
28.7382
27.3123
29.0138
30.3101
31.7353
28.1341
13.6047
47.0458
12.9108
25.9479
27.0424
27.7285
25.4297
25.8385
31.1454
25.5258
29.7051
59.2658
32.4482
36.8317
35.6927
8.47027
38.6484
8.98215
8.7802
40.7347
8.66338
14.5562
14.2277
8.44313
34.3947
7.6857
139.967
8.39867
28.7898
53.1119
16.3107
10.0931
43.9932
16.3164
15.7885
9.69719
42.2262
15.7028
11.5236
11.3421
8.16389
15.0433
11.98
12.0909
8.7052
15.6423
257.358
260.512
29.1848
29.4606
31.0181
31.3664
30.1801
31.3078
249.634
253.261
8.07917
30.0525
30.0113
66.4921
31.9259
111.429
259.94
8.76861
34.3638
32.8193
68.0427
33.8805
8.77641
14.362
14.2035
8.56624
20.924
47.554
46.1142
45.618
19.8471
21.5852
47.1789
46.3066
47.2672
21.3864
26.6099
28.3213
27.6197
27.7197
21.7035
14.9072
18.6092
18.6045
21.6345
22.0498
21.3509
22.6414
20.6726
15.2467
19.7207
16.4417
25.9226
27.5011
25.939
27.2112
23.9571
22.5514
22.9175
23.3937
12.3164
11.5028
8.80597
15.2971
14.4503
13.3012
17.7848
10.5638
26.008
29.6021
27.2399
28.9748
19.6984
13.1463
16.9598
16.0538
30.3197
31.1115
30.5307
31.0564
26.4631
21.3745
24.0792
24.317
31.0037
31.0495
31.9888
30.5413
31.7132
31.5123
32.1665
31.4255
255.418
8.37397
9.53067
12.0831
11.0408
15.3795
18.2975
8.5273
10.7476
7.15029
5.02885
8.88292
5.71508
15.7112
9.11015
4.86283
6.43655
17.2383
14.3042
12.0162
13.2007
17.396
11.866
14.3278
35.3414
18.7758
17.8868
16.2577
36.6332
13.2513
15.6411
14.5322
32.5615
7.51063
17.2689
43.8177
13.0519
14.222
16.6711
16.3529
38.9695
31.3735
21.332
24.6782
14.9405
40.5128
20.6301
17.7445
34.9349
11.5025
7.70314
12.198
7.59542
11.299
10.729
10.5796
14.1807
11.7821
10.715
12.2114
30.1546
12.295
11.3305
25.4871
36.3695
121.914
12.624
7.76682
66.9598
12.3168
7.84898
22.7188
26.0418
40.7001
29.6964
38.43
8.50813
17.2666
18.1347
18.1133
18.1861
18.2476
18.0723
18.2613
18.3066
38.3062
8.48055
18.4058
18.1996
18.3532
8.50011
39.4148
8.53734
17.9987
18.1076
18.2361
19.0523
18.8516
18.6058
18.1328
18.4958
18.3215
17.1237
18.0333
17.9434
18.25
18.1651
18.2677
28.0301
18.3275
18.1431
18.2625
18.4538
18.2145
18.5419
19.747
19.0883
19.1131
18.3319
18.6638
18.657
7.28855
147.324
10.417
149.287
35.0869
7.73335
17.0385
16.5702
36.9301
8.08738
8.05529
34.8993
7.36195
20.7048
13.1324
19.3431
13.8042
24.9193
24.6728
18.0829
18.9378
23.7889
21.3432
20.3448
22.1385
14.0769
18.2143
22.7325
20.9456
23.7418
24.4211
21.1627
22.0592
23.8306
22.7957
11.2348
17.857
11.3816
16.9946
20.5891
19.8928
10.2292
45.6913
10.247
45.8684
14.9187
22.2452
9.73464
9.22468
23.8106
16.5498
47.814
10.4197
10.3004
54.8017
15.2244
19.6542
26.7979
27.0461
24.5551
26.9025
26.3302
26.3612
28.9638
28.0854
26.8101
27.27
16.8572
17.7921
23.8482
22.9057
24.8255
27.7389
27.2801
28.6527
27.7507
27.543
27.318
48.4867
48.5663
22.9893
15.8455
23.2645
31.1845
31.0849
30.3836
28.4968
28.8057
29.1516
30.533
29.7147
29.4756
112.992
60.2327
33.9324
31.8658
34.2399
63.5673
32.3387
37.7038
23.007
15.7027
23.0634
29.8315
30.0273
34.6618
99.0376
33.1098
55.6081
24.8801
26.72
26.9
27.669
27.5211
28.2839
28.4008
25.0787
9.77938
79.7529
10.6132
27.0412
35.1029
23.4961
25.6861
21.8594
23.5757
26.2964
25.2888
29.0953
28.6894
90.4114
8.55578
6.83078
29.8905
36.7474
20.9911
43.366
7.7138
10.8009
14.2647
8.55475
40.3259
17.4715
15.5123
9.90769
9.88917
15.5917
15.2354
9.80844
9.64509
15.4653
14.4515
8.63565
244.872
15.0627
9.34999
247.457
8.33627
237.66
8.38858
9.55779
9.10196
93.4892
26.2838
25.3492
26.2013
25.021
24.3623
25.7795
25.0873
24.6907
25.7827
18.4782
13.5719
13.7444
17.8959
9.00639
41.1877
8.96527
13.223
18.5392
19.0519
13.2875
38.8348
19.849
21.3199
20.6771
19.6935
20.5397
20.5249
22.0594
21.4045
21.1835
17.5731
13.4596
17.6568
13.3957
23.2383
24.3856
23.3158
20.8481
21.9331
22.1623
24.2427
22.8946
23.2655
17.2568
21.8952
19.4761
17.8475
20.1732
19.3547
22.7424
21.2951
20.7848
26.3068
26.331
26.3384
25.8949
26.0373
26.0905
26.4163
26.5025
26.4313
46.2134
46.5216
22.6705
15.4774
22.661
28.5462
27.9721
28.743
29.218
28.5637
29.0189
27.5163
27.9089
28.2047
22.0529
15.1724
44.323
44.1242
22.1861
28.3414
26.8434
27.3918
28.2799
27.749
27.8012
26.8917
27.2804
27.1996
25.6936
26.0489
26.2766
26.8777
27.6073
27.3126
26.6442
27.1867
27.0634
21.8871
52.7611
12.7146
18.1751
15.4045
11.6974
151.623
37.5359
15.0417
9.69428
9.7185
14.9629
15.0921
9.72373
9.93286
14.9263
12.1643
30.3406
46.5017
27.7421
159.454
149.232
16.5406
12.8333
16.0995
61.3066
63.3409
35.1188
263.949
15.7172
7.0206
7.594
13.2617
27.8882
23.4397
61.5048
22.4064
33.8821
26.6194
25.9975
10.1319
11.0795
36.1642
11.1676
12.0516
12.0257
15.5884
11.1887
10.0258
15.6042
16.6928
18.0482
16.2622
15.4856
17.5733
17.7434
8.23559
11.8687
12.2731
13.742
9.03366
12.9195
34.9103
16.5265
17.0489
8.2083
35.8718
12.6423
15.4401
19.9362
8.00734
11.6622
16.31
20.1423
16.0405
16.1265
16.0321
16.1333
15.093
15.8277
15.1482
15.7324
17.9568
16.5728
18.076
16.5653
14.6713
20.2615
15.2081
11.1754
7.65583
11.6406
11.7724
10.5868
13.6571
11.1856
7.48854
11.3722
28.6297
16.0892
16.5397
17.7037
18.2112
17.7311
8.24491
14.6184
18.4271
10.6641
12.734
17.7944
16.4901
17.2632
17.2236
12.2113
15.0288
15.1823
25.8867
32.0433
32.0075
20.3678
15.1086
14.65
20.5257
9.67103
17.7815
15.1957
15.077
10.8929
10.6773
8.55607
11.8341
38.0464
7.86103
12.6665
19.8605
41.3181
19.4229
22.4901
23.0371
24.659
7.35456
6.56645
9.27757
15.7812
14.8189
13.9388
6.96491
10.9177
10.5222
21.1842
15.8973
20.8663
16.5972
24.0294
23.4804
23.8843
49.3434
41.2645
19.441
40.0342
24.5014
24.0196
24.781
25.8431
25.6662
25.5858
24.116
19.1018
24.5441
23.7338
23.5448
23.8935
23.5625
24.0569
23.4342
20.8077
21.5761
21.5489
41.5851
8.9874
13.1574
8.92145
13.2661
20.2438
41.4981
20.4272
21.0563
16.7364
16.9193
20.8821
41.6804
21.2957
20.4113
21.2248
21.2773
16.8607
17.0163
21.0751
42.1369
24.0409
23.5991
23.4186
32.2164
23.8699
29.6458
25.3011
82.1996
20.5038
20.6003
9.21173
40.5441
40.3826
12.6606
16.2951
12.7837
16.1377
39.2875
39.6058
19.4446
20.81
19.9162
20.1864
20.2815
39.9721
20.0825
8.89225
39.6043
23.4049
22.4301
25.8181
21.0967
21.6517
21.712
22.6059
20.9252
7.34891
100.984
43.4491
19.6927
42.8921
20.3776
14.8153
93.5049
108.411
16.3219
41.7169
20.1499
41.49
20.5419
21.9313
19.5997
59.1312
84.6409
242.159
15.0978
14.5217
15.8359
20.7008
21.6102
21.3841
11.5875
14.2617
10.8016
15.0367
37.1468
35.2321
20.953
16.9897
16.9465
20.8988
22.7341
17.088
17.9068
20.9837
14.5758
16.5958
17.0383
22.9706
23.4509
22.8242
10.7962
7.0849
12.605
9.41382
10.4877
11.4753
13.6736
11.8417
18.0842
14.4389
10.279
7.67547
8.91103
11.0713
10.9428
11.1874
12.0037
12.6292
11.7924
16.2666
13.4949
11.9709
12.9363
13.956
12.9644
12.4596
14.5941
12.1569
12.3323
13.4248
14.0543
12.4405
33.5864
12.928
12.8873
12.4362
13.9908
13.445
11.1986
14.0629
8.68352
7.61577
14.0788
11.7676
19.6177
33.1071
39.8549
17.6419
20.1634
14.5794
15.3071
15.9867
16.3885
14.5938
15.3209
15.8675
16.1835
13.3228
13.846
10.0289
9.71156
12.7652
11.4032
13.7283
11.4372
11.4845
15.9464
7.58282
7.74617
15.2719
11.357
14.758
15.4193
16.1229
16.4302
14.6489
15.4862
16.0088
16.4315
13.236
13.8279
12.2569
30.0565
12.8243
134.879
12.652
12.1125
20.7245
13.8735
13.308
15.3875
15.6153
22.8608
20.0971
16.7608
20.5801
16.1646
17.4007
12.2798
8.28357
36.0782
12.1178
8.07768
15.8
19.3885
38.5992
15.9763
19.682
38.0907
14.6197
13.3953
15.0843
13.3732
15.7574
16.0705
12.793
12.669
8.38742
37.319
12.6116
43.6745
6.91645
13.0901
10.4889
14.524
15.3829
16.0455
16.2266
14.5835
15.45
15.9282
16.1755
20.6647
20.1945
20.1079
20.7792
21.46
21.4765
9.46866
41.7566
41.5909
18.9105
19.5949
18.9742
19.5352
16.0751
18.0553
15.9964
18.0731
18.9495
19.5965
19.5342
18.9901
20.761
20.2084
20.8108
20.1537
41.3972
21.4239
21.4133
9.39163
41.4405
21.1607
20.4727
21.0782
20.6745
40.8358
21.0184
40.9241
16.2457
19.2118
18.5259
17.2291
20.4963
20.1411
20.8647
19.6441
42.2679
21.3847
41.6826
18.6624
19.7163
20.07
18.0333
20.4739
19.8044
20.0105
20.2438
16.7046
18.923
18.2927
17.7726
95.9082
15.5983
18.7528
15.3549
18.8805
37.611
8.55814
12.7027
37.4782
8.52308
18.9897
19.3178
19.5126
18.7834
35.7295
35.4534
11.3959
7.51106
19.0119
19.4577
19.9079
18.4726
18.2635
17.9924
19.4392
19.0667
18.6962
19.3197
18.075
18.5937
11.711
14.483
11.9529
18.5714
18.8336
35.0763
16.9323
17.2283
16.5275
16.6881
16.6047
16.3481
17.2282
16.8942
14.8236
11.211
12.0038
17.0525
17.5733
16.5642
16.8705
16.7131
16.5477
17.6409
17.2575
18.1112
17.6204
18.8498
18.4637
18.5304
18.8565
17.6172
18.0515
21.393
22.4096
20.4141
20.2737
21.0553
20.6347
22.6242
20.8279
41.6939
21.5316
41.9237
30.0661
23.8647
100.107
31.889
232.356
76.3599
23.7343
25.6118
41.7852
21.4885
41.916
32.8834
26.2608
91.335
27.966
70.433
21.6646
22.5669
22.0497
22.4924
21.3869
21.6642
22.8068
22.6731
18.5271
20.0528
19.1153
19.7785
18.2494
18.6252
21.0377
20.3194
18.1735
20.2949
21.4175
39.3016
17.5075
17.9744
30.1019
76.2263
17.4076
20.4494
17.3357
20.5562
39.4804
39.0592
8.83485
13.1823
39.3433
8.90201
39.6036
9.02624
41.0905
13.1443
8.95473
39.8352
17.7258
17.9532
16.4766
16.8443
17.1289
16.4904
17.754
17.2481
21.8159
21.3487
40.6079
23.6823
63.5686
48.2649
9.03132
10.1875
7.52453
7.71141
206.658
7.85482
66.8693
19.9825
33.1704
27.2881
6.56034
20.2026
9.04627
70.0153
6.70696
11.8184
10.0417
12.9515
13.5101
12.33
9.35279
13.5536
14.0951
14.663
14.116
12.981
40.1213
13.5355
13.557
14.0892
14.662
14.116
40.0589
7.16421
6.51754
17.6734
16.3319
24.0006
19.0718
124.474
19.6291
33.0526
13.0521
16.8106
11.952
12.3861
13.4804
13.2306
11.3198
12.0661
12.4628
32.8117
13.85
16.5182
13.9018
13.1064
13.7827
11.3243
11.6817
11.3074
11.7741
10.4875
7.47751
32.4894
12.9073
13.6114
10.6551
7.39022
13.5084
14.0741
14.6319
14.0642
12.8998
33.9387
13.5078
13.4859
14.2283
14.6922
14.1039
16.6579
32.2943
12.6192
14.7124
13.7896
12.3387
32.6136
17.4388
18.4523
18.0465
18.9472
18.6963
18.818
19.0516
18.0325
18.4088
11.3295
13.7081
11.3233
17.255
17.45
16.6039
16.6745
16.9942
16.6798
17.3973
16.9619
137.902
30.7717
33.443
17.3648
17.7048
16.3702
16.8099
17.1231
16.7924
17.7117
17.391
18.3759
17.8328
19.0032
18.575
18.7558
18.9886
17.7923
18.156
14.2576
13.4805
12.6472
18.1445
17.9308
19.1595
18.8033
18.4706
19.0837
18.1845
18.6333
15.5154
14.9862
9.63683
7.38445
14.7101
12.0882
13.1198
8.59283
17.8006
16.5
18.0219
16.8041
18.2026
18.4008
15.8221
16.1021
35.0301
17.2532
15.6719
15.2796
12.2602
17.5758
16.7924
14.0673
11.9389
17.9241
17.9091
18.6523
18.6813
18.0042
18.3963
18.0819
18.5457
12.766
13.0256
9.32064
9.78696
34.2745
34.3973
13.796
14.7463
13.7829
14.604
17.3391
11.9079
16.097
11.4113
9.68272
17.6237
17.1776
13.4985
14.4986
13.5789
17.3823
14.789
14.89
9.91746
17.5873
16.7652
11.5063
8.88517
91.6245
16.6653
16.564
16.6271
13.7782
14.1101
17.0907
16.8756
16.8415
16.881
17.0868
16.832
13.8375
16.6099
16.6966
16.6497
16.1769
16.4825
16.2063
7.2729
15.1913
15.7006
15.7038
7.29873
15.6782
15.1921
15.7041
16.4536
16.2173
16.2142
14.1543
13.8327
13.8752
18.9694
19.7697
19.0711
19.0174
19.2716
19.0511
18.6513
18.7869
18.8387
19.7094
19.3909
19.2149
26.1315
34.8292
141.649
25.3674
32.2664
79.2595
6.06458
8.75847
64.1372
5.68964
8.86914
16.5102
16.4863
16.2893
7.09844
15.1852
15.6989
15.7243
6.83022
16.0542
15.2671
15.8311
16.3786
16.2074
16.2019
18.3728
17.8881
19.0524
13.5147
14.2576
78.4153
37.8282
13.4025
25.6855
28.0502
18.7061
23.9024
20.5952
13.6934
14.033
13.6282
16.5199
16.4776
16.569
13.4385
16.9173
16.7204
16.7036
13.5778
16.6068
16.883
16.6759
16.4963
16.5683
16.571
13.3351
15.4114
15.8577
15.281
5.97504
11.4619
12.9756
13.8679
9.56392
14.7437
12.6429
14.4591
8.88149
15.765
14.7968
15.1053
13.4468
13.277
13.2943
17.3425
17.1575
17.3765
17.5659
17.6041
17.5338
17.4089
17.4822
17.4602
17.1882
17.4915
17.4367
16.7828
16.5345
16.5016
15.9328
15.5759
15.9983
16.6309
16.2791
16.4003
15.963
15.5511
16.021
121.525
9.23854
13.8994
11.1321
29.1016
6.84762
7.12181
11.6765
10.0775
10.0035
8.12643
10.0558
14.9091
14.091
12.8539
15.6239
12.433
14.8964
13.0295
13.6093
15.7531
14.3522
15.2268
13.1552
16.1411
16.1254
15.8139
10.8301
12.2141
13.7343
13.175
13.4421
13.2897
15.198
12.4884
13.1488
15.4337
15.5766
12.5419
15.0749
14.3606
9.44097
26.9984
26.7477
11.2592
14.1463
13.8722
11.4886
14.6186
15.8443
16.7849
13.2552
12.6567
16.3962
12.6391
16.1171
10.925
11.7002
10.1442
5.2899
6.44546
7.37339
9.02967
6.13635
8.2134
10.9642
8.22206
9.24068
14.158
13.8993
14.3912
15.2619
14.7311
14.9176
14.631
15.2069
14.8311
13.8904
14.0792
14.4827
15.8445
29.7436
6.83957
9.92662
14.543
15.2732
9.86666
14.7526
7.30662
13.2515
13.8892
13.2419
13.8985
11.8787
13.2377
10.6249
8.91149
8.58556
12.7427
10.2993
30.1485
34.9581
12.7471
13.5479
12.8831
18.1344
116.22
14.6178
11.9988
15.0475
12.3357
14.8765
14.7093
11.7726
13.41
8.97252
26.4801
28.2902
12.9783
11.0373
13.0569
10.8013
13.3552
14.3032
14.561
12.4738
12.3248
14.5222
11.8252
14.3171
14.8439
14.8231
14.8773
14.7897
14.8136
14.8818
14.8312
14.9394
14.9634
14.9947
26.5899
14.9793
15.0364
12.629
10.1842
11.9595
10.75
11.1062
10.8721
12.972
13.8541
11.75
13.7272
14.118
11.721
14.1846
13.7274
14.1726
14.4287
11.5487
13.5686
11.6243
14.1839
14.4414
11.6528
12.431
12.8131
12.2853
13.1482
13.5401
15.9515
31.6991
25.5402
15.7137
11.6015
10.8822
12.3398
12.8171
12.6554
12.8115
11.0895
13.0718
12.8948
13.6541
12.4001
11.1043
30.9825
13.5243
31.5207
25.537
11.5991
25.0957
15.3769
15.6784
11.5678
14.5415
14.5012
14.4712
14.565
14.8941
27.5201
14.7626
14.9213
14.7081
14.7017
14.3361
27.4544
14.5935
14.4774
10.8145
14.3491
14.0158
13.5894
14.6568
11.2418
13.0047
15.5531
13.7159
15.3066
11.3014
11.6762
11.9034
13.9651
13.7608
11.9389
12.6489
13.3665
7.57938
9.17324
11.8443
24.8794
96.1848
13.9286
11.9124
6.23832
30.8233
10.5963
12.64
12.9637
12.1617
12.6947
12.2253
24.0627
13.2028
12.4265
13.6283
12.3504
14.8826
10.5843
11.654
11.6241
11.708
11.5808
10.4508
11.9876
12.4422
12.2288
12.142
10.5132
25.1631
12.3195
12.9168
12.3592
12.6962
12.765
12.6912
12.7451
12.4646
13.0527
12.7843
15.3411
14.8016
14.5572
16.2462
15.9188
16.3854
18.6219
15.2677
13.7186
13.8973
13.8761
13.7134
13.4817
13.2944
13.4093
13.3255
14.5408
15.3772
14.8461
14.8634
14.033
13.5734
13.7637
13.7988
10.2915
11.8813
11.4768
11.8385
11.5246
10.2611
12.2238
12.5256
12.2108
12.5308
10.2292
12.4965
12.7068
12.3911
12.4711
12.6375
24.9875
12.9598
13.1508
13.1506
12.9798
12.5749
12.5588
13.1273
12.8394
13.1547
12.8324
24.8164
13.2997
13.3681
13.5548
13.1465
12.5239
11.2693
10.2428
10.6462
11.106
11.64
11.9226
11.8692
22.2613
11.6997
11.0649
9.39246
6.67156
16.287
8.25976
8.44878
29.853
10.2255
10.7794
11.1766
11.1386
10.9216
10.8929
88.8524
11.8255
11.967
12.0426
11.7514
13.3381
11.6402
11.4045
11.3924
11.6447
20.5333
13.7472
13.7586
13.7399
13.7982
13.4784
13.1853
13.353
13.3138
13.5557
13.8463
13.7685
13.6342
13.2057
12.8564
13.061
12.9917
12.9451
13.0061
12.8151
13.1364
12.8899
12.7794
12.9925
12.6737
9.34961
10.9451
10.292
11.0715
10.1763
9.47993
11.1156
11.2399
10.9974
11.3622
9.35501
11.5595
12.4337
12.2791
12.183
12.5271
12.5587
22.5581
12.6574
12.7818
12.4518
11.3421
11.6179
11.8211
11.466
11.6937
11.5952
22.8227
12.2108
12.5583
12.4417
12.3484
11.4814
37.4401
22.3939
21.3597
94.4909
23.4772
38.4607
73.8157
25.4372
35.6464
42.4141
191.351
64.3948
48.535
19.4858
93.365
43.6817
28.7222
97.8635
50.3571
39.9524
92.1177
65.8312
54.8167
47.7033
21.6322
34.7322
35.8708
81.6985
87.4302
32.684
22.5691
22.3534
21.8466
67.4909
79.3168
19.0287
36.7033
170.897
31.3598
21.7107
43.9935
51.8598
40.6686
66.7896
42.786
112.152
138.883
63.2276
19.8914
59.1339
17.251
41.9792
80.6755
24.2525
101.137
20.7697
181.388
39.4248
35.8049
26.7043
35.6963
49.1024
25.0447
19.3744
179.234
64.1705
21.2067
31.5949
33.8984
78.138
29.1452
20.4878
20.6557
74.4071
73.3437
21.0421
23.859
65.0013
17.8711
168.812
33.7674
19.6875
17.2127
37.9825
21.4476
143.461
17.6055
55.2213
31.9128
64.1728
71.9072
83.3555
17.0263
20.1809
34.8612
38.5814
33.8368
21.1227
23.3095
59.5278
149.271
43.9847
29.1823
90.512
51.0266
43.006
23.1186
186.97
186.252
27.2486
173.717
30.8652
26.5819
187.915
49.8781
22.4946
200.716
171.675
49.476
86.0461
72.3069
80.1983
190.832
29.7186
188.12
61.3491
143.605
75.1121
167.767
40.8271
53.9088
94.0289
65.3368
225.131
77.1361
96.8223
20.739
194.632
29.0559
75.2285
22.4386
40.1006
64.957
47.2234
152.484
24.1015
73.5163
25.7193
44.2195
158.399
51.4962
21.136
191.038
112.674
91.5688
117.137
123.861
33.5873
154.043
53.5023
23.2128
49.7675
102.448
34.3545
24.1825
27.8602
183.602
46.0242
67.7027
28.2869
77.5042
180.618
43.0306
90.1814
29.1424
19.1178
23.5264
82.5712
84.5244
180.698
22.3503
20.9967
27.5751
32.2783
27.7187
170.648
50.7722
194.698
48.4824
18.1883
45.093
20.7124
90.8609
22.8562
54.5458
63.3901
31.5058
18.6435
56.6031
167.348
86.8652
64.4938
19.7177
181.787
69.8729
26.2719
48.8009
31.1554
49.8667
47.9527
84.1352
64.1588
50.4991
151.297
90.7082
27.8744
24.6758
45.9561
88.8679
52.4349
181.585
141.515
17.1976
45.7707
150.998
37.1391
19.9407
16.2127
150.651
71.4253
21.8696
54.8703
157.424
158.047
20.2443
23.7029
18.3631
42.9924
77.0402
358.32
402.617
28.6201
148.186
25.1329
56.5465
137.654
629.601
171.718
420.193
165.824
86.5063
54.0018
21.6132
76.1232
422.077
150.176
105.68
35.6566
192.972
409.404
314.377
321.775
24.973
21.0283
163.479
20.5634
34.1846
344.017
76.282
32.519
256.538
25.4171
48.0048
400.533
28.0937
55.6658
327.772
165.737
62.5006
443.523
54.6418
29.4348
32.1072
529.636
249.1
153.838
414.181
161.329
338.444
53.631
31.9311
53.4326
434.335
93.0138
19.3402
176.444
50.5982
53.9212
450.926
37.2556
127.052
523.084
29.407
37.4151
105.565
198.995
24.2339
101.701
84.6178
28.378
25.0743
31.4871
484.628
24.5828
23.4657
217.336
146.269
16.4913
279.961
26.6037
82.5353
21.6577
32.0689
26.0437
84.0313
77.6321
23.8021
437.312
23.1878
170.999
390.757
76.8434
132.763
25.9519
330.378
377.033
329.236
179.932
307.49
337.827
125.445
44.7136
17.0851
350.671
132.611
67.1701
17.2429
24.3867
20.0506
223.523
23.5921
149.364
23.8848
393.208
71.9294
66.0904
313.094
28.9542
137.545
88.4227
30.5042
20.3708
396.429
80.9311
26.6498
21.087
61.5054
52.9662
24.2904
115.087
159.709
90.8718
452.531
20.3194
47.7119
43.1405
60.5756
123.538
18.1861
22.4896
267.791
118.956
553.738
122.973
35.1012
214.232
24.1197
41.4151
52.4809
92.7414
88.5325
54.5633
32.273
474.708
32.8535
68.7123
173.923
70.8186
474.514
66.9667
22.1328
202.194
70.6888
421.194
421.153
185.818
39.8356
389.818
72.5325
72.9267
36.4718
478.429
46.7134
272.26
219.223
83.1262
187.608
646.822
28.5013
78.6739
141.365
238.993
256.82
559.144
37.9935
35.404
589.174
99.0904
247.503
538.094
79.3772
645.43
82.3952
41.2444
229.734
59.9327
88.3029
29.7604
108.59
24.1165
202.012
59.9385
208.771
76.1162
29.0817
107.233
516.315
461.449
524.139
85.6362
83.0077
28.2871
175.817
284.953
31.0756
74.7088
475.566
76.2316
186.14
462.044
242.699
58.2377
193.247
601.736
38.572
16.9375
62.0612
259.024
267.029
41.1079
101.422
227.19
39.3612
136.75
46.7074
31.2334
707.604
276.835
21.377
562.652
104.061
30.4202
552.313
22.8795
175.013
61.6074
35.1128
29.0926
33.6039
106.715
191.739
26.7418
639.739
31.2717
278.859
43.6047
67.9523
31.8662
167.412
74.9022
231.858
34.5725
247.252
43.8571
583.843
49.1388
26.4975
167.264
562.761
15.2647
126.105
22.728
86.7996
32.8532
19.4194
29.7334
30.445
207.317
45.4222
200.883
26.5354
165.39
37.4829
453.639
168.715
57.5509
29.4399
175.37
390.4
192.511
23.2424
168.212
30.3687
89.5174
253.15
36.158
25.5468
54.3308
18.4985
58.9873
51.6002
14.5478
48.4649
15.4132
45.533
13.8
13.4545
44.8943
17.0801
114.139
23.6488
14.4871
13.8608
48.6536
46.0739
12.3666
40.7223
14.6034
15.3496
112.668
16.0554
16.3917
64.2936
32.2033
19.3965
30.2058
17.9928
30.1779
28.8653
17.3658
162.045
42.3367
57.1775
25.1426
66.2599
25.3295
19.2941
18.4231
51.4235
13.0207
120.393
59.594
44.0909
52.1881
47.8888
63.3218
50.3912
20.2017
58.9723
18.9644
15.8256
15.6326
15.4051
62.4318
31.0503
63.8474
22.0316
29.3678
15.2609
28.4841
14.0851
53.1694
49.2956
51.6446
56.9627
18.961
19.0615
17.9941
57.053
57.1003
17.9755
57.7833
58.1083
20.1031
19.2585
54.7865
56.4726
61.5798
20.7224
60.8528
20.9787
19.7051
19.8995
61.0007
18.5085
53.6949
58.6818
18.7159
39.0723
51.9001
19.7197
52.8995
23.5396
59.6219
51.003
56.4978
46.9323
27.3385
47.3589
227.316
62.5398
83.718
27.7817
57.7851
18.0708
47.4234
66.2548
22.0241
32.2235
65.2959
20.012
33.9148
45.1105
15.2936
53.6158
52.7746
15.9354
16.1183
17.5313
17.8408
51.0785
56.1065
21.7591
53.2169
22.2051
32.5779
13.029
112.028
15.0312
18.2928
52.3406
41.2614
64.3219
18.8154
34.1213
171.3
68.4101
148.382
52.8131
64.6754
68.7576
34.4905
17.1803
40.5903
42.4328
149.784
56.7316
17.7907
67.7277
25.4454
60.6231
16.603
69.8748
149.109
36.7932
25.0273
21.5522
23.7634
20.9994
57.5678
169.389
72.2115
23.2613
20.7315
151.192
28.5868
46.6074
15.9442
72.3256
65.9061
22.616
22.1973
78.6551
179.755
19.4419
193.246
48.1447
36.1899
24.1097
154.121
26.3098
58.9619
20.7583
22.5746
13.9503
61.8236
19.3348
84.2925
23.9784
19.7555
16.4921
27.5129
38.9139
88.416
90.5889
43.1671
63.9881
29.3679
218.219
16.6704
58.1714
28.7719
206.505
41.0718
24.2506
73.5081
40.5956
21.1141
65.2362
65.9995
70.3533
78.2625
25.2445
23.6895
70.2143
76.3933
69.1634
19.8424
69.1548
22.9415
17.6393
73.438
21.6176
24.5005
22.1242
23.0224
21.3757
180.362
29.5499
66.1341
70.4215
165.581
76.4269
21.3635
17.611
210.018
210.878
87.8505
81.7913
199.135
91.7843
34.8821
88.4763
69.6286
57.6923
50.6782
40.9712
17.5736
49.2328
21.252
37.9694
69.337
19.7978
210.782
453.871
17.0719
40.0962
139.309
438.106
51.5585
100.886
39.2923
181.839
41.7804
37.8774
18.2607
102.358
460.764
319.221
14.3094
122.793
347.673
313.954
136.279
389.17
102.256
50.5063
43.2717
119
79.5275
16.6687
358.639
359.479
42.0732
17.0689
26.2444
17.981
65.0339
39.7534
20.441
401.04
407.621
102.434
16.5151
31.7997
328.543
18.6337
67.2508
97.6778
36.4147
154.899
87.8454
46.3828
35.361
159.261
37.356
23.1115
386.364
361.332
17.2861
97.1943
19.1081
461.498
20.775
23.8531
44.7562
88.8613
22.9782
38.9106
190.325
17.4908
404.22
16.0325
19.2669
210.547
23.4496
433.277
52.8042
189.21
117.14
39.6504
118.2
223.479
18.6102
535.069
17.55
22.2743
53.5865
36.6931
68.1346
44.3449
111.169
94.2324
186.108
35.4617
188.559
94.2216
21.381
65.7199
41.1453
60.6
17.4013
409.862
195.569
14.4062
107.889
36.8069
15.8558
29.3976
58.9966
417.697
17.2714
28.8325
12.445
42.6069
93.8946
20.7029
438.141
419.827
19.575
18.1613
217.88
26.4416
32.095
15.433
352.288
51.0698
369.235
16.7546
14.0249
180.068
28.5349
178.234
15.5436
17.2849
385.906
15.695
56.0539
92.8635
56.6868
17.8044
59.7501
362.411
194.07
107.352
382.051
15.1103
12.7782
339.202
55.4812
16.2019
355.79
34.8861
27.8709
38.9223
384.837
92.3335
12.9457
42.7504
143.662
11.9628
209.476
244.725
585.453
26.6103
95.733
44.2242
60.1424
179.102
98.2183
106.996
61.526
242.502
554.211
166.996
248.563
553.83
43.7844
676.533
112.865
197.561
173.934
146.125
123.686
27.8946
109.296
672.81
33.6308
177.643
18.3474
26.5646
78.3612
29.5995
232.969
27.7595
33.6778
155.031
18.5653
528.504
24.5626
32.7676
68.8707
291.772
117.026
28.4286
32.1658
269.751
44.2323
676.697
150.729
89.1898
35.9096
177.134
37.593
169.705
186.936
36.5683
190.806
59.9222
683.945
26.5268
105.343
25.8422
27.153
545.739
183.654
215.187
47.2758
23.821
54.9659
22.0045
197.763
221.365
164.788
90.7573
17.3571
96.227
28.3311
488.533
27.4117
22.4912
59.4176
26.1237
27.9998
54.2991
156.588
211.452
220.689
21.7406
199.657
17.9671
60.8058
24.2104
48.0793
52.969
22.856
46.906
271.034
28.2168
213.905
48.2814
55.4094
24.9751
60.0482
275.746
102.671
143.6
19.3491
611.598
231.817
47.6143
57.3615
38.4317
115.968
89.9569
169.648
19.0145
179.096
580.176
28.3463
43.6858
24.7829
227.839
44.9208
20.5634
28.3409
53.7928
24.7927
206.923
22.6009
757.107
133.846
16.5807
156.292
86.3939
18.9198
27.5365
279.885
173.243
685.788
31.5068
13.3885
45.1943
159.519
13.4477
14.5116
15.0043
64.2071
14.5604
62.1606
44.8461
15.0216
44.691
14.6441
63.2573
14.5414
17.8721
152.582
59.6065
21.7732
51.9237
55.7626
18.128
17.3782
16.1099
17.8979
50.4571
56.8792
21.0839
56.8783
18.8599
66.1813
18.1306
63.2165
18.5807
21.3251
15.4055
48.0803
20.0673
12.0305
55.2751
15.211
50.4425
16.5677
52.8293
16.2839
44.2623
13.5811
13.7198
16.3323
14.7036
51.2729
24.9779
20.8814
170.315
68.475
17.0741
58.9236
43.879
43.0567
12.5942
13.9096
14.5317
83.5537
27.5784
27.4345
33.387
13.6363
176.724
22.5694
79.4372
11.2501
21.8374
58.5858
14.9412
14.629
58.4365
12.8001
43.0741
14.2353
54.5997
13.9103
39.3084
12.4265
12.9021
42.2931
41.378
43.8763
43.0375
13.4518
39.9691
13.645
47.1468
33.0945
16.7351
15.8516
43.4557
16.2487
15.796
64.5396
16.561
59.6294
179.664
19.8527
17.1591
48.2544
13.5981
47.3097
24.8095
46.3549
23.2348
12.2722
15.8072
64.4721
46.3829
64.2056
44.3516
16.0971
16.555
52.4478
17.3081
57.5688
46.2554
14.2069
49.0534
68.9699
62.9152
30.4096
17.8797
74.0171
162.398
13.0954
25.6029
28.6831
14.1876
14.4337
34.113
32.0098
17.1985
58.2189
15.7272
52.9404
41.9034
226.011
62.4402
211.499
17.8093
83.4017
13.7866
21.6264
21.4867
39.5592
15.5597
51.0168
52.732
15.5216
15.8614
62.4443
54.7135
15.6595
26.4995
32.3653
63.4574
17.2436
41.6667
65.1901
21.0066
72.916
16.951
80.8504
35.0845
80.9772
22.9271
28.8563
79.3697
62.5604
193.795
222.461
17.2404
26.4462
93.0469
21.4649
67.3087
20.5682
66.6019
23.6028
82.4054
19.0546
57.888
20.261
65.7879
21.4244
20.2169
16.9625
49.8802
198.516
52.5444
14.6394
51.4267
59.1379
17.7374
36.0147
22.3897
16.7909
186.083
49.3427
32.7419
43.1752
23.0992
21.2881
16.2975
17.841
26.5192
58.3257
97.5533
251.515
34.1675
59.5473
16.6666
84.5966
40.9602
18.5375
17.4854
44.0297
63.4223
18.4277
34.3261
20.8488
15.9361
55.0536
15.7248
52.3651
21.4477
19.9564
59.1519
38.9009
15.8029
75.2663
31.8952
59.4946
13.1488
26.7868
14.397
16.3659
29.5148
15.7335
22.9497
20.2464
75.4126
16.0895
18.4118
24.0816
95.4699
15.0897
55.7488
256.635
35.2522
46.665
28.68
274.053
99.5387
22.8846
22.1074
16.9947
80.7524
68.2434
31.6881
27.7434
15.7458
241.999
33.4783
16.1976
55.1546
61.6518
18.3542
19.4662
13.999
49.5174
21.9525
55.8006
17.1314
15.0625
16.3641
19.6342
61.1035
18.0015
18.9651
96.2958
21.8014
46.1243
17.6411
63.9235
37.6191
25.0442
53.3871
91.5721
42.7718
222.657
32.5209
181.119
14.4036
29.2076
37.3495
156.97
362.553
37.8288
60.1478
49.8371
160.235
27.3169
15.6008
37.8436
23.273
38.2792
46.4897
14.8626
18.8453
12.8456
10.6888
151.328
41.6871
33.1112
13.1261
33.0827
20.4313
23.0384
13.4387
174.849
42.9269
51.874
31.8359
361.617
152.446
30.8684
24.1806
33.9646
40.2629
55.4658
24.3994
88.7047
53.6971
167.441
39.0922
13.7889
32.9936
20.4614
23.786
53.8115
88.7296
90.4038
358.505
53.9193
65.0358
105.683
68.847
181.383
411.45
481.962
458.768
107.28
199.617
16.2389
430.822
23.0046
192.701
15.7112
502.831
167.191
106.14
45.709
626.707
225.507
168.279
14.8268
40.1929
616.817
21.9575
16.9963
177.051
555.604
45.4729
20.4807
610.848
24.405
243.116
37.6383
52.7576
23.1079
26.0787
45.9162
231.963
179.684
23.8861
45.6503
30.066
11.2124
22.8632
200.318
51.7962
272.044
32.0279
656.637
149.607
110.641
702.294
55.9815
25.5655
248.297
24.775
39.2192
203.711
187.562
81.068
245.44
33.053
19.8861
175.349
15.8626
111.843
562.546
18.8558
17.982
578.961
39.0879
18.2574
183.862
220.628
34.0146
44.5134
656.732
25.8845
19.1674
37.4652
46.6105
172.113
188.682
43.3163
242.784
19.3954
44.1925
25.4127
48.5347
46.724
112.156
60.4979
27.5772
31.2718
108.472
62.433
37.6551
117.513
181.592
105.244
41.3461
162.244
37.2377
183.622
552.929
221.705
544.947
540.14
62.6201
175.708
205.582
56.5454
22.7781
208.373
170.934
44.459
56.4457
23.4755
645.437
22.8363
192.008
45.095
50.929
204.448
79.2341
114.061
14.9304
115.445
40.9707
33.3494
197.321
51.246
41.3652
22.1747
29.7304
20.702
176.709
61.5107
39.1006
16.8938
22.3742
64.0874
103.898
218.267
32.3693
16.0526
19.1403
27.6039
15.5454
543.474
19.2189
215.663
65.9421
107.468
25.2313
28.3243
52.6474
44.786
32.1969
220.93
19.0251
19.3886
27.8317
39.3673
45.9685
24.3033
252.639
20.6617
19.7822
43.9938
28.8953
72.7368
35.2706
17.2643
25.4749
240.841
25.7312
16.5948
22.1841
618.428
30.0383
217.619
49.211
112.591
47.7898
15.8391
152.818
20.5594
12.7281
23.1123
61.0004
14.8777
14.8769
58.9262
59.2624
23.8518
24.0139
13.2989
58.7325
13.2917
14.585
67.5781
69.7485
27.6825
27.2796
14.2324
61.814
14.675
13.785
13.949
41.5423
32.9938
25.8103
14.2245
27.439
13.8665
45.8868
12.6744
50.4767
75.4447
15.9426
180.373
17.8614
11.2567
29.2281
26.2833
64.8586
56.5592
14.2897
14.2261
20.1799
60.4196
198.589
39.1236
15.8814
79.0066
36.0318
44.6606
205.501
36.9643
14.6568
15.4297
16.8647
15.5676
26.8763
29.4923
26.9576
66.9467
66.4798
26.7728
11.5797
21.1716
51.5546
12.2739
12.4161
53.6572
59.5553
24.2473
24.2108
59.6729
13.4019
13.2568
12.3271
54.9443
54.2363
22.1224
22.4021
12.5979
19.5599
29.8496
18.1754
11.3237
10.7008
27.0879
15.0054
16.1122
16.2208
26.304
27.6592
14.5529
11.7952
18.1306
52.6785
12.0021
22.1818
29.0415
77.2726
15.3961
66.0462
26.8269
81.6069
15.6847
29.8214
67.6133
26.4797
26.8701
14.9757
14.9999
66.9726
27.2567
27.2218
14.6154
14.8236
13.987
25.7809
53.673
13.3582
22.3819
64.9148
18.2122
64.8659
14.7081
55.656
27.0859
66.0481
78.8626
29.4786
73.1982
83.9545
19.4534
27.9345
72.897
18.5835
44.5132
245.409
54.2962
14.854
24.1584
61.6698
16.222
78.972
19.7281
21.2548
34.7289
73.711
87.2449
30.3031
89.2417
99.7901
28.3756
24.1186
15.3268
77.5237
90.7845
49.7374
98.9128
38.2025
264.351
30.6593
17.5223
52.2402
19.5141
90.2202
15.4134
73.8683
64.2714
14.79
22.5923
26.9952
29.4202
15.9056
29.553
34.1592
81.0913
21.8404
62.0093
24.7109
51.058
21.9083
91.0884
108.793
38.5256
43.8457
24.0911
26.8249
101.247
22.1297
25.2585
102.824
20.9811
43.5538
275.872
24.0806
38.0407
68.5512
27.5523
15.0061
66.1845
15.9683
63.6519
63.6951
59.8763
63.9088
61.9428
80.8982
22.5178
14.9836
13.5982
47.9927
60.6204
30.7359
54.6327
18.8548
37.0435
99.8206
56.8354
24.4368
43.5491
27.6122
37.8014
66.0336
14.9181
278.164
27.5195
17.3372
28.0996
22.0634
262.972
16.1828
26.7566
32.0593
58.5971
29.5558
92.234
216.706
17.1818
16.3766
11.7476
13.3833
25.9203
32.6083
81.7877
54.4843
17.6909
83.8534
79.7403
36.5111
35.0235
104.72
17.8907
29.3205
90.8436
21.103
20.3437
69.9709
33.0223
18.2064
30.1995
19.2115
85.2665
151.514
64.2279
43.3622
47.1846
56.9511
45.7173
100.161
49.3372
64.243
33.9523
21.0284
30.3941
24.0134
14.2975
158.836
23.1247
183.19
16.0888
21.1195
30.6685
35.4038
38.5402
27.3873
23.3163
15.0248
23.6354
15.2114
187.505
20.15
157.204
18.8661
25.3158
13.9674
388.387
380.961
30.6545
31.8723
27.0063
34.444
12.2786
154.025
87.3595
55.2958
392.162
154.156
37.2742
53.0818
42.6765
42.7313
35.4533
29.3205
29.455
34.8402
370.092
57.0592
46.1163
86.3666
43.3419
359.039
151.711
46.4248
56.2581
89.2831
41.7676
42.097
37.0795
47.2532
34.0462
93.9305
12.2015
42.8645
97.5202
458.798
34.0332
45.4131
41.2513
35.732
25.0982
14.3197
20.6459
18.2175
19.1965
29.5046
21.6031
26.5748
99.2907
178.411
52.9472
104.061
18.6943
182.486
25.377
64.4839
37.1132
15.5346
495.246
30.6802
24.9781
19.7431
158.537
61.888
97.0217
528.954
17.5724
13.8415
22.7866
27.3257
37.3303
40.7464
25.2349
206.908
19.8348
24.5212
40.9444
30.6484
45.1935
614.92
20.8932
15.8008
147.182
35.7594
20.4136
180.603
204.573
45.6486
23.1205
38.7086
52.6329
55.3222
637.569
19.2178
31.8562
32.3585
200.738
21.5253
37.2232
41.0616
138.23
13.3596
32.1641
92.351
66.9554
46.0438
42.2379
22.732
15.9922
25.4683
28.9063
17.3706
27.8046
65.3483
532.006
32.915
66.7199
215.068
104.618
50.3849
163.954
45.5578
164.866
28.6679
17.1437
27.2255
17.2353
61.2101
528.291
199.528
103.57
57.9625
113.785
17.6526
29.5991
17.3949
28.4531
580.102
17.579
171.74
18.2752
200.662
150.961
13.2228
476.05
15.6417
93.917
40.3153
50.7147
38.1675
33.1651
25.8469
90.8802
27.0414
41.2612
18.582
28.5874
15.4796
27.1354
99.889
58.5551
25.6576
34.3941
36.4668
50.5278
54.0734
183.567
16.8548
30.4285
25.2749
34.0291
52.0767
35.0027
43.9736
56.1965
36.4477
26.6414
587.663
17.7733
17.2791
204.552
31.151
17.7482
140.247
29.7565
39.216
23.3722
26.8027
19.0404
19.0522
14.9284
17.7034
20.5469
20.5703
33.4969
25.9713
14.2374
521.326
17.712
27.5776
17.2527
47.2094
30.4018
16.5377
21.7663
11.5716
18.8393
31.2249
64.0354
27.8969
23.0275
13.5646
13.4118
23.268
54.3801
54.1207
23.5197
14.2129
24.1906
13.6997
54.0561
52.2306
13.9693
24.3013
59.0149
13.8979
25.4093
14.7107
14.5063
13.6203
25.6893
14.3393
23.0098
49.003
46.1761
78.8891
58.8053
13.2358
220.989
14.7523
27.2629
21.6779
29.86
13.9058
59.2084
22.5993
59.5199
14.6064
23.3828
68.8195
15.1016
31.2693
31.8459
66.8034
14.8647
29.0541
60.6156
64.0048
31.1687
70.3716
51.4668
14.6408
24.4184
66.998
14.1881
24.0121
10.8701
18.3378
26.2809
27.1489
23.4752
13.7677
13.6933
23.6278
53.3382
50.5557
20.189
12.3443
19.6876
12.4133
42.2405
202.371
48.2018
30.3019
19.593
19.495
29.1754
19.4564
26.5054
28.7013
63.7159
20.49
30.2668
29.9058
55.9927
60.8535
63.081
13.641
13.33
51.1603
21.9959
21.457
54.0783
13.4043
57.3076
20.0572
236.703
17.6884
63.4896
14.8057
30.2802
66.0947
14.9536
28.9815
20.785
31.5272
30.3701
62.0895
20.0588
29.4964
29.1701
67.4969
64.3332
61.5046
13.2818
14.2018
56.263
22.1907
23.6642
54.1132
35.4009
20.9682
58.3614
23.0665
32.0561
29.2524
234.053
63.8273
14.2971
28.9617
27.2052
27.0929
66.6452
61.4862
28.5044
65.2275
68.6696
81.287
34.4594
102.261
21.788
24.8289
32.3716
44.1004
98.8124
19.7832
80.7256
18.3609
30.9486
19.295
87.9721
20.4154
19.1159
21.6526
38.5247
16.7929
18.2286
36.0916
72.0567
33.0651
28.2045
30.0052
83.7385
17.1956
17.041
23.1936
37.7744
25.9099
27.8113
39.7342
27.0206
63.7276
16.0247
72.4833
25.5771
15.3091
67.8762
75.3186
16.4082
27.9403
86.1291
16.8725
27.2408
33.5395
35.0705
20.1102
28.333
30.7496
17.6426
58.2349
232.556
56.4136
62.3956
60.643
21.3388
13.2005
14.8998
286.848
41.3439
30.8398
19.0703
30.2203
17.1992
32.7223
14.9049
20.2954
33.5892
22.5891
23.3351
32.3818
58.1386
13.6354
12.4639
15.2271
24.5033
26.5676
15.6334
37.7817
63.5223
14.4915
14.8957
21.6356
31.4258
29.0205
21.1284
68.1299
29.7963
21.2592
30.5635
20.019
246.519
61.4948
65.5104
254.798
19.1656
16.2129
22.7209
14.254
44.8631
99.6904
41.6332
20.7179
30.2246
19.2271
17.5665
28.9157
18.5586
38.7244
28.9125
42.059
285.837
34.0621
62.1798
29.3684
26.637
63.6761
13.0097
58.1234
15.0343
21.681
13.6153
23.7806
31.1374
69.4019
60.0571
29.2
245.92
18.5604
16.2699
21.6139
31.7515
51.7687
23.6318
67.177
74.3059
32.6919
70.5592
35.146
16.7715
29.9716
17.4847
77.9564
86.7733
22.2246
15.9144
72.5322
25.5162
20.4594
14.8448
12.8173
31.1453
23.7648
25.9477
18.2109
18.1023
14.9576
18.3036
20.8578
31.45
32.5775
25.2496
30.1373
26.8546
25.261
31.5505
33.4298
26.2256
32.1626
16.817
13.2584
20.9478
21.5003
22.3389
37.544
34.2923
35.1037
34.8326
32.1758
33.6479
147.303
48.5861
127.469
52.2502
42.4122
80.5992
21.0472
27.8976
23.2056
13.9475
429.67
21.8615
19.1781
29.0667
27.0765
24.4695
94.2358
82.4998
48.139
34.4661
32.0731
36.1294
44.6082
33.3727
38.6035
34.9285
37.7777
32.424
19.2031
24.0967
24.8121
34.522
28.9677
29.6769
29.4624
33.2014
31.5235
36.4536
36.6238
38.9601
15.9791
12.3024
365.431
17.6282
10.9191
144.42
17.1555
18.263
21.47
14.5813
359.511
34.734
36.1174
83.8979
40.6816
82.2689
39.2072
39.834
332.076
12.4781
9.78956
342.651
46.4945
13.5664
389.463
15.6792
23.3849
15.7538
14.8471
12.9036
27.8043
21.8137
19.5397
59.7426
140.336
51.0691
153.923
41.8476
32.8191
45.8216
38.3151
92.7003
56.8864
15.6747
16.4541
31.5497
39.6611
28.5939
23.1772
34.4264
24.3741
157.287
18.7807
25.5487
172.006
18.0428
25.4662
42.6531
25.807
41.3024
150.461
175.345
32.3006
46.6813
51.6965
28.518
20.1497
131.979
13.7019
22.7609
13.5535
14.4753
175.843
500.748
92.0905
50.8438
137.404
150.577
29.259
23.0967
29.2095
83.0042
38.6554
43.3228
125.737
433.392
13.7721
83.5807
18.2915
21.9153
24.1189
52.211
35.8838
81.6628
33.7645
19.6722
26.5596
29.5604
17.5315
138.002
131.197
41.4248
128.173
45.5122
15.6933
141.27
15.6279
23.7573
23.4198
15.6734
507.165
46.7103
51.4207
36.7848
30.8244
38.034
37.9502
57.5926
52.1406
11.2382
17.6874
25.9209
54.607
25.827
16.2322
10.557
14.2629
23.6965
33.5245
25.0234
30.862
18.4525
11.8717
18.3432
11.9762
26.0318
46.5984
26.7
51.597
29.9312
20.6852
20.4403
30.3296
58.286
13.001
21.057
20.1293
27.2558
27.5933
12.4536
18.2468
19.2685
30.1821
28.6921
28.078
18.986
19.3313
27.3442
21.2882
13.2772
62.5116
13.4983
21.0346
14.4233
14.6577
24.504
32.5675
22.8789
16.3262
14.9416
22.2167
32.1234
22.5405
23.7497
18.2868
210.448
16.9457
25.3132
10.7654
16.8325
21.2821
27.1132
21.9848
27.5342
58.5335
12.6125
12.9075
19.1651
26.9501
19.0397
27.1449
57.105
54.0807
11.9649
11.9866
18.6052
26.7373
18.8762
26.4243
54.938
18.1233
51.8138
11.6532
52.9616
11.9449
17.6057
13.3627
19.0275
60.2802
12.8925
12.4148
18.2335
12.4413
18.5142
53.9268
12.2816
53.3825
12.1215
18.7994
19.1737
55.9272
12.5418
55.5176
55.913
19.8797
12.3381
11.9207
221.789
10.7956
72.0691
13.7445
21.0323
14.6804
17.8845
22.0714
16.3142
18.7871
53.8361
12.489
54.6014
12.1557
19.776
18.1403
13.5497
248.131
21.0762
81.2487
32.7423
24.2731
15.1322
72.805
35.9317
22.7544
14.955
24.3265
14.9599
23.4627
15.8452
31.8825
55.3736
12.0587
16.5669
22.3757
13.5205
37.4624
24.7107
19.2052
17.3828
39.4993
82.1943
18.329
41.5038
15.5653
16.3028
75.7476
23.608
72.2434
15.5972
14.7945
63.5581
13.2194
258.361
66.9809
22.8643
29.7805
12.1148
234.745
14.4488
28.0594
18.845
21.7567
30.6025
15.3987
14.1374
32.427
23.9834
40.1441
69.7975
36.7456
27.4934
21.5393
61.8926
36.9802
21.2171
30.0157
58.7518
24.9735
35.3436
32.0117
29.6708
23.6906
30.1679
53.4142
11.5467
213.814
13.7972
60.1038
13.9623
64.1049
25.8394
17.6801
31.2895
33.5888
61.204
15.5171
22.3865
58.5398
63.4133
32.9913
39.4411
30.8769
66.6652
25.1776
37.3026
27.2313
25.9718
37.8988
64.5159
24.8263
31.8061
80.723
14.4732
22.3592
22.6021
16.0316
28.2034
50.6415
54.7561
28.7241
226.187
13.5955
59.7912
19.3351
55.706
17.9771
31.5336
56.6698
63.3011
65.7473
31.856
252.377
324.747
11.0861
11.0763
13.4097
9.65848
28.6748
25.1946
27.9694
28.882
26.8427
27.9693
23.0649
24.7355
26.1347
9.55223
11.339
19.4733
21.6549
17.7483
13.3078
19.2356
15.1472
17.0533
14.9821
19.0214
25.8158
25.0629
24.074
17.5233
22.6619
21.3872
27.7621
27.5013
26.0646
10.743
23.559
18.1779
20.9584
19.1505
13.3732
374.8
17.0805
33.0404
30.8103
31.197
28.9801
24.9017
27.8806
40.1872
36.3298
34.6301
24.0334
22.0218
25.321
455.714
427.632
35.6169
31.8005
30.9919
24.6907
29.9915
25.9624
16.0487
15.3077
161.73
14.2544
13.7751
474.829
103.901
27.3113
39.9958
13.6358
18.7675
19.8481
13.7792
38.5858
25.2684
46.2096
27.9804
22.4204
15.1739
72.3313
33.9291
20.2064
14.5906
122.533
12.5432
13.3016
483.931
114.796
45.6884
79.6304
41.7664
154.974
18.4634
11.9272
13.778
128.557
427.127
18.5119
21.6157
16.7633
36.6959
52.3774
38.6186
47.9196
21.7757
24.4887
25.5281
20.6626
27.988
26.3
29.6078
24.8716
32.6262
27.846
28.8684
31.2591
17.435
22.8356
18.8043
21.4614
140.367
399.674
32.2799
48.5328
110.987
31.4725
41.145
153.738
28.0254
20.0031
17.4672
10.5353
29.0851
23.6199
14.3257
39.8418
75.204
161.266
42.7098
442.587
25.4455
19.2905
13.1793
25.035
18.513
13.7481
26.3802
30.8243
30.1701
26.9414
38.4814
73.6104
42.7984
11.4014
111.464
45.4656
36.2559
34.9335
49.0976
145.622
28.4241
31.2581
27.0187
33.2117
9.96707
13.9677
20.9144
26.1463
19.1838
25.666
49.8953
11.8186
11.7576
17.6756
22.875
17.8135
22.6969
50.5751
52.1064
12.077
12.1996
17.4894
22.6846
17.6683
22.4664
51.3299
12.9288
66.259
56.6223
28.6394
31.4362
14.3411
28.9062
56.7347
12.3175
29.1527
56.4191
12.2513
12.2135
55.1269
55.2706
28.2508
28.3049
12.3331
12.2825
54.9255
55.617
28.638
28.3041
12.0459
30.1067
53.5906
11.1178
28.6789
49.4591
12.3911
55.2766
54.8005
28.4553
28.2047
12.4388
10.021
15.3171
20.6779
15.2276
23.1466
48.5565
11.6369
11.6901
17.3138
20.6256
16.0236
22.6206
47.1333
27.6795
12.8395
184.125
19.0104
14.5354
17.6529
41.2475
25.7771
20.9314
20.8584
25.9105
48.4555
21.5785
23.9664
21.5366
23.9372
50.8854
25.9011
20.927
20.8961
25.9304
50.6333
63.2438
45.9949
24.1836
27.9758
30.3083
10.277
21.6023
28.0776
22.7895
26.2569
53.7907
26.3339
22.4628
21.4993
27.3558
50.4956
50.4698
14.5853
26.4566
20.0101
22.3151
27.6268
13.3087
25.9647
30.1678
25.1638
17.831
22.0929
22.1084
22.3974
17.785
22.1238
29.7704
25.008
25.0089
15.8136
11.8305
33.7103
28.1247
22.8091
31.5036
13.1256
21.1243
81.5901
17.1855
18.8163
62.8643
31.9413
38.983
33.823
30.5118
24.3666
24.1002
30.6872
71.6522
16.9123
16.566
26.4861
32.64
36.2856
27.6895
61.9663
33.0768
24.7434
26.345
31.1816
19.6401
24.6242
13.0493
15.1586
24.7347
24.3852
31.2656
25.6102
16.3527
22.0052
21.1965
19.7487
14.8033
20.6424
29.5085
25.1169
24.8572
63.5493
31.4572
60.8925
30.5911
20.5067
13.8335
58.8689
59.1028
14.7263
21.3351
13.5198
13.4317
56.9532
29.1429
26.9103
31.9419
70.3812
31.5887
34.0691
223.928
52.1156
24.9287
26.61
27.6708
18.082
22.2641
18.1297
12.7339
12.6513
12.5814
12.607
22.31
18.2118
18.1654
31.3387
24.973
20.3941
54.32
28.9068
25.15
20.0603
24.0263
16.1463
65.2387
16.7281
69.4767
23.2871
33.0881
34.2556
25.1815
80.3816
58.07
26.4972
23.9271
20.6999
15.5877
231.589
14.0268
22.9666
13.7973
13.9569
68.9334
21.8424
23.5105
20.153
12.895
13.7471
17.0534
10.5533
15.5216
22.3454
18.2536
18.7212
28.9908
29.7232
58.3943
57.2131
13.9385
19.9084
11.5029
18.8212
28.3815
31.4743
29.263
29.5263
65.5227
11.8025
290.353
276.359
106.062
127.583
10.2984
105.79
8.87216
34.8114
37.0818
31.3923
60.3911
31.9867
35.4762
30.945
39.4942
21.6436
18.1337
20.1275
19.8307
9.38146
13.8935
12.125
11.1816
342.307
39.2243
36.7532
75.2502
43.9161
17.2925
16.5312
18.7114
14.7681
14.7626
15.6281
17.5427
12.8767
126.98
104.229
25.2194
24.6214
25.618
24.1318
23.7195
24.3916
25.238
22.6462
27.028
25.6921
26.5656
26.3361
20.6789
23.2157
22.6342
21.3665
13.9915
13.002
10.0719
34.4572
43.1341
103.163
36.9959
117.63
24.5615
20.0435
23.7245
21.0771
20.8983
18.1748
17.0578
22.0193
140.997
12.8146
15.809
115.699
11.8424
16.9725
71.5799
47.5415
15.7591
18.7367
25.0825
27.6817
17.0018
21.8352
22.4207
26.779
89.0171
96.5174
35.9294
23.9785
34.2222
31.4989
23.1844
32.8907
11.5645
12.5663
104.096
18.1979
13.4935
24.4107
20.8338
21.9264
24.8265
12.9521
16.8962
45.2792
41.6957
31.5182
109.078
33.5303
30.1445
13.399
11.1336
109.421
14.7709
9.80894
368.894
16.4849
12.1869
12.7334
15.9675
41.3005
100.159
27.0376
29.5537
31.869
27.4954
68.5803
34.2596
24.4066
26.5993
20.761
24.3348
22.5741
20.4459
27.2366
26.2171
29.0032
26.4799
31.2623
27.7867
31.8739
33.8202
25.6347
26.3834
29.9822
28.426
44.6194
34.8709
93.3865
29.2632
34.0553
23.9345
25.0007
16.7813
19.4068
21.8852
18.1723
24.1223
21.7231
13.8534
15.6744
20.3306
11.8686
17.6947
20.9468
39.5266
29.598
27.2223
20.0108
15.9484
20.2734
35.8007
24.8586
25.4157
22.6769
17.3192
21.6492
11.6014
14.2543
20.4061
23.1898
12.0862
16.5056
18.0825
22.6509
30.4933
28.7203
24.9479
23.2544
29.7235
26.8509
26.5259
23.7622
45.6335
348.114
68.7236
66.9895
34.3061
66.5293
32.7573
36.7981
34.7737
29.3882
28.7956
25.6386
37.6548
32.6817
26.7867
25.1334
9.61582
15.1594
19.1141
14.3452
18.6405
27.0467
24.9402
41.8288
8.9285
14.1638
42.0684
9.74438
13.1268
22.355
47.6396
23.8615
10.4391
14.8278
10.2011
15.1772
23.2363
44.3115
47.0524
24.425
20.4288
21.2289
22.9952
205.306
47.8552
17.3999
50.9841
21.087
17.3018
21.2376
22.3202
20.1019
19.9928
22.4763
26.1295
49.8781
50.1715
25.9812
23.1268
43.6319
23.4877
19.6808
17.7671
16.8904
20.1818
17.2118
46.9722
20.3327
16.7546
48.6481
21.4194
20.9118
18.3312
18.695
20.5761
25.2971
49.2479
25.6626
9.98529
14.4631
17.8175
14.7293
17.907
24.8757
20.4014
46.9761
10.9952
11.0041
20.3685
24.2054
23.7927
20.1011
46.9798
11.027
11.0078
20.1724
24.1968
21.6427
21.4058
25.6827
19.1808
18.1302
14.9607
14.7606
18.2291
11.1442
47.1258
16.4818
47.5214
11.2234
16.3614
18.7583
15.2047
15.362
18.5489
20.9613
24.7101
24.6316
21.0306
22.875
43.5271
28.2402
26.5545
19.4914
15.8232
15.866
19.3764
11.956
49.3786
17.2145
48.0495
48.7893
11.6486
17.8368
19.4035
15.8745
15.841
19.4332
21.455
24.9108
21.1925
25.2553
25.168
22.7339
25.0844
57.7383
30.4235
30.0597
28.9808
29.1684
23.0982
25.8592
25.5635
13.1321
18.5552
12.7437
53.5824
54.195
18.1113
12.2073
12.483
22.4752
16.9245
13.555
23.8275
20.6579
11.3033
30.7448
54.8645
63.0793
47.2438
204.432
22.626
25.121
29.4749
54.0747
22.3064
25.2504
29.6112
56.1997
15.4436
19.1765
10.252
18.5377
12.7898
24.4597
25.5879
57.3593
73.3944
26.1372
35.3336
30.0942
60.8406
200.914
13.217
46.2999
15.121
11.4785
10.2724
20.5259
17.662
22.0228
25.2253
22.628
23.1376
22.5044
29.2078
24.9214
17.2463
20.8571
21.1283
16.8189
11.1311
15.954
21.3597
18.8003
18.9092
20.4113
21.4757
19.6567
10.1526
13.6312
14.8303
26.7229
23.0449
22.8525
26.9641
17.8114
12.4317
16.551
54.0433
28.0693
53.8391
27.8669
23.7942
25.3358
33.8505
36.0293
24.3433
28.5626
26.9495
32.8153
19.3271
12.7635
52.9355
53.3803
19.6832
13.27
22.3206
24.8716
26.5978
30.1265
21.489
24.5729
26.4191
30.4646
48.2321
25.3901
29.7265
31.1529
17.0455
20.3341
20.8231
22.6378
24.1283
22.7092
17.2406
20.9049
20.9911
22.314
23.9922
22.5825
23.9543
24.1305
23.5233
23.5823
23.8332
23.5974
24.0591
23.5993
25.001
24.3469
35.6414
29.4699
26.004
31.2733
24.1289
25.2273
24.8724
24.3425
25.6101
24.6603
25.5528
26.158
24.2563
24.3658
23.948
24.0209
23.1687
22.8614
23.8168
23.5
23.7165
23.0231
20.4195
20.3972
22.5841
22.7348
21.099
22.1925
20.9614
22.2124
17.301
16.6335
11.524
10.8907
16.0308
12.827
15.27
12.394
19.865
18.4153
20.171
18.0915
20.5573
20.7338
17.3276
16.9045
19.4402
17.1075
18.1467
16.2231
20.0656
19.4168
15.7052
15.2915
23.4751
22.5304
23.5284
23.0813
23.7133
23.4668
22.3514
22.6311
23.1038
21.9477
22.1837
20.331
23.3345
23.1764
20.8516
20.1222
23.5274
23.6312
24.995
24.5324
23.7729
24.7578
23.9063
24.2657
21.8241
21.342
18.9469
18.2404
21.6175
20.1244
20.1362
18.4824
17.4502
18.4648
11.1889
14.3773
9.42063
18.0309
14.3952
24.0424
22.893
27.5331
26.7639
25.2413
27.0889
23.4129
25.4654
23.4568
20.6027
24.5722
22.712
24.6968
25.1595
20.1485
21.3209
18.4395
21.0803
14.0326
18.3636
15.5648
12.7755
21.8793
20.7772
15.5614
12.0914
12.2703
9.8636
9.40984
15.9001
13.1004
12.5675
9.0303
9.16849
20.6299
17.8473
20.2918
24.3188
21.3383
21.9932
22.9897
25.1259
22.4691
17.5506
19.3057
19.9329
14.7458
10.663
107.172
10.3569
15.1909
13.4234
17.686
14.5891
20.7872
18.1539
19.746
21.0348
14.0429
15.8783
316.665
28.0519
34.3215
37.5715
30.3595
56.4584
18.8993
17.4339
23.387
22.4101
20.7642
22.9594
17.8022
20.7881
9.12109
85.3795
11.6659
10.9864
110.632
22.3544
23.5074
21.8283
18.6717
19.7174
20.0954
20.8775
18.9942
20.4319
22.9322
21.0472
21.4384
78.8297
35.2476
98.7021
52.9067
77.6526
8.23864
9.67305
13.7644
11.3252
286.509
8.27685
12.6431
8.46866
11.6534
8.84484
80.7205
8.70915
11.5014
8.41943
8.59314
15.7755
17.7154
18.1809
20.3809
22.2854
20.3823
16.1251
18.3108
18.4661
19.6744
21.9868
20.1232
12.6301
10.5475
18.6742
16.9605
15.4112
18.4803
11.1017
302.265
14.4713
107.185
33.8606
36.7435
32.0102
24.6648
29.5294
54.4173
26.4714
24.0945
27.5855
11.4861
16.2916
12.4852
14.2565
16.6549
9.66971
8.66587
12.4276
15.0433
12.5324
15.1097
17.2065
16.3531
40.9896
20.9288
16.3695
17.4579
17.3284
16.1398
40.8715
20.9497
16.2324
17.4357
17.2132
19.6156
18.9828
17.8091
13.8878
9.60034
9.77754
13.6775
21.5841
21.4601
9.77163
41.3365
41.6382
9.73124
13.5843
9.54123
9.52745
13.6022
16.5279
18.3717
18.2851
16.5973
17.2324
18.4041
18.6137
16.9913
14.3533
10.127
10.0182
14.5765
21.5147
21.1226
9.56044
39.4691
41.3871
171.23
8.68607
14.0922
10.3189
9.87139
15.0457
16.575
18.3422
16.5868
18.2128
8.2521
11.8165
14.3294
11.9947
14.3764
16.9299
16.2635
36.4086
18.4153
17.3309
16.8947
15.709
15.1896
19.8862
17.1202
15.2553
16.0805
13.1996
15.6228
15.9197
12.9509
37.5931
9.43219
9.5111
22.1705
41.3446
21.6317
42.7283
20.0474
20.393
18.4392
23.9109
9.57308
38.4857
9.52829
13.8992
18.0433
16.9171
14.5099
15.69
18.0925
17.6978
16.4959
156.168
10.9682
10.0077
40.5299
20.0796
17.8286
20.4997
17.2981
9.32204
39.0295
9.52519
13.1014
16.2699
13.4609
15.7804
10.6541
10.7983
19.0676
16.6615
15.7954
15.2611
18.6801
15.4641
11.7289
11.0553
19.6822
18.7002
18.6389
19.6657
181.176
21.5592
24.5654
21.5599
20.1136
23.8212
21.5235
20.5514
19.3907
20.6554
25.3544
25.6625
22.469
11.7979
14.0889
21.0635
17.6917
21.5251
11.9879
18.0698
21.7095
12.0578
18.062
22.0088
19.8011
19.6109
18.9323
20.5032
47.2263
16.696
12.04
47.743
11.6834
11.2672
16.1843
11.383
56.1382
25.8622
26.0171
41.6585
21.3145
17.4464
14.7201
14.4644
17.5661
22.9215
44.7185
44.285
23.0606
22.2198
23.0013
44.8971
22.0177
20.3246
21.1035
21.9029
19.2605
20.985
22.7685
22.7766
21.7295
19.3326
18.1019
20.2584
12.8045
60.1601
18.4286
51.16
11.3468
17.8179
13.7231
41.9203
10.5534
15.016
18.2371
16.7133
17.1087
18.1234
43.2722
46.4979
11.4862
15.5881
43.9434
10.8253
14.2335
9.77076
23.4817
44.852
23.1553
45.7077
19.9083
20.1501
19.9262
19.7369
19.4954
19.7307
19.8428
19.8622
19.8595
20.0479
19.5865
19.8019
20.6771
20.3872
20.6482
21.2426
20.9882
20.9229
21.1972
21.5059
20.9559
20.4777
20.8175
20.7115
19.5671
19.5141
19.4289
18.9334
18.8591
19.0249
19.3068
19.0713
19.1543
19.296
19.0861
19.2833
20.2354
19.5509
19.9833
20.1954
19.4713
19.9922
20.5259
20.5155
20.3424
19.0648
18.9789
19.5648
21.51
20.9056
21.1313
21.3762
21.0969
21.2047
21.6311
21.4207
21.272
20.7853
20.9391
21.0362
21.1396
21.4336
21.1333
20.4237
20.3365
20.7556
21.0407
20.7354
20.9856
21.2775
20.5644
20.9459
19.6428
21.2194
20.0879
17.708
18.9816
19.0845
18.3551
17.4116
18.8365
21.4637
20.3318
20.3124
22.3072
21.0249
21.9592
23.8741
22.4967
22.678
23.3435
24.1693
22.916
20.8407
21.5753
21.7558
21.52
17.4172
23.0692
16.9981
8.23589
7.94221
11.7595
9.20138
9.73347
10.4367
12.1504
10.0945
7.20261
7.63755
20.8485
20.0956
21.0114
23.2484
22.2772
22.0297
21.7666
23.1057
21.9263
20.0779
21.3353
21.0618
17.2387
18.0886
16.8638
13.5326
14.6097
15.1037
15.8812
13.9292
15.4907
17.7386
16.0264
16.4945
8.73044
10.2204
83.3003
8.09484
9.4173
6.45145
7.39276
14.1236
13.385
14.8609
18.3842
17.1395
16.8507
15.5834
17.8361
16.2526
14.1194
15.8586
15.5205
14.8952
12.9972
14.6642
13.1783
83.9486
8.36675
10.5449
250.789
8.63874
6.34406
9.20578
7.09983
25.2516
30.9013
22.9058
48.7037
17.4628
15.9883
17.1582
19.332
17.3142
17.9092
18.5767
19.5955
18.2498
15.4453
16.0032
16.7242
16.1134
14.4473
14.7175
13.8998
12.4771
14.1532
16.8319
15.3893
15.5746
12.8214
11.2043
13.1122
7.43867
10.9211
13.1874
10.8338
13.1373
14.6643
14.383
15.0038
14.1969
14.1785
14.121
14.1799
13.9212
14.6941
14.0825
13.8632
14.0022
11.9674
15.124
14.6797
12.5001
33.5675
7.84973
139.287
17.6171
22.4412
18.6979
20.408
16.2471
14.9017
15.1656
15.9317
18.7525
44.276
8.92819
12.4271
12.6436
8.7629
8.64475
12.7228
12.2279
8.947
17.4096
33.8421
15.9699
18.1839
15.8828
18.2904
15.3525
14.576
15.5637
14.3797
17.0228
33.5996
8.45114
12.1604
8.5683
11.9972
7.76485
11.1558
14.0553
11.2948
13.7874
14.7266
14.6035
15.4794
14.6959
14.6028
14.6414
14.6846
15.0664
15.2881
14.5443
14.5719
14.534
34.2899
8.67157
9.01619
14.9958
17.3749
34.1277
15.3474
15.8728
15.2402
16.0322
14.4145
12.1623
12.0789
14.4624
14.9523
17.3685
35.5965
8.68376
8.58626
34.1275
9.07023
13.5303
13.0258
9.32736
18.039
34.8333
16.0344
16.6872
16.206
16.5896
15.0148
12.4514
14.6637
13.023
17.4531
33.1711
41.8054
8.98026
9.77931
18.5631
21.769
21.6202
18.7123
13.7768
46.309
9.55937
39.7854
9.45856
14.2566
18.5028
24.0457
21.045
20.8004
17.4241
18.5043
17.5148
16.0482
18.0542
18.0343
17.7666
16.4691
18.0207
18.5978
16.9158
17.2696
13.8319
16.6377
13.673
8.57761
166.048
9.25281
9.52241
9.46293
16.6765
12.5396
13.4005
12.6222
35.1148
35.3296
35.6883
8.64032
8.55897
12.7481
16.6006
17.3332
17.2356
16.7774
16.6639
17.6726
16.8875
17.4192
16.8278
18.1017
16.9581
17.4518
9.32569
36.1473
18.2933
35.3879
18.5595
9.10816
18.4422
17.2502
18.829
17.2553
15.2777
17.7707
17.1414
17.8099
17.5039
17.5618
14.4119
16.679
16.8291
18.0923
17.3772
17.585
14.3597
9.61964
9.94731
49.8184
14.6204
11.162
10.2454
42.5923
37.6504
37.559
157.246
37.454
9.3055
36.9832
19.1693
37.0102
19.108
9.58686
17.703
18.6818
18.2549
17.9314
17.5582
19.6901
19.1084
17.5915
5.48275
34.7177
7.52287
7.14848
5.78114
24.8931
24.7784
39.9952
21.5752
18.275
18.2753
18.05
18.1914
18.7195
18.3881
18.5314
18.5597
19.3441
19.5815
19.585
19.3225
19.0111
18.9509
18.7814
19.1982
26.5412
27.0807
42.5604
22.812
24.2382
24.3614
22.4801
35.3965
19.6811
19.7889
19.3033
20.286
62.1704
6.4232
28.0224
25.2291
78.548
7.54296
9.91314
7.19735
66.3651
9.147
12.1863
10.3856
10.2355
11.8281
12.9575
11.1071
6.30641
8.42543
8.31685
26.0022
19.9556
20.5495
24.7001
10.1553
8.24668
10.1249
8.29807
13.7884
15.161
14.9418
14.1021
14.683
15.8662
14.7411
15.785
6.28563
11.2467
9.88382
9.13847
8.43589
10.3533
8.3103
7.81767
7.16961
18.4643
17.375
17.407
18.2931
20.0127
18.5791
20.5377
18.3248
15.3431
14.5947
14.7831
15.1647
17.4643
18.199
18.0038
17.6314
15.8812
15.5678
15.3934
16.0203
7.88268
50.1434
49.8899
5.93394
49.0098
7.72968
6.05145
12.9755
14.2331
13.1049
14.083
12.6605
13.5639
12.5013
13.7272
19.9822
20.5542
23.8717
18.9
17.1457
16.6303
17.3611
16.4744
16.6114
15.9281
16.4228
16.0869
6.66687
9.96784
12.0539
9.72692
11.9346
13.7297
12.8215
12.4196
12.3679
12.481
12.4849
12.9181
12.7194
12.6888
12.4282
12.5776
12.5307
33.1329
8.26033
8.05954
13.7657
15.8179
31.1284
13.685
13.8406
13.722
13.8029
12.9284
10.8114
10.765
12.9722
13.4006
15.6881
30.9999
7.58884
7.55435
30.8678
28.0097
6.38535
12.8353
15.0435
29.4697
14.1873
13.7667
13.6535
14.369
14.1664
11.0422
13.3227
11.4947
13.242
15.2291
31.184
7.7137
7.91335
29.9932
6.93581
9.94427
12.2496
10.1391
12.3318
13.2111
12.9708
13.0611
13.1108
13.0382
13.189
12.8741
12.9147
12.9684
13.061
13.001
13.1548
15.2319
30.5594
12.6339
13.0578
15.2307
13.1079
13.4695
12.7551
13.8911
11.2455
7.69839
7.85396
10.9048
30.0183
12.641
13.0483
15.541
30.8128
15.218
30.3121
17.5682
13.1881
13.8679
16.2459
13.3568
14.582
13.7874
14.0584
10.8645
7.62892
10.7777
7.66891
31.6183
13.0613
13.7242
15.5832
30.9136
16.0303
31.212
15.9188
15.8668
16.7299
15.314
16.3228
14.2239
16.3633
14.1838
31.47
29.8801
14.5313
15.53
14.9692
14.849
14.9971
27.3492
6.15924
14.6236
27.6459
5.68224
13.3202
13.9851
13.6738
13.6608
13.7095
13.6011
13.2604
14.0387
15.243
13.7715
14.2287
14.4804
30.1922
29.7048
128.947
10.9844
13.4347
13.2789
11.0636
11.6732
13.7637
12.0452
13.8022
27.9339
13.9137
17.4004
16.7926
35.485
6.45472
13.8932
13.4545
13.3281
13.9413
16.1805
15.5539
18.0592
14.0537
8.60985
122.513
28.8441
7.69111
13.5349
13.1262
13.4901
13.2542
13.5454
13.8053
13.4621
13.9131
14.5427
14.8126
14.5654
14.7989
14.0577
14.6876
14.8096
14.0678
14.0061
15.4838
13.741
16.0123
9.53716
12.8652
10.3047
12.3655
7.74267
32.903
11.1523
29.181
30.9374
7.51691
11.4105
15.4538
15.0891
15.4116
15.146
16.2532
16.3832
16.2354
16.4034
16.1566
16.2015
16.0743
16.2893
15.6562
15.5625
15.7326
15.4798
15.5166
15.3486
15.6394
15.2099
16.0377
16.1578
16.0932
16.1161
16.6028
16.5744
16.5356
16.6252
15.9566
15.5435
15.8421
15.6643
16.4293
16.3617
16.4659
16.3226
14.4275
13.6902
13.8237
14.3071
15.1706
15.5791
15.7166
15.0273
13.6476
12.8032
12.9422
13.5092
38.625
15.1237
11.2407
14.6837
11.4101
44.0814
44.6485
7.77373
8.85536
9.23506
7.38517
8.2819
9.80327
8.60332
9.5189
14.6457
15.3174
15.1526
14.8151
12.8087
11.7493
12.0682
12.5166
13.0402
12.5089
13.2384
12.2886
10.634
9.68767
9.85065
10.4675
12.9815
13.6936
13.5187
13.1625
11.0065
10.4144
10.2002
11.2175
11.7314
10.2096
11.8876
10.0952
14.9454
26.1331
13.8732
7.14385
8.60052
7.16869
8.57102
6.58651
7.51607
6.11467
8.00421
13.5669
13.8759
14.0279
13.3914
12.1745
11.4456
12.2148
11.4057
11.7019
10.611
11.4295
10.9151
6.12187
9.02238
11.1757
9.01119
11.4907
11.3656
11.0822
11.4677
11.7372
11.3556
11.8203
11.5863
11.7842
12.7771
11.9585
12.2625
12.0183
14.9548
12.2403
12.5645
29.4629
14.6518
11.9653
13.03
12.1723
12.7753
9.9183
6.84712
27.2277
6.92589
9.89089
11.8209
12.4074
13.7966
27.8305
14.4501
28.2039
11.3839
13.4555
11.3357
11.5916
13.7018
12.0802
10.004
11.5719
9.79301
11.5461
8.36286
6.38522
25.4976
9.19957
5.76351
107.25
13.0639
12.1123
13.3013
25.3024
12.8577
25.2956
5.64266
8.17067
5.44104
8.06786
11.0495
10.0858
10.2216
10.1596
9.777
10.1809
10.5689
9.86605
10.1547
10.1665
9.73472
10.1854
9.88332
10.2731
10.121
10.1555
10.3915
10.1604
5.99413
8.33648
5.88787
25.0194
8.41406
22.7364
4.94515
13.8061
10.7101
10.2853
10.5809
14.0714
10.2974
11.3732
11.0784
12.5187
10.1078
9.94054
12.1796
10.2814
8.51154
9.96138
8.30894
10.286
5.84765
23.8232
5.53874
24.0886
10.0342
9.94584
10.2709
12.0464
10.2932
12.1039
14.5017
12.6554
12.8761
14.5306
115.71
27.1875
34.323
16.1904
12.4361
13.0959
12.7666
12.8046
12.1075
13.0323
11.7806
13.0737
13.3141
28.24
14.2231
11.5962
13.1153
11.5327
13.5608
11.444
11.5294
11.8219
11.1298
5.98191
29.4118
23.4231
13.8204
5.71092
8.50647
6.05998
25.2581
9.10753
5.6519
22.9768
11.6566
11.9818
11.9161
11.8151
11.5458
11.766
12.0224
11.2619
10.623
10.7057
10.935
10.3801
11.0367
14.528
11.4653
12.8763
10.7634
11.5293
11.4415
10.9684
10.5749
12.1409
11.9799
10.8737
9.88538
9.7616
10.1247
9.47916
10.761
9.24172
10.742
9.54777
10.2612
9.86116
10.3067
9.85665
10.1878
10.0029
9.94996
10.2406
8.88228
8.60173
8.56293
8.94381
9.26404
9.69033
9.62938
9.33537
8.83151
8.85712
8.79254
8.80098
4.95432
20.7533
9.99951
19.0737
10.5538
5.17043
25.6709
20.2138
10.3626
19.352
12.5586
21.3232
10.9628
10.4173
10.4166
10.852
10.6682
10.2439
10.468
10.4966
9.76535
10.4083
10.0886
10.0714
9.18785
8.86951
9.24658
8.88245
10.0567
9.9737
9.67654
10.289
10.8303
9.30538
11.125
9.33919
13.838
13.7586
13.7125
13.8266
13.7627
13.6637
13.6942
13.7291
15.925
16.0359
14.9024
18.9339
15.4374
13.0901
12.5961
18.1965
13.724
13.6583
13.6639
13.7225
13.8406
14.1025
13.6491
14.0133
14.0394
13.8678
14.036
13.8894
14.1759
13.9377
14.1206
13.9711
21.9241
22.713
15.3695
77.9203
14.2163
16.7027
12.2233
26.9569
12.9014
13.3344
13.0006
13.2662
11.9636
14.2834
11.8445
13.5414
6.88509
104.628
30.5155
105.207
6.54009
15.4343
29.6487
8.70381
6.91702
27.9998
97.5764
97.6732
6.2562
4.99059
8.0047
95.3096
99.0415
17.298
15.9148
14.7744
24.8473
17.4581
17.4178
14.8827
28.0147
9.82282
9.4055
9.03016
10.1494
11.1314
11.5613
11.7674
10.9155
9.02769
7.95325
8.2293
8.77107
7.94134
7.0616
7.88218
7.11027
8.9256
10.2893
9.0443
10.0327
11.2394
9.79425
10.0232
10.8658
14.5728
17.0209
27.5709
16.5282
12.7552
24.4571
11.8498
39.9553
26.2091
10.1658
11.3528
10.8878
10.6821
7.03722
49.3355
4.63242
5.83853
148.505
5.96661
7.77133
7.54657
8.47536
6.73787
11.3711
11.695
11.8113
11.2659
11.0189
10.6506
10.5417
11.1455
39.8387
24.3786
27.8493
18.4044
15.7557
49.2803
11.4123
10.7491
10.8682
11.2634
12.2997
14.2583
13.3407
12.7626
6.78989
6.04101
6.79277
6.03533
8.17893
8.62279
7.925
8.85637
10.4098
9.60386
9.48241
10.5871
11.0519
11.6028
10.8401
11.9619
10.2886
9.30662
10.0682
9.52839
10.6093
11.3359
10.6618
11.2171
5.84612
142.092
49.4495
28.4712
5.94367
7.01059
140.84
49.7634
4.66472
144.174
17.8383
12.7426
13.5671
15.3083
14.3329
15.9358
13.4674
18.5318
13.0582
12.2125
11.932
13.8072
5.27852
7.42676
6.80566
9.48561
7.82188
10.0644
10.0534
7.86788
9.60905
10.2042
9.23153
10.106
10.0711
8.77276
9.71091
9.81951
10.1888
10.0991
10.0348
10.2524
9.9588
7.39924
5.09604
6.67387
12.1793
11.2726
22.5151
13.9806
11.3887
10.4126
10.0577
10.6607
10.3399
12.2578
9.61892
9.61751
9.95042
9.82855
9.59997
9.68228
23.0965
5.73172
5.6682
11.6691
9.96128
11.5703
9.96126
9.97236
9.84486
9.82044
9.68996
9.72443
9.68699
5.32267
5.38855
9.43416
7.7685
10.2939
10.7104
7.92938
10.0588
9.3989
7.77455
10.222
10.3725
7.86643
9.808
10.1111
9.07144
9.43311
9.32033
8.8546
9.13777
22.201
10.9366
9.4974
9.22519
9.39145
9.20592
9.66074
9.42061
9.36423
9.2427
9.24791
9.21397
9.50114
9.36449
10.1629
10.9559
9.80295
11.0409
23.8461
13.118
9.62757
9.54649
10.7825
9.74044
10.1054
10.2615
9.48555
9.57239
10.1703
9.74715
9.87197
9.67991
10.1528
9.36507
10.7829
9.74723
10.6661
10.0454
10.3006
9.34452
10.3814
8.92508
10.9213
10.3844
10.9904
10.394
9.82258
9.28161
9.46495
9.64665
10.7742
10.195
10.9007
9.9514
8.74625
8.4585
3.56656
16.1849
17.3508
77.6502
3.06181
8.05172
9.33926
7.65445
9.48531
7.99838
8.80085
8.36958
8.46267
7.63404
7.67955
7.72049
7.53681
8.28686
9.79099
9.52169
8.74839
9.72398
8.21958
9.95139
8.0835
10.0784
10.0614
10.0851
10.0594
9.90618
10.6356
10.137
10.5137
9.24572
9.1877
8.89686
9.50646
9.54535
9.83738
9.55732
9.83112
9.48429
10.0208
9.13435
10.2197
10.0574
9.61266
9.98671
9.71142
10.1459
9.81752
9.99503
10.0212
8.10863
5.49928
8.00529
5.57317
9.80381
10.0776
10.4428
9.53255
10.4183
10.0895
10.2665
10.2576
10.3739
10.0739
10.5119
9.84091
6.77277
8.27625
7.16339
7.37349
8.42057
7.37211
6.93612
8.6335
7.64524
7.78818
7.20324
8.18085
8.4097
9.69528
9.45491
8.80781
9.14062
7.80469
8.21551
8.88547
8.6918
9.09292
8.73119
9.06018
8.15698
5.90225
8.30477
5.72938
9.82873
10.1047
9.57668
10.4016
9.59597
10.1249
9.8423
9.91263
9.54931
9.93679
9.19173
10.1763
10.2914
10.0886
9.8683
10.4303
9.73028
9.43322
9.40281
9.76029
12.1263
12.1361
12.1956
12.0675
12.0778
12.0163
11.9573
12.1374
12.5944
12.5683
12.5396
12.6213
12.582
12.5387
12.5189
12.6048
12.2336
12.0714
12.1162
12.1911
12.3615
12.4619
12.4478
12.372
11.158
10.9701
11.0559
11.0752
11.3338
11.4721
11.3828
11.4229
10.8383
10.4966
10.7374
10.6014
11.2404
11.659
11.4559
11.46
11.6094
11.5527
11.6584
11.5032
11.7067
11.8178
11.6218
11.9037
12.5545
12.4224
12.4281
12.5414
12.6045
12.5378
12.6126
12.5247
11.5867
11.5119
11.7137
11.3749
11.6887
11.829
11.6489
11.8744
12.3299
12.4568
12.361
12.4344
12.1784
11.9883
12.0849
12.0529
11.0065
11.5305
11.4319
11.106
10.441
9.87473
10.006
10.3062
12.1583
12.5965
12.2419
12.511
11.8074
11.3179
11.4493
11.6834
10.0643
9.71728
9.63006
10.1522
10.6847
10.9387
11.0815
10.5341
4.85365
4.21638
4.81192
4.25519
5.56845
6.40232
5.74513
6.21579
7.09109
6.43067
6.45999
7.05708
7.86443
8.49336
7.94095
8.41691
7.5005
7.03604
7.70405
6.84128
8.07049
8.55334
8.00038
8.62513
11.5748
11.8446
11.4942
11.9265
11.2783
11.072
11.4538
10.888
9.6415
10.0039
10.0381
9.61275
9.3332
8.96184
8.88559
9.40622
10.0604
10.6734
10.253
10.481
9.53315
9.02077
9.09355
9.46335
8.05425
8.38521
8.46084
7.9795
7.71427
7.36041
7.25849
7.81766
9.96728
10.2331
9.86567
10.337
9.7734
9.7087
9.41178
10.0724
8.00866
7.45206
7.54799
7.90844
8.64903
9.35775
9.04695
8.98032
4.24287
3.86438
4.44325
3.66485
4.67284
5.8309
5.31551
5.24771
7.35324
6.56866
6.75466
7.18271
7.87965
8.19939
7.65517
8.41466
6.4647
6.37513
6.93609
5.84638
7.24001
7.99805
7.44988
7.79429
10.7678
11.2729
10.9192
11.128
10.2429
9.95614
10.3181
9.83896
9.78204
10.0547
10.1375
9.67953
9.29989
8.65967
8.86375
9.109
9.06994
9.62066
9.27165
9.45974
8.73144
8.46427
8.26808
8.92113
4.79774
18.5378
4.70206
7.36517
5.36549
8.69996
8.62998
5.92579
8.05606
8.90992
7.03736
8.86551
8.74994
6.89215
8.30372
9.25384
8.70766
9.1584
8.81038
8.53589
8.57895
8.7574
7.90199
9.57156
8.08846
7.79004
7.80149
8.79312
8.6481
9.60896
8.33046
8.40004
8.04677
9.11417
8.20823
8.55014
8.35197
7.9015
8.13345
7.69906
7.43759
8.44171
8.19411
7.61855
7.96232
8.72074
8.42971
8.93896
8.38099
8.22054
8.15892
7.01262
4.61913
8.49562
7.94922
4.52611
6.57992
6.48594
4.34892
8.18481
7.86441
4.36364
6.51292
7.54279
7.28231
7.87666
7.77757
7.29102
7.57629
6.56756
6.69482
8.05979
7.5198
6.93587
7.26263
8.0902
7.83556
8.39832
7.74325
7.63532
7.50411
8.48709
7.94352
8.39624
8.10527
7.76058
7.88184
6.71961
6.9639
7.22377
7.23657
7.19045
7.31651
8.10386
8.05162
7.89539
7.47439
7.85169
7.54196
9.04342
9.26956
9.02654
9.32874
8.5812
8.09821
8.30068
8.38359
16.9372
4.03474
4.3059
5.33653
6.55144
6.96391
4.74037
8.09706
7.95942
7.84518
8.22038
8.0261
7.65179
7.83235
7.92924
4.46486
3.9486
4.38437
4.03322
5.02412
5.58356
5.16692
5.4309
5.77037
5.33483
5.38819
5.71656
6.20563
6.5985
6.25985
6.54633
6.20122
5.98836
6.37579
5.82471
6.40428
6.65963
6.32453
6.73664
8.82684
4.27816
6.3594
4.4458
6.15877
6.98565
5.90219
6.30275
6.81317
7.11371
6.91127
6.85919
7.18006
7.64058
7.54983
7.83157
7.36088
7.31207
6.9683
7.04341
7.23755
4.3851
2.77179
3.0192
4.02093
5.43821
5.75483
5.66777
5.55345
6.33501
6.2018
14.5295
7.11135
5.70018
5.82276
5.88942
5.63151
4.86519
3.71992
3.38001
5.10976
4.20781
3.78175
4.1748
3.82207
4.43836
4.66957
4.31033
4.7972
5.56295
5.25144
5.17974
5.63344
5.83791
6.21316
5.88087
6.17729
5.48439
5.01971
5.35815
5.14644
5.93963
6.27727
5.9759
6.22538
6.72421
7.7592
14.2823
2.97275
3.35649
15.6744
6.4777
5.57451
5.37821
6.62261
6.57541
6.48597
6.45327
6.60118
6.06001
4.38256
5.63374
4.90085
6.60347
6.54654
6.4772
6.66809
10.4666
10.1445
10.4472
19.4498
9.3947
8.53285
8.00867
9.63949
9.75645
9.83072
9.60672
9.90374
7.19486
4.51062
6.49027
5.09425
9.12954
9.73436
9.39005
9.62392
8.8149
8.86737
8.84707
8.61372
8.77461
8.44569
7.83713
9.07283
8.68184
8.32844
8.55904
8.45658
9.0527
9.28848
9.23181
9.11942
9.4255
8.84938
9.14152
9.27522
9.50245
9.43103
9.38298
9.54339
9.78644
9.76079
9.66393
9.87961
9.80116
9.80673
9.87213
9.73552
8.82354
8.67059
8.89679
8.59543
8.9592
9.15181
8.95957
9.15212
9.61985
9.74587
9.68456
9.67798
9.45302
9.3173
9.45272
9.31739
7.7789
8.26295
8.18238
7.85772
7.26832
6.75256
6.82786
7.19032
8.98752
9.44839
9.07185
9.37282
8.56315
8.43419
8.18861
8.77764
6.98445
6.66359
6.54127
7.10164
7.38205
8.07881
7.79583
7.70704
2.77194
2.21596
2.76484
2.21961
3.40558
4.20133
3.69292
3.90545
5.02313
4.41231
4.52628
4.91621
5.38501
5.8272
5.35554
5.853
4.92859
4.70804
5.22748
4.40939
5.32691
5.77683
5.29354
5.81877
8.75153
9.04709
8.69082
9.10822
8.48557
8.31849
8.68393
8.10131
7.1926
7.49218
7.57372
7.10683
6.70435
6.25463
6.27803
6.68362
7.29723
7.94295
7.54991
7.70745
6.70191
6.21402
6.26041
6.65233
5.80069
6.59208
6.20465
6.23236
5.45847
5.21269
5.0512
5.61858
7.86849
8.08703
7.72811
8.22176
7.67247
7.46126
7.3
7.81359
5.88749
5.334
5.4774
5.74209
6.54273
7.11018
6.92722
6.74938
2.47072
2.03007
2.53647
1.97192
2.79186
3.17167
2.70608
3.24091
4.58636
4.20346
4.08692
4.70663
5.00581
5.38588
4.94929
5.4471
4.18674
3.64016
4.13979
3.69815
4.80065
5.31922
4.88596
5.23193
8.01927
8.4451
8.10093
8.36603
7.5031
7.11196
7.5012
7.11728
6.78212
7.3065
7.17661
6.9142
6.27845
5.79649
5.86011
6.21211
6.33218
6.72085
6.31776
6.73022
6.05344
5.72879
5.64074
6.14273
5.52924
3.83007
7.38009
6.93747
3.85841
5.71803
6.3768
4.31316
7.30195
6.90905
3.97373
5.71914
7.64208
6.88871
7.15813
7.164
6.63201
6.98277
6.14678
6.902
6.68556
6.65213
7.01247
6.7307
7.41717
7.5029
7.22309
6.86508
7.38616
6.94117
7.50523
7.0085
7.34887
7.19951
6.86646
7.0432
6.00654
6.22861
7.16886
6.82297
6.42646
6.60123
7.25124
7.13666
7.49971
6.99851
6.98129
6.79445
4.99443
6.98098
5.67985
3.89352
3.61506
7.0142
5.66703
3.85917
6.20324
6.15257
6.47868
6.70004
6.31609
6.61654
5.49151
6.08769
5.96493
6.0544
6.2543
6.12775
6.5804
6.75924
6.54592
6.25132
6.67262
6.31414
7.30696
6.96613
7.26186
7.20143
6.9231
7.05852
6.66947
6.35319
6.23846
6.80961
6.57294
7.09525
7.38343
7.25907
6.78821
6.97215
7.12694
7.2263
14.7055
2.61365
3.10064
3.44383
3.91375
4.20847
3.0789
11.4892
5.87504
6.46278
5.52409
5.25215
6.53422
5.52204
2.51834
14.3352
3.6242
3.58693
2.67755
53.6909
11.8841
6.00343
6.59674
2.74079
2.53762
2.88564
2.40582
3.16165
3.70246
3.38823
3.47097
4.08135
3.77138
3.9673
3.84476
4.23587
3.69706
4.42568
3.47101
4.04226
4.00742
4.27983
3.77319
3.95616
3.48053
4.08836
3.39232
5.75266
5.477
6.52708
5.35152
5.20443
5.0077
7.10815
5.05592
2.55826
11.8007
2.39465
4.94183
5.82504
12.0885
5.49264
2.43904
11.6542
2.39287
5.03164
5.73751
3.84108
4.12322
3.78873
4.15789
4.3357
4.34924
5.26686
5.60222
4.732
4.29233
5.40613
4.43586
4.16952
4.97285
3.96975
4.01729
4.93823
4.16135
2.49658
2.36928
2.6761
2.18942
2.97817
2.97505
2.74993
3.22081
3.66813
3.61905
3.63687
3.66784
3.31943
2.16967
3.10713
2.32213
11.1223
2.88188
3.03571
2.62966
3.2892
2.26476
50.1742
1.85389
10.1019
2.672
6.52751
5.64036
5.03982
5.23962
5.35507
6.0113
5.20444
4.82381
5.25396
4.83731
4.66581
4.29512
4.99004
10.7954
5.26091
5.90776
4.74071
8.12286
7.92938
7.83739
8.00682
7.79149
7.80853
7.47793
7.80591
7.9189
7.43102
8.21295
7.5897
7.49593
7.94808
7.159
7.17895
7.6884
7.36413
6.58943
5.74071
6.85368
6.2882
6.241
5.9919
6.082
6.93131
7.09429
5.35734
5.77096
6.66632
6.13977
6.31761
6.92124
5.84342
5.90507
6.60587
7.56488
7.74897
6.66207
8.90983
6.55443
13.7447
2.76479
4.29722
3.10548
3.87498
7.65098
8.41716
14.1649
7.17059
6.86263
6.33685
6.3536
7.45537
6.14949
6.35734
5.62252
6.26529
6.00615
5.88201
4.99815
4.44516
4.61336
4.82554
6.43752
6.92403
6.57695
6.78811
6.00164
6.04822
5.62083
6.39318
4.54028
4.31525
4.16134
4.69223
4.8568
5.70617
5.24081
5.36248
4.08176
13.8338
1.67991
2.47417
1.94233
2.16696
2.4344
2.56676
2.01235
3.03059
2.89347
3.37764
3.01915
3.25036
3.11298
2.99901
3.45194
2.67072
3.24986
3.4856
3.12287
3.61896
6.20594
6.3723
6.04574
6.53678
6.08169
6.00593
6.35599
5.71995
4.29214
5.08474
4.65694
4.76097
3.97613
3.74053
3.61251
4.10427
4.99612
5.65658
5.30509
5.35889
4.36521
3.85281
3.99252
4.22044
1.62132
44.3524
1.71897
2.2171
2.53136
2.04367
2.78597
3.58352
2.42579
3.28378
2.67214
4.2472
4.4465
4.17433
4.56233
3.15735
2.74712
2.84208
3.04399
3.59844
4.17749
3.91033
3.86486
2.84234
3.86196
7.56893
1.22106
13.3394
2.42263
2.16707
1.97062
2.63779
2.70458
2.99414
2.64791
3.05444
2.06922
2.10316
2.57531
1.65236
2.55931
2.95639
2.61242
2.90307
5.00625
5.07018
5.16131
4.74114
4.80584
4.82804
4.97862
4.55489
4.22207
4.80537
4.56724
4.4617
3.75357
3.33983
3.40351
3.68593
3.88594
4.56597
4.27559
4.22655
3.58161
3.29842
3.24249
3.64053
93.3525
306.07
49.3368
90.3946
82.5175
54.5787
313.286
65.9063
94.7434
46.8141
266.877
117.173
367.463
66.2938
37.6378
43.7356
115.114
51.7221
98.9234
42.9457
237.426
245.827
59.7153
45.0409
94.3625
278.37
117.302
55.4809
42.0428
395.817
79.4556
331.21
353.265
449.903
82.4904
59.9037
75.0954
272.682
342.777
220.207
78.6571
175.207
696.992
94.593
85.6093
707.97
115.475
349.951
139.932
737.645
122.484
468.538
105.686
348.398
626.657
279.048
631.734
212.388
739.287
171.898
78.5548
586.85
162.013
186.55
638.27
390.176
413.183
141.171
770.874
360.456
105.558
406.188
58.6751
180.761
118.314
324.063
256.17
49.992
286.415
64.9881
87.2621
182.397
87.611
47.9519
347.173
160.34
396.755
511.112
52.8786
442.182
87.3552
136.033
98.7447
78.5072
236.01
471.505
97.2372
79.7102
442.648
70.932
102.977
171.023
102.729
552.454
91.8073
606.654
101.804
475.73
148.08
103.722
448.897
124.159
177.329
80.1494
159.417
227.126
123.355
737.587
80.8294
200.784
680.175
701.065
183.043
105.677
218.462
277.47
202.076
196.014
596.873
246.532
574.534
947.561
476.614
91.0135
94.7376
695.185
99.5313
197.079
56.446
671.092
301.36
648.883
121.059
208.013
256.314
77.2122
71.0159
127.209
495.449
472.344
554.496
529.53
109.262
94.2143
542.004
96.5364
68.2047
407.366
461.801
61.1919
34.3252
30.3576
54.5043
105.467
33.7062
70.3594
32.3851
65.1521
34.246
69.4445
198.251
246.271
36.4071
22.0791
189.768
48.9684
30.9112
22.5147
75.0969
73.9355
218.033
150.552
61.7256
49.2113
43.4961
38.4174
233.475
29.7009
42.1165
101.265
93.2187
27.9303
90.169
28.5005
77.8756
38.6596
276.946
109.508
118.865
102.403
36.8343
55.7536
56.8965
38.8381
283.09
50.3019
48.6764
26.8893
154.935
95.5477
40.9247
26.4536
45.8768
47.1641
234.055
40.1351
128.315
40.4888
113.672
216.468
246.82
36.4249
82.2009
166.712
62.218
35.9418
226.969
44.8561
227.376
60.5011
70.973
77.2049
82.1885
67.0001
87.9066
171.735
44.8078
526.53
81.4077
81.6969
94.1847
73.2453
84.4709
97.6817
83.2894
97.2683
98.3796
97.167
116.133
94.745
118.113
96.0212
171.322
71.1977
45.6382
116.074
609.294
56.3234
81.9736
101.49
77.3794
54.6269
26.9764
31.8914
37.892
40.0372
120.605
27.8325
65.7888
506.155
70.8557
93.19
157.2
71.1281
48.484
92.0148
77.2964
91.3419
69.897
75.8352
76.7655
106.189
91.5478
108.117
77.7048
109.727
91.3946
86.7024
73.7433
86.3179
73.1786
69.8533
89.8909
70.59
90.4029
91.2897
77.734
74.3509
137.653
47.0773
60.5004
37.5937
433.972
72.5426
51.0692
20.9583
43.8211
53.918
44.6467
109.918
55.8258
65.568
33.8899
59.4448
29.7265
129.681
450.144
266.936
37.2652
345.81
121.374
46.8614
186.733
106.037
87.4231
479.833
116.409
89.7109
95.8105
219.759
80.2772
81.8011
61.7108
81.5333
67.9551
76.3111
63.8146
74.0506
60.6678
79.5068
62.2979
57.8449
82.1189
47.0723
49.807
38.3338
276.738
31.5082
35.0977
31.2349
46.4771
23.0639
26.6845
314.882
27.3567
53.2821
83.9409
82.6929
67.9481
67.6724
67.0071
67.6498
91.7363
81.2599
80.5647
67.0511
90.3278
83.8643
70.8399
84.3277
71.5505
67.8225
68.0342
68.5599
87.0055
85.9816
79.9995
67.2673
79.4243
44.1827
39.7411
68.2464
46.7444
69.2041
46.3899
81.6564
45.5836
29.3249
44.4343
13.6139
97.7738
43.4307
71.0086
70.4886
40.6752
41.7914
21.7488
46.1074
24.9489
25.2914
90.2189
203.563
250.177
35.4879
713.236
226.244
241.923
43.6463
40.6311
295.394
118.76
39.8621
176.743
49.8462
33.9346
30.0614
51.1593
247.179
293.046
44.5829
118.16
29.0235
245.964
34.9664
94.0385
81.2166
106.154
281.704
112.47
94.0937
85.0195
109.838
98.5132
94.2436
39.7
85.6345
87.5459
689.764
844.229
352.462
118.285
131.749
75.9258
48.5415
106.234
131.476
37.6845
80.9718
720.143
174.768
209.969
117.015
32.1907
285.679
43.4215
104.265
116.945
262.815
42.9944
257.179
123.979
261.465
26.3819
87.0711
266.633
25.9133
121.745
102.847
49.2654
123.452
788.428
73.8478
112.953
105.127
92.109
67.6764
37.3981
86.1078
64.2716
26.4536
39.0898
25.1587
92.6501
25.3989
60.3832
292.651
28.3866
323.732
68.1426
105.631
27.7665
96.77
45.3271
34.1364
134.228
98.0558
328.04
120.204
125.999
61.3477
326.739
111.491
68.5641
28.67
19.0073
38.1493
30.4921
46.566
50.1142
20.5177
36.6546
107.417
23.8202
76.8948
297.221
112.926
86.5112
26.2613
51.2314
23.5091
263.715
94.9202
44.0716
30.0816
41.8998
29.7857
220.648
25.0884
46.6792
18.8212
72.589
30.914
23.3912
68.8298
261.181
248.033
49.2826
49.8037
77.8187
47.4369
316.927
107.549
63.2015
28.5966
40.922
38.9484
26.9918
42.9938
145.902
121.229
29.3483
115.393
42.4874
134.656
393.094
34.4038
370.163
136.381
56.1749
83.3459
157.505
42.0203
100.193
51.9275
142.227
50.5294
58.6721
540.067
44.7793
1363.91
1080.84
591.961
73.5269
356.694
796.504
284.683
97.6845
818.576
118.252
73.2397
83.8759
836.547
203.677
51.1975
64.6593
121.296
77.4109
641.163
157.397
447.869
408.582
58.715
408.538
38.3285
96.4194
82.863
94.9313
40.6593
493.535
80.4211
73.1104
51.6278
354.757
136.773
410.838
42.3194
120.567
75.8448
80.8427
216.617
638.564
56.2405
211.059
538.138
105.431
61.0819
59.9051
27.1297
195.55
61.3666
180.8
22.1758
85.6138
89.278
74.3677
56.9725
56.3578
73.5142
27.0337
60.6677
216.702
60.3542
585.391
50.7893
44.9165
44.4556
44.341
289.766
33.5992
19.0965
17.2596
23.0724
218.941
12.4548
53.6703
28.5464
38.0185
44.0613
30.393
41.1947
14.0828
15.2223
25.6029
38.4239
27.296
44.8813
16.0548
36.5948
582.447
46.4266
42.2885
172.597
79.9566
54.6418
174.012
81.0958
56.5772
22.4652
21.9724
57.3133
58.0908
66.1326
23.1733
66.4426
23.3439
53.9925
74.4037
20.8039
35.3866
17.5109
19.3659
50.4185
36.2154
37.2242
29.2167
265.381
44.1504
35.9685
55.0031
35.4678
41.7943
87.003
159.857
39.7884
173.728
87.4993
64.0494
88.6927
41.7474
218.354
372.398
613.354
194.319
336.507
833.832
120.124
147.084
146.396
103.266
270.701
1481.31
138.525
187.511
393.869
99.5517
774.368
104.235
261.037
560.309
46.3448
1484.99
594.267
1123.9
54.9163
86.9815
112.518
77.2762
530.939
57.5568
164.77
88.3791
88.0911
110.492
67.9092
42.5596
387.257
42.1429
42.2511
49.6158
411.845
38.6347
163.247
97.943
50.4825
617.624
173.485
39.7082
51.1663
75.2604
465.42
100.55
13.0419
131.096
13.169
67.477
129.163
50.5776
128.452
71.7364
132.288
84.316
114.282
48.7296
67.65
132.138
45.9345
62.6826
38.8641
41.1242
41.0329
38.5295
43.1228
38.2859
44.8207
38.3359
43.6052
33.7629
23.5508
23.6738
27.1903
24.4503
19.3767
14.2655
24.1394
27.8413
24.6915
24.0344
27.7187
104.425
77.1709
156.734
71.5461
49.791
70.7537
153.361
155.27
55.4693
68.6077
21.8235
21.9936
56.4186
55.1485
68.9424
21.6591
71.5475
21.4774
60.7781
34.7697
35.3492
25.2859
28.1091
26.245
26.0193
19.1527
14.2557
18.4444
25.5789
27.9618
24.5949
34.2664
35.8074
177.132
173.294
52.7295
38.2546
188.795
201.953
80.1514
19.1517
189.511
59.802
180.311
184.692
147.411
33.387
34.1703
178.718
171.63
133.993
20.7114
30.9611
31.4812
147.253
144.84
29.3655
161.773
115.779
12.8602
193.101
33.1925
50.537
146.14
28.6855
28.2693
184.235
209.337
56.6518
26.5178
162.383
34.1946
104.495
33.1191
166.573
31.3429
147.94
150.154
33.0361
19.9577
164.038
20.1563
24.2508
65.3599
165.956
69.0893
604.941
20.6859
36.0104
168.064
165.926
33.5498
28.7118
27.6412
55.0581
50.3014
23.2717
49.458
24.2981
29.7968
246.97
251.984
87.8504
121.337
22.2179
327.361
19.8613
25.0246
40.4856
349.021
36.69
47.5869
80.6305
59.5642
78.6334
21.9558
326.636
36.5259
36.3027
40.9511
58.404
87.0971
37.6242
36.5843
26.6621
325.686
22.8089
24.6369
40.6249
93.8974
22.6376
45.488
54.251
42.9189
309.111
60.4801
28.6714
98.927
30.4381
311.253
47.5844
25.278
119.072
281.731
104.235
293.768
94.3394
117.649
60.1694
87.9855
212.339
41.1601
578.674
214.585
147.733
95.5372
166.285
39.2917
467.201
37.9674
163.089
84.4951
47.8955
459.736
124.811
86.0322
222.09
67.5795
120.69
70.3991
943.922
374.374
43.8366
48.9499
134.89
120.176
159.999
160.219
268.287
541.291
138.114
52.6518
647.947
108.819
134.046
62.8917
387.517
500.248
525.739
38.2241
93.4997
66.8622
462.545
53.2993
48.5439
60.0298
64.865
128.021
598.405
176.113
167.567
90.464
190.752
172.368
411.337
143.3
60.3537
122.874
90.3998
81.9426
191.529
211.698
1420.93
1321.73
1008.9
440.4
530.813
182.842
137.38
38.261
562.756
75.5245
968.957
125.355
113.155
84.7343
182.495
149.809
842.157
257.12
35.46
120.476
51.1002
51.1345
16.4878
78.3216
42.8345
123.298
50.4617
51.0697
124.665
124.68
51.8962
51.6569
17.2496
17.6306
120.663
43.1294
9.69109
5.83841
26.5035
13.8946
6.11644
25.9365
16.0703
5.41257
25.8344
16.9676
5.70501
14.8064
27.2476
28.987
25.9527
27.6965
14.6325
28.5156
26.2747
28.3721
27.5712
27.7007
23.9733
27.5173
51.4968
51.6
116.323
118.88
117.699
117.36
47.7848
46.6766
20.0616
18.7712
119.816
119.218
48.8778
49.2731
18.9408
121.781
18.903
13.4733
6.02066
23.9096
23.9615
13.8602
25.2724
15.2649
24.6211
15.0852
6.38048
75.9182
35.2368
43.3657
394.452
60.4486
103.064
110.617
224.003
156.538
182.904
57.2144
67.6439
793.663
38.3848
954.813
51.5114
135.68
107.208
116.139
112.528
41.6557
1063.48
26.9207
20.817
21.4455
61.4188
45.9481
38.988
846.471
369.736
86.3942
32.1054
58.2398
39.7074
34.6924
59.8334
633.965
73.2996
840.609
77.9241
52.6026
96.6928
377.676
768.484
175.585
122.385
52.4026
103.051
32.3027
474.937
77.4496
30.9723
1182.48
18.9474
148.583
243.966
1140.62
33.6938
531.811
46.8938
71.7253
40.5358
180.356
88.7986
213.031
110.662
72.8091
115.446
89.2706
146.146
147.407
58.4993
71.4847
34.3374
28.5858
417.706
100.357
100.17
45.4308
9.08976
9.15265
61.3967
43.4519
113.657
49.992
70.6687
75.6558
114.995
76.2073
43.5267
9.30783
43.5425
9.29717
76.4031
27.3527
11.9925
27.4091
27.9846
27.5051
28.4488
27.1788
11.7482
26.9839
26.8747
28.4622
27.9006
26.6209
27.7407
28.0862
26.4309
2.45568
2.22381
2.10325
2.19276
12.5635
7.8401
21.7679
2.01505
82.0148
113.977
52.1728
51.5954
110.198
61.6008
52.1363
113.023
118.434
47.239
47.2828
20.1228
118.869
20.1475
120.181
47.474
49.2202
20.1537
12.6377
23.8275
24.1325
12.3303
50.2812
4.23863
92.9636
4.40332
17.4906
41.9848
17.101
5.92846
230.646
24.7541
23.158
44.1039
21.9114
122.567
186.528
51.2432
22.5481
119.621
152.631
186.238
24.3541
45.181
22.4901
9.95573
112.517
621.937
23.1633
27.0082
140.05
29.0181
176.15
80.7822
25.3255
143.081
110.818
75.8483
27.3063
611.261
110.933
41.1789
109.832
18.4858
18.6467
20.9488
44.1615
18.9214
110.554
99.572
16.1437
15.0948
38.7645
222.398
193.141
41.7857
128.517
40.1527
35.1334
17.6465
15.1276
27.9306
27.9857
112.165
106.367
20.0961
20.5311
95.6801
67.6452
190.745
139.658
168.901
19.4363
18.3704
40.2207
50.5473
18.1592
18.6872
91.7606
111.603
436.977
137.533
401.082
115.855
93.9017
380.578
137.951
21.9417
26.667
39.649
108.838
36.8522
17.9323
42.0083
19.4436
23.9171
34.8327
101.637
22.5143
29.1245
337.795
90.6253
43.8937
22.7275
50.5793
382.495
104.024
21.0662
29.8791
19.5773
23.3353
108.032
330.907
49.4051
34.1981
123.092
41.6379
116.571
333.5
52.4655
122.762
39.5168
26.1936
352.824
42.249
37.1647
47.6318
55.4924
31.4012
400.865
143.916
112.34
79.4001
61.9031
110.03
56.4517
25.1535
399.767
42.6343
27.1925
135.849
39.5251
52.0101
62.2209
57.9042
133.323
105.502
22.6747
33.1364
38.5388
117.964
95.5498
322.815
26.9557
52.0932
43.6916
51.502
76.6468
32.936
18.6956
320.44
18.9758
84.332
30.7141
43.9756
280.489
32.1114
26.52
66.3689
19.4117
374.34
125.05
45.4672
103.798
40.9628
77.285
92.4389
48.9648
66.1457
27.5818
29.0887
52.1804
329.938
97.5216
121.97
121.639
41.6638
50.4736
99.9358
34.1658
26.2129
39.2892
34.7587
29.7524
21.738
421.249
134.28
41.5698
53.3491
28.9354
48.1847
30.0805
104.816
46.7441
52.6017
31.1226
95.3563
32.2724
24.568
36.6305
516.768
50.0952
41.3924
81.7014
81.5171
38.7868
66.9226
171.995
80.6973
119.128
85.3341
66.8567
72.9553
47.1419
362.569
104.504
132.016
172.023
53.265
13.926
5.66271
17.2812
5.29445
28.5824
40.6829
49.966
23.7813
1047.75
91.6888
97.9234
107.757
88.7207
79.4166
58.7273
71.6066
65.8358
49.3496
50.5872
127.671
105.199
182.895
121.316
141.98
85.188
379.618
95.1638
87.2781
115.308
75.9229
42.8711
663.864
71.7562
88.7719
82.7844
78.3501
53.1624
58.7864
83.9509
101.836
65.0526
104.402
7.24973
13.2821
16.0824
30.4267
20.9364
889.798
39.1299
151.246
130.012
31.6187
864.244
43.5813
48.8151
30.1837
184.118
8.94813
71.1004
75.7399
8.86015
11.0069
11.3731
104.879
88.6587
20.0391
86.1492
18.6507
84.7696
68.6348
67.8801
73.3989
8.64568
8.71266
10.8725
71.7037
74.2985
10.9916
3.77806
3.15066
2.93723
10.9936
5.76603
3.4312
5.53883
9.79617
39.722
24.3841
248.731
4.61205
14.9186
64.5365
8.22312
45.7437
24.8105
15.704
15.3037
6.50172
11.9169
56.0374
12.01
56.134
6.53796
12.0256
15.0592
95.8202
83.6289
17.67
83.8111
17.6697
64.5416
64.2444
67.7559
14.0181
76.7797
76.2047
14.1097
10.2818
68.2933
10.2835
69.2785
13.9371
77.5445
76.8552
14.1946
70.0807
10.4144
68.7863
10.4792
5.73285
6.48197
3.8363
3.90215
37.8729
20.3373
84.2764
147.962
171.925
65.6213
13.0868
68.7232
12.9543
10.4331
277.89
64.3888
9.89121
84.6593
74.6124
16.0677
16.1318
75.5473
70.1714
69.5895
75.0979
65.1536
13.0105
69.0417
64.8387
12.9926
69.2062
9.6486
9.78233
6.04658
11.1717
51.5301
23.3828
11.035
16.3288
14.8252
5.97805
11.0637
52.1596
23.6505
16.2715
20.6363
23.0222
3.16244
6.50413
54.9436
11.8792
11.917
6.41697
55.1001
14.9909
8.74559
4.28625
3.46767
3.98174
3.00716
3.09432
3.10335
50.8012
61.3283
53.5189
8.09432
94.7078
15.8983
6.84058
4.52195
26.602
2.3511
3.9596
2.69763
16.4616
7.9393
2.24138
5.52296
2.08262
2.46394
3.27055
2.37381
87.8038
16.7632
16.6245
77.1686
70.5844
77.8934
72.4414
13.7224
73.7443
74.3047
13.6372
10.0104
67.0238
10.0653
13.2719
71.6085
65.9413
13.4084
64.9725
9.55903
9.63681
33.594
65.0275
51.2222
60.6421
63.2932
61.1451
156.072
105.738
87.4413
7.01662
6.25986
4.42642
103.864
8.59889
4.24871
1.76617
1.76595
2.38359
8.58558
1.8527
18.6922
144.58
18.7068
38.0432
152.608
173.058
39.2517
201.455
126.46
28.7674
83.7383
41.0143
24.3939
48.0998
20.8191
21.4769
603.892
15.0924
34.4409
136.931
34.358
129.604
153.928
16.6913
108.632
32.1508
32.6991
111.321
16.4127
17.441
79.7897
14.0908
28.9703
28.8194
14.148
18.2753
131.537
35.1548
34.9622
18.3752
132.79
538.52
24.9626
131.913
15.6154
28.6505
107.732
13.6509
18.025
14.417
29.2756
14.2841
29.6283
19.6662
140.307
36.8552
39.7333
19.0139
137.081
35.662
56.5326
40.86
21.0469
37.0407
32.5444
23.4592
27.4062
59.0857
50.216
44.8891
45.3481
55.6774
28.9914
27.9798
48.7176
346.181
378.132
52.8103
97.1546
20.7783
44.7061
115.701
23.4576
18.393
334.112
86.5212
36.6507
39.9515
71.0174
21.9386
112.352
84.7029
322.31
69.5887
44.5692
32.8736
30.2468
49.8514
128.167
29.1564
80.9945
49.8527
44.2295
33.9481
114.567
19.1151
85.0195
21.1943
27.6487
38.7496
40.7483
24.4126
45.0425
51.3836
93.1418
26.44
16.7221
22.9625
19.6683
88.9812
28.7624
342.684
73.2503
84.1574
30.8078
18.2467
378.626
110.03
90.348
39.2244
32.3478
45.5022
54.4463
62.2694
55.7278
36.3274
51.8631
29.9693
50.6631
51.7671
79.6414
25.6261
128.955
33.7142
71.0203
115.635
29.676
37.8762
25.9383
58.6768
40.011
112.847
44.163
55.5167
110.644
59.524
123.525
56.4806
33.3858
26.0393
23.0695
35.6486
44.179
52.8176
40.1446
75.2852
87.112
17.3092
28.7811
34.3377
50.1256
41.0537
69.333
77.6066
318.188
16.8833
20.9303
29.996
102.001
43.2315
34.5353
47.951
37.1252
46.9792
21.9291
104.946
20.0187
363.857
305.728
46.3747
29.3908
40.1034
32.6375
117.961
43.612
21.0728
34.3526
21.912
32.7146
81.2096
19.1398
20.7964
34.6611
72.3079
331.254
362.259
20.8446
94.4338
50.939
111.953
46.9011
19.4598
35.8832
28.1724
332.528
108.589
39.0054
24.3486
59.236
68.7122
97.0835
54.6509
93.879
119.626
397.938
25.9796
351.455
80.3983
23.6935
129.858
25.7111
74.5273
78.0683
63.1451
88.5711
96.4517
66.7127
578.876
299.344
68.6733
64.3893
41.5435
25.1502
35.0041
30.0167
17.1216
18.5275
21.8707
23.2103
15.2529
90.6677
15.2448
99.3369
419.585
43.0994
31.1482
22.9904
49.7915
23.0547
2.46692
1.85497
2.3178
5.87536
1.45893
1.68372
1.74167
33.0798
31.4138
25.441
12.8206
26.0795
8.86478
25.7648
1.21949
0.325693
20.9362
2.99563
0.467296
5.53532
0.249401
0.430114
0.29827
0.629761
0.616226
0.537496
201.063
76.4846
37.8273
17.0794
37.8111
17.3023
3.63024
39.6334
17.2676
3.61018
3.545
39.2044
3.56931
4.09274
2.63332
2.73048
4.62116
5.35334
2.90335
2.88677
4.86681
38.494
16.3668
16.4146
36.2781
37.3644
52.6399
74.4906
60.1277
67.3843
163.397
477.243
331.585
95.9752
107.442
36.2292
270.805
75.838
80.8053
72.7518
86.5404
15.232
102.201
15.3069
48.8734
48.4372
20.9439
21.1563
49.101
49.8076
22.2638
50.0903
22.0704
49.6231
134.293
10.8962
187.995
16.1276
132.824
64.7335
599.262
55.9873
43.6015
15.0757
725.215
10.0754
3.48652
1.32194
0.973172
1.56324
0.184454
0.147332
3.11482
0.0912201
27.3817
12.3709
20.4736
17.4996
33.0731
484.203
35.6325
151.756
514.37
26.2845
58.8006
54.1861
57.6473
51.0563
58.0554
58.5452
51.3033
52.5801
44.1241
51.6051
26.5433
572.803
37.1717
33.7542
25.9592
48.4571
43.9088
342.503
32.1985
14.7177
337.935
12.9058
32.3877
13.0339
13.1803
87.8012
86.2421
37.351
18.0607
16.9671
32.6579
4.18925
150.075
4.66545
2.96033
33.5551
25.647
2.97366
3.01051
2.99222
3.7088
2.46659
2.33524
2.91279
3.08038
4.98546
4.95335
2.98132
16.3022
35.0262
35.0803
27.2979
16.5767
52.2554
540.697
44.5905
109.206
14.0385
2.71152
9.98301
5.58914
6.92987
6.29805
0.285018
27.1669
0.261038
0.228196
2.42268
13.4652
474.988
149.022
95.2988
93.1511
14.0975
13.9919
91.1025
92.2754
20.3541
20.1694
46.7978
19.0362
19.2412
45.6546
68.2175
60.3771
71.5124
131.141
84.3239
300.516
94.2308
59.9234
87.8616
77.5368
17.9329
22.4667
44.5246
46.3966
14.0173
30.6128
33.4255
48.2373
0.819887
0.349509
2.02942
0.631274
1.2336
3.23046
0.229249
2.66849
0.288436
0.357549
28.3103
0.98542
17.4753
11.7989
604.805
32.6571
16.3427
28.137
38.2128
10.0778
119.278
16.1861
25.3126
40.732
16.5609
24.3711
40.5219
36.7902
20.9423
21.1318
13.1985
13.1387
37.0751
21.4133
21.3
12.9447
13.0412
15.9237
18.9977
30.9293
12.5332
23.6679
33.1153
20.7015
20.823
91.7529
13.0239
92.4268
13.125
11.3695
62.7975
21.8253
97.037
11.5609
11.4872
94.328
13.9462
98.5339
99.4848
22.4392
22.1964
13.7574
107.501
24.3972
24.1218
108.561
15.6445
15.5267
12.0106
66.6333
23.6328
98.5272
11.7342
11.8415
101.605
14.8537
101.983
100.936
22.7907
22.9608
15.0928
332.236
24.5197
20.5808
37.0739
46.1855
43.8848
39.2998
46.8601
36.9894
39.9398
44.7587
62.2223
63.099
101.463
54.4417
356.487
20.0873
26.5072
30.2125
61.2094
55.7453
49.9162
90.7898
385.244
95.642
45.1614
34.3257
24.5752
20.6196
38.2784
78.4311
32.4687
41.1072
22.8815
36.7759
24.7491
28.0434
20.1482
97.0789
22.8858
29.9793
19.7202
34.8579
56.2074
89.0377
49.3956
27.2512
37.1783
35.2949
40.7137
42.5782
48.6578
87.4256
44.5411
31.8708
42.2817
41.0584
72.4225
78.8518
39.7418
29.0254
83.088
43.5896
27.4679
34.4952
83.4594
18.9973
17.5177
44.2894
42.7426
26.5245
19.0355
32.8663
20.0287
38.633
35.461
30.5405
44.5262
42.5281
46.0676
40.2681
51.3829
41.4982
117.841
382.993
58.4763
47.5324
52.1983
59.3369
40.4044
46.8154
48.8204
383.179
107.041
19.5694
56.1602
82.9544
24.2193
331.977
110.41
30.4071
34.1227
38.1007
43.5476
52.0711
45.0197
76.6556
38.8983
34.7094
44.7893
29.2945
41.81
45.3227
38.7547
48.0136
96.0877
38.8624
39.5887
108.013
23.4024
19.4853
318.506
48.3723
19.3728
355.609
102.797
33.3582
44.4838
37.0572
41.3069
310.463
77.3015
42.9368
79.9821
46.1643
309.43
91.1367
17.3676
24.7454
25.7515
42.2122
47.0029
36.3679
32.2185
40.7547
33.0173
28.0132
35.1294
27.7668
23.6741
20.4102
36.4027
32.6871
28.913
97.7919
77.4808
26.3325
19.7382
33.2086
22.7888
22.2793
14.9343
41.114
44.029
22.6216
30.26
46.1779
38.6209
94.3054
48.7038
42.4874
58.3467
44.599
109.139
51.2709
111.594
20.211
24.7449
54.6974
57.6265
26.6739
23.9361
36.8724
36.207
40.0103
37.9844
37.4711
41.4983
33.0799
37.8196
23.0197
122.744
27.9183
434.691
32.5785
48.2137
48.3639
45.6338
49.8111
36.6551
27.443
32.419
32.2469
35.3765
35.6152
16.4629
16.354
34.7711
76.2051
11.7214
11.6014
74.2946
75.3363
15.1059
32.0521
15.298
33.8983
33.5934
26.7318
138.938
7.46912
12.0295
1.61464
52.0684
1.47994
1.80558
3.07983
2.33971
12.9604
8.96522
14.8113
9.90798
1.99797
24.4899
9.32427
1.96974
13.499
1.80869
1.86142
2.56117
0.387035
0.912565
0.852214
0.498854
0.733841
0.758769
64.9731
0.628543
0.696893
2.00709
0.624411
0.534787
8.10047
11.8722
8.01327
8.00654
11.7773
89.7522
61.595
58.9373
180.865
12.9085
141.752
63.6397
52.2141
56.7063
55.5878
43.6216
9.69634
69.0723
10.3646
16.8083
4.80851
34.2548
46.5932
5.00244
19.7527
13.2589
11.8071
186.193
24.1764
6.68711
9.3877
274.735
14.2238
17.7516
13.179
9.81839
193.419
28.7396
4.74036
2.13054
2.03969
2.80096
18.6849
0.625861
1.76421
8.36122
57.1333
9.40563
17.3118
29.7163
13.8879
5.20353
397.792
27.3946
31.1718
31.6449
27.0413
27.9445
34.4941
44.2356
21.8029
82.9156
50.8231
55.7149
57.9711
14.6702
39.642
34.9302
35.448
39.1791
46.363
48.7486
44.6643
52.4225
16.9411
18.2653
182.454
9.60126
19.5029
5.64735
45.2136
5.21779
15.4918
14.5261
7.39698
56.2872
7.42075
15.6436
4.85235
39.5228
45.3381
5.13858
6.79002
6.78408
14.3703
3.0877
7.07387
1.53804
6.84919
1.4
17.8961
1.41724
9.26692
0.478822
1.09624
1.10176
1.17681
0.732128
1.56922
1.27406
1.43402
11.6966
3.72918
2.6739
8.12669
8.09251
12.064
12.0916
4.99883
36.088
6.48104
5.81794
9.41356
5.05714
10.5997
21.1242
288.438
54.5726
6.28491
13.3735
8.30989
10.547
20.5925
3.50118
4.60219
15.1388
7.77325
58.0909
7.70993
16.4334
33.4847
4.56842
32.2501
4.54822
15.9584
31.2439
15.5875
39.6953
4.73567
4.318
28.8671
34.6004
31.092
32.6937
20.8879
14.68
16.0993
19.585
30.3238
24.947
21.7607
33.576
29.4917
27.733
29.2254
26.4635
39.7904
37.7034
41.4144
36.0357
38.9461
29.2047
33.8577
35.9157
20.8187
19.144
15.9929
23.8594
22.0314
25.9867
26.0979
22.8734
2.99904
1.55701
6.28734
3.31278
1.32635
7.70427
21.513
14.4303
10.4915
10.3756
6.99479
2.04801
1.69481
2.18226
1.3606
2.53912
2.30852
6.64593
1.84633
36.0928
72.227
30.0324
6.66025
4.68798
11.7317
17.1904
16.8869
23.2724
35.0762
23.4452
11.5902
111.456
16.5636
16.676
24.3044
35.6062
23.7678
39.586
26.8349
62.279
25.0818
35.1066
23.1967
34.6865
23.4781
14.8687
8.94515
9.03755
14.4357
44.6147
391.388
64.478
9.5366
17.6248
17.3543
72.9923
76.0324
74.4766
17.8521
9.7291
9.68398
17.936
70.1201
18.9753
10.3765
10.2858
19.1432
81.0559
79.2608
10.0415
17.7978
74.8764
18.305
75.5344
78.6087
18.1647
9.7973
18.0427
9.86119
21.5048
17.4723
346.859
83.4843
18.7155
31.7003
20.1248
324.717
18.3075
17.4414
30.0378
20.5881
23.0402
15.6613
23.5041
31.2168
31.0349
33.5481
26.149
32.8476
24.4431
18.5667
81.154
16.548
77.4094
36.6348
39.8088
42.6909
45.1441
87.6411
45.332
73.6531
273.28
68.0298
42.9295
43.6159
69.2517
86.514
297.626
42.0885
33.8488
47.7918
41.0172
30.0162
36.0678
19.837
25.4788
20.4711
21.4298
16.642
39.1893
39.4924
19.9959
33.2639
34.5978
37.3321
34.8073
17.6026
267.132
27.7634
26.2192
18.2426
18.6252
48.1393
46.9111
40.4012
19.2131
24.0358
282.168
16.8941
72.6208
20.6944
51.1729
36.7143
36.1242
35.8152
22.9096
85.6333
18.6261
26.7758
31.0967
20.8721
29.6645
36.3524
31.0489
35.0945
34.4113
35.4385
35.3243
28.276
32.3732
33.7434
41.6867
46.4597
50.2748
52.2302
18.3975
25.1203
10.0362
12.2706
22.8923
16.4841
29.3949
32.2063
27.404
25.4248
28.8693
27.2225
29.684
28.1081
35.7137
32.5949
26.4158
28.765
10.9792
11.9454
15.6739
21.7228
16.317
23.8091
16.4575
17.5423
22.2143
13.2339
54.3493
6.9267
6.8465
53.773
21.6376
16.7014
17.037
21.8352
0.927046
7.62272
4.83899
1.99685
63.0072
8.88014
6.65315
1.19828
1.68395
4.04622
0.936332
1.1007
0.90641
3.15716
1.07108
0.145009
0.205884
1.18369
0.139256
3.37126
2.91156
1.03908
0.121208
0.179201
0.373798
10.2618
0.123765
1.3564
1.3998
2.82605
0.751416
236.276
2.4374
2.56997
1.7495
2.63699
0.67587
6.73668
0.21516
4.99333
1.53315
2.80089
1.48009
13.5854
30.7539
18.9301
25.2098
36.1297
29.0292
14.5362
20.5304
19.9441
14.9713
70.4898
59.933
219.952
61.1496
137.975
6.11847
5.04913
12.8838
419.81
18.7434
15.9928
14.0422
252.633
77.0663
30.2441
28.6388
40.2785
46.0665
32.4072
43.9045
12.3291
6.12976
38.6839
6.34279
43.7424
198.566
5.79814
38.2369
37.6262
5.86798
14.4681
14.5683
6.67202
40.4406
50.1213
6.10304
15.5917
15.1997
4.73739
72.4087
14.376
13.2085
26.866
21.8759
14.7613
177.718
17.7491
4.57707
7.93771
17.9441
18.397
10.0746
14.7955
13.6432
16.4956
12.5609
3.65733
7.96628
7.51186
15.4903
12.1503
11.5751
5.76411
5.6924
12.7114
12.9349
11.1982
5.69488
31.9557
5.69594
32.2167
36.8389
36.7628
35.2443
31.279
31.8032
25.8232
21.8653
26.8579
27.5952
23.1516
27.9121
26.895
21.3078
25.3402
32.4483
29.1474
28.6287
20.2866
24.9348
24.3354
5.73822
36.4136
5.69357
36.5791
14.3388
13.9778
6.01207
11.4121
10.7728
12.6182
17.8335
13.7824
15.7206
19.2476
15.2879
0.246804
30.0052
0.543365
5.47282
2.44292
1.8425
1.05846
1.08536
0.226006
2.11084
2.10461
0.757261
0.663335
0.506167
1.32141
1.27991
1.43582
0.367472
35.7318
3.11073
3.9384
2.54036
2.63127
0.681804
1.26691
1.70664
0.550019
1.38519
0.790797
0.936889
2.04431
1.27331
1.27591
11.345
5.79905
33.2362
5.77562
37.0297
5.77093
37.1272
37.1697
5.78837
14.5523
14.5446
5.81661
37.0936
37.1293
5.79156
14.702
14.6111
88.7935
12.0547
81.9902
8.49855
10.1518
13.2317
9.64116
15.7377
11.7799
107.01
85.7811
89.6884
16.3557
11.2656
15.1939
10.5793
80.7441
84.7575
83.9771
14.8044
10.8879
71.4936
7.76646
7.67661
12.3399
20.872
20.763
12.3566
72.061
7.66566
11.9828
20.4398
11.9361
20.3829
12.5172
20.9564
21.2384
12.3551
73.526
7.92635
7.97377
73.1902
76.5571
9.14718
9.34668
14.2679
23.7552
24.3867
14.0451
76.227
7.65682
11.9729
20.6239
12.019
20.522
13.9667
23.593
23.4528
14.0055
74.8781
8.08176
7.97747
75.0518
32.8653
27.4187
28.8072
29.8335
24.4637
28.7198
25.8141
26.468
25.2428
26.6242
27.4086
24.5773
27.5374
30.4555
33.5911
27.0567
33.1216
31.5111
33.4317
334.164
18.2665
23.8775
74.7264
14.8438
17.7008
90.8755
36.1654
43.4158
37.1601
35.2987
79.6008
14.136
41.3903
23.9635
28.7883
26.6703
23.3082
23.0592
23.7847
18.226
21.3711
22.7187
32.6192
29.3627
28.8258
28.4411
26.5711
27.6238
26.6334
22.6103
26.1685
21.5454
27.7238
74.319
63.955
21.2053
25.6575
26.1111
21.1087
56.1494
58.3519
29.9521
27.0498
27.0483
29.2415
30.0849
54.4588
54.0033
34.7763
9.67144
57.5599
11.3624
48.6415
8.07293
235.266
16.2535
17.9618
14.6655
25.2833
30.1662
26.445
27.4334
25.3929
23.2869
24.4516
10.7252
46.1379
45.2084
17.7893
15.1358
22.4805
21.1552
21.9353
6.35989
5.09716
5.01765
72.5886
10.4154
8.11418
9.91725
11.2399
8.10389
18.1553
18.2264
12.757
12.8682
24.9049
21.9076
26.2207
26.2966
24.5723
24.6472
16.666
22.6269
21.3838
8.48575
5.23208
38.2116
5.02283
2.53661
7.78024
5.11475
11.9076
18.2783
14.5235
11.6031
12.6165
8.70552
8.84808
132.148
12.9224
14.6946
18.1986
22.7378
19.2689
14.9705
20.8819
17.7436
17.2631
11.5664
11.8307
17.4378
3.49605
0.873685
0.338759
1.05249
0.291853
1.1174
1.00806
2.17347
0.323931
0.166416
0.766865
0.207674
0.833827
0.282194
0.780437
1.04533
0.72152
14.6917
7.0681
10.8396
16.6315
13.3436
14.0523
6.92812
32.8249
4.17001
33.232
4.22401
14.1907
8.55735
9.13686
35.8725
24.9974
21.7678
3.82213
5.86355
6.31153
10.3487
15.5403
9.94425
14.6255
3.16778
5.20384
2.41237
20.2547
19.987
2.45092
2.90774
2.95578
1.87939
5.25967
3.18225
3.19509
18.7286
21.2534
18.5375
20.8192
20.9825
11.4043
6.24534
9.45661
9.66345
14.2694
12.0778
2.5703
2.54503
3.23371
3.1915
18.6897
37.9949
0.690316
0.48787
1.50033
0.581968
0.14939
1.06621
0.227831
14.1936
1.17548
4.42708
6.29326
2.20724
4.10039
16.133
15.552
13.5581
5.89831
3.81108
3.56542
20.0715
22.0107
142.167
30.251
12.3667
6.3122
23.0354
4.74095
9.29907
13.5644
13.7873
11.2734
3.52198
7.98609
5.90964
3.16691
6.32518
3.45397
2.23232
3.52835
2.32582
14.274
16.809
14.1414
16.9849
73.3745
93.6699
21.7901
13.3817
21.2169
13.6129
314.913
20.8806
13.2308
21.0038
13.0877
71.6307
16.2584
10.9217
7.00823
7.76237
4.69387
11.7078
42.3086
5.4263
8.20418
5.27263
8.12591
5.64502
7.6792
8.18841
5.30502
46.8937
13.617
13.4397
56.0393
14.9365
6.25835
9.0768
9.17804
6.20593
14.7573
54.5536
5.52345
8.56952
5.84346
8.73888
53.8297
6.10034
8.99023
8.90602
54.3124
6.1545
52.4642
14.2029
14.4421
21.4508
26.9835
22.1323
42.1811
43.2653
22.1503
22.2422
23.4868
23.4349
22.5245
22.8513
24.4761
23.2512
21.6208
23.4788
23.4135
22.265
21.8129
23.7451
23.4564
22.6336
21.8111
21.5991
46.257
23.1868
25.8935
45.1165
24.4263
22.0916
18.9182
18.9202
19.5304
18.2492
23.3301
19.774
23.2469
18.8625
23.112
20.4617
20.9115
23.2079
16.1521
18.0617
17.3178
16.9699
17.998
17.1624
17.3044
17.591
15.0744
15.8755
16.28
14.6549
15.9827
16.7592
16.4886
17.036
197.525
15.521
16.2678
16.6866
15.0837
21.0882
19.4324
19.688
19.8224
20.1578
19.8701
19.3423
22.8555
22.0672
22.8522
22.4793
23.2753
22.1295
21.767
24.3619
23.0957
21.42
21.1246
20.3172
18.064
20.8106
21.1711
21.0456
19.0578
22.1921
20.2935
22.1549
29.3279
24.2089
21.6547
20.2485
23.0222
24.1227
19.3237
25.7975
21.9935
19.014
41.0341
40.0752
3.67212
6.82455
6.85627
29.7491
3.49851
67.006
3.90986
22.6831
14.54
68.6131
29.2316
18.6136
6.78598
5.10823
4.65227
16.7278
17.3339
19.1179
18.7579
16.9609
17.4834
20.6296
18.5151
10.3377
7.20334
39.0365
8.56822
20.4505
21.5687
25.8131
38.6349
13.697
15.1152
14.5409
15.1316
3.85871
7.11103
7.09618
31.6583
31.6473
9.5518
54.3057
12.8403
9.02024
13.1292
46.5307
43.0741
27.1277
11.8093
12.637
11.0501
13.0767
1.6191
3.29444
1.78597
3.03717
1.85884
1.17712
1.2943
2.08178
1.76034
15.4169
16.6773
1.70803
2.29754
2.01766
1.20818
52.7259
9.36411
5.3764
6.48495
7.42097
2.56048
16.2132
1.41123
1.37919
13.2196
14.8447
17.2287
2.07603
3.46084
1.84311
4.02872
6.3761
5.0341
4.68355
6.8292
9.18584
1.84925
2.64981
13.8777
0.359688
0.332178
0.469026
0.529486
1.57632
2.735
2.96781
1.42967
3.28528
0.495514
2.80362
0.45073
5.51158
3.83837
5.35745
3.91892
25.4051
3.0245
4.74909
11.5813
11.5301
4.35023
1.37709
11.4302
11.1536
5.37836
1.41714
0.322141
0.155619
0.33319
0.176418
6.15861
4.26341
4.56444
5.81377
1.26799
2.39519
1.22408
2.42312
12.7935
1.35531
0.285023
1.67885
0.339001
5.47194
1.42411
11.5688
11.5047
1.43516
0.312383
0.221769
5.44843
0.319377
0.21121
6.81778
55.2038
17.5302
53.9403
17.9185
6.93915
11.2051
14.7583
14.0753
11.5789
8.08253
5.30254
7.53674
5.71059
10.0631
12.563
9.81067
12.8639
7.90811
6.20356
201.215
8.52813
5.56772
7.61632
5.3864
43.2651
12.1732
5.45494
7.90211
31.3844
3.89535
31.2484
3.86968
44.3661
12.2997
8.16794
5.648
7.98631
5.61007
10.85
6.38085
33.7821
3.56064
3.96203
6.23695
9.93651
3.98808
31.6868
4.0112
58.8102
22.9083
8.27408
5.80636
9.27581
5.8741
5.67372
37.4148
6.3919
13.2919
13.1994
7.08084
128.605
11.671
8.90757
12.3712
21.692
19.4633
16.8761
18.4697
20.4952
30.5449
32.1283
19.3265
16.6127
16.8775
133.405
19.384
37.2911
38.7978
20.6652
19.7281
32.2648
130.098
7.31334
7.04042
8.38653
13.3824
11.8658
14.5856
14.1293
14.2944
14.6066
11.9097
13.3833
10.4314
12.5495
8.23442
11.5059
8.62875
7.42475
13.5894
13.8159
13.8992
13.6036
16.4734
17.2061
14.7717
15.9197
14.5825
16.7063
9.87321
10.761
6.10698
8.82325
8.11897
6.00465
10.8249
10.4188
10.8641
10.1971
12.984
13.0952
11.655
12.5349
10.5369
12.2749
7.19104
8.23698
4.44793
7.06579
5.73518
4.22285
8.74543
8.58792
10.5654
9.30674
9.93157
11.6275
11.3068
10.4378
9.83317
11.7643
7.46632
9.14481
5.19649
7.21966
5.97797
4.92886
9.46165
8.81723
14.9959
16.569
15.9195
17.9083
17.2446
16.8778
15.6029
17.7096
16.4053
17.1095
16.9973
16.5092
15.5605
17.6722
15.4369
33.2497
18.2397
15.4453
20.7684
15.6721
19.7339
31.4813
17.0884
4.01883
4.97559
4.84037
23.6395
24.5152
15.8433
11.6631
17.272
13.122
12.9224
13.8959
97.1472
12.3412
25.8865
1.88438
14.081
3.89064
4.06857
23.2044
20.6045
21.3872
4.27405
4.12594
3.33476
134.552
3.46747
4.38694
4.63367
2.77077
4.80359
3.45273
2.24549
5.42052
5.94157
3.42217
8.06257
8.04852
5.89146
7.82445
6.17441
7.5893
10.3971
4.44013
5.86745
6.297
6.48833
8.8092
7.35759
2.54368
5.99828
5.58115
25.7136
28.6555
27.6523
11.2603
9.33955
10.1282
6.46751
9.92713
10.766
7.14145
6.04385
6.49055
7.25121
3.68625
6.16258
5.23361
3.57258
7.36311
7.27845
12.7734
17.2219
12.8684
17.1182
10.5803
8.99168
10.4449
9.10423
6.11327
8.00866
7.93824
6.17657
4.30742
39.2054
4.28253
5.82972
7.53788
5.74261
7.63367
4.27167
38.6598
4.31107
4.91528
3.67385
9.79614
6.76662
3.70903
5.12787
2.94137
2.76441
10.3676
6.86334
5.81498
4.15323
5.21125
3.93501
5.94896
4.40638
11.3889
7.62836
4.34192
5.81924
2.9814
3.16406
11.325
7.79677
5.49464
4.20655
6.01965
4.42571
11.689
11.5054
11.7574
11.3098
9.02399
11.1411
11.4018
11.622
11.6841
10.1418
8.39684
10.7764
10.1584
10.4409
9.88065
8.27339
8.88645
9.02285
9.47973
8.44726
9.19582
10.235
9.57371
9.70886
7.35027
7.23732
8.18351
10.9593
12.0802
10.234
8.20501
9.81912
9.04362
8.8301
12.2165
9.46924
3.57031
4.52305
3.42382
11.15
1.69064
2.28301
2.3786
2.63584
1.81392
2.53161
4.3024
3.11062
3.23361
6.45368
5.27163
6.15127
7.469
6.58539
6.7315
7.21617
7.64175
6.91013
5.09762
5.83384
5.97768
3.93426
5.10385
4.02578
9.77281
1.63136
2.12033
2.30519
3.05014
2.4095
3.15007
4.13521
2.89401
3.11328
7.68922
6.46327
30.8991
5.51651
26.4056
6.76082
4.7553
9.86902
10.3517
9.54245
8.69994
7.80314
8.58687
9.73936
9.39563
9.30013
9.77022
8.07177
8.86637
5.55944
3.86441
4.68536
4.67345
3.96997
4.53739
6.15791
5.65379
5.29328
3.22789
3.52144
3.98967
2.02051
2.84836
2.11448
0.716259
6.42731
1.22227
1.29261
1.48333
2.67525
2.10724
2.97233
15.8864
2.88237
1.39565
0.987574
1.495
3.63631
3.46914
2.82057
2.57892
15.2876
2.70534
4.71248
6.86395
5.6358
6.37224
6.97209
6.19527
4.53937
5.61999
5.43076
7.57089
7.22273
6.42089
3.30122
3.54408
2.68482
0.929225
1.64901
1.62132
1.26243
3.05813
1.86546
3.18471
3.36382
2.51933
1.3765
1.97137
3.4678
3.87398
2.59325
3.48249
3.38521
7.91301
9.03477
7.99556
8.9414
6.87563
5.75743
6.79958
5.82391
3.63065
4.6907
4.98849
3.37082
9.28766
30.5295
3.26825
4.45558
3.22351
4.5182
8.23354
29.8108
2.46258
1.79762
4.7787
3.48213
1.8887
2.5212
4.94067
3.51561
2.76955
1.89758
2.53772
1.82043
3.14415
3.25548
6.31424
4.33308
2.57297
3.1958
5.46691
4.13832
2.87365
2.08771
3.03691
2.09232
9.19888
10.3039
9.71117
9.81151
6.63673
5.83437
5.9646
6.50335
7.25961
7.14233
7.81364
6.57997
3.54328
3.43252
3.86125
3.03079
3.47059
3.70351
2.96887
2.62992
3.4776
3.21939
3.22939
3.83143
6.46226
1.40145
1.72589
2.60209
67.1919
15.9143
3.22196
3.82133
3.9314
3.11932
1.61582
2.90046
1.23813
1.12748
1.77036
3.70834
5.03222
4.4649
4.21405
7.00062
7.53071
6.97719
7.53092
6.05816
5.39211
6.03986
5.49103
5.44216
4.71804
5.29108
4.88788
2.25884
2.52647
2.82829
9.12451
1.98504
0.663194
0.327681
0.334097
0.451398
0.726174
1.52756
0.673765
0.394373
0.737719
0.632722
1.45469
0.647864
1.78805
2.49853
10.499
2.29867
1.94737
3.11195
3.4457
2.77473
3.74686
1.07119
0.351503
0.91045
0.620379
0.955499
7.01524
1.2967
0.707616
0.958038
0.884076
1.75202
2.56528
2.98094
3.17395
2.38452
4.51329
5.2906
4.54903
5.27527
4.5147
3.13433
4.11566
3.55508
111.083
22.1024
2.36852
2.34291
3.65722
5.50639
20.8274
8.67692
4.02653
5.48083
19.6272
1.04937
2.14485
1.57242
1.09252
2.28665
1.60924
1.41643
1.12081
1.48712
0.993137
2.70157
1.94925
0.944759
1.3634
3.09588
1.96988
2.14429
1.02607
1.37979
1.23013
5.81383
6.59874
6.23417
6.11425
3.271
2.84347
2.75595
3.37314
4.23744
4.16701
4.70601
3.68009
1.73596
2.07858
2.2443
1.59523
0.602905
1.74434
0.288796
2.60198
0.368908
0.486944
1.73837
1.97786
2.23328
1.51497
1.02881
1.44857
1.41114
1.04869
0.560706
5.05411
0.11028
0.120125
2.80546
0.150104
0.128195
0.871348
1.66677
2.63416
2.14233
2.13297
2.91892
13.7115
2.38652
2.08444
2.93347
2.70269
3.19454
2.45196
3.02617
2.31603
2.78602
2.56387
0.98594
4.98371
0.446712
0.484597
0.489783
0.80893
5.00229
9.36685
55.8279
0.490091
5.11645
5.01571
0.160655
0.0619145
0.0579608
0.194413
0.210346
0.823675
0.407415
0.562188
0.279405
0.213737
0.200789
0.396218
0.206646
0.782945
9.02027
0.928002
4.65987
6.80079
1.14257
0.513121
0.91067
0.844823
3.69642
65.7268
1.39074
1.01048
1.19506
1.59205
12.7378
2.20128
0.0982737
0.0305784
0.0613607
0.122936
0.0277908
0.057412
0.29006
0.261178
1.81753
0.542439
0.2471
0.298278
0.328245
0.572074
0.316281
0.903386
1.01598
1.1623
1.27801
0.680034
8.20186
1.21289
7.96594
2.41841
3.2644
2.60048
3.06595
88.7111
14.4955
1.61274
16.3313
3.82091
6.54697
2.3968
2.62806
5.76055
3.43482
2.89737
4.45813
1.8553
2.47843
4.66827
3.24677
0.889936
0.625844
1.13961
0.786094
6.65633
6.75022
0.933024
1.80177
1.04935
8.93907
1.36021
0.980614
1.73838
1.47896
4.37673
5.75769
1.82832
1.92207
2.72561
1.53669
4.18828
3.32419
1.79493
3.28337
2.12047
1.43015
2.94824
2.18575
2.71881
3.0261
1.26929
1.66497
2.06448
2.40039
2.87574
3.03806
2.20692
2.71076
2.99977
3.27389
1.07899
1.14219
0.906499
27.7306
2.36328
1.37161
1.17233
1.13273
2.02917
1.04478
0.882905
0.724061
7.40531
22.7084
5.90234
17.4052
17.9966
5.72384
9.82335
8.49696
8.88213
3.56381
19.7111
9.90999
3.84289
10.3772
1.02782
11.705
5.27716
5.61816
41.8827
4.69244
86.9189
41.7857
14.5894
8.10583
8.33609
25.2836
5.76824
17.9754
174.326
2.02148
1.9719
11.4521
1.86605
15.1847
57.32
151.321
2.42886
45.579
153.525
795.717
1587.53
1.57729
43.7667
2.19144
102.752
1.99434
95.1551
24.1053
1.15357
384.371
29.7431
41.8187
7.91873
0.559062
0.604058
5.94998
0.464016
0.895563
377.81
81.4284
0.393077
1.11994
0.898541
1.29805
1.73484
1.35245
0.32853
0.715939
0.760904
1.74499
1.96767
1.51874
2.71739
0.173461
7.52143
0.519608
3.35153
0.230842
0.549506
7.42282
17.3895
3.58524
3.44631
4.86685
4.8615
11.3957
2.27473
2.28392
4.81125
0.840287
2.21918
0.949464
4.17279
1.96329
0.494408
5.65499
3.60785
0.429558
3.35471
4.30086
1.74929
6.66444
5.85464
1.82241
0.393897
0.812126
0.24648
0.984809
0.957583
0.107549
5.30517
0.123134
3.73567
0.928929
5.95651
0.415073
2.27517
0.477007
1.27381
0.149805
1.53997
5.83232
0.141312
1.72949
0.363176
2.935
0.481756
73.5286
0.368377
10.5644
0.389607
4.95119
0.463257
10.1801
2.73832
1.56628
1.37911
3.68483
0.708296
3.43236
0.588532
2.36974
3.51461
2.26173
1.65446
3.27787
2.04109
2.3226
7.91166
1.59894
0.807339
4.52873
1.01869
1.96259
1.57967
5.38225
1.13581
8.16939
1.41417
1.44783
7.50206
6.33998
6.35955
5.16591
5.14056
2.24359
2.2172
1.69453
1.67504
4.74161
3.10959
5.18177
0.709846
0.760794
2.05039
0.375138
13.1989
13.1629
13.0604
13.0245
10.007
10.4838
9.184
8.303
9.30838
8.61274
6.34954
80.181
7.30749
9.59972
9.16268
8.99847
9.37104
7.68819
6.87119
1.37876
1.5506
1.25699
1.1575
2.04592
1.5145
5.57539
5.02135
5.04929
4.50071
2.96141
2.76469
2.40177
2.6289
3.46692
2.29629
2.1112
1.79367
1.9635
1.30683
1.46717
1.22573
1.08184
1.68242
1.34738
138.369
70.9783
24.718
56.3831
25.2946
25.9617
25.4269
12.5364
12.4223
6.56593
12.9735
31.2078
13.407
32.9693
9.2399
9.79081
6.64605
7.57282
6.75565
11.07
164.752
12.1653
5.01427
2.77721
7.24364
6.48856
1.84418
18.3747
1.95124
17.0158
2.44568
1.89998
7.72302
3.84146
7.67003
7.4237
116.567
0.558956
21.9195
8.84461
176.611
12.8084
12.8232
6.42044
13.8352
13.753
55.6198
19.2744
54.3611
19.4035
21.1177
21.5022
14.621
8.88705
8.73504
4.9763
6.14768
4.60485
6.25894
4.93333
1.95445
15.9889
20.888
2.54473
14.9499
1.8115
1.5293
13.134
1.84724
12.2127
1.41875
1.67027
1.03174
0.529877
1.52766
1.01814
0.410316
0.174893
0.18617
0.173824
0.0956307
0.843411
0.102144
0.155725
0.137161
0.152553
0.0859626
0.710796
0.0805606
0.594242
9.30255
19.2512
0.769975
14.2147
30.9655
0.852005
31.041
11.9733
52.4202
14.3838
13.3645
15.3585
13.8196
16.9894
22.9951
12.2831
12.3278
12.175
12.1313
14.5092
10.5632
15.9192
12.2234
12.1855
12.0283
12.0694
11.3021
13.8981
9.52667
8.50534
6.08541
6.3775
10.2601
8.58893
6.03632
5.62373
8.73422
8.5592
8.39163
8.41405
5.69485
5.21565
5.18516
5.03894
6.87199
3.23689
3.28448
2.85807
2.81498
0.0450834
0.652848
0.0980132
0.0432938
3.15749
3.09506
2.68378
2.74048
0.0532214
0.160149
0.0695582
0.244642
15.686
1.70015
15.1085
1.6383
2.21401
2.39131
2.08364
1.91341
0.551077
0.0801608
0.449665
2.07272
2.07265
1.77451
1.77862
2.21953
1.84838
10.589
7.39934
6.54947
79.7904
2.44754
1.86076
1.35076
1.60074
1.18843
1.45859
1.11427
3.42416
2.34257
0.867405
0.775747
0.612261
0.40764
1597.52
43.5409
137.606
90.8236
9.66051
23.0629
7.89643
18.4406
7.87124
7.02064
9.81852
7.37405
7.24108
8.89992
6.39932
11.8844
12.0979
12.0743
11.8601
12.7506
12.8444
12.6973
12.6024
11.7887
11.3837
11.5376
11.6892
11.5653
11.4227
11.1535
11.3573
10.6229
9.34091
12.8171
20.8236
4.86098
19.4107
9.57239
10.1059
9.70308
9.11473
9.06058
9.63051
9.07616
9.07505
9.22528
9.01223
12.31
7.68533
11.6608
16.3926
11.5687
16.9914
8.63996
8.7401
9.06224
8.81557
8.33643
8.27871
8.02798
7.98413
5.07154
5.73912
7.41008
3.34262
5.83459
4.12209
3.89364
3.99262
3.51706
3.41642
2.77661
3.08889
2.1874
1.76335
1.50362
1.10142
1.42028
1.17742
2.99329
2.95087
2.57649
2.61446
0.899778
0.960525
1.20554
0.666793
1.01088
0.772511
1.02656
0.76107
21.1594
7.69811
0.926819
0.68563
1.0516
0.754762
2.75575
2.7622
2.45605
2.43231
0.5717
0.453952
0.645003
0.399412
1.13823
0.811475
1.04985
0.907098
1.68345
1.549
1.30143
1.42446
2.88678
0.284413
0.241323
0.34395
0.249175
0.222548
2.29124
0.386302
1.85656
1.61141
0.332988
0.233004
0.427319
0.267241
2.40215
3.69399
26.6926
7.7188
20.319
38.086
16.9603
2.38093
7.6672
10.103
7.47
6.65212
1.07344
4.74475
5.39019
2.35044
8.4565
4.97158
120.983
4.993
40.6929
249.985
11.5763
11.6841
7.23736
11.1412
74.6788
10.7295
42.092
11.3468
11.0972
8.05687
9.45416
10.0192
7.30245
6.58436
1.98244
1.77953
21.5637
1.63294
1.70475
1.40777
1.03996
0.583412
0.843265
4.79117
0.791288
0.528767
4.49472
4.52805
1.30625
0.737262
0.50338
4.31477
3.1952
3.03352
0.496416
0.336473
1.14133
0.518405
5.74168
0.551641
4.81853
0.268943
0.199866
430.153
12.7783
7.06086
6.59579
5.90233
6.95061
6.61052
15.0187
14.8873
16.3322
16.7073
53.3859
15.6621
52.0142
15.41
17.2192
17.2962
7.77808
7.01494
6.41172
8.28414
8.33115
5.388
5.67288
4.34989
5.68355
4.74285
2.13274
17.4175
18.2302
2.24357
13.7895
1.65996
13.4253
1.60297
2.15723
8.12147
1.18472
1.25626
1.08353
0.585128
0.889413
0.335612
0.503025
0.208404
0.276047
0.331163
0.253655
0.214692
0.407499
0.825521
0.0252537
0.0796357
1.73164
1.62174
15.2922
1.78917
2.2453
1.99456
2.27751
3.49499
2.97658
11.9356
5.70898
14.5633
9.0495
29.1943
34.5811
14.7517
10.8959
6.15849
10.8307
10.7103
27.8036
18.2841
8.23251
18.3111
16.2473
5.35466
22.5128
7.43804
16.4444
31.0872
3.26873
4.89545
6.00296
9.02316
6.06889
8.44867
15.4671
30.0266
5.48244
13.7351
10.1277
5.0202
5.46256
4.5541
9.62199
6.64397
8.50073
7.24124
6.92708
3.27488
6.37033
8.39612
80.6068
21.8117
9.72342
25.3237
10.2541
9.58948
9.27573
9.70503
9.51646
12.0624
9.3408
9.57449
6.18347
23.9323
10.8741
13.2862
9.63022
12.8492
10.6856
7.90762
80.2819
103.331
4.14704
34.3149
7.8972
9.96307
8.97377
10.8463
22.1994
6.62953
10.0076
8.71617
20.2918
12.0356
10.2804
7.14855
9.63244
7.34441
7.28213
11.6603
11.3943
11.3007
11.6284
15.5902
13.3334
21.4006
9.7974
10.6898
39.1251
11.0028
9.19603
12.6647
12.5948
12.4415
12.5126
10.285
7.63179
8.41814
9.70994
11.4991
11.1887
11.5874
10.9634
14.9051
11.9161
18.8799
41.6281
116.408
5.47204
6.1429
7.91329
10.2969
8.57224
9.78501
11.7191
11.8497
11.6763
11.5313
8.35304
6.71749
9.03576
33.3758
5.95975
21.522
10.8714
9.53888
9.07931
7.75008
11.7451
10.9519
36.2076
63.2453
10.0162
7.95313
13.993
11.4277
20.6625
11.6698
8.69373
8.96919
9.13103
9.0771
10.4428
10.1722
8.44407
10.7538
9.32335
10.2354
9.51509
9.14556
7.35152
6.48658
9.25373
9.90969
8.98645
8.81054
8.74314
9.12194
8.95417
8.93958
9.48946
9.18708
8.83191
8.32603
162.767
32.7549
42.8027
18.9184
37.9433
16.7693
12.3259
17.3234
8.62102
9.00306
7.80645
5.54138
102.512
8.24764
8.0858
6.29004
5.89074
4.29749
3.41047
8.22755
4.49394
3.82956
3.71489
3.25808
3.35878
1.10926
0.815005
0.832532
1.08819
1.36329
1.10002
1.41237
1.05701
1.85522
1.10457
0.894104
1.30543
0.0593376
0.505836
0.0294547
1.76234
0.021503
0.623198
0.806118
0.871709
0.567475
0.401257
0.57867
0.591311
0.392817
0.535204
0.810745
0.774646
0.562496
3.16248
3.28321
2.8947
2.78089
1.01049
0.776082
1.04172
0.750827
1.2188
0.882401
1.15195
0.937048
0.313769
0.705127
0.464191
0.528072
0.0855248
0.374591
0.0754159
0.272928
0.380071
0.555928
0.545873
0.387957
4.66839
0.361958
6.12959
0.550501
0.37367
0.532607
0.0997598
0.514021
0.127029
0.482284
0.639955
0.681633
0.451408
11.6369
1.2774
1.40072
1.3549
0.923994
1.10371
0.803312
0.470885
4.25477
0.519504
5.62171
0.643846
4.94432
0.552689
2.37692
2.18012
1.87501
2.05568
0.794363
0.497923
0.582623
0.693198
0.656187
0.537964
0.741632
0.471743
0.157047
0.29503
0.257449
0.181215
0.0875049
0.380899
0.510692
0.579224
0.686582
0.405859
2.36239
0.256428
0.323553
0.212871
0.385557
0.193695
0.356428
0.307777
0.226103
1.95406
2.17085
1.90575
1.68181
0.587741
0.425678
0.403806
0.607244
0.770874
0.357341
4.82236
0.564507
0.534501
2.23873
1.81005
0.480747
0.317005
0.514112
0.36316
3.18103
1432.34
293.067
1755.84
159.86
91.7339
803.219
1423.66
262.486
1747.64
806.215
6.01262
0.940264
4.46951
5.63526
7.5077
7.22448
6.50912
5.82766
4.55868
4.301
2.98097
3.63272
5.93617
4.31918
4.75022
3.04626
4.17545
6.59388
4.93594
2.16302
2.1897
1.6547
1.63606
15.2143
15.6782
4.08391
4.03619
4.27315
2.67127
2.31921
2.02262
2.0274
1.74334
0.582843
1.2348
0.324215
24.0058
12.6934
12.8782
12.8459
12.6636
13.0646
13.1116
12.9723
12.9246
11.0084
10.7975
9.8548
10.2933
7.13051
6.09554
4.92559
80.6366
25.0847
7.11041
7.90274
5.56689
4.91324
20.9894
20.0525
5.09297
11.9398
8.97888
9.07081
9.08057
9.33258
9.0448
9.01932
9.23369
8.78681
9.2288
8.96122
8.76726
9.01698
7.74362
7.35634
5.59758
4.36432
6.29342
4.54931
1.49279
1.62707
1.26003
1.10774
0.837018
8.17331
0.453955
2.61329
0.791283
0.446086
2.59432
8.4825
8.27909
2.47266
2.50466
1.43816
1.01016
6.86577
2.15686
1.21436
7.47923
4.4372
4.64841
4.13146
3.92878
4.08156
4.54744
3.99337
3.51055
2.78342
2.71716
2.35403
2.4183
2.05246
2.00185
2.30729
1.72342
4.13874
2.45619
2.00335
2.71728
2.04398
1.99521
2.03912
1.7292
1.68981
1.49691
1.35773
1.64857
1.22598
1.67064
1.65333
1.41162
1.44463
0.99983
0.684865
0.873889
0.791566
1.71906
1.45789
1.08086
0.898404
1.17555
0.918967
593.03
2108.7
50.0318
244.68
191.905
42.5288
12.3335
12.1359
11.2525
11.7774
12.629
12.4368
11.6591
11.7136
57.4137
56.5623
42.6528
32.1959
33.6061
27.0105
18.1283
27.5852
17.1834
25.6032
19.8702
24.9096
20.7588
11.8339
12.1364
6.65066
12.2145
20.5058
11.5498
18.7388
8.10534
11.5639
8.56173
12.303
8.11275
10.6142
10.3305
7.47846
8.38678
8.77341
37.6131
2.4388
7.6426
7.11943
6.39406
5.1074
3.84652
11.6599
5.13503
3.78845
11.6129
16.4498
1.76925
16.4995
1.7791
4.83669
3.83782
4.58652
3.11405
2.50857
2.00095
1.51009
1.21791
1.57751
1.23866
0.414164
0.784221
2.61136
0.764372
1.89695
0.705534
1.64116
0.428765
16.7891
0.437837
0.559816
131.534
0.46179
9.61396
12.3877
12.3746
12.0005
11.6463
11.1043
11.7297
10.9995
12.016
14.3274
13.7659
13.9843
13.5254
12.5672
12.3164
12.4589
12.4445
13.0884
13.0599
6.39889
14.0548
14.1721
34.0779
13.8885
34.0548
13.7932
12.8171
8.80443
12.6909
8.92133
52.5883
17.241
53.2523
16.9329
18.9195
18.8555
23.5496
14.2473
22.9258
14.5657
19.5046
17.2002
21.5255
14.3277
18.3221
8.60639
8.65702
4.88293
6.07957
4.4728
6.02028
4.4374
2.0044
16.3815
2.30783
4.87048
2.38088
2.4063
19.4777
9.70274
3.53368
3.07369
14.5442
1.76143
2.11067
4.62736
4.56264
2.0345
4.38314
13.7082
1.58947
1.73203
1.88209
2.68168
3.16503
1.85546
3.30378
1.70904
1.96865
5.37347
10.7656
2.62901
1.6313
4.07467
0.513129
1.19453
0.813488
0.811541
4.03546
0.919288
0.467159
1.02355
11.3791
1.35618
125.804
1.51022
1.36902
50.1675
1.78776
1.32307
1.09749
1.64428
1.63793
0.906934
0.998283
0.422955
0.208256
6.66183
3.28007
0.476385
0.738218
0.683914
0.236414
0.542228
0.728364
3.49348
1.12897
0.603908
0.639266
1.033
1.19272
0.76676
0.682467
0.399689
0.786607
0.168258
0.351449
0.161234
0.296354
0.750387
0.309541
0.151931
0.328018
0.155055
0.303344
0.765555
0.857064
0.577103
0.747801
0.196267
0.194238
0.160528
0.154241
0.879961
0.546247
0.473386
0.996996
0.911681
1.13365
0.499344
0.662029
0.118688
0.253258
0.677736
0.126018
0.27394
0.694436
0.278536
0.141965
0.238742
0.136394
0.267089
0.365334
0.396073
0.994891
0.971369
0.293498
0.1027
0.109844
0.114196
0.11682
0.139012
0.237904
0.21861
0.180907
0.1984
0.210154
0.147367
0.256061
0.274012
0.135123
9.20646
0.113094
0.115763
5.2293
0.138822
0.179707
0.140094
0.106482
1.23443
0.0871453
0.0665744
0.633457
0.0730581
0.484906
1.2403
59.8284
62.1321
1.01723
5.05769
1.06108
0.354416
117.504
20.3487
19.8863
18.4331
10.0307
12.1462
109.863
83.3014
11.418
5.63908
4.3667
0.295449
8.71066
30.378
17.6123
33.9232
38.8669
15.3345
38.2881
18.1519
17.9686
46.8569
19.7586
86.858
15.4503
30.0496
29.74
16.9718
22.5683
5.99436
59.7636
10.4289
11.9349
11.912
11.2752
12.4476
15.4883
13.0284
14.0958
13.5266
5.00424
18.1016
5.64034
11.6609
12.048
12.803
72.0333
13.9272
11.2269
12.4109
18.7092
68.7719
5.70756
6.22561
18.4555
7.12413
5.98239
9.39178
5.26114
20.173
11.4995
11.2617
10.7472
9.89832
5.60304
21.3065
8.59182
21.6203
11.375
13.828
5.61314
22.6484
10.5734
10.9333
11.3657
10.6132
7.98327
4.86031
19.339
9.48796
11.743
9.08828
10.6247
20.5702
8.8811
9.60452
22.444
11.8677
9.07198
7.84475
5.69235
16.0126
7.01402
17.6539
18.6886
25.6121
17.3533
51.0337
12.4378
12.387
12.2341
12.2837
12.0175
11.7903
11.9724
11.8424
14.8277
11.3157
18.0469
21.0178
21.725
26.0847
21.3699
24.2392
29.9889
12.0811
12.13
11.9725
11.9215
11.8596
11.7136
11.9052
11.6511
10.7713
7.06414
11.148
6.4675
11.3301
11.9728
9.65631
18.7989
20.7217
21.6477
9.67073
9.80795
15.732
19.8205
15.4608
11.8285
9.16346
8.52051
8.96272
8.9039
9.69618
9.85513
6.86406
10.9736
9.61859
10.7205
6.61858
8.96199
8.48015
8.6119
9.48318
8.54961
8.9481
8.90003
3.95148
4.45454
9.00346
4.06733
4.62524
4.01058
4.54891
25.0066
6.04009
12.136
10.802
8.53281
8.67132
8.60132
8.66557
8.76598
8.64494
8.15176
7.93848
8.49504
8.28861
8.43986
7.75318
8.0625
7.4037
5.8329
5.64591
4.7839
3.25476
8.36862
4.85242
3.19753
8.25544
4.99716
4.39483
4.71732
3.46308
8.61125
4.43126
3.52137
8.61338
18.1796
5.99109
5.10847
3.90435
11.6641
4.468
3.74618
11.5925
3.411
3.35642
2.92529
2.97456
2.45776
2.04683
2.41946
2.08052
0.225332
0.102364
0.0975255
0.213373
0.0925656
0.0413453
0.0398152
0.0248404
0.952708
0.0597078
0.0243438
0.0613301
1.38246
3.09312
2.98945
2.59432
2.69282
2.29803
1.9827
2.34966
1.93601
0.0214962
0.0550898
0.805525
0.154361
0.0221758
0.0528438
0.778428
0.148861
4.28041
14.6884
1.58457
14.8721
1.60714
4.3086
2.73168
3.94974
2.67168
2.79765
2.67844
2.36339
2.49048
1.78722
1.36259
1.62843
1.50843
2.37136
2.51546
2.22907
2.07264
1.49395
1.24448
1.50134
1.23391
2.22555
0.775732
0.0183426
0.0935367
0.120363
0.0155896
0.0648388
0.0666452
0.00886411
0.0179
0.0455576
0.058939
4.03844
2.16629
1.74073
1.47275
1.15575
1.3891
1.12799
679.228
167.515
45.7633
328.689
47.1737
229.116
8.06789
5.99444
4.6317
0.772764
5.53802
44.5834
5.95165
0.694935
5.13799
7.73756
8.13938
7.05247
6.86821
2.05876
3.15391
1.90161
2.47836
0.5872
0.942221
0.645097
10.1871
10.2372
8.25188
11.0685
7.43721
6.52044
5.0255
3.18636
11.1179
4.79811
3.09102
10.4264
2.10558
1.9778
1.48968
13.8202
1.59221
14.8497
8.07458
3.69516
3.84558
2.06856
2.6964
1.17281
1.54024
2.66116
1.98774
1.86733
2.48894
1.13234
1.5155
2.5489
1.95593
3.67994
2.56634
1.80802
1.39159
1.94824
1.49058
1.14777
1.66312
0.567029
0.741382
1.39506
0.997839
0.85609
1.09584
0.465689
0.708884
1.18512
0.957468
10.3226
11.1869
7.21508
13.8024
27.3908
7.59296
3.82291
14.6535
26.5077
7.78342
42.1953
158.026
38.3181
253.516
37.8689
67.4746
48.5941
8.9077
16.6769
31.0465
35.5198
7.69412
11.0824
25.7439
26.7869
8.17086
34.1757
12.11
90.3753
25.8518
23.4831
41.5196
5.52814
20.6379
24.1165
7.87967
21.0794
20.3714
20.97
7.17771
3.4493
5.34288
6.87315
9.31374
5.85204
6.81183
8.33154
12.5016
12.3029
12.2778
12.4746
12.0363
11.7851
12.0024
11.8222
13.0202
12.947
12.8041
12.8787
12.5323
12.2719
12.3609
12.4407
11.8936
11.7408
11.964
11.6612
11.9932
12.0932
12.1824
11.9012
11.1582
11.2818
10.9
10.6225
10.4326
9.50389
8.76303
10.8263
12.0484
21.1461
9.581
12.3662
19.8214
7.36402
6.39944
5.07202
10.1798
11.0462
21.3091
6.23539
5.4961
79.6706
12.0439
9.27544
19.4738
9.70285
10.0151
12.4144
9.32354
9.08456
9.85168
9.09054
9.83908
9.00413
9.23163
9.89378
9.21407
10.1044
8.97596
9.61217
9.53392
9.037
9.46879
8.97641
9.11957
9.29916
8.97857
9.09015
9.05111
9.11823
9.30203
9.06585
8.99608
9.24353
9.01913
9.31023
17.9227
33.5714
16.9966
7.82492
12.6275
11.8956
35.2918
18.2154
17.3788
12.7277
14.477
19.7669
20.7759
36.6392
8.98441
8.73245
8.79435
8.69402
8.73213
8.84306
9.1304
8.97537
8.77995
8.70412
8.99964
8.73191
8.59079
8.665
8.55842
8.64452
8.80329
8.66701
7.84221
7.42327
7.51289
5.83203
6.4353
5.21147
34.4794
4.27689
169.668
3.65656
2.59896
4.71049
2.8349
7.30348
2.38259
2.43818
6.59305
32.5492
1.17673
0.836166
4.03208
4.00688
8.09731
28.6584
4.83522
8.07272
4.9838
2.94102
3.24034
2.33885
9.76386
2.44862
2.07106
9.29286
4.28819
4.18187
3.68659
3.78656
3.07997
2.54728
2.65423
2.97552
3.67014
3.32708
2.6067
3.04857
1.88431
1.39614
1.75218
1.5059
1.85755
2.14252
2.24252
1.76547
1.60877
1.32194
1.66622
1.27276
2.84865
2.89923
2.52754
2.47987
2.22222
1.9129
1.88211
2.25581
1.14545
1.71565
1.42064
1.44993
0.864876
0.676929
0.91072
0.637438
1.27104
1.58875
1.56254
1.29163
0.979133
0.710396
0.950362
0.734272
4.25069
3.18843
2.21736
2.78317
2.17557
1.21104
1.59304
0.69652
0.998824
1.62044
1.2994
1.37183
1.74149
0.745205
1.0219
1.71818
1.32855
1.94962
2.18193
1.87208
1.64969
2.15975
1.82961
1.87904
2.12366
0.763397
1.09282
0.980903
0.855361
0.544851
0.36737
0.529458
0.37892
1.37228
1.55207
1.61593
1.29522
0.627876
0.338398
0.49579
0.445888
1.4095
1.45036
1.21077
1.16919
1.06929
0.94976
0.857825
1.1773
0.425533
0.514165
0.60001
0.361446
4.89633
0.39279
0.51079
0.498913
0.744239
0.66836
0.558775
0.30069
0.167557
1.50186
0.192272
0.273295
1.81967
1.49039
1.3038
1.00018
1.20156
0.977037
0.486865
0.69794
0.239518
2.17922
0.372367
0.715492
0.541078
0.615839
0.784464
0.258738
2.33271
0.382267
0.763913
0.55443
2.26505
2.78963
1.29151
1.8474
1.39603
1.71098
18.268
1.84731
2.00012
1.55865
2.19357
2.09635
2.32016
2.30349
2.24073
30.9924
457.666
43.782
34.7347
154.887
2.482
2.23926
2.16117
2.40082
142.969
278.088
77.5901
1270.15
2289.14
621.57
39.2442
491.52
47.3578
39.8997
79.7817
49.5605
10.0194
10.9994
15.9589
10.3889
0.350966
4.57901
14.2584
5.04263
6.90492
4.15071
3.04853
10.2192
7.07854
6.89013
6.21241
9.09148
15.5933
0.655144
10.9731
2.74372
7.5615
0.79106
2.79796
3.78804
8.43611
6.08312
3.46317
1.20906
1.2589
1.168
12.0113
0.864768
12.2554
3.11191
0.824414
1.12141
5.96282
4.95558
0.989648
6.09232
1.18575
5.88422
6.23923
8.89974
8.2902
69.1828
11.0394
8.59
8.9411
10.0394
42.6142
6.04013
6.25819
4.14369
7.47044
10.1447
6.63401
3.62896
3.78604
9.89474
6.11107
4.24428
4.05888
0.949801
5.7837
2.01042
3.0608
18.6759
6.834
1.74469
8.82738
259.048
10.1197
8.11273
15.5048
14.0417
13.5864
16.0467
50.0704
61.1951
225.613
6.59732
7.022
69.7023
11.2571
10.3434
7.51212
5.5007
4.40708
8.79133
8.18763
12.1715
13.2082
7.80834
18.5663
29.2306
42.5979
15.8069
57.0509
54.4673
56.0129
72.3578
28.9084
19.9701
28.4779
21.9987
59.7822
35.2659
73.5489
34.6244
10.9095
9.95247
12.7713
13.4204
8.60418
12.4074
14.6017
7.80539
13.5708
23.5916
13.7828
23.4364
11.7267
11.6763
6.84577
11.1829
113.923
11.2689
114.278
113.923
114.278
8.7626
7.99301
10.7177
10.8463
8.02002
9.09668
8.92087
6.23306
5.2678
6.68518
7.1326
7.20272
6.42907
5.11672
3.55687
11.5611
5.14125
3.62435
11.5826
15.8898
1.69637
15.9062
1.69778
4.89218
2.95338
4.31892
2.83961
2.06005
3.09343
1.12822
1.53965
2.40534
1.92819
1.80118
2.24416
0.985322
1.35577
2.15875
1.73115
0.832009
0.564526
4.71942
4.73482
0.804819
0.551985
4.63924
0.811145
0.590982
4.84209
3.72981
0.692465
0.480528
2.78623
2.06522
2.49538
1.64454
1.62927
1.37574
0.70902
0.958194
0.34454
0.519335
0.976262
0.741235
1.46046
1.32824
0.392248
3.63709
0.542361
1.08941
0.771277
0.378355
0.31137
2.55796
100.746
42.2897
243.027
10.0033
6.91204
58.2287
0.620505
0.66493
1.38964
1.32748
441.861
88.7499
2.89984
13.3722
25.0755
22.0328
0.462631
0.442335
0.837537
0.997247
31.9167
110.244
19.1688
9.70556
24.069
13.041
35.5664
14.0766
21.8751
14.0937
12.8407
12.565
12.1649
11.7895
11.1796
11.7907
11.2073
12.4223
8.29012
8.55534
10.4166
10.2643
8.73234
7.94419
8.62819
8.90362
10.5159
10.5698
8.83743
5.54255
6.01981
5.3935
5.77961
8.89607
56.8111
11.9409
56.8111
12.8709
12.6168
10.1666
11.8594
11.9737
10.0383
80.9821
11.654
80.9821
13.5865
13.8512
13.4226
12.3297
12.1452
12.3067
12.1029
13.2358
10.7237
9.62133
11.6637
9.79644
11.55
6.35683
7.11333
8.12718
8.143
10.062
13.5804
13.9795
5.63125
15.3154
34.0719
14.6881
13.6827
32.9993
13.7778
14.1301
9.53071
9.45102
14.3321
15.8514
52.1279
16.3094
17.9521
17.7288
22.4631
13.9686
22.6187
13.7737
14.7067
9.68006
14.6723
9.74754
11.5064
9.83412
8.54794
8.4526
5.113
5.83464
4.44497
5.94856
4.40824
2.09919
17.1601
2.57427
2.5285
9.64387
5.4
19.3323
67.7923
38.3652
3.50077
3.80371
2.61227
3.31778
123.728
1.86441
15.4189
0.888136
6.63403
0.39816
0.305112
11.9181
1.45514
1.25386
0.301797
5.21751
5.11595
0.30968
1.19534
1.26776
0.332643
5.38497
5.45941
0.32629
1.37502
1.3029
0.757918
1.55092
0.220579
0.27482
1.27445
0.562065
4.37264
5.00574
6.74229
2.87653
2.28333
18.539
2.77068
5.98135
6.06831
2.84492
6.38607
2.54202
0.516468
6.63584
6.77827
2.47393
0.495785
3.98271
3.60096
5.15147
2.64152
7.60407
0.312878
0.117874
129.402
0.900784
3.42691
1.67415
0.247779
0.09711
3.13086
23.2205
2.32577
1.58822
0.440297
0.891006
155.675
1.78419
1.6068
0.444942
6.28766
2.27881
0.453424
6.67876
5.83218
5.97045
4.27248
3.0464
2.11945
4.40108
2.53189
14.004
1.68863
1.88076
3.6954
3.8281
1.92892
4.82711
5.12631
4.72433
3.94668
2.77751
1.45946
3.90627
1.50431
0.430196
0.729917
0.890475
0.784147
0.959895
0.218443
4.30125
0.935199
0.212381
1.07111
11.0341
2.43102
1.34936
0.491327
1.1169
1.5992
1.3799
0.962311
0.826573
0.190019
4.13852
4.03556
0.889065
0.197082
0.692798
1.14808
3.36383
3.68428
3.19922
2.50268
1.60481
0.728234
2.59444
0.761643
13.2806
1.57988
1.76761
1.73144
3.0287
3.26703
4.0534
3.52385
3.83407
2.68655
1.74886
1.0076
2.39655
1.11163
0.505149
0.564348
0.338786
1.2158
0.278038
0.154455
0.119893
1.83063
0.602101
0.784927
0.35708
1.02999
0.37742
0.238353
0.13342
0.403259
0.463156
0.21019
0.128872
1.95143
78.6654
4.24827
0.873516
4.13904
0.863126
16.9686
1.02275
4.18353
0.830751
1.94415
1.82258
10.1933
1.55275
7.64293
0.248233
0.264949
0.36884
0.214143
0.267163
0.344562
0.198956
0.220223
0.458845
0.288958
0.262671
0.265708
0.264819
0.521884
0.326953
0.352694
3.29637
2.5247
5.3447
2.86723
1.88204
1.6045
0.744171
3.37378
9.86887
1.41705
8.24307
5.80277
1.26131
6.87558
1.50815
2.67825
2.83614
104.142
2.60517
2.08839
1.313
2.4676
0.151197
0.0999365
1.43563
1.4737
1.82942
0.160485
0.124294
1.67141
0.208679
0.15568
0.527439
1.28912
0.132977
0.076693
1.04054
0.457753
7.14525
0.109474
0.0922691
0.777782
0.509204
1.42308
1.12769
0.598274
0.639728
1.22796
0.743946
0.711411
0.325901
0.12979
0.861136
2.85083
0.312813
2.2299
0.473689
0.2542
0.110271
0.75802
0.663517
0.273935
0.580457
0.0951531
0.188075
0.210394
0.142573
0.0889848
0.153187
0.229277
0.226325
0.0786276
0.155055
3.26374
0.110737
1.06641
1.06805
0.51228
0.591842
1.74417
1.00068
1.111
0.545931
0.826235
0.186738
0.624705
0.857403
0.211062
0.899223
0.361057
0.209112
0.115762
0.327549
0.315889
0.266141
0.263117
0.34427
0.496232
6.94983
0.974099
4.53703
0.615393
0.411329
0.409402
0.312179
0.155149
0.676643
0.9093
0.244931
0.125217
0.872203
0.787607
0.435632
0.871862
6.21687
0.749592
3.54365
0.50352
0.104798
0.0914349
0.625437
0.258385
2.39724
0.0704949
0.583306
0.240839
0.343644
0.851409
0.178634
0.182288
0.0686698
0.0744711
0.92189
0.0679388
0.0421003
2.8624
0.199588
0.245042
0.227416
0.206029
0.418793
0.69294
0.180355
0.335212
0.301472
0.176849
0.182329
0.29543
0.270606
0.162856
0.213222
6.49958
0.064322
0.349723
0.505438
0.730802
0.612475
0.056583
0.192362
0.044218
0.128302
1.42708
1.54128
1.56457
7.14414
1.36971
9.97085
19.3596
3.62048
5.96228
12.5564
2.55631
2.05689
21.4242
12.1466
4.08105
8.74245
11.3436
5.30718
6.45527
6.45594
4.39759
14.4581
0.652604
8.71061
0.396542
33.107
16.1199
14
4.37434
0.509591
0.37287
4.3312
14.3644
0.26855
3.61871
11.2386
11.4219
35.588
14.7058
18.9556
41.0709
6.54624
11.6631
40.1839
27.0427
19.0808
34.2953
5.522
8.54296
10.3415
10.0191
35.9816
12.8336
31.5805
8.97593
49.6119
21.971
10.3451
39.2933
25.4573
4.31417
20.7903
14.7688
5.16603
19.4435
7.96254
23.8795
9.91904
4.22894
6.05638
28.2881
10.8131
11.5773
19.4501
5.20988
6.25318
28.6167
11.9293
6.33525
51.6207
14.2993
0.355979
9.74093
0.398726
18.6926
0.448351
0.427024
8.50945
18.3403
11.8701
3.32229
4.75883
24.4821
9.34606
0.788688
0.350803
8.55604
1.02699
6.84822
21.0921
1.78185
11.5136
11.8459
21.7737
48.1291
19.5115
35.8202
10.567
3.57423
18.8979
10.3239
22.4425
10.5932
9.33336
17.9387
8.31236
14.9684
7.54904
4.01377
12.4861
6.28012
11.4211
5.50495
25.9185
10.0086
6.58382
6.01551
6.68345
18.3496
3.20786
0.381127
0.407924
5.08624
0.415518
5.4255
9.50315
28.9731
10.384
10.7908
0.30039
12.5385
48.2972
2.3057
0.41962
17.7521
9.46439
5.06107
10.3438
6.3588
9.59731
3.74125
6.05844
1.2129
10.8591
8.42608
8.48667
10.6984
55.4803
9.76845
9.81922
27.3646
9.50583
59.4797
7.99691
17.1856
5.07764
6.93664
26.1119
9.08421
16.858
14.3167
12.4176
25.4353
9.06911
5.30607
3.25272
1.12136
15.7513
7.61578
3.70526
25.9968
6.92291
23.5123
19.6132
8.23336
8.40299
2.95514
12.3763
14.6115
19.5669
5.7579
22.2226
6.23654
9.02871
29.353
7.71675
13.0395
11.6722
22.6696
25.0755
19.0582
7.6784
6.64135
4.71687
19.5889
59.287
11.5926
11.8679
26.7453
9.38285
8.00203
6.03431
5.69371
6.19615
9.7058
31.5357
21.0554
77.8874
24.1231
7.79843
4.95444
16.9854
11.5788
5.58046
18.6656
12.8739
12.5201
12.1086
11.3433
10.9015
10.7787
22.3397
11.9752
11.4402
19.5278
8.83604
14.8497
6.26973
4.57553
6.43081
4.97143
1.71512
8.44271
5.73024
1.70119
7.40974
3.95534
6.52741
1.4162
6.01965
1.66972
9.65433
6.7668
1.64308
1.50013
5.49351
20.7404
10.643
8.76011
6.09128
25.1113
6.98671
31.0092
26.6588
13.0782
23.6498
7.67657
20.1653
9.43506
9.69127
10.3459
23.954
23.6598
7.31925
12.4556
11.0269
14.5477
7.83342
75.147
30.4572
10.6517
4.89302
8.53346
8.5458
9.70667
9.87285
8.24022
7.66081
1.61342
3.9611
6.09348
6.16576
17.9771
28.9723
6.02941
8.93198
6.89316
7.63032
5.33667
5.74792
20.5328
25.0225
11.9514
1.54762
5.08283
4.68137
5.77342
82.5619
27.5968
33.7891
11.1132
16.0886
8.73143
82.8286
20.729
5.90649
21.7903
11.6798
29.0625
33.1714
11.8986
11.8471
12.437
6.38208
9.28368
11.6178
6.69481
11.6058
24.0323
23.8015
24.8961
9.99395
6.1141
11.6181
11.1395
5.42419
10.6301
60.758
7.98342
1.91395
4.16575
8.33781
17.0522
2.39267
4.56158
23.7314
10.0359
10.1923
9.48852
9.36845
10.1065
8.27822
5.91095
2.31697
6.11188
2.38708
8.10569
9.65413
2.44906
2.42779
9.87549
9.69223
12.7627
9.33891
9.30962
7.04173
8.62217
6.4728
5.68993
9.03438
7.79562
2.407
2.0961
10.8026
6.35675
10.2634
9.5662
27.2033
10.1417
30.8117
10.2685
10.1976
8.91945
79.6745
26.4645
11.5361
4.381
1.57589
5.60097
8.43206
13.1443
6.69606
10.5612
8.02158
5.23137
8.77897
24.2752
15.1858
14.8874
15.9812
17.1581
4.24025
15.5745
5.24753
2.1205
7.1156
8.50748
6.49192
10.2781
11.4567
11.0927
6.13798
9.72547
7.57839
8.20373
7.60332
9.81058
8.0306
5.9275
5.01352
5.33024
16.6005
9.28353
9.70167
6.87353
9.82741
7.85111
7.35558
9.66547
10.8487
24.9625
10.5918
9.09974
11.1597
11.5264
11.5799
26.0947
10.9709
16.7567
14.3668
28.1226
20.4561
30.8719
52.605
20.2659
50.2784
10.3433
11.4349
11.2639
31.6814
10.7146
35.0582
7.92161
5.76329
7.10057
12.4801
12.5322
12.3785
12.3249
12.2829
12.1815
12.3513
12.1156
11.2325
11.5571
11.6309
11.0009
10.7045
9.7557
11.0003
9.11642
11.7395
12.0042
11.8115
11.9369
11.384
10.3059
11.2228
10.6804
14.9735
12.3641
18.3221
21.2233
25.5026
29.8504
21.4632
24.6914
34.4257
53.1093
26.1957
27.103
7.83378
6.93321
54.1741
5.75618
52.9876
34.0076
46.672
5.78462
54.7108
6.39023
236.413
7.11243
52.7926
8.58224
9.20504
62.3138
6.41023
50.6572
54.7982
12.0282
11.9559
11.7892
11.8661
11.4226
10.196
11.1714
10.6838
10.2755
11.4308
11.2615
10.6801
7.54674
6.65376
5.28361
6.60874
8.25837
5.80463
9.0138
23.2388
5.22798
5.88867
12.2478
13.1697
9.72619
11.2761
13.47
12.7182
8.77698
6.96616
15.386
12.6557
16.4341
14.9568
11.0318
15.3488
10.0345
10.4184
12.6056
15.6397
12.0347
14.5039
27.7648
21.937
27.0997
17.238
19.4535
17.7573
10.1166
9.1133
15.8514
12.9623
17.6066
15.8983
13.946
16.995
12.6032
13.127
13.0496
16.876
14.5044
15.9739
19.2994
9.62213
9.6314
8.94835
9.14917
10.0401
8.67336
8.98147
9.29107
9.00085
9.56707
8.98206
9.1035
8.9433
9.50216
9.1352
9.82716
9.12715
11.8777
13.3213
9.54954
10.0928
12.9336
11.5042
9.43826
10.4761
11.3854
12.2845
11.8683
12.8103
10.4143
9.61451
9.41496
9.82512
9.7786
10.7526
9.61068
9.9316
10.9577
9.99559
10.8612
10.0253
9.95334
8.60293
8.87578
8.99738
8.6649
9.4265
8.71911
9.36074
8.9122
8.67987
8.94414
8.65431
8.9612
9.00955
9.03738
8.73298
9.31061
8.72118
10.321
9.25018
8.96115
8.7412
8.51874
14.7686
8.55854
8.90391
8.522
6.92476
4.79328
4.17209
7.66752
5.11696
4.27654
21.7919
22.1432
38.1379
34.8682
35.856
13.5349
19.45
18.2141
38.9468
8.5897
8.9012
9.02546
8.7434
8.96148
8.73797
5.5852
7.86094
5.46598
8.11537
7.14069
8.50324
8.60394
4.86541
6.1688
8.54723
7.64939
8.19378
8.17576
7.73182
6.74777
7.92175
6.81438
5.02508
6.37424
173.773
5.77428
5.01375
36.9801
5.08159
6.19645
5.77225
4.80726
3.10446
7.84414
4.86345
3.11443
7.9439
4.44569
4.14901
3.98572
3.60317
8.39903
4.31197
3.59765
8.49616
8.92661
5.56614
3.49456
3.01925
10.9057
4.22218
3.21037
11.1347
3.49272
3.57178
3.12401
3.05279
2.83195
2.50558
2.92104
2.42744
1.40454
1.69902
1.7286
1.37959
1.15303
0.891542
1.17789
0.870609
1.68956
2.11339
1.74773
2.04545
1.27041
0.941361
1.23344
0.97308
0.400602
0.658259
0.592192
0.374603
0.806657
1.05281
1.13397
0.755708
0.0757587
0.569921
0.0352959
0.0376276
0.0665341
0.120394
0.149297
0.0527137
0.68521
0.993335
0.953891
0.715128
0.428592
0.232448
0.270882
0.381383
0.252154
0.136531
0.139598
0.246738
0.421267
0.635054
0.619463
0.431721
0.047903
0.113898
0.0522969
0.104268
0.479335
0.677254
0.702806
0.462563
0.351087
0.223201
0.371531
0.208469
3.37638
3.42256
3.035
2.98556
2.524
2.07025
2.41759
2.16925
1.28979
1.64106
1.59981
1.32646
0.949935
0.761557
1.02269
0.698031
1.50749
1.73787
1.4293
1.82752
1.34667
1.03616
1.31854
1.05466
0.191512
0.381262
0.149341
0.238504
4.25569
0.104148
0.419695
0.368517
0.301147
0.476508
0.444267
0.326988
4.32524
0.155658
0.449038
0.431941
0.363351
0.503449
0.523764
0.347335
4.59295
0.24128
0.504925
0.137308
0.199062
0.134159
0.246352
0.509044
0.470289
0.187099
0.489301
0.226353
0.75638
0.12821
0.309791
0.123707
0.233935
0.717516
0.334825
0.546073
0.493908
0.377248
5.47842
0.301647
0.679817
0.697077
0.565582
0.77944
0.779836
0.572528
0.317566
0.555396
0.172133
0.232421
0.29529
0.18725
0.566921
0.637538
0.250945
0.600229
1.55119
1.50626
14.4354
3.52625
2.4418
3.86323
2.50249
1.74333
2.08941
0.90054
1.21476
2.04149
1.57172
1.43407
1.86161
0.826197
1.17728
1.90544
1.52758
0.478083
0.512622
0.626391
5.08223
0.569903
2.20522
2.08406
1.78456
1.89351
1.58807
1.46553
1.75133
1.32103
1.01718
1.11913
1.25059
0.900124
1.00563
0.905738
1.15478
0.765879
0.857815
1.20153
0.962726
1.07684
0.601242
0.46221
0.651512
0.42559
0.0834824
7.11104
0.0458548
0.0396188
0.464816
0.0969972
0.146649
0.23432
0.242458
0.141365
0.477792
0.182678
0.212384
0.292913
0.124357
0.362836
0.26926
0.5013
1.95447
0.138238
0.110036
0.367525
0.65064
0.530194
20.476
0.474158
0.162782
0.11639
0.167679
0.293737
0.271817
0.185059
0.702383
0.116469
0.195124
0.135527
0.582655
0.173319
2.06311
1.88915
1.60277
1.76929
1.65355
1.17695
1.42106
1.41674
0.785849
1.01098
0.997152
0.802547
1.00255
0.569467
0.759019
0.799509
0.98813
0.950866
0.740699
1.19619
0.472434
0.391804
0.312736
0.580235
2.30603
1.74657
1.4717
1.23287
1.39519
1.27666
0.688541
0.905742
0.305585
2.85458
0.445854
0.881173
0.641805
0.722523
0.981438
0.390782
0.447042
1.01925
0.643987
1243.5
72.6067
417.917
159.648
805.944
589.031
75.5696
84.6474
96.245
74.7628
320.161
18.42
14.8475
22.9055
38.7156
507.969
43.9855
258.438
607.032
152.476
38.8182
2.93961
3.66208
2.73918
4.73481
5.29776
5.32927
4.35554
5.42891
15.6523
19.5368
18.3588
11.1956
10.8682
26.2049
196.982
1050.78
74.0477
157.148
75.6254
74.2375
53.0813
473.298
513.338
11.0873
7.74227
80.575
22.2628
19.4859
44.8776
5.16471
35.1195
4.96508
4.16016
393.708
77.5833
36.6406
322.517
130.962
194.587
41.9966
30.2294
1049.55
34.8192
470.987
1090.53
85.3789
773.892
58.6301
42.3049
3.34901
3.84582
3.41152
4.02826
4.7734
3.22912
3.40773
3.2578
49.2269
1.27286
1.21206
6.38579
6.17149
1.17279
1.00241
0.968597
0.829142
12.8325
0.283777
0.145763
1.24902
4.45739
5.06261
5.35336
4.94391
5.50772
5.84088
6.12195
13.9778
7.1895
10.7946
0.214172
1.92402
0.181605
8.78357
7.2952
8.90084
8.42729
15.4925
30.5139
13.9136
9.35236
8.19115
40.0081
24.7013
7.32734
12.8391
7.93853
7.84909
8.085
8.37743
7.03463
8.49352
0.238755
2.12691
0.0754979
0.113032
0.119106
0.161038
0.172288
0.15744
0.209781
0.271018
2.95119
0.17553
0.257654
1.23194
0.160385
0.205248
0.221623
0.268404
0.294254
6.197
5.25929
6.43233
6.2653
4.89508
5.2795
5.64855
5.23287
5.14515
5.50391
5.87808
5.97839
1.9307
4.89033
5.19715
2.62615
4.96314
5.26211
5.40614
5.52242
5.29207
5.78568
5.55356
5.53079
1.24901
0.587229
4.08761
0.966923
0.64625
0.466982
3.02503
0.717044
38.5236
23.3484
4.98826
4.40431
2.54104
4.4531
2.14972
3.94899
0.418314
2.43548
0.703389
0.58999
6.47681
0.361839
2.14438
0.609248
0.779857
0.666003
0.518278
5.1492
1.45156
1.80413
6.21498
6.34397
6.19247
6.31352
0.20034
0.0617999
0.139495
0.0522531
0.224554
0.218873
0.0646373
0.187958
11.0748
0.218834
0.122311
9.12381
7.14677
8.98952
7.12639
6.71978
7.18445
7.49554
8.03684
5.78645
7.424
10.1937
5.69828
8.78532
82.0225
9.71876
8.13789
5.62058
6.63029
10.3981
8.76417
6.68614
6.60552
0.364205
0.0708907
0.340008
0.0875278
0.314004
0.0701998
0.253107
0.300364
0.0809809
0.277764
0.0919501
0.102705
0.680722
0.0991596
0.53691
0.596199
0.114098
1.07073
0.594381
0.599909
0.332316
0.422018
0.487485
0.206853
0.364081
0.58166
0.271065
0.684932
21.1932
19.0025
14.8113
5.33697
3.92754
7.69551
12.5969
5.22487
10.1862
0.455835
0.319779
0.270501
0.3859
1.49681
0.133475
0.833637
1.09636
1.58239
0.787122
8.82263
8.30754
5.12867
3.88686
3.55801
6.81008
4.2717
3.84067
8.89033
8.42857
6.95391
4.58047
4.03502
6.93502
4.55652
4.034
24.8114
14.705
11.1083
8.47626
28.6561
9.82478
11.5791
7.77157
14.3751
7.4193
8.46745
9.00047
6.7503
5.92352
8.35587
7.314
4.64014
8.42729
6.55561
11.9749
9.98462
0.309518
0.111155
0.129641
0.124261
0.0303122
0.03342
0.0350443
0.0385808
0.0383983
0.0366218
1.92951
0.134111
0.137166
0.144851
0.043032
0.0547004
0.0495098
0.0432169
0.041168
0.0441055
1.6046
0.0563881
0.105163
0.018076
0.0861679
0.0553892
0.384628
26.3439
0.545953
4.9653
0.182826
0.191758
0.0846606
0.016089
0.0771348
0.247692
0.0485547
0.0506436
3.46833
0.254757
0.193508
2.74111
0.191141
0.358862
0.0458544
0.0999585
0.0161187
0.109118
0.192697
0.0553383
0.0411201
0.146072
8.90831
0.0699527
0.184202
0.0283019
0.0305034
0.0277807
0.160657
0.0445662
0.105431
0.0190278
0.0130643
0.0346615
0.0220466
1.48407
11.1062
1.32004
1.58822
9.61575
11.0752
457.636
)
;
}
}
// ************************************************************************* //
| [
"brennankharris@gmail.com"
] | brennankharris@gmail.com | |
d9ca50d2cf181ea959d84e96100e28641e0124f5 | 28bbc168051237c97e810697c589b51c3d4b6836 | /DiegoCaripan/Semestre1-2017/UVA/12541.cpp | a302a46ef80d7c8e2d635df44f20f2026404a2fd | [] | no_license | fernandezeric/acmudec | 1ac14d916445a8c31d5914f2a99c33c7bb8af9b0 | 1042c759b1636b47fcf3c20fd8daeaa39338bbd1 | refs/heads/master | 2020-07-31T05:09:51.501552 | 2018-09-13T01:55:49 | 2018-09-13T01:55:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 872 | cpp | #include <stdio.h>
#include <iostream>
using namespace std;
int main() {
int n; //este problema es simple
while(scanf("%d", &n) == 1) {
int old = 0, young = 2147483647; //se crean los valores maximos que puede ser cada entero, porque luego los enteros son utilizados para comparar
string oa, ya, name;
int dd, mm, yy;
while(n--) {
cin >> name >> dd >> mm >> yy; //basicamente lo que hace es guardar el mayor y el menor de todos, y al final del input, imprime los que estan actualmente guardados
dd = dd+mm*100+yy*10000; //si se encuentra uno mas joven o viejo, se sobreescribe con la nueva informacion
if(dd > old) old = dd, oa = name;
if(dd < young) young = dd, ya = name;
}
cout << oa << endl;
cout << ya << endl;
}
return 0;
}
| [
"dcaripan@udec.cl"
] | dcaripan@udec.cl |
bee1e33be61b9b9a1f681931adc5749f090957b3 | 972e1f25b38856ee03ea966183bfa6e96d94e962 | /src/globals.h | 7975f05f8b8d8f94af7af161b4f25dfb5e0a0e7a | [
"Apache-2.0"
] | permissive | guoyu07/zan-thrift | 0b0d58778f8096a507e9eeee98c726d310c64e0c | d6125cab364cbe72913a9aa53fce2e5cc93232c8 | refs/heads/master | 2021-06-21T03:33:18.118605 | 2017-08-18T02:40:22 | 2017-08-18T02:40:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,284 | h | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
#ifndef T_GLOBALS_H
#define T_GLOBALS_H
#include <set>
#include <queue>
#include <stack>
#include <vector>
#include <string>
#ifndef ZAN
#define ZAN 1
#endif
/**
* This module contains all the global variables (slap on the wrist) that are
* shared throughout the program. The reason for this is to facilitate simple
* interaction between the parser and the rest of the program. Before calling
* yyparse(), the main.cc program will make necessary adjustments to these
* global variables such that the parser does the right thing and puts entries
* into the right containers, etc.
*
*/
/**
* Hooray for forward declaration of types!
*/
class t_program;
class t_scope;
class t_type;
/**
* Parsing mode, two passes up in this gin rummy!
*/
enum PARSE_MODE {
INCLUDES = 1,
PROGRAM = 2
};
/**
* Strictness level
*/
extern int g_strict;
/**
* The master program parse tree. This is accessed from within the parser code
* to build up the program elements.
*/
extern t_program* g_program;
/**
* Global types for the parser to be able to reference
*/
extern t_type* g_type_void;
extern t_type* g_type_string;
extern t_type* g_type_binary;
extern t_type* g_type_slist;
extern t_type* g_type_bool;
extern t_type* g_type_byte;
extern t_type* g_type_i16;
extern t_type* g_type_i32;
extern t_type* g_type_i64;
extern t_type* g_type_double;
/**
* The scope that we are currently parsing into
*/
extern t_scope* g_scope;
/**
* The parent scope to also load symbols into
*/
extern t_scope* g_parent_scope;
/**
* The prefix for the parent scope entries
*/
extern std::string g_parent_prefix;
/**
* The parsing pass that we are on. We do different things on each pass.
*/
extern PARSE_MODE g_parse_mode;
/**
* Global time string, used in formatting error messages etc.
*/
extern char* g_time_str;
/**
* The last parsed doctext comment.
*/
extern char* g_doctext;
/**
* The location of the last parsed doctext comment.
*/
extern int g_doctext_lineno;
/**
* Status of program level doctext candidate
*/
enum PROGDOCTEXT_STATUS {
INVALID = 0,
STILL_CANDIDATE = 1, // the text may or may not be the program doctext
ALREADY_PROCESSED = 2, // doctext has been used and is no longer available
ABSOLUTELY_SURE = 3, // this is the program doctext
NO_PROGRAM_DOCTEXT = 4 // there is no program doctext
};
/**
* The program level doctext. Stored seperately to make parsing easier.
*/
extern char* g_program_doctext_candidate;
extern int g_program_doctext_lineno;
extern PROGDOCTEXT_STATUS g_program_doctext_status;
/**
* Whether or not negative field keys are accepted.
*
* When a field does not have a user-specified key, thrift automatically
* assigns a negative value. However, this is fragile since changes to the
* file may unintentionally change the key numbering, resulting in a new
* protocol that is not backwards compatible.
*
* When g_allow_neg_field_keys is enabled, users can explicitly specify
* negative keys. This way they can write a .thrift file with explicitly
* specified keys that is still backwards compatible with older .thrift files
* that did not specify key values.
*/
extern int g_allow_neg_field_keys;
/**
* Whether or not 64-bit constants will generate a warning.
*
* Some languages don't support 64-bit constants, but many do, so we can
* suppress this warning for projects that don't use any non-64-bit-safe
* languages.
*/
extern int g_allow_64bit_consts;
#endif
| [
"david.dai@healthbok.com"
] | david.dai@healthbok.com |
0777e938dbec8d42a94c2e34f4787b41693d6217 | af9b093999a73245372003fb8c1ad6017be012a5 | /TrainingCamp-2019/Contest-02/EldeLosVidrios.cpp | 6e2d7abc5992e4578ce220455aab87edc783f13e | [] | no_license | Dariiio/competitiveProgramming | 5463657cb5df2d96771d622622a9b26ec7e9bfec | ffb7f429bdea6ff08d3fdded68ce5f0e1301f540 | refs/heads/master | 2021-06-12T15:22:54.441439 | 2020-05-26T04:56:48 | 2020-05-26T04:56:48 | 128,706,958 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 324 | cpp | #include <bits/stdc++.h>
#define forr(i,a,b) for(int i=(a); i<(b); i++)
#define forn(i,n) forr(i,0,n)
using namespace std;
typedef vector<int> vi;
typedef pair<int,int> ii;
#define fs first
#define sn second
#define pb push_back
int main()
{
set<int> s = {1,4,2,7,12,3};
for(auto a:s ) cout<<a<<" ";
return 0;
}
| [
"dariiodallara@gmail.com"
] | dariiodallara@gmail.com |
fdba071c60b50cf8f39febb8868f8eeebd730e15 | 470e1a6d53e822b6e685cafd55f62beab41dd1b5 | /python-generator-sources/support/istringbuffer.h | e43fefe1074059a16d7cdf7683ba5e7e6afb3c87 | [
"LicenseRef-scancode-unknown-license-reference",
"NCSA"
] | permissive | kevinxusz/clang-examples-on-qt | 5a67de824b2e17efe79368bb305bcf0e2b58e788 | 9ff7c998202429e07bdc1e6601d143d99e5f97e9 | refs/heads/master | 2021-01-18T07:24:38.858366 | 2013-03-02T07:17:57 | 2013-03-02T07:17:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 618 | h | /****************************************************************************
**
** This file is distributed under the University of Illinois Open Source
** License. See PYTHONAST_LICENSE.TXT for details.
**
****************************************************************************/
/// \file istringbuffer.h
/// \brief
#ifndef PYTHONAST_ISTRINGBUFFER_H
#define PYTHONAST_ISTRINGBUFFER_H
#include "cstring_p.h"
namespace PythonAST {
class IStringBuffer
{
public:
IStringBuffer();
virtual ~IStringBuffer();
const CString &string();
};
} // namespace PythonAST
#endif // PYTHONAST_ISTRINGBUFFER_H
| [
"sergey.shambir.auto@gmail.com"
] | sergey.shambir.auto@gmail.com |
84a0338d91f8628fb52ea48d251916314e27761e | 2dc550c0a42b8fb12f81a03e26ed8f142ed6f03a | /Just Code It. programming handbok/src/lcs.cpp | 7b25d3c6c2e35a90db6b1a2721fd5a43a716a675 | [] | no_license | EstebanFS/programming_seminar | 7e9d90afc0663652b1851ce782b9f94c182d3423 | 8178fc1957570bce0e21ff2d97862493b3d747dd | refs/heads/master | 2021-01-17T21:59:11.663177 | 2016-11-11T04:39:09 | 2016-11-11T04:39:09 | 45,880,658 | 1 | 0 | null | 2015-11-10T02:01:15 | 2015-11-10T02:01:14 | null | UTF-8 | C++ | false | false | 426 | cpp | const int MAXN = 1005;
int dp[MAXN][MAXN];
int
lcs(const string &s, const string &t) {
int n = s.size(), m = t.size();
for (int j = 0; j <= m; j++) dp[0][j] = 0;
for (int i = 0; i <= n; i++) dp[i][0] = 0;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
if (s[i-1] == t[j-1]) dp[i][j] = dp[i-1][j-1] + 1;
else dp[i][j] = max(dp[i-1][j], dp[i][j-1]);
}
}
return dp[n][m];
} | [
"savanegasg@gmail.com"
] | savanegasg@gmail.com |
8b2dfb18a0639ec5e18f51918dc6fb5b76cc535d | 1cf0bb7b84cc3db9f54ebaee0860ec3cb697a597 | /HW 1/Radix sort/main.cpp | 98e132f5446ec26f8e316970341ed3995c53e6c0 | [] | no_license | sirhappy/Algorithms-Data-structures-course | e3a546cb6eb3af446ad4c8c9a4d59db890dd1903 | eb6c4555daaa6ca5e0409a023385633a14e9f70a | refs/heads/master | 2021-05-21T04:13:18.136062 | 2019-06-13T16:09:18 | 2019-06-13T16:09:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,666 | cpp | #include "ReadWriter.h"
//iostream, fstream включены в ReadWriter.h
using namespace std;
union UN
{
unsigned int a;
unsigned char ch[4];
};
// Функция цифровой сортировки
void radixSort(int* numbers, int array_size)
{
int* c = new int[256];
int* b = new int[array_size];
UN un;
for (int j = 0; j < 4; ++j)
{
for (int i = 0; i < 256; ++i)
c[i]=0;
for (int i = 0; i < array_size; ++i)
{
un.a = static_cast<unsigned int>(numbers[i]);
c[un.ch[j]]++;
}
for (int i = 1; i < 256; ++i)
c[i] += c[i - 1];
for (int i = array_size-1; i >= 0; --i)
{
un.a = static_cast<unsigned int>(numbers[i]);
b[c[un.ch[j]]-1]=numbers[i];
c[un.ch[j]]=c[un.ch[j]]-1;
}
for (int i = 0; i < array_size; ++i)
numbers[i] = b[i];
}
}
//Не удалять и не изменять метод main без крайней необходимости.
//Необходимо добавить комментарии, если все же пришлось изменить метод main.
int main()
{
//Объект для работы с файлами
ReadWriter rw;
int* brr = nullptr;
int n;
//Ввод из файла
n = rw.readInt();
brr = new int[n];
rw.readArray(brr, n);
//Запуск сортировки, ответ в том же массиве (brr)
radixSort(brr, n);
//Запись в файл
rw.writeArray(brr, n);
//освобождаем память
delete[] brr;
return 0;
}
| [
"Alexander Yasinovskiy"
] | Alexander Yasinovskiy |
dfb8b825a7df622a86dac9f1923babef12ed2944 | 2f10f807d3307b83293a521da600c02623cdda82 | /deps/boost/win/debug/include/boost/log/sources/channel_feature.hpp | 68df431d4467676fbd985c60ecc185929657be44 | [] | no_license | xpierrohk/dpt-rp1-cpp | 2ca4e377628363c3e9d41f88c8cbccc0fc2f1a1e | 643d053983fce3e6b099e2d3c9ab8387d0ea5a75 | refs/heads/master | 2021-05-23T08:19:48.823198 | 2019-07-26T17:35:28 | 2019-07-26T17:35:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 129 | hpp | version https://git-lfs.github.com/spec/v1
oid sha256:ecc7f4dcd73669f844567bef8b3abff38a53c6baeef1527a3822818c2f2463e4
size 7508
| [
"YLiLarry@gmail.com"
] | YLiLarry@gmail.com |
819855edfab89616464b4f4c049b4e7df19e86bf | fb55429199b389f0975de3d3da99ebdedbe50980 | /7/字符数组的使用/main.cpp | cbf8e3ef287de2372e559181659d13d9b11637c0 | [] | no_license | xieyunchuan/Java-C_- | 55ce7a42e8acec7592d0fa5ae816d0b3dcc7b882 | 1e336daf46d36751f20d3a13fb766bad4eccd469 | refs/heads/master | 2023-02-11T16:39:36.605094 | 2021-01-14T12:29:16 | 2021-01-14T12:29:16 | 298,553,157 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 273 | cpp | #include<stdio.h>
main(){
char s[]={"ccxxccc"};
char c[]={'c',' ','p','r','o','g','r','a','m','\0'};//和上面的差异 就是我们需要手动结尾\0!
printf("%s",s);
printf("%s",c);
char st[1];
printf("input string:\n");
scanf("%s",st);
printf("%s\n",st);
} | [
"2765868257@qq.com"
] | 2765868257@qq.com |
7eff5d0c0c1303a69b8bb751dd7c7158d79b0fd2 | 3417f701c2b84776b300cb827604a94f286dd048 | /legacy-trunk/src/scopeclient/main.cpp | 79601c612c808d77332bf2843387e3269f759027 | [] | no_license | azonenberg-hk/antikernel | adbf2f69fb72e27aa0f007f117932441e7713bb0 | 914aff1f869f45c01b8e0eb9ecbf8cbd95025a15 | refs/heads/master | 2020-06-15T23:10:27.684786 | 2016-11-30T04:26:56 | 2016-11-30T04:26:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,765 | cpp | /***********************************************************************************************************************
* *
* ANTIKERNEL v0.1 *
* *
* Copyright (c) 2012-2016 Andrew D. Zonenberg *
* All rights reserved. *
* *
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the *
* following conditions are met: *
* *
* * Redistributions of source code must retain the above copyright notice, this list of conditions, and the *
* following disclaimer. *
* *
* * 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. *
* *
* * Neither the name of the author nor the names of any contributors may be used to endorse or promote products *
* derived from this software without specific prior written permission. *
* *
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS "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 AUTHORS BE HELD 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. *
* *
***********************************************************************************************************************/
/**
@file
@author Andrew D. Zonenberg
@brief Program entry point
*/
#include "scopeclient.h"
#include "MainWindow.h"
#include "ScopeConnectionDialog.h"
#include "../scopehal/NetworkedOscilloscope.h"
#include "../scopehal/RedTinLogicAnalyzer.h"
#include "../scopeprotocols/scopeprotocols.h"
using namespace std;
int main(int argc, char* argv[])
{
int exit_code = 0;
try
{
Gtk::Main kit(argc, argv);
//Global settings
unsigned short port = 0;
string server = "";
string api = "redtin";
bool scripted = false;
string scopename = "";
//Parse command-line arguments
for(int i=1; i<argc; i++)
{
string s(argv[i]);
if(s == "--help")
{
//not implemented
return 0;
}
else if(s == "--port")
port = atoi(argv[++i]);
else if(s == "--server")
server = argv[++i];
else if(s == "--api")
api = argv[++i];
else if(s == "--scripted")
scripted = true;
else if(s == "--scopename")
scopename = argv[++i];
else if(s == "--tty")
{
i++;
//throw away the argument silently, for compatibility with SlurmWrapper.php
}
else if(s == "--version")
{
//not implemented
//ShowVersion();
return 0;
}
else
{
printf("Unrecognized command-line argument \"%s\", use --help\n", s.c_str());
return 1;
}
}
//Initialize the protocol decoder library
ScopeProtocolStaticInit();
//Connect to the server
Oscilloscope* scope = NULL;
NameServer* namesrvr = NULL;
if(api == "scoped")
scope = new NetworkedOscilloscope(server, port);
else if(api == "redtin")
{
//Not scripting? Normal dialog process
if(!scripted)
{
ScopeConnectionDialog dlg(server, port);
if(Gtk::RESPONSE_OK != dlg.run())
return 0;
namesrvr = dlg.DetachNameServer();
scope = dlg.DetachScope();
}
else
{
RedTinLogicAnalyzer* la = new RedTinLogicAnalyzer(server, port);
namesrvr = new NameServer(&la->m_iface);
la->Connect(scopename);
scope = la;
}
}
else
{
printf("Unrecognized API \"%s\", use --help\n", api.c_str());
return 1;
}
//and run the app
MainWindow wnd(scope, server, port, namesrvr);
kit.run(wnd);
if(namesrvr)
delete namesrvr;
delete scope;
}
catch(const JtagException& ex)
{
printf("%s\n", ex.GetDescription().c_str());
exit_code = 1;
}
return exit_code;
}
| [
"azonenberg@drawersteak.com"
] | azonenberg@drawersteak.com |
d8e4c79848e3e3ca29d3d236471099f31b095ec5 | 96b4f3e9d90e12bf57c0895124326b6f242660b0 | /The ACE/The ACE/The ACE.cpp | 776eb30c14bac342ec22d29db2bc86a9eea38a2c | [] | no_license | SouthernGenius/The-ACE--Awesome-CWcheat-Editor- | 1283befaaa44381b112482f066a2dd1801b13c3d | 2384a7d5e28f85a1c1d719ce2c5117460bea2a8f | refs/heads/master | 2016-08-05T05:01:11.861143 | 2011-06-06T18:22:42 | 2011-06-06T18:22:42 | 1,855,696 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 421 | cpp | // The ACE.cpp : main project file.
#include "stdafx.h"
#include "MainForm.h"
using namespace TheACE;
[STAThreadAttribute]
int main(array<System::String ^> ^args)
{
// Enabling Windows XP visual effects before any controls are created
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
// Create the main window and run it
Application::Run(gcnew MainForm());
return 0;
}
| [
"johnnydeese@williams-foods.com"
] | johnnydeese@williams-foods.com |
d3fc18d2d080f7fe492e5f5f5dfe653223512b2d | 90c95fd7a5687b1095bf499892b8c9ba40f59533 | /libs/algorithm/test/all_of.cpp | 35c8eea52c8a5124129dd48baf14908dcc9f04eb | [
"BSL-1.0"
] | permissive | CreativeLabs0X3CF/Sprout | af60a938fd12e8439a831d4d538c4c48011ca54f | f08464943fbe2ac2030060e6ff20e4bb9782cd8e | refs/heads/master | 2021-01-20T17:03:24.630813 | 2016-08-15T04:44:46 | 2016-08-15T04:44:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,920 | cpp | /*=============================================================================
Copyright (c) 2011-2016 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under 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)
=============================================================================*/
#ifndef SPROUT_LIBS_ALGORITHM_TEST_ALL_OF_CPP
#define SPROUT_LIBS_ALGORITHM_TEST_ALL_OF_CPP
#include <sprout/algorithm/all_of.hpp>
#include <sprout/array.hpp>
#include <sprout/container.hpp>
#include <testspr/tools.hpp>
namespace testspr {
static void algorithm_all_of_test() {
using namespace sprout;
{
SPROUT_STATIC_CONSTEXPR auto arr1 = array<int, 10>{{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}};
{
SPROUT_STATIC_CONSTEXPR auto result = sprout::all_of(
sprout::begin(arr1),
sprout::end(arr1),
testspr::less_than<int>(11)
);
TESTSPR_BOTH_ASSERT(result);
}
{
SPROUT_STATIC_CONSTEXPR auto result = sprout::all_of(
sprout::begin(arr1),
sprout::end(arr1),
testspr::less_than<int>(6)
);
TESTSPR_BOTH_ASSERT(!result);
}
{
SPROUT_STATIC_CONSTEXPR auto result = sprout::all_of(
sprout::begin(arr1),
sprout::begin(arr1) + 5,
testspr::less_than<int>(11)
);
TESTSPR_BOTH_ASSERT(result);
}
{
SPROUT_STATIC_CONSTEXPR auto result = sprout::all_of(
sprout::begin(arr1),
sprout::begin(arr1) + 5,
testspr::less_than<int>(6)
);
TESTSPR_BOTH_ASSERT(result);
}
{
SPROUT_STATIC_CONSTEXPR auto result = sprout::all_of(
testspr::reduce_input(sprout::begin(arr1)),
testspr::reduce_input(sprout::end(arr1)),
testspr::less_than<int>(11)
);
TESTSPR_BOTH_ASSERT(result);
}
{
SPROUT_STATIC_CONSTEXPR auto result = sprout::all_of(
testspr::reduce_input(sprout::begin(arr1)),
testspr::reduce_input(sprout::end(arr1)),
testspr::less_than<int>(6)
);
TESTSPR_BOTH_ASSERT(!result);
}
{
SPROUT_STATIC_CONSTEXPR auto result = sprout::all_of(
testspr::reduce_input(sprout::begin(arr1)),
testspr::reduce_input(sprout::begin(arr1) + 5),
testspr::less_than<int>(11)
);
TESTSPR_BOTH_ASSERT(result);
}
{
SPROUT_STATIC_CONSTEXPR auto result = sprout::all_of(
testspr::reduce_input(sprout::begin(arr1)),
testspr::reduce_input(sprout::begin(arr1) + 5),
testspr::less_than<int>(6)
);
TESTSPR_BOTH_ASSERT(result);
}
{
SPROUT_STATIC_CONSTEXPR auto result = sprout::all_of(
testspr::reduce_random_access(sprout::begin(arr1)),
testspr::reduce_random_access(sprout::end(arr1)),
testspr::less_than<int>(11)
);
TESTSPR_BOTH_ASSERT(result);
}
{
SPROUT_STATIC_CONSTEXPR auto result = sprout::all_of(
testspr::reduce_random_access(sprout::begin(arr1)),
testspr::reduce_random_access(sprout::end(arr1)),
testspr::less_than<int>(6)
);
TESTSPR_BOTH_ASSERT(!result);
}
{
SPROUT_STATIC_CONSTEXPR auto result = sprout::all_of(
testspr::reduce_random_access(sprout::begin(arr1)),
testspr::reduce_random_access(sprout::begin(arr1) + 5),
testspr::less_than<int>(11)
);
TESTSPR_BOTH_ASSERT(result);
}
{
SPROUT_STATIC_CONSTEXPR auto result = sprout::all_of(
testspr::reduce_random_access(sprout::begin(arr1)),
testspr::reduce_random_access(sprout::begin(arr1) + 5),
testspr::less_than<int>(6)
);
TESTSPR_BOTH_ASSERT(result);
}
}
}
} // namespace testspr
#ifndef TESTSPR_CPP_INCLUDE
# define TESTSPR_TEST_FUNCTION testspr::algorithm_all_of_test
# include <testspr/include_main.hpp>
#endif
#endif // #ifndef SPROUT_LIBS_ALGORITHM_TEST_ALL_OF_CPP
| [
"bolero.murakami@gmail.com"
] | bolero.murakami@gmail.com |
186602182cc7a16df4c6f7d3a68257de6f2bcd29 | a2111a80faf35749d74a533e123d9da9da108214 | /raw/workshop13/workshop2013-data-20130926/trunk/.svn/pristine/18/186602182cc7a16df4c6f7d3a68257de6f2bcd29.svn-base | ac158c87da34f52d0bdf1ad34622e8e64ba730fc | [
"BSD-3-Clause",
"MIT"
] | permissive | bkahlert/seqan-research | f2c550d539f511825842a60f6b994c1f0a3934c2 | 21945be863855077eec7cbdb51c3450afcf560a3 | refs/heads/master | 2022-12-24T13:05:48.828734 | 2015-07-01T01:56:22 | 2015-07-01T01:56:22 | 21,610,669 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,730 | // ==========================================================================
// SeqAn - The Library for Sequence Analysis
// ==========================================================================
// Copyright (c) 2006-2013, Knut Reinert, FU Berlin
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * 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.
// * Neither the name of Knut Reinert or the FU Berlin nor the names of
// its contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// 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 KNUT REINERT OR THE FU BERLIN 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.
//
// ==========================================================================
#ifndef SEQAN_HEADER_MAP_BASE_H
#define SEQAN_HEADER_MAP_BASE_H
//////////////////////////////////////////////////////////////////////////////
namespace SEQAN_NAMESPACE_MAIN
{
// Manual Forwards
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc, typename TKey2>
inline typename Cargo< ::std::map<TKey,TCargo, TCompare, TAlloc> >::Type &
cargo(::std::map<TKey,TCargo, TCompare, TAlloc> & me, TKey2 const & _key);
//////////////////////////////////////////////////////////////////////////////
//insertion tags
template <typename TSpec = Default>
struct Skiplist;
/*!
* @class Map
* @headerfile <seqan/map.h>
* @brief Set/dictionary container.
*
* @signature template <typename TValue, typename TSpec>
* class Map;
*
* @tparam TSpec The specializing type. Default: @link Skiplist @endlink
* @tparam TValue Type of values that are stored in the map. Use a Pair<Key, Cargo> to implement a dictionary
* mapping from <tt>Key</tt> to <tt>Cargo</tt>.
*/
/**
.Class.Map:
..cat:Map
..summary:Set/dictionary container.
..signature:Map<TValue, TSpec >
..param.TValue:Type of values that are stored in the map.
...metafunction:Metafunction.Value
...remarks:Use a @Class.Pair.Pair<Key, Cargo>@ to implement a dictionary mapping from $Key$ to $Cargo$.
..param.TSpec:The specializing type.
...metafunction:Metafunction.Spec
...default:@Spec.Skiplist@
..include:seqan/map.h
*/
template <typename TElement, typename TSpec = Skiplist<> >
class Map;
//////////////////////////////////////////////////////////////////////////////
// In SeqAn sets and maps store elements as pairs of (key,cargo)
// the elements of sets without objects are the keys.
//////////////////////////////////////////////////////////////////////////////
/*moved to basic_aggregates.h
template <typename TKey, typename TObject, typename TSpec>
struct Key< Pair<TKey, TObject, TSpec> >
{
typedef TKey Type;
};
template <typename TKey, typename TCargo, typename TSpec>
struct Cargo< Pair<TKey, TCargo, TSpec> >
{
typedef TCargo Type;
};
*/
//////////////////////////////////////////////////////////////////////////////
// Type for mapValue function that implements [] for map types
template <typename TMap, typename TCargo>
struct MapValueImpl_
{
typedef TCargo & Type;
};
template <typename TMap>
struct MapValueImpl_<TMap, Nothing>
{
typedef bool Type;
};
/*!
* @mfn Map#MapValue
* @brief Type of the map value type.
*
* @signature MapValue<T>::Type
* @tparam T A map type. Types: Map
*
* @return Type the map value type.
*/
/**
.Metafunction.MapValue:
..cat:Map
..summary:Type of the map value type.
..signature:MapValue<T>::Type
..class:Class.Map
..param.T:A map type.
...type:Class.Map
..returns.param.Type:The type of the value of T.
..see:Metafunction.Cols
..include:seqan/map.h
*/
template <typename TMap>
struct MapValue :
MapValueImpl_< TMap, typename Cargo<TMap>::Type >
{
};
template <typename TCargo>
struct ImplMapValue_
{
template <typename TMap, typename TKey2>
static inline TCargo &
mapValue_(TMap & me,
TKey2 const & _key)
{
return cargo(me, _key);
}
};
template <>
struct ImplMapValue_<Nothing>
{
template <typename TMap, typename TKey2>
static inline bool
mapValue_(TMap & me,
TKey2 const & _key)
{
return hasKey(me, _key);
}
};
/*!
* @fn Map#mapValue
* @brief Subscript operator <tt>[ ]</tt> of maps.
*
* @signature TMapValue mapValue(map, key);
*
* @param map A map. Types: Map
* @param key A key.
*
* @return TMapValue If <tt>map</tt> is a set: The same as Map#hasKey. If <tt>map</tt> is a dictionary: The same as
* Map#value.
*
* @section Remarks
*
* Usually, Map#value implements the subscript operator <tt>[ ]</tt>, but for maps, this operator is implemented in
* <tt>mapValue</tt>. The semantic of this operator depends on the kind of map: If the map has a Cargo.cargo, than
* <tt>mapValue(map, key)</tt> returns the cargo of the (first) value in the map of the given key. If the map has no
* Cargo.cargo, than the function returns a <tt>true</tt>, if <tt>key</tt> is in <tt>map</tt>, or <tt>false</tt>
* otherwise.
*
* @section Remarks
*
* There is no way to create a set of Pair, since it is always interpreted as a key/value pair. If you need a key type
* that holds two members, define your own key type.
*
* You may overload Key and Cargo for your own value type in order to define, what part of your value type is used as
* key and what as cargo.
*/
/**
.Function.mapValue:
..cat:Map
..summary:Subscript operator $[ ]$ of maps.
..signature:MapValue mapValue(map, key)
..class:Class.Map
..param.map:A map.
...type:Class.Map
..param.key:A key.
...metafunction:Metafunction.Key
..returns:If $map$ is a set: The same as @Function.Map#hasKey@.
...text:If $map$ is a dictionary: The same as @Function.Map#value@.
...metafunction:Metafunction.MapValue
..remarks: Usually, @Function.Map#value@ implements the subscript operator $[ ]$, but for maps,
this operator is implemented in $mapValue$.
The semantic of this operator depends on the kind of map: If the map has a @Metafunction.Cargo.cargo@,
than $mapValue(map, key)$ returns the cargo of the (first) value in the map of the given key.
If the map has no @Metafunction.Cargo.cargo@, than the function returns a $true$, if $key$ is in $map$, or $false$ otherwise.
...note:There is no way to create a set of @Class.Pair@, since it is always interpreted as a key/value pair.
If you need a key type that holds two members, define your own key type.
..remarks:You may overload @Metafunction.Key@ and @Metafunction.Cargo@ for your own value type in order to define, what part of your value type is used as key and what as cargo.
..see:Function.Map#value
..see:Function.Map#cargo
..see:Function.Map#hasKey
..include:seqan/map.h
*/
template <typename TMap, typename TKey>
inline typename MapValue<TMap>::Type
mapValue(TMap & me,
TKey const & _key)
{
typedef typename Cargo<TMap>::Type TCargo;
return ImplMapValue_<TCargo>::mapValue_(me, _key);
}
//////////////////////////////////////////////////////////////////////////////
template <typename TElement>
inline TElement &
key(TElement & element)
{
return element;
}
template <typename TElement>
inline TElement const &
key(TElement const & element)
{
return element;
}
template <typename TKey, typename TObject, typename TSpec>
inline TKey &
key(Pair<TKey, TObject, TSpec> & element)
{
return element.i1;
}
template <typename TKey, typename TObject, typename TSpec>
inline TKey const &
key(Pair<TKey, TObject, TSpec> const & element)
{
return element.i1;
}
//////////////////////////////////////////////////////////////////////////////
template <typename TElement, typename TSource>
inline void
setKey(TElement & element,
TSource const & source)
{
element = source;
}
template <typename TKey, typename TObject, typename TSpec, typename TSource>
inline void
setKey(Pair<TKey, TObject, TSpec> & element,
TSource const & source)
{
element.i1 = source;
}
//////////////////////////////////////////////////////////////////////////////
//no default cargo function
template <typename TKey, typename TObject, typename TSpec>
inline TObject &
cargo(Pair<TKey, TObject, TSpec> & element)
{
return element.i2;
}
template <typename TKey, typename TObject, typename TSpec>
inline TObject const &
cargo(Pair<TKey, TObject, TSpec> const & element)
{
return element.i2;
}
//////////////////////////////////////////////////////////////////////////////
template <typename TKey, typename TObject, typename TSpec, typename TSource>
inline void
setCargo(Pair<TKey, TObject, TSpec> & element,
TSource const & source)
{
element.i2 = source;
}
//////////////////////////////////////////////////////////////////////////////
}
#endif
| [
"mail@bkahlert.com"
] | mail@bkahlert.com | |
59ba5bab4c496a4a0eba7c2239cf395d4457b194 | dc61ea4ccd68a64541978e7bff7b9a6b56440fb8 | /src/BackPack.cpp | f51839fac2ed73fe19c1a8f184e04cc902263b84 | [] | no_license | Glaz92/Shooter | b5277c2d75968e81e92b55fa41b94ef8a6adb9b8 | cb49b9c536b4f7ac85d9b57d505a6fa313b0f835 | refs/heads/master | 2022-11-17T15:03:24.588168 | 2020-06-28T18:35:46 | 2020-06-28T18:35:46 | 263,388,397 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,176 | cpp | #include "BackPack.h"
#include "Window.h"
#include <sstream>
#include <map>
#include <tuple>
BackPack::BackPack()
: pistolAmmo(24), pistolMag(12), shotgunAmmo(0), shotgunMag(8), uziAmmo(30), uziMag(30),
mgAmmo(0), mgMag(30), inHand(Weapon::Pistol), box(sf::Vector2f(230,120)),
position(20, sf::VideoMode::getDesktopMode().height - 140)
{
box.setFillColor(sf::Color(10, 10, 10, 140));
font.loadFromFile("data/font/CodenameCoderFree4F-Bold.ttf");
txt.setFont(font);
txtAmmo.setFont(font);
txt.setString("Pistol\n10/15");
boxS.setTexture(GetWindow().getBoxRT().getTexture());
life.setFont(font);
}
BackPack::~BackPack()
{
}
void BackPack::draw(int playerLife)
{
box.setPosition(GetWindow().getViewCenter().x - sf::VideoMode::getDesktopMode().width / 2 + position.x,
GetWindow().getViewCenter().y - sf::VideoMode::getDesktopMode().height / 2 + position.y);
txt.setPosition(box.getPosition().x + 35,
box.getPosition().y + 20);
boxS.setPosition(GetWindow().getViewCenter().x + sf::VideoMode::getDesktopMode().width / 2 - position.x - 240,
GetWindow().getViewCenter().y - sf::VideoMode::getDesktopMode().height / 2 + position.y + 30);
life.setPosition(boxS.getPosition().x + 20,
boxS.getPosition().y + 25);
txt.setString(getWeaponInfoString());
std::ostringstream ss;
ss.str("");
ss << " " << playerLife / 2;
life.setString(ss.str());
GetWindow().draw(&box);
GetWindow().draw(&txt);
GetWindow().draw(&boxS);
GetWindow().draw(&life);
ss.str("");
// ss << SCORE;
txt.setString(ss.str());
txt.setPosition(GetWindow().getViewCenter().x, GetWindow().getViewCenter().y - GetWindow().getSize().y / 2);
GetWindow().draw(&txt);
}
std::string BackPack::getWeaponInfoString()
{
std::ostringstream ss;
using ammoInformation = std::tuple<std::string, int, int>;
std::map<Weapon, ammoInformation> ammunictionMap { { Weapon::Pistol, { "Pistol", pistolMag, pistolAmmo } },
{ Weapon::Shotgun, { "Shotgun", shotgunMag, shotgunAmmo } },
{ Weapon::Uzi, { "Uzi", uziMag, uziAmmo } },
{ Weapon::MG, { "MG", mgMag, mgAmmo } } };
ss << std::get<0>(ammunictionMap[inHand]) << std::endl
<< std::get<1>(ammunictionMap[inHand]) << "/"
<< std::get<2>(ammunictionMap[inHand]);
return ss.str();
}
bool BackPack::shot()
{
std::map<Weapon, int*> magMap { { Weapon::Pistol, &pistolMag },
{ Weapon::Shotgun, &shotgunMag },
{ Weapon::Uzi, &uziMag },
{ Weapon::MG, &mgMag } };
if(*magMap[inHand] > 0)
{
(*magMap[inHand])--;
return true;
}
return false;
}
int BackPack::reload()
{
std::map<Weapon, int> maxBulletsInMag { { Weapon::Pistol, 12 },
{ Weapon::Shotgun, 8 },
{ Weapon::Uzi,30 },
{ Weapon::MG, 30 } };
std::map<Weapon, int*> magMap { { Weapon::Pistol, &pistolMag },
{ Weapon::Shotgun, &shotgunMag },
{ Weapon::Uzi, &uziMag },
{ Weapon::MG, &mgMag } };
std::map<Weapon, int*> ammoMap { { Weapon::Pistol, &pistolAmmo },
{ Weapon::Shotgun, &shotgunAmmo },
{ Weapon::Uzi, &uziAmmo },
{ Weapon::MG, &mgAmmo } };
if(*magMap[inHand] == maxBulletsInMag[inHand])
{
return 0;
}
else
{
if(*ammoMap[inHand] - (maxBulletsInMag[inHand] - *magMap[inHand]) >= 0)
{
*ammoMap[inHand] += *magMap[inHand] - maxBulletsInMag[inHand];
*magMap[inHand] = maxBulletsInMag[inHand];
}
else if(*ammoMap[inHand] == 0)
{
return 0;
}
else
{
*magMap[inHand] += *ammoMap[inHand];
*ammoMap[inHand] = 0;
}
return 120;
}
return 0;
}
void BackPack::setWeapon(Weapon weapon)
{
inHand = weapon;
}
void BackPack::nextWeapon()
{
std::map<Weapon, Weapon> nextWeapon { { Weapon::Pistol, Weapon::Shotgun },
{ Weapon::Shotgun, Weapon::Uzi },
{ Weapon::Uzi, Weapon::MG },
{ Weapon::MG, Weapon::Pistol } };
inHand = nextWeapon[inHand];
}
void BackPack::prevWeapon()
{
std::map<Weapon, Weapon> nextWeapon { { Weapon::Pistol, Weapon::MG },
{ Weapon::Shotgun, Weapon::Pistol },
{ Weapon::Uzi, Weapon::Shotgun },
{ Weapon::MG, Weapon::Uzi } };
inHand = nextWeapon[inHand];
} | [
"epglaz@gmail.com"
] | epglaz@gmail.com |
d8e4a24b5178c90ffa7596ed2d9167f739e7305a | cd5c46fd5023ae7c07210bdd4eeec8ce05284e83 | /src/config_lua.cc | 5354c7f3cf975c32c3d389b0f51910ef8e58a104 | [] | no_license | jugglerchris/lumail2 | f6640234b52a37a46b8cbcbb6a2a5ba2bcdab045 | 20e900a8460282d63e58cac3fccae88d086dffeb | refs/heads/master | 2021-01-17T09:35:59.632270 | 2015-12-23T22:43:55 | 2015-12-23T22:43:55 | 45,279,047 | 1 | 0 | null | 2015-10-30T22:08:08 | 2015-10-30T22:08:06 | C++ | UTF-8 | C++ | false | false | 4,314 | cc | /*
* config_lua.cc - Export our configuration-object to Lua.
*
* This file is part of lumail - http://lumail.org/
*
* Copyright (c) 2015 by Steve Kemp. All rights reserved.
*
**
*
* 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; version 2 dated June, 1991, or (at your
* option) any later version.
*
* On Debian GNU/Linux systems, the complete text of version 2 of the GNU
* General Public License can be found in `/usr/share/common-licenses/GPL-2'
*/
extern "C"
{
#include <lua.h>
#include <lauxlib.h>
#include <lualib.h>
}
#include "config.h"
/**
* @file config_lua.cc
*
* This file implements the trivial exporting of our CConfig class,
* implemented in C++, to Lua. Lua-usage looks something like this:
*
*<code>
* -- Set the outgoing email address<br/>
* Config:set( "global.from", "Steve Kemp <steve@example.com>" )
*</code>
*
*/
/**
* Implementation of `Config:get`
*/
int l_Config_get(lua_State * l)
{
/*
* The key to get.
*/
const char *name = luaL_checkstring(l, 2);
/*
* Get the entry - and test it has a value.
*/
CConfig *foo = CConfig::instance();
CConfigEntry *x = foo->get(name);
if (x == NULL)
{
lua_pushnil(l);
return 1;
}
/*
* Does this configuration value hold a string?
*/
if (x->type == CONFIG_STRING)
{
lua_pushstring(l, x->value.str->c_str());
return 1;
}
else if (x->type == CONFIG_INTEGER)
{
/*
* Does this configuration value hold an integer?
*/
lua_pushnumber(l, *x->value.value);
return 1;
}
else if (x->type == CONFIG_ARRAY)
{
/*
* Does this configuration value hold an array (read: table)?
*/
lua_newtable(l);
int i = 1;
for (auto it = x->value.array->begin(); it != x->value.array->end();
++it)
{
std::string value = (*it);
lua_pushinteger(l, i);
lua_pushstring(l, value.c_str());
lua_settable(l, -3);
i += 1;
}
return 1;
}
else
{
throw ("Invalid get-type");
return 0;
}
}
/**
* Implementation of `Config:keys`
*/
int l_Config_keys(lua_State * l)
{
/*
* Get the keys.
*/
CConfig *foo = CConfig::instance();
std::vector < std::string > keys = foo->keys();
lua_newtable(l);
int i = 1;
for (auto it = keys.begin(); it != keys.end(); ++it)
{
std::string name = (*it);
lua_pushinteger(l, i);
lua_pushstring(l, name.c_str());
lua_settable(l, -3);
i += 1;
}
return 1;
}
/**
* Implementation of `Config:set`
*/
int l_Config_set(lua_State * l)
{
/*
* Get the key to set, and the helper.
*/
CConfig *foo = CConfig::instance();
const char *name = luaL_checkstring(l, 2);
if (lua_istable(l, 3))
{
std::vector < std::string > vals;
lua_pushnil(l);
while (lua_next(l, -2))
{
const char *entry = lua_tostring(l, -1);
vals.push_back(entry);
lua_pop(l, 1);
}
foo->set(name, vals);
}
else if (lua_isnumber(l, 3))
{
int value = luaL_checkinteger(l, 3);
foo->set(name, value);
}
else if (lua_isstring(l, 3))
{
const char *value = luaL_checkstring(l, 3);
foo->set(name, value);
}
else
{
throw ("Invalid set-type");
}
return 0;
}
/**
* Register the global `Config` object to the Lua environment, and
* setup our public methods upon which the user may operate.
*/
void InitConfig(lua_State * l)
{
luaL_Reg sFooRegs[] =
{
{"get", l_Config_get},
{"keys", l_Config_keys},
{"set", l_Config_set},
{NULL, NULL}
};
luaL_newmetatable(l, "luaL_CConfig");
#if LUA_VERSION_NUM == 501
luaL_register(l, NULL, sFooRegs);
#elif LUA_VERSION_NUM == 502
luaL_setfuncs(l, sFooRegs, 0);
#else
#error unsupported Lua version
#endif
lua_pushvalue(l, -1);
lua_setfield(l, -1, "__index");
lua_setglobal(l, "Config");
}
| [
"steve@steve.org.uk"
] | steve@steve.org.uk |
4f966ad2cacc818cdf74e92811c821a1e868cea8 | 7f98f218e3eb50c7020c49bfe15d9dbb6bd70d0b | /ch10/ex10_27.cpp | 237ef51b2e8922af40121fb189bd7dfb448c69c6 | [] | no_license | MonstarCoder/MyCppPrimer | 1917494855b01dbe12a343d4c3e08752f291c0e9 | 3399701bb90c45bc0ee0dc843a4e0b93e20d898a | refs/heads/master | 2021-01-18T10:16:37.501209 | 2017-11-09T13:44:36 | 2017-11-09T13:44:36 | 84,318,673 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 285 | cpp | #include<iostream>
#include<vector>
#include<list>
#include<algorithm>
using namespace std;
int main()
{
vector<int> vec{1, 1, 2, 2, 3, 3};
list<int> lst;
unique_copy(vec.cbegin(), vec.cend(), back_inserter(lst));
for (auto i : lst) cout << i << " "; cout << endl;
return 0;
}
| [
"652141046@qq.com"
] | 652141046@qq.com |
9879b56ea60860ded38f351c5831e9ddf4f3fdd5 | 81080d03310881ec497af7db96c8c67ac5f3a70d | /algorithms/16. 3Sum Closest/main.cpp | 467dfb41547dd7d8da41099c0356e3387e2b42b1 | [] | no_license | pz325/leetcode | 230619b525b2cea003d581598243cd6cd4603b27 | bcfa296100660ce48d58f8de8618a9157d854209 | refs/heads/master | 2021-09-07T23:53:12.341653 | 2018-03-03T17:45:53 | 2018-03-03T17:45:53 | 111,305,372 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,914 | cpp | /*
Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. You may assume that each input would have exactly one solution.
For example, given array S = {-1 2 1 -4}, and target = 1.
The sum that is closest to the target is 2. (-1 + 2 + 1 = 2).
*/
#include <vector>
#include <iostream>
#include <algorithm>
void printV(const std::vector<int> &v)
{
for (auto i : v)
{
std::cout << i << " ";
}
std::cout << std::endl;
}
class Solution
{
public:
int threeSumClosest(std::vector<int> &nums, int target)
{
std::sort(std::begin(nums), std::end(nums));
int ret = 0;
int minDiff = INT_MAX;
for (auto i = std::begin(nums); i < std::end(nums);)
{
const int valueAtI = *i;
auto j = i + 1;
auto k = std::end(nums) - 1;
int valueAtJ = *j;
int valueAtK = *k;
int sum = valueAtI + valueAtJ + valueAtK;
while (j < k)
{
const int diff = abs(sum - target);
printV({valueAtI, valueAtJ, valueAtK, sum, target, diff});
if (diff < minDiff)
{
ret = sum;
minDiff = diff;
std::cout << "find new min diff at ";
printV({valueAtI, valueAtJ, valueAtK, sum, target, diff});
}
if (minDiff == 0)
{
return ret;
}
if ((target - sum) > 0)
{
std::cout << "increase j" << std::endl;
++j;
// skip repeated 2nd integer
while (j < k && *j == valueAtJ)
{
std::cout << "increase j" << std::endl;
++j;
}
}
else
{
std::cout << "decrease k" << std::endl;
--k;
// skip repeated 3rd integer
while (j < k && *k == valueAtK)
{
std::cout << "decrease k" << std::endl;
--k;
}
}
valueAtJ = *j;
valueAtK = *k;
sum = valueAtI + valueAtJ + valueAtK;
}
++i;
// skip repeated 1st integer
while (i != std::end(nums) && *i == valueAtI)
{
++i;
}
}
return ret;
}
};
int main()
{
std::vector<int> s{1, 2, 4, 8, 16, 32, 64, 128};
const int target = 82;
Solution solution;
const int ret = solution.threeSumClosest(s, target);
std::cout << ret << std::endl;
}
| [
"sg71.cherub@gmail.com"
] | sg71.cherub@gmail.com |
e11a36841a8507cc212d327ca9aa8a0bb15e6892 | a26aa08a21c299f0a5725b0c46f0321a88d2593d | /GRender/GRender/Render/Core/Image.cpp | b5ba73eb50f58c400930fd1e69201edede4fee94 | [] | no_license | GavinZL/GRender | 387c856ffa20cfd076111385740284574b8bbfa3 | 46b84801e867c446e3b8b6b7be235bc6d2f82380 | refs/heads/master | 2021-08-29T23:30:49.341942 | 2017-12-15T08:51:50 | 2017-12-15T08:51:50 | 113,120,953 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 81,984 | cpp | /****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2013-2014 Chukong Technologies Inc.
http://www.cocos2d-x.org
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.
****************************************************************************/
#include "Image.h"
#include <string>
#include <ctype.h>
#include <cstdint>
#include "../Comm/Utils.h"
//#include "base/CCData.h"
//#include "base/ccConfig.h" // CC_USE_JPEG, CC_USE_TIFF, CC_USE_WEBP
extern "C"
{
// To resolve link error when building 32bits with Xcode 6.
// More information please refer to the discussion in https://github.com/cocos2d/cocos2d-x/pull/6986
#if defined (__unix) || (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
#ifndef __ENABLE_COMPATIBILITY_WITH_UNIX_2003__
#define __ENABLE_COMPATIBILITY_WITH_UNIX_2003__
#include <stdio.h>
FILE *fopen$UNIX2003( const char *filename, const char *mode )
{
return fopen(filename, mode);
}
size_t fwrite$UNIX2003( const void *a, size_t b, size_t c, FILE *d )
{
return fwrite(a, b, c, d);
}
char *strerror$UNIX2003( int errnum )
{
return strerror(errnum);
}
#endif
#endif
#include "png.h"
#define CC_USE_JPEG 1
#define CC_USE_TIFF 1
#if CC_USE_TIFF
#include "tiffio.h"
#endif //CC_USE_TIFF
//#include "../base/etc1.h"
#if CC_USE_JPEG
#include "jpeglib.h"
#endif // CC_USE_JPEG
}
//#include "../base/s3tc.h"
//#include "../base/atitc.h"
//#include "../base/pvr.h"
//#include "../base/TGAlib.h"
//#if (CC_TARGET_PLATFORM != CC_PLATFORM_WP8) && (CC_TARGET_PLATFORM != CC_PLATFORM_WINRT)
//#if CC_USE_WEBP
//#include "decode.h"
//#endif // CC_USE_WEBP
//#endif
//#include "base/ccMacros.h"
//#include "CCCommon.h"
//#include "CCStdC.h"
//#include "CCFileUtils.h"
//#include "base/CCConfiguration.h"
//#include "base/ccUtils.h"
//#include "base/ZipUtils.h"
//#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
//#include "android/CCFileUtils-android.h"
//#endif
#define CC_GL_ATC_RGB_AMD 0x8C92
#define CC_GL_ATC_RGBA_EXPLICIT_ALPHA_AMD 0x8C93
#define CC_GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD 0x87EE
USING_NAMESPACE_G
//////////////////////////////////////////////////////////////////////////
//struct and data for pvr structure
namespace
{
static const int PVR_TEXTURE_FLAG_TYPE_MASK = 0xff;
static bool _PVRHaveAlphaPremultiplied = false;
// Values taken from PVRTexture.h from http://www.imgtec.com
enum class PVR2TextureFlag
{
Mipmap = (1<<8), // has mip map levels
Twiddle = (1<<9), // is twiddled
Bumpmap = (1<<10), // has normals encoded for a bump map
Tiling = (1<<11), // is bordered for tiled pvr
Cubemap = (1<<12), // is a cubemap/skybox
FalseMipCol = (1<<13), // are there false colored MIP levels
Volume = (1<<14), // is this a volume texture
Alpha = (1<<15), // v2.1 is there transparency info in the texture
VerticalFlip = (1<<16), // v2.1 is the texture vertically flipped
};
enum class PVR3TextureFlag
{
PremultipliedAlpha = (1<<1) // has premultiplied alpha
};
static const char gPVRTexIdentifier[5] = "PVR!";
// v2
enum class PVR2TexturePixelFormat : unsigned char
{
RGBA4444 = 0x10,
RGBA5551,
RGBA8888,
RGB565,
RGB555, // unsupported
RGB888,
I8,
AI88,
PVRTC2BPP_RGBA,
PVRTC4BPP_RGBA,
BGRA8888,
A8,
};
// v3
enum class PVR3TexturePixelFormat : uint64_t
{
PVRTC2BPP_RGB = 0ULL,
PVRTC2BPP_RGBA = 1ULL,
PVRTC4BPP_RGB = 2ULL,
PVRTC4BPP_RGBA = 3ULL,
PVRTC2_2BPP_RGBA = 4ULL,
PVRTC2_4BPP_RGBA = 5ULL,
ETC1 = 6ULL,
DXT1 = 7ULL,
DXT2 = 8ULL,
DXT3 = 9ULL,
DXT4 = 10ULL,
DXT5 = 11ULL,
BC1 = 7ULL,
BC2 = 9ULL,
BC3 = 11ULL,
BC4 = 12ULL,
BC5 = 13ULL,
BC6 = 14ULL,
BC7 = 15ULL,
UYVY = 16ULL,
YUY2 = 17ULL,
BW1bpp = 18ULL,
R9G9B9E5 = 19ULL,
RGBG8888 = 20ULL,
GRGB8888 = 21ULL,
ETC2_RGB = 22ULL,
ETC2_RGBA = 23ULL,
ETC2_RGBA1 = 24ULL,
EAC_R11_Unsigned = 25ULL,
EAC_R11_Signed = 26ULL,
EAC_RG11_Unsigned = 27ULL,
EAC_RG11_Signed = 28ULL,
BGRA8888 = 0x0808080861726762ULL,
RGBA8888 = 0x0808080861626772ULL,
RGBA4444 = 0x0404040461626772ULL,
RGBA5551 = 0x0105050561626772ULL,
RGB565 = 0x0005060500626772ULL,
RGB888 = 0x0008080800626772ULL,
A8 = 0x0000000800000061ULL,
L8 = 0x000000080000006cULL,
LA88 = 0x000008080000616cULL,
};
// v2
typedef const std::map<PVR2TexturePixelFormat, Texture2D::PixelFormat> _pixel2_formathash;
static const _pixel2_formathash::value_type v2_pixel_formathash_value[] =
{
_pixel2_formathash::value_type(PVR2TexturePixelFormat::BGRA8888, Texture2D::PixelFormat::BGRA8888),
_pixel2_formathash::value_type(PVR2TexturePixelFormat::RGBA8888, Texture2D::PixelFormat::RGBA8888),
_pixel2_formathash::value_type(PVR2TexturePixelFormat::RGBA4444, Texture2D::PixelFormat::RGBA4444),
_pixel2_formathash::value_type(PVR2TexturePixelFormat::RGBA5551, Texture2D::PixelFormat::RGB5A1),
_pixel2_formathash::value_type(PVR2TexturePixelFormat::RGB565, Texture2D::PixelFormat::RGB565),
_pixel2_formathash::value_type(PVR2TexturePixelFormat::RGB888, Texture2D::PixelFormat::RGB888),
_pixel2_formathash::value_type(PVR2TexturePixelFormat::A8, Texture2D::PixelFormat::A8),
_pixel2_formathash::value_type(PVR2TexturePixelFormat::I8, Texture2D::PixelFormat::I8),
_pixel2_formathash::value_type(PVR2TexturePixelFormat::AI88, Texture2D::PixelFormat::AI88),
_pixel2_formathash::value_type(PVR2TexturePixelFormat::PVRTC2BPP_RGBA, Texture2D::PixelFormat::PVRTC2A),
_pixel2_formathash::value_type(PVR2TexturePixelFormat::PVRTC4BPP_RGBA, Texture2D::PixelFormat::PVRTC4A),
};
static const int PVR2_MAX_TABLE_ELEMENTS = sizeof(v2_pixel_formathash_value) / sizeof(v2_pixel_formathash_value[0]);
static const _pixel2_formathash v2_pixel_formathash(v2_pixel_formathash_value, v2_pixel_formathash_value + PVR2_MAX_TABLE_ELEMENTS);
// v3
typedef const std::map<PVR3TexturePixelFormat, Texture2D::PixelFormat> _pixel3_formathash;
static _pixel3_formathash::value_type v3_pixel_formathash_value[] =
{
_pixel3_formathash::value_type(PVR3TexturePixelFormat::BGRA8888, Texture2D::PixelFormat::BGRA8888),
_pixel3_formathash::value_type(PVR3TexturePixelFormat::RGBA8888, Texture2D::PixelFormat::RGBA8888),
_pixel3_formathash::value_type(PVR3TexturePixelFormat::RGBA4444, Texture2D::PixelFormat::RGBA4444),
_pixel3_formathash::value_type(PVR3TexturePixelFormat::RGBA5551, Texture2D::PixelFormat::RGB5A1),
_pixel3_formathash::value_type(PVR3TexturePixelFormat::RGB565, Texture2D::PixelFormat::RGB565),
_pixel3_formathash::value_type(PVR3TexturePixelFormat::RGB888, Texture2D::PixelFormat::RGB888),
_pixel3_formathash::value_type(PVR3TexturePixelFormat::A8, Texture2D::PixelFormat::A8),
_pixel3_formathash::value_type(PVR3TexturePixelFormat::L8, Texture2D::PixelFormat::I8),
_pixel3_formathash::value_type(PVR3TexturePixelFormat::LA88, Texture2D::PixelFormat::AI88),
_pixel3_formathash::value_type(PVR3TexturePixelFormat::PVRTC2BPP_RGB, Texture2D::PixelFormat::PVRTC2),
_pixel3_formathash::value_type(PVR3TexturePixelFormat::PVRTC2BPP_RGBA, Texture2D::PixelFormat::PVRTC2A),
_pixel3_formathash::value_type(PVR3TexturePixelFormat::PVRTC4BPP_RGB, Texture2D::PixelFormat::PVRTC4),
_pixel3_formathash::value_type(PVR3TexturePixelFormat::PVRTC4BPP_RGBA, Texture2D::PixelFormat::PVRTC4A),
_pixel3_formathash::value_type(PVR3TexturePixelFormat::ETC1, Texture2D::PixelFormat::ETC),
};
static const int PVR3_MAX_TABLE_ELEMENTS = sizeof(v3_pixel_formathash_value) / sizeof(v3_pixel_formathash_value[0]);
static const _pixel3_formathash v3_pixel_formathash(v3_pixel_formathash_value, v3_pixel_formathash_value + PVR3_MAX_TABLE_ELEMENTS);
typedef struct _PVRTexHeader
{
unsigned int headerLength;
unsigned int height;
unsigned int width;
unsigned int numMipmaps;
unsigned int flags;
unsigned int dataLength;
unsigned int bpp;
unsigned int bitmaskRed;
unsigned int bitmaskGreen;
unsigned int bitmaskBlue;
unsigned int bitmaskAlpha;
unsigned int pvrTag;
unsigned int numSurfs;
} PVRv2TexHeader;
#ifdef _MSC_VER
#pragma pack(push,1)
#endif
typedef struct
{
uint32_t version;
uint32_t flags;
uint64_t pixelFormat;
uint32_t colorSpace;
uint32_t channelType;
uint32_t height;
uint32_t width;
uint32_t depth;
uint32_t numberOfSurfaces;
uint32_t numberOfFaces;
uint32_t numberOfMipmaps;
uint32_t metadataLength;
#ifdef _MSC_VER
} PVRv3TexHeader;
#pragma pack(pop)
#else
} __attribute__((packed)) PVRv3TexHeader;
#endif
}
//pvr structure end
//////////////////////////////////////////////////////////////////////////
//struct and data for s3tc(dds) struct
namespace
{
struct DDColorKey
{
uint32_t colorSpaceLowValue;
uint32_t colorSpaceHighValue;
};
struct DDSCaps
{
uint32_t caps;
uint32_t caps2;
uint32_t caps3;
uint32_t caps4;
};
struct DDPixelFormat
{
uint32_t size;
uint32_t flags;
uint32_t fourCC;
uint32_t RGBBitCount;
uint32_t RBitMask;
uint32_t GBitMask;
uint32_t BBitMask;
uint32_t ABitMask;
};
struct DDSURFACEDESC2
{
uint32_t size;
uint32_t flags;
uint32_t height;
uint32_t width;
union
{
uint32_t pitch;
uint32_t linearSize;
} DUMMYUNIONNAMEN1;
union
{
uint32_t backBufferCount;
uint32_t depth;
} DUMMYUNIONNAMEN5;
union
{
uint32_t mipMapCount;
uint32_t refreshRate;
uint32_t srcVBHandle;
} DUMMYUNIONNAMEN2;
uint32_t alphaBitDepth;
uint32_t reserved;
uint32_t surface;
union
{
DDColorKey ddckCKDestOverlay;
uint32_t emptyFaceColor;
} DUMMYUNIONNAMEN3;
DDColorKey ddckCKDestBlt;
DDColorKey ddckCKSrcOverlay;
DDColorKey ddckCKSrcBlt;
union
{
DDPixelFormat ddpfPixelFormat;
uint32_t FVF;
} DUMMYUNIONNAMEN4;
DDSCaps ddsCaps;
uint32_t textureStage;
} ;
#pragma pack(push,1)
struct S3TCTexHeader
{
char fileCode[4];
DDSURFACEDESC2 ddsd;
};
#pragma pack(pop)
}
//s3tc struct end
//////////////////////////////////////////////////////////////////////////
//struct and data for atitc(ktx) struct
namespace
{
struct ATITCTexHeader
{
//HEADER
char identifier[12];
uint32_t endianness;
uint32_t glType;
uint32_t glTypeSize;
uint32_t glFormat;
uint32_t glInternalFormat;
uint32_t glBaseInternalFormat;
uint32_t pixelWidth;
uint32_t pixelHeight;
uint32_t pixelDepth;
uint32_t numberOfArrayElements;
uint32_t numberOfFaces;
uint32_t numberOfMipmapLevels;
uint32_t bytesOfKeyValueData;
};
}
//atittc struct end
//////////////////////////////////////////////////////////////////////////
namespace
{
typedef struct
{
const unsigned char * data;
ssize_t size;
int offset;
}tImageSource;
static void pngReadCallback(png_structp png_ptr, png_bytep data, png_size_t length)
{
tImageSource* isource = (tImageSource*)png_get_io_ptr(png_ptr);
if((int)(isource->offset + length) <= isource->size)
{
memcpy(data, isource->data+isource->offset, length);
isource->offset += length;
}
else
{
png_error(png_ptr, "pngReaderCallback failed");
}
}
}
Texture2D::PixelFormat getDevicePixelFormat(Texture2D::PixelFormat format)
{
switch (format) {
case Texture2D::PixelFormat::PVRTC4:
case Texture2D::PixelFormat::PVRTC4A:
case Texture2D::PixelFormat::PVRTC2:
case Texture2D::PixelFormat::PVRTC2A:
//if(Configuration::getInstance()->supportsPVRTC())
if (false)
return format;
else
return Texture2D::PixelFormat::RGBA8888;
case Texture2D::PixelFormat::ETC:
//if(Configuration::getInstance()->supportsETC())
if (false)
return format;
else
return Texture2D::PixelFormat::RGB888;
default:
return format;
}
}
//////////////////////////////////////////////////////////////////////////
// Implement Image
//////////////////////////////////////////////////////////////////////////
Image::Image()
: _data(nullptr)
, _dataLen(0)
, _width(0)
, _height(0)
, _unpack(false)
, _fileType(Format::UNKOWN)
, _renderFormat(Texture2D::PixelFormat::NONE)
, _numberOfMipmaps(0)
, _hasPremultipliedAlpha(true)
{
}
Image::~Image()
{
if (_unpack)
{
for (int i = 0; i < _numberOfMipmaps; ++i)
delete _mipmaps[i].address;
//CC_SAFE_DELETE_ARRAY(_mipmaps[i].address);
}
else
delete _data;
//CC_SAFE_FREE(_data);
}
unsigned char* Image::readDataFromFile(const std::string& file, unsigned int& len)
{
unsigned char* buffer = nullptr;
size_t size = 0;
size_t readsize;
FILE *fp = fopen(file.c_str(), "rb");
if (!fp){
return 0;
}
fseek(fp, 0, SEEK_END);
size = ftell(fp);
fseek(fp, 0, SEEK_SET);
buffer = (unsigned char*)malloc(sizeof(unsigned char) * size);
readsize = fread(buffer, sizeof(unsigned char), size, fp);
fclose(fp);
len = readsize;
return buffer;
}
bool Image::initWithImageFile(const std::string& path)
{
bool ret = false;
_filePath = path;//FileUtils::getInstance()->fullPathForFilename(path);
#ifdef EMSCRIPTEN
// Emscripten includes a re-implementation of SDL that uses HTML5 canvas
// operations underneath. Consequently, loading images via IMG_Load (an SDL
// API) will be a lot faster than running libpng et al as compiled with
// Emscripten.
SDL_Surface *iSurf = IMG_Load(fullPath.c_str());
int size = 4 * (iSurf->w * iSurf->h);
ret = initWithRawData((const unsigned char*)iSurf->pixels, size, iSurf->w, iSurf->h, 8, true);
unsigned int *tmp = (unsigned int *)_data;
int nrPixels = iSurf->w * iSurf->h;
for(int i = 0; i < nrPixels; i++)
{
unsigned char *p = _data + i * 4;
tmp[i] = CC_RGB_PREMULTIPLY_ALPHA( p[0], p[1], p[2], p[3] );
}
SDL_FreeSurface(iSurf);
#else
//Data data = FileUtils::getInstance()->getDataFromFile(_filePath);
unsigned char* data = nullptr;
unsigned int dlen = 0;
data = readDataFromFile(_filePath, dlen);
if (data != nullptr)
{
ret = initWithImageData(data, dlen);
}
#endif // EMSCRIPTEN
return ret;
}
bool Image::initWithImageFileThreadSafe(const std::string& fullpath)
{
bool ret = false;
_filePath = fullpath;
//Data data = FileUtils::getInstance()->getDataFromFile(fullpath);
//if (!data.isNull())
//{
// unsigned int uSize = data.getSize();
// this->ImageDataDecode(data.getBytes(), uSize);
// ret = initWithImageData(data.getBytes(), uSize);
//}
return ret;
}
bool Image::initWithImageData(const unsigned char * data, ssize_t dataLen)
{
bool ret = false;
if (!data || dataLen <= 0){
return false;
}
do
{
unsigned char* unpackedData = nullptr;
ssize_t unpackedLen = 0;
////detecgt and unzip the compress file
//if (ZipUtils::isCCZBuffer(data, dataLen))
//{
// unpackedLen = ZipUtils::inflateCCZBuffer(data, dataLen, &unpackedData);
//}
//else if (ZipUtils::isGZipBuffer(data, dataLen))
//{
// unpackedLen = ZipUtils::inflateMemory(const_cast<unsigned char*>(data), dataLen, &unpackedData);
//}
//else
{
unpackedData = const_cast<unsigned char*>(data);
unpackedLen = dataLen;
}
_fileType = detectFormat(unpackedData, unpackedLen);
switch (_fileType)
{
case Format::PNG:
ret = initWithPngData(unpackedData, unpackedLen);
break;
case Format::JPG:
ret = initWithJpgData(unpackedData, unpackedLen);
break;
case Format::TIFF:
ret = initWithTiffData(unpackedData, unpackedLen);
break;
case Format::WEBP:
ret = initWithWebpData(unpackedData, unpackedLen);
break;
case Format::PVR:
ret = initWithPVRData(unpackedData, unpackedLen);
break;
case Format::ETC:
ret = initWithETCData(unpackedData, unpackedLen);
break;
case Format::S3TC:
ret = initWithS3TCData(unpackedData, unpackedLen);
break;
case Format::ATITC:
ret = initWithATITCData(unpackedData, unpackedLen);
break;
default:
{
//// load and detect image format
//tImageTGA* tgaData = tgaLoadBuffer(unpackedData, unpackedLen);
//
//if (tgaData != nullptr && tgaData->status == TGA_OK)
//{
// ret = initWithTGAData(tgaData);
//}
//else
//{
// CCAssert(false, "unsupport image format!");
//}
//
//free(tgaData);
break;
}
}
if(unpackedData != data)
{
free(unpackedData);
}
} while (0);
return ret;
}
bool Image::isPng(const unsigned char * data, ssize_t dataLen)
{
if (dataLen <= 8)
{
return false;
}
static const unsigned char PNG_SIGNATURE[] = {0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a};
return memcmp(PNG_SIGNATURE, data, sizeof(PNG_SIGNATURE)) == 0;
}
bool Image::isEtc(const unsigned char * data, ssize_t dataLen)
{
return false;//etc1_pkm_is_valid((etc1_byte*)data) ? true : false;
}
bool Image::isS3TC(const unsigned char * data, ssize_t dataLen)
{
S3TCTexHeader *header = (S3TCTexHeader *)data;
if (strncmp(header->fileCode, "DDS", 3) != 0)
{
G::log("cocos2d: the file is not a dds file!");
return false;
}
return true;
}
bool Image::isATITC(const unsigned char *data, ssize_t dataLen)
{
ATITCTexHeader *header = (ATITCTexHeader *)data;
if (strncmp(&header->identifier[1], "KTX", 3) != 0)
{
G::log("cocos3d: the file is not a ktx file!");
return false;
}
return true;
}
bool Image::isJpg(const unsigned char * data, ssize_t dataLen)
{
if (dataLen <= 4)
{
return false;
}
static const unsigned char JPG_SOI[] = {0xFF, 0xD8};
return memcmp(data, JPG_SOI, 2) == 0;
}
bool Image::isTiff(const unsigned char * data, ssize_t dataLen)
{
if (dataLen <= 4)
{
return false;
}
static const char* TIFF_II = "II";
static const char* TIFF_MM = "MM";
return (memcmp(data, TIFF_II, 2) == 0 && *(static_cast<const unsigned char*>(data) + 2) == 42 && *(static_cast<const unsigned char*>(data) + 3) == 0) ||
(memcmp(data, TIFF_MM, 2) == 0 && *(static_cast<const unsigned char*>(data) + 2) == 0 && *(static_cast<const unsigned char*>(data) + 3) == 42);
}
bool Image::isWebp(const unsigned char * data, ssize_t dataLen)
{
if (dataLen <= 12)
{
return false;
}
static const char* WEBP_RIFF = "RIFF";
static const char* WEBP_WEBP = "WEBP";
return memcmp(data, WEBP_RIFF, 4) == 0
&& memcmp(static_cast<const unsigned char*>(data) + 8, WEBP_WEBP, 4) == 0;
}
bool Image::isPvr(const unsigned char * data, ssize_t dataLen)
{
if (static_cast<size_t>(dataLen) < sizeof(PVRv2TexHeader) || static_cast<size_t>(dataLen) < sizeof(PVRv3TexHeader))
{
return false;
}
const PVRv2TexHeader* headerv2 = static_cast<const PVRv2TexHeader*>(static_cast<const void*>(data));
const PVRv3TexHeader* headerv3 = static_cast<const PVRv3TexHeader*>(static_cast<const void*>(data));
return false;//memcmp(&headerv2->pvrTag, gPVRTexIdentifier, strlen(gPVRTexIdentifier)) == 0 || CC_SWAP_INT32_BIG_TO_HOST(headerv3->version) == 0x50565203;
}
Image::Format Image::detectFormat(const unsigned char * data, ssize_t dataLen)
{
if (isPng(data, dataLen))
{
return Format::PNG;
}
else if (isJpg(data, dataLen))
{
return Format::JPG;
}
else if (isTiff(data, dataLen))
{
return Format::TIFF;
}
else if (isWebp(data, dataLen))
{
return Format::WEBP;
}
else if (isPvr(data, dataLen))
{
return Format::PVR;
}
else if (isEtc(data, dataLen))
{
return Format::ETC;
}
else if (isS3TC(data, dataLen))
{
return Format::S3TC;
}
else if (isATITC(data, dataLen))
{
return Format::ATITC;
}
else
{
return Format::UNKOWN;
}
}
int Image::getBitPerPixel()
{
return Texture2D::getPixelFormatInfoMap().at(_renderFormat).bpp;
}
bool Image::hasAlpha()
{
return Texture2D::getPixelFormatInfoMap().at(_renderFormat).alpha;
}
bool Image::isCompressed()
{
return Texture2D::getPixelFormatInfoMap().at(_renderFormat).compressed;
}
namespace
{
/*
* ERROR HANDLING:
*
* The JPEG library's standard error handler (jerror.c) is divided into
* several "methods" which you can override individually. This lets you
* adjust the behavior without duplicating a lot of code, which you might
* have to update with each future release.
*
* We override the "error_exit" method so that control is returned to the
* library's caller when a fatal error occurs, rather than calling exit()
* as the standard error_exit method does.
*
* We use C's setjmp/longjmp facility to return control. This means that the
* routine which calls the JPEG library must first execute a setjmp() call to
* establish the return point. We want the replacement error_exit to do a
* longjmp(). But we need to make the setjmp buffer accessible to the
* error_exit routine. To do this, we make a private extension of the
* standard JPEG error handler object. (If we were using C++, we'd say we
* were making a subclass of the regular error handler.)
*
* Here's the extended error handler struct:
*/
#if CC_USE_JPEG
struct MyErrorMgr
{
struct jpeg_error_mgr pub; /* "public" fields */
jmp_buf setjmp_buffer; /* for return to caller */
};
typedef struct MyErrorMgr * MyErrorPtr;
/*
* Here's the routine that will replace the standard error_exit method:
*/
METHODDEF(void)
myErrorExit(j_common_ptr cinfo)
{
/* cinfo->err really points to a MyErrorMgr struct, so coerce pointer */
MyErrorPtr myerr = (MyErrorPtr) cinfo->err;
/* Always display the message. */
/* We could postpone this until after returning, if we chose. */
/* internal message function cann't show error message in some platforms, so we rewrite it here.
* edit it if has version confilict.
*/
//(*cinfo->err->output_message) (cinfo);
char buffer[JMSG_LENGTH_MAX];
(*cinfo->err->format_message) (cinfo, buffer);
G::log("jpeg error: %s", buffer);
/* Return control to the setjmp point */
longjmp(myerr->setjmp_buffer, 1);
}
#endif // CC_USE_JPEG
}
bool Image::initWithJpgData(const unsigned char * data, ssize_t dataLen)
{
#if CC_USE_JPEG
/* these are standard libjpeg structures for reading(decompression) */
struct jpeg_decompress_struct cinfo;
/* We use our private extension JPEG error handler.
* Note that this struct must live as long as the main JPEG parameter
* struct, to avoid dangling-pointer problems.
*/
struct MyErrorMgr jerr;
/* libjpeg data structure for storing one row, that is, scanline of an image */
JSAMPROW row_pointer[1] = {0};
unsigned long location = 0;
bool ret = false;
do
{
/* We set up the normal JPEG error routines, then override error_exit. */
cinfo.err = jpeg_std_error(&jerr.pub);
jerr.pub.error_exit = myErrorExit;
/* Establish the setjmp return context for MyErrorExit to use. */
if (setjmp(jerr.setjmp_buffer))
{
/* If we get here, the JPEG code has signaled an error.
* We need to clean up the JPEG object, close the input file, and return.
*/
jpeg_destroy_decompress(&cinfo);
break;
}
/* setup decompression process and source, then read JPEG header */
jpeg_create_decompress( &cinfo );
#ifndef CC_TARGET_QT5
jpeg_mem_src(&cinfo, const_cast<unsigned char*>(data), dataLen);
#endif /* CC_TARGET_QT5 */
/* reading the image header which contains image information */
#if (JPEG_LIB_VERSION >= 90)
// libjpeg 0.9 adds stricter types.
jpeg_read_header(&cinfo, TRUE);
#else
jpeg_read_header(&cinfo, TRUE);
#endif
// we only support RGB or grayscale
if (cinfo.jpeg_color_space == JCS_GRAYSCALE)
{
_renderFormat = Texture2D::PixelFormat::I8;
}else
{
cinfo.out_color_space = JCS_RGB;
_renderFormat = Texture2D::PixelFormat::RGB888;
}
/* Start decompression jpeg here */
jpeg_start_decompress( &cinfo );
/* init image info */
_width = cinfo.output_width;
_height = cinfo.output_height;
_hasPremultipliedAlpha = false;
_dataLen = cinfo.output_width*cinfo.output_height*cinfo.output_components;
_data = static_cast<unsigned char*>(malloc(_dataLen * sizeof(unsigned char)));
if (!_data){
break;
}
/* now actually read the jpeg into the raw buffer */
/* read one scan line at a time */
while (cinfo.output_scanline < cinfo.output_height)
{
row_pointer[0] = _data + location;
location += cinfo.output_width*cinfo.output_components;
jpeg_read_scanlines(&cinfo, row_pointer, 1);
}
/* When read image file with broken data, jpeg_finish_decompress() may cause error.
* Besides, jpeg_destroy_decompress() shall deallocate and release all memory associated
* with the decompression object.
* So it doesn't need to call jpeg_finish_decompress().
*/
//jpeg_finish_decompress( &cinfo );
jpeg_destroy_decompress( &cinfo );
/* wrap up decompression, destroy objects, free pointers and close open files */
ret = true;
} while (0);
return ret;
#else
return false;
#endif // CC_USE_JPEG
}
bool Image::initWithPngData(const unsigned char * data, ssize_t dataLen)
{
// length of bytes to check if it is a valid png file
#define PNGSIGSIZE 8
bool ret = false;
png_byte header[PNGSIGSIZE] = {0};
png_structp png_ptr = 0;
png_infop info_ptr = 0;
do
{
// png header len is 8 bytes
//CC_BREAK_IF(dataLen < PNGSIGSIZE);
if (dataLen < PNGSIGSIZE){
G::log("png data len < PNGSIGSIZE(8)");
break;
}
// check the data is png or not
memcpy(header, data, PNGSIGSIZE);
if (png_sig_cmp(header, 0, PNGSIGSIZE)){
break;
}
// init png_struct
png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, 0, 0, 0);
if (!png_ptr){
break;
}
// init png_info
info_ptr = png_create_info_struct(png_ptr);
if(!info_ptr){
break;
}
#if (CC_TARGET_PLATFORM != CC_PLATFORM_BADA && CC_TARGET_PLATFORM != CC_PLATFORM_NACL)
CC_BREAK_IF(setjmp(png_jmpbuf(png_ptr)));
#endif
// set the read call back function
tImageSource imageSource;
imageSource.data = (unsigned char*)data;
imageSource.size = dataLen;
imageSource.offset = 0;
png_set_read_fn(png_ptr, &imageSource, pngReadCallback);
// read png header info
// read png file info
png_read_info(png_ptr, info_ptr);
_width = png_get_image_width(png_ptr, info_ptr);
_height = png_get_image_height(png_ptr, info_ptr);
png_byte bit_depth = png_get_bit_depth(png_ptr, info_ptr);
png_uint_32 color_type = png_get_color_type(png_ptr, info_ptr);
//G::log("color type %u", color_type);
// force palette images to be expanded to 24-bit RGB
// it may include alpha channel
if (color_type == PNG_COLOR_TYPE_PALETTE)
{
png_set_palette_to_rgb(png_ptr);
}
// low-bit-depth grayscale images are to be expanded to 8 bits
if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
{
bit_depth = 8;
png_set_expand_gray_1_2_4_to_8(png_ptr);
}
// expand any tRNS chunk data into a full alpha channel
if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS))
{
png_set_tRNS_to_alpha(png_ptr);
}
// reduce images with 16-bit samples to 8 bits
if (bit_depth == 16)
{
png_set_strip_16(png_ptr);
}
// Expanded earlier for grayscale, now take care of palette and rgb
if (bit_depth < 8)
{
png_set_packing(png_ptr);
}
// update info
png_read_update_info(png_ptr, info_ptr);
bit_depth = png_get_bit_depth(png_ptr, info_ptr);
color_type = png_get_color_type(png_ptr, info_ptr);
switch (color_type)
{
case PNG_COLOR_TYPE_GRAY:
_renderFormat = Texture2D::PixelFormat::I8;
break;
case PNG_COLOR_TYPE_GRAY_ALPHA:
_renderFormat = Texture2D::PixelFormat::AI88;
break;
case PNG_COLOR_TYPE_RGB:
_renderFormat = Texture2D::PixelFormat::RGB888;
break;
case PNG_COLOR_TYPE_RGB_ALPHA:
_renderFormat = Texture2D::PixelFormat::RGBA8888;
break;
default:
break;
}
// read png data
png_size_t rowbytes;
png_bytep* row_pointers = (png_bytep*)malloc( sizeof(png_bytep) * _height );
rowbytes = png_get_rowbytes(png_ptr, info_ptr);
_dataLen = rowbytes * _height;
_data = static_cast<unsigned char*>(malloc(_dataLen * sizeof(unsigned char)));
if (!_data)
{
if (row_pointers != nullptr)
{
free(row_pointers);
}
break;
}
for (unsigned short i = 0; i < _height; ++i)
{
row_pointers[i] = _data + i*rowbytes;
}
png_read_image(png_ptr, row_pointers);
png_read_end(png_ptr, nullptr);
// premultiplied alpha for RGBA8888
if (color_type == PNG_COLOR_TYPE_RGB_ALPHA)
{
premultipliedAlpha();
}
else
{
_hasPremultipliedAlpha = false;
}
if (row_pointers != nullptr)
{
free(row_pointers);
}
ret = true;
} while (0);
if (png_ptr)
{
png_destroy_read_struct(&png_ptr, (info_ptr) ? &info_ptr : 0, 0);
}
return ret;
}
#if CC_USE_TIFF
namespace
{
static tmsize_t tiffReadProc(thandle_t fd, void* buf, tmsize_t size)
{
tImageSource* isource = (tImageSource*)fd;
uint8* ma;
uint64 mb;
unsigned long n;
unsigned long o;
tmsize_t p;
ma=(uint8*)buf;
mb=size;
p=0;
while (mb>0)
{
n=0x80000000UL;
if ((uint64)n>mb)
n=(unsigned long)mb;
if ((int)(isource->offset + n) <= isource->size)
{
memcpy(ma, isource->data+isource->offset, n);
isource->offset += n;
o = n;
}
else
{
return 0;
}
ma+=o;
mb-=o;
p+=o;
if (o!=n)
{
break;
}
}
return p;
}
static tmsize_t tiffWriteProc(thandle_t fd, void* buf, tmsize_t size)
{
//CC_UNUSED_PARAM(fd);
//CC_UNUSED_PARAM(buf);
//CC_UNUSED_PARAM(size);
fd;
buf;
size;
return 0;
}
static uint64 tiffSeekProc(thandle_t fd, uint64 off, int whence)
{
tImageSource* isource = (tImageSource*)fd;
uint64 ret = -1;
do
{
if (whence == SEEK_SET)
{
if (off >= (uint64)isource->size){
break;
}
ret = isource->offset = (uint32)off;
}
else if (whence == SEEK_CUR)
{
if (isource->offset + off >= (uint64)isource->size){
break;
}
ret = isource->offset += (uint32)off;
}
else if (whence == SEEK_END)
{
if (off >= (uint64)isource->size){
break;
}
ret = isource->offset = (uint32)(isource->size-1 - off);
}
else
{
if (off >= (uint64)isource->size){
break;
}
ret = isource->offset = (uint32)off;
}
} while (0);
return ret;
}
static uint64 tiffSizeProc(thandle_t fd)
{
tImageSource* imageSrc = (tImageSource*)fd;
return imageSrc->size;
}
static int tiffCloseProc(thandle_t fd)
{
//CC_UNUSED_PARAM(fd);
fd;
return 0;
}
static int tiffMapProc(thandle_t fd, void** base, toff_t* size)
{
//CC_UNUSED_PARAM(fd);
//CC_UNUSED_PARAM(base);
//CC_UNUSED_PARAM(size);
fd;
base;
size;
return 0;
}
static void tiffUnmapProc(thandle_t fd, void* base, toff_t size)
{
//CC_UNUSED_PARAM(fd);
//CC_UNUSED_PARAM(base);
//CC_UNUSED_PARAM(size);
fd;
base;
size;
}
}
#endif // CC_USE_TIFF
bool Image::initWithTiffData(const unsigned char * data, ssize_t dataLen)
{
#if CC_USE_TIFF
bool ret = false;
do
{
// set the read call back function
tImageSource imageSource;
imageSource.data = data;
imageSource.size = dataLen;
imageSource.offset = 0;
TIFF* tif = TIFFClientOpen("file.tif", "r", (thandle_t)&imageSource,
tiffReadProc, tiffWriteProc,
tiffSeekProc, tiffCloseProc, tiffSizeProc,
tiffMapProc,
tiffUnmapProc);
if (nullptr == tif){
break;
}
uint32 w = 0, h = 0;
uint16 bitsPerSample = 0, samplePerPixel = 0, planarConfig = 0;
size_t npixels = 0;
TIFFGetField(tif, TIFFTAG_IMAGEWIDTH, &w);
TIFFGetField(tif, TIFFTAG_IMAGELENGTH, &h);
TIFFGetField(tif, TIFFTAG_BITSPERSAMPLE, &bitsPerSample);
TIFFGetField(tif, TIFFTAG_SAMPLESPERPIXEL, &samplePerPixel);
TIFFGetField(tif, TIFFTAG_PLANARCONFIG, &planarConfig);
npixels = w * h;
_renderFormat = Texture2D::PixelFormat::RGBA8888;
_width = w;
_height = h;
_dataLen = npixels * sizeof (uint32);
_data = static_cast<unsigned char*>(malloc(_dataLen * sizeof(unsigned char)));
uint32* raster = (uint32*) _TIFFmalloc(npixels * sizeof (uint32));
if (raster != nullptr)
{
if (TIFFReadRGBAImageOriented(tif, w, h, raster, ORIENTATION_TOPLEFT, 0))
{
/* the raster data is pre-multiplied by the alpha component
after invoking TIFFReadRGBAImageOriented*/
_hasPremultipliedAlpha = true;
memcpy(_data, raster, npixels*sizeof (uint32));
}
_TIFFfree(raster);
}
TIFFClose(tif);
ret = true;
} while (0);
return ret;
#else
G::log("tiff is not enabled, please enalbe it in ccConfig.h");
return false;
#endif
}
namespace
{
bool testFormatForPvr2TCSupport(PVR2TexturePixelFormat format)
{
return true;
}
bool testFormatForPvr3TCSupport(PVR3TexturePixelFormat format)
{
switch (format) {
case PVR3TexturePixelFormat::DXT1:
case PVR3TexturePixelFormat::DXT3:
case PVR3TexturePixelFormat::DXT5:
return false;//Configuration::getInstance()->supportsS3TC();
case PVR3TexturePixelFormat::BGRA8888:
return true;//Configuration::getInstance()->supportsBGRA8888();
case PVR3TexturePixelFormat::PVRTC2BPP_RGB:
case PVR3TexturePixelFormat::PVRTC2BPP_RGBA:
case PVR3TexturePixelFormat::PVRTC4BPP_RGB:
case PVR3TexturePixelFormat::PVRTC4BPP_RGBA:
case PVR3TexturePixelFormat::ETC1:
case PVR3TexturePixelFormat::RGBA8888:
//case PVR3TexturePixelFormat::RGBA4444:
//case PVR3TexturePixelFormat::RGBA5551:
case PVR3TexturePixelFormat::RGB565:
//case PVR3TexturePixelFormat::RGB888:
case PVR3TexturePixelFormat::A8:
case PVR3TexturePixelFormat::L8:
case PVR3TexturePixelFormat::LA88:
return true;
default:
return false;
}
}
}
bool Image::initWithPVRv2Data(const unsigned char * data, ssize_t dataLen)
{
/*
int dataLength = 0, dataOffset = 0, dataSize = 0;
int blockSize = 0, widthBlocks = 0, heightBlocks = 0;
int width = 0, height = 0;
//Cast first sizeof(PVRTexHeader) bytes of data stream as PVRTexHeader
const PVRv2TexHeader *header = static_cast<const PVRv2TexHeader *>(static_cast<const void*>(data));
//Make sure that tag is in correct formatting
if (memcmp(&header->pvrTag, gPVRTexIdentifier, strlen(gPVRTexIdentifier)) != 0)
{
return false;
}
Configuration *configuration = Configuration::getInstance();
//can not detect the premultiplied alpha from pvr file, use _PVRHaveAlphaPremultiplied instead.
_hasPremultipliedAlpha = _PVRHaveAlphaPremultiplied;
unsigned int flags = CC_SWAP_INT32_LITTLE_TO_HOST(header->flags);
PVR2TexturePixelFormat formatFlags = static_cast<PVR2TexturePixelFormat>(flags & PVR_TEXTURE_FLAG_TYPE_MASK);
bool flipped = (flags & (unsigned int)PVR2TextureFlag::VerticalFlip) ? true : false;
if (flipped)
{
G::log("cocos2d: WARNING: Image is flipped. Regenerate it using PVRTexTool");
}
if (! configuration->supportsNPOT() &&
(static_cast<int>(header->width) != ccNextPOT(header->width)
|| static_cast<int>(header->height) != ccNextPOT(header->height)))
{
G::log("cocos2d: ERROR: Loading an NPOT texture (%dx%d) but is not supported on this device", header->width, header->height);
return false;
}
if (!testFormatForPvr2TCSupport(formatFlags))
{
G::log("cocos2d: WARNING: Unsupported PVR Pixel Format: 0x%02X. Re-encode it with a OpenGL pixel format variant", (int)formatFlags);
return false;
}
if (v2_pixel_formathash.find(formatFlags) == v2_pixel_formathash.end())
{
G::log("cocos2d: WARNING: Unsupported PVR Pixel Format: 0x%02X. Re-encode it with a OpenGL pixel format variant", (int)formatFlags);
return false;
}
auto it = Texture2D::getPixelFormatInfoMap().find(getDevicePixelFormat(v2_pixel_formathash.at(formatFlags)));
if (it == Texture2D::getPixelFormatInfoMap().end())
{
G::log("cocos2d: WARNING: Unsupported PVR Pixel Format: 0x%02X. Re-encode it with a OpenGL pixel format variant", (int)formatFlags);
return false;
}
_renderFormat = it->first;
int bpp = it->second.bpp;
//Reset num of mipmaps
_numberOfMipmaps = 0;
//Get size of mipmap
_width = width = CC_SWAP_INT32_LITTLE_TO_HOST(header->width);
_height = height = CC_SWAP_INT32_LITTLE_TO_HOST(header->height);
//Get ptr to where data starts..
dataLength = CC_SWAP_INT32_LITTLE_TO_HOST(header->dataLength);
//Move by size of header
_dataLen = dataLen - sizeof(PVRv2TexHeader);
_data = static_cast<unsigned char*>(malloc(_dataLen * sizeof(unsigned char)));
memcpy(_data, (unsigned char*)data + sizeof(PVRv2TexHeader), _dataLen);
// Calculate the data size for each texture level and respect the minimum number of blocks
while (dataOffset < dataLength)
{
switch (formatFlags) {
case PVR2TexturePixelFormat::PVRTC2BPP_RGBA:
if (!Configuration::getInstance()->supportsPVRTC())
{
G::log("cocos2d: Hardware PVR decoder not present. Using software decoder");
_unpack = true;
_mipmaps[_numberOfMipmaps].len = width*height*4;
_mipmaps[_numberOfMipmaps].address = new unsigned char[width*height*4];
PVRTDecompressPVRTC(_data+dataOffset,width,height,_mipmaps[_numberOfMipmaps].address, true);
bpp = 2;
}
blockSize = 8 * 4; // Pixel by pixel block size for 2bpp
widthBlocks = width / 8;
heightBlocks = height / 4;
break;
case PVR2TexturePixelFormat::PVRTC4BPP_RGBA:
if (!Configuration::getInstance()->supportsPVRTC())
{
G::log("cocos2d: Hardware PVR decoder not present. Using software decoder");
_unpack = true;
_mipmaps[_numberOfMipmaps].len = width*height*4;
_mipmaps[_numberOfMipmaps].address = new unsigned char[width*height*4];
PVRTDecompressPVRTC(_data+dataOffset,width,height,_mipmaps[_numberOfMipmaps].address, false);
bpp = 4;
}
blockSize = 4 * 4; // Pixel by pixel block size for 4bpp
widthBlocks = width / 4;
heightBlocks = height / 4;
break;
case PVR2TexturePixelFormat::BGRA8888:
if (Configuration::getInstance()->supportsBGRA8888() == false)
{
G::log("cocos2d: Image. BGRA8888 not supported on this device");
return false;
}
default:
blockSize = 1;
widthBlocks = width;
heightBlocks = height;
break;
}
// Clamp to minimum number of blocks
if (widthBlocks < 2)
{
widthBlocks = 2;
}
if (heightBlocks < 2)
{
heightBlocks = 2;
}
dataSize = widthBlocks * heightBlocks * ((blockSize * bpp) / 8);
int packetLength = (dataLength - dataOffset);
packetLength = packetLength > dataSize ? dataSize : packetLength;
//Make record to the mipmaps array and increment counter
if(!_unpack)
{
_mipmaps[_numberOfMipmaps].address = _data + dataOffset;
_mipmaps[_numberOfMipmaps].len = packetLength;
}
_numberOfMipmaps++;
dataOffset += packetLength;
//Update width and height to the next lower power of two
width = MAX(width >> 1, 1);
height = MAX(height >> 1, 1);
}
if(_unpack)
{
_data = _mipmaps[0].address;
_dataLen = _mipmaps[0].len;
}
*/
return true;
}
bool Image::initWithPVRv3Data(const unsigned char * data, ssize_t dataLen)
{
/*
if (static_cast<size_t>(dataLen) < sizeof(PVRv3TexHeader))
{
return false;
}
const PVRv3TexHeader *header = static_cast<const PVRv3TexHeader *>(static_cast<const void*>(data));
// validate version
if (CC_SWAP_INT32_BIG_TO_HOST(header->version) != 0x50565203)
{
G::log("cocos2d: WARNING: pvr file version mismatch");
return false;
}
// parse pixel format
PVR3TexturePixelFormat pixelFormat = static_cast<PVR3TexturePixelFormat>(header->pixelFormat);
if (!testFormatForPvr3TCSupport(pixelFormat))
{
G::log("cocos2d: WARNING: Unsupported PVR Pixel Format: 0x%016llX. Re-encode it with a OpenGL pixel format variant",
static_cast<unsigned long long>(pixelFormat));
return false;
}
if (v3_pixel_formathash.find(pixelFormat) == v3_pixel_formathash.end())
{
G::log("cocos2d: WARNING: Unsupported PVR Pixel Format: 0x%016llX. Re-encode it with a OpenGL pixel format variant",
static_cast<unsigned long long>(pixelFormat));
return false;
}
auto it = Texture2D::getPixelFormatInfoMap().find(getDevicePixelFormat(v3_pixel_formathash.at(pixelFormat)));
if (it == Texture2D::getPixelFormatInfoMap().end())
{
G::log("cocos2d: WARNING: Unsupported PVR Pixel Format: 0x%016llX. Re-encode it with a OpenGL pixel format variant",
static_cast<unsigned long long>(pixelFormat));
return false;
}
_renderFormat = it->first;
int bpp = it->second.bpp;
// flags
int flags = CC_SWAP_INT32_LITTLE_TO_HOST(header->flags);
// PVRv3 specifies premultiply alpha in a flag -- should always respect this in PVRv3 files
if (flags & (unsigned int)PVR3TextureFlag::PremultipliedAlpha)
{
_hasPremultipliedAlpha = true;
}
// sizing
int width = CC_SWAP_INT32_LITTLE_TO_HOST(header->width);
int height = CC_SWAP_INT32_LITTLE_TO_HOST(header->height);
_width = width;
_height = height;
int dataOffset = 0, dataSize = 0;
int blockSize = 0, widthBlocks = 0, heightBlocks = 0;
_dataLen = dataLen - (sizeof(PVRv3TexHeader) + header->metadataLength);
_data = static_cast<unsigned char*>(malloc(_dataLen * sizeof(unsigned char)));
memcpy(_data, static_cast<const unsigned char*>(data) + sizeof(PVRv3TexHeader) + header->metadataLength, _dataLen);
_numberOfMipmaps = header->numberOfMipmaps;
CCAssert(_numberOfMipmaps < MIPMAP_MAX, "Image: Maximum number of mimpaps reached. Increate the CC_MIPMAP_MAX value");
for (int i = 0; i < _numberOfMipmaps; i++)
{
switch ((PVR3TexturePixelFormat)pixelFormat)
{
case PVR3TexturePixelFormat::PVRTC2BPP_RGB :
case PVR3TexturePixelFormat::PVRTC2BPP_RGBA :
if (!Configuration::getInstance()->supportsPVRTC())
{
G::log("cocos2d: Hardware PVR decoder not present. Using software decoder");
_unpack = true;
_mipmaps[i].len = width*height*4;
_mipmaps[i].address = new unsigned char[width*height*4];
PVRTDecompressPVRTC(_data+dataOffset,width,height,_mipmaps[i].address, true);
bpp = 2;
}
blockSize = 8 * 4; // Pixel by pixel block size for 2bpp
widthBlocks = width / 8;
heightBlocks = height / 4;
break;
case PVR3TexturePixelFormat::PVRTC4BPP_RGB :
case PVR3TexturePixelFormat::PVRTC4BPP_RGBA :
if (!Configuration::getInstance()->supportsPVRTC())
{
G::log("cocos2d: Hardware PVR decoder not present. Using software decoder");
_unpack = true;
_mipmaps[i].len = width*height*4;
_mipmaps[i].address = new unsigned char[width*height*4];
PVRTDecompressPVRTC(_data+dataOffset,width,height,_mipmaps[i].address, false);
bpp = 4;
}
blockSize = 4 * 4; // Pixel by pixel block size for 4bpp
widthBlocks = width / 4;
heightBlocks = height / 4;
break;
case PVR3TexturePixelFormat::ETC1:
if (!Configuration::getInstance()->supportsETC())
{
G::log("cocos2d: Hardware ETC1 decoder not present. Using software decoder");
int bytePerPixel = 3;
unsigned int stride = width * bytePerPixel;
_unpack = true;
_mipmaps[i].len = width*height*bytePerPixel;
_mipmaps[i].address = new unsigned char[width*height*bytePerPixel];
if (etc1_decode_image(static_cast<const unsigned char*>(_data+dataOffset), static_cast<etc1_byte*>(_mipmaps[i].address), width, height, bytePerPixel, stride) != 0)
{
return false;
}
}
blockSize = 4 * 4; // Pixel by pixel block size for 4bpp
widthBlocks = width / 4;
heightBlocks = height / 4;
break;
case PVR3TexturePixelFormat::BGRA8888:
if (! Configuration::getInstance()->supportsBGRA8888())
{
G::log("cocos2d: Image. BGRA8888 not supported on this device");
return false;
}
default:
blockSize = 1;
widthBlocks = width;
heightBlocks = height;
break;
}
// Clamp to minimum number of blocks
if (widthBlocks < 2)
{
widthBlocks = 2;
}
if (heightBlocks < 2)
{
heightBlocks = 2;
}
dataSize = widthBlocks * heightBlocks * ((blockSize * bpp) / 8);
auto packetLength = _dataLen - dataOffset;
packetLength = packetLength > dataSize ? dataSize : packetLength;
if(!_unpack)
{
_mipmaps[i].address = _data + dataOffset;
_mipmaps[i].len = static_cast<int>(packetLength);
}
dataOffset += packetLength;
CCAssert(dataOffset <= _dataLen, "CCTexurePVR: Invalid lenght");
width = MAX(width >> 1, 1);
height = MAX(height >> 1, 1);
}
if (_unpack)
{
_data = _mipmaps[0].address;
_dataLen = _mipmaps[0].len;
}
*/
return true;
}
bool Image::initWithETCData(const unsigned char * data, ssize_t dataLen)
{
/*
const etc1_byte* header = static_cast<const etc1_byte*>(data);
//check the data
if (! etc1_pkm_is_valid(header))
{
return false;
}
_width = etc1_pkm_get_width(header);
_height = etc1_pkm_get_height(header);
if (0 == _width || 0 == _height)
{
return false;
}
if (Configuration::getInstance()->supportsETC())
{
//old opengl version has no define for GL_ETC1_RGB8_OES, add macro to make compiler happy.
#ifdef GL_ETC1_RGB8_OES
_renderFormat = Texture2D::PixelFormat::ETC;
_dataLen = dataLen - ETC_PKM_HEADER_SIZE;
_data = static_cast<unsigned char*>(malloc(_dataLen * sizeof(unsigned char)));
memcpy(_data, static_cast<const unsigned char*>(data) + ETC_PKM_HEADER_SIZE, _dataLen);
return true;
#endif
}
else
{
G::log("cocos2d: Hardware ETC1 decoder not present. Using software decoder");
//if it is not gles or device do not support ETC, decode texture by software
int bytePerPixel = 3;
unsigned int stride = _width * bytePerPixel;
_renderFormat = Texture2D::PixelFormat::RGB888;
_dataLen = _width * _height * bytePerPixel;
_data = static_cast<unsigned char*>(malloc(_dataLen * sizeof(unsigned char)));
if (etc1_decode_image(static_cast<const unsigned char*>(data) + ETC_PKM_HEADER_SIZE, static_cast<etc1_byte*>(_data), _width, _height, bytePerPixel, stride) != 0)
{
_dataLen = 0;
if (_data != nullptr)
{
free(_data);
}
return false;
}
return true;
}
*/
return false;
}
bool Image::initWithTGAData(tImageTGA* tgaData)
{
bool ret = false;
/*
do
{
CC_BREAK_IF(tgaData == nullptr);
// tgaLoadBuffer only support type 2, 3, 10
if (2 == tgaData->type || 10 == tgaData->type)
{
// true color
// unsupport RGB555
if (tgaData->pixelDepth == 16)
{
_renderFormat = Texture2D::PixelFormat::RGB5A1;
}
else if(tgaData->pixelDepth == 24)
{
_renderFormat = Texture2D::PixelFormat::RGB888;
}
else if(tgaData->pixelDepth == 32)
{
_renderFormat = Texture2D::PixelFormat::RGBA8888;
}
else
{
G::log("Image WARNING: unsupport true color tga data pixel format. FILE: %s", _filePath.c_str());
break;
}
}
else if(3 == tgaData->type)
{
// gray
if (8 == tgaData->pixelDepth)
{
_renderFormat = Texture2D::PixelFormat::I8;
}
else
{
// actually this won't happen, if it happens, maybe the image file is not a tga
G::log("Image WARNING: unsupport gray tga data pixel format. FILE: %s", _filePath.c_str());
break;
}
}
_width = tgaData->width;
_height = tgaData->height;
_data = tgaData->imageData;
_dataLen = _width * _height * tgaData->pixelDepth / 8;
_fileType = Format::TGA;
_hasPremultipliedAlpha = false;
ret = true;
}while(false);
if (ret)
{
if (_filePath.length() > 0)
{
const unsigned char tgaSuffix [] = ".tga";
for (int i = 0; i < 4; ++i)
{
if (tolower(_filePath[_filePath.length() - i - 1]) != tgaSuffix[3 - i])
{
G::log("Image WARNING: the image file suffix is not tga, but parsed as a tga image file. FILE: %s", _filePath.c_str());
break;
};
}
}
}
else
{
if (tgaData && tgaData->imageData != nullptr)
{
free(tgaData->imageData);
_data = nullptr;
}
}
*/
return ret;
}
namespace
{
static const uint32_t makeFourCC(char ch0, char ch1, char ch2, char ch3)
{
const uint32_t fourCC = ((uint32_t)(char)(ch0) | ((uint32_t)(char)(ch1) << 8) | ((uint32_t)(char)(ch2) << 16) | ((uint32_t)(char)(ch3) << 24 ));
return fourCC;
}
}
bool Image::initWithS3TCData(const unsigned char * data, ssize_t dataLen)
{
/*
const uint32_t FOURCC_DXT1 = makeFourCC('D', 'X', 'T', '1');
const uint32_t FOURCC_DXT3 = makeFourCC('D', 'X', 'T', '3');
const uint32_t FOURCC_DXT5 = makeFourCC('D', 'X', 'T', '5');
//* load the .dds file *
S3TCTexHeader *header = (S3TCTexHeader *)data;
unsigned char *pixelData = static_cast<unsigned char*>(malloc((dataLen - sizeof(S3TCTexHeader)) * sizeof(unsigned char)));
memcpy((void *)pixelData, data + sizeof(S3TCTexHeader), dataLen - sizeof(S3TCTexHeader));
_width = header->ddsd.width;
_height = header->ddsd.height;
_numberOfMipmaps = MAX(1, header->ddsd.DUMMYUNIONNAMEN2.mipMapCount); //if dds header reports 0 mipmaps, set to 1 to force correct software decoding (if needed).
_dataLen = 0;
int blockSize = (FOURCC_DXT1 == header->ddsd.DUMMYUNIONNAMEN4.ddpfPixelFormat.fourCC) ? 8 : 16;
//* calculate the dataLen *
int width = _width;
int height = _height;
if (Configuration::getInstance()->supportsS3TC()) //compressed data length
{
_dataLen = dataLen - sizeof(S3TCTexHeader);
_data = static_cast<unsigned char*>(malloc(_dataLen * sizeof(unsigned char)));
memcpy((void *)_data,(void *)pixelData , _dataLen);
}
else //decompressed data length
{
for (int i = 0; i < _numberOfMipmaps && (width || height); ++i)
{
if (width == 0) width = 1;
if (height == 0) height = 1;
_dataLen += (height * width *4);
width >>= 1;
height >>= 1;
}
_data = static_cast<unsigned char*>(malloc(_dataLen * sizeof(unsigned char)));
}
//* if hardware supports s3tc, set pixelformat before loading mipmaps, to support non-mipmapped textures *
if (Configuration::getInstance()->supportsS3TC())
{ //decode texture throught hardware
if (FOURCC_DXT1 == header->ddsd.DUMMYUNIONNAMEN4.ddpfPixelFormat.fourCC)
{
_renderFormat = Texture2D::PixelFormat::S3TC_DXT1;
}
else if (FOURCC_DXT3 == header->ddsd.DUMMYUNIONNAMEN4.ddpfPixelFormat.fourCC)
{
_renderFormat = Texture2D::PixelFormat::S3TC_DXT3;
}
else if (FOURCC_DXT5 == header->ddsd.DUMMYUNIONNAMEN4.ddpfPixelFormat.fourCC)
{
_renderFormat = Texture2D::PixelFormat::S3TC_DXT5;
}
} else { //will software decode
_renderFormat = Texture2D::PixelFormat::RGBA8888;
}
//* load the mipmaps *
int encodeOffset = 0;
int decodeOffset = 0;
width = _width; height = _height;
for (int i = 0; i < _numberOfMipmaps && (width || height); ++i)
{
if (width == 0) width = 1;
if (height == 0) height = 1;
int size = ((width+3)/4)*((height+3)/4)*blockSize;
if (Configuration::getInstance()->supportsS3TC())
{ //decode texture throught hardware
_mipmaps[i].address = (unsigned char *)_data + encodeOffset;
_mipmaps[i].len = size;
}
else
{ //if it is not gles or device do not support S3TC, decode texture by software
G::log("cocos2d: Hardware S3TC decoder not present. Using software decoder");
int bytePerPixel = 4;
unsigned int stride = width * bytePerPixel;
std::vector<unsigned char> decodeImageData(stride * height);
if (FOURCC_DXT1 == header->ddsd.DUMMYUNIONNAMEN4.ddpfPixelFormat.fourCC)
{
s3tc_decode(pixelData + encodeOffset, &decodeImageData[0], width, height, S3TCDecodeFlag::DXT1);
}
else if (FOURCC_DXT3 == header->ddsd.DUMMYUNIONNAMEN4.ddpfPixelFormat.fourCC)
{
s3tc_decode(pixelData + encodeOffset, &decodeImageData[0], width, height, S3TCDecodeFlag::DXT3);
}
else if (FOURCC_DXT5 == header->ddsd.DUMMYUNIONNAMEN4.ddpfPixelFormat.fourCC)
{
s3tc_decode(pixelData + encodeOffset, &decodeImageData[0], width, height, S3TCDecodeFlag::DXT5);
}
_mipmaps[i].address = (unsigned char *)_data + decodeOffset;
_mipmaps[i].len = (stride * height);
memcpy((void *)_mipmaps[i].address, (void *)&decodeImageData[0], _mipmaps[i].len);
decodeOffset += stride * height;
}
encodeOffset += size;
width >>= 1;
height >>= 1;
}
//* end load the mipmaps *
if (pixelData != nullptr)
{
free(pixelData);
};
*/
return true;
}
bool Image::initWithATITCData(const unsigned char *data, ssize_t dataLen)
{
///* load the .ktx file */
//ATITCTexHeader *header = (ATITCTexHeader *)data;
//_width = header->pixelWidth;
//_height = header->pixelHeight;
//_numberOfMipmaps = header->numberOfMipmapLevels;
//
//int blockSize = 0;
//switch (header->glInternalFormat)
//{
// case CC_GL_ATC_RGB_AMD:
// blockSize = 8;
// break;
// case CC_GL_ATC_RGBA_EXPLICIT_ALPHA_AMD:
// blockSize = 16;
// break;
// case CC_GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD:
// blockSize = 16;
// break;
// default:
// break;
//}
//
///* pixelData point to the compressed data address */
//unsigned char *pixelData = (unsigned char *)data + sizeof(ATITCTexHeader) + header->bytesOfKeyValueData + 4;
//
///* caculate the dataLen */
//int width = _width;
//int height = _height;
//
//if (Configuration::getInstance()->supportsATITC()) //compressed data length
//{
// _dataLen = dataLen - sizeof(ATITCTexHeader) - header->bytesOfKeyValueData - 4;
// _data = static_cast<unsigned char*>(malloc(_dataLen * sizeof(unsigned char)));
// memcpy((void *)_data,(void *)pixelData , _dataLen);
//}
//else //decompressed data length
//{
// for (int i = 0; i < _numberOfMipmaps && (width || height); ++i)
// {
// if (width == 0) width = 1;
// if (height == 0) height = 1;
//
// _dataLen += (height * width *4);
//
// width >>= 1;
// height >>= 1;
// }
// _data = static_cast<unsigned char*>(malloc(_dataLen * sizeof(unsigned char)));
//}
//
///* load the mipmaps */
//int encodeOffset = 0;
//int decodeOffset = 0;
//width = _width; height = _height;
//
//for (int i = 0; i < _numberOfMipmaps && (width || height); ++i)
//{
// if (width == 0) width = 1;
// if (height == 0) height = 1;
//
// int size = ((width+3)/4)*((height+3)/4)*blockSize;
//
// if (Configuration::getInstance()->supportsATITC())
// {
// /* decode texture throught hardware */
//
// G::log("this is atitc H decode");
//
// switch (header->glInternalFormat)
// {
// case CC_GL_ATC_RGB_AMD:
// _renderFormat = Texture2D::PixelFormat::ATC_RGB;
// break;
// case CC_GL_ATC_RGBA_EXPLICIT_ALPHA_AMD:
// _renderFormat = Texture2D::PixelFormat::ATC_EXPLICIT_ALPHA;
// break;
// case CC_GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD:
// _renderFormat = Texture2D::PixelFormat::ATC_INTERPOLATED_ALPHA;
// break;
// default:
// break;
// }
//
// _mipmaps[i].address = (unsigned char *)_data + encodeOffset;
// _mipmaps[i].len = size;
// }
// else
// {
// /* if it is not gles or device do not support ATITC, decode texture by software */
//
// G::log("cocos2d: Hardware ATITC decoder not present. Using software decoder");
//
// int bytePerPixel = 4;
// unsigned int stride = width * bytePerPixel;
// _renderFormat = Texture2D::PixelFormat::RGBA8888;
//
// std::vector<unsigned char> decodeImageData(stride * height);
// switch (header->glInternalFormat)
// {
// case CC_GL_ATC_RGB_AMD:
// atitc_decode(pixelData + encodeOffset, &decodeImageData[0], width, height, ATITCDecodeFlag::ATC_RGB);
// break;
// case CC_GL_ATC_RGBA_EXPLICIT_ALPHA_AMD:
// atitc_decode(pixelData + encodeOffset, &decodeImageData[0], width, height, ATITCDecodeFlag::ATC_EXPLICIT_ALPHA);
// break;
// case CC_GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD:
// atitc_decode(pixelData + encodeOffset, &decodeImageData[0], width, height, ATITCDecodeFlag::ATC_INTERPOLATED_ALPHA);
// break;
// default:
// break;
// }
// _mipmaps[i].address = (unsigned char *)_data + decodeOffset;
// _mipmaps[i].len = (stride * height);
// memcpy((void *)_mipmaps[i].address, (void *)&decodeImageData[0], _mipmaps[i].len);
// decodeOffset += stride * height;
// }
// encodeOffset += (size + 4);
// width >>= 1;
// height >>= 1;
//}
///* end load the mipmaps */
//
return true;
}
bool Image::initWithPVRData(const unsigned char * data, ssize_t dataLen)
{
return initWithPVRv2Data(data, dataLen) || initWithPVRv3Data(data, dataLen);
}
bool Image::initWithWebpData(const unsigned char * data, ssize_t dataLen)
{
#if CC_USE_WEBP
bool ret = false;
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WP8) || (CC_TARGET_PLATFORM == CC_PLATFORM_WINRT)
G::log("WEBP image format not supported on WinRT or WP8");
#else
do
{
WebPDecoderConfig config;
if (WebPInitDecoderConfig(&config) == 0) break;
if (WebPGetFeatures(static_cast<const uint8_t*>(data), dataLen, &config.input) != VP8_STATUS_OK) break;
if (config.input.width == 0 || config.input.height == 0) break;
config.output.colorspace = MODE_RGBA;
_renderFormat = Texture2D::PixelFormat::RGBA8888;
_width = config.input.width;
_height = config.input.height;
_dataLen = _width * _height * 4;
_data = static_cast<unsigned char*>(malloc(_dataLen * sizeof(unsigned char)));
config.output.u.RGBA.rgba = static_cast<uint8_t*>(_data);
config.output.u.RGBA.stride = _width * 4;
config.output.u.RGBA.size = _dataLen;
config.output.is_external_memory = 1;
if (WebPDecode(static_cast<const uint8_t*>(data), dataLen, &config) != VP8_STATUS_OK)
{
free(_data);
_data = nullptr;
break;
}
ret = true;
} while (0);
#endif // (CC_TARGET_PLATFORM == CC_PLATFORM_WP8) || (CC_TARGET_PLATFORM == CC_PLATFORM_WINRT)
return ret;
#else
G::log("webp is not enabled, please enable it in ccConfig.h");
return false;
#endif // CC_USE_WEBP
}
bool Image::initWithRawData(const unsigned char * data, ssize_t dataLen, int width, int height, int bitsPerComponent, bool preMulti)
{
bool ret = false;
do
{
if (0 == width || 0 == height){
break;
}
_height = height;
_width = width;
_hasPremultipliedAlpha = preMulti;
_renderFormat = Texture2D::PixelFormat::RGBA8888;
// only RGBA8888 supported
int bytesPerComponent = 4;
_dataLen = height * width * bytesPerComponent;
_data = static_cast<unsigned char*>(malloc(_dataLen * sizeof(unsigned char)));
if (!_data){
break;
}
memcpy(_data, data, _dataLen);
ret = true;
} while (0);
return ret;
}
//#if (CC_TARGET_PLATFORM != CC_PLATFORM_IOS)
bool Image::saveToFile(const std::string& filename, bool isToRGB)
{
//only support for Texture2D::PixelFormat::RGB888 or Texture2D::PixelFormat::RGBA8888 uncompressed data
if (isCompressed() || (_renderFormat != Texture2D::PixelFormat::RGB888 && _renderFormat != Texture2D::PixelFormat::RGBA8888))
{
G::log("cocos2d: Image: saveToFile is only support for Texture2D::PixelFormat::RGB888 or Texture2D::PixelFormat::RGBA8888 uncompressed data for now");
return false;
}
bool ret = false;
do
{
if (filename.size() <= 4){
break;
}
std::string strLowerCasePath(filename);
for (unsigned int i = 0; i < strLowerCasePath.length(); ++i)
{
strLowerCasePath[i] = tolower(filename[i]);
}
if (std::string::npos != strLowerCasePath.find(".png"))
{
if (!saveImageToPNG(filename, isToRGB)){
break;
}
}
else if (std::string::npos != strLowerCasePath.find(".jpg"))
{
if (!saveImageToJPG(filename)){
break;
}
}
else
{
break;
}
ret = true;
} while (0);
return ret;
}
//#endif
bool Image::saveImageToPNG(const std::string& filePath, bool isToRGB)
{
bool ret = false;
do
{
FILE *fp;
png_structp png_ptr;
png_infop info_ptr;
png_colorp palette;
png_bytep *row_pointers;
fp = fopen(filePath.c_str(), "wb");
if (nullptr == fp){
break;
}
png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, nullptr, nullptr, nullptr);
if (nullptr == png_ptr)
{
fclose(fp);
break;
}
info_ptr = png_create_info_struct(png_ptr);
if (nullptr == info_ptr)
{
fclose(fp);
png_destroy_write_struct(&png_ptr, nullptr);
break;
}
#if (CC_TARGET_PLATFORM != CC_PLATFORM_BADA && CC_TARGET_PLATFORM != CC_PLATFORM_NACL)
if (setjmp(png_jmpbuf(png_ptr)))
{
fclose(fp);
png_destroy_write_struct(&png_ptr, &info_ptr);
break;
}
#endif
png_init_io(png_ptr, fp);
if (!isToRGB && hasAlpha())
{
png_set_IHDR(png_ptr, info_ptr, _width, _height, 8, PNG_COLOR_TYPE_RGB_ALPHA,
PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
}
else
{
png_set_IHDR(png_ptr, info_ptr, _width, _height, 8, PNG_COLOR_TYPE_RGB,
PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
}
palette = (png_colorp)png_malloc(png_ptr, PNG_MAX_PALETTE_LENGTH * sizeof (png_color));
png_set_PLTE(png_ptr, info_ptr, palette, PNG_MAX_PALETTE_LENGTH);
png_write_info(png_ptr, info_ptr);
png_set_packing(png_ptr);
row_pointers = (png_bytep *)malloc(_height * sizeof(png_bytep));
if(row_pointers == nullptr)
{
fclose(fp);
png_destroy_write_struct(&png_ptr, &info_ptr);
break;
}
if (!hasAlpha())
{
for (int i = 0; i < (int)_height; i++)
{
row_pointers[i] = (png_bytep)_data + i * _width * 3;
}
png_write_image(png_ptr, row_pointers);
free(row_pointers);
row_pointers = nullptr;
}
else
{
if (isToRGB)
{
unsigned char *tempData = static_cast<unsigned char*>(malloc(_width * _height * 3 * sizeof(unsigned char)));
if (nullptr == tempData)
{
fclose(fp);
png_destroy_write_struct(&png_ptr, &info_ptr);
free(row_pointers);
row_pointers = nullptr;
break;
}
for (int i = 0; i < _height; ++i)
{
for (int j = 0; j < _width; ++j)
{
tempData[(i * _width + j) * 3] = _data[(i * _width + j) * 4];
tempData[(i * _width + j) * 3 + 1] = _data[(i * _width + j) * 4 + 1];
tempData[(i * _width + j) * 3 + 2] = _data[(i * _width + j) * 4 + 2];
}
}
for (int i = 0; i < (int)_height; i++)
{
row_pointers[i] = (png_bytep)tempData + i * _width * 3;
}
png_write_image(png_ptr, row_pointers);
free(row_pointers);
row_pointers = nullptr;
if (tempData != nullptr)
{
free(tempData);
}
}
else
{
for (int i = 0; i < (int)_height; i++)
{
row_pointers[i] = (png_bytep)_data + i * _width * 4;
}
png_write_image(png_ptr, row_pointers);
free(row_pointers);
row_pointers = nullptr;
}
}
png_write_end(png_ptr, info_ptr);
png_free(png_ptr, palette);
palette = nullptr;
png_destroy_write_struct(&png_ptr, &info_ptr);
fclose(fp);
ret = true;
} while (0);
return ret;
}
bool Image::saveImageToJPG(const std::string& filePath)
{
#if CC_USE_JPEG
bool ret = false;
do
{
struct jpeg_compress_struct cinfo;
struct jpeg_error_mgr jerr;
FILE * outfile; /* target file */
JSAMPROW row_pointer[1]; /* pointer to JSAMPLE row[s] */
int row_stride; /* physical row width in image buffer */
cinfo.err = jpeg_std_error(&jerr);
/* Now we can initialize the JPEG compression object. */
jpeg_create_compress(&cinfo);
if ((outfile = fopen(filePath.c_str(), "wb")) == nullptr){
break;
}
jpeg_stdio_dest(&cinfo, outfile);
cinfo.image_width = _width; /* image width and height, in pixels */
cinfo.image_height = _height;
cinfo.input_components = 3; /* # of color components per pixel */
cinfo.in_color_space = JCS_RGB; /* colorspace of input image */
jpeg_set_defaults(&cinfo);
jpeg_set_quality(&cinfo, 90, TRUE);
jpeg_start_compress(&cinfo, TRUE);
row_stride = _width * 3; /* JSAMPLEs per row in image_buffer */
if (hasAlpha())
{
unsigned char *tempData = static_cast<unsigned char*>(malloc(_width * _height * 3 * sizeof(unsigned char)));
if (nullptr == tempData)
{
jpeg_finish_compress(&cinfo);
jpeg_destroy_compress(&cinfo);
fclose(outfile);
break;
}
for (int i = 0; i < _height; ++i)
{
for (int j = 0; j < _width; ++j)
{
tempData[(i * _width + j) * 3] = _data[(i * _width + j) * 4];
tempData[(i * _width + j) * 3 + 1] = _data[(i * _width + j) * 4 + 1];
tempData[(i * _width + j) * 3 + 2] = _data[(i * _width + j) * 4 + 2];
}
}
while (cinfo.next_scanline < cinfo.image_height)
{
row_pointer[0] = & tempData[cinfo.next_scanline * row_stride];
(void) jpeg_write_scanlines(&cinfo, row_pointer, 1);
}
if (tempData != nullptr)
{
free(tempData);
}
}
else
{
while (cinfo.next_scanline < cinfo.image_height) {
row_pointer[0] = & _data[cinfo.next_scanline * row_stride];
(void) jpeg_write_scanlines(&cinfo, row_pointer, 1);
}
}
jpeg_finish_compress(&cinfo);
fclose(outfile);
jpeg_destroy_compress(&cinfo);
ret = true;
} while (0);
return ret;
#else
G::log("jpeg is not enabled, please enable it in ccConfig.h");
return false;
#endif // CC_USE_JPEG
}
void Image::premultipliedAlpha()
{
//CCASSERT(_renderFormat == Texture2D::PixelFormat::RGBA8888, "The pixel format should be RGBA8888!");
//
//unsigned int* fourBytes = (unsigned int*)_data;
//for(int i = 0; i < _width * _height; i++)
//{
// unsigned char* p = _data + i * 4;
// fourBytes[i] = CC_RGB_PREMULTIPLY_ALPHA(p[0], p[1], p[2], p[3]);
//}
//
//_hasPremultipliedAlpha = true;
}
void Image::setPVRImagesHavePremultipliedAlpha(bool haveAlphaPremultiplied)
{
_PVRHaveAlphaPremultiplied = haveAlphaPremultiplied;
}
bool Image::ImageDataDecode(unsigned char *pData, unsigned int &uSize)
{
unsigned char pHeadOld[] = { 4, 8, 15, 16, 23, 42, 0, 0 };
unsigned char pHeadNew[] = { 15, 0, 192, 22, 15, 9, 0, 0 };
unsigned int lFileLength = uSize;
if ( lFileLength < sizeof(pHeadOld) || pData == NULL )
{
return false;
}
bool bEncryptionOld = true;
bool bEncryptionNew = true;
for ( int i = 0 ;i < sizeof(pHeadOld) - 2; ++i)
{
if ( pHeadOld[i] != pData[i] )
{
bEncryptionOld = false;
break;
}
}
for ( int i = 0 ;i < sizeof(pHeadNew) - 2; ++i)
{
if ( pHeadNew[i] != pData[i] )
{
bEncryptionNew = false;
break;
}
}
if( bEncryptionOld )
{
return DecryptionOld( pData, uSize );
}
else if( bEncryptionNew )
{
return DecryptionNew( pData, uSize );
}
else
{
return false;
}
}
bool Image::DecryptionOld(unsigned char *pData, unsigned int &uSize)
{
unsigned char pHead[] = { 4, 8, 15, 16, 23, 42, 0, 0 };
unsigned int lFileLength = uSize;
pHead[6] = pData[6];
pHead[7] = pData[7];
unsigned char* pDataDec = new unsigned char[lFileLength - sizeof(pHead)];
memcpy( pDataDec, &pData[sizeof(pHead)], sizeof(unsigned char) * (lFileLength - sizeof(pHead)));
for ( unsigned int i = 0; i < lFileLength - sizeof(pHead) - 20; i += 10 )
{
unsigned char cbDATA[10] = { pDataDec[i + 0], pDataDec[i + 1], pDataDec[i + 2], pDataDec[i + 3], pDataDec[i + 4],
pDataDec[i + 5], pDataDec[i + 6], pDataDec[i + 7], pDataDec[i + 8], pDataDec[i + 9] };
pDataDec[i + 0] = cbDATA[6];
pDataDec[i + 2] = cbDATA[9];
pDataDec[i + 4] = cbDATA[2];
pDataDec[i + 6] = cbDATA[4];
pDataDec[i + 9] = cbDATA[0];
pDataDec[i + 1] -= pHead[7];
pDataDec[i + 3] += pHead[6];
pDataDec[i + 5] += pHead[5];
pDataDec[i + 7] -= (pHead[6] + pHead[7]);
pDataDec[i + 8] -= (pHead[7] + pHead[5]);
}
memcpy( pData, pDataDec, sizeof(unsigned char) * (lFileLength - sizeof(pHead)));
uSize = (lFileLength - sizeof(pHead));
delete[] pDataDec;
pDataDec = NULL;
return true;
}
bool Image::DecryptionNew(unsigned char *pData, unsigned int &uSize)
{
unsigned char pHead[] = { 15, 0, 192, 22, 15, 9, 0, 0 };
unsigned int lFileLength = uSize;
pHead[6] = pData[6];
pHead[7] = pData[7];
unsigned char* pDataDec = new unsigned char[lFileLength - sizeof(pHead)];
memcpy( pDataDec, &pData[sizeof(pHead)], sizeof(unsigned char) * (lFileLength - sizeof(pHead)));
for ( unsigned int i = 0; i < lFileLength - sizeof(pHead) - 20; i += 17 )
{
unsigned char cbDATA[17] = { pDataDec[i + 0], pDataDec[i + 1], pDataDec[i + 2], pDataDec[i + 3], pDataDec[i + 4],
pDataDec[i + 5], pDataDec[i + 6], pDataDec[i + 7], pDataDec[i + 8], pDataDec[i + 9],
pDataDec[i + 10], pDataDec[i + 11], pDataDec[i + 12], pDataDec[i + 13], pDataDec[i + 14],
pDataDec[i + 15], pDataDec[i + 16]};
pDataDec[i + 0] = cbDATA[4];
pDataDec[i + 2] = cbDATA[6];
pDataDec[i + 4] = cbDATA[0];
pDataDec[i + 6] = cbDATA[9];
pDataDec[i + 9] = cbDATA[2];
pDataDec[i + 1] -= pHead[7];
pDataDec[i + 3] += pHead[6];
pDataDec[i + 5] -= pHead[5];
pDataDec[i + 7] += (pHead[6] + pHead[7]);
pDataDec[i + 8] += (pHead[7] + pHead[5]);
pDataDec[i + 10] = cbDATA[14];
pDataDec[i + 11] = cbDATA[13];
pDataDec[i + 12] = cbDATA[11];
pDataDec[i + 13] = cbDATA[12];
pDataDec[i + 14] = cbDATA[10];
pDataDec[i + 15] -= pHead[4];
pDataDec[i + 16] += pHead[2];
}
memcpy( pData, pDataDec, sizeof(unsigned char) * (lFileLength - sizeof(pHead)));
uSize = (lFileLength - sizeof(pHead));
delete[] pDataDec;
pDataDec = NULL;
return true;
}
| [
"junee1122@163.com"
] | junee1122@163.com |
7dfc3145167ecfdeadb54aa63784479fad808693 | 5ac13fa1746046451f1989b5b8734f40d6445322 | /minimangalore/Nebula2/code/contrib/nrubyserver/src/ruby/nrubyrun.cc | ac6268db5006208e762eca4832e1217480b1aa8e | [] | no_license | moltenguy1/minimangalore | 9f2edf7901e7392490cc22486a7cf13c1790008d | 4d849672a6f25d8e441245d374b6bde4b59cbd48 | refs/heads/master | 2020-04-23T08:57:16.492734 | 2009-08-01T09:13:33 | 2009-08-01T09:13:33 | 35,933,330 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,316 | cc | #define N_IMPLEMENTS nRubyServer
//--------------------------------------------------------------------
// nrubyrun.cc -- Command evaluation and passing to ruby
//
// (C) 2003/4 Thomas Miskiewicz tom@3d-inferno.com
//--------------------------------------------------------------------
#include <stdlib.h>
#include <stdio.h>
#include "ruby.h"
#include "ruby/nrubyserver.h"
#include "kernel/nfileserver2.h"
#include "kernel/narg.h"
extern "C" void free_d(VALUE);
extern "C" VALUE cNRoot;
//--------------------------------------------------------------------
/**
Prompt
Pass a prompt string to the interactive shell.
Will be called each frame so I omitted any fancy stuff
- 02-01-04 tom created
*/
//--------------------------------------------------------------------
nString nRubyServer::Prompt()
{
// no custom prompt as Prompt will be called every frame :-(
nString prompt;
prompt.Append("> ");
return prompt;
}
//--------------------------------------------------------------------
/**
Run
Evaluate a ruby command string
Result will be empty, as any errors get printed out by ruby itself for
ease of use.
- 02-01-04 Tom created
- 11-02-04 Tom error printing for N2
*/
//--------------------------------------------------------------------
bool nRubyServer::Run(const char *cmd_str, nString& result)
{
result.Clear();
int ret = 0;
rb_p(rb_eval_string_protect((char *)cmd_str, &ret));
if (ret)
{
//same as rb_p but without rb_default_rs
if (this->GetFailOnError())
{
n_error(RSTRING(rb_obj_as_string(rb_inspect(ruby_errinfo)))->ptr);
}
else
{
n_printf(RSTRING(rb_obj_as_string(rb_inspect(ruby_errinfo)))->ptr);
//n_printf(rb_default_rs);
}
return false;
}
return true;
}
#ifdef __cplusplus
extern "C" {
#endif
//--------------------------------------------------------------------
/**
NArg2RubyObj
Converts a nebula argument into an ruby native object.
TODO implement LIST Type for nebula 2
- 02-01-04 Tom created
- 11-02-04 Tom N2 args
*/
//--------------------------------------------------------------------
VALUE NArg2RubyObj(nArg *a)
{
switch (a->GetType()) {
case nArg::Void:
return Qnil;
case nArg::Int:
return INT2NUM(a->GetI());
case nArg::Float:
return rb_float_new(a->GetF());
case nArg::String:
return rb_str_new2(a->GetS());
case nArg::Bool:
return (a->GetB()==true?Qtrue:Qfalse);
case nArg::Object:
{
nRoot* o = (nRoot *) a->GetO();
if(o)
{
VALUE tst = Data_Wrap_Struct(cNRoot, 0, free_d, (void *)o);
return tst;
}
else
{
return Qnil;
}
}
//case nArg::ARGTYPE_CODE:
// return rb_str_new2(a->GetC());
case nArg::List:
{
nArg *args;
int num_args = a->GetL(args);
VALUE result = rb_ary_new2(num_args);
for(int i = 0; i < num_args; i++)
{
rb_ary_push(result, NArg2RubyObj(&args[i]));
}
return result;
}
default:
return Qundef;
}
return Qundef;
}
#ifdef __cplusplus
}
#endif
//--------------------------------------------------------------------
/**
RunCommand
Execute a nebula command in ruby
- 02-01-04 Tom created not tested to be done
- 11-02-04 Tom error printing for N2
*/
//--------------------------------------------------------------------
bool nRubyServer::RunCommand(nCmd *c)
{
//TODO
nArg *arg;
int num_args = c->GetNumInArgs();
c->Rewind();
VALUE rargs = Qfalse;
// handle single return args (no need to create list)
if (1 == num_args)
{
arg = c->In();
rargs = NArg2RubyObj(arg);
}
else
{
// rargs = rb_ary_new();
// more then one in arg, create an Array
int i;
for (i=0; i<num_args; i++)
{
arg = c->In();
rb_ary_push(rargs, NArg2RubyObj(arg));
//rargs[i] = NArg2RubyObj(arg);
}
}
//rb_str_new2(c->In()->GetS());
rb_p(rb_funcall2(rb_mKernel,rb_intern(c->In()->GetS()), num_args, &rargs));
if (NIL_P(ruby_errinfo))
{
//same as rb_p but without rb_default_rs
if (this->GetFailOnError())
{
n_error(RSTRING(rb_obj_as_string(rb_inspect(ruby_errinfo)))->ptr);
}
else
{
n_printf(RSTRING(rb_obj_as_string(rb_inspect(ruby_errinfo)))->ptr);
//n_printf(rb_default_rs);
}
return false;
}
return true;
}
//--------------------------------------------------------------------
/**
RunScript
Load and evaluate a ruby script then switches over to interactive mode
Result is left empty as errors get printed out by nebula itself for
ease of use.
- 18-12-03 Tom created
- 11-02-04 Tom error printing for N2
*/
//--------------------------------------------------------------------
bool nRubyServer::RunScript(const char *fname, nString& result)
{
char buf[N_MAXPATH];
result.Clear();
strcpy(buf,(kernelServer->GetFileServer()->ManglePath(fname).Get()));
this->print_error = true;
ruby_script(buf);
//rb_load_file(buf);
int ret =0;
rb_load_protect(rb_str_new2(buf), 0, &ret);
if (ret)
{
//rb_p(ruby_errinfo);
//same as rb_p but without rb_default_rs
if (this->GetFailOnError())
{
n_error(RSTRING(rb_obj_as_string(rb_inspect(ruby_errinfo)))->ptr);
}
else
{
n_printf(RSTRING(rb_obj_as_string(rb_inspect(ruby_errinfo)))->ptr);
//n_printf(rb_default_rs);
}
return false;
}
return true;
}
//--------------------------------------------------------------------
/**
@brief Invoke a Ruby function.
*/
bool nRubyServer::RunFunction(const char *funcName, nString& result)
{
nString cmdStr = funcName;
cmdStr.Append("()");
return this->Run(cmdStr.Get(), result);
}
//--------------------------------------------------------------------
/**
Trigger
Check for shutdown flag
- 18-12-03 Tom created
- 01-05-04 Tom cleaned up
*/
//--------------------------------------------------------------------
bool nRubyServer::Trigger(void)
{
if(!GetQuitRequested() && !finished)
{
return true;
}
else
{
return false;
}
}
//--------------------------------------------------------------------
// EOF
//--------------------------------------------------------------------
| [
"BawooiT@d1c0eb94-fc07-11dd-a7be-4b3ef3b0700c"
] | BawooiT@d1c0eb94-fc07-11dd-a7be-4b3ef3b0700c |
f593ca022eebe80abf5819d6e3b12e1016ac4626 | 8eeb53487472a9992233f2335815773c2a42e474 | /04_04_12_EdgeWeightedCycleFinderTopological.cpp | 4c0fd92352f48800a7239334197e4fdf0a5902c0 | [
"MIT"
] | permissive | kanlihu/Algos_4th_Solutions | 2ba29ae8d0332552063615f644568657f7322a94 | 049e8b2082414ac544458f211748c9b2bd95f43e | refs/heads/master | 2023-05-14T15:01:03.583116 | 2020-01-27T03:06:24 | 2020-01-27T03:06:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,072 | cpp | //
// Created by Phong Cao on 2019-04-01.
//
// uncomment to disable assert()
// #define NDEBUG
#include <cassert>
#include <iostream>
#include <cstdio>
#include <iomanip>
#include <ios>
#include <sstream>
#include <fstream>
#include <string>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <functional>
#include <vector>
#include <map>
#include <unordered_map>
#include <set>
#include <unordered_set>
#include <list>
#include <forward_list>
#include <deque>
#include <queue>
#include <stack>
#include <iterator>
#include <utility>
#include <algorithm>
#include <memory>
#include <cctype>
#include <stdexcept>
#include <limits>
#include <numeric>
//----<iostream>------------//
using std::cout;
using std::cin;
using std::endl;
using std::ostream;
using std::istream;
//----<cstdio>--------------//
using std::printf;
using std::fprintf;
using std::sprintf;
using std::snprintf;
//----<iomanip>-------------//
using std::setprecision;
using std::setw;
//----<ios>-----------------//
using std::hex;
using std::dec;
using std::oct;
using std::fixed;
//----<sstream>-------------//
using std::ostringstream;
using std::istringstream;
//----<fstream>-------------//
using std::ofstream;
using std::ifstream;
//----<string>--------------//
using std::getline;
using std::string;
using std::to_string;
using std::stoi;
using std::stol;
//----<cmath>---------------//
using std::sqrt;
using std::pow;
using std::log; // log( <arg> )
using std::exp; // e ^ <arg>
using std::abs;
//----<cstdlib>-------------//
using std::rand;
using std::srand;
//----<ctime>---------------//
using std::time;
//----<functional>----------//
using std::hash;
using std::greater; // lhs > rhs. Used for MinPQ
using std::less; // lhs < rhs. Used for MaxPQ. Default for priority_queue<>
using std::less_equal;
using std::greater_equal;
//----<vector>--------------//
using std::vector; // Unordered Array
//----<map>-----------------//
using std::map; // Ordered Map (Red-Black Tree)
//----<unordered_map>-------//
using std::unordered_map; // HashMap (SeparateChainingHashST)
//----<set>-----------------//
using std::set; // Ordered Set (Red-Black Tree)
//----<unordered_set>-------//
using std::unordered_set; // HashSet (SeparateChainingHashST)
//----<list>----------------//
using std::list; // Doubly-Linked List with size() ( O( 1 ) )
//----<forward_list>--------//
using std::forward_list; // Singly-Linked List without size() function ( so O( N ) if we need to get size() )
//----<deque>---------------//
using std::deque; // Vector of fixed-size Vectors: 1 fixed-size vector for each end of the deque
//----<queue>---------------//
using std::queue; // Non-Iterable & Use std::deque as underlying data structure
using std::priority_queue; // MaxPQ (MaxHeap) & Non-Iterable.
// // => Pass std::greater<> as template params to create MinPQ (MinHeap)
//----<stack>---------------//
using std::stack; // Non-Iterable & Use std::deque as underlying data structure
//----<iterator>------------//
using std::next; // Return an advanced iter without changing original iter
using std::prev; // Return an decremented iter without changin original iter
using std::distance; // Calculate distance between 2 iterators
//----<utility>-------------//
using std::pair;
//----<algorithm>-----------//
using std::fill;
using std::max;
using std::min;
using std::find;
using std::reverse;
using std::sort;
//----<memory>--------------//
using std::make_shared;
using std::shared_ptr;
//----<cctype>--------------//
using std::isalnum;
using std::isalpha;
using std::islower;
using std::isupper;
using std::isdigit;
using std::isspace; // Check whether char is whitespace character (space, newline, tab, etc. )
using std::isblank; // Check whether char is blank character ( space or tab )
using std::tolower;
using std::toupper;
//----<stdexcept>-----------//
using std::runtime_error;
using std::invalid_argument;
using std::out_of_range;
//----<limits>--------------//
using std::numeric_limits;
//----<numeric>-------------//
using std::iota;
using std::gcd;
using std::lcm;
//--------------------------//
class DirectedEdge {
private:
int v = 0;
int w = 0;
double weight = numeric_limits< double >::infinity();
public:
DirectedEdge() {
// not implemented
}
DirectedEdge( int v, int w, double weight )
: v( v ),
w( w ),
weight( weight )
{
// not implemented
}
DirectedEdge( const DirectedEdge& e )
: v( e.v ),
w( e.w ),
weight( e.weight )
{
// not implemented
}
virtual ~DirectedEdge() {
// not implemented
}
int getFrom() const {
return v;
}
int getTo() const {
return w;
}
double getWeight() const {
return weight;
}
operator bool() const {
return weight != numeric_limits< double >::infinity();
}
string toString() const {
ostringstream oss;
oss << *this;
return oss.str();
}
friend ostream& operator <<( ostream& out, const DirectedEdge& e ) {
out << fixed << setprecision( 2 );
out << " | " << e.v << " : " << e.w << " : " << e.weight << " | ";
return out;
}
};
class EdgeWeightedDigraph {
private:
int V = 0;
int E = 0;
vector< forward_list< DirectedEdge > > adj;
public:
EdgeWeightedDigraph( int V )
: V( V ),
adj( V )
{
// not implemented
}
virtual ~EdgeWeightedDigraph() {
// not implemented
}
int getV() const {
return V;
}
int getE() const {
return E;
}
forward_list< DirectedEdge > getAdj( int v ) const {
return adj[ v ];
}
forward_list< DirectedEdge > getEdges() const {
forward_list< DirectedEdge > all;
for ( int v = 0; v < getV(); ++v ) {
for ( DirectedEdge e : getAdj( v ) ) {
all.push_front( e );
}
}
return all;
}
void addEdge( DirectedEdge e ) {
adj[ e.getFrom() ].push_front( e );
++E;
}
string toString() const {
ostringstream oss;
oss << *this;
return oss.str();
}
friend ostream& operator <<( ostream& out, const EdgeWeightedDigraph& G ) {
out << "\n| V : " << G.getV() << " ; E : " << G.getE() << " ; adj : \n";
for ( int v = 0; v < G.getV(); ++v ) {
out << "\n| v : " << v << " : ";
for ( const DirectedEdge& e : G.getAdj( v ) ) {
out << e << ", ";
}
out << " | ";
}
return out;
}
};
class DirectedCycle {
private:
vector< bool > marked;
vector< DirectedEdge > edgeTo;
vector< bool > onStack;
stack< DirectedEdge > cycle;
void dfs( const EdgeWeightedDigraph& G, int v ) {
marked[ v ] = true;
onStack[ v ] = true;
for ( DirectedEdge e : G.getAdj( v ) ) {
int w = e.getTo();
if ( hasCycle() ) {
return;
} else if ( ! marked[ w ] ) {
edgeTo[ w ] = e;
dfs( G, w );
} else if ( onStack[ w ] ) {
// cycle detected
for ( int x = v; x != w; x = edgeTo[ x ].getFrom() ) {
if ( edgeTo[ x ] ) {
cycle.push( edgeTo[ x ] );
}
}
cycle.push( e );
}
}
onStack[ v ] = false;
}
public:
DirectedCycle( const EdgeWeightedDigraph& G )
: marked( G.getV(), false ),
edgeTo( G.getV() ),
onStack( G.getV(), false )
{
for ( int v = 0; v < G.getV(); ++v ) {
if ( ! marked[ v ] ) {
dfs( G, v );
}
}
}
virtual ~DirectedCycle() {
// not implemented
}
stack< DirectedEdge > getCycle() const {
return cycle;
}
bool hasCycle() const {
return ! cycle.empty();
}
string toString() const {
ostringstream oss;
oss << *this;
return oss.str();
}
friend ostream& operator <<( ostream& out, const DirectedCycle& dCycle ) {
out << "\ncycle:\n";
stack< DirectedEdge > s = dCycle.getCycle();
while ( ! s.empty() ) {
out << s.top() << ", ";
s.pop();
}
return out;
}
};
class DepthFirstOrder {
private:
vector< bool > marked;
queue< int > pre;
queue< int > post;
stack< int > reversePost;
void dfs( const EdgeWeightedDigraph& G, int v ) {
marked[ v ] = true;
pre.push( v );
for ( const DirectedEdge& e : G.getAdj( v ) ) {
int w = e.getTo();
if ( ! marked[ w ] ) {
dfs( G, w );
}
}
post.push( v );
reversePost.push( v );
}
public:
DepthFirstOrder( const EdgeWeightedDigraph& G )
: marked( G.getV(), false )
{
for ( int v = 0; v < G.getV(); ++v ) {
if ( ! marked[ v ] ) {
dfs( G, v );
}
}
}
virtual ~DepthFirstOrder() {
// not implemented
}
queue< int > getPre() const {
return pre;
}
queue< int > getPost() const {
return post;
}
stack< int > getReversePost() const {
return reversePost;
}
string toString() const {
ostringstream oss;
oss << *this;
return oss.str();
}
friend ostream& operator <<( ostream& out, const DepthFirstOrder& dfo ) {
out << "\npre:\n";
queue< int > q = dfo.getPre();
while ( ! q.empty() ) {
out << q.front() << ", ";
q.pop();
}
out << "\npost:\n";
q = dfo.getPost();
while ( ! q.empty() ) {
out << q.front() << ", ";
q.pop();
}
out << "\nreversePost:\n";
stack< int > s = dfo.getReversePost();
while ( ! s.empty() ) {
out << s.top() << ", ";
s.pop();
}
return out;
}
};
class Topological {
private:
stack< int > order;
public:
Topological( const EdgeWeightedDigraph& G ) {
DirectedCycle cycleFinder( G );
if ( ! cycleFinder.hasCycle() ) {
DepthFirstOrder dfo( G );
order = dfo.getReversePost();
}
}
virtual ~Topological() {
// not implemented
}
stack< int > getOrder() const {
return order;
}
bool isDAG() const {
return ! order.empty();
}
string toString() const {
ostringstream oss;
oss << *this;
return oss.str();
}
friend ostream& operator <<( ostream& out, const Topological& topo ) {
out << "\ntopo:\n";
stack< int > s = topo.getOrder();
while ( ! s.empty() ) {
out << s.top() << ", ";
s.pop();
}
return out;
}
};
int main( int argc, char ** argv ) {
double graphArr[ 13 ][ 3 ] = {
{ 5, 4, 0.35 },
{ 4, 7, 0.37 },
{ 5, 7, 0.28 },
{ 5, 1, 0.32 },
{ 4, 0, 0.38 },
{ 0, 2, 0.26 },
{ 3, 7, 0.39 },
{ 1, 3, 0.29 },
{ 7, 2, 0.34 },
{ 6, 2, 0.40 },
{ 3, 6, 0.52 },
{ 6, 0, 0.58 },
{ 6, 4, 0.93 }
};
EdgeWeightedDigraph ewDigraph( 8 );
for ( int i = 0; i < 13; ++i ) {
DirectedEdge e( (int)graphArr[ i ][ 0 ], (int)graphArr[ i ][ 1 ], graphArr[ i ][ 2 ] );
ewDigraph.addEdge( e );
}
cout << "DEBUG: ewDigraph: \n" << ewDigraph << endl;
Topological topo( ewDigraph );
cout << "DEBUG: topo: \n" << topo << endl;
return 0;
}
| [
"phongvcao@phongvcao.com"
] | phongvcao@phongvcao.com |
bb51085f478b4da1e87338cfe3a8611b72404e31 | 84f3a4a858afa1a1f494556643b29aa706292261 | /OpenMoCap/src/Gui/Widgets/POIsImageWidget.h | 8d262d9b53132a43682d087dd8abfb3bb7e58078 | [] | no_license | jamieforth/OpenMoCap | ac44a86554983030ed0448855720084e4488d73b | 45eaa1347d3160719147e52a20279937cc199837 | refs/heads/master | 2020-03-07T00:12:16.479130 | 2014-08-02T21:50:53 | 2014-08-02T21:50:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 535 | h | #ifndef POISIMAGEWIDGET_H_
#define POISIMAGEWIDGET_H_
#include "../../Tracking/AbstractPOIFinder.h"
#include "ImageWidget.h"
class POIsImageWidget: public ImageWidget {
Q_OBJECT
public:
POIsImageWidget(QWidget* parent, int width, int height);
~POIsImageWidget();
void refreshImage(IplImage* image, vector<POI> POIs);
POI getPOIAtPosition(int x, int y);
private:
vector<POI> _POIs;
void paintEvent(QPaintEvent *paintEvent);
void drawPOIs(QPainter *painter);
};
#endif /* POIS IMAGEWIDGET_H_ */
| [
"davidflam@gmail.com@1b195e6b-c8d0-be63-1615-5224d025ebd8"
] | davidflam@gmail.com@1b195e6b-c8d0-be63-1615-5224d025ebd8 |
7cbc99ac4ebd08fbc69f2643be6d70c22c6edec7 | 0d74161c499ac2287b1d0ecb444aa92b220cda11 | /httpserver/hostMapper.cpp | 3051cf48779f5c70a06592116327238ec7059cc0 | [
"MIT"
] | permissive | ondra-novak/jsonrpcserver | 70e19c7d1f269c109412764e7ac18706479f98cb | 878f5f7a981a326dcb39d43d0bb5c4eac213a65c | refs/heads/master | 2020-04-04T07:34:52.097615 | 2019-12-13T08:42:59 | 2019-12-13T08:42:59 | 27,509,171 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,321 | cpp | #include "hostMapper.h"
#include "lightspeed/base/text/textParser.tcc"
#include "lightspeed/base/memory/smallAlloc.h"
#include "lightspeed/base/containers/map.tcc"
namespace BredyHttpSrv {
void HostMapper::registerUrl(ConstStrA baseUrlFormat)
{
processUrl(baseUrlFormat, false);
}
void HostMapper::processUrl(ConstStrA baseUrlFormat, bool unreg)
{
TextParser<char, SmallAlloc<256> > parser;
StringA data;
ConstStrA host;
ConstStrA path;
ConstStrA protocol;
ConstStrA targetVPath;
if (parser(" %[a-zA-Z0-9]1://%[a-zA-Z0-9-._:]2%%[/](*)[*^> ]3 -> %4 ", baseUrlFormat)) {
data = baseUrlFormat;
protocol = ConstStrA(parser[1].str()).map(data);
host = ConstStrA(parser[2].str()).map(data);
path = ConstStrA(parser[3].str()).map(data);
targetVPath = ConstStrA(parser[4].str()).map(data);
}
else if (parser(" %[a-zA-Z0-9]1://%[a-zA-Z0-9-._:]2%%[/](*)[^> ]3 ", baseUrlFormat)) {
data = baseUrlFormat;
protocol = ConstStrA(parser[1].str()).map(data);
host = ConstStrA(parser[2].str()).map(data);
path = ConstStrA(parser[3].str()).map(data);
targetVPath = (path.empty() || path.tail(1) == ConstStrA("/"))?ConstStrA("/"):ConstStrA();
}
else {
throw MappingSyntaxError(THISLOCATION, baseUrlFormat);
}
if (host == "%") {
if (unreg)
defaultMapping = Mapping();
else
defaultMapping = Mapping(data, protocol, path, targetVPath);
}
else {
if (unreg) {
mapping.erase(host);
}
else {
mapping.replace(host, Mapping(data, protocol, path, targetVPath));
}
}
}
void HostMapper::registerHost(ConstStrA host, ConstStrA protocol, ConstStrA path, ConstStrA targetVPath)
{
StringA data = host + protocol + path + targetVPath;
host = data.head(host.length());
protocol = data.mid(host.length(), protocol.length());
path = data.mid(host.length() + protocol.length(), path.length());
targetVPath = data.mid(host.length() + protocol.length() + path.length(), targetVPath.length());
if (host == "%") defaultMapping = Mapping(data, protocol, path, targetVPath);
else mapping.replace(host, Mapping(data, protocol, path, targetVPath));
}
StringKey<StringA> HostMapper::mapRequest(ConstStrA host, ConstStrA path)
{
const Mapping *mp = mapping.find(host);
if (mp == 0)
mp = &defaultMapping;
if (path.head(mp->path.length()) != mp->path)
throw NoMappingException(THISLOCATION, StringA(host+path));
if (mp->targetVPath.empty())
return StringKey<StringA>(ConstStrA(path.offset(mp->path.length())));
else
return StringKey<StringA>(StringA(mp->targetVPath + path.offset(mp->path.length())));
}
LightSpeed::StringA HostMapper::getBaseUrl(ConstStrA host)
{
const Mapping *mp = mapping.find(host);
if (mp == 0)
mp = &defaultMapping;
return StringA(mp->protocol + ConstStrA("://") + host + mp->path);
}
void HostMapper::unregisterUrl(ConstStrA mapLine)
{
processUrl(mapLine, true);
}
LightSpeed::StringA HostMapper::getAbsoluteUrl(ConstStrA host, ConstStrA curPath, ConstStrA relpath)
{
const Mapping *mp = mapping.find(host);
if (mp == 0)
mp = &defaultMapping;
StringA tmp;
if (relpath.empty()) {
//if relpath is empty, we can directly create url using curent path
//combine protocol://host/curpath
return StringA(mp->protocol + ConstStrA("://") + host + curPath);
}
else if (relpath.head(2) == ConstStrA("+/")) {
natural q = relpath.find('?');
natural p = curPath.find('?');
ConstStrA query;
if (p != naturalNull) {
query = curPath.offset(p);
curPath = curPath.head(p);
};
if (q != naturalNull) query.empty();
return StringA(mp->protocol + ConstStrA("://") + host + curPath + relpath.offset(1)+query);
}
else if (relpath[0] == '/') {
//path relative to host root
//path must respect current vpath mapping
//so if host's root is mapped to some vpath, we need to remove that part from the relpath
//check whether this is valid request
//in context of host, function cannot create url to the paths outside of mapping
if (relpath.head(mp->targetVPath.length()) == mp->targetVPath) {
//now adjust host's relpath
relpath = relpath.offset(mp->targetVPath.length());
//no add host's path from the mapping
if (!mp->path.empty()) {
//check path for ending slash
bool endslash = mp->path.tail(1) == ConstStrA('/');
//check relpath for starting slash
bool startslash = relpath.head(1) == ConstStrA('/');
//if both have slash
if (endslash && startslash) {
//remove starting slash and combine path
tmp = mp->path + relpath.offset(1);
}
//neither both have slash
else if (!endslash && !startslash) {
//put slash between path and relpath
tmp = mp->path + ConstStrA('/') + relpath;
}
else {
//combine paths
tmp = mp->path + relpath;
}
relpath = tmp;
}
//no we have path
// 1. removed vpath offset from mapping
// 2. added host's offset from mapping
// (reversed mapping)
//finally, check, whether there is slash at begging
if (relpath.head(1) == ConstStrA('/')) {
//if not. pretend one '/'
tmp = ConstStrA("/") + relpath;
relpath = tmp;
}
//combine protocol://host/relpath
return StringA(mp->protocol + ConstStrA("://") + host + relpath);
}
else {
throw NoMappingException(THISLOCATION,relpath);
}
}
else {
//remove query: /aa/bbb/c?x=0 -> /aa/bbb/c
natural query = curPath.find('?');
if (query != naturalNull) curPath = curPath.head(query);
//remove filename: /aa/bbb/c -> /aa/bbb/
natural slash = curPath.findLast('/');
curPath = curPath.head(slash + 1);
//combine protocol://host/path/relpath
return StringA(mp->protocol + ConstStrA("://") + host + curPath + relpath);
}
}
void HostMapper::NoMappingException::message(ExceptionMsg &msg) const
{
msg("No mapping for given host and path: %1") << path;
}
LightSpeed::ConstStrA HostMapper::MappingExistException::getHost() const
{
return host;
}
void HostMapper::MappingExistException::message(ExceptionMsg &msg) const
{
msg("Mapping already exists for the host %1") << host;
}
void HostMapper::MappingSyntaxError::message(ExceptionMsg &msg) const
{
msg("Host mapping - syntax error: %1") << line;
}
}
| [
"ondra-novak@email.cz"
] | ondra-novak@email.cz |
2a41fa71d58b876c3e5c709c8ca45c400a6687b6 | cd11d2e3aa7e050554cd745dcf713abb7a11e929 | /XGames/Prince/Classes/TowerModule/LayerTreasure.h | c2577896b7a99fabf0cff3b4d3dd1bd2f1adcee1 | [] | no_license | daxingyou/XGame | 3cdc2c9ab06be55ed80aed6c99cb6aa77073b139 | 5fd0140bc398edc374306067bb258b323604b9cb | refs/heads/main | 2023-04-16T21:23:20.368638 | 2021-04-20T16:35:17 | 2021-04-20T16:35:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,048 | h | /*******************************************************************
* Copyright(c) 2015 zcjoy All rights reserved.
*
* FileName: LayerTreasure
* Description: 发现宝藏界面;
* Version: 1.0
* Author: Phil
* Date: 04/20/2015
* Others:
*
******************************************************************/
#ifndef LayerTreasure_h__
#define LayerTreasure_h__
#include "TowerDef.h"
#include "Utils/Observer.h"
#include "LayerTrail.h"
class TreasureNode : public Node
{
public:
~TreasureNode();
static TreasureNode* create(int nTemplateId, int nCount, string strName);
virtual bool init(int nTemplateId, int nCount, string strName);
void setOpened(bool bOpened);
bool isOpend() { return m_bIsOpend; };
int getCount() { return m_nCount; };
private:
TreasureNode();
void initUI(int nTemplateId, int nCount, string strName);
private:
UI_Treasure_Node m_ui;
bool m_bIsOpend;
int m_nCount;
};
class LayerTrail;
class LayerTreasure : public Layer, public Observer
{
public:
~LayerTreasure(void);
static LayerTreasure* create();
virtual bool init();
virtual void onEnter();
virtual void onExit();
virtual void update(float delta);
virtual void updateSelf(void* pData);
void onBtnClicked( Ref* ref, Widget::TouchEventType type, int nWidgetName );
void refreshTreasure(multimap<int, int> mapInfo);
void openTreasure();
void checkIsTreasureOpend(float delta);
// 设置父节点;
void setParent(LayerTrail* parent) { m_pParent = parent; };
private:
LayerTreasure(void);
void showTouchContinue();
void onLayerTouched(Ref* ref, Widget::TouchEventType type);
void initUI();
void updateGold();
private:
UI_Treasure m_ui;
multimap<int, TreasureNode*> m_mapTreasure;
// 父节点;
LayerTrail* m_pParent;
vector<int> m_vcOpendTreasure;
bool m_bIsFirstEnter;
Armature* _armatureLight;
enum UI_TREASURE_WIDGET
{
Lab_Gold,
Btn_Close,
Btn_Open,
Lab_Cost,
Btn_Refresh,
Lab_Refresh_Cost
};
};
#endif // LayerTreasure_h__
| [
"635459675@qq.com"
] | 635459675@qq.com |
36cabe42bed37d41dc61cb43f357b2bac5e27de6 | 188dbc4be7773a160d4ae456d9822d278ed60ac4 | /C++ primer plus/第二章/2.2/1.2.cpp | 91c82667ea9ad7e97dd9a124fca3a57e4fef2159 | [] | no_license | lyb1234567/C-plus-plus- | 9ec8e66f460a158d9b7f51e0853a7019b19fcddc | 11b06de5620d789d0df5be99f0800d4dd016e23b | refs/heads/master | 2023-08-25T16:05:45.317462 | 2021-09-26T09:41:02 | 2021-09-26T09:41:02 | 386,282,954 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 271 | cpp | #include<iostream>
using namespace std;
int longmulti(int);
int main()
{
int long_unit;
cout << "Input a unit of long:";
cin >> long_unit;
cout << "The output will be:" << longmulti(long_unit);
return 0;
}
int longmulti(int long_unit)
{
return 220 * long_unit;
} | [
"1536635817@qq.com"
] | 1536635817@qq.com |
70ee3c7c04d1d70ffab07f870b4e51ac2b403955 | 68c7a52a3ebed35730308df2f262f86e7dadca49 | /cgi-bin/core/emathfun.c | abdbeae57007b000086a8d2795976e3bb27ffde6 | [] | permissive | iskander-hr/wpkbd | 8d28ee1c7644d9e29b8280a5e8be9de066d1005f | f787e7afd835a70ff93e66c44f2a7fb04a5cdbc4 | refs/heads/master | 2023-02-10T15:29:28.910940 | 2020-03-27T03:17:06 | 2020-03-27T03:17:06 | 250,427,881 | 0 | 0 | BSD-3-Clause | 2023-01-31T02:31:32 | 2020-03-27T03:08:05 | C | UTF-8 | C++ | false | false | 28,752 | c | /*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.30 08/16/14 */
/* */
/* EXTENDED MATH FUNCTIONS MODULE */
/*******************************************************/
/*************************************************************/
/* Purpose: Contains the code for numerous extended math */
/* functions including cos, sin, tan, sec, csc, cot, acos, */
/* asin, atan, asec, acsc, acot, cosh, sinh, tanh, sech, */
/* csch, coth, acosh, asinh, atanh, asech, acsch, acoth, */
/* mod, exp, log, log10, sqrt, pi, deg-rad, rad-deg, */
/* deg-grad, grad-deg, **, and round. */
/* */
/* Principal Programmer(s): */
/* Brian L. Dantes */
/* */
/* Contributing Programmer(s): */
/* Gary D. Riley */
/* */
/* Revision History: */
/* */
/* 6.30: Removed conditional code for unsupported */
/* compilers/operating systems (IBM_MCW and */
/* MAC_MCW). */
/* */
/* Support for long long integers. */
/* */
/* Renamed EX_MATH compiler flag to */
/* EXTENDED_MATH_FUNCTIONS. */
/* */
/* Added const qualifiers to remove C++ */
/* deprecation warnings. */
/* */
/*************************************************************/
#include "setup.h"
#include "argacces.h"
#include "envrnmnt.h"
#include "extnfunc.h"
#include "router.h"
#include "emathfun.h"
#if EXTENDED_MATH_FUNCTIONS
#include <math.h>
/***************/
/* DEFINITIONS */
/***************/
#ifndef PI
#define PI 3.14159265358979323846
#endif
#ifndef PID2
#define PID2 1.57079632679489661923 /* PI divided by 2 */
#endif
#define SMALLEST_ALLOWED_NUMBER 1e-15
#define dtrunc(x) (((x) < 0.0) ? ceil(x) : floor(x))
/***************************************/
/* LOCAL INTERNAL FUNCTION DEFINITIONS */
/***************************************/
static int SingleNumberCheck(void *,const char *,double *);
static int TestProximity(double,double);
static void DomainErrorMessage(void *,const char *);
static void ArgumentOverflowErrorMessage(void *,const char *);
static void SingularityErrorMessage(void *,const char *);
static double genacosh(double);
static double genasinh(double);
static double genatanh(double);
static double genasech(double);
static double genacsch(double);
static double genacoth(double);
/************************************************/
/* ExtendedMathFunctionDefinitions: Initializes */
/* the extended math functions. */
/************************************************/
globle void ExtendedMathFunctionDefinitions(
void *theEnv)
{
#if ! RUN_TIME
EnvDefineFunction2(theEnv,"cos", 'd', PTIEF CosFunction, "CosFunction", "11n");
EnvDefineFunction2(theEnv,"sin", 'd', PTIEF SinFunction, "SinFunction", "11n");
EnvDefineFunction2(theEnv,"tan", 'd', PTIEF TanFunction, "TanFunction", "11n");
EnvDefineFunction2(theEnv,"sec", 'd', PTIEF SecFunction, "SecFunction", "11n");
EnvDefineFunction2(theEnv,"csc", 'd', PTIEF CscFunction, "CscFunction", "11n");
EnvDefineFunction2(theEnv,"cot", 'd', PTIEF CotFunction, "CotFunction", "11n");
EnvDefineFunction2(theEnv,"acos", 'd', PTIEF AcosFunction, "AcosFunction", "11n");
EnvDefineFunction2(theEnv,"asin", 'd', PTIEF AsinFunction, "AsinFunction", "11n");
EnvDefineFunction2(theEnv,"atan", 'd', PTIEF AtanFunction, "AtanFunction", "11n");
EnvDefineFunction2(theEnv,"asec", 'd', PTIEF AsecFunction, "AsecFunction", "11n");
EnvDefineFunction2(theEnv,"acsc", 'd', PTIEF AcscFunction, "AcscFunction", "11n");
EnvDefineFunction2(theEnv,"acot", 'd', PTIEF AcotFunction, "AcotFunction", "11n");
EnvDefineFunction2(theEnv,"cosh", 'd', PTIEF CoshFunction, "CoshFunction", "11n");
EnvDefineFunction2(theEnv,"sinh", 'd', PTIEF SinhFunction, "SinhFunction", "11n");
EnvDefineFunction2(theEnv,"tanh", 'd', PTIEF TanhFunction, "TanhFunction", "11n");
EnvDefineFunction2(theEnv,"sech", 'd', PTIEF SechFunction, "SechFunction", "11n");
EnvDefineFunction2(theEnv,"csch", 'd', PTIEF CschFunction, "CschFunction", "11n");
EnvDefineFunction2(theEnv,"coth", 'd', PTIEF CothFunction, "CothFunction", "11n");
EnvDefineFunction2(theEnv,"acosh", 'd', PTIEF AcoshFunction, "AcoshFunction", "11n");
EnvDefineFunction2(theEnv,"asinh", 'd', PTIEF AsinhFunction, "AsinhFunction", "11n");
EnvDefineFunction2(theEnv,"atanh", 'd', PTIEF AtanhFunction, "AtanhFunction", "11n");
EnvDefineFunction2(theEnv,"asech", 'd', PTIEF AsechFunction, "AsechFunction", "11n");
EnvDefineFunction2(theEnv,"acsch", 'd', PTIEF AcschFunction, "AcschFunction", "11n");
EnvDefineFunction2(theEnv,"acoth", 'd', PTIEF AcothFunction, "AcothFunction", "11n");
EnvDefineFunction2(theEnv,"mod", 'n', PTIEF ModFunction, "ModFunction", "22n");
EnvDefineFunction2(theEnv,"exp", 'd', PTIEF ExpFunction, "ExpFunction", "11n");
EnvDefineFunction2(theEnv,"log", 'd', PTIEF LogFunction, "LogFunction", "11n");
EnvDefineFunction2(theEnv,"log10", 'd', PTIEF Log10Function, "Log10Function", "11n");
EnvDefineFunction2(theEnv,"sqrt", 'd', PTIEF SqrtFunction, "SqrtFunction", "11n");
EnvDefineFunction2(theEnv,"pi", 'd', PTIEF PiFunction, "PiFunction", "00");
EnvDefineFunction2(theEnv,"deg-rad", 'd', PTIEF DegRadFunction, "DegRadFunction", "11n");
EnvDefineFunction2(theEnv,"rad-deg", 'd', PTIEF RadDegFunction, "RadDegFunction", "11n");
EnvDefineFunction2(theEnv,"deg-grad", 'd', PTIEF DegGradFunction, "DegGradFunction", "11n");
EnvDefineFunction2(theEnv,"grad-deg", 'd', PTIEF GradDegFunction, "GradDegFunction", "11n");
EnvDefineFunction2(theEnv,"**", 'd', PTIEF PowFunction, "PowFunction", "22n");
EnvDefineFunction2(theEnv,"round", 'g', PTIEF RoundFunction, "RoundFunction", "11n");
#else
#if MAC_XCD
#pragma unused(theEnv)
#endif
#endif
}
/************************************************************/
/* SingleNumberCheck: Retrieves the numeric argument for */
/* extended math functions which expect a single floating */
/* point argument. */
/************************************************************/
static int SingleNumberCheck(
void *theEnv,
const char *functionName,
double *theNumber)
{
DATA_OBJECT theValue;
if (EnvArgCountCheck(theEnv,functionName,EXACTLY,1) == -1) return(FALSE);
if (EnvArgTypeCheck(theEnv,functionName,1,FLOAT,&theValue) == FALSE) return(FALSE);
*theNumber = DOToDouble(theValue);
return(TRUE);
}
/**************************************************************/
/* TestProximity: Returns TRUE if the specified number falls */
/* within the specified range, otherwise FALSE is returned. */
/**************************************************************/
static int TestProximity(
double theNumber,
double range)
{
if ((theNumber >= (- range)) && (theNumber <= range)) return TRUE;
else return FALSE;
}
/********************************************************/
/* DomainErrorMessage: Generic error message used when */
/* a domain error is detected during a call to one of */
/* the extended math functions. */
/********************************************************/
static void DomainErrorMessage(
void *theEnv,
const char *functionName)
{
PrintErrorID(theEnv,"EMATHFUN",1,FALSE);
EnvPrintRouter(theEnv,WERROR,"Domain error for ");
EnvPrintRouter(theEnv,WERROR,functionName);
EnvPrintRouter(theEnv,WERROR," function.\n");
SetHaltExecution(theEnv,TRUE);
SetEvaluationError(theEnv,TRUE);
}
/************************************************************/
/* ArgumentOverflowErrorMessage: Generic error message used */
/* when an argument overflow is detected during a call to */
/* one of the extended math functions. */
/************************************************************/
static void ArgumentOverflowErrorMessage(
void *theEnv,
const char *functionName)
{
PrintErrorID(theEnv,"EMATHFUN",2,FALSE);
EnvPrintRouter(theEnv,WERROR,"Argument overflow for ");
EnvPrintRouter(theEnv,WERROR,functionName);
EnvPrintRouter(theEnv,WERROR," function.\n");
SetHaltExecution(theEnv,TRUE);
SetEvaluationError(theEnv,TRUE);
}
/************************************************************/
/* SingularityErrorMessage: Generic error message used when */
/* a singularity is detected during a call to one of the */
/* extended math functions. */
/************************************************************/
static void SingularityErrorMessage(
void *theEnv,
const char *functionName)
{
PrintErrorID(theEnv,"EMATHFUN",3,FALSE);
EnvPrintRouter(theEnv,WERROR,"Singularity at asymptote in ");
EnvPrintRouter(theEnv,WERROR,functionName);
EnvPrintRouter(theEnv,WERROR," function.\n");
SetHaltExecution(theEnv,TRUE);
SetEvaluationError(theEnv,TRUE);
}
/*************************************/
/* CosFunction: H/L access routine */
/* for the cos function. */
/*************************************/
globle double CosFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"cos",&num) == FALSE) return(0.0);
return(cos(num));
}
/*************************************/
/* SinFunction: H/L access routine */
/* for the sin function. */
/*************************************/
globle double SinFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"sin",&num) == FALSE) return(0.0);
return(sin(num));
}
/*************************************/
/* TanFunction: H/L access routine */
/* for the tan function. */
/*************************************/
globle double TanFunction(
void *theEnv)
{
double num, tv;
if (SingleNumberCheck(theEnv,"tan",&num) == FALSE) return (0.0);
tv = cos(num);
if ((tv < SMALLEST_ALLOWED_NUMBER) && (tv > -SMALLEST_ALLOWED_NUMBER))
{
SingularityErrorMessage(theEnv,"tan");
return(0.0);
}
return(sin(num) / tv);
}
/*************************************/
/* SecFunction: H/L access routine */
/* for the sec function. */
/*************************************/
globle double SecFunction(
void *theEnv)
{
double num, tv;
if (SingleNumberCheck(theEnv,"sec",&num) == FALSE) return(0.0);
tv = cos(num);
if ((tv < SMALLEST_ALLOWED_NUMBER) && (tv > -SMALLEST_ALLOWED_NUMBER))
{
SingularityErrorMessage(theEnv,"sec");
return(0.0);
}
return(1.0 / tv);
}
/*************************************/
/* CscFunction: H/L access routine */
/* for the csc function. */
/*************************************/
globle double CscFunction(
void *theEnv)
{
double num, tv;
if (SingleNumberCheck(theEnv,"csc",&num) == FALSE) return(0.0);
tv = sin(num);
if ((tv < SMALLEST_ALLOWED_NUMBER) && (tv > -SMALLEST_ALLOWED_NUMBER))
{
SingularityErrorMessage(theEnv,"csc");
return(0.0);
}
return(1.0 / tv);
}
/*************************************/
/* CotFunction: H/L access routine */
/* for the cot function. */
/*************************************/
globle double CotFunction(
void *theEnv)
{
double num, tv;
if (SingleNumberCheck(theEnv,"cot",&num) == FALSE) return(0.0);
tv = sin(num);
if ((tv < SMALLEST_ALLOWED_NUMBER) && (tv > -SMALLEST_ALLOWED_NUMBER))
{
SingularityErrorMessage(theEnv,"cot");
return(0.0);
}
return(cos(num) / tv);
}
/**************************************/
/* AcosFunction: H/L access routine */
/* for the acos function. */
/**************************************/
globle double AcosFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"acos",&num) == FALSE) return(0.0);
if ((num > 1.0) || (num < -1.0))
{
DomainErrorMessage(theEnv,"acos");
return(0.0);
}
return(acos(num));
}
/**************************************/
/* AsinFunction: H/L access routine */
/* for the asin function. */
/**************************************/
globle double AsinFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"asin",&num) == FALSE) return(0.0);
if ((num > 1.0) || (num < -1.0))
{
DomainErrorMessage(theEnv,"asin");
return(0.0);
}
return(asin(num));
}
/**************************************/
/* AtanFunction: H/L access routine */
/* for the atan function. */
/**************************************/
globle double AtanFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"atan",&num) == FALSE) return(0.0);
return(atan(num));
}
/**************************************/
/* AsecFunction: H/L access routine */
/* for the asec function. */
/**************************************/
globle double AsecFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"asec",&num) == FALSE) return(0.0);
if ((num < 1.0) && (num > -1.0))
{
DomainErrorMessage(theEnv,"asec");
return(0.0);
}
num = 1.0 / num;
return(acos(num));
}
/**************************************/
/* AcscFunction: H/L access routine */
/* for the acsc function. */
/**************************************/
globle double AcscFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"acsc",&num) == FALSE) return(0.0);
if ((num < 1.0) && (num > -1.0))
{
DomainErrorMessage(theEnv,"acsc");
return(0.0);
}
num = 1.0 / num;
return(asin(num));
}
/**************************************/
/* AcotFunction: H/L access routine */
/* for the acot function. */
/**************************************/
globle double AcotFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"acot",&num) == FALSE) return(0.0);
if (TestProximity(num,1e-25) == TRUE) return(PID2);
num = 1.0 / num;
return(atan(num));
}
/**************************************/
/* CoshFunction: H/L access routine */
/* for the cosh function. */
/**************************************/
globle double CoshFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"cosh",&num) == FALSE) return(0.0);
return(cosh(num));
}
/**************************************/
/* SinhFunction: H/L access routine */
/* for the sinh function. */
/**************************************/
globle double SinhFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"sinh",&num) == FALSE) return(0.0);
return(sinh(num));
}
/**************************************/
/* TanhFunction: H/L access routine */
/* for the tanh function. */
/**************************************/
globle double TanhFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"tanh",&num) == FALSE) return(0.0);
return(tanh(num));
}
/**************************************/
/* SechFunction: H/L access routine */
/* for the sech function. */
/**************************************/
globle double SechFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"sech",&num) == FALSE) return(0.0);
return(1.0 / cosh(num));
}
/**************************************/
/* CschFunction: H/L access routine */
/* for the csch function. */
/**************************************/
globle double CschFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"csch",&num) == FALSE) return(0.0);
if (num == 0.0)
{
SingularityErrorMessage(theEnv,"csch");
return(0.0);
}
else if (TestProximity(num,1e-25) == TRUE)
{
ArgumentOverflowErrorMessage(theEnv,"csch");
return(0.0);
}
return(1.0 / sinh(num));
}
/**************************************/
/* CothFunction: H/L access routine */
/* for the coth function. */
/**************************************/
globle double CothFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"coth",&num) == FALSE) return(0.0);
if (num == 0.0)
{
SingularityErrorMessage(theEnv,"coth");
return(0.0);
}
else if (TestProximity(num,1e-25) == TRUE)
{
ArgumentOverflowErrorMessage(theEnv,"coth");
return(0.0);
}
return(1.0 / tanh(num));
}
/***************************************/
/* AcoshFunction: H/L access routine */
/* for the acosh function. */
/***************************************/
globle double AcoshFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"acosh",&num) == FALSE) return(0.0);
if (num < 1.0)
{
DomainErrorMessage(theEnv,"acosh");
return(0.0);
}
return(genacosh(num));
}
/***************************************/
/* AsinhFunction: H/L access routine */
/* for the asinh function. */
/***************************************/
globle double AsinhFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"asinh",&num) == FALSE) return(0.0);
return(genasinh(num));
}
/***************************************/
/* AtanhFunction: H/L access routine */
/* for the atanh function. */
/***************************************/
globle double AtanhFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"atanh",&num) == FALSE) return(0.0);
if ((num >= 1.0) || (num <= -1.0))
{
DomainErrorMessage(theEnv,"atanh");
return(0.0);
}
return(genatanh(num));
}
/***************************************/
/* AsechFunction: H/L access routine */
/* for the asech function. */
/***************************************/
globle double AsechFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"asech",&num) == FALSE) return(0.0);
if ((num > 1.0) || (num <= 0.0))
{
DomainErrorMessage(theEnv,"asech");
return(0.0);
}
return(genasech(num));
}
/***************************************/
/* AcschFunction: H/L access routine */
/* for the acsch function. */
/***************************************/
globle double AcschFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"acsch",&num) == FALSE) return(0.0);
if (num == 0.0)
{
DomainErrorMessage(theEnv,"acsch");
return(0.0);
}
return(genacsch(num));
}
/***************************************/
/* AcothFunction: H/L access routine */
/* for the acoth function. */
/***************************************/
globle double AcothFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"acoth",&num) == FALSE) return(0.0);
if ((num <= 1.0) && (num >= -1.0))
{
DomainErrorMessage(theEnv,"acoth");
return(0.0);
}
return(genacoth(num));
}
/*************************************/
/* ExpFunction: H/L access routine */
/* for the exp function. */
/*************************************/
globle double ExpFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"exp",&num) == FALSE) return(0.0);
return(exp(num));
}
/*************************************/
/* LogFunction: H/L access routine */
/* for the log function. */
/*************************************/
globle double LogFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"log",&num) == FALSE) return(0.0);
if (num < 0.0)
{
DomainErrorMessage(theEnv,"log");
return(0.0);
}
else if (num == 0.0)
{
ArgumentOverflowErrorMessage(theEnv,"log");
return(0.0);
}
return(log(num));
}
/***************************************/
/* Log10Function: H/L access routine */
/* for the log10 function. */
/***************************************/
globle double Log10Function(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"log10",&num) == FALSE) return(0.0);
if (num < 0.0)
{
DomainErrorMessage(theEnv,"log10");
return(0.0);
}
else if (num == 0.0)
{
ArgumentOverflowErrorMessage(theEnv,"log10");
return(0.0);
}
return(log10(num));
}
/**************************************/
/* SqrtFunction: H/L access routine */
/* for the sqrt function. */
/**************************************/
globle double SqrtFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"sqrt",&num) == FALSE) return(0.0);
if (num < 0.00000)
{
DomainErrorMessage(theEnv,"sqrt");
return(0.0);
}
return(sqrt(num));
}
/*************************************/
/* PowFunction: H/L access routine */
/* for the pow function. */
/*************************************/
globle double PowFunction(
void *theEnv)
{
DATA_OBJECT value1, value2;
if (EnvArgCountCheck(theEnv,"**",EXACTLY,2) == -1) return(0.0);
if (EnvArgTypeCheck(theEnv,"**",1,FLOAT,&value1) == FALSE) return(0.0);
if (EnvArgTypeCheck(theEnv,"**",2,FLOAT,&value2) == FALSE) return(0.0);
if (((DOToDouble(value1) == 0.0) &&
(DOToDouble(value2) <= 0.0)) ||
((DOToDouble(value1) < 0.0) &&
(dtrunc((double) DOToDouble(value2)) != DOToDouble(value2))))
{
DomainErrorMessage(theEnv,"**");
SetHaltExecution(theEnv,TRUE);
SetEvaluationError(theEnv,TRUE);
return(0.0);
}
return (pow(DOToDouble(value1),DOToDouble(value2)));
}
/*************************************/
/* ModFunction: H/L access routine */
/* for the mod function. */
/*************************************/
globle void ModFunction(
void *theEnv,
DATA_OBJECT_PTR result)
{
DATA_OBJECT item1, item2;
double fnum1, fnum2;
long long lnum1, lnum2;
if (EnvArgCountCheck(theEnv,"mod",EXACTLY,2) == -1)
{
result->type = INTEGER;
result->value = (void *) EnvAddLong(theEnv,0L);
return;
}
if (EnvArgTypeCheck(theEnv,"mod",1,INTEGER_OR_FLOAT,&item1) == FALSE)
{
result->type = INTEGER;
result->value = (void *) EnvAddLong(theEnv,0L);
return;
}
if (EnvArgTypeCheck(theEnv,"mod",2,INTEGER_OR_FLOAT,&item2) == FALSE)
{
result->type = INTEGER;
result->value = (void *) EnvAddLong(theEnv,0L);
return;
}
if (((item2.type == INTEGER) ? (ValueToLong(item2.value) == 0L) : FALSE) ||
((item2.type == FLOAT) ? ValueToDouble(item2.value) == 0.0 : FALSE))
{
DivideByZeroErrorMessage(theEnv,"mod");
SetEvaluationError(theEnv,TRUE);
result->type = INTEGER;
result->value = (void *) EnvAddLong(theEnv,0L);
return;
}
if ((item1.type == FLOAT) || (item2.type == FLOAT))
{
fnum1 = CoerceToDouble(item1.type,item1.value);
fnum2 = CoerceToDouble(item2.type,item2.value);
result->type = FLOAT;
result->value = (void *) EnvAddDouble(theEnv,fnum1 - (dtrunc(fnum1 / fnum2) * fnum2));
}
else
{
lnum1 = DOToLong(item1);
lnum2 = DOToLong(item2);
result->type = INTEGER;
result->value = (void *) EnvAddLong(theEnv,lnum1 - (lnum1 / lnum2) * lnum2);
}
}
/************************************/
/* PiFunction: H/L access routine */
/* for the pi function. */
/************************************/
globle double PiFunction(
void *theEnv)
{
if (EnvArgCountCheck(theEnv,"pi",EXACTLY,0) == -1) return(acos(-1.0));
return(acos(-1.0));
}
/****************************************/
/* DegRadFunction: H/L access routine */
/* for the deg-rad function. */
/****************************************/
globle double DegRadFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"deg-rad",&num) == FALSE) return(0.0);
return(num * PI / 180.0);
}
/****************************************/
/* RadDegFunction: H/L access routine */
/* for the rad-deg function. */
/****************************************/
globle double RadDegFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"rad-deg",&num) == FALSE) return(0.0);
return(num * 180.0 / PI);
}
/*****************************************/
/* DegGradFunction: H/L access routine */
/* for the deg-grad function. */
/*****************************************/
globle double DegGradFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"deg-grad",&num) == FALSE) return(0.0);
return(num / 0.9);
}
/*****************************************/
/* GradDegFunction: H/L access routine */
/* for the grad-deg function. */
/*****************************************/
globle double GradDegFunction(
void *theEnv)
{
double num;
if (SingleNumberCheck(theEnv,"grad-deg",&num) == FALSE) return(0.0);
return(num * 0.9);
}
/***************************************/
/* RoundFunction: H/L access routine */
/* for the round function. */
/***************************************/
globle long long RoundFunction(
void *theEnv)
{
DATA_OBJECT result;
if (EnvArgCountCheck(theEnv,"round",EXACTLY,1) == -1)
{ return(0LL); }
if (EnvArgTypeCheck(theEnv,"round",1,INTEGER_OR_FLOAT,&result) == FALSE)
{ return(0LL); }
if (result.type == INTEGER)
{ return(ValueToLong(result.value)); }
else
{ return((long long) ceil(ValueToDouble(result.value) - 0.5)); }
}
/*******************************************/
/* genacosh: Generic routine for computing */
/* the hyperbolic arccosine. */
/*******************************************/
static double genacosh(
double num)
{
return(log(num + sqrt(num * num - 1.0)));
}
/*******************************************/
/* genasinh: Generic routine for computing */
/* the hyperbolic arcsine. */
/*******************************************/
static double genasinh(
double num)
{
return(log(num + sqrt(num * num + 1.0)));
}
/*******************************************/
/* genatanh: Generic routine for computing */
/* the hyperbolic arctangent. */
/*******************************************/
static double genatanh(
double num)
{
return((0.5) * log((1.0 + num) / (1.0 - num)));
}
/*******************************************/
/* genasech: Generic routine for computing */
/* the hyperbolic arcsecant. */
/*******************************************/
static double genasech(
double num)
{
return(log(1.0 / num + sqrt(1.0 / (num * num) - 1.0)));
}
/*******************************************/
/* genacsch: Generic routine for computing */
/* the hyperbolic arccosecant. */
/*******************************************/
static double genacsch(
double num)
{
return(log(1.0 / num + sqrt(1.0 / (num * num) + 1.0)));
}
/*******************************************/
/* genacoth: Generic routine for computing */
/* the hyperbolic arccotangent. */
/*******************************************/
static double genacoth(
double num)
{
return((0.5) * log((num + 1.0) / (num - 1.0)));
}
#endif
| [
"iskander@icc.ru"
] | iskander@icc.ru |
08495046c052617a602a67918e3f54f87b4ced5a | 24d34ec86dec261404c65a48f1bf8150f0348ac9 | /AppViewer/InputManager.h | 4e1d3d2ac0471d1db696da03c9cc129aaf061f7d | [] | no_license | mbanquiero/miniengine | 4c57ef534e69b699beed6a7676d8e50e08c1c257 | c4a1a692a47aa0c0fd6c634edbe83748fb29207c | refs/heads/master | 2021-01-10T07:31:57.632406 | 2014-06-12T23:04:18 | 2014-06-12T23:04:18 | 53,662,835 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,932 | h | #pragma once
#include <../Include/dinput.h>
#include <math/vector3.h>
enum DInputKey
{
Key_Escape = 1,
Key_D1 = 2,
Key_D2 = 3,
Key_D3 = 4,
Key_D4 = 5,
Key_D5 = 6,
Key_D6 = 7,
Key_D7 = 8,
Key_D8 = 9,
Key_D9 = 10,
Key_D0 = 11,
Key_Minus = 12,
Key_Equals = 13,
Key_Back = 14,
Key_BackSpace = 14,
Key_Tab = 15,
Key_Q = 16,
Key_W = 17,
Key_E = 18,
Key_R = 19,
Key_T = 20,
Key_Y = 21,
Key_U = 22,
Key_I = 23,
Key_O = 24,
Key_P = 25,
Key_LeftBracket = 26,
Key_RightBracket = 27,
Key_Return = 28,
Key_LeftControl = 29,
Key_A = 30,
Key_S = 31,
Key_D = 32,
Key_F = 33,
Key_G = 34,
Key_H = 35,
Key_J = 36,
Key_K = 37,
Key_L = 38,
Key_SemiColon = 39,
Key_Apostrophe = 40,
Key_Grave = 41,
Key_LeftShift = 42,
Key_BackSlash = 43,
Key_Z = 44,
Key_X = 45,
Key_C = 46,
Key_V = 47,
Key_B = 48,
Key_N = 49,
Key_M = 50,
Key_Comma = 51,
Key_Period = 52,
Key_Slash = 53,
Key_RightShift = 54,
Key_Multiply = 55,
Key_NumPadStar = 55,
Key_LeftAlt = 56,
Key_LeftMenu = 56,
Key_Space = 57,
Key_Capital = 58,
Key_CapsLock = 58,
Key_F1 = 59,
Key_F2 = 60,
Key_F3 = 61,
Key_F4 = 62,
Key_F5 = 63,
Key_F6 = 64,
Key_F7 = 65,
Key_F8 = 66,
Key_F9 = 67,
Key_F10 = 68,
Key_Numlock = 69,
Key_Scroll = 70,
Key_NumPad7 = 71,
Key_NumPad8 = 72,
Key_NumPad9 = 73,
Key_NumPadMinus = 74,
Key_Subtract = 74,
Key_NumPad4 = 75,
Key_NumPad5 = 76,
Key_NumPad6 = 77,
Key_Add = 78,
Key_NumPadPlus = 78,
Key_NumPad1 = 79,
Key_NumPad2 = 80,
Key_NumPad3 = 81,
Key_NumPad0 = 82,
Key_Decimal = 83,
Key_NumPadPeriod = 83,
Key_OEM102 = 86,
Key_F11 = 87,
Key_F12 = 88,
Key_F13 = 100,
Key_F14 = 101,
Key_F15 = 102,
Key_Kana = 112,
Key_AbntC1 = 115,
Key_Convert = 121,
Key_NoConvert = 123,
Key_Yen = 125,
Key_AbntC2 = 126,
Key_NumPadEquals = 141,
Key_Circumflex = 144,
Key_PrevTrack = 144,
Key_At = 145,
Key_Colon = 146,
Key_Underline = 147,
Key_Kanji = 148,
Key_Stop = 149,
Key_AX = 150,
Key_Unlabeled = 151,
Key_NextTrack = 153,
Key_NumPadEnter = 156,
Key_RightControl = 157,
Key_Mute = 160,
Key_Calculator = 161,
Key_PlayPause = 162,
Key_MediaStop = 164,
Key_VolumeDown = 174,
Key_VolumeUp = 176,
Key_WebHome = 178,
Key_NumPadComma = 179,
Key_Divide = 181,
Key_NumPadSlash = 181,
Key_SysRq = 183,
Key_RightAlt = 184,
Key_RightMenu = 184,
Key_Pause = 197,
Key_Home = 199,
Key_Up = 200,
Key_UpArrow = 200,
Key_PageUp = 201,
Key_Prior = 201,
Key_Left = 203,
Key_LeftArrow = 203,
Key_Right = 205,
Key_RightArrow = 205,
Key_End = 207,
Key_Down = 208,
Key_DownArrow = 208,
Key_Next = 209,
Key_PageDown = 209,
Key_Insert = 210,
Key_Delete = 211,
Key_LeftWindows = 219,
Key_RightWindows = 220,
Key_Apps = 221,
Key_Power = 222,
Key_Sleep = 223,
Key_Wake = 227,
Key_WebSearch = 229,
Key_WebFavorites = 230,
Key_WebRefresh = 231,
Key_WebStop = 232,
Key_WebForward = 233,
Key_WebBack = 234,
Key_MyComputer = 235,
Key_Mail = 236,
Key_MediaSelect = 237,
};
struct KeyboardState
{
bool keys[256];
operator void*() { return (void *)&keys; }
bool operator [](DInputKey key) const { return keys[(int)key]; }
bool operator [](int key) const { return keys[key]; };
};
#define MOUSE_LEFT_BUTTON 0
#define MOUSE_RIGHT_BUTTON 1
#define MOUSE_WHEEL_BUTTON 2
#define MOUSE_OTHER_BUTTON 3
struct MouseState
{
int X;
int Y;
int Z;
BYTE mouseButtons[4];
BYTE * GetMouseButtons(){ return mouseButtons; }
operator void*() { return (void *)this; }
};
class InputManager
{
public:
static KeyboardState m_antKeyboardState;
static KeyboardState m_keyboardState;
static MouseState m_antMouseState;
static MouseState m_mouseState;
static Vector3 m_delta_mouse;
static LPDIRECTINPUT8 m_dinput;
static LPDIRECTINPUTDEVICE8 m_pKeyboard;
static LPDIRECTINPUTDEVICE8 m_pMouse;
static bool Init( void );
static void Shutdown(void);
static void Update();
static bool IsDown(DInputKey key) { return m_keyboardState[key]; };
static bool IsPressed(int key) { return m_antKeyboardState[key] && !m_keyboardState[key]; };
static bool IsLButtonDown() { return m_mouseState.mouseButtons[MOUSE_LEFT_BUTTON]; };
static bool IsLButtonPressed() { return m_antMouseState.mouseButtons[MOUSE_LEFT_BUTTON] && !m_mouseState.mouseButtons[MOUSE_LEFT_BUTTON]; };
static bool IsRButtonDown() { return m_mouseState.mouseButtons[MOUSE_RIGHT_BUTTON]; };
static bool IsRButtonPressed() { return m_antMouseState.mouseButtons[MOUSE_RIGHT_BUTTON] && !m_mouseState.mouseButtons[MOUSE_RIGHT_BUTTON]; };
static bool IsWheelButtonDown() { return m_mouseState.mouseButtons[MOUSE_WHEEL_BUTTON]; };
static bool IsWheelButtonPressed() { return m_antMouseState.mouseButtons[MOUSE_WHEEL_BUTTON] && !m_mouseState.mouseButtons[MOUSE_WHEEL_BUTTON]; };
};
| [
"martin.giachetti@gmail.com"
] | martin.giachetti@gmail.com |
32cc265b5a3395b08626ae2392529a82d3c7b617 | 7fc9ca1aa8c9281160105c7f2b3a96007630add7 | /977F.cpp | 55ecfec4da5955c4e19b1af82a59a05d8755508b | [] | no_license | PatelManav/Codeforces_Backup | 9b2318d02c42d8402c9874ae0c570d4176348857 | 9671a37b9de20f0f9d9849cd74e00c18de780498 | refs/heads/master | 2023-01-04T03:18:14.823128 | 2020-10-27T12:07:22 | 2020-10-27T12:07:22 | 300,317,389 | 2 | 1 | null | 2020-10-27T12:07:23 | 2020-10-01T14:54:31 | C++ | UTF-8 | C++ | false | false | 1,192 | cpp | /*May The Force Be With Me*/
#include <bits/stdc++.h>
#define ll long long
#define MOD 1000000007
#define endl "\n"
#define vll vector<long long>
#define pll pair<long long, long long>
#define all(c) c.begin(),c.end()
#define f first
#define s second
#define inf INT_MAX
#define size 10000000
#define size_2d 10000
#define mem(a,val) memset(a,val,sizeof(a))
//Snippets: bigint, bsearch, graph, splitstring, segtree
using namespace std;
ll N;
ll arr[size];
map<ll, ll> dp;
void Input() {
cin >> N;
for (ll i = 0; i < N; i++) {
cin >> arr[i];
//dp[arr[i]] = 1;
}
}
void Solve() {
ll ans = 0, ed = 0;
for (ll i = 0; i < N; i++) {
dp[arr[i]] = max(dp[arr[i]], dp[arr[i] - 1] + 1);
ans = max(ans, dp[arr[i]]);
}
cout << ans << endl;
for (ll i = 0; i < N; i++) {
if (dp[arr[i]] == ans) {
ed = arr[i];
break;
}
}
ed -= (ans - 1);
for (ll i = 0; i < N; i++) {
if (arr[i] == ed) {
cout << i + 1 << " ";
ed++;
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
ll T = 1;
//cin >> T;
while (T--) {
Input();
Solve();
}
return 0;
} | [
"helewrer3@gmail.com"
] | helewrer3@gmail.com |
9f39e8202df5d9b79756dad8f13d1f081f489908 | ee5303492ad12df0bf2ac3090d88aefa27034796 | /Server/Server/stdafx.cpp | 51a8613b7bfc67439f2fd4fbee39693fc44b0e4a | [] | no_license | ernie0218e/Game-Server | be57422a0227dd1f7aa6388957bb3ed623d10c27 | 77bad3b68aefd8be9d592d529a1f004b0ac064d7 | refs/heads/master | 2016-09-06T09:51:54.703756 | 2014-12-20T12:05:46 | 2014-12-20T12:05:46 | 28,266,065 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 178 | cpp | // stdafx.cpp : 僅包含標準 Include 檔的原始程式檔
// Server.pch 會成為先行編譯標頭檔
// stdafx.obj 會包含先行編譯型別資訊
#include "stdafx.h"
| [
"ernie0218e@gmail.com"
] | ernie0218e@gmail.com |
f996ece3939714817182350a92396a84cff5c639 | 17cc994a886599a9f99d7d678fd965fa73f9382e | /ShimCity/Boatplane.cpp | eaf88a3f6fdafba6d6558c636c49603f06ead3c4 | [] | no_license | hsshimde/justExperiments | a53ca960f14e84b1fb6e38021fcf787146a38131 | 6a0573fea79ddf49bbb41a09acb1fb246755f6e4 | refs/heads/master | 2023-04-02T20:19:13.517315 | 2021-03-30T11:01:58 | 2021-03-30T11:01:58 | 296,870,856 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,525 | cpp | #include <cmath>
#include "Boatplane.h"
namespace assignment2
{
Boatplane::Boatplane(unsigned int maxPassengersCount)
: Vehicle{maxPassengersCount}
{
}
Boatplane::Boatplane(const Boatplane& rhs)
: Vehicle{ rhs }
{
}
Boatplane& Boatplane::operator=(const Boatplane& rhs)
{
Vehicle::operator=(rhs);
return *this;
}
Boatplane::~Boatplane()
{
}
size_t Boatplane::GetMaxSpeed() const
{
size_t sailSpeed{ GetSailSpeed() };
size_t flySpeed{ GetFlySpeed() };
return (sailSpeed > flySpeed) ? sailSpeed : flySpeed;
}
size_t Boatplane::GetFlySpeed() const
{
size_t passengersCount{ GetPassengersCount() };
size_t totalWeight{};
for (size_t i{}; i < passengersCount; ++i)
{
totalWeight += GetPassenger(i)->GetWeight();
}
double power{ (static_cast<double>(totalWeight) * (-1) + 500) / 300 };
size_t flySpeed{ static_cast<size_t>(std::floor(std::exp(power) * 150 + 0.5)) };
//150 * e ^ ((-x + 500) / 300)
return flySpeed;
}
size_t Boatplane::GetSailSpeed() const
{
size_t passengersCount{ GetPassengersCount() };
size_t totalWeight{};
for (size_t i{}; i < passengersCount; ++i)
{
totalWeight += GetPassenger(i)->GetWeight();
}
//MAX((800 - 1.7x), 20)
return static_cast<size_t>(std::max<double>(800 - 1.7 * static_cast<double>(totalWeight), 20.0));
}
bool Boatplane::GoOnTravel()
{
size_t travelCount{ GetTravelCount() };
IncreaseTravelCount();
if (travelCount % 4 == 1)
{
return true;
}
else
{
return false;
}
}
} | [
"hsshimde@outlook.com"
] | hsshimde@outlook.com |
4e9acee0ae4e885fdb2af0da510e273fe42610b0 | 8a9a57e3fdda2edbff4ed3d1af82e7cb7317eaa6 | /sqlite/sqlite_orm/dev/operators.h | 9136e6a2c19472c2a4fe4c92216495bd7d16c961 | [
"BSD-3-Clause"
] | permissive | javacommons/misc5 | 717b4b3e3b066b2b078e13255b10cee73385e42f | a266d4d21babe0ea182264fde0c60781c79ae6dc | refs/heads/main | 2023-04-06T11:18:18.696402 | 2021-04-28T04:05:50 | 2021-04-28T04:05:50 | 314,198,390 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,770 | h | #pragma once
#include <type_traits> // std::false_type, std::true_type
#include "negatable.h"
namespace sqlite_orm {
namespace internal {
/**
* Inherit this class to support arithmetic types overloading
*/
struct arithmetic_t {};
template<class L, class R, class... Ds>
struct binary_operator : Ds... {
using left_type = L;
using right_type = R;
left_type lhs;
right_type rhs;
binary_operator(left_type lhs_, right_type rhs_) : lhs(std::move(lhs_)), rhs(std::move(rhs_)) {}
};
struct conc_string {
operator std::string() const {
return "||";
}
};
/**
* Result of concatenation || operator
*/
template<class L, class R>
using conc_t = binary_operator<L, R, conc_string>;
struct add_string {
operator std::string() const {
return "+";
}
};
/**
* Result of addition + operator
*/
template<class L, class R>
using add_t = binary_operator<L, R, add_string, arithmetic_t, negatable_t>;
struct sub_string {
operator std::string() const {
return "-";
}
};
/**
* Result of substitute - operator
*/
template<class L, class R>
using sub_t = binary_operator<L, R, sub_string, arithmetic_t, negatable_t>;
struct mul_string {
operator std::string() const {
return "*";
}
};
/**
* Result of multiply * operator
*/
template<class L, class R>
using mul_t = binary_operator<L, R, mul_string, arithmetic_t, negatable_t>;
struct div_string {
operator std::string() const {
return "/";
}
};
/**
* Result of divide / operator
*/
template<class L, class R>
using div_t = binary_operator<L, R, div_string, arithmetic_t, negatable_t>;
struct mod_string {
operator std::string() const {
return "%";
}
};
/**
* Result of mod % operator
*/
template<class L, class R>
using mod_t = binary_operator<L, R, mod_string, arithmetic_t, negatable_t>;
struct bitwise_shift_left_string {
operator std::string() const {
return "<<";
}
};
/**
* Result of bitwise shift left << operator
*/
template<class L, class R>
using bitwise_shift_left_t = binary_operator<L, R, bitwise_shift_left_string, arithmetic_t, negatable_t>;
struct bitwise_shift_right_string {
operator std::string() const {
return ">>";
}
};
/**
* Result of bitwise shift right >> operator
*/
template<class L, class R>
using bitwise_shift_right_t = binary_operator<L, R, bitwise_shift_right_string, arithmetic_t, negatable_t>;
struct bitwise_and_string {
operator std::string() const {
return "&";
}
};
/**
* Result of bitwise and & operator
*/
template<class L, class R>
using bitwise_and_t = binary_operator<L, R, bitwise_and_string, arithmetic_t, negatable_t>;
struct bitwise_or_string {
operator std::string() const {
return "|";
}
};
/**
* Result of bitwise or | operator
*/
template<class L, class R>
using bitwise_or_t = binary_operator<L, R, bitwise_or_string, arithmetic_t, negatable_t>;
struct bitwise_not_string {
operator std::string() const {
return "~";
}
};
/**
* Result of bitwise not ~ operator
*/
template<class T>
struct bitwise_not_t : bitwise_not_string, arithmetic_t, negatable_t {
using argument_type = T;
argument_type argument;
bitwise_not_t(argument_type argument_) : argument(std::move(argument_)) {}
};
struct assign_string {
operator std::string() const {
return "=";
}
};
/**
* Result of assign = operator
*/
template<class L, class R>
using assign_t = binary_operator<L, R, assign_string>;
/**
* Assign operator traits. Common case
*/
template<class T>
struct is_assign_t : public std::false_type {};
/**
* Assign operator traits. Specialized case
*/
template<class L, class R>
struct is_assign_t<assign_t<L, R>> : public std::true_type {};
/**
* Is not an operator but a result of c(...) function. Has operator= overloaded which returns assign_t
*/
template<class T>
struct expression_t {
T t;
expression_t(T t_) : t(std::move(t_)) {}
template<class R>
assign_t<T, R> operator=(R r) const {
return {this->t, std::move(r)};
}
assign_t<T, std::nullptr_t> operator=(std::nullptr_t) const {
return {this->t, nullptr};
}
};
}
/**
* Public interface for syntax sugar for columns. Example: `where(c(&User::id) == 5)` or
* `storage.update(set(c(&User::name) = "Dua Lipa"));
*/
template<class T>
internal::expression_t<T> c(T t) {
return {std::move(t)};
}
/**
* Public interface for || concatenation operator. Example: `select(conc(&User::name, "@gmail.com"));` => SELECT
* name || '@gmail.com' FROM users
*/
template<class L, class R>
internal::conc_t<L, R> conc(L l, R r) {
return {std::move(l), std::move(r)};
}
/**
* Public interface for + operator. Example: `select(add(&User::age, 100));` => SELECT age + 100 FROM users
*/
template<class L, class R>
internal::add_t<L, R> add(L l, R r) {
return {std::move(l), std::move(r)};
}
/**
* Public interface for - operator. Example: `select(add(&User::age, 1));` => SELECT age - 1 FROM users
*/
template<class L, class R>
internal::sub_t<L, R> sub(L l, R r) {
return {std::move(l), std::move(r)};
}
template<class L, class R>
internal::mul_t<L, R> mul(L l, R r) {
return {std::move(l), std::move(r)};
}
template<class L, class R>
internal::div_t<L, R> div(L l, R r) {
return {std::move(l), std::move(r)};
}
template<class L, class R>
internal::mod_t<L, R> mod(L l, R r) {
return {std::move(l), std::move(r)};
}
template<class L, class R>
internal::bitwise_shift_left_t<L, R> bitwise_shift_left(L l, R r) {
return {std::move(l), std::move(r)};
}
template<class L, class R>
internal::bitwise_shift_right_t<L, R> bitwise_shift_right(L l, R r) {
return {std::move(l), std::move(r)};
}
template<class L, class R>
internal::bitwise_and_t<L, R> bitwise_and(L l, R r) {
return {std::move(l), std::move(r)};
}
template<class L, class R>
internal::bitwise_or_t<L, R> bitwise_or(L l, R r) {
return {std::move(l), std::move(r)};
}
template<class T>
internal::bitwise_not_t<T> bitwise_not(T t) {
return {std::move(t)};
}
template<class L, class R>
internal::assign_t<L, R> assign(L l, R r) {
return {std::move(l), std::move(r)};
}
}
| [
"javacommons@gmail.com"
] | javacommons@gmail.com |
106597b836f7295535759780b637505f33f25960 | 2cfd7cf75080d921dfde9c0a1842bf63be685d01 | /algocoding/algocoding/CountingSort.cpp | 01755869e1c19753e638317a175be25f8f176003 | [] | no_license | rahulnairiit/VisualStudiocodes | 26f9304e56036d97c0673195358e3e5c5acbacc3 | f77c2bdbfbfb23398f8f15c710f0e7977ccf5b13 | refs/heads/master | 2021-01-19T09:23:46.745700 | 2012-04-26T01:02:48 | 2012-04-26T01:02:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,658 | cpp | #include <iostream>
using namespace std;
// Input of n integers which fall in the range of 0 to k..
// we can efficiently use cout sort wen k is O(n)
void countsort(int * ,int * , int , int );
void main()
{
int i;
int inpta[10] = { 1,2,3,7,2,9,2,6,1,5 };
int outpta[10] = { 0 };
cout<< " input arr is "<<inpta<<endl;
countsort(inpta,outpta,10,9);
//for( i = 0 ; i < 10; i++ )
//{
// cout<<outpta[i];
//}
getchar();
}
void countsort(int inpta[],int outa[], int count, int range)
{
int n = count;
int i;
int * tempCounta ;
tempCounta =(int*) calloc(range,sizeof(int));
//cout<<inpta<<endl;
for( i = 0 ; i < 10; i++ )
{
cout<<inpta[i];
}
cout<<"s0000000000000"<<endl;
for( i=0; i<range; i++) // initialize the count array
{
tempCounta[i] = 0;
}
for( i = 0; i<n; i++ ) // set the count of each number appearing in the input
{
tempCounta[inpta[i]] = tempCounta[inpta[i]] + 1;
cout << " i is "<<i<< "and inpta[i] is "<<inpta[i]<<endl;
}
for( i = 0 ; i < 10; i++ )
{
cout<<tempCounta[i];
}
cout<<"s0000000000000"<<endl;
//Now for each number in the tempCounta update the value to number of
// elements less than or equal to that number
for( i =0; i< range; i++ )
{
if(i == 0 )
{
tempCounta[i] = tempCounta[i] ;;
}
else
tempCounta[i] = tempCounta[i] + tempCounta[i - 1];
}
cout<<endl;
for( i = 0 ; i < range; i++ )
{
cout<<tempCounta[i];
}
//Now start populating the output array
for( i = 10; i >= 1; i--)
{
outa[tempCounta[inpta[i]]]= inpta[i];
tempCounta[inpta[i]] = tempCounta[inpta[i]] - 1;
}
for(i = 0 ; i < n; i++ )
{
cout<<outa[i];
}
//cout<<outa<<endl;
} | [
"rahul.banglre@gmail.com"
] | rahul.banglre@gmail.com |
75094c22c202fe090fdc4941644ff82ccbb3b7a9 | 4fc3e83dc068bf2281120a6495c93d55a6b20b18 | /src/XLUEExtObject/Illumination/IlluminationObjectRegister.cpp | ca9aa4d2d3ac654daf9e8031b64759fe941e7c80 | [] | no_license | tsukasaCJ/BXF | b77dcfa4207e2caef10ca6de2852cd9df11528b3 | 2f49376446f8359f132b535c6fd466c81ac21fa1 | refs/heads/master | 2021-01-15T14:58:50.956659 | 2013-11-09T08:47:35 | 2013-11-09T08:47:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,099 | cpp | #include "stdafx.h"
#include "./IlluminationObjectRegister.h"
#include "./IlluminationObjectCreater.h"
#include "./IlluminationObjectParser.h"
#include "./LuaIlluminationObject.h"
bool IlluminationObjectRegiter::RegiterIlluminationSessionObject()
{
return ExtObjRegisterHelper<ExtObjType_layoutObj, IlluminationSessionObject, IlluminationSessionObjectCreater,
IlluminationSessionObjectParser, LuaIlluminationSessionObject>::Register(EXTCLASSNAME_ILLUMINATIONSESSIONOBJECT, 0);
}
bool IlluminationObjectRegiter::RegiterIlluminationLayerObject()
{
unsigned long attribute = ExtObjAttribute_clipsens;
return ExtObjRegisterHelper<ExtObjType_renderableObj, IlluminationLayerObject, IlluminationLayerObjectCreater,
IlluminationLayerObjectParser, LuaIlluminationLayerObject>::Register(EXTCLASSNAME_ILLUMINATIONLAYEROBJECT, attribute);
}
bool IlluminationObjectRegiter::RegiterIlluminantObject()
{
return ExtObjRegisterHelper<ExtObjType_layoutObj, IlluminantObject, IlluminantObjectCreater,
IlluminantObjectParser, LuaIlluminantObject>::Register(EXTCLASSNAME_ILLUMINANTOBJECT, 0);
}
| [
"sichangjun@xunlei.com"
] | sichangjun@xunlei.com |
5c85ea742fddb54a4639498525642b71985940c1 | 73f5267f6c087c5a1c63d67229a46d0379be2335 | /include/mapping_msgs/CollisionObjectOperation.h | 30396290071d34f186f594094d6664bb6425d1de | [] | no_license | zphilip/handDetect | a4cc74ef3659f765b836a69dbdd061bdb64a1d10 | 7114f54198b748dacf64dfdcfe90e09c05f903c1 | refs/heads/master | 2016-09-05T15:00:14.950589 | 2012-10-11T06:38:22 | 2012-10-11T06:38:22 | 5,794,632 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 8,139 | h | /* Software License Agreement (BSD License)
*
* Copyright (c) 2011, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * 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.
* * Neither the name of Willow Garage, Inc. nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* 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.
*
* Auto-generated by genmsg_cpp from file c:\work\ws\mapping_msgs\msg\CollisionObjectOperation.msg
*
*/
#ifndef MAPPING_MSGS_MESSAGE_COLLISIONOBJECTOPERATION_H
#define MAPPING_MSGS_MESSAGE_COLLISIONOBJECTOPERATION_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serialization.h>
#include <ros/builtin_message_traits.h>
#include <ros/message_operations.h>
namespace mapping_msgs
{
template <class ContainerAllocator>
struct CollisionObjectOperation_
{
typedef CollisionObjectOperation_<ContainerAllocator> Type;
CollisionObjectOperation_()
: operation(0) {
}
CollisionObjectOperation_(const ContainerAllocator& _alloc)
: operation(0) {
}
typedef int8_t _operation_type;
_operation_type operation;
enum { ADD = 0 };
enum { REMOVE = 1 };
enum { DETACH_AND_ADD_AS_OBJECT = 2 };
enum { ATTACH_AND_REMOVE_AS_OBJECT = 3 };
typedef boost::shared_ptr< ::mapping_msgs::CollisionObjectOperation_<ContainerAllocator> > Ptr;
typedef boost::shared_ptr< ::mapping_msgs::CollisionObjectOperation_<ContainerAllocator> const> ConstPtr;
boost::shared_ptr<std::map<std::string, std::string> > __connection_header;
}; // struct CollisionObjectOperation_
typedef ::mapping_msgs::CollisionObjectOperation_<std::allocator<void> > CollisionObjectOperation;
typedef boost::shared_ptr< ::mapping_msgs::CollisionObjectOperation > CollisionObjectOperationPtr;
typedef boost::shared_ptr< ::mapping_msgs::CollisionObjectOperation const> CollisionObjectOperationConstPtr;
// constants requiring out of line definition
template<typename ContainerAllocator>
std::ostream& operator<<(std::ostream& s, const ::mapping_msgs::CollisionObjectOperation_<ContainerAllocator> & v)
{
ros::message_operations::Printer< ::mapping_msgs::CollisionObjectOperation_<ContainerAllocator> >::stream(s, "", v);
return s;
}
} // namespace mapping_msgs
namespace ros
{
namespace message_traits
{
// BOOLTRAITS {'IsFixedSize': True, 'IsMessage': True, 'HasHeader': False}
// {'geometric_shapes_msgs': ['c:/work/ws/geometric_shapes_msgs/msg'], 'geometry_msgs': ['c:/work/ws/geometry_msgs/msg'], 'mapping_msgs': ['c:/work/ws/mapping_msgs/msg', 'c:/work/ws/mapping_msgs/msg'], 'std_msgs': ['c:/work/ws/std_msgs/msg'], 'sensor_msgs': ['c:/work/ws/sensor_msgs/msg']}
// !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types']
template <class ContainerAllocator>
struct IsFixedSize< ::mapping_msgs::CollisionObjectOperation_<ContainerAllocator> >
: TrueType
{ };
template <class ContainerAllocator>
struct IsFixedSize< ::mapping_msgs::CollisionObjectOperation_<ContainerAllocator> const>
: TrueType
{ };
template <class ContainerAllocator>
struct IsMessage< ::mapping_msgs::CollisionObjectOperation_<ContainerAllocator> >
: TrueType
{ };
template <class ContainerAllocator>
struct IsMessage< ::mapping_msgs::CollisionObjectOperation_<ContainerAllocator> const>
: TrueType
{ };
template <class ContainerAllocator>
struct HasHeader< ::mapping_msgs::CollisionObjectOperation_<ContainerAllocator> >
: FalseType
{ };
template <class ContainerAllocator>
struct HasHeader< ::mapping_msgs::CollisionObjectOperation_<ContainerAllocator> const>
: FalseType
{ };
template<class ContainerAllocator>
struct MD5Sum< ::mapping_msgs::CollisionObjectOperation_<ContainerAllocator> >
{
static const char* value()
{
return "66a2b3b971d193145f8da8c3e401a474";
}
static const char* value(const ::mapping_msgs::CollisionObjectOperation_<ContainerAllocator>&) { return value(); }
static const uint64_t static_value1 = 0x66a2b3b971d19314ULL;
static const uint64_t static_value2 = 0x5f8da8c3e401a474ULL;
};
template<class ContainerAllocator>
struct DataType< ::mapping_msgs::CollisionObjectOperation_<ContainerAllocator> >
{
static const char* value()
{
return "mapping_msgs/CollisionObjectOperation";
}
static const char* value(const ::mapping_msgs::CollisionObjectOperation_<ContainerAllocator>&) { return value(); }
};
template<class ContainerAllocator>
struct Definition< ::mapping_msgs::CollisionObjectOperation_<ContainerAllocator> >
{
static const char* value()
{
return "#Puts the object into the environment\n\
#or updates the object if already added\n\
byte ADD=0\n\
\n\
#Removes the object from the environment entirely\n\
byte REMOVE=1\n\
\n\
#Only valid within the context of a CollisionAttachedObject message\n\
#Will be ignored if sent with an CollisionObject message\n\
#Takes an attached object, detaches from the attached link\n\
#But adds back in as regular object\n\
byte DETACH_AND_ADD_AS_OBJECT=2\n\
\n\
#Only valid within the context of a CollisionAttachedObject message\n\
#Will be ignored if sent with an CollisionObject message\n\
#Takes current object in the environment and removes it as\n\
#a regular object\n\
byte ATTACH_AND_REMOVE_AS_OBJECT=3\n\
\n\
# Byte code for operation\n\
byte operation\n\
\n\
";
}
static const char* value(const ::mapping_msgs::CollisionObjectOperation_<ContainerAllocator>&) { return value(); }
};
} // namespace message_traits
} // namespace ros
namespace ros
{
namespace serialization
{
template<class ContainerAllocator> struct Serializer< ::mapping_msgs::CollisionObjectOperation_<ContainerAllocator> >
{
template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
{
stream.next(m.operation);
}
ROS_DECLARE_ALLINONE_SERIALIZER;
}; // struct CollisionObjectOperation_
} // namespace serialization
} // namespace ros
namespace ros
{
namespace message_operations
{
template<class ContainerAllocator>
struct Printer< ::mapping_msgs::CollisionObjectOperation_<ContainerAllocator> >
{
template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::mapping_msgs::CollisionObjectOperation_<ContainerAllocator>& v)
{
s << indent << "operation: ";
Printer<int8_t>::stream(s, indent + " ", v.operation);
}
};
} // namespace message_operations
} // namespace ros
#endif // MAPPING_MSGS_MESSAGE_COLLISIONOBJECTOPERATION_H
| [
"zphilip2000@hotmail.com"
] | zphilip2000@hotmail.com |
c22cfb4b1d5aa510dbfa66f41aac631d81efef23 | e217eaf05d0dab8dd339032b6c58636841aa8815 | /external/Oklabi/Kern-C++/OklabiBucketStore.h | 5e20593a9e9d47137ab32cd1d126ace23e78fd84 | [] | no_license | bigdoods/OpenInfraPlatform | f7785ebe4cb46e24d7f636e1b4110679d78a4303 | 0266e86a9f25f2ea9ec837d8d340d31a58a83c8e | refs/heads/master | 2021-01-21T03:41:20.124443 | 2016-01-26T23:20:21 | 2016-01-26T23:20:21 | 57,377,206 | 0 | 1 | null | 2016-04-29T10:38:19 | 2016-04-29T10:38:19 | null | UTF-8 | C++ | false | false | 2,099 | h | /* Change-Log:
*
*
*/
#include "OklabiPackaging.h"
#ifdef OKLABI_KERN
#ifndef DEFOklabiBucketStore
#define DEFOklabiBucketStore
#ifdef OKLABI_PACK
#pragma pack(push,4)
#endif
#include <string>
#include <list>
#include "OklabiMemoryChunk.h"
#include "OklabiMemoryChunkStore.h"
#include "OklabiKern.h"
namespace Oklabi
{
const UINT64 topSet64(((UINT64)1) << 63);
const UINT64 allSet64((UINT64)(-1));
const unsigned int topSet32(0x80000000);
const unsigned int allSet32(0xFFFFFFFF);
class OklabiBucketStore
{
public:
OklabiBucketStore(size_t size);
~OklabiBucketStore();
void* getBucket() /*throw ( BadAlloc )*/;
void* getBucket( size_t ) /*throw ( BadAlloc )*/;
void* getBucket( double size ) /*throw ( BadAlloc )*/ { return getBucket((size_t)size); };
void freeBucket( void* ) /*throw (NotPresent)*/;
void freeBucket( void* , size_t);
void freeBucket( void* p, double size ) { freeBucket(p, (size_t)size); };
size_t getSize(); // Bucketsize (Byte)
private:
typedef unsigned char Byte;
static const unsigned sizWord;
static const double d;
size_t m_noAdminWords; // #Words for Admin-Entries at Begin of Chunk
size_t m_uSize; // Bucketsize (Byte)
size_t getNoBuckets( OklabiMemoryChunk* pXMChunk);
size_t getOffsStart( OklabiMemoryChunk* pXMChunk );
// Read Free-Bit at npos of Chunk
bool getBit(OklabiMemoryChunk* pXMChunk, size_t npos) /*throw (OutOfBounds)*/;
// Set Free-Bit at npos of Chunk
void setBit(OklabiMemoryChunk* pXMChunk, size_t npos, bool bit) /*throw (OutOfBounds)*/;
void* getBucket(OklabiMemoryChunk* pXMChunk, size_t npos) /*throw (OutOfBounds)*/;
size_t FindFreeBucket(OklabiMemoryChunk* pChunk);
void* getWordAt(OklabiMemoryChunk* pXMChunk, size_t index) /*throw (OutOfBounds)*/;
std::list<OklabiMemoryChunk*> listAssociatedChunks;
OklabiMemoryChunk* GetNewChunk(size_t minSiz=0) /*throw (CannotCreate)*/; // get another Chunk
bool chunkIsEmpty(OklabiMemoryChunk* pXMChunk);
void cleanup();
};
class OutOfBounds
{
public: OutOfBounds() {};
~OutOfBounds() {};
};
};
#ifdef OKLABI_PACK
#pragma pack(pop)
#endif
#endif
#endif
| [
"planung.cms.bv@tum.de"
] | planung.cms.bv@tum.de |
08a84fd1d3b1e74aaad9fbbb16dce75c938832f3 | ebd5c4632bb5f85c9e3311fd70f6f1bf92fae53f | /PORMain/panda/include/openalAudioManager.h | 2a95aba405c98f71f6cdcc902a0ca462dfd94408 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | BrandonAlex/Pirates-Online-Retribution | 7f881a64ec74e595aaf62e78a39375d2d51f4d2e | 980b7448f798e255eecfb6bd2ebb67b299b27dd7 | refs/heads/master | 2020-04-02T14:22:28.626453 | 2018-10-24T15:33:17 | 2018-10-24T15:33:17 | 154,521,816 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 8,322 | h | // Filename: openalAudioManager.h
// Created by: Ben Buchwald <bb2@alumni.cmu.edu>
//
//
////////////////////////////////////////////////////////////////////
//
// PANDA 3D SOFTWARE
// Copyright (c) Carnegie Mellon University. All rights reserved.
//
// All use of this software is subject to the terms of the revised BSD
// license. You should have received a copy of this license along
// with this source code in a file named "LICENSE."
//
////////////////////////////////////////////////////////////////////
#ifndef __OPENAL_AUDIO_MANAGER_H__
#define __OPENAL_AUDIO_MANAGER_H__
#include "pandabase.h"
#ifdef HAVE_OPENAL //[
#include "audioManager.h"
#include "plist.h"
#include "pmap.h"
#include "pset.h"
#include "movieAudioCursor.h"
#include "reMutex.h"
// OSX uses the OpenAL framework
#ifdef IS_OSX
#include <OpenAL/al.h>
#include <OpenAL/alc.h>
#else
#include <AL/al.h>
#include <AL/alc.h>
#endif
class OpenALAudioSound;
extern void al_audio_errcheck(const char *context);
extern void alc_audio_errcheck(const char *context,ALCdevice* device);
class EXPCL_OPENAL_AUDIO OpenALAudioManager : public AudioManager {
class SoundData;
friend class OpenALAudioSound;
friend class OpenALSoundData;
public:
//Constructor and Destructor
OpenALAudioManager();
virtual ~OpenALAudioManager();
virtual void shutdown();
virtual bool is_valid();
virtual PT(AudioSound) get_sound(const string&, bool positional = false, int mode=SM_heuristic);
virtual PT(AudioSound) get_sound(MovieAudio *sound, bool positional = false, int mode=SM_heuristic);
virtual void uncache_sound(const string&);
virtual void clear_cache();
virtual void set_cache_limit(unsigned int count);
virtual unsigned int get_cache_limit() const;
virtual void set_volume(PN_stdfloat);
virtual PN_stdfloat get_volume() const;
void set_play_rate(PN_stdfloat play_rate);
PN_stdfloat get_play_rate() const;
virtual void set_active(bool);
virtual bool get_active() const;
// This controls the "set of ears" that listens to 3D spacialized sound
// px, py, pz are position coordinates. Can be 0.0f to ignore.
// vx, vy, vz are a velocity vector in UNITS PER SECOND.
// fx, fy and fz are the respective components of a unit forward-vector
// ux, uy and uz are the respective components of a unit up-vector
// These changes will NOT be invoked until audio_3d_update() is called.
virtual void audio_3d_set_listener_attributes(PN_stdfloat px, PN_stdfloat py, PN_stdfloat pz,
PN_stdfloat vx, PN_stdfloat xy, PN_stdfloat xz,
PN_stdfloat fx, PN_stdfloat fy, PN_stdfloat fz,
PN_stdfloat ux, PN_stdfloat uy, PN_stdfloat uz);
virtual void audio_3d_get_listener_attributes(PN_stdfloat *px, PN_stdfloat *py, PN_stdfloat *pz,
PN_stdfloat *vx, PN_stdfloat *vy, PN_stdfloat *vz,
PN_stdfloat *fx, PN_stdfloat *fy, PN_stdfloat *fz,
PN_stdfloat *ux, PN_stdfloat *uy, PN_stdfloat *uz);
// Control the "relative distance factor" for 3D spacialized audio in units-per-foot. Default is 1.0
// OpenAL has no distance factor but we use this as a scale
// on the min/max distances of sounds to preserve FMOD compatibility.
// Also, adjusts the speed of sound to compensate for unit difference.
virtual void audio_3d_set_distance_factor(PN_stdfloat factor);
virtual PN_stdfloat audio_3d_get_distance_factor() const;
// Control the presence of the Doppler effect. Default is 1.0
// Exaggerated Doppler, use >1.0
// Diminshed Doppler, use <1.0
virtual void audio_3d_set_doppler_factor(PN_stdfloat factor);
virtual PN_stdfloat audio_3d_get_doppler_factor() const;
// Exaggerate or diminish the effect of distance on sound. Default is 1.0
// Faster drop off, use >1.0
// Slower drop off, use <1.0
virtual void audio_3d_set_drop_off_factor(PN_stdfloat factor);
virtual PN_stdfloat audio_3d_get_drop_off_factor() const;
virtual void set_concurrent_sound_limit(unsigned int limit = 0);
virtual unsigned int get_concurrent_sound_limit() const;
virtual void reduce_sounds_playing_to(unsigned int count);
virtual void stop_all_sounds();
virtual void update();
private:
void make_current() const;
bool can_use_audio(MovieAudioCursor *source);
bool should_load_audio(MovieAudioCursor *source, int mode);
SoundData *get_sound_data(MovieAudio *source, int mode);
// Tell the manager that the sound dtor was called.
void release_sound(OpenALAudioSound* audioSound);
void increment_client_count(SoundData *sd);
void decrement_client_count(SoundData *sd);
void discard_excess_cache(int limit);
void starting_sound(OpenALAudioSound* audio);
void stopping_sound(OpenALAudioSound* audio);
void cleanup();
private:
// This global lock protects all access to OpenAL library interfaces.
static ReMutex _lock;
// An expiration queue is a list of SoundData
// that are no longer being used. They are kept
// around for a little while, since it is common to
// stop using a sound for a brief moment and then
// quickly resume.
typedef plist<void *> ExpirationQueue;
ExpirationQueue _expiring_samples;
ExpirationQueue _expiring_streams;
// An AudioSound that uses a SoundData is called a "client"
// of the SoundData. The SoundData keeps track of how
// many clients are using it. When the number of clients
// drops to zero, the SoundData is no longer in use. The
// expiration queue is a list of all SoundData that aren't
// in use, in least-recently-used order. If a SoundData
// in the expiration queue gains a new client, it is removed
// from the expiration queue. When the number of sounds
// in the expiration queue exceeds the cache limit, the
// first sound in the expiration queue is purged.
class SoundData {
public:
SoundData();
~SoundData();
OpenALAudioManager* _manager;
PT(MovieAudio) _movie;
ALuint _sample;
PT(MovieAudioCursor) _stream;
double _length;
int _rate;
int _channels;
int _client_count;
ExpirationQueue::iterator _expire;
};
typedef phash_map<string, SoundData *> SampleCache;
SampleCache _sample_cache;
typedef phash_set<PT(OpenALAudioSound)> SoundsPlaying;
SoundsPlaying _sounds_playing;
typedef phash_set<OpenALAudioSound *> AllSounds;
AllSounds _all_sounds;
// State:
int _cache_limit;
PN_stdfloat _volume;
PN_stdfloat _play_rate;
bool _active;
bool _cleanup_required;
// keep a count for startup and shutdown:
static int _active_managers;
static bool _openal_active;
unsigned int _concurrent_sound_limit;
bool _is_valid;
typedef pset<OpenALAudioManager *> Managers;
static Managers *_managers;
static ALCdevice* _device;
static ALCcontext* _context;
// cache of openal sources, use only for playing sounds
typedef pset<ALuint > SourceCache;
static SourceCache *_al_sources;
PN_stdfloat _distance_factor;
PN_stdfloat _doppler_factor;
PN_stdfloat _drop_off_factor;
ALfloat _position[3];
ALfloat _velocity[3];
ALfloat _forward_up[6];
////////////////////////////////////////////////////////////
//These are needed for Panda's Pointer System. DO NOT ERASE!
////////////////////////////////////////////////////////////
public:
static TypeHandle get_class_type() {
return _type_handle;
}
static void init_type() {
AudioManager::init_type();
register_type(_type_handle, "OpenALAudioManager", AudioManager::get_class_type());
}
virtual TypeHandle get_type() const {
return get_class_type();
}
virtual TypeHandle force_init_type() {
init_type();
return get_class_type();
}
private:
static TypeHandle _type_handle;
////////////////////////////////////////////////////////////
//DONE
////////////////////////////////////////////////////////////
};
EXPCL_OPENAL_AUDIO AudioManager *Create_OpenALAudioManager();
#endif //]
#endif /* __OPENAL_AUDIO_MANAGER_H__ */
| [
"brandoncarden12345@gmail.com"
] | brandoncarden12345@gmail.com |
9386112279a34ba09bfa38248c7026f03ea4a31d | b7549e543dea772774f92bb09e4af77a25cd3220 | /makefile/test/make-p/sub/subd.cxx | 1764932f5cf08dc133a760cb6b8d431350d462eb | [] | no_license | snoopspy/template | f6856fd24f5c39878dc4c4c8c540fd9f5fe6ebd5 | f23fbea5bd177bd43dd7e9b06b44cc8c20312787 | refs/heads/master | 2020-04-25T15:07:16.246326 | 2015-04-22T06:08:29 | 2015-04-22T06:08:29 | 31,304,345 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 71 | cxx | #include <stdio.h>
extern "C" void subd()
{
printf("subd.cxx\n");
}
| [
"gilgil@gilgil.net"
] | gilgil@gilgil.net |
2f8aac3005175dd3b96986fbaf4fc0206c8ede37 | b924f2af695a94e26208925e3f83819e3db9616b | /blocks/mail/src/Mail.cpp | 011738c753b5938e99ea28c8d84b660411f998fa | [] | no_license | saithal/BanTheRewind | 8f801ce15d6880aac1b1c0840ec6b47e6a2be71d | 70a8c483cfedd998251d3547b156abe874bf5a48 | refs/heads/master | 2021-01-16T21:30:42.673263 | 2011-10-27T01:16:35 | 2011-10-27T01:16:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,901 | cpp | /*
*
* Copyright (c) 2011, Ban the Rewind
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 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.
*
* Neither the name of the Ban the Rewind nor the names of its
* contributors may be used to endorse or promote products
* derived from this software without specific prior written
* permission.
*
* 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 HOLDER 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.
*
*/
// Include header
#include <Mail.h>
namespace cinder
{
namespace mail
{
// Constructor
Message::Message(const std::string & to, const std::string & from, const std::string & subject, const std::string & message, const std::string & server, int32_t port, bool mxLookUp)
{
// Initialize message
if (to.length() > 0 && from.length() > 0)
mObj = std::shared_ptr<jwsmtp::mailer>(new jwsmtp::mailer(to.c_str(), from.c_str(), subject.c_str(), message.c_str(), server.c_str(), (uint32_t)port, mxLookUp));
}
// Destructor
Message::~Message()
{
// Reset internal object
reset();
if (mObj)
mObj.reset();
}
// Send the message
void Message::send()
{
if (mObj)
mObj->send();
}
void Message::send() const
{
if (mObj)
mObj->send();
}
// Clear message
void Message::reset()
{
if (mObj)
mObj->reset();
}
// Get server response
const std::string Message::getResponse() { return mObj ? mObj->response() : ""; }
const std::string Message::getResponse() const { return mObj ? mObj->response() : ""; }
// Recipient
bool Message::addTo(const std::string & to) { return mObj ? mObj->addrecipient(to.c_str()) : false; }
bool Message::addTo(const std::vector<std::string> & to)
{
for (std::vector<std::string>::const_iterator toIt = to.cbegin(); toIt != to.cend(); ++toIt)
if (!addTo(* toIt))
return false;
return true;
}
void Message::clearTo()
{
if (mObj)
mObj->clearrecipients();
}
bool Message::removeTo(const std::string & to) { return mObj ? mObj->removerecipient(to.c_str()) : false; }
bool Message::removeTo(const std::vector<std::string> & to)
{
for (std::vector<std::string>::const_iterator toIt = to.cbegin(); toIt != to.cend(); ++toIt)
if (!removeTo(* toIt))
return false;
return true;
}
// Attachments
bool Message::addAttachment(const std::string & path) { return mObj ? mObj->attach(path) : false; }
bool Message::addAttachments(const std::vector<std::string> & paths)
{
for (std::vector<std::string>::const_iterator pathIt = paths.cbegin(); pathIt != paths.cend(); ++pathIt)
if (!addAttachment(* pathIt))
return false;
return true;
}
bool Message::addAttachment(const ci::fs::path & path) { return addAttachment(path.string()); }
bool Message::addAttachments(const std::vector<ci::fs::path> & paths)
{
for (std::vector<ci::fs::path>::const_iterator pathIt = paths.cbegin(); pathIt != paths.cend(); ++pathIt)
if (!addAttachment(* pathIt))
return false;
return true;
}
void Message::clearAttachments()
{
if (mObj)
mObj->clearattachments();
}
bool Message::removeAttachment(const std::string & path) { return mObj ? mObj->removeattachment(path) : false; }
bool Message::removeAttachments(const std::vector<std::string> & paths)
{
for (std::vector<std::string>::const_iterator pathIt = paths.cbegin(); pathIt != paths.cend(); ++pathIt)
if (!removeAttachment(* pathIt))
return false;
return true;
}
bool Message::removeAttachment(const ci::fs::path & path) { return removeAttachment(path.string()); }
bool Message::removeAttachments(const std::vector<ci::fs::path> & paths)
{
for (std::vector<ci::fs::path>::const_iterator pathIt = paths.cbegin(); pathIt != paths.cend(); ++pathIt)
if (!removeAttachment(* pathIt))
return false;
return true;
}
// Setters
void Message::setAuthentication(const AuthType & authType, const std::string & username, const std::string & password)
{
if (mObj)
{
mObj->authtype(authType);
mObj->username(username);
mObj->password(password);
}
}
bool Message::setFrom(const std::string & from) { return mObj ? mObj->setsender(from) : false; }
bool Message::setMessage(const std::string & message, bool html)
{
if (mObj)
{
if (html)
return mObj->setmessageHTML(message);
else
return mObj->setmessage(message);
}
return false;
}
bool Message::setServer(const std::string & server) { return mObj ? mObj->setserver(server) : false; }
bool Message::setSubject(const std::string & subject) { return mObj ? mObj->setsubject(subject) : false; }
bool Message::setTo(const std::string & to)
{
if (mObj)
{
clearTo();
return addTo(to);
}
return false;
}
}
}
| [
"bantherewind@gmail.com"
] | bantherewind@gmail.com |
9225671fd42e2730e21212ed269c8bca8b7c0deb | e1694830058a721d2a6605f60a53c805d679a337 | /DynamicProjectionMapping/rbf.h | 5a35f81bd1780de19d0517701780200e032897aa | [] | no_license | smygw72/Dynamic-Projection-Mapping | b5074eaeef23e6c186f189129da1c2636e53ae21 | 62a8ccb05ed9f2be3dc4cc15bc6588ec67f992e4 | refs/heads/main | 2023-08-07T23:54:53.755405 | 2021-09-12T02:32:23 | 2021-09-12T02:32:23 | 350,939,830 | 2 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 644 | h | #pragma once
#include "head.h"
///////////////////////////////////////////////////////////////////////////////
// マーカ部分の明度を補間するためにRBF補間を用いる //
///////////////////////////////////////////////////////////////////////////////
using namespace std;
class RBF {
private:
int N; // データの数
vector<cv::Point2i> X;
Eigen::MatrixXf Y;
Eigen::MatrixXf W;
Eigen::MatrixXf Phi;
public:
RBF();
~RBF() {};
void SetY(const cv::Mat roi);
void SetPhi();
void SetW();
int GetValue(const int x, const int y);
void Exe(cv::Mat& roi);
}; | [
"smygw72@gmail.com"
] | smygw72@gmail.com |
74a1d205205e9d05bac1144009ea9ec65aa9e71c | 0bc4186fee113a3c9e740f47a82ddb79b8dbe7ad | /Weekly Assignments/Week1/Box2D Demo/src/Game.cpp | 36e5ce609bcec41c3e52a38476c954bf93624976 | [] | no_license | uhhgoat/AngryBirdsPrototype | 8080db3f2115eff777c9a93b81c13c47dc9934ba | 4c7ba585386da70a0fe3f6f2ceb9589828f5e184 | refs/heads/master | 2020-12-28T14:41:41.463088 | 2020-02-05T05:33:51 | 2020-02-05T05:33:51 | 238,374,827 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,591 | cpp | #include <sb6.h>
#include <sb6ktx.h>
#include <math.h>
#include <assert.h>
#include "DebugOut.h"
#include "GameObject.h"
#include "MathEngine.h"
#include "Game.h"
#include "GraphicsObject.h"
#include "GraphicsObject_Sprite.h"
#include "GraphicsObject_Circle.h"
#include "GraphicsObject_Box.h"
#include "GraphicsObject_Tri.h"
#include "TextureMan.h"
#include "Camera.h"
#include "GameObjectMan.h"
#include "CameraMan.h"
#include "Image.h"
#include "GameObject2D.h"
#include "Color.h"
#include "Vect2D.h"
#include "ShaderMan.h"
#include "ImageMan.h"
#include "DebugOut.h"
#include "ModelMan.h"
#include "AzulStopWatch.h"
#include "TimerMan.h"
#include "Keyboard.h"
#include "Mouse.h"
#include "RedBird.h"
#include "BlueBird.h"
#include "YellowBird.h"
#include "GreenBird.h"
#include "BlackBird.h"
#include "WhiteBird.h"
#include "BigRedBird.h"
#include "KingPig.h"
#include "QueenPig.h"
#include "WoodBlockShort.h"
#include "WoodBlockMed.h"
#include "WoodBlockLong.h"
#include "GlassBlockShort.h"
#include "GlassBlockMed.h"
#include "GlassBlockLong.h"
Game* Game::ptrInstance = nullptr;
#include "Box2D.h"
#include "PixelToMeter.h"
WoodBlockLong *WBL;
GlassBlockLong *GBL;
WoodBlockMed *WBM;
GlassBlockMed *GBM;
WoodBlockShort *WBS;
GlassBlockShort *GBS;
RedBird* rB;
BlueBird* blB;
YellowBird* yB;
GreenBird* gB;
BlackBird* bkB;
WhiteBird* wB;
BigRedBird* brB;
GameSortBucket* pSortBkt;
//-----------------------------------------------------------------------------
// Game::Game()
// Game Engine Constructor
//-----------------------------------------------------------------------------
Game::Game(const char* windowName, const int Width, const int Height)
:Engine(windowName, Width, Height)
{
ptrInstance = this;
screenWidth = static_cast<float>(Width);
screenHeight = static_cast<float>(Height);
}
//-----------------------------------------------------------------------------
// Game::Initialize()
// Allows the engine to perform any initialization it needs to before
// starting to run. This is where it can query for any required services
// and load any non-graphic related content.
//-----------------------------------------------------------------------------
void Game::Initialize()
{
// Initialize timer
AzulStopWatch::initStopWatch();
// Start timer
stopWatch.tic();
totalWatch.tic();
//---------------------------------------------------------------------------------------------------------
// Box2D setup
//---------------------------------------------------------------------------------------------------------
// Gravity in Y direction
b2Vec2 gravity(0.0, -10.0f);
pWorld = new b2World(gravity);
// scale: pixels per meter
UnitScale::Create(50);
}
//-----------------------------------------------------------------------------
// Game::LoadContent()
// Allows you to load all content needed for your engine,
// such as objects, graphics, etc.
//-----------------------------------------------------------------------------
void Game::LoadContent()
{
//---------------------------------------------------------------------------------------------------------
// Setup the current 2D orthographic Camera
//---------------------------------------------------------------------------------------------------------
Camera *pCam2D = new Camera(Camera::Type::ORTHOGRAPHIC_2D);
pCam2D->setViewport(0, 0, (int)this->screenWidth, (int)this->screenHeight);
pCam2D->setOrthographic(-pCam2D->getScreenWidth() / 2.0f, pCam2D->getScreenWidth() / 2.0f,
-pCam2D->getScreenHeight() / 2.0f, pCam2D->getScreenHeight() / 2.0f,
1.0f, 1000.0f);
pCam2D->setOrientAndPosition(Vect(0.0f, 1.0f, 0.0f), Vect(0.0f, 0.0f, -1.0f), Vect(0.0f, 0.0f, 0.0f));
// Holder for the current 2D cameras
CameraMan::SetCurrentCamera(pCam2D, Camera::Type::ORTHOGRAPHIC_2D);
//---------------------------------------------------------------------------------------------------------
// Load up the managers
//---------------------------------------------------------------------------------------------------------
// Create/Load Shader
ShaderMan::addShader(ShaderName::SPRITE, "spriteRender");
ShaderMan::addShader(ShaderName::SPRITE_LINE, "spriteLineRender");
// Textures
TextureMan::addTexture("../../../../../reference/Asset/AngryBirds/unsorted.tga", TextName::Characters);
TextureMan::addTexture("../../../../../reference/Asset/AngryBirds/woodBlocks.tga", TextName::WoodBlocks);
TextureMan::addTexture("../../../../../reference/Asset/AngryBirds/glassBlocks.tga", TextName::GlassBlocks);
TextureMan::addTexture("../../../../../reference/Asset/AngryBirds/stoneBlocks.tga", TextName::StoneBlocks);
// Images
ImageMan::addImage(ImageName::KingPig, TextName::Characters, Rect(40, 1, 127, 153));
ImageMan::addImage(ImageName::QueenPig, TextName::Characters, Rect(40, 466, 127, 153));
ImageMan::addImage(ImageName::RedBird, TextName::Characters, Rect(903, 798, 46, 45));
ImageMan::addImage(ImageName::BlueBird, TextName::Characters, Rect(0, 378, 32, 31));
ImageMan::addImage(ImageName::YellowBird, TextName::Characters, Rect(667, 879, 59, 55));
ImageMan::addImage(ImageName::GreenBird, TextName::Characters, Rect(932, 529, 99, 72));
ImageMan::addImage(ImageName::WhiteBird, TextName::Characters, Rect(409, 352, 81, 94));
ImageMan::addImage(ImageName::BlackBird, TextName::Characters, Rect(409, 725, 62, 80));
ImageMan::addImage(ImageName::BigRedBird, TextName::Characters, Rect(298, 752, 97, 95));
ImageMan::addImage(ImageName::WoodBlockShort, TextName::WoodBlocks, Rect(288, 344, 83, 21));
ImageMan::addImage(ImageName::WoodBlockMed, TextName::WoodBlocks, Rect(288, 257, 168, 21));
ImageMan::addImage(ImageName::WoodBlockLong, TextName::WoodBlocks, Rect(288, 169, 205, 21));
ImageMan::addImage(ImageName::GlassBlockShort, TextName::GlassBlocks, Rect(288, 346, 83, 21));
ImageMan::addImage(ImageName::GlassBlockMed, TextName::GlassBlocks, Rect(288, 259, 168, 21));
ImageMan::addImage(ImageName::GlassBlockLong, TextName::GlassBlocks, Rect(288, 215, 205, 21));
//---------------------------------------------------------------------------------------------------------
// Sort buckets (AKA sprite layers)
//---------------------------------------------------------------------------------------------------------
pSortBkt = new GameSortBucket(GameObjectName::MainGroup);
GameObjectMan::Add(pSortBkt);
//---------------------------------------------------------------------------------------------------------
// Create Sprites
//---------------------------------------------------------------------------------------------------------
// Sprite
WBL = new WoodBlockLong(650, 100, 0.0f, *pWorld);
GameObjectMan::Add(WBL, GameObjectName::MainGroup);
GBL = new GlassBlockLong(1150, 100, 0.0f, *pWorld);
GameObjectMan::Add(GBL, GameObjectName::MainGroup);
WBM = new WoodBlockMed(200, 200, -0.2f, *pWorld);
GameObjectMan::Add(WBM, GameObjectName::MainGroup);
GBM = new GlassBlockMed(1600, 200, 0.2f, *pWorld);
GameObjectMan::Add(GBM, GameObjectName::MainGroup);
WBS = new WoodBlockShort(650, 500, 0.4f, *pWorld);
GameObjectMan::Add(WBS, GameObjectName::MainGroup);
GBS = new GlassBlockShort(1150, 500, -0.4f, *pWorld);
GameObjectMan::Add(GBS, GameObjectName::MainGroup);
rB = new RedBird(350, 900, 0.0f, true, *pWorld);
GameObjectMan::Add(rB, GameObjectName::MainGroup);
blB = new BlueBird(1300, 900, 0.0f, true, *pWorld);
GameObjectMan::Add(blB, GameObjectName::MainGroup);
gB = new GreenBird(1100, 900, 0.0f, true, *pWorld);
GameObjectMan::Add(gB, GameObjectName::MainGroup);
yB = new YellowBird(900, 900, 0.0f, true, *pWorld);
GameObjectMan::Add(yB, GameObjectName::MainGroup);
wB = new WhiteBird(700, 900, 0.0f, true, *pWorld);
GameObjectMan::Add(wB, GameObjectName::MainGroup);
bkB = new BlackBird(500, 900, 0.0f, true, *pWorld);
GameObjectMan::Add(bkB, GameObjectName::MainGroup);
brB = new BigRedBird(600, 900, 0.0f, true, *pWorld);
GameObjectMan::Add(brB, GameObjectName::MainGroup);
//----------------------------------------------------------------------------------------
// Ground box - Box2D setup
//----------------------------------------------------------------------------------------
//CONSOLIDATED INTO CLASS
//----------------------------------------------------------------------------------------
// Red Bird - Box2D setup
//----------------------------------------------------------------------------------------
//CONSOLIDATED INTO CLASS
}
//-----------------------------------------------------------------------------
// Game::Update()
// Called once per frame, update data, tranformations, etc
// Use this function to control process order
// Input, AI, Physics, Animation, and Graphics
//-----------------------------------------------------------------------------
void Game::Update(float currentTime)
{
// Time update.
// Get the time that has passed.
// Feels backwards, but its not, need to see how much time has passed
stopWatch.toc();
stopWatch.tic();
totalWatch.toc();
// Update cameras - make sure everything is consistent
Camera *pCam2D = CameraMan::GetCurrent(Camera::Type::ORTHOGRAPHIC_2D);
pCam2D->updateCamera();
TimerMan::Update();
// ------------- Add your update below this line: ----------------------------
// Phase 1: Physics Update - Step world----------------------------
int velocityIterations = 8;
int positionIterations = 3;
float timestep = 1.0f / 60; // 60 fps. Box2D does not recommend tying this to framerate
pWorld->Step(timestep, velocityIterations, positionIterations);
// Phase 2: Update the associated GameObjectsd --------------------
b2Body *pBody = pWorld->GetBodyList();
while (pBody != 0) // Loop through all the bodies in the Box2D
{
b2Fixture *pFix = pBody->GetFixtureList();
while (pFix != 0) // For each body, loop through all its fixtures
{
// For a given fixture, get the associated GameObject2D
GameObject2D *pGObj = static_cast<GameObject2D*>(pFix->GetUserData());
b2Vec2 fixCenter;
if (pBody->IsActive())
{
fixCenter = pFix->GetAABB(0).GetCenter();
}
else
{ // Must extract the center this way when body is inactive
b2AABB tmpAABB;
pFix->GetShape()->ComputeAABB(&tmpAABB, pBody->GetTransform(), 0);
fixCenter = tmpAABB.GetCenter();
}
float ang = pBody->GetAngle();
pGObj->PhysicsUpdate(fixCenter, ang);
pFix = pFix->GetNext();
}
pBody = pBody->GetNext();
}
// Phase 3: Let the engine update all the game objects normally
GameObjectMan::Update(currentTime);
}
//-----------------------------------------------------------------------------
// Game::Draw()
// This function is called once per frame
// Use this for draw graphics to the screen.
// Only do rendering here
//-----------------------------------------------------------------------------
void Game::Draw()
{
// draw all objects
GameObjectMan::Draw();
}
//-----------------------------------------------------------------------------
// Game::UnLoadContent()
// unload content (resources loaded above)
// unload all content that was loaded before the Engine Loop started
//-----------------------------------------------------------------------------
void Game::UnLoadContent()
{
delete rB;
delete blB;
delete gB;
delete yB;
delete wB;
delete bkB;
delete brB;
delete WBS;
delete WBM;
delete WBL;
delete GBS;
delete GBM;
delete GBL;
delete pSortBkt;
// Engine clean-up
CameraMan::Terminate();
ModelMan::Terminate();
ShaderMan::Terminate();
TextureMan::Terminate();
ImageMan::Terminate();
GameObjectMan::Terminate();
TimerMan::Terminate();
}
//------------------------------------------------------------------
// Game::ClearBufferFunc()
// Allows user to change the way the clear buffer function works
//------------------------------------------------------------------
void Game::ClearBufferFunc()
{
const GLfloat blue[] = { 0.6f, 0.6f, 0.6f, 1.0f };
const GLfloat one = 1.0f;
glViewport(0, 0, info.windowWidth, info.windowHeight);
glClearBufferfv(GL_COLOR, 0, blue);
glClearBufferfv(GL_DEPTH, 0, &one);
}
float Game::GetFrameTime()
{
return Instance().stopWatch.timeInSeconds();
}
float Game::GetTotalTime()
{
return Instance().totalWatch.timeInSeconds();
}
Game::~Game()
{
delete pWorld;
}
void Game::Run(const char* windowName, const int Width, const int Height)
{
ptrInstance = new Game(windowName, Width, Height);
ptrInstance->run();
delete ptrInstance;
}
| [
"matyas@fenyves.net"
] | matyas@fenyves.net |
43e057c2de4703917a61d9591b38cd3865538385 | ecfdfa7b306cfa60f5f4336666c4ba8a612823f9 | /GeneratedFiles/ui_opencontestwidget.h | cd932056d3883af3549526d40898420a219afbee | [] | no_license | fangjyshanghai/LemonJudger | c573d603717922ab9aadf3cec2abd2c8bb9be30b | 88bc6f190a98b720116c5f62e528e2197734e479 | refs/heads/master | 2020-04-27T16:59:31.928442 | 2018-09-18T14:38:28 | 2018-09-18T14:38:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,022 | h | /********************************************************************************
** Form generated from reading UI file 'opencontestwidget.ui'
**
** Created by: Qt User Interface Compiler version 5.8.0
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_OPENCONTESTWIDGET_H
#define UI_OPENCONTESTWIDGET_H
#include <QtCore/QVariant>
#include <QtWidgets/QAction>
#include <QtWidgets/QApplication>
#include <QtWidgets/QButtonGroup>
#include <QtWidgets/QHBoxLayout>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QSpacerItem>
#include <QtWidgets/QTableWidget>
#include <QtWidgets/QToolButton>
#include <QtWidgets/QVBoxLayout>
#include <QtWidgets/QWidget>
QT_BEGIN_NAMESPACE
class Ui_OpenContestWidget
{
public:
QHBoxLayout *horizontalLayout;
QTableWidget *recentContest;
QVBoxLayout *verticalLayout;
QSpacerItem *verticalSpacer;
QToolButton *addButton;
QToolButton *deleteButton;
QSpacerItem *verticalSpacer_2;
void setupUi(QWidget *OpenContestWidget)
{
if (OpenContestWidget->objectName().isEmpty())
OpenContestWidget->setObjectName(QStringLiteral("OpenContestWidget"));
OpenContestWidget->resize(400, 300);
horizontalLayout = new QHBoxLayout(OpenContestWidget);
horizontalLayout->setObjectName(QStringLiteral("horizontalLayout"));
recentContest = new QTableWidget(OpenContestWidget);
if (recentContest->columnCount() < 2)
recentContest->setColumnCount(2);
QFont font;
font.setPointSize(9);
font.setBold(true);
font.setWeight(75);
QTableWidgetItem *__qtablewidgetitem = new QTableWidgetItem();
__qtablewidgetitem->setFont(font);
recentContest->setHorizontalHeaderItem(0, __qtablewidgetitem);
QTableWidgetItem *__qtablewidgetitem1 = new QTableWidgetItem();
__qtablewidgetitem1->setFont(font);
recentContest->setHorizontalHeaderItem(1, __qtablewidgetitem1);
recentContest->setObjectName(QStringLiteral("recentContest"));
recentContest->setStyleSheet(QStringLiteral("font-size: 9pt;"));
recentContest->setEditTriggers(QAbstractItemView::NoEditTriggers);
recentContest->setSelectionMode(QAbstractItemView::SingleSelection);
recentContest->setSelectionBehavior(QAbstractItemView::SelectRows);
recentContest->horizontalHeader()->setHighlightSections(false);
recentContest->horizontalHeader()->setMinimumSectionSize(80);
recentContest->horizontalHeader()->setStretchLastSection(true);
recentContest->verticalHeader()->setVisible(false);
recentContest->verticalHeader()->setDefaultSectionSize(25);
recentContest->verticalHeader()->setMinimumSectionSize(25);
horizontalLayout->addWidget(recentContest);
verticalLayout = new QVBoxLayout();
verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
verticalLayout->addItem(verticalSpacer);
addButton = new QToolButton(OpenContestWidget);
addButton->setObjectName(QStringLiteral("addButton"));
addButton->setMinimumSize(QSize(27, 27));
QIcon icon;
icon.addFile(QStringLiteral(":/icon/add.png"), QSize(), QIcon::Normal, QIcon::Off);
addButton->setIcon(icon);
verticalLayout->addWidget(addButton);
deleteButton = new QToolButton(OpenContestWidget);
deleteButton->setObjectName(QStringLiteral("deleteButton"));
deleteButton->setEnabled(false);
deleteButton->setMinimumSize(QSize(27, 27));
QIcon icon1;
icon1.addFile(QStringLiteral(":/icon/rod.png"), QSize(), QIcon::Normal, QIcon::Off);
deleteButton->setIcon(icon1);
verticalLayout->addWidget(deleteButton);
verticalSpacer_2 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
verticalLayout->addItem(verticalSpacer_2);
horizontalLayout->addLayout(verticalLayout);
retranslateUi(OpenContestWidget);
QMetaObject::connectSlotsByName(OpenContestWidget);
} // setupUi
void retranslateUi(QWidget *OpenContestWidget)
{
OpenContestWidget->setWindowTitle(QApplication::translate("OpenContestWidget", "Form", Q_NULLPTR));
QTableWidgetItem *___qtablewidgetitem = recentContest->horizontalHeaderItem(0);
___qtablewidgetitem->setText(QApplication::translate("OpenContestWidget", "Title", Q_NULLPTR));
QTableWidgetItem *___qtablewidgetitem1 = recentContest->horizontalHeaderItem(1);
___qtablewidgetitem1->setText(QApplication::translate("OpenContestWidget", "Location", Q_NULLPTR));
} // retranslateUi
};
namespace Ui {
class OpenContestWidget: public Ui_OpenContestWidget {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_OPENCONTESTWIDGET_H
| [
"2470196889@qq.com"
] | 2470196889@qq.com |
b960c8dd32401c799f46b22b8b0d930060abf570 | c005bbc7525f6810d01cedcd56495482ba375f2f | /method.cc | 78a31c3ac4bc423b0729bf50ed8387081f3a040a | [
"MIT",
"LicenseRef-scancode-public-domain"
] | permissive | Chungzuwalla/ici | a8d9ae2ad3bc4f6c1754765126c7186df442b184 | 8240fbe36ef8c9f67f101e9798f9d6d36dd27d27 | refs/heads/master | 2020-04-20T06:23:34.743227 | 2019-01-18T08:57:31 | 2019-01-18T08:57:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,802 | cc | #define ICI_CORE
#include "fwd.h"
#include "method.h"
#include "exec.h"
#include "buf.h"
#include "null.h"
#include "primes.h"
#include "str.h"
#ifndef NOPROFILE
#include "profile.h"
#endif
namespace ici
{
/*
* Returns a new ICI method object that combines the given 'subject' object
* (typically a struct) with the given 'callable' object (typically a
* function). A method is also a callable object.
*
* Returns nullptr on error, usual conventions.
*
* This --func-- forms part of the --ici-api--.
*/
method *new_method(object *subject, object *callable)
{
method *m;
if ((m = ici_talloc(method)) == nullptr)
return nullptr;
set_tfnz(m, TC_METHOD, 0, 1, 0);
m->m_subject = subject;
m->m_callable = callable;
rego(m);
return m;
}
size_t method_type::mark(object *o)
{
auto m = methodof(o);
return type::mark(m) + ici_mark(m->m_subject) + ici_mark(m->m_callable);
}
object * method_type::fetch(object *o, object *k)
{
auto m = methodof(o);
if (k == SS(subject))
return m->m_subject;
if (k == SS(callable))
return m->m_callable;
return null;
}
int method_type::call(object *o, object *)
{
auto m = methodof(o);
if (!m->m_callable->can_call())
{
char n1[objnamez];
char n2[objnamez];
return set_error
(
"attempt to call %s:%s",
ici::objname(n1, m->m_subject),
ici::objname(n2, m->m_callable)
);
}
return m->m_callable->call(m->m_subject);
}
void method_type::objname(object *o, char p[objnamez])
{
char n1[objnamez];
char n2[objnamez];
ici::objname(n1, methodof(o)->m_subject);
ici::objname(n2, methodof(o)->m_callable);
sprintf(p, "(%.13s:%.13s)", n1, n2);
}
} // namespace ici
| [
"an@atrn.org"
] | an@atrn.org |
2f419e18c1a8c203456bb5175ef0a560f2c2e7ed | 53d4a4ed468941ace04d92da75bdac2285c377fe | /Part-III/Ch16/16.2.2/16.37.cc | 665e07d4c79dabd5eb295aeb26683bf7c805f996 | [
"MIT"
] | permissive | RingZEROtlf/Cpp-Primer | c937cad3342950d4f211907b7fb7044260bc09cc | bde40534eeca733350825c41f268415fdccb1cc3 | refs/heads/master | 2022-12-22T18:52:01.163191 | 2020-09-25T07:45:13 | 2020-09-25T07:45:13 | 285,617,317 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 102 | cc | #include <iostream>
#include <algorithm>
int main()
{
std::cout << std::max(1, 2.0) << std::endl;
} | [
"RingZEROtlf@outlook.com"
] | RingZEROtlf@outlook.com |
1a11b56527548a5aedaa4695012bdda84e33a476 | ac1c9fbc1f1019efb19d0a8f3a088e8889f1e83c | /out/release/gen/third_party/blink/renderer/bindings/modules/v8/unsigned_long_or_unsigned_long_sequence.h | 6446382b66f49cd04bdbd8938900e946c710eadc | [
"BSD-3-Clause"
] | permissive | xueqiya/chromium_src | 5d20b4d3a2a0251c063a7fb9952195cda6d29e34 | d4aa7a8f0e07cfaa448fcad8c12b29242a615103 | refs/heads/main | 2022-07-30T03:15:14.818330 | 2021-01-16T16:47:22 | 2021-01-16T16:47:22 | 330,115,551 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,210 | h | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file has been auto-generated from the Jinja2 template
// third_party/blink/renderer/bindings/templates/union_container.h.tmpl
// by the script code_generator_v8.py.
// DO NOT MODIFY!
// clang-format off
#ifndef THIRD_PARTY_BLINK_RENDERER_BINDINGS_MODULES_V8_UNSIGNED_LONG_OR_UNSIGNED_LONG_SEQUENCE_H_
#define THIRD_PARTY_BLINK_RENDERER_BINDINGS_MODULES_V8_UNSIGNED_LONG_OR_UNSIGNED_LONG_SEQUENCE_H_
#include "base/optional.h"
#include "third_party/blink/renderer/bindings/core/v8/dictionary.h"
#include "third_party/blink/renderer/bindings/core/v8/native_value_traits.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_binding_for_core.h"
#include "third_party/blink/renderer/modules/modules_export.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/heap/handle.h"
namespace blink {
class MODULES_EXPORT UnsignedLongOrUnsignedLongSequence final {
DISALLOW_NEW();
public:
UnsignedLongOrUnsignedLongSequence();
bool IsNull() const { return type_ == SpecificType::kNone; }
bool IsUnsignedLong() const { return type_ == SpecificType::kUnsignedLong; }
uint32_t GetAsUnsignedLong() const;
void SetUnsignedLong(uint32_t);
static UnsignedLongOrUnsignedLongSequence FromUnsignedLong(uint32_t);
bool IsUnsignedLongSequence() const { return type_ == SpecificType::kUnsignedLongSequence; }
const Vector<uint32_t>& GetAsUnsignedLongSequence() const;
void SetUnsignedLongSequence(const Vector<uint32_t>&);
static UnsignedLongOrUnsignedLongSequence FromUnsignedLongSequence(const Vector<uint32_t>&);
UnsignedLongOrUnsignedLongSequence(const UnsignedLongOrUnsignedLongSequence&);
~UnsignedLongOrUnsignedLongSequence();
UnsignedLongOrUnsignedLongSequence& operator=(const UnsignedLongOrUnsignedLongSequence&);
void Trace(blink::Visitor*);
private:
enum class SpecificType {
kNone,
kUnsignedLong,
kUnsignedLongSequence,
};
SpecificType type_;
uint32_t unsigned_long_;
Vector<uint32_t> unsigned_long_sequence_;
friend MODULES_EXPORT v8::Local<v8::Value> ToV8(const UnsignedLongOrUnsignedLongSequence&, v8::Local<v8::Object>, v8::Isolate*);
};
class V8UnsignedLongOrUnsignedLongSequence final {
public:
MODULES_EXPORT static void ToImpl(v8::Isolate*, v8::Local<v8::Value>, UnsignedLongOrUnsignedLongSequence&, UnionTypeConversionMode, ExceptionState&);
};
MODULES_EXPORT v8::Local<v8::Value> ToV8(const UnsignedLongOrUnsignedLongSequence&, v8::Local<v8::Object>, v8::Isolate*);
template <class CallbackInfo>
inline void V8SetReturnValue(const CallbackInfo& callbackInfo, UnsignedLongOrUnsignedLongSequence& impl) {
V8SetReturnValue(callbackInfo, ToV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
}
template <class CallbackInfo>
inline void V8SetReturnValue(const CallbackInfo& callbackInfo, UnsignedLongOrUnsignedLongSequence& impl, v8::Local<v8::Object> creationContext) {
V8SetReturnValue(callbackInfo, ToV8(impl, creationContext, callbackInfo.GetIsolate()));
}
template <>
struct NativeValueTraits<UnsignedLongOrUnsignedLongSequence> : public NativeValueTraitsBase<UnsignedLongOrUnsignedLongSequence> {
MODULES_EXPORT static UnsignedLongOrUnsignedLongSequence NativeValue(v8::Isolate*, v8::Local<v8::Value>, ExceptionState&);
MODULES_EXPORT static UnsignedLongOrUnsignedLongSequence NullValue() { return UnsignedLongOrUnsignedLongSequence(); }
};
template <>
struct V8TypeOf<UnsignedLongOrUnsignedLongSequence> {
typedef V8UnsignedLongOrUnsignedLongSequence Type;
};
} // namespace blink
// We need to set canInitializeWithMemset=true because HeapVector supports
// items that can initialize with memset or have a vtable. It is safe to
// set canInitializeWithMemset=true for a union type object in practice.
// See https://codereview.chromium.org/1118993002/#msg5 for more details.
WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(blink::UnsignedLongOrUnsignedLongSequence)
#endif // THIRD_PARTY_BLINK_RENDERER_BINDINGS_MODULES_V8_UNSIGNED_LONG_OR_UNSIGNED_LONG_SEQUENCE_H_
| [
"xueqi@zjmedia.net"
] | xueqi@zjmedia.net |
7c4436b2a5a58359bc6c99ebcb3f3b9b642c3434 | e2c48e041d2983164cf04bc49d37f3bc7324f2d3 | /Cplusplus/_1049_Last_Stone_Weight_II/_1049_main.cpp | c3b2a8fb7805d0dc53015b74012827a73704bb9a | [] | no_license | ToLoveToFeel/LeetCode | 17aff7f9b36615ccebe386545440f921d8fdf740 | de7a893fc625ff30122899969f761ed5f8df8b12 | refs/heads/master | 2023-07-12T07:35:09.410016 | 2021-08-23T02:33:00 | 2021-08-23T02:33:00 | 230,863,299 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 746 | cpp | // Created by WXX on 2021/6/8 9:34
#include <iostream>
#include <vector>
using namespace std;
/**
* 执行用时:0 ms, 在所有 C++ 提交中击败了100.00%的用户
* 内存消耗:8.1 MB, 在所有 C++ 提交中击败了49.56%的用户
*/
class Solution {
public:
int lastStoneWeightII(vector<int> &stones) {
int sum = 0;
for (auto x : stones) sum += x;
int m = sum / 2;
vector<int> f(m + 1);
for (auto x : stones)
for (int j = m; j >= x; j--)
f[j] = max(f[j], f[j - x] + x);
return (sum - f[m]) - f[m];
}
};
int main() {
vector<int> stones = {2, 7, 4, 1, 8, 1};
cout << Solution().lastStoneWeightII(stones) << endl; // 1
return 0;
}
| [
"1137247975@qq.com"
] | 1137247975@qq.com |
d9d0607a1a28bc9fbd5b3882dc965b9247030d70 | 4df46993262e19afb957380b6ca1828e5b1fafec | /source/FileManagement.h | 9b3303eec2a0a42e7f0362d374ac32b875f1b749 | [
"MIT"
] | permissive | fallscameron01/List_Manager | 2386ae6501670b83972fcae9954065d6db89a415 | 7025eff39cf1da0786d51a3b5371fdc482298d88 | refs/heads/master | 2022-10-20T21:14:52.717915 | 2020-06-02T21:25:06 | 2020-06-02T21:25:06 | 253,299,863 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 899 | h | /*
Programmer: Cameron Falls
File: FileManagement.h
Purpose: This file contains the declarations for file related functions.
*/
#ifndef FILEMANAGEMENT_H
#define FILEMANAGEMENT_H
#define _SILENCE_EXPERIMENTAL_FILESYSTEM_DEPRECATION_WARNING
#include <experimental/filesystem>
#include <string>
#include <vector>
#include "TaskGroup.h"
namespace fs = std::experimental::filesystem;
using namespace std;
/*
Description: Loads all lists in the directory Lists/ into groups.
Parameters: groups - holds the loaded lists
Returns: none.
*/
void loadLists(vector<TaskGroup>& groups);
/*
Description: Checks if a list name is valid.
Parameters: groups - all the lists, to check if the name is already in use.
name - the name being checked.
Returns: bool - whether or not the name is valid.
*/
bool nameIsValid(const vector<TaskGroup>& groups, const string& name);
#endif | [
"camfalls0201@gmail.com"
] | camfalls0201@gmail.com |
350f086c92631211ef00a4c1fcd8455289a009d5 | 6157455a8627e82d77254289050bd04162d552ba | /PiFcp/pifcp/spc.cp | 976f719a34bd92486905eadb776ea8c5f720de22 | [] | no_license | shapirolab/Logix | f769e6ab3fec12dcf5e4b59a3d172ed667291ead | 6960cb3ff7dfef9885383b62b7996ae1d7e42538 | refs/heads/master | 2022-11-11T07:52:49.814029 | 2020-06-30T07:17:08 | 2020-06-30T07:17:08 | 275,871,063 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,457 | cp | /*
Precompiler for Pi Calculus procedures - Stochastic Pi Calculus Phase.
Bill Silverman, February 1999.
Last update by $Author: bill $
$Date: 2000/05/07 09:05:50 $
Currently locked by $Locker: $
$Revision: 2.1 $
$Source: /home/qiana/Repository/PiFcp/pifcp/spc.cp,v $
Copyright (C) 2000, Weizmann Institute of Science - Rehovot, ISRAEL
*/
-export(output/3).
-mode(interpret).
-language(compound).
/*
** output/3
**
** Input:
**
** In is a stream of Mode(Atom, RHSS, Procedure).
**
** Mode is one of {export,
** none, no_guard,
** compare, logix,
** receive, send, mixed}.
**
** Atom is an Fcp atom of a compound procedure:
**
** ProcedureName(<arguments>)
** or
** ProcedureName
**
** RHSS is the right-hand-side of the compound procedure.
**
** Procedure is [] or the compound procedure's communication part.
**
** ProcedureName.Mode(<arguments'>) :- <compound rhs>
**
** where Mode is in {send, mixed}.
**
** Delay is one of {none, stochastic}.
**
** Output:
**
** Terms is a stream of compound procedures.
*/
output(In, Delay, Terms) :-
Delay =?= none,
In ? Mode(Atom, RHSS, []),
Mode =\= conflict :
Terms ! (Atom :- RHSS) |
self;
Delay =?= none,
In ? Mode(Atom, RHSS, Procedure), Procedure =\= [],
Mode =\= conflict :
Terms ! (Atom :- RHSS),
Terms' ! Procedure |
self;
/* Discard conflicted code. */
In ? conflict(_Atom, _RHSS, _Procedure) |
self;
Delay =?= stochastic,
In ? export(Atom, RHSS, _Procedure) :
Terms ! (Atom :- RHSS) |
self;
Delay =?= stochastic,
In ? Mode(Atom, RHSS, Procedure),
Mode =\= export, Mode =\= conflict |
add_schedule_channel,
stochastic;
In = [] :
Delay = _,
Terms = [].
add_schedule_channel(Atom, LHS) :-
string(Atom) :
LHS = Atom(`pifcp(schedule));
tuple(Atom) |
utils#tuple_to_dlist(Atom, AL, [`pifcp(schedule)]),
utils#list_to_tuple(AL, LHS).
stochastic(In, Delay, Terms, Mode, LHS, RHSS, Procedure) :-
Procedure =?= [] :
Mode = _,
Terms ! (Atom? :- RHSS) |
piutils#tuple_to_atom(LHS, Atom),
output;
Procedure =?= (Atom :- Communicate) :
Procedure' = (Atom'? :- Communicate) |
add_schedule_channel(Atom, Atom'),
communication.
communication(In, Delay, Terms, Mode, LHS, RHSS, Procedure) :-
Procedure =?= (Atom :- Communicate1),
arg(1, Atom, ProcName),
string_to_dlist(ProcName, PNL, []) : Mode = _,
Terms ! (LHS :- RHS?),
Terms' ! (Atom'? :- Communicate2?) |
utils#tuple_to_dlist(Atom, ADL, [`pifcp(count)]),
utils#list_to_tuple(ADL?, Atom'),
remake_rhs(RHSS, Prepares, RHSS'),
reform_rhs(RHSS',
write_channel(schedule(WaitList?), `pifcp(schedule)), RHS),
piutils#untuple_predicate_list(';', Communicate1, CL1),
make_reference_name,
rewrite_rhss,
piutils#make_predicate_list(';', CL2?, Communicate2),
output.
reform_rhs(RHSS, Schedule, RHS) :-
RHSS =?= (Ask : Tell | Body) :
RHS = (Ask : Schedule, Tell | Body);
RHSS =?= (Ask | Body), Ask =\= (_ : _) :
RHS = (Ask : Schedule | Body);
RHSS =\= (_ | _) :
RHS = (true : Schedule | RHSS).
make_reference_name(PNL, RefName) :-
PNL ? Dot :
ascii('.', Dot) |
self;
otherwise,
list_to_string(PNL, RefName^) |
true.
remake_rhs(RHS1, Prepares, RHS2) :-
RHS1 =\= (_ | _) :
Prepares = {[], []},
RHS2 = RHS1;
RHS1 =?= (Asks : Tells | Body) :
Prepares = {Asks'?, Tells'?} |
piutils#untuple_predicate_list(',', Asks, Asks'),
piutils#untuple_predicate_list(',', Tells, Tells'),
extract_reads_and_writes,
make_waits(IdWrites?, Body, Body'),
complete_preparation.
make_waits(IdWrites, OldBody, NewBody) :-
IdWrites ? {_Identify, write_channel(PiMessage, _FcpChannel)},
PiMessage =?= _Sender(_Message, ChoiceTag, _Choice) :
NewBody = (pi_wait_to_send(`spsfcp(ChoiceTag), PiMessage), NewBody'?) |
self;
IdWrites =?= [] :
NewBody = OldBody.
/* This procedure should be replaced if the monitor is enhanced to
prepare the Receives.*/
complete_preparation(Reads, Body, RHS2) :-
Reads =?= [] :
RHS2 = Body;
otherwise :
RHS2 = (PrepareReceives?, Body) |
piutils#make_predicate_list(',', Reads, PrepareReceives).
extract_reads_and_writes(Asks, Tells, IdWrites, Reads) :-
Asks ? Identify,
Tells ? Write, Write = write_channel(_PiMessage, _FcpChannel) :
IdWrites ! {Identify, Write} |
self;
Asks ? Identify,
Tells ? true,
Identify = (`ChannelName = _Tuple),
Asks' ? Read,
Read =?= read_vector(2, _FcpVector, Stream) :
Reads ! pi_wait_to_receive(`sprfcp(ChannelName),`pifcp(chosen), Stream) |
self;
Asks ? Identify,
Tells =?= [],
Identify = (`ChannelName = _Tuple),
Asks' ? Read,
Read =?= read_vector(2, _FcpVector, Stream) :
Reads ! pi_wait_to_receive(`sprfcp(ChannelName),`pifcp(chosen), Stream) |
self;
Asks =?= [] :
Tells = _,
IdWrites = [],
Reads = [].
rewrite_rhss(ProcName, RefName, CL1, Prepares, WaitList, CL2) :-
CL1 ? Receive, Receive =?= (Ask : Tell | Body), Body =\= self,
Ask = (_Stream ? _Message, Identify, _We),
Identify = (`ChannelName = _Creator(_FcpVector, _Arguments)) :
WaitList ! receive(`ChannelName, `sprfcp(ChannelName)),
CL2 ! (Ask : write_channel(terminate(RefName-ChannelName, `pifcp(count)),
`pifcp(schedule)), Tell |
Body) |
self;
CL1 ? Send, Send =?= (Ask | Body),
Ask = (`pifcp(chosen) = _Index) :
CL2 ! (Ask : write_channel(terminate(RefName, `pifcp(count)),
`pifcp(schedule)) |
Body) |
self;
CL1 ? Send, Send =?= (Ask : Tell | Body),
Ask = (`pifcp(chosen) = _Index) :
CL2 ! (Ask : write_channel(terminate(RefName, `pifcp(count)),
`pifcp(schedule)), Tell |
Body) |
self;
CL1 ? Other,
otherwise :
CL2 ! Other |
self;
CL1 =?= [],
Prepares = {Asks, Tells} :
ProcName = _,
CL2 = [] |
extract_reads_and_writes + (Reads = _),
complete_waitlist + (EndList = RefName(`pifcp(count))).
complete_waitlist(EndList, IdWrites, WaitList) :-
IdWrites ? {(Channel = _PiChannel),
write_channel(PiMessage, _FcpChannel)},
PiMessage =?= {_Sender, _ChannelList, SendIndex, _ChoiceVariable} :
WaitList ! send(Channel, `spsfcp(SendIndex)) |
self;
IdWrites =?= [] :
WaitList = EndList.
| [
"bill"
] | bill |
abf51ab80dd2586acb0ff5990f6852f6f541fc8d | cb5ee802d85e40428ed556fafb31b951ff517557 | /IS/Agenda/Agenda.cpp | 0726a2c09b599e0d6cac89a1bab849857693667b | [] | no_license | i22safed/AsignaturasIngenier | 04bbe62d23f166e65d039f7cd400b30663d9c0c4 | 331638f1d766e7ac8dea45643a1a7e50a62c14f2 | refs/heads/master | 2021-01-18T02:34:20.010445 | 2015-04-20T15:41:18 | 2015-04-20T15:41:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,109 | cpp | /*
* Agenda.cpp
*
* Created on: 13/12/2014
* Author: jose
*/
#include "Agenda.h"
using namespace std;
Agenda::Agenda() {
// TODO Auto-generated constructor stub
}
Agenda::~Agenda() {
// TODO Auto-generated destructor stub
}
bool Agenda::esvacia() {
return agenda.empty();
}
int Agenda::longitud() {
return agenda.size();
}
bool Agenda::pertenece(Cliente &e) {
bool encontrado=false;
list<Cliente>::iterator it= agenda.begin();
while(!encontrado && it!=agenda.end()){//hay que buscarlo tambien por el segundo apellido para que sea igual
if((*it).getDni()==e.getDni() ){
encontrado=true;
}
else it++;
}
return encontrado;
}
void Agenda::insertarCliente(list<Cliente>::iterator pos, Cliente& e) {
//hay que distinguir entre si el cliente existe o no
bool ok=false;
if(esvacia()){
agenda.push_back(e);
}
else if(pertenece(e))
{
//Si ya esta en la agenda le preguntamos si desea modificaro
cout<<"\nEl cliente ya existe";
}
else{
agenda.insert(pos,e); //me da a mi que asi no es :S
}
}
bool Agenda::eliminar(list<Cliente>::iterator it) {
agenda.erase(it);
}
list<Cliente>::iterator Agenda::buscar(Cliente &e) {
bool encontrado=false;
list<Cliente>::iterator it= agenda.begin();
while(!encontrado && it!=agenda.end()){//hay que buscarlo tambien por el segundo apellido para que sea igual
if((*it).getApellido1()==e.getApellido1() && (*it).getApellido2()==e.getApellido2() || (*it).getDni()==e.getDni() ){
encontrado=true;
}
else it++;
}
return it;
}
bool Agenda::modificar(list<Cliente>::iterator i,Cliente aux) {
*i=aux;
//hay que machacarlo;
}
bool Agenda::ordenar() { //si los vamos a insertar ordenados?? para que?
}
list<Cliente> Agenda::getFavoritos() {
list<Cliente> aux;
list<Cliente>::iterator it;
for(it=agenda.begin();it!=agenda.end();it++){
if((*it).getFavorito()==1) aux.push_back((*it)); //ESTAN ORDENAOS COÑO
}
return aux;
}
void Agenda::guardar(list<Cliente> agenda) {
f.guardar_agenda(agenda);
}
list<Cliente> Agenda::getallApellido(string apellido) {
list<Cliente> aux;
list<Cliente>::iterator it;
for(it=agenda.begin();it!=agenda.end();it++){
if((*it).getApellido1()==apellido) aux.push_back((*it));
}
return aux;
}
list<Cliente> Agenda::getClientes() {
return agenda;
}
list<Cliente>::iterator Agenda::buscarpos(Cliente& e) {
list<Cliente>::iterator it=agenda.begin();
bool entrado=false;
while((*it).getApellido1()<=e.getApellido1() && it!=agenda.end() && entrado==false)
{
if((*it).getApellido1()==e.getApellido1() && !entrado)
{
if ((*it).getApellido2()<e.getApellido2() && !entrado)
{
it++;
entrado=true;
while((*it).getApellido2()<e.getApellido2() && it!=agenda.end())
{
it++;
}//si el primer apellido es igual hay que compararlo con el segundo
entrado=true;
}
entrado=true;
}
it++;
}
return it;
}
Cliente Agenda::getcliente(list<Cliente>::iterator it) {
return *it;
}
void Agenda::cargar() {
f.cargar_agenda();
}
| [
"ceox1992@gmail.com"
] | ceox1992@gmail.com |
5b91e898ac6e03b79f63566b05192533b318c059 | 675799331c7b3812ec286ec6786a3020d9bdac3d | /CPP/AtCoder/other/CodeFestival2016TR3/a.cpp | 4807b922e7669260a2ec559f2bb3ebcd43b79991 | [] | no_license | kkisic/Procon | 07436574c12ebb01347b92d98c7aebb31404085a | 30f394c237369a7d706fe46b53dc9d0313ce053e | refs/heads/master | 2021-10-24T17:29:13.390016 | 2021-10-04T14:03:51 | 2021-10-04T14:03:51 | 112,325,136 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,808 | cpp | #include <cmath>
#include <iostream>
#include <vector>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <stack>
#include <tuple>
#include <bitset>
#include <algorithm>
#include <functional>
#include <utility>
#include <iomanip>
#define int long long int
#define rep(i, n) for(int i = 0; i < (n); ++i)
#define ALL(x) (x).begin(), (x).end()
#define SZ(x) ((int)(x).size())
#define UNIQUE(v) v.erase( unique(v.begin(), v.end()), v.end() )
using namespace std;
typedef pair<int, int> P;
const int INF = 1e15;
const int MOD = 1e9+7;
template <typename T>
using vector2 = vector<vector<T>>;
template <typename T>
vector2<T> initVec2(size_t n0, size_t n1, T e = T()){
return vector2<T>(n0, vector<T>(n1, e));
}
template <typename T>
using vector3 = vector<vector<vector<T>>>;
template <typename T>
vector3<T> initVec3(size_t n0, size_t n1, size_t n2, T e = T()){
return vector3<T>(n0, vector2<T>(n1, vector<T>(n2, e)));
}
signed main(){
ios::sync_with_stdio(false);
cin.tie(0);
int n, m, k;
cin >> n >> m >> k;
vector<int> a(n);
rep(i, n) cin >> a[i];
auto dp = initVec2<int>(n + 1, k + 1);
for(int j = 0; j < k; j++){
deque<int> deq;
int l = 0;
for(int i = 0; i < n; i++){
while(not deq.empty() && dp[deq.back()][j] <= dp[i][j]){
deq.pop_back();
}
deq.push_back(i);
if(i - l >= m){
if(deq.front() == l){
deq.pop_front();
}
l++;
}
if(i >= j){
dp[i+1][j+1] = dp[deq.front()][j] + a[i] * (j + 1);
}
}
}
int ans = 0;
rep(i, n + 1){
ans = max(ans, dp[i][k]);
}
cout << ans << endl;
return 0;
}
| [
"amareamo.pxhxc@gmail.com"
] | amareamo.pxhxc@gmail.com |
d03cd7344e3f86076cd3e9f24c3c5f0247a92a76 | 1e006c14837be0e7b6ed9a0f5870907638dfd402 | /usr/local/x86_64-pc-linux-gnu/x86_64-pc-linux-gnu/sys-root/usr/include/boost/geometry/algorithms/expand.hpp | fca638a0a49a4a508ac191bbecf30551d03094e5 | [] | no_license | slowfranklin/synology-ds | b9cd512d86ffc4d61949e6d72012b8cff8d58813 | 5a6dc5e1cfde5be3104f412e5a368bc8d615dfa6 | refs/heads/master | 2021-10-24T01:38:38.120574 | 2019-03-20T13:01:12 | 2019-03-20T13:01:12 | 176,933,470 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 9,142 | hpp | // Boost.Geometry (aka GGL, Generic Geometry Library)
// Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands.
// Copyright (c) 2008-2012 Bruno Lalande, Paris, France.
// Copyright (c) 2009-2012 Mateusz Loskot, London, UK.
// Copyright (c) 2014 Samuel Debionne, Grenoble, France.
// Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
// (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands.
// Use, modification and distribution is 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)
#ifndef BOOST_GEOMETRY_ALGORITHMS_EXPAND_HPP
#define BOOST_GEOMETRY_ALGORITHMS_EXPAND_HPP
#include <cstddef>
#include <boost/numeric/conversion/cast.hpp>
#include <boost/geometry/algorithms/not_implemented.hpp>
#include <boost/geometry/core/coordinate_dimension.hpp>
#include <boost/geometry/geometries/concepts/check.hpp>
#include <boost/geometry/util/select_coordinate_type.hpp>
#include <boost/geometry/strategies/compare.hpp>
#include <boost/geometry/policies/compare.hpp>
#include <boost/variant/static_visitor.hpp>
#include <boost/variant/apply_visitor.hpp>
namespace boost { namespace geometry
{
#ifndef DOXYGEN_NO_DETAIL
namespace detail { namespace expand
{
template
<
typename StrategyLess, typename StrategyGreater,
std::size_t Dimension, std::size_t DimensionCount
>
struct point_loop
{
template <typename Box, typename Point>
static inline void apply(Box& box, Point const& source)
{
typedef typename strategy::compare::detail::select_strategy
<
StrategyLess, 1, Point, Dimension
>::type less_type;
typedef typename strategy::compare::detail::select_strategy
<
StrategyGreater, -1, Point, Dimension
>::type greater_type;
typedef typename select_coordinate_type<Point, Box>::type coordinate_type;
less_type less;
greater_type greater;
coordinate_type const coord = get<Dimension>(source);
if (less(coord, get<min_corner, Dimension>(box)))
{
set<min_corner, Dimension>(box, coord);
}
if (greater(coord, get<max_corner, Dimension>(box)))
{
set<max_corner, Dimension>(box, coord);
}
point_loop
<
StrategyLess, StrategyGreater,
Dimension + 1, DimensionCount
>::apply(box, source);
}
};
template
<
typename StrategyLess, typename StrategyGreater,
std::size_t DimensionCount
>
struct point_loop
<
StrategyLess, StrategyGreater,
DimensionCount, DimensionCount
>
{
template <typename Box, typename Point>
static inline void apply(Box&, Point const&) {}
};
template
<
typename StrategyLess, typename StrategyGreater,
std::size_t Index,
std::size_t Dimension, std::size_t DimensionCount
>
struct indexed_loop
{
template <typename Box, typename Geometry>
static inline void apply(Box& box, Geometry const& source)
{
typedef typename strategy::compare::detail::select_strategy
<
StrategyLess, 1, Box, Dimension
>::type less_type;
typedef typename strategy::compare::detail::select_strategy
<
StrategyGreater, -1, Box, Dimension
>::type greater_type;
typedef typename select_coordinate_type
<
Box,
Geometry
>::type coordinate_type;
less_type less;
greater_type greater;
coordinate_type const coord = get<Index, Dimension>(source);
if (less(coord, get<min_corner, Dimension>(box)))
{
set<min_corner, Dimension>(box, coord);
}
if (greater(coord, get<max_corner, Dimension>(box)))
{
set<max_corner, Dimension>(box, coord);
}
indexed_loop
<
StrategyLess, StrategyGreater,
Index, Dimension + 1, DimensionCount
>::apply(box, source);
}
};
template
<
typename StrategyLess, typename StrategyGreater,
std::size_t Index, std::size_t DimensionCount
>
struct indexed_loop
<
StrategyLess, StrategyGreater,
Index, DimensionCount, DimensionCount
>
{
template <typename Box, typename Geometry>
static inline void apply(Box&, Geometry const&) {}
};
// Changes a box such that the other box is also contained by the box
template
<
typename StrategyLess, typename StrategyGreater
>
struct expand_indexed
{
template <typename Box, typename Geometry>
static inline void apply(Box& box, Geometry const& geometry)
{
indexed_loop
<
StrategyLess, StrategyGreater,
0, 0, dimension<Geometry>::type::value
>::apply(box, geometry);
indexed_loop
<
StrategyLess, StrategyGreater,
1, 0, dimension<Geometry>::type::value
>::apply(box, geometry);
}
};
}} // namespace detail::expand
#endif // DOXYGEN_NO_DETAIL
#ifndef DOXYGEN_NO_DISPATCH
namespace dispatch
{
template
<
typename GeometryOut, typename Geometry,
typename StrategyLess = strategy::compare::default_strategy,
typename StrategyGreater = strategy::compare::default_strategy,
typename TagOut = typename tag<GeometryOut>::type,
typename Tag = typename tag<Geometry>::type
>
struct expand: not_implemented<TagOut, Tag>
{};
// Box + point -> new box containing also point
template
<
typename BoxOut, typename Point,
typename StrategyLess, typename StrategyGreater
>
struct expand<BoxOut, Point, StrategyLess, StrategyGreater, box_tag, point_tag>
: detail::expand::point_loop
<
StrategyLess, StrategyGreater,
0, dimension<Point>::type::value
>
{};
// Box + box -> new box containing two input boxes
template
<
typename BoxOut, typename BoxIn,
typename StrategyLess, typename StrategyGreater
>
struct expand<BoxOut, BoxIn, StrategyLess, StrategyGreater, box_tag, box_tag>
: detail::expand::expand_indexed<StrategyLess, StrategyGreater>
{};
template
<
typename Box, typename Segment,
typename StrategyLess, typename StrategyGreater
>
struct expand<Box, Segment, StrategyLess, StrategyGreater, box_tag, segment_tag>
: detail::expand::expand_indexed<StrategyLess, StrategyGreater>
{};
} // namespace dispatch
#endif // DOXYGEN_NO_DISPATCH
namespace resolve_variant {
template <typename Geometry>
struct expand
{
template <typename Box>
static inline void apply(Box& box, Geometry const& geometry)
{
concept::check<Box>();
concept::check<Geometry const>();
concept::check_concepts_and_equal_dimensions<Box, Geometry const>();
dispatch::expand<Box, Geometry>::apply(box, geometry);
}
};
template <BOOST_VARIANT_ENUM_PARAMS(typename T)>
struct expand<boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)> >
{
template <typename Box>
struct visitor: boost::static_visitor<void>
{
Box& m_box;
visitor(Box& box) : m_box(box) {}
template <typename Geometry>
void operator()(Geometry const& geometry) const
{
return expand<Geometry>::apply(m_box, geometry);
}
};
template <class Box>
static inline void
apply(Box& box,
boost::variant<BOOST_VARIANT_ENUM_PARAMS(T)> const& geometry)
{
return boost::apply_visitor(visitor<Box>(box), geometry);
}
};
} // namespace resolve_variant
/***
*!
\brief Expands a box using the extend (envelope) of another geometry (box, point)
\ingroup expand
\tparam Box type of the box
\tparam Geometry of second geometry, to be expanded with the box
\param box box to expand another geometry with, might be changed
\param geometry other geometry
\param strategy_less
\param strategy_greater
\note Strategy is currently ignored
*
template
<
typename Box, typename Geometry,
typename StrategyLess, typename StrategyGreater
>
inline void expand(Box& box, Geometry const& geometry,
StrategyLess const& strategy_less,
StrategyGreater const& strategy_greater)
{
concept::check_concepts_and_equal_dimensions<Box, Geometry const>();
dispatch::expand<Box, Geometry>::apply(box, geometry);
}
***/
/*!
\brief Expands a box using the bounding box (envelope) of another geometry (box, point)
\ingroup expand
\tparam Box type of the box
\tparam Geometry \tparam_geometry
\param box box to be expanded using another geometry, mutable
\param geometry \param_geometry geometry which envelope (bounding box) will be added to the box
\qbk{[include reference/algorithms/expand.qbk]}
*/
template <typename Box, typename Geometry>
inline void expand(Box& box, Geometry const& geometry)
{
resolve_variant::expand<Geometry>::apply(box, geometry);
}
}} // namespace boost::geometry
#endif // BOOST_GEOMETRY_ALGORITHMS_EXPAND_HPP
| [
"slow@samba.org"
] | slow@samba.org |
9acb242b748f9aed82609ba3d3ffce6a64b63d69 | fc987ace8516d4d5dfcb5444ed7cb905008c6147 | /third_party/aria2/src/ReceiverMSEHandshakeCommand.h | 98857a2bcdaff5d3cfc5370eedcdd4f5c111da47 | [
"BSD-3-Clause",
"LGPL-2.0-or-later",
"LicenseRef-scancode-warranty-disclaimer",
"OpenSSL",
"GPL-1.0-or-later",
"LicenseRef-scancode-openssl",
"LicenseRef-scancode-ssleay-windows",
"FSFAP",
"GPL-2.0-only",
"LicenseRef-scancode-public-domain",
"MIT",
"Apache-2.0"
] | permissive | nfschina/nfs-browser | 3c366cedbdbe995739717d9f61e451bcf7b565ce | b6670ba13beb8ab57003f3ba2c755dc368de3967 | refs/heads/master | 2022-10-28T01:18:08.229807 | 2020-09-07T11:45:28 | 2020-09-07T11:45:28 | 145,939,440 | 2 | 4 | BSD-3-Clause | 2022-10-13T14:59:54 | 2018-08-24T03:47:46 | null | UTF-8 | C++ | false | false | 2,705 | h | /* <!-- copyright */
/*
* aria2 - The high speed download utility
*
* Copyright (C) 2006 Tatsuhiro Tsujikawa
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* In addition, as a special exception, the copyright holders give
* permission to link the code of portions of this program with the
* OpenSSL library under certain conditions as described in each
* individual source file, and distribute linked combinations
* including the two.
* You must obey the GNU General Public License in all respects
* for all of the code used other than OpenSSL. If you modify
* file(s) with this exception, you may extend this exception to your
* version of the file(s), but you are not obligated to do so. If you
* do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source
* files in the program, then also delete it here.
*/
/* copyright --> */
#ifndef D_RECEIVER_MSE_HANDSHAKE_COMMAND_H
#define D_RECEIVER_MSE_HANDSHAKE_COMMAND_H
#include "PeerAbstractCommand.h"
namespace aria2 {
class MSEHandshake;
class SocketCore;
class Peer;
class ReceiverMSEHandshakeCommand:public PeerAbstractCommand
{
public:
enum Seq {
RECEIVER_IDENTIFY_HANDSHAKE,
RECEIVER_WAIT_KEY,
RECEIVER_SEND_KEY_PENDING,
RECEIVER_FIND_HASH_MARKER,
RECEIVER_RECEIVE_PAD_C_LENGTH,
RECEIVER_RECEIVE_PAD_C,
RECEIVER_RECEIVE_IA_LENGTH,
RECEIVER_RECEIVE_IA,
RECEIVER_SEND_STEP2_PENDING,
};
private:
Seq sequence_;
std::unique_ptr<MSEHandshake> mseHandshake_;
void createCommand();
protected:
virtual bool executeInternal() CXX11_OVERRIDE;
virtual bool exitBeforeExecute() CXX11_OVERRIDE;
public:
ReceiverMSEHandshakeCommand(cuid_t cuid,
const std::shared_ptr<Peer>& peer,
DownloadEngine* e,
const std::shared_ptr<SocketCore>& s);
virtual ~ReceiverMSEHandshakeCommand();
};
} // namespace aria2
#endif // D_RECEIVER_MSE_HANDSHAKE_COMMAND_H
| [
"hukun@cpu-os.ac.cn"
] | hukun@cpu-os.ac.cn |
be95119743225ffb5994c826d33604fea7ff3ef9 | af0ecafb5428bd556d49575da2a72f6f80d3d14b | /CodeJamCrawler/dataset/08_8146_40.cpp | 34d9b6ecd6b609eaa58bbd910798932127c2a09a | [] | no_license | gbrlas/AVSP | 0a2a08be5661c1b4a2238e875b6cdc88b4ee0997 | e259090bf282694676b2568023745f9ffb6d73fd | refs/heads/master | 2021-06-16T22:25:41.585830 | 2017-06-09T06:32:01 | 2017-06-09T06:32:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,074 | cpp | #include<stdio.h>
#include<string.h>
#define maxn 3000
#define maxint 999999999
bool p[maxn][maxn];
bool output[maxn];
int q[maxn],last[maxn];
int i,j,n,m;
int make(){
bool changed;
int ans=0;
memset(output,0,sizeof(output));
do{
changed=0;
for(i=1;i<=m;i++)if(q[i]==0){
if(last[i]==0)return -1;
for(j=1;j<=m;j++){
if(last[j]==last[i])q[j]=maxint;
if(p[last[i]][j])q[j]--;
}
changed=1;
ans++;
output[last[i]]=1;
}
}while(changed);
return ans;
}
int main(){
int nn,ii,t,x,y;
scanf("%d",&nn);
for(ii=1;ii<=nn;ii++){
printf("Case #%d:",ii);
scanf("%d %d",&n,&m);
memset(last,0,sizeof(last));
memset(q,0,sizeof(q));
memset(p,0,sizeof(p));
for(i=1;i<=m;i++){
scanf("%d",&t);
while(t--){
scanf("%d %d",&x,&y);
if(y==0)p[x][i]=1,q[i]++;
else last[i]=x;
}
}
int temp=make();
if(temp<0){
printf(" IMPOSSIBLE\n");
}else {
for(i=1;i<=n;i++)if(output[i])printf(" 1");
else printf(" 0");
printf("\n");
}
}
return 0;
}
| [
"nikola.mrzljak@fer.hr"
] | nikola.mrzljak@fer.hr |
546fbd84a1d4a1de6d33a6959fc8043e8246d9c2 | 05d5ccee626b6c2b606f3a284d9c13121c1160ff | /data_compression/L3/benchmarks/lz4_p2p_decompress/src/host.cpp | 443e51d8b376807b327547c4d40e6d9e94a63f27 | [
"Apache-2.0",
"Zlib",
"BSD-2-Clause"
] | permissive | classmate7/Vitis_Libraries | a6407508bd6aa1a92bb82db2c590e0e0c00dbcff | 40b98f7a20d4f9d181642104f74d797a94315024 | refs/heads/master | 2021-01-02T15:45:36.347010 | 2019-11-12T18:05:06 | 2019-11-12T18:05:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,720 | cpp | /*
* Copyright 2019 Xilinx, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "lz4_p2p.hpp"
#include "lz4_p2p_dec.hpp"
#include <fstream>
#include <iostream>
#include <cassert>
#include "cmdlineparser.h"
int validate(std::string& inFile_name, std::string& outFile_name) {
std::string command = "cmp " + inFile_name + " " + outFile_name;
int ret = system(command.c_str());
return ret;
}
void decompress_multiple_files(const std::vector<std::string>& inFileVec,
const std::vector<std::string>& outFileVec,
const std::string& decompress_bin) {
std::vector<char*> outVec;
std::vector<uint64_t> orgSizeVec;
std::vector<uint64_t> inSizeVec;
std::vector<int> fd_p2p_vec;
std::vector<cl_event> userEventVec;
uint64_t total_size = 0;
uint64_t total_in_size = 0;
for (uint32_t fid = 0; fid < inFileVec.size(); fid++) {
uint64_t original_size = 0;
std::string inFile_name = inFileVec[fid];
std::ifstream inFile(inFile_name.c_str(), std::ifstream::binary);
uint64_t input_size = xfLz4::get_file_size(inFile);
inFile.close();
int fd_p2p_c_in = open(inFile_name.c_str(), O_RDONLY | O_DIRECT);
if (fd_p2p_c_in <= 0) {
std::cout << "P2P: Unable to open input file, fd: " << fd_p2p_c_in << std::endl;
exit(1);
}
std::vector<uint8_t, aligned_allocator<uint8_t> > in_4kbytes(4 * KB);
read(fd_p2p_c_in, (char*)in_4kbytes.data(), 4 * KB);
lseek(fd_p2p_c_in, 0, SEEK_SET);
fd_p2p_vec.push_back(fd_p2p_c_in);
std::memcpy(&original_size, &in_4kbytes[6], 4);
total_size += original_size;
total_in_size += input_size;
orgSizeVec.push_back(original_size);
char* out = (char*)aligned_alloc(4096, original_size);
outVec.push_back(out);
inSizeVec.push_back(input_size);
}
xfLz4 xlz(decompress_bin);
xlz.decompress_in_line_multiple_files(inFileVec, fd_p2p_vec, outVec, orgSizeVec, inSizeVec);
for (uint32_t fid = 0; fid < inFileVec.size(); fid++) {
std::string outFile_name = outFileVec[fid];
std::ofstream outFile(outFile_name.c_str(), std::ofstream::binary);
outFile.write((char*)outVec[fid], orgSizeVec[fid]);
close(fd_p2p_vec[fid]);
outFile.close();
}
}
void xil_decompress_file_list(std::string& file_list, std::string& decompress_bin) {
std::ifstream infilelist_dec(file_list.c_str());
std::string line_dec;
std::string ext1 = ".lz4";
std::vector<std::string> inFileList;
std::vector<std::string> outFileList;
std::vector<std::string> orgFileList;
while (std::getline(infilelist_dec, line_dec)) {
std::string in_file = line_dec + ext1;
std::string out_file = line_dec + ext1 + ".org";
inFileList.push_back(in_file);
orgFileList.push_back(line_dec);
outFileList.push_back(out_file);
}
decompress_multiple_files(inFileList, outFileList, decompress_bin);
std::cout << std::endl;
for (size_t i = 0; i < inFileList.size(); i++) {
int ret = validate(orgFileList[i], outFileList[i]);
if (ret) {
std::cout << "FAILED: " << inFileList[i] << std::endl;
} else {
std::cout << "PASSED: " << inFileList[i] << std::endl;
}
}
}
int main(int argc, char* argv[]) {
sda::utils::CmdLineParser parser;
parser.addSwitch("--decompress_xclbin", "-dx", "Decompress XCLBIN", "decompress");
parser.addSwitch("--decompress_mode", "-d", "Decompress Mode", "");
parser.addSwitch("--single_xclbin", "-sx", "Single XCLBIN", "p2p_decompress");
parser.addSwitch("--file_list", "-l", "List of Input Files", "");
parser.parse(argc, argv);
std::string decompress_xclbin = parser.value("decompress_xclbin");
std::string decompress_mod = parser.value("decompress_mode");
std::string single_bin = parser.value("single_xclbin");
std::string filelist = parser.value("file_list");
int fopt = 1;
// "-l" List of Files
if (!filelist.empty()) {
xil_decompress_file_list(filelist, decompress_xclbin);
}
}
| [
"tianyul@xilinx.com"
] | tianyul@xilinx.com |
3972bec008579b1add6d3b3f64f2721fcb3f8b6e | 3d9027550e8c9c93acbd987e9212661438fe1438 | /arduino-tinywebserver-20100617/Fat16/SdCard.cpp | b13003b8e3ac6f903f9dc63a3a97c64cf4bd2243 | [] | no_license | kutch2001/arduinobykutch | ff92d676172bab87b700aff9d3fc2b4f169c130a | 0f5851380640b6138d072229fdf5c7277ed02dd5 | refs/heads/master | 2021-05-04T11:35:34.708999 | 2021-04-14T20:30:23 | 2021-04-14T20:30:23 | 49,112,164 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,960 | cpp | /* Arduino FAT16 Library
* Copyright (C) 2008 by William Greiman
*
* This file is part of the Arduino FAT16 Library
*
* This Library 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 Library 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 the Arduino Fat16 Library. If not, see
* <http://www.gnu.org/licenses/>.
*/
#include <wiring.h>
#include "Fat16Config.h"
#include "SdCard.h"
//------------------------------------------------------------------------------
//r1 status values
#define R1_READY_STATE 0
#define R1_IDLE_STATE 1
//start data token for read or write
#define DATA_START_BLOCK 0XFE
//data response tokens for write block
#define DATA_RES_MASK 0X1F
#define DATA_RES_ACCEPTED 0X05
#define DATA_RES_CRC_ERROR 0X0B
#define DATA_RES_WRITE_ERROR 0X0D
//
// stop compiler from inlining where speed optimization is not required
#define STATIC_NOINLINE static __attribute__((noinline))
//------------------------------------------------------------------------------
// SPI static functions
//
// clock byte in
STATIC_NOINLINE uint8_t spiRec(void)
{
SPDR = 0xff;
while(!(SPSR & (1 << SPIF)));
return SPDR;
}
// clock byte out
STATIC_NOINLINE void spiSend(uint8_t b)
{
SPDR = b;
while(!(SPSR & (1 << SPIF)));
}
// set Slave Select HIGH
STATIC_NOINLINE void spiSSHigh(void)
{
digitalWrite(SPI_SS_PIN, HIGH);
}
// set Slave Select LOW
STATIC_NOINLINE void spiSSLow(void)
{
digitalWrite(SPI_SS_PIN, LOW);
}
//------------------------------------------------------------------------------
// wait for card to go not busy
// return false if timeout
static uint8_t waitForToken(uint8_t token, uint16_t timeoutMillis)
{
uint16_t t0 = millis();
while (spiRec() != token) {
if (((uint16_t)millis() - t0) > timeoutMillis) return false;
}
return true;
}
//------------------------------------------------------------------------------
static uint8_t cardCommand(uint8_t cmd, uint32_t arg)
{
uint8_t r1;
// select card
spiSSLow();
// wait if busy
waitForToken(0XFF, SD_COMMAND_TIMEOUT);
// send command
spiSend(cmd | 0x40);
// send argument
for (int8_t s = 24; s >= 0; s -= 8) spiSend(arg >> s);
// send CRC - must send valid CRC for CMD0
spiSend(cmd == CMD0 ? 0x95 : 0XFF);
//wait for not busy
for (uint8_t retry = 0; (0X80 & (r1 = spiRec())) && retry != 0XFF; retry++);
return r1;
}
//==============================================================================
// SdCard member functions
//------------------------------------------------------------------------------
#if SD_CARD_INFO_SUPPORT
/**
* Determine the size of a standard SD flash memory card
* \return The number of 512 byte data blocks in the card
*/
uint32_t SdCard::cardSize(void)
{
uint16_t c_size;
csd_t csd;
if (!readReg(CMD9, (uint8_t *)&csd)) return 0;
uint8_t read_bl_len = csd.read_bl_len;
c_size = (csd.c_size_high << 10) | (csd.c_size_mid << 2) | csd.c_size_low;
uint8_t c_size_mult = (csd.c_size_mult_high << 1) | csd.c_size_mult_low;
return (uint32_t)(c_size+1) << (c_size_mult + read_bl_len - 7);
}
#endif //SD_CARD_INFO_SUPPORT
//------------------------------------------------------------------------------
void SdCard::error(uint8_t code, uint8_t data)
{
errorData = data;
error(code);
}
//------------------------------------------------------------------------------
void SdCard::error(uint8_t code)
{
errorCode = code;
spiSSHigh();
}
//------------------------------------------------------------------------------
/**
* Initialize a SD flash memory card.
*
* \param[in] slow Set SPI Frequency F_CPU/4 if true else F_CPU/2.
*
* \return The value one, true, is returned for success and
* the value zero, false, is returned for failure.
*
*/
uint8_t SdCard::init(uint8_t slow)
{
// 16-bit init start time allows over a minute
uint16_t t0 = (uint16_t)millis();
pinMode(SPI_SS_PIN, OUTPUT);
#if SPI_SS_PIN != 10
pinMode(10, OUTPUT);
digitalWrite(10, HIGH);
#endif
spiSSHigh();
pinMode(SPI_MOSI_PIN, OUTPUT);
pinMode(SPI_SCK_PIN, OUTPUT);
//Enable SPI, Master, clock rate F_CPU/128
SPCR = (1 << SPE) | (1 << MSTR) | (1 << SPR1) | (1 << SPR0);
//must supply min of 74 clock cycles with CS high.
for (uint8_t i = 0; i < 10; i++) spiSend(0XFF);
spiSSLow();
#if SD_INIT_OLD_VER
// next line prevent re-init hang by some cards (not sure why this works)
for (uint16_t i = 0; i <= 512; i++) spiRec();
uint8_t r = cardCommand(CMD0, 0);
for (uint16_t retry = 0; r != R1_IDLE_STATE; retry++){
if (retry == 10000) {
error(SD_ERROR_CMD0, r);
return false;
}
r = spiRec();
}
#else // SD_INIT_OLD_VER
// command to go idle in SPI mode
while (1) {
uint8_t r = cardCommand(CMD0, 0);
if (r == R1_IDLE_STATE) break;
if (((uint16_t)millis() - t0) > SD_INIT_TIMEOUT) {
error(SD_ERROR_CMD0, r);
return false;
}
}
#endif // SD_INIT_OLD_VER
// start initialization and wait for completed initialization
while (1) {
cardCommand(CMD55, 0);
uint8_t r = cardCommand(ACMD41, 0);
if (r == R1_READY_STATE)break;
if (((uint16_t)millis() - t0) > SD_INIT_TIMEOUT) {
error(SD_ERROR_ACMD41, r);
return false;
}
}
// set SPI frequency
SPCR &= ~((1 << SPR1) | (1 << SPR0)); // F_CPU/4
if (!slow) SPSR |= (1 << SPI2X); // Doubled Clock Frequency to F_CPU/2
spiSSHigh();
return true;
}
//------------------------------------------------------------------------------
/**
* Reads a 512 byte block from a storage device.
*
* \param[in] blockNumber Logical block to be read.
* \param[out] dst Pointer to the location that will receive the data.
* \return The value one, true, is returned for success and
* the value zero, false, is returned for failure.
*/
uint8_t SdCard::readBlock(uint32_t blockNumber, uint8_t *dst)
{
if (cardCommand(CMD17, blockNumber << 9)) {
error(SD_ERROR_CMD17);
return false;
}
return readTransfer(dst, 512);
}
//------------------------------------------------------------------------------
#if SD_CARD_INFO_SUPPORT
uint8_t SdCard::readReg(uint8_t cmd, uint8_t *dst)
{
if (cardCommand(cmd, 0)) {
spiSSHigh();
return false;
}
return readTransfer(dst, 16);
}
#endif //SD_CARD_INFO_SUPPORT
//------------------------------------------------------------------------------
uint8_t SdCard::readTransfer(uint8_t *dst, uint16_t count)
{
//wait for start of data
if (!waitForToken(DATA_START_BLOCK, SD_READ_TIMEOUT)) {
error(SD_ERROR_READ_TIMEOUT);
}
//start first spi transfer
SPDR = 0XFF;
for (uint16_t i = 0; i < count; i++) {
while(!(SPSR & (1 << SPIF)));
dst[i] = SPDR;
SPDR = 0XFF;
}
// wait for first CRC byte
while(!(SPSR & (1 << SPIF)));
spiRec();//second CRC byte
spiSSHigh();
return true;
}
//------------------------------------------------------------------------------
/**
* Writes a 512 byte block to a storage device.
*
* \param[in] blockNumber Logical block to be written.
* \param[in] src Pointer to the location of the data to be written.
* \return The value one, true, is returned for success and
* the value zero, false, is returned for failure.
*/
uint8_t SdCard::writeBlock(uint32_t blockNumber, uint8_t *src)
{
uint32_t address = blockNumber << 9;
#if SD_PROTECT_BLOCK_ZERO
//don't allow write to first block
if (address == 0) {
error(SD_ERROR_BLOCK_ZERO_WRITE);
return false;
}
#endif //SD_PROTECT_BLOCK_ZERO
if (cardCommand(CMD24, address)) {
error(SD_ERROR_CMD24);
return false;
}
// optimize write loop
SPDR = DATA_START_BLOCK;
for (uint16_t i = 0; i < 512; i++) {
while(!(SPSR & (1 << SPIF)));
SPDR = src[i];
}
while(!(SPSR & (1 << SPIF)));// wait for last data byte
spiSend(0xFF);// dummy crc
spiSend(0xFF);// dummy crc
// get write response
uint8_t r1 = spiRec();
if ((r1 & DATA_RES_MASK) != DATA_RES_ACCEPTED) {
error(SD_ERROR_WRITE_RESPONSE, r1);
return false;
}
// wait for card to complete write programming
if (!waitForToken(0XFF, SD_WRITE_TIMEOUT)) {
error(SD_ERROR_WRITE_TIMEOUT);
}
spiSSHigh();
return true;
} | [
"kutch2001@localhost"
] | kutch2001@localhost |
2614f1522f30d5eddcb4df4ae31498239029772c | 7ebae5ec0378642a1d2c181184460e76c73debbd | /USACO/barn1/barn1/stdafx.cpp | 83ce18922bcb1988e209fed1cb83f000fea42139 | [] | no_license | tonyli00000/Competition-Code | a4352b6b6835819a0f19f7f5cc67e46d2a200906 | 7f5767e3cb997fd15ae6f72145bcb8394f50975f | refs/heads/master | 2020-06-17T23:04:10.367762 | 2019-12-28T22:08:25 | 2019-12-28T22:08:25 | 196,091,038 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 284 | cpp | // stdafx.cpp : source file that includes just the standard includes
// barn1.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
| [
"tonyli2002@live.com"
] | tonyli2002@live.com |
2c74d2ceccf63b588480926d80c55bef57f168a8 | b945071e088837d70ce8bf8c57ec59be6fadca0b | /compiler/model.cc | cb768d53df0ae0b4bd8afd187f708d46fc7e7a3c | [
"MIT"
] | permissive | vermashresth/chainer-compiler | 8649ed4c6e4b8325bef2456ef5a484260f834291 | 5f5ad365d14398d6ae0214fa012eb10360db8e7e | refs/heads/master | 2020-05-04T13:05:19.621839 | 2019-10-17T13:03:14 | 2019-10-17T13:03:14 | 179,147,105 | 0 | 0 | MIT | 2019-10-17T13:03:16 | 2019-04-02T19:43:25 | Python | UTF-8 | C++ | false | false | 2,030 | cc | #include "compiler/model.h"
#include <compiler/onnx.h>
#include <common/log.h>
#include <compiler/graph.h>
#include <compiler/serializer_util.h>
namespace chainer_compiler {
Model::Model(const onnx::ModelProto& xmodel)
: ir_version_(xmodel.ir_version()),
opset_import_(xmodel.opset_import().begin(), xmodel.opset_import().end()),
producer_name_(xmodel.producer_name()),
producer_version_(xmodel.producer_version()),
domain_(xmodel.domain()),
model_version_(xmodel.model_version()),
doc_string_(xmodel.doc_string()),
graph_(new Graph(xmodel.graph())) {
for (const onnx::StringStringEntryProto& metadata : xmodel.metadata_props()) {
CHECK(metadata_props_.emplace(metadata.key(), metadata.value()).second) << "Duplicated metadata key: " << metadata.key();
}
}
Model::Model(const Model& model, const std::string& graph_name)
: ir_version_(model.ir_version_),
opset_import_(model.opset_import_),
producer_name_(model.producer_name_),
producer_version_(model.producer_version_),
domain_(model.domain_),
model_version_(model.model_version_),
doc_string_(model.doc_string_),
metadata_props_(model.metadata_props_),
graph_(new Graph(graph_name)) {
}
Model::~Model() {
}
void Model::ToONNX(onnx::ModelProto* xmodel) const {
DUMP_PRIM(xmodel, ir_version);
for (const onnx::OperatorSetIdProto& opset : opset_import_) {
*xmodel->add_opset_import() = opset;
}
DUMP_STRING(xmodel, producer_name);
DUMP_STRING(xmodel, producer_version);
DUMP_STRING(xmodel, domain);
DUMP_PRIM(xmodel, model_version);
DUMP_STRING(xmodel, doc_string);
graph_->ToONNX(xmodel->mutable_graph());
for (const auto& p : metadata_props_) {
onnx::StringStringEntryProto* metadata = xmodel->add_metadata_props();
metadata->set_key(p.first);
metadata->set_value(p.second);
}
}
void Model::ResetGraph(Graph* graph) {
graph_.reset(graph);
}
} // namespace chainer_compiler
| [
"shinichiro.hamaji@gmail.com"
] | shinichiro.hamaji@gmail.com |
88477193d17f8360a0db28c0aa0fa18c446a79e7 | f784bdbd0d342a2287a4fc6dabf25d7143c2edde | /include/EmpericalStrategy.h | f999a68977eca6bd34d7ac796308eef6b191570f | [] | no_license | LeonardLi/vNAMS | d6b9893b11e98c1fc9f9c83b7d255043d772e29a | 933a0ba40d719b44e1d9a295d60f03ab4aa80140 | refs/heads/master | 2021-01-12T07:48:49.583680 | 2017-04-26T16:04:45 | 2017-04-26T16:04:45 | 77,027,268 | 0 | 0 | null | 2016-12-21T07:06:39 | 2016-12-21T07:06:39 | null | UTF-8 | C++ | false | false | 946 | h | #ifndef _EMPERICAL_STRATEGY_
#define _EMPERICAL_STRATEGY_
#include "ScheduleStrategy.h"
#include "VirtualFunction.h"
#include <vector>
#include <utility>
#include <fstream>
#include <sstream>
#include <iostream>
#include <string>
class EmpericalStrategy :public ScheduleStrategy{
public:
EmpericalStrategy(){};
virtual ~EmpericalStrategy(){};
std::vector<Decision> schedule(const std::map<int, VM_info> &vmInfoMap,
const std::vector<double> &physicalCpuUsage, const Numa_node* nodeInfos,
const int numOfNode, const int NIC_NODE_ID);
public:
//read the infomation from file
bool initFromFile();
//or from system
bool initDefault(const Numa_node* nodeInfos,
const int numOfNode);
//the basic infomation
std::vector<std::vector<double> > lantencyMatrix;
std::vector<std::vector<double> > bandwidthMatrix;
std::vector<VirtualFunction> serviceFunctionChain;
void calculateAffinity(std::vector<Decision>&);
};
#endif
| [
"liyangde66@gmail.com"
] | liyangde66@gmail.com |
89afebb4fa545370fcf0cb4a53778e1cd625a09b | 9a9d28bb2195b4cf81bc2da8265135ec079e9147 | /Grid.cpp | befcf9241aeff4fcf5e4dc5e61a15547bfc8749f | [] | no_license | meghnaraswan/CPSC350Assignment2 | e15e19daab32766e20ea85599adc7f419133048c | 7399d21650327e3c244a6ade2ef3f81714224aea | refs/heads/main | 2023-01-02T14:37:09.956385 | 2020-10-29T00:52:43 | 2020-10-29T00:52:43 | 302,977,727 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,691 | cpp | //
// Grid.cpp
// FirstCPP
//
// Created by iMan on 10/4/20.
// Copyright © 2020 iMan. All rights reserved.
//
#include "Grid.hpp"
#include "Cell.hpp"
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
//Grid
//default constructor
//default values of rows and columns of grid will be 5
Grid::Grid(){
rows = 5;
cols = 5;
}
//overloaded constructor
Grid::Grid(int rows, int cols){
this->rows = rows;
this->cols = cols;
for (int i = 0; i < this->rows; ++i){ //rows
for (int j = 0; j < this->cols; ++j){ //columns
pCellArray[i][j] = new Cell(); //array consists of Cell datatype
}
}
}
//overloaded constructor
//array can hold up to 10 rows and 10 columns
Grid::Grid(int rows, int cols, char values[10][10]) {
this->rows = rows;
this->cols = cols;
for (int i = 0; i < this->rows; ++i){ //rows
for (int j = 0; j < this->cols; ++j){ //columns
pCellArray[i][j] = new Cell(values[i][j]); //array consists of Cell datatype that has char value
}
}
}
//overloaded constructor
Grid::Grid(string m_filename){
//initialize rows, columns, and line count as 0
this->rows = 0;
this->cols = 0;
int lineCount = 0;
fstream newfile; //fstream is a stream class to both read and write from/to files.
newfile.open(m_filename,ios::in); //open a file to perform read operation using file object
if (newfile.is_open()){ //checking to see whether the file is open
string line;
while(getline(newfile, line)){ //read data from file object and put it into string.
if(lineCount == 0){ //the first line (or 0th index of the line) is the rows
this->rows = stoi(line); //stoi converts data from a string type to an integer type
} else if (lineCount == 1){ //the second line (or the 1st indext of the line) is the columns
this->cols = stoi(line);
} else {
int i = lineCount - 2; //makes i starting from 0 since the first 2 lines were rows and columns
for (int j = 0; j < sizeof(line); j++) //while going through each value in the string of 1 line, the value will be added into the array
{
pCellArray[i][j] = new Cell(line[j]);
}
}
++lineCount; //increasing line count by 1 after reading though the next file
}
newfile.close(); //close the file object.
}
countNeighborsForAllCells(); //calling the countNeighborsForAllCells() function to count the neighbors for all cells (not including doughnut or mirror modes, those will be done in their individual classes)
}
//destructor
Grid::~Grid(){
for (int i = 0; i < this->rows; ++i){ //rows
for (int j = 0; j < this->cols; ++j){ //columns
delete pCellArray[i][j]; //delete each cell in array
}
}
}
//print() function prints the total rows and and columnsand then calls the toString method from Cell class to output each value of the cell in the respected rows and columns
void Grid::print() {
cout << "[" << this->rows << ":" << this->cols <<"]" << endl;
for (int i = 0; i < this->rows; ++i){ //rows
for (int j = 0; j < this->cols; ++j){ //columns
cout << pCellArray[i][j]->toString();
}
cout << endl; //new line for the end of each row
}
}
//function counts the number of X's each cell's neighbors have
void Grid::countNeighborsForAllCells() {
for (int i = 0; i < this->rows; ++i){ //rows
for (int j = 0; j < this->cols; ++j){ //columns
// reset count of neighbors
pCellArray[i][j]->neighborCount = 0;
int pii = (i-1 < 0) ? 0 : i-1; // prev edge boundary of the row
int qii = (i+1>this->rows-1) ? this->rows-1 : i+1;// next edge boundary of the row
int pjj = (j-1 < 0) ? 0 : j-1; // prev edge boundary of the col
int qjj = (j+1>this->cols-1) ? this->cols-1 : j+1;// next edge boundary of the col
// enter the boundary for each cell for calculating the neighbor count
for (int ii = pii; ii <= qii; ++ii){ //rows
for (int jj = pjj; jj <= qjj; ++jj){ //column
if (i == ii && j == jj) {
; // do nothing or skip
} else {
if(pCellArray[ii][jj]->getValue() == 'X') { //if the neighbor has X value, increase the neighbor count by 1
pCellArray[i][j]->neighborCount++;
}
}
}
}
}
}
}
//uses the function calcNextGenVal() from Cell class to calculate the cell's value in the next generation at that positions depending on the number of neighbors that have Xs
void Grid::calcNextGenerationValuesForAllCells() {
for (int i = 0; i < this->rows; ++i){ //rows
for (int j = 0; j < this->cols; ++j){ //columns
pCellArray[i][j]->calcNextGenVal();
}
}
}
//function move the cell to the next generation by calling the calcNextGenerationValuesForAllCells() and countNeighborsForAllCells() functions
void Grid::moveToNextGeneration() {
this->calcNextGenerationValuesForAllCells();
this->countNeighborsForAllCells();
}
//function counts the neighbors for each cell that is on the edge of the row, which is the same pattern followed for the Doughnut and Mirror modes
void Grid::helpCountEdgeRowNeighbors(int curr_row, int neigh_row){
for(int j=0; j<cols; j++) { //for each column
int pjj = (j-1 < 0) ? 0 : j-1; // prev edge boundary of the col
int qjj = (j+1>cols-1) ? cols-1 : j+1; // next edge boundary of the col
for (int jj = pjj; jj <= qjj; ++jj) {
if(pCellArray[neigh_row][jj]->getValue() == 'X') { //if the neighbor has X value, increase the neighbor count by 1
pCellArray[curr_row][j]->neighborCount++;
}
}
}
}
//function counts the neighbors for each cell that is on the edge of the columns, which is the same pattern followed for the Doughnut and Mirror modes
void Grid::helpCountEdgeColNeighbors(int curr_col, int neigh_col){
for(int i=0; i<rows; i++) { //for each row
int pii = (i-1 < 0) ? 0 : i-1; //prev edge boundary of the row
int qii = (i+1>rows-1) ? rows-1 : i+1; // next edge boundary of the row
for (int ii = pii; ii <= qii; ++ii) {
if(pCellArray[ii][neigh_col]->getValue() == 'X') { //if the neighbor has X value, increase the neighbor count by 1
pCellArray[i][curr_col]->neighborCount++;
}
}
}
}
| [
"raswan@chapman.edu"
] | raswan@chapman.edu |
d275c1345fc4738474a26907a8a2df7b8d2b4e96 | 08948ee7b7239bfc09b274082f52db4f832433cb | /src/Common/Color.h | ac46b9ac81cb130092e3c1a033b85bdfee5b18f5 | [
"MIT"
] | permissive | Tobaloidee/rainbow | 4d738953403c40046055409ea6df722456bfd050 | 7bbac9405ae9e519c6496f2a5fa957a073cce563 | refs/heads/master | 2020-05-02T16:51:13.265175 | 2019-03-27T22:09:40 | 2019-03-27T22:09:40 | 178,011,578 | 0 | 0 | MIT | 2019-03-27T14:29:51 | 2019-03-27T14:29:51 | null | UTF-8 | C++ | false | false | 1,264 | h | // Copyright (c) 2010-present Bifrost Entertainment AS and Tommy Nguyen
// Distributed under the MIT License.
// (See accompanying file LICENSE or copy at http://opensource.org/licenses/MIT)
#ifndef COMMON_COLOR_H_
#define COMMON_COLOR_H_
#include <cstdint>
namespace rainbow
{
/// <summary>Structure for storing a colour (RGBA).</summary>
struct Color
{
uint8_t r, g, b, a;
constexpr Color() : r(0xff), g(0xff), b(0xff), a(0xff) {}
constexpr Color(uint8_t r, uint8_t g, uint8_t b, uint8_t a = 0xff)
: r(r), g(g), b(b), a(a)
{
}
constexpr Color(uint32_t rgba)
: r(0xff & (rgba >> 24)), g(0xff & (rgba >> 16)),
b(0xff & (rgba >> 8)), a(0xff & rgba)
{
}
auto operator=(uint32_t c) -> Color& { return *this = Color{c}; }
// TODO: Having constexpr here breaks Xcode 8.3
friend bool operator!=(Color lhs, Color rhs) { return !(lhs == rhs); }
friend constexpr bool operator==(Color lhs, Color rhs)
{
return lhs.r == rhs.r && //
lhs.g == rhs.g && //
lhs.b == rhs.b && //
lhs.a == rhs.a;
}
};
} // namespace rainbow
#endif
| [
"tn0502@gmail.com"
] | tn0502@gmail.com |
0b154a7477aba8cce10dbe49485ccd9ae5b8b30b | cf6868b214e6a2c380f2b2e2d8a14a70cc1d8b0c | /Player/KIB_Player/Kiblet.cpp | 290276eb807604b9b7b9a66c610678764dd2a418 | [] | no_license | kyzyx/KIB | 5d5304a73c5a91733d62946d9b5eb68e4cdd49f1 | 1cc51d3597d73e953c55becd018cf4677b961a3c | refs/heads/master | 2021-01-10T18:26:48.697281 | 2013-04-26T22:49:12 | 2013-04-26T22:49:12 | 7,301,329 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,846 | cpp | #include "Kiblet.h"
#include "ArcKidget.h"
#include "BackgroundKidget.h"
#include "BallKidget.h"
#include "BodyKidget.h"
#include "ClapKidget.h"
#include "HandsKidget.h"
#include "KibletKidget.h"
#include "PunchKidget.h"
#include "WaveKidget.h"
using namespace std;
Kiblet::Kiblet(void)
{
}
Kiblet::~Kiblet(void)
{
for (unsigned int i = 0; i < kidgets.size(); ++i) {
delete kidgets[i];
}
}
Kidget* Kiblet::makeKidget(string type, Json::Value& v) {
if (type == "arc") return new ArcKidget(&v);
else if (type == "background") return new BackgroundKidget(&v);
else if (type == "ball") return new BallKidget(&v);
else if (type == "body") return new BodyKidget(&v);
else if (type == "clap") return new ClapKidget(&v);
else if (type == "hands") return new HandsKidget(&v);
else if (type == "kiblet") return new KibletKidget(&v);
else if (type == "punch") return new PunchKidget(&v);
else if (type == "wave") return new WaveKidget(&v);
else return NULL;
}
Kiblet::Kiblet(Json::Value& v) {
Json::Value::Members& members = v.getMemberNames();
for (unsigned int i = 0; i < members.size(); ++i) {
Kidget* k = makeKidget(members[i], v[members[i]]);
kidgets.push_back(k);
}
}
void Kiblet::sendOscMessages(UdpTransmitSocket* transmitSocket, const Vector4* skeletonPositions) {
osc::OutboundPacketStream p(buffer, OUTPUT_BUFFER_SIZE);
p << osc::BeginBundleImmediate;
for (unsigned int i = 0; i < kidgets.size(); ++i) {
kidgets[i]->sendOSC(p, skeletonPositions);
}
p << osc::EndBundle;
transmitSocket->Send(p.Data(), p.Size());
}
bool Kiblet::checkTriggerCondition() {
// Check time
// Check OSC Messages
return false;
}
void Kiblet::draw(const Vector4* skel, unsigned char* rgb, float* depth, char* pid, int w, int h) {
for (unsigned int i = 0; i < kidgets.size(); ++i) {
kidgets[i]->draw(skel, rgb, depth, pid);
}
} | [
"edward64@gmail.com"
] | edward64@gmail.com |
98f6b3e89c1a4c07c2596bceeb879efb3be9ca59 | 4627f3e31411cd2669161c63bb7a744eb1087a7f | /catch.hpp | b8ecab4a9185405640a37b6ba7be58b0bce9a04b | [
"MIT"
] | permissive | kosta2456/Huffman_Algorithm | 727cfbe77aac16dbe3c2d1ae3b1fe53c662bee90 | 01948f27422c6914aefe5ce021050e1d02b3eb3c | refs/heads/master | 2020-05-21T12:51:49.728586 | 2019-05-02T19:51:38 | 2019-05-02T19:51:38 | 186,052,962 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 424,346 | hpp | /*
* Catch v2.6.0
* Generated: 2019-01-31 22:25:55.560884
* ----------------------------------------------------------
* This file has been merged from multiple headers. Please don't edit it directly
* Copyright (c) 2019 Two Blue Cubes Ltd. All rights reserved.
*
* Distributed under 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)
*/
#ifndef TWOBLUECUBES_SINGLE_INCLUDE_CATCH_HPP_INCLUDED
#define TWOBLUECUBES_SINGLE_INCLUDE_CATCH_HPP_INCLUDED
// start catch.hpp
#define CATCH_VERSION_MAJOR 2
#define CATCH_VERSION_MINOR 6
#define CATCH_VERSION_PATCH 0
#ifdef __clang__
# pragma clang system_header
#elif defined __GNUC__
# pragma GCC system_header
#endif
// start catch_suppress_warnings.h
#ifdef __clang__
# ifdef __ICC // icpc defines the __clang__ macro
# pragma warning(push)
# pragma warning(disable: 161 1682)
# else // __ICC
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wpadded"
# pragma clang diagnostic ignored "-Wswitch-enum"
# pragma clang diagnostic ignored "-Wcovered-switch-default"
# endif
#elif defined __GNUC__
// Because REQUIREs trigger GCC's -Wparentheses, and because still
// supported version of g++ have only buggy support for _Pragmas,
// Wparentheses have to be suppressed globally.
# pragma GCC diagnostic ignored "-Wparentheses" // See #674 for details
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wunused-variable"
# pragma GCC diagnostic ignored "-Wpadded"
#endif
// end catch_suppress_warnings.h
#if defined(CATCH_CONFIG_MAIN) || defined(CATCH_CONFIG_RUNNER)
# define CATCH_IMPL
# define CATCH_CONFIG_ALL_PARTS
#endif
// In the impl file, we want to have access to all parts of the headers
// Can also be used to sanely support PCHs
#if defined(CATCH_CONFIG_ALL_PARTS)
# define CATCH_CONFIG_EXTERNAL_INTERFACES
# if defined(CATCH_CONFIG_DISABLE_MATCHERS)
# undef CATCH_CONFIG_DISABLE_MATCHERS
# endif
# if !defined(CATCH_CONFIG_ENABLE_CHRONO_STRINGMAKER)
# define CATCH_CONFIG_ENABLE_CHRONO_STRINGMAKER
# endif
#endif
#if !defined(CATCH_CONFIG_IMPL_ONLY)
// start catch_platform.h
#ifdef __APPLE__
# include <TargetConditionals.h>
# if TARGET_OS_OSX == 1
# define CATCH_PLATFORM_MAC
# elif TARGET_OS_IPHONE == 1
# define CATCH_PLATFORM_IPHONE
# endif
#elif defined(linux) || defined(__linux) || defined(__linux__)
# define CATCH_PLATFORM_LINUX
#elif defined(WIN32) || defined(__WIN32__) || defined(_WIN32) || defined(_MSC_VER) || defined(__MINGW32__)
# define CATCH_PLATFORM_WINDOWS
#endif
// end catch_platform.h
#ifdef CATCH_IMPL
# ifndef CLARA_CONFIG_MAIN
# define CLARA_CONFIG_MAIN_NOT_DEFINED
# define CLARA_CONFIG_MAIN
# endif
#endif
// start catch_user_interfaces.h
namespace Catch {
unsigned int rngSeed();
}
// end catch_user_interfaces.h
// start catch_tag_alias_autoregistrar.h
// start catch_common.h
// start catch_compiler_capabilities.h
// Detect a number of compiler features - by compiler
// The following features are defined:
//
// CATCH_CONFIG_COUNTER : is the __COUNTER__ macro supported?
// CATCH_CONFIG_WINDOWS_SEH : is Windows SEH supported?
// CATCH_CONFIG_POSIX_SIGNALS : are POSIX signals supported?
// CATCH_CONFIG_DISABLE_EXCEPTIONS : Are exceptions enabled?
// ****************
// Note to maintainers: if new toggles are added please document them
// in configuration.md, too
// ****************
// In general each macro has a _NO_<feature name> form
// (e.g. CATCH_CONFIG_NO_POSIX_SIGNALS) which disables the feature.
// Many features, at point of detection, define an _INTERNAL_ macro, so they
// can be combined, en-mass, with the _NO_ forms later.
#ifdef __cplusplus
# if (__cplusplus >= 201402L) || (defined(_MSVC_LANG) && _MSVC_LANG >= 201402L)
# define CATCH_CPP14_OR_GREATER
# endif
# if (__cplusplus >= 201703L) || (defined(_MSVC_LANG) && _MSVC_LANG >= 201703L)
# define CATCH_CPP17_OR_GREATER
# endif
#endif
#if defined(CATCH_CPP17_OR_GREATER)
# define CATCH_INTERNAL_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS
#endif
#ifdef __clang__
# define CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
_Pragma( "clang diagnostic push" ) \
_Pragma( "clang diagnostic ignored \"-Wexit-time-destructors\"" ) \
_Pragma( "clang diagnostic ignored \"-Wglobal-constructors\"")
# define CATCH_INTERNAL_UNSUPPRESS_GLOBALS_WARNINGS \
_Pragma( "clang diagnostic pop" )
# define CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS \
_Pragma( "clang diagnostic push" ) \
_Pragma( "clang diagnostic ignored \"-Wparentheses\"" )
# define CATCH_INTERNAL_UNSUPPRESS_PARENTHESES_WARNINGS \
_Pragma( "clang diagnostic pop" )
# define CATCH_INTERNAL_SUPPRESS_UNUSED_WARNINGS \
_Pragma( "clang diagnostic push" ) \
_Pragma( "clang diagnostic ignored \"-Wunused-variable\"" )
# define CATCH_INTERNAL_UNSUPPRESS_UNUSED_WARNINGS \
_Pragma( "clang diagnostic pop" )
#endif // __clang__
////////////////////////////////////////////////////////////////////////////////
// Assume that non-Windows platforms support posix signals by default
#if !defined(CATCH_PLATFORM_WINDOWS)
#define CATCH_INTERNAL_CONFIG_POSIX_SIGNALS
#endif
////////////////////////////////////////////////////////////////////////////////
// We know some environments not to support full POSIX signals
#if defined(__CYGWIN__) || defined(__QNX__) || defined(__EMSCRIPTEN__) || defined(__DJGPP__)
#define CATCH_INTERNAL_CONFIG_NO_POSIX_SIGNALS
#endif
#ifdef __OS400__
# define CATCH_INTERNAL_CONFIG_NO_POSIX_SIGNALS
# define CATCH_CONFIG_COLOUR_NONE
#endif
////////////////////////////////////////////////////////////////////////////////
// Android somehow still does not support std::to_string
#if defined(__ANDROID__)
# define CATCH_INTERNAL_CONFIG_NO_CPP11_TO_STRING
#endif
////////////////////////////////////////////////////////////////////////////////
// Not all Windows environments support SEH properly
#if defined(__MINGW32__)
# define CATCH_INTERNAL_CONFIG_NO_WINDOWS_SEH
#endif
////////////////////////////////////////////////////////////////////////////////
// PS4
#if defined(__ORBIS__)
# define CATCH_INTERNAL_CONFIG_NO_NEW_CAPTURE
#endif
////////////////////////////////////////////////////////////////////////////////
// Cygwin
#ifdef __CYGWIN__
// Required for some versions of Cygwin to declare gettimeofday
// see: http://stackoverflow.com/questions/36901803/gettimeofday-not-declared-in-this-scope-cygwin
# define _BSD_SOURCE
// some versions of cygwin (most) do not support std::to_string. Use the libstd check.
// https://gcc.gnu.org/onlinedocs/gcc-4.8.2/libstdc++/api/a01053_source.html line 2812-2813
# if !((__cplusplus >= 201103L) && defined(_GLIBCXX_USE_C99) \
&& !defined(_GLIBCXX_HAVE_BROKEN_VSWPRINTF))
# define CATCH_INTERNAL_CONFIG_NO_CPP11_TO_STRING
# endif
#endif // __CYGWIN__
////////////////////////////////////////////////////////////////////////////////
// Visual C++
#ifdef _MSC_VER
# if _MSC_VER >= 1900 // Visual Studio 2015 or newer
# define CATCH_INTERNAL_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS
# endif
// Universal Windows platform does not support SEH
// Or console colours (or console at all...)
# if defined(WINAPI_FAMILY) && (WINAPI_FAMILY == WINAPI_FAMILY_APP)
# define CATCH_CONFIG_COLOUR_NONE
# else
# define CATCH_INTERNAL_CONFIG_WINDOWS_SEH
# endif
// MSVC traditional preprocessor needs some workaround for __VA_ARGS__
// _MSVC_TRADITIONAL == 0 means new conformant preprocessor
// _MSVC_TRADITIONAL == 1 means old traditional non-conformant preprocessor
# if !defined(_MSVC_TRADITIONAL) || (defined(_MSVC_TRADITIONAL) && _MSVC_TRADITIONAL)
# define CATCH_INTERNAL_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
# endif
#endif // _MSC_VER
////////////////////////////////////////////////////////////////////////////////
// Check if we are compiled with -fno-exceptions or equivalent
#if defined(__EXCEPTIONS) || defined(__cpp_exceptions) || defined(_CPPUNWIND)
# define CATCH_INTERNAL_CONFIG_EXCEPTIONS_ENABLED
#endif
////////////////////////////////////////////////////////////////////////////////
// DJGPP
#ifdef __DJGPP__
# define CATCH_INTERNAL_CONFIG_NO_WCHAR
#endif // __DJGPP__
////////////////////////////////////////////////////////////////////////////////
// Embarcadero C++Build
#if defined(__BORLANDC__)
#define CATCH_INTERNAL_CONFIG_POLYFILL_ISNAN
#endif
////////////////////////////////////////////////////////////////////////////////
// Use of __COUNTER__ is suppressed during code analysis in
// CLion/AppCode 2017.2.x and former, because __COUNTER__ is not properly
// handled by it.
// Otherwise all supported compilers support COUNTER macro,
// but user still might want to turn it off
#if ( !defined(__JETBRAINS_IDE__) || __JETBRAINS_IDE__ >= 20170300L )
#define CATCH_INTERNAL_CONFIG_COUNTER
#endif
////////////////////////////////////////////////////////////////////////////////
// Check if string_view is available and usable
// The check is split apart to work around v140 (VS2015) preprocessor issue...
#if defined(__has_include)
#if __has_include(<string_view>) && defined(CATCH_CPP17_OR_GREATER)
# define CATCH_INTERNAL_CONFIG_CPP17_STRING_VIEW
#endif
#endif
////////////////////////////////////////////////////////////////////////////////
// Check if optional is available and usable
#if defined(__has_include)
# if __has_include(<optional>) && defined(CATCH_CPP17_OR_GREATER)
# define CATCH_INTERNAL_CONFIG_CPP17_OPTIONAL
# endif // __has_include(<optional>) && defined(CATCH_CPP17_OR_GREATER)
#endif // __has_include
////////////////////////////////////////////////////////////////////////////////
// Check if variant is available and usable
#if defined(__has_include)
# if __has_include(<variant>) && defined(CATCH_CPP17_OR_GREATER)
# if defined(__clang__) && (__clang_major__ < 8)
// work around clang bug with libstdc++ https://bugs.llvm.org/show_bug.cgi?id=31852
// fix should be in clang 8, workaround in libstdc++ 8.2
# include <ciso646>
# if defined(__GLIBCXX__) && defined(_GLIBCXX_RELEASE) && (_GLIBCXX_RELEASE < 9)
# define CATCH_CONFIG_NO_CPP17_VARIANT
# else
# define CATCH_INTERNAL_CONFIG_CPP17_VARIANT
# endif // defined(__GLIBCXX__) && defined(_GLIBCXX_RELEASE) && (_GLIBCXX_RELEASE < 9)
# else
# define CATCH_INTERNAL_CONFIG_CPP17_VARIANT
# endif // defined(__clang__) && (__clang_major__ < 8)
# endif // __has_include(<variant>) && defined(CATCH_CPP17_OR_GREATER)
#endif // __has_include
#if defined(CATCH_INTERNAL_CONFIG_COUNTER) && !defined(CATCH_CONFIG_NO_COUNTER) && !defined(CATCH_CONFIG_COUNTER)
# define CATCH_CONFIG_COUNTER
#endif
#if defined(CATCH_INTERNAL_CONFIG_WINDOWS_SEH) && !defined(CATCH_CONFIG_NO_WINDOWS_SEH) && !defined(CATCH_CONFIG_WINDOWS_SEH) && !defined(CATCH_INTERNAL_CONFIG_NO_WINDOWS_SEH)
# define CATCH_CONFIG_WINDOWS_SEH
#endif
// This is set by default, because we assume that unix compilers are posix-signal-compatible by default.
#if defined(CATCH_INTERNAL_CONFIG_POSIX_SIGNALS) && !defined(CATCH_INTERNAL_CONFIG_NO_POSIX_SIGNALS) && !defined(CATCH_CONFIG_NO_POSIX_SIGNALS) && !defined(CATCH_CONFIG_POSIX_SIGNALS)
# define CATCH_CONFIG_POSIX_SIGNALS
#endif
// This is set by default, because we assume that compilers with no wchar_t support are just rare exceptions.
#if !defined(CATCH_INTERNAL_CONFIG_NO_WCHAR) && !defined(CATCH_CONFIG_NO_WCHAR) && !defined(CATCH_CONFIG_WCHAR)
# define CATCH_CONFIG_WCHAR
#endif
#if !defined(CATCH_INTERNAL_CONFIG_NO_CPP11_TO_STRING) && !defined(CATCH_CONFIG_NO_CPP11_TO_STRING) && !defined(CATCH_CONFIG_CPP11_TO_STRING)
# define CATCH_CONFIG_CPP11_TO_STRING
#endif
#if defined(CATCH_INTERNAL_CONFIG_CPP17_OPTIONAL) && !defined(CATCH_CONFIG_NO_CPP17_OPTIONAL) && !defined(CATCH_CONFIG_CPP17_OPTIONAL)
# define CATCH_CONFIG_CPP17_OPTIONAL
#endif
#if defined(CATCH_INTERNAL_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS) && !defined(CATCH_CONFIG_NO_CPP17_UNCAUGHT_EXCEPTIONS) && !defined(CATCH_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS)
# define CATCH_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS
#endif
#if defined(CATCH_INTERNAL_CONFIG_CPP17_STRING_VIEW) && !defined(CATCH_CONFIG_NO_CPP17_STRING_VIEW) && !defined(CATCH_CONFIG_CPP17_STRING_VIEW)
# define CATCH_CONFIG_CPP17_STRING_VIEW
#endif
#if defined(CATCH_INTERNAL_CONFIG_CPP17_VARIANT) && !defined(CATCH_CONFIG_NO_CPP17_VARIANT) && !defined(CATCH_CONFIG_CPP17_VARIANT)
# define CATCH_CONFIG_CPP17_VARIANT
#endif
#if defined(CATCH_CONFIG_EXPERIMENTAL_REDIRECT)
# define CATCH_INTERNAL_CONFIG_NEW_CAPTURE
#endif
#if defined(CATCH_INTERNAL_CONFIG_NEW_CAPTURE) && !defined(CATCH_INTERNAL_CONFIG_NO_NEW_CAPTURE) && !defined(CATCH_CONFIG_NO_NEW_CAPTURE) && !defined(CATCH_CONFIG_NEW_CAPTURE)
# define CATCH_CONFIG_NEW_CAPTURE
#endif
#if !defined(CATCH_INTERNAL_CONFIG_EXCEPTIONS_ENABLED) && !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
# define CATCH_CONFIG_DISABLE_EXCEPTIONS
#endif
#if defined(CATCH_INTERNAL_CONFIG_POLYFILL_ISNAN) && !defined(CATCH_CONFIG_NO_POLYFILL_ISNAN) && !defined(CATCH_CONFIG_POLYFILL_ISNAN)
# define CATCH_CONFIG_POLYFILL_ISNAN
#endif
#if !defined(CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS)
# define CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS
# define CATCH_INTERNAL_UNSUPPRESS_PARENTHESES_WARNINGS
#endif
#if !defined(CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS)
# define CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS
# define CATCH_INTERNAL_UNSUPPRESS_GLOBALS_WARNINGS
#endif
#if !defined(CATCH_INTERNAL_SUPPRESS_UNUSED_WARNINGS)
# define CATCH_INTERNAL_SUPPRESS_UNUSED_WARNINGS
# define CATCH_INTERNAL_UNSUPPRESS_UNUSED_WARNINGS
#endif
#if defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
#define CATCH_TRY if ((true))
#define CATCH_CATCH_ALL if ((false))
#define CATCH_CATCH_ANON(type) if ((false))
#else
#define CATCH_TRY try
#define CATCH_CATCH_ALL catch (...)
#define CATCH_CATCH_ANON(type) catch (type)
#endif
#if defined(CATCH_INTERNAL_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR) && !defined(CATCH_CONFIG_NO_TRADITIONAL_MSVC_PREPROCESSOR) && !defined(CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR)
#define CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
#endif
// end catch_compiler_capabilities.h
#define INTERNAL_CATCH_UNIQUE_NAME_LINE2( name, line ) name##line
#define INTERNAL_CATCH_UNIQUE_NAME_LINE( name, line ) INTERNAL_CATCH_UNIQUE_NAME_LINE2( name, line )
#ifdef CATCH_CONFIG_COUNTER
# define INTERNAL_CATCH_UNIQUE_NAME( name ) INTERNAL_CATCH_UNIQUE_NAME_LINE( name, __COUNTER__ )
#else
# define INTERNAL_CATCH_UNIQUE_NAME( name ) INTERNAL_CATCH_UNIQUE_NAME_LINE( name, __LINE__ )
#endif
#include <iosfwd>
#include <string>
#include <cstdint>
// We need a dummy global operator<< so we can bring it into Catch namespace later
struct Catch_global_namespace_dummy {};
std::ostream& operator<<(std::ostream&, Catch_global_namespace_dummy);
namespace Catch {
struct CaseSensitive { enum Choice {
Yes,
No
}; };
class NonCopyable {
NonCopyable( NonCopyable const& ) = delete;
NonCopyable( NonCopyable && ) = delete;
NonCopyable& operator = ( NonCopyable const& ) = delete;
NonCopyable& operator = ( NonCopyable && ) = delete;
protected:
NonCopyable();
virtual ~NonCopyable();
};
struct SourceLineInfo {
SourceLineInfo() = delete;
SourceLineInfo( char const* _file, std::size_t _line ) noexcept
: file( _file ),
line( _line )
{}
SourceLineInfo( SourceLineInfo const& other ) = default;
SourceLineInfo& operator = ( SourceLineInfo const& ) = default;
SourceLineInfo( SourceLineInfo&& ) noexcept = default;
SourceLineInfo& operator = ( SourceLineInfo&& ) noexcept = default;
bool empty() const noexcept;
bool operator == ( SourceLineInfo const& other ) const noexcept;
bool operator < ( SourceLineInfo const& other ) const noexcept;
char const* file;
std::size_t line;
};
std::ostream& operator << ( std::ostream& os, SourceLineInfo const& info );
// Bring in operator<< from global namespace into Catch namespace
// This is necessary because the overload of operator<< above makes
// lookup stop at namespace Catch
using ::operator<<;
// Use this in variadic streaming macros to allow
// >> +StreamEndStop
// as well as
// >> stuff +StreamEndStop
struct StreamEndStop {
std::string operator+() const;
};
template<typename T>
T const& operator + ( T const& value, StreamEndStop ) {
return value;
}
}
#define CATCH_INTERNAL_LINEINFO \
::Catch::SourceLineInfo( __FILE__, static_cast<std::size_t>( __LINE__ ) )
// end catch_common.h
namespace Catch {
struct RegistrarForTagAliases {
RegistrarForTagAliases( char const* alias, char const* tag, SourceLineInfo const& lineInfo );
};
} // end namespace Catch
#define CATCH_REGISTER_TAG_ALIAS( alias, spec ) \
CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
namespace{ Catch::RegistrarForTagAliases INTERNAL_CATCH_UNIQUE_NAME( AutoRegisterTagAlias )( alias, spec, CATCH_INTERNAL_LINEINFO ); } \
CATCH_INTERNAL_UNSUPPRESS_GLOBALS_WARNINGS
// end catch_tag_alias_autoregistrar.h
// start catch_test_registry.h
// start catch_interfaces_testcase.h
#include <vector>
namespace Catch {
class TestSpec;
struct ITestInvoker {
virtual void invoke () const = 0;
virtual ~ITestInvoker();
};
class TestCase;
struct IConfig;
struct ITestCaseRegistry {
virtual ~ITestCaseRegistry();
virtual std::vector<TestCase> const& getAllTests() const = 0;
virtual std::vector<TestCase> const& getAllTestsSorted( IConfig const& config ) const = 0;
};
bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config );
std::vector<TestCase> filterTests( std::vector<TestCase> const& testCases, TestSpec const& testSpec, IConfig const& config );
std::vector<TestCase> const& getAllTestCasesSorted( IConfig const& config );
}
// end catch_interfaces_testcase.h
// start catch_stringref.h
#include <cstddef>
#include <string>
#include <iosfwd>
namespace Catch {
/// A non-owning string class (similar to the forthcoming std::string_view)
/// Note that, because a StringRef may be a substring of another string,
/// it may not be null terminated. c_str() must return a null terminated
/// string, however, and so the StringRef will internally take ownership
/// (taking a copy), if necessary. In theory this ownership is not externally
/// visible - but it does mean (substring) StringRefs should not be shared between
/// threads.
class StringRef {
public:
using size_type = std::size_t;
private:
friend struct StringRefTestAccess;
char const* m_start;
size_type m_size;
char* m_data = nullptr;
void takeOwnership();
static constexpr char const* const s_empty = "";
public: // construction/ assignment
StringRef() noexcept
: StringRef( s_empty, 0 )
{}
StringRef( StringRef const& other ) noexcept
: m_start( other.m_start ),
m_size( other.m_size )
{}
StringRef( StringRef&& other ) noexcept
: m_start( other.m_start ),
m_size( other.m_size ),
m_data( other.m_data )
{
other.m_data = nullptr;
}
StringRef( char const* rawChars ) noexcept;
StringRef( char const* rawChars, size_type size ) noexcept
: m_start( rawChars ),
m_size( size )
{}
StringRef( std::string const& stdString ) noexcept
: m_start( stdString.c_str() ),
m_size( stdString.size() )
{}
~StringRef() noexcept {
delete[] m_data;
}
auto operator = ( StringRef const &other ) noexcept -> StringRef& {
delete[] m_data;
m_data = nullptr;
m_start = other.m_start;
m_size = other.m_size;
return *this;
}
operator std::string() const;
void swap( StringRef& other ) noexcept;
public: // operators
auto operator == ( StringRef const& other ) const noexcept -> bool;
auto operator != ( StringRef const& other ) const noexcept -> bool;
auto operator[] ( size_type index ) const noexcept -> char;
public: // named queries
auto empty() const noexcept -> bool {
return m_size == 0;
}
auto size() const noexcept -> size_type {
return m_size;
}
auto numberOfCharacters() const noexcept -> size_type;
auto c_str() const -> char const*;
public: // substrings and searches
auto substr( size_type start, size_type size ) const noexcept -> StringRef;
// Returns the current start pointer.
// Note that the pointer can change when if the StringRef is a substring
auto currentData() const noexcept -> char const*;
private: // ownership queries - may not be consistent between calls
auto isOwned() const noexcept -> bool;
auto isSubstring() const noexcept -> bool;
};
auto operator + ( StringRef const& lhs, StringRef const& rhs ) -> std::string;
auto operator + ( StringRef const& lhs, char const* rhs ) -> std::string;
auto operator + ( char const* lhs, StringRef const& rhs ) -> std::string;
auto operator += ( std::string& lhs, StringRef const& sr ) -> std::string&;
auto operator << ( std::ostream& os, StringRef const& sr ) -> std::ostream&;
inline auto operator "" _sr( char const* rawChars, std::size_t size ) noexcept -> StringRef {
return StringRef( rawChars, size );
}
} // namespace Catch
inline auto operator "" _catch_sr( char const* rawChars, std::size_t size ) noexcept -> Catch::StringRef {
return Catch::StringRef( rawChars, size );
}
// end catch_stringref.h
// start catch_type_traits.hpp
#include <type_traits>
namespace Catch{
#ifdef CATCH_CPP17_OR_GREATER
template <typename...>
inline constexpr auto is_unique = std::true_type{};
template <typename T, typename... Rest>
inline constexpr auto is_unique<T, Rest...> = std::bool_constant<
(!std::is_same_v<T, Rest> && ...) && is_unique<Rest...>
>{};
#else
template <typename...>
struct is_unique : std::true_type{};
template <typename T0, typename T1, typename... Rest>
struct is_unique<T0, T1, Rest...> : std::integral_constant
<bool,
!std::is_same<T0, T1>::value
&& is_unique<T0, Rest...>::value
&& is_unique<T1, Rest...>::value
>{};
#endif
}
// end catch_type_traits.hpp
// start catch_preprocessor.hpp
#define CATCH_RECURSION_LEVEL0(...) __VA_ARGS__
#define CATCH_RECURSION_LEVEL1(...) CATCH_RECURSION_LEVEL0(CATCH_RECURSION_LEVEL0(CATCH_RECURSION_LEVEL0(__VA_ARGS__)))
#define CATCH_RECURSION_LEVEL2(...) CATCH_RECURSION_LEVEL1(CATCH_RECURSION_LEVEL1(CATCH_RECURSION_LEVEL1(__VA_ARGS__)))
#define CATCH_RECURSION_LEVEL3(...) CATCH_RECURSION_LEVEL2(CATCH_RECURSION_LEVEL2(CATCH_RECURSION_LEVEL2(__VA_ARGS__)))
#define CATCH_RECURSION_LEVEL4(...) CATCH_RECURSION_LEVEL3(CATCH_RECURSION_LEVEL3(CATCH_RECURSION_LEVEL3(__VA_ARGS__)))
#define CATCH_RECURSION_LEVEL5(...) CATCH_RECURSION_LEVEL4(CATCH_RECURSION_LEVEL4(CATCH_RECURSION_LEVEL4(__VA_ARGS__)))
#ifdef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
#define INTERNAL_CATCH_EXPAND_VARGS(...) __VA_ARGS__
// MSVC needs more evaluations
#define CATCH_RECURSION_LEVEL6(...) CATCH_RECURSION_LEVEL5(CATCH_RECURSION_LEVEL5(CATCH_RECURSION_LEVEL5(__VA_ARGS__)))
#define CATCH_RECURSE(...) CATCH_RECURSION_LEVEL6(CATCH_RECURSION_LEVEL6(__VA_ARGS__))
#else
#define CATCH_RECURSE(...) CATCH_RECURSION_LEVEL5(__VA_ARGS__)
#endif
#define CATCH_REC_END(...)
#define CATCH_REC_OUT
#define CATCH_EMPTY()
#define CATCH_DEFER(id) id CATCH_EMPTY()
#define CATCH_REC_GET_END2() 0, CATCH_REC_END
#define CATCH_REC_GET_END1(...) CATCH_REC_GET_END2
#define CATCH_REC_GET_END(...) CATCH_REC_GET_END1
#define CATCH_REC_NEXT0(test, next, ...) next CATCH_REC_OUT
#define CATCH_REC_NEXT1(test, next) CATCH_DEFER ( CATCH_REC_NEXT0 ) ( test, next, 0)
#define CATCH_REC_NEXT(test, next) CATCH_REC_NEXT1(CATCH_REC_GET_END test, next)
#define CATCH_REC_LIST0(f, x, peek, ...) , f(x) CATCH_DEFER ( CATCH_REC_NEXT(peek, CATCH_REC_LIST1) ) ( f, peek, __VA_ARGS__ )
#define CATCH_REC_LIST1(f, x, peek, ...) , f(x) CATCH_DEFER ( CATCH_REC_NEXT(peek, CATCH_REC_LIST0) ) ( f, peek, __VA_ARGS__ )
#define CATCH_REC_LIST2(f, x, peek, ...) f(x) CATCH_DEFER ( CATCH_REC_NEXT(peek, CATCH_REC_LIST1) ) ( f, peek, __VA_ARGS__ )
#define CATCH_REC_LIST0_UD(f, userdata, x, peek, ...) , f(userdata, x) CATCH_DEFER ( CATCH_REC_NEXT(peek, CATCH_REC_LIST1_UD) ) ( f, userdata, peek, __VA_ARGS__ )
#define CATCH_REC_LIST1_UD(f, userdata, x, peek, ...) , f(userdata, x) CATCH_DEFER ( CATCH_REC_NEXT(peek, CATCH_REC_LIST0_UD) ) ( f, userdata, peek, __VA_ARGS__ )
#define CATCH_REC_LIST2_UD(f, userdata, x, peek, ...) f(userdata, x) CATCH_DEFER ( CATCH_REC_NEXT(peek, CATCH_REC_LIST1_UD) ) ( f, userdata, peek, __VA_ARGS__ )
// Applies the function macro `f` to each of the remaining parameters, inserts commas between the results,
// and passes userdata as the first parameter to each invocation,
// e.g. CATCH_REC_LIST_UD(f, x, a, b, c) evaluates to f(x, a), f(x, b), f(x, c)
#define CATCH_REC_LIST_UD(f, userdata, ...) CATCH_RECURSE(CATCH_REC_LIST2_UD(f, userdata, __VA_ARGS__, ()()(), ()()(), ()()(), 0))
#define CATCH_REC_LIST(f, ...) CATCH_RECURSE(CATCH_REC_LIST2(f, __VA_ARGS__, ()()(), ()()(), ()()(), 0))
#define INTERNAL_CATCH_EXPAND1(param) INTERNAL_CATCH_EXPAND2(param)
#define INTERNAL_CATCH_EXPAND2(...) INTERNAL_CATCH_NO## __VA_ARGS__
#define INTERNAL_CATCH_DEF(...) INTERNAL_CATCH_DEF __VA_ARGS__
#define INTERNAL_CATCH_NOINTERNAL_CATCH_DEF
#define INTERNAL_CATCH_REMOVE_PARENS(...) INTERNAL_CATCH_EXPAND1(INTERNAL_CATCH_DEF __VA_ARGS__)
#define INTERNAL_CATCH_TEMPLATE_UNIQUE_NAME2(Name, ...) INTERNAL_CATCH_TEMPLATE_UNIQUE_NAME3(Name, __VA_ARGS__)
#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
#define INTERNAL_CATCH_TEMPLATE_UNIQUE_NAME3(Name,...) Name " - " #__VA_ARGS__
#define INTERNAL_CATCH_TEMPLATE_UNIQUE_NAME(Name,...) INTERNAL_CATCH_TEMPLATE_UNIQUE_NAME2(Name, INTERNAL_CATCH_REMOVE_PARENS(__VA_ARGS__))
#else
// MSVC is adding extra space and needs more calls to properly remove ()
#define INTERNAL_CATCH_TEMPLATE_UNIQUE_NAME3(Name,...) Name " -" #__VA_ARGS__
#define INTERNAL_CATCH_TEMPLATE_UNIQUE_NAME1(Name, ...) INTERNAL_CATCH_TEMPLATE_UNIQUE_NAME2(Name, __VA_ARGS__)
#define INTERNAL_CATCH_TEMPLATE_UNIQUE_NAME(Name, ...) INTERNAL_CATCH_TEMPLATE_UNIQUE_NAME1(Name, INTERNAL_CATCH_EXPAND_VARGS(INTERNAL_CATCH_REMOVE_PARENS(__VA_ARGS__)))
#endif
#define INTERNAL_CATCH_MAKE_TYPE_LIST(types) TypeList<INTERNAL_CATCH_REMOVE_PARENS(types)>
#define INTERNAL_CATCH_MAKE_TYPE_LISTS_FROM_TYPES(types)\
CATCH_REC_LIST(INTERNAL_CATCH_MAKE_TYPE_LIST,INTERNAL_CATCH_REMOVE_PARENS(types))
// end catch_preprocessor.hpp
// start catch_meta.hpp
#include <type_traits>
template< typename... >
struct TypeList{};
template< typename... >
struct append;
template< template<typename...> class L1
, typename...E1
, template<typename...> class L2
, typename...E2
>
struct append< L1<E1...>, L2<E2...> >
{
using type = L1<E1..., E2...>;
};
template< template<typename...> class L1
, typename...E1
, template<typename...> class L2
, typename...E2
, typename...Rest
>
struct append< L1<E1...>, L2<E2...>, Rest...>
{
using type = typename append< L1<E1..., E2...>, Rest... >::type;
};
template< template<typename...> class
, typename...
>
struct rewrap;
template< template<typename...> class Container
, template<typename...> class List
, typename...elems
>
struct rewrap<Container, List<elems...>>
{
using type = TypeList< Container< elems... > >;
};
template< template<typename...> class Container
, template<typename...> class List
, class...Elems
, typename...Elements>
struct rewrap<Container, List<Elems...>, Elements...>
{
using type = typename append<TypeList<Container<Elems...>>, typename rewrap<Container, Elements...>::type>::type;
};
template< template<typename...> class...Containers >
struct combine
{
template< typename...Types >
struct with_types
{
template< template <typename...> class Final >
struct into
{
using type = typename append<Final<>, typename rewrap<Containers, Types...>::type...>::type;
};
};
};
template<typename T>
struct always_false : std::false_type {};
// end catch_meta.hpp
namespace Catch {
template<typename C>
class TestInvokerAsMethod : public ITestInvoker {
void (C::*m_testAsMethod)();
public:
TestInvokerAsMethod( void (C::*testAsMethod)() ) noexcept : m_testAsMethod( testAsMethod ) {}
void invoke() const override {
C obj;
(obj.*m_testAsMethod)();
}
};
auto makeTestInvoker( void(*testAsFunction)() ) noexcept -> ITestInvoker*;
template<typename C>
auto makeTestInvoker( void (C::*testAsMethod)() ) noexcept -> ITestInvoker* {
return new(std::nothrow) TestInvokerAsMethod<C>( testAsMethod );
}
struct NameAndTags {
NameAndTags( StringRef const& name_ = StringRef(), StringRef const& tags_ = StringRef() ) noexcept;
StringRef name;
StringRef tags;
};
struct AutoReg : NonCopyable {
AutoReg( ITestInvoker* invoker, SourceLineInfo const& lineInfo, StringRef const& classOrMethod, NameAndTags const& nameAndTags ) noexcept;
~AutoReg();
};
} // end namespace Catch
#if defined(CATCH_CONFIG_DISABLE)
#define INTERNAL_CATCH_TESTCASE_NO_REGISTRATION( TestName, ... ) \
static void TestName()
#define INTERNAL_CATCH_TESTCASE_METHOD_NO_REGISTRATION( TestName, ClassName, ... ) \
namespace{ \
struct TestName : INTERNAL_CATCH_REMOVE_PARENS(ClassName) { \
void test(); \
}; \
} \
void TestName::test()
#define INTERNAL_CATCH_TEMPLATE_TEST_CASE_NO_REGISTRATION( TestName, ... ) \
template<typename TestType> \
static void TestName()
#define INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_NO_REGISTRATION( TestName, ClassName, ... ) \
namespace{ \
template<typename TestType> \
struct TestName : INTERNAL_CATCH_REMOVE_PARENS(ClassName <TestType>) { \
void test(); \
}; \
} \
template<typename TestType> \
void TestName::test()
#endif
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_TESTCASE2( TestName, ... ) \
static void TestName(); \
CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
namespace{ Catch::AutoReg INTERNAL_CATCH_UNIQUE_NAME( autoRegistrar )( Catch::makeTestInvoker( &TestName ), CATCH_INTERNAL_LINEINFO, Catch::StringRef(), Catch::NameAndTags{ __VA_ARGS__ } ); } /* NOLINT */ \
CATCH_INTERNAL_UNSUPPRESS_GLOBALS_WARNINGS \
static void TestName()
#define INTERNAL_CATCH_TESTCASE( ... ) \
INTERNAL_CATCH_TESTCASE2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ), __VA_ARGS__ )
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_METHOD_AS_TEST_CASE( QualifiedMethod, ... ) \
CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
namespace{ Catch::AutoReg INTERNAL_CATCH_UNIQUE_NAME( autoRegistrar )( Catch::makeTestInvoker( &QualifiedMethod ), CATCH_INTERNAL_LINEINFO, "&" #QualifiedMethod, Catch::NameAndTags{ __VA_ARGS__ } ); } /* NOLINT */ \
CATCH_INTERNAL_UNSUPPRESS_GLOBALS_WARNINGS
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_TEST_CASE_METHOD2( TestName, ClassName, ... )\
CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
namespace{ \
struct TestName : INTERNAL_CATCH_REMOVE_PARENS(ClassName) { \
void test(); \
}; \
Catch::AutoReg INTERNAL_CATCH_UNIQUE_NAME( autoRegistrar ) ( Catch::makeTestInvoker( &TestName::test ), CATCH_INTERNAL_LINEINFO, #ClassName, Catch::NameAndTags{ __VA_ARGS__ } ); /* NOLINT */ \
} \
CATCH_INTERNAL_UNSUPPRESS_GLOBALS_WARNINGS \
void TestName::test()
#define INTERNAL_CATCH_TEST_CASE_METHOD( ClassName, ... ) \
INTERNAL_CATCH_TEST_CASE_METHOD2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ), ClassName, __VA_ARGS__ )
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_REGISTER_TESTCASE( Function, ... ) \
CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
Catch::AutoReg INTERNAL_CATCH_UNIQUE_NAME( autoRegistrar )( Catch::makeTestInvoker( Function ), CATCH_INTERNAL_LINEINFO, Catch::StringRef(), Catch::NameAndTags{ __VA_ARGS__ } ); /* NOLINT */ \
CATCH_INTERNAL_UNSUPPRESS_GLOBALS_WARNINGS
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_TEMPLATE_TEST_CASE_2(TestName, TestFunc, Name, Tags, ... )\
CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
template<typename TestType> \
static void TestFunc();\
namespace {\
template<typename...Types> \
struct TestName{\
template<typename...Ts> \
TestName(Ts...names){\
CATCH_INTERNAL_CHECK_UNIQUE_TYPES(CATCH_REC_LIST(INTERNAL_CATCH_REMOVE_PARENS, __VA_ARGS__)) \
using expander = int[];\
(void)expander{(Catch::AutoReg( Catch::makeTestInvoker( &TestFunc<Types> ), CATCH_INTERNAL_LINEINFO, Catch::StringRef(), Catch::NameAndTags{ names, Tags } ), 0)... };/* NOLINT */ \
}\
};\
INTERNAL_CATCH_TEMPLATE_REGISTRY_INITIATE(TestName, Name, __VA_ARGS__) \
}\
CATCH_INTERNAL_UNSUPPRESS_GLOBALS_WARNINGS \
template<typename TestType> \
static void TestFunc()
#if defined(CATCH_CPP17_OR_GREATER)
#define CATCH_INTERNAL_CHECK_UNIQUE_TYPES(...) static_assert(Catch::is_unique<__VA_ARGS__>,"Duplicate type detected in declaration of template test case");
#else
#define CATCH_INTERNAL_CHECK_UNIQUE_TYPES(...) static_assert(Catch::is_unique<__VA_ARGS__>::value,"Duplicate type detected in declaration of template test case");
#endif
#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
#define INTERNAL_CATCH_TEMPLATE_TEST_CASE(Name, Tags, ...) \
INTERNAL_CATCH_TEMPLATE_TEST_CASE_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), Name, Tags, __VA_ARGS__ )
#else
#define INTERNAL_CATCH_TEMPLATE_TEST_CASE(Name, Tags, ...) \
INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), Name, Tags, __VA_ARGS__ ) )
#endif
#define INTERNAL_CATCH_TEMPLATE_REGISTRY_INITIATE(TestName, Name, ...)\
static int INTERNAL_CATCH_UNIQUE_NAME( globalRegistrar ) = [](){\
TestName<CATCH_REC_LIST(INTERNAL_CATCH_REMOVE_PARENS, __VA_ARGS__)>(CATCH_REC_LIST_UD(INTERNAL_CATCH_TEMPLATE_UNIQUE_NAME,Name, __VA_ARGS__));\
return 0;\
}();
#define INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE2(TestName, TestFuncName, Name, Tags, TmplTypes, TypesList) \
CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
template<typename TestType> static void TestFuncName(); \
namespace { \
template<typename... Types> \
struct TestName { \
TestName() { \
CATCH_INTERNAL_CHECK_UNIQUE_TYPES(Types...) \
int index = 0; \
using expander = int[]; \
(void)expander{(Catch::AutoReg( Catch::makeTestInvoker( &TestFuncName<Types> ), CATCH_INTERNAL_LINEINFO, Catch::StringRef(), Catch::NameAndTags{ Name " - " + Catch::StringMaker<int>::convert(index++), Tags } ), 0)... };/* NOLINT */ \
} \
}; \
static int INTERNAL_CATCH_UNIQUE_NAME( globalRegistrar ) = [](){ \
using TestInit = combine<INTERNAL_CATCH_REMOVE_PARENS(TmplTypes)> \
::with_types<INTERNAL_CATCH_MAKE_TYPE_LISTS_FROM_TYPES(TypesList)>::into<TestName>::type; \
TestInit(); \
return 0; \
}(); \
} \
CATCH_INTERNAL_UNSUPPRESS_GLOBALS_WARNINGS \
template<typename TestType> \
static void TestFuncName()
#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
#define INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE(Name, Tags, ...)\
INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE2(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ),Name,Tags,__VA_ARGS__)
#else
#define INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE(Name, Tags, ...)\
INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), Name, Tags, __VA_ARGS__ ) )
#endif
#define INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_2( TestNameClass, TestName, ClassName, Name, Tags, ... ) \
CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
namespace{ \
template<typename TestType> \
struct TestName : INTERNAL_CATCH_REMOVE_PARENS(ClassName <TestType>) { \
void test();\
};\
template<typename...Types> \
struct TestNameClass{\
template<typename...Ts> \
TestNameClass(Ts...names){\
CATCH_INTERNAL_CHECK_UNIQUE_TYPES(CATCH_REC_LIST(INTERNAL_CATCH_REMOVE_PARENS, __VA_ARGS__)) \
using expander = int[];\
(void)expander{(Catch::AutoReg( Catch::makeTestInvoker( &TestName<Types>::test ), CATCH_INTERNAL_LINEINFO, #ClassName, Catch::NameAndTags{ names, Tags } ), 0)... };/* NOLINT */ \
}\
};\
INTERNAL_CATCH_TEMPLATE_REGISTRY_INITIATE(TestNameClass, Name, __VA_ARGS__)\
}\
CATCH_INTERNAL_UNSUPPRESS_GLOBALS_WARNINGS\
template<typename TestType> \
void TestName<TestType>::test()
#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
#define INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD( ClassName, Name, Tags,... ) \
INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____C_L_A_S_S____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ) , ClassName, Name, Tags, __VA_ARGS__ )
#else
#define INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD( ClassName, Name, Tags,... ) \
INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____C_L_A_S_S____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ) , ClassName, Name, Tags, __VA_ARGS__ ) )
#endif
#define INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD_2(TestNameClass, TestName, ClassName, Name, Tags, TmplTypes, TypesList)\
CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
template<typename TestType> \
struct TestName : INTERNAL_CATCH_REMOVE_PARENS(ClassName <TestType>) { \
void test();\
};\
namespace {\
template<typename...Types>\
struct TestNameClass{\
TestNameClass(){\
CATCH_INTERNAL_CHECK_UNIQUE_TYPES(Types...)\
int index = 0;\
using expander = int[];\
(void)expander{(Catch::AutoReg( Catch::makeTestInvoker( &TestName<Types>::test ), CATCH_INTERNAL_LINEINFO, #ClassName, Catch::NameAndTags{ Name " - " + Catch::StringMaker<int>::convert(index++), Tags } ), 0)... };/* NOLINT */ \
}\
};\
static int INTERNAL_CATCH_UNIQUE_NAME( globalRegistrar ) = [](){\
using TestInit = combine<INTERNAL_CATCH_REMOVE_PARENS(TmplTypes)>\
::with_types<INTERNAL_CATCH_MAKE_TYPE_LISTS_FROM_TYPES(TypesList)>::into<TestNameClass>::type;\
TestInit();\
return 0;\
}(); \
}\
CATCH_INTERNAL_UNSUPPRESS_GLOBALS_WARNINGS \
template<typename TestType> \
void TestName<TestType>::test()
#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
#define INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( ClassName, Name, Tags, ... )\
INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), ClassName, Name, Tags, __VA_ARGS__ )
#else
#define INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( ClassName, Name, Tags, ... )\
INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), ClassName, Name, Tags, __VA_ARGS__ ) )
#endif
// end catch_test_registry.h
// start catch_capture.hpp
// start catch_assertionhandler.h
// start catch_assertioninfo.h
// start catch_result_type.h
namespace Catch {
// ResultWas::OfType enum
struct ResultWas { enum OfType {
Unknown = -1,
Ok = 0,
Info = 1,
Warning = 2,
FailureBit = 0x10,
ExpressionFailed = FailureBit | 1,
ExplicitFailure = FailureBit | 2,
Exception = 0x100 | FailureBit,
ThrewException = Exception | 1,
DidntThrowException = Exception | 2,
FatalErrorCondition = 0x200 | FailureBit
}; };
bool isOk( ResultWas::OfType resultType );
bool isJustInfo( int flags );
// ResultDisposition::Flags enum
struct ResultDisposition { enum Flags {
Normal = 0x01,
ContinueOnFailure = 0x02, // Failures fail test, but execution continues
FalseTest = 0x04, // Prefix expression with !
SuppressFail = 0x08 // Failures are reported but do not fail the test
}; };
ResultDisposition::Flags operator | ( ResultDisposition::Flags lhs, ResultDisposition::Flags rhs );
bool shouldContinueOnFailure( int flags );
inline bool isFalseTest( int flags ) { return ( flags & ResultDisposition::FalseTest ) != 0; }
bool shouldSuppressFailure( int flags );
} // end namespace Catch
// end catch_result_type.h
namespace Catch {
struct AssertionInfo
{
StringRef macroName;
SourceLineInfo lineInfo;
StringRef capturedExpression;
ResultDisposition::Flags resultDisposition;
// We want to delete this constructor but a compiler bug in 4.8 means
// the struct is then treated as non-aggregate
//AssertionInfo() = delete;
};
} // end namespace Catch
// end catch_assertioninfo.h
// start catch_decomposer.h
// start catch_tostring.h
#include <vector>
#include <cstddef>
#include <type_traits>
#include <string>
// start catch_stream.h
#include <iosfwd>
#include <cstddef>
#include <ostream>
namespace Catch {
std::ostream& cout();
std::ostream& cerr();
std::ostream& clog();
class StringRef;
struct IStream {
virtual ~IStream();
virtual std::ostream& stream() const = 0;
};
auto makeStream( StringRef const &filename ) -> IStream const*;
class ReusableStringStream {
std::size_t m_index;
std::ostream* m_oss;
public:
ReusableStringStream();
~ReusableStringStream();
auto str() const -> std::string;
template<typename T>
auto operator << ( T const& value ) -> ReusableStringStream& {
*m_oss << value;
return *this;
}
auto get() -> std::ostream& { return *m_oss; }
};
}
// end catch_stream.h
#ifdef CATCH_CONFIG_CPP17_STRING_VIEW
#include <string_view>
#endif
#ifdef __OBJC__
// start catch_objc_arc.hpp
#import <Foundation/Foundation.h>
#ifdef __has_feature
#define CATCH_ARC_ENABLED __has_feature(objc_arc)
#else
#define CATCH_ARC_ENABLED 0
#endif
void arcSafeRelease( NSObject* obj );
id performOptionalSelector( id obj, SEL sel );
#if !CATCH_ARC_ENABLED
inline void arcSafeRelease( NSObject* obj ) {
[obj release];
}
inline id performOptionalSelector( id obj, SEL sel ) {
if( [obj respondsToSelector: sel] )
return [obj performSelector: sel];
return nil;
}
#define CATCH_UNSAFE_UNRETAINED
#define CATCH_ARC_STRONG
#else
inline void arcSafeRelease( NSObject* ){}
inline id performOptionalSelector( id obj, SEL sel ) {
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Warc-performSelector-leaks"
#endif
if( [obj respondsToSelector: sel] )
return [obj performSelector: sel];
#ifdef __clang__
#pragma clang diagnostic pop
#endif
return nil;
}
#define CATCH_UNSAFE_UNRETAINED __unsafe_unretained
#define CATCH_ARC_STRONG __strong
#endif
// end catch_objc_arc.hpp
#endif
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable:4180) // We attempt to stream a function (address) by const&, which MSVC complains about but is harmless
#endif
namespace Catch {
namespace Detail {
extern const std::string unprintableString;
std::string rawMemoryToString( const void *object, std::size_t size );
template<typename T>
std::string rawMemoryToString( const T& object ) {
return rawMemoryToString( &object, sizeof(object) );
}
template<typename T>
class IsStreamInsertable {
template<typename SS, typename TT>
static auto test(int)
-> decltype(std::declval<SS&>() << std::declval<TT>(), std::true_type());
template<typename, typename>
static auto test(...)->std::false_type;
public:
static const bool value = decltype(test<std::ostream, const T&>(0))::value;
};
template<typename E>
std::string convertUnknownEnumToString( E e );
template<typename T>
typename std::enable_if<
!std::is_enum<T>::value && !std::is_base_of<std::exception, T>::value,
std::string>::type convertUnstreamable( T const& ) {
return Detail::unprintableString;
}
template<typename T>
typename std::enable_if<
!std::is_enum<T>::value && std::is_base_of<std::exception, T>::value,
std::string>::type convertUnstreamable(T const& ex) {
return ex.what();
}
template<typename T>
typename std::enable_if<
std::is_enum<T>::value
, std::string>::type convertUnstreamable( T const& value ) {
return convertUnknownEnumToString( value );
}
#if defined(_MANAGED)
//! Convert a CLR string to a utf8 std::string
template<typename T>
std::string clrReferenceToString( T^ ref ) {
if (ref == nullptr)
return std::string("null");
auto bytes = System::Text::Encoding::UTF8->GetBytes(ref->ToString());
cli::pin_ptr<System::Byte> p = &bytes[0];
return std::string(reinterpret_cast<char const *>(p), bytes->Length);
}
#endif
} // namespace Detail
// If we decide for C++14, change these to enable_if_ts
template <typename T, typename = void>
struct StringMaker {
template <typename Fake = T>
static
typename std::enable_if<::Catch::Detail::IsStreamInsertable<Fake>::value, std::string>::type
convert(const Fake& value) {
ReusableStringStream rss;
// NB: call using the function-like syntax to avoid ambiguity with
// user-defined templated operator<< under clang.
rss.operator<<(value);
return rss.str();
}
template <typename Fake = T>
static
typename std::enable_if<!::Catch::Detail::IsStreamInsertable<Fake>::value, std::string>::type
convert( const Fake& value ) {
#if !defined(CATCH_CONFIG_FALLBACK_STRINGIFIER)
return Detail::convertUnstreamable(value);
#else
return CATCH_CONFIG_FALLBACK_STRINGIFIER(value);
#endif
}
};
namespace Detail {
// This function dispatches all stringification requests inside of Catch.
// Should be preferably called fully qualified, like ::Catch::Detail::stringify
template <typename T>
std::string stringify(const T& e) {
return ::Catch::StringMaker<typename std::remove_cv<typename std::remove_reference<T>::type>::type>::convert(e);
}
template<typename E>
std::string convertUnknownEnumToString( E e ) {
return ::Catch::Detail::stringify(static_cast<typename std::underlying_type<E>::type>(e));
}
#if defined(_MANAGED)
template <typename T>
std::string stringify( T^ e ) {
return ::Catch::StringMaker<T^>::convert(e);
}
#endif
} // namespace Detail
// Some predefined specializations
template<>
struct StringMaker<std::string> {
static std::string convert(const std::string& str);
};
#ifdef CATCH_CONFIG_CPP17_STRING_VIEW
template<>
struct StringMaker<std::string_view> {
static std::string convert(std::string_view str);
};
#endif
template<>
struct StringMaker<char const *> {
static std::string convert(char const * str);
};
template<>
struct StringMaker<char *> {
static std::string convert(char * str);
};
#ifdef CATCH_CONFIG_WCHAR
template<>
struct StringMaker<std::wstring> {
static std::string convert(const std::wstring& wstr);
};
# ifdef CATCH_CONFIG_CPP17_STRING_VIEW
template<>
struct StringMaker<std::wstring_view> {
static std::string convert(std::wstring_view str);
};
# endif
template<>
struct StringMaker<wchar_t const *> {
static std::string convert(wchar_t const * str);
};
template<>
struct StringMaker<wchar_t *> {
static std::string convert(wchar_t * str);
};
#endif
// TBD: Should we use `strnlen` to ensure that we don't go out of the buffer,
// while keeping string semantics?
template<int SZ>
struct StringMaker<char[SZ]> {
static std::string convert(char const* str) {
return ::Catch::Detail::stringify(std::string{ str });
}
};
template<int SZ>
struct StringMaker<signed char[SZ]> {
static std::string convert(signed char const* str) {
return ::Catch::Detail::stringify(std::string{ reinterpret_cast<char const *>(str) });
}
};
template<int SZ>
struct StringMaker<unsigned char[SZ]> {
static std::string convert(unsigned char const* str) {
return ::Catch::Detail::stringify(std::string{ reinterpret_cast<char const *>(str) });
}
};
template<>
struct StringMaker<int> {
static std::string convert(int value);
};
template<>
struct StringMaker<long> {
static std::string convert(long value);
};
template<>
struct StringMaker<long long> {
static std::string convert(long long value);
};
template<>
struct StringMaker<unsigned int> {
static std::string convert(unsigned int value);
};
template<>
struct StringMaker<unsigned long> {
static std::string convert(unsigned long value);
};
template<>
struct StringMaker<unsigned long long> {
static std::string convert(unsigned long long value);
};
template<>
struct StringMaker<bool> {
static std::string convert(bool b);
};
template<>
struct StringMaker<char> {
static std::string convert(char c);
};
template<>
struct StringMaker<signed char> {
static std::string convert(signed char c);
};
template<>
struct StringMaker<unsigned char> {
static std::string convert(unsigned char c);
};
template<>
struct StringMaker<std::nullptr_t> {
static std::string convert(std::nullptr_t);
};
template<>
struct StringMaker<float> {
static std::string convert(float value);
};
template<>
struct StringMaker<double> {
static std::string convert(double value);
};
template <typename T>
struct StringMaker<T*> {
template <typename U>
static std::string convert(U* p) {
if (p) {
return ::Catch::Detail::rawMemoryToString(p);
} else {
return "nullptr";
}
}
};
template <typename R, typename C>
struct StringMaker<R C::*> {
static std::string convert(R C::* p) {
if (p) {
return ::Catch::Detail::rawMemoryToString(p);
} else {
return "nullptr";
}
}
};
#if defined(_MANAGED)
template <typename T>
struct StringMaker<T^> {
static std::string convert( T^ ref ) {
return ::Catch::Detail::clrReferenceToString(ref);
}
};
#endif
namespace Detail {
template<typename InputIterator>
std::string rangeToString(InputIterator first, InputIterator last) {
ReusableStringStream rss;
rss << "{ ";
if (first != last) {
rss << ::Catch::Detail::stringify(*first);
for (++first; first != last; ++first)
rss << ", " << ::Catch::Detail::stringify(*first);
}
rss << " }";
return rss.str();
}
}
#ifdef __OBJC__
template<>
struct StringMaker<NSString*> {
static std::string convert(NSString * nsstring) {
if (!nsstring)
return "nil";
return std::string("@") + [nsstring UTF8String];
}
};
template<>
struct StringMaker<NSObject*> {
static std::string convert(NSObject* nsObject) {
return ::Catch::Detail::stringify([nsObject description]);
}
};
namespace Detail {
inline std::string stringify( NSString* nsstring ) {
return StringMaker<NSString*>::convert( nsstring );
}
} // namespace Detail
#endif // __OBJC__
} // namespace Catch
//////////////////////////////////////////////////////
// Separate std-lib types stringification, so it can be selectively enabled
// This means that we do not bring in
#if defined(CATCH_CONFIG_ENABLE_ALL_STRINGMAKERS)
# define CATCH_CONFIG_ENABLE_PAIR_STRINGMAKER
# define CATCH_CONFIG_ENABLE_TUPLE_STRINGMAKER
# define CATCH_CONFIG_ENABLE_VARIANT_STRINGMAKER
# define CATCH_CONFIG_ENABLE_CHRONO_STRINGMAKER
# define CATCH_CONFIG_ENABLE_OPTIONAL_STRINGMAKER
#endif
// Separate std::pair specialization
#if defined(CATCH_CONFIG_ENABLE_PAIR_STRINGMAKER)
#include <utility>
namespace Catch {
template<typename T1, typename T2>
struct StringMaker<std::pair<T1, T2> > {
static std::string convert(const std::pair<T1, T2>& pair) {
ReusableStringStream rss;
rss << "{ "
<< ::Catch::Detail::stringify(pair.first)
<< ", "
<< ::Catch::Detail::stringify(pair.second)
<< " }";
return rss.str();
}
};
}
#endif // CATCH_CONFIG_ENABLE_PAIR_STRINGMAKER
#if defined(CATCH_CONFIG_ENABLE_OPTIONAL_STRINGMAKER) && defined(CATCH_CONFIG_CPP17_OPTIONAL)
#include <optional>
namespace Catch {
template<typename T>
struct StringMaker<std::optional<T> > {
static std::string convert(const std::optional<T>& optional) {
ReusableStringStream rss;
if (optional.has_value()) {
rss << ::Catch::Detail::stringify(*optional);
} else {
rss << "{ }";
}
return rss.str();
}
};
}
#endif // CATCH_CONFIG_ENABLE_OPTIONAL_STRINGMAKER
// Separate std::tuple specialization
#if defined(CATCH_CONFIG_ENABLE_TUPLE_STRINGMAKER)
#include <tuple>
namespace Catch {
namespace Detail {
template<
typename Tuple,
std::size_t N = 0,
bool = (N < std::tuple_size<Tuple>::value)
>
struct TupleElementPrinter {
static void print(const Tuple& tuple, std::ostream& os) {
os << (N ? ", " : " ")
<< ::Catch::Detail::stringify(std::get<N>(tuple));
TupleElementPrinter<Tuple, N + 1>::print(tuple, os);
}
};
template<
typename Tuple,
std::size_t N
>
struct TupleElementPrinter<Tuple, N, false> {
static void print(const Tuple&, std::ostream&) {}
};
}
template<typename ...Types>
struct StringMaker<std::tuple<Types...>> {
static std::string convert(const std::tuple<Types...>& tuple) {
ReusableStringStream rss;
rss << '{';
Detail::TupleElementPrinter<std::tuple<Types...>>::print(tuple, rss.get());
rss << " }";
return rss.str();
}
};
}
#endif // CATCH_CONFIG_ENABLE_TUPLE_STRINGMAKER
#if defined(CATCH_CONFIG_ENABLE_VARIANT_STRINGMAKER) && defined(CATCH_CONFIG_CPP17_VARIANT)
#include <variant>
namespace Catch {
template<>
struct StringMaker<std::monostate> {
static std::string convert(const std::monostate&) {
return "{ }";
}
};
template<typename... Elements>
struct StringMaker<std::variant<Elements...>> {
static std::string convert(const std::variant<Elements...>& variant) {
if (variant.valueless_by_exception()) {
return "{valueless variant}";
} else {
return std::visit(
[](const auto& value) {
return ::Catch::Detail::stringify(value);
},
variant
);
}
}
};
}
#endif // CATCH_CONFIG_ENABLE_VARIANT_STRINGMAKER
namespace Catch {
struct not_this_one {}; // Tag type for detecting which begin/ end are being selected
// Import begin/ end from std here so they are considered alongside the fallback (...) overloads in this namespace
using std::begin;
using std::end;
not_this_one begin( ... );
not_this_one end( ... );
template <typename T>
struct is_range {
static const bool value =
!std::is_same<decltype(begin(std::declval<T>())), not_this_one>::value &&
!std::is_same<decltype(end(std::declval<T>())), not_this_one>::value;
};
#if defined(_MANAGED) // Managed types are never ranges
template <typename T>
struct is_range<T^> {
static const bool value = false;
};
#endif
template<typename Range>
std::string rangeToString( Range const& range ) {
return ::Catch::Detail::rangeToString( begin( range ), end( range ) );
}
// Handle vector<bool> specially
template<typename Allocator>
std::string rangeToString( std::vector<bool, Allocator> const& v ) {
ReusableStringStream rss;
rss << "{ ";
bool first = true;
for( bool b : v ) {
if( first )
first = false;
else
rss << ", ";
rss << ::Catch::Detail::stringify( b );
}
rss << " }";
return rss.str();
}
template<typename R>
struct StringMaker<R, typename std::enable_if<is_range<R>::value && !::Catch::Detail::IsStreamInsertable<R>::value>::type> {
static std::string convert( R const& range ) {
return rangeToString( range );
}
};
template <typename T, int SZ>
struct StringMaker<T[SZ]> {
static std::string convert(T const(&arr)[SZ]) {
return rangeToString(arr);
}
};
} // namespace Catch
// Separate std::chrono::duration specialization
#if defined(CATCH_CONFIG_ENABLE_CHRONO_STRINGMAKER)
#include <ctime>
#include <ratio>
#include <chrono>
namespace Catch {
template <class Ratio>
struct ratio_string {
static std::string symbol();
};
template <class Ratio>
std::string ratio_string<Ratio>::symbol() {
Catch::ReusableStringStream rss;
rss << '[' << Ratio::num << '/'
<< Ratio::den << ']';
return rss.str();
}
template <>
struct ratio_string<std::atto> {
static std::string symbol();
};
template <>
struct ratio_string<std::femto> {
static std::string symbol();
};
template <>
struct ratio_string<std::pico> {
static std::string symbol();
};
template <>
struct ratio_string<std::nano> {
static std::string symbol();
};
template <>
struct ratio_string<std::micro> {
static std::string symbol();
};
template <>
struct ratio_string<std::milli> {
static std::string symbol();
};
////////////
// std::chrono::duration specializations
template<typename Value, typename Ratio>
struct StringMaker<std::chrono::duration<Value, Ratio>> {
static std::string convert(std::chrono::duration<Value, Ratio> const& duration) {
ReusableStringStream rss;
rss << duration.count() << ' ' << ratio_string<Ratio>::symbol() << 's';
return rss.str();
}
};
template<typename Value>
struct StringMaker<std::chrono::duration<Value, std::ratio<1>>> {
static std::string convert(std::chrono::duration<Value, std::ratio<1>> const& duration) {
ReusableStringStream rss;
rss << duration.count() << " s";
return rss.str();
}
};
template<typename Value>
struct StringMaker<std::chrono::duration<Value, std::ratio<60>>> {
static std::string convert(std::chrono::duration<Value, std::ratio<60>> const& duration) {
ReusableStringStream rss;
rss << duration.count() << " m";
return rss.str();
}
};
template<typename Value>
struct StringMaker<std::chrono::duration<Value, std::ratio<3600>>> {
static std::string convert(std::chrono::duration<Value, std::ratio<3600>> const& duration) {
ReusableStringStream rss;
rss << duration.count() << " h";
return rss.str();
}
};
////////////
// std::chrono::time_point specialization
// Generic time_point cannot be specialized, only std::chrono::time_point<system_clock>
template<typename Clock, typename Duration>
struct StringMaker<std::chrono::time_point<Clock, Duration>> {
static std::string convert(std::chrono::time_point<Clock, Duration> const& time_point) {
return ::Catch::Detail::stringify(time_point.time_since_epoch()) + " since epoch";
}
};
// std::chrono::time_point<system_clock> specialization
template<typename Duration>
struct StringMaker<std::chrono::time_point<std::chrono::system_clock, Duration>> {
static std::string convert(std::chrono::time_point<std::chrono::system_clock, Duration> const& time_point) {
auto converted = std::chrono::system_clock::to_time_t(time_point);
#ifdef _MSC_VER
std::tm timeInfo = {};
gmtime_s(&timeInfo, &converted);
#else
std::tm* timeInfo = std::gmtime(&converted);
#endif
auto const timeStampSize = sizeof("2017-01-16T17:06:45Z");
char timeStamp[timeStampSize];
const char * const fmt = "%Y-%m-%dT%H:%M:%SZ";
#ifdef _MSC_VER
std::strftime(timeStamp, timeStampSize, fmt, &timeInfo);
#else
std::strftime(timeStamp, timeStampSize, fmt, timeInfo);
#endif
return std::string(timeStamp);
}
};
}
#endif // CATCH_CONFIG_ENABLE_CHRONO_STRINGMAKER
#ifdef _MSC_VER
#pragma warning(pop)
#endif
// end catch_tostring.h
#include <iosfwd>
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable:4389) // '==' : signed/unsigned mismatch
#pragma warning(disable:4018) // more "signed/unsigned mismatch"
#pragma warning(disable:4312) // Converting int to T* using reinterpret_cast (issue on x64 platform)
#pragma warning(disable:4180) // qualifier applied to function type has no meaning
#pragma warning(disable:4800) // Forcing result to true or false
#endif
namespace Catch {
struct ITransientExpression {
auto isBinaryExpression() const -> bool { return m_isBinaryExpression; }
auto getResult() const -> bool { return m_result; }
virtual void streamReconstructedExpression( std::ostream &os ) const = 0;
ITransientExpression( bool isBinaryExpression, bool result )
: m_isBinaryExpression( isBinaryExpression ),
m_result( result )
{}
// We don't actually need a virtual destructor, but many static analysers
// complain if it's not here :-(
virtual ~ITransientExpression();
bool m_isBinaryExpression;
bool m_result;
};
void formatReconstructedExpression( std::ostream &os, std::string const& lhs, StringRef op, std::string const& rhs );
template<typename LhsT, typename RhsT>
class BinaryExpr : public ITransientExpression {
LhsT m_lhs;
StringRef m_op;
RhsT m_rhs;
void streamReconstructedExpression( std::ostream &os ) const override {
formatReconstructedExpression
( os, Catch::Detail::stringify( m_lhs ), m_op, Catch::Detail::stringify( m_rhs ) );
}
public:
BinaryExpr( bool comparisonResult, LhsT lhs, StringRef op, RhsT rhs )
: ITransientExpression{ true, comparisonResult },
m_lhs( lhs ),
m_op( op ),
m_rhs( rhs )
{}
template<typename T>
auto operator && ( T ) const -> BinaryExpr<LhsT, RhsT const&> const {
static_assert(always_false<T>::value,
"chained comparisons are not supported inside assertions, "
"wrap the expression inside parentheses, or decompose it");
}
template<typename T>
auto operator || ( T ) const -> BinaryExpr<LhsT, RhsT const&> const {
static_assert(always_false<T>::value,
"chained comparisons are not supported inside assertions, "
"wrap the expression inside parentheses, or decompose it");
}
template<typename T>
auto operator == ( T ) const -> BinaryExpr<LhsT, RhsT const&> const {
static_assert(always_false<T>::value,
"chained comparisons are not supported inside assertions, "
"wrap the expression inside parentheses, or decompose it");
}
template<typename T>
auto operator != ( T ) const -> BinaryExpr<LhsT, RhsT const&> const {
static_assert(always_false<T>::value,
"chained comparisons are not supported inside assertions, "
"wrap the expression inside parentheses, or decompose it");
}
template<typename T>
auto operator > ( T ) const -> BinaryExpr<LhsT, RhsT const&> const {
static_assert(always_false<T>::value,
"chained comparisons are not supported inside assertions, "
"wrap the expression inside parentheses, or decompose it");
}
template<typename T>
auto operator < ( T ) const -> BinaryExpr<LhsT, RhsT const&> const {
static_assert(always_false<T>::value,
"chained comparisons are not supported inside assertions, "
"wrap the expression inside parentheses, or decompose it");
}
template<typename T>
auto operator >= ( T ) const -> BinaryExpr<LhsT, RhsT const&> const {
static_assert(always_false<T>::value,
"chained comparisons are not supported inside assertions, "
"wrap the expression inside parentheses, or decompose it");
}
template<typename T>
auto operator <= ( T ) const -> BinaryExpr<LhsT, RhsT const&> const {
static_assert(always_false<T>::value,
"chained comparisons are not supported inside assertions, "
"wrap the expression inside parentheses, or decompose it");
}
};
template<typename LhsT>
class UnaryExpr : public ITransientExpression {
LhsT m_lhs;
void streamReconstructedExpression( std::ostream &os ) const override {
os << Catch::Detail::stringify( m_lhs );
}
public:
explicit UnaryExpr( LhsT lhs )
: ITransientExpression{ false, static_cast<bool>(lhs) },
m_lhs( lhs )
{}
};
// Specialised comparison functions to handle equality comparisons between ints and pointers (NULL deduces as an int)
template<typename LhsT, typename RhsT>
auto compareEqual( LhsT const& lhs, RhsT const& rhs ) -> bool { return static_cast<bool>(lhs == rhs); }
template<typename T>
auto compareEqual( T* const& lhs, int rhs ) -> bool { return lhs == reinterpret_cast<void const*>( rhs ); }
template<typename T>
auto compareEqual( T* const& lhs, long rhs ) -> bool { return lhs == reinterpret_cast<void const*>( rhs ); }
template<typename T>
auto compareEqual( int lhs, T* const& rhs ) -> bool { return reinterpret_cast<void const*>( lhs ) == rhs; }
template<typename T>
auto compareEqual( long lhs, T* const& rhs ) -> bool { return reinterpret_cast<void const*>( lhs ) == rhs; }
template<typename LhsT, typename RhsT>
auto compareNotEqual( LhsT const& lhs, RhsT&& rhs ) -> bool { return static_cast<bool>(lhs != rhs); }
template<typename T>
auto compareNotEqual( T* const& lhs, int rhs ) -> bool { return lhs != reinterpret_cast<void const*>( rhs ); }
template<typename T>
auto compareNotEqual( T* const& lhs, long rhs ) -> bool { return lhs != reinterpret_cast<void const*>( rhs ); }
template<typename T>
auto compareNotEqual( int lhs, T* const& rhs ) -> bool { return reinterpret_cast<void const*>( lhs ) != rhs; }
template<typename T>
auto compareNotEqual( long lhs, T* const& rhs ) -> bool { return reinterpret_cast<void const*>( lhs ) != rhs; }
template<typename LhsT>
class ExprLhs {
LhsT m_lhs;
public:
explicit ExprLhs( LhsT lhs ) : m_lhs( lhs ) {}
template<typename RhsT>
auto operator == ( RhsT const& rhs ) -> BinaryExpr<LhsT, RhsT const&> const {
return { compareEqual( m_lhs, rhs ), m_lhs, "==", rhs };
}
auto operator == ( bool rhs ) -> BinaryExpr<LhsT, bool> const {
return { m_lhs == rhs, m_lhs, "==", rhs };
}
template<typename RhsT>
auto operator != ( RhsT const& rhs ) -> BinaryExpr<LhsT, RhsT const&> const {
return { compareNotEqual( m_lhs, rhs ), m_lhs, "!=", rhs };
}
auto operator != ( bool rhs ) -> BinaryExpr<LhsT, bool> const {
return { m_lhs != rhs, m_lhs, "!=", rhs };
}
template<typename RhsT>
auto operator > ( RhsT const& rhs ) -> BinaryExpr<LhsT, RhsT const&> const {
return { static_cast<bool>(m_lhs > rhs), m_lhs, ">", rhs };
}
template<typename RhsT>
auto operator < ( RhsT const& rhs ) -> BinaryExpr<LhsT, RhsT const&> const {
return { static_cast<bool>(m_lhs < rhs), m_lhs, "<", rhs };
}
template<typename RhsT>
auto operator >= ( RhsT const& rhs ) -> BinaryExpr<LhsT, RhsT const&> const {
return { static_cast<bool>(m_lhs >= rhs), m_lhs, ">=", rhs };
}
template<typename RhsT>
auto operator <= ( RhsT const& rhs ) -> BinaryExpr<LhsT, RhsT const&> const {
return { static_cast<bool>(m_lhs <= rhs), m_lhs, "<=", rhs };
}
template<typename RhsT>
auto operator && ( RhsT const& ) -> BinaryExpr<LhsT, RhsT const&> const {
static_assert(always_false<RhsT>::value,
"operator&& is not supported inside assertions, "
"wrap the expression inside parentheses, or decompose it");
}
template<typename RhsT>
auto operator || ( RhsT const& ) -> BinaryExpr<LhsT, RhsT const&> const {
static_assert(always_false<RhsT>::value,
"operator|| is not supported inside assertions, "
"wrap the expression inside parentheses, or decompose it");
}
auto makeUnaryExpr() const -> UnaryExpr<LhsT> {
return UnaryExpr<LhsT>{ m_lhs };
}
};
void handleExpression( ITransientExpression const& expr );
template<typename T>
void handleExpression( ExprLhs<T> const& expr ) {
handleExpression( expr.makeUnaryExpr() );
}
struct Decomposer {
template<typename T>
auto operator <= ( T const& lhs ) -> ExprLhs<T const&> {
return ExprLhs<T const&>{ lhs };
}
auto operator <=( bool value ) -> ExprLhs<bool> {
return ExprLhs<bool>{ value };
}
};
} // end namespace Catch
#ifdef _MSC_VER
#pragma warning(pop)
#endif
// end catch_decomposer.h
// start catch_interfaces_capture.h
#include <string>
namespace Catch {
class AssertionResult;
struct AssertionInfo;
struct SectionInfo;
struct SectionEndInfo;
struct MessageInfo;
struct Counts;
struct BenchmarkInfo;
struct BenchmarkStats;
struct AssertionReaction;
struct SourceLineInfo;
struct ITransientExpression;
struct IGeneratorTracker;
struct IResultCapture {
virtual ~IResultCapture();
virtual bool sectionStarted( SectionInfo const& sectionInfo,
Counts& assertions ) = 0;
virtual void sectionEnded( SectionEndInfo const& endInfo ) = 0;
virtual void sectionEndedEarly( SectionEndInfo const& endInfo ) = 0;
virtual auto acquireGeneratorTracker( SourceLineInfo const& lineInfo ) -> IGeneratorTracker& = 0;
virtual void benchmarkStarting( BenchmarkInfo const& info ) = 0;
virtual void benchmarkEnded( BenchmarkStats const& stats ) = 0;
virtual void pushScopedMessage( MessageInfo const& message ) = 0;
virtual void popScopedMessage( MessageInfo const& message ) = 0;
virtual void handleFatalErrorCondition( StringRef message ) = 0;
virtual void handleExpr
( AssertionInfo const& info,
ITransientExpression const& expr,
AssertionReaction& reaction ) = 0;
virtual void handleMessage
( AssertionInfo const& info,
ResultWas::OfType resultType,
StringRef const& message,
AssertionReaction& reaction ) = 0;
virtual void handleUnexpectedExceptionNotThrown
( AssertionInfo const& info,
AssertionReaction& reaction ) = 0;
virtual void handleUnexpectedInflightException
( AssertionInfo const& info,
std::string const& message,
AssertionReaction& reaction ) = 0;
virtual void handleIncomplete
( AssertionInfo const& info ) = 0;
virtual void handleNonExpr
( AssertionInfo const &info,
ResultWas::OfType resultType,
AssertionReaction &reaction ) = 0;
virtual bool lastAssertionPassed() = 0;
virtual void assertionPassed() = 0;
// Deprecated, do not use:
virtual std::string getCurrentTestName() const = 0;
virtual const AssertionResult* getLastResult() const = 0;
virtual void exceptionEarlyReported() = 0;
};
IResultCapture& getResultCapture();
}
// end catch_interfaces_capture.h
namespace Catch {
struct TestFailureException{};
struct AssertionResultData;
struct IResultCapture;
class RunContext;
class LazyExpression {
friend class AssertionHandler;
friend struct AssertionStats;
friend class RunContext;
ITransientExpression const* m_transientExpression = nullptr;
bool m_isNegated;
public:
LazyExpression( bool isNegated );
LazyExpression( LazyExpression const& other );
LazyExpression& operator = ( LazyExpression const& ) = delete;
explicit operator bool() const;
friend auto operator << ( std::ostream& os, LazyExpression const& lazyExpr ) -> std::ostream&;
};
struct AssertionReaction {
bool shouldDebugBreak = false;
bool shouldThrow = false;
};
class AssertionHandler {
AssertionInfo m_assertionInfo;
AssertionReaction m_reaction;
bool m_completed = false;
IResultCapture& m_resultCapture;
public:
AssertionHandler
( StringRef const& macroName,
SourceLineInfo const& lineInfo,
StringRef capturedExpression,
ResultDisposition::Flags resultDisposition );
~AssertionHandler() {
if ( !m_completed ) {
m_resultCapture.handleIncomplete( m_assertionInfo );
}
}
template<typename T>
void handleExpr( ExprLhs<T> const& expr ) {
handleExpr( expr.makeUnaryExpr() );
}
void handleExpr( ITransientExpression const& expr );
void handleMessage(ResultWas::OfType resultType, StringRef const& message);
void handleExceptionThrownAsExpected();
void handleUnexpectedExceptionNotThrown();
void handleExceptionNotThrownAsExpected();
void handleThrowingCallSkipped();
void handleUnexpectedInflightException();
void complete();
void setCompleted();
// query
auto allowThrows() const -> bool;
};
void handleExceptionMatchExpr( AssertionHandler& handler, std::string const& str, StringRef const& matcherString );
} // namespace Catch
// end catch_assertionhandler.h
// start catch_message.h
#include <string>
#include <vector>
namespace Catch {
struct MessageInfo {
MessageInfo( StringRef const& _macroName,
SourceLineInfo const& _lineInfo,
ResultWas::OfType _type );
StringRef macroName;
std::string message;
SourceLineInfo lineInfo;
ResultWas::OfType type;
unsigned int sequence;
bool operator == ( MessageInfo const& other ) const;
bool operator < ( MessageInfo const& other ) const;
private:
static unsigned int globalCount;
};
struct MessageStream {
template<typename T>
MessageStream& operator << ( T const& value ) {
m_stream << value;
return *this;
}
ReusableStringStream m_stream;
};
struct MessageBuilder : MessageStream {
MessageBuilder( StringRef const& macroName,
SourceLineInfo const& lineInfo,
ResultWas::OfType type );
template<typename T>
MessageBuilder& operator << ( T const& value ) {
m_stream << value;
return *this;
}
MessageInfo m_info;
};
class ScopedMessage {
public:
explicit ScopedMessage( MessageBuilder const& builder );
~ScopedMessage();
MessageInfo m_info;
};
class Capturer {
std::vector<MessageInfo> m_messages;
IResultCapture& m_resultCapture = getResultCapture();
size_t m_captured = 0;
public:
Capturer( StringRef macroName, SourceLineInfo const& lineInfo, ResultWas::OfType resultType, StringRef names );
~Capturer();
void captureValue( size_t index, std::string const& value );
template<typename T>
void captureValues( size_t index, T const& value ) {
captureValue( index, Catch::Detail::stringify( value ) );
}
template<typename T, typename... Ts>
void captureValues( size_t index, T const& value, Ts const&... values ) {
captureValue( index, Catch::Detail::stringify(value) );
captureValues( index+1, values... );
}
};
} // end namespace Catch
// end catch_message.h
#if !defined(CATCH_CONFIG_DISABLE)
#if !defined(CATCH_CONFIG_DISABLE_STRINGIFICATION)
#define CATCH_INTERNAL_STRINGIFY(...) #__VA_ARGS__
#else
#define CATCH_INTERNAL_STRINGIFY(...) "Disabled by CATCH_CONFIG_DISABLE_STRINGIFICATION"
#endif
#if defined(CATCH_CONFIG_FAST_COMPILE) || defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
///////////////////////////////////////////////////////////////////////////////
// Another way to speed-up compilation is to omit local try-catch for REQUIRE*
// macros.
#define INTERNAL_CATCH_TRY
#define INTERNAL_CATCH_CATCH( capturer )
#else // CATCH_CONFIG_FAST_COMPILE
#define INTERNAL_CATCH_TRY try
#define INTERNAL_CATCH_CATCH( handler ) catch(...) { handler.handleUnexpectedInflightException(); }
#endif
#define INTERNAL_CATCH_REACT( handler ) handler.complete();
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_TEST( macroName, resultDisposition, ... ) \
do { \
Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATCH_INTERNAL_STRINGIFY(__VA_ARGS__), resultDisposition ); \
INTERNAL_CATCH_TRY { \
CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS \
catchAssertionHandler.handleExpr( Catch::Decomposer() <= __VA_ARGS__ ); \
CATCH_INTERNAL_UNSUPPRESS_PARENTHESES_WARNINGS \
} INTERNAL_CATCH_CATCH( catchAssertionHandler ) \
INTERNAL_CATCH_REACT( catchAssertionHandler ) \
} while( (void)0, false && static_cast<bool>( !!(__VA_ARGS__) ) ) // the expression here is never evaluated at runtime but it forces the compiler to give it a look
// The double negation silences MSVC's C4800 warning, the static_cast forces short-circuit evaluation if the type has overloaded &&.
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_IF( macroName, resultDisposition, ... ) \
INTERNAL_CATCH_TEST( macroName, resultDisposition, __VA_ARGS__ ); \
if( Catch::getResultCapture().lastAssertionPassed() )
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_ELSE( macroName, resultDisposition, ... ) \
INTERNAL_CATCH_TEST( macroName, resultDisposition, __VA_ARGS__ ); \
if( !Catch::getResultCapture().lastAssertionPassed() )
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_NO_THROW( macroName, resultDisposition, ... ) \
do { \
Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATCH_INTERNAL_STRINGIFY(__VA_ARGS__), resultDisposition ); \
try { \
static_cast<void>(__VA_ARGS__); \
catchAssertionHandler.handleExceptionNotThrownAsExpected(); \
} \
catch( ... ) { \
catchAssertionHandler.handleUnexpectedInflightException(); \
} \
INTERNAL_CATCH_REACT( catchAssertionHandler ) \
} while( false )
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_THROWS( macroName, resultDisposition, ... ) \
do { \
Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATCH_INTERNAL_STRINGIFY(__VA_ARGS__), resultDisposition); \
if( catchAssertionHandler.allowThrows() ) \
try { \
static_cast<void>(__VA_ARGS__); \
catchAssertionHandler.handleUnexpectedExceptionNotThrown(); \
} \
catch( ... ) { \
catchAssertionHandler.handleExceptionThrownAsExpected(); \
} \
else \
catchAssertionHandler.handleThrowingCallSkipped(); \
INTERNAL_CATCH_REACT( catchAssertionHandler ) \
} while( false )
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_THROWS_AS( macroName, exceptionType, resultDisposition, expr ) \
do { \
Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATCH_INTERNAL_STRINGIFY(expr) ", " CATCH_INTERNAL_STRINGIFY(exceptionType), resultDisposition ); \
if( catchAssertionHandler.allowThrows() ) \
try { \
static_cast<void>(expr); \
catchAssertionHandler.handleUnexpectedExceptionNotThrown(); \
} \
catch( exceptionType const& ) { \
catchAssertionHandler.handleExceptionThrownAsExpected(); \
} \
catch( ... ) { \
catchAssertionHandler.handleUnexpectedInflightException(); \
} \
else \
catchAssertionHandler.handleThrowingCallSkipped(); \
INTERNAL_CATCH_REACT( catchAssertionHandler ) \
} while( false )
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_MSG( macroName, messageType, resultDisposition, ... ) \
do { \
Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, Catch::StringRef(), resultDisposition ); \
catchAssertionHandler.handleMessage( messageType, ( Catch::MessageStream() << __VA_ARGS__ + ::Catch::StreamEndStop() ).m_stream.str() ); \
INTERNAL_CATCH_REACT( catchAssertionHandler ) \
} while( false )
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_CAPTURE( varName, macroName, ... ) \
auto varName = Catch::Capturer( macroName, CATCH_INTERNAL_LINEINFO, Catch::ResultWas::Info, #__VA_ARGS__ ); \
varName.captureValues( 0, __VA_ARGS__ )
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_INFO( macroName, log ) \
Catch::ScopedMessage INTERNAL_CATCH_UNIQUE_NAME( scopedMessage )( Catch::MessageBuilder( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, Catch::ResultWas::Info ) << log );
///////////////////////////////////////////////////////////////////////////////
// Although this is matcher-based, it can be used with just a string
#define INTERNAL_CATCH_THROWS_STR_MATCHES( macroName, resultDisposition, matcher, ... ) \
do { \
Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATCH_INTERNAL_STRINGIFY(__VA_ARGS__) ", " CATCH_INTERNAL_STRINGIFY(matcher), resultDisposition ); \
if( catchAssertionHandler.allowThrows() ) \
try { \
static_cast<void>(__VA_ARGS__); \
catchAssertionHandler.handleUnexpectedExceptionNotThrown(); \
} \
catch( ... ) { \
Catch::handleExceptionMatchExpr( catchAssertionHandler, matcher, #matcher##_catch_sr ); \
} \
else \
catchAssertionHandler.handleThrowingCallSkipped(); \
INTERNAL_CATCH_REACT( catchAssertionHandler ) \
} while( false )
#endif // CATCH_CONFIG_DISABLE
// end catch_capture.hpp
// start catch_section.h
// start catch_section_info.h
// start catch_totals.h
#include <cstddef>
namespace Catch {
struct Counts {
Counts operator - ( Counts const& other ) const;
Counts& operator += ( Counts const& other );
std::size_t total() const;
bool allPassed() const;
bool allOk() const;
std::size_t passed = 0;
std::size_t failed = 0;
std::size_t failedButOk = 0;
};
struct Totals {
Totals operator - ( Totals const& other ) const;
Totals& operator += ( Totals const& other );
Totals delta( Totals const& prevTotals ) const;
int error = 0;
Counts assertions;
Counts testCases;
};
}
// end catch_totals.h
#include <string>
namespace Catch {
struct SectionInfo {
SectionInfo
( SourceLineInfo const& _lineInfo,
std::string const& _name );
// Deprecated
SectionInfo
( SourceLineInfo const& _lineInfo,
std::string const& _name,
std::string const& ) : SectionInfo( _lineInfo, _name ) {}
std::string name;
std::string description; // !Deprecated: this will always be empty
SourceLineInfo lineInfo;
};
struct SectionEndInfo {
SectionInfo sectionInfo;
Counts prevAssertions;
double durationInSeconds;
};
} // end namespace Catch
// end catch_section_info.h
// start catch_timer.h
#include <cstdint>
namespace Catch {
auto getCurrentNanosecondsSinceEpoch() -> uint64_t;
auto getEstimatedClockResolution() -> uint64_t;
class Timer {
uint64_t m_nanoseconds = 0;
public:
void start();
auto getElapsedNanoseconds() const -> uint64_t;
auto getElapsedMicroseconds() const -> uint64_t;
auto getElapsedMilliseconds() const -> unsigned int;
auto getElapsedSeconds() const -> double;
};
} // namespace Catch
// end catch_timer.h
#include <string>
namespace Catch {
class Section : NonCopyable {
public:
Section( SectionInfo const& info );
~Section();
// This indicates whether the section should be executed or not
explicit operator bool() const;
private:
SectionInfo m_info;
std::string m_name;
Counts m_assertions;
bool m_sectionIncluded;
Timer m_timer;
};
} // end namespace Catch
#define INTERNAL_CATCH_SECTION( ... ) \
CATCH_INTERNAL_SUPPRESS_UNUSED_WARNINGS \
if( Catch::Section const& INTERNAL_CATCH_UNIQUE_NAME( catch_internal_Section ) = Catch::SectionInfo( CATCH_INTERNAL_LINEINFO, __VA_ARGS__ ) ) \
CATCH_INTERNAL_UNSUPPRESS_UNUSED_WARNINGS
#define INTERNAL_CATCH_DYNAMIC_SECTION( ... ) \
CATCH_INTERNAL_SUPPRESS_UNUSED_WARNINGS \
if( Catch::Section const& INTERNAL_CATCH_UNIQUE_NAME( catch_internal_Section ) = Catch::SectionInfo( CATCH_INTERNAL_LINEINFO, (Catch::ReusableStringStream() << __VA_ARGS__).str() ) ) \
CATCH_INTERNAL_UNSUPPRESS_UNUSED_WARNINGS
// end catch_section.h
// start catch_benchmark.h
#include <cstdint>
#include <string>
namespace Catch {
class BenchmarkLooper {
std::string m_name;
std::size_t m_count = 0;
std::size_t m_iterationsToRun = 1;
uint64_t m_resolution;
Timer m_timer;
static auto getResolution() -> uint64_t;
public:
// Keep most of this inline as it's on the code path that is being timed
BenchmarkLooper( StringRef name )
: m_name( name ),
m_resolution( getResolution() )
{
reportStart();
m_timer.start();
}
explicit operator bool() {
if( m_count < m_iterationsToRun )
return true;
return needsMoreIterations();
}
void increment() {
++m_count;
}
void reportStart();
auto needsMoreIterations() -> bool;
};
} // end namespace Catch
#define BENCHMARK( name ) \
for( Catch::BenchmarkLooper looper( name ); looper; looper.increment() )
// end catch_benchmark.h
// start catch_interfaces_exception.h
// start catch_interfaces_registry_hub.h
#include <string>
#include <memory>
namespace Catch {
class TestCase;
struct ITestCaseRegistry;
struct IExceptionTranslatorRegistry;
struct IExceptionTranslator;
struct IReporterRegistry;
struct IReporterFactory;
struct ITagAliasRegistry;
class StartupExceptionRegistry;
using IReporterFactoryPtr = std::shared_ptr<IReporterFactory>;
struct IRegistryHub {
virtual ~IRegistryHub();
virtual IReporterRegistry const& getReporterRegistry() const = 0;
virtual ITestCaseRegistry const& getTestCaseRegistry() const = 0;
virtual ITagAliasRegistry const& getTagAliasRegistry() const = 0;
virtual IExceptionTranslatorRegistry const& getExceptionTranslatorRegistry() const = 0;
virtual StartupExceptionRegistry const& getStartupExceptionRegistry() const = 0;
};
struct IMutableRegistryHub {
virtual ~IMutableRegistryHub();
virtual void registerReporter( std::string const& name, IReporterFactoryPtr const& factory ) = 0;
virtual void registerListener( IReporterFactoryPtr const& factory ) = 0;
virtual void registerTest( TestCase const& testInfo ) = 0;
virtual void registerTranslator( const IExceptionTranslator* translator ) = 0;
virtual void registerTagAlias( std::string const& alias, std::string const& tag, SourceLineInfo const& lineInfo ) = 0;
virtual void registerStartupException() noexcept = 0;
};
IRegistryHub const& getRegistryHub();
IMutableRegistryHub& getMutableRegistryHub();
void cleanUp();
std::string translateActiveException();
}
// end catch_interfaces_registry_hub.h
#if defined(CATCH_CONFIG_DISABLE)
#define INTERNAL_CATCH_TRANSLATE_EXCEPTION_NO_REG( translatorName, signature) \
static std::string translatorName( signature )
#endif
#include <exception>
#include <string>
#include <vector>
namespace Catch {
using exceptionTranslateFunction = std::string(*)();
struct IExceptionTranslator;
using ExceptionTranslators = std::vector<std::unique_ptr<IExceptionTranslator const>>;
struct IExceptionTranslator {
virtual ~IExceptionTranslator();
virtual std::string translate( ExceptionTranslators::const_iterator it, ExceptionTranslators::const_iterator itEnd ) const = 0;
};
struct IExceptionTranslatorRegistry {
virtual ~IExceptionTranslatorRegistry();
virtual std::string translateActiveException() const = 0;
};
class ExceptionTranslatorRegistrar {
template<typename T>
class ExceptionTranslator : public IExceptionTranslator {
public:
ExceptionTranslator( std::string(*translateFunction)( T& ) )
: m_translateFunction( translateFunction )
{}
std::string translate( ExceptionTranslators::const_iterator it, ExceptionTranslators::const_iterator itEnd ) const override {
try {
if( it == itEnd )
std::rethrow_exception(std::current_exception());
else
return (*it)->translate( it+1, itEnd );
}
catch( T& ex ) {
return m_translateFunction( ex );
}
}
protected:
std::string(*m_translateFunction)( T& );
};
public:
template<typename T>
ExceptionTranslatorRegistrar( std::string(*translateFunction)( T& ) ) {
getMutableRegistryHub().registerTranslator
( new ExceptionTranslator<T>( translateFunction ) );
}
};
}
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_TRANSLATE_EXCEPTION2( translatorName, signature ) \
static std::string translatorName( signature ); \
CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
namespace{ Catch::ExceptionTranslatorRegistrar INTERNAL_CATCH_UNIQUE_NAME( catch_internal_ExceptionRegistrar )( &translatorName ); } \
CATCH_INTERNAL_UNSUPPRESS_GLOBALS_WARNINGS \
static std::string translatorName( signature )
#define INTERNAL_CATCH_TRANSLATE_EXCEPTION( signature ) INTERNAL_CATCH_TRANSLATE_EXCEPTION2( INTERNAL_CATCH_UNIQUE_NAME( catch_internal_ExceptionTranslator ), signature )
// end catch_interfaces_exception.h
// start catch_approx.h
#include <type_traits>
namespace Catch {
namespace Detail {
class Approx {
private:
bool equalityComparisonImpl(double other) const;
// Validates the new margin (margin >= 0)
// out-of-line to avoid including stdexcept in the header
void setMargin(double margin);
// Validates the new epsilon (0 < epsilon < 1)
// out-of-line to avoid including stdexcept in the header
void setEpsilon(double epsilon);
public:
explicit Approx ( double value );
static Approx custom();
Approx operator-() const;
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
Approx operator()( T const& value ) {
Approx approx( static_cast<double>(value) );
approx.m_epsilon = m_epsilon;
approx.m_margin = m_margin;
approx.m_scale = m_scale;
return approx;
}
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
explicit Approx( T const& value ): Approx(static_cast<double>(value))
{}
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
friend bool operator == ( const T& lhs, Approx const& rhs ) {
auto lhs_v = static_cast<double>(lhs);
return rhs.equalityComparisonImpl(lhs_v);
}
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
friend bool operator == ( Approx const& lhs, const T& rhs ) {
return operator==( rhs, lhs );
}
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
friend bool operator != ( T const& lhs, Approx const& rhs ) {
return !operator==( lhs, rhs );
}
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
friend bool operator != ( Approx const& lhs, T const& rhs ) {
return !operator==( rhs, lhs );
}
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
friend bool operator <= ( T const& lhs, Approx const& rhs ) {
return static_cast<double>(lhs) < rhs.m_value || lhs == rhs;
}
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
friend bool operator <= ( Approx const& lhs, T const& rhs ) {
return lhs.m_value < static_cast<double>(rhs) || lhs == rhs;
}
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
friend bool operator >= ( T const& lhs, Approx const& rhs ) {
return static_cast<double>(lhs) > rhs.m_value || lhs == rhs;
}
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
friend bool operator >= ( Approx const& lhs, T const& rhs ) {
return lhs.m_value > static_cast<double>(rhs) || lhs == rhs;
}
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
Approx& epsilon( T const& newEpsilon ) {
double epsilonAsDouble = static_cast<double>(newEpsilon);
setEpsilon(epsilonAsDouble);
return *this;
}
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
Approx& margin( T const& newMargin ) {
double marginAsDouble = static_cast<double>(newMargin);
setMargin(marginAsDouble);
return *this;
}
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
Approx& scale( T const& newScale ) {
m_scale = static_cast<double>(newScale);
return *this;
}
std::string toString() const;
private:
double m_epsilon;
double m_margin;
double m_scale;
double m_value;
};
} // end namespace Detail
namespace literals {
Detail::Approx operator "" _a(long double val);
Detail::Approx operator "" _a(unsigned long long val);
} // end namespace literals
template<>
struct StringMaker<Catch::Detail::Approx> {
static std::string convert(Catch::Detail::Approx const& value);
};
} // end namespace Catch
// end catch_approx.h
// start catch_string_manip.h
#include <string>
#include <iosfwd>
namespace Catch {
bool startsWith( std::string const& s, std::string const& prefix );
bool startsWith( std::string const& s, char prefix );
bool endsWith( std::string const& s, std::string const& suffix );
bool endsWith( std::string const& s, char suffix );
bool contains( std::string const& s, std::string const& infix );
void toLowerInPlace( std::string& s );
std::string toLower( std::string const& s );
std::string trim( std::string const& str );
bool replaceInPlace( std::string& str, std::string const& replaceThis, std::string const& withThis );
struct pluralise {
pluralise( std::size_t count, std::string const& label );
friend std::ostream& operator << ( std::ostream& os, pluralise const& pluraliser );
std::size_t m_count;
std::string m_label;
};
}
// end catch_string_manip.h
#ifndef CATCH_CONFIG_DISABLE_MATCHERS
// start catch_capture_matchers.h
// start catch_matchers.h
#include <string>
#include <vector>
namespace Catch {
namespace Matchers {
namespace Impl {
template<typename ArgT> struct MatchAllOf;
template<typename ArgT> struct MatchAnyOf;
template<typename ArgT> struct MatchNotOf;
class MatcherUntypedBase {
public:
MatcherUntypedBase() = default;
MatcherUntypedBase ( MatcherUntypedBase const& ) = default;
MatcherUntypedBase& operator = ( MatcherUntypedBase const& ) = delete;
std::string toString() const;
protected:
virtual ~MatcherUntypedBase();
virtual std::string describe() const = 0;
mutable std::string m_cachedToString;
};
#ifdef __clang__
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wnon-virtual-dtor"
#endif
template<typename ObjectT>
struct MatcherMethod {
virtual bool match( ObjectT const& arg ) const = 0;
};
#ifdef __clang__
# pragma clang diagnostic pop
#endif
template<typename T>
struct MatcherBase : MatcherUntypedBase, MatcherMethod<T> {
MatchAllOf<T> operator && ( MatcherBase const& other ) const;
MatchAnyOf<T> operator || ( MatcherBase const& other ) const;
MatchNotOf<T> operator ! () const;
};
template<typename ArgT>
struct MatchAllOf : MatcherBase<ArgT> {
bool match( ArgT const& arg ) const override {
for( auto matcher : m_matchers ) {
if (!matcher->match(arg))
return false;
}
return true;
}
std::string describe() const override {
std::string description;
description.reserve( 4 + m_matchers.size()*32 );
description += "( ";
bool first = true;
for( auto matcher : m_matchers ) {
if( first )
first = false;
else
description += " and ";
description += matcher->toString();
}
description += " )";
return description;
}
MatchAllOf<ArgT>& operator && ( MatcherBase<ArgT> const& other ) {
m_matchers.push_back( &other );
return *this;
}
std::vector<MatcherBase<ArgT> const*> m_matchers;
};
template<typename ArgT>
struct MatchAnyOf : MatcherBase<ArgT> {
bool match( ArgT const& arg ) const override {
for( auto matcher : m_matchers ) {
if (matcher->match(arg))
return true;
}
return false;
}
std::string describe() const override {
std::string description;
description.reserve( 4 + m_matchers.size()*32 );
description += "( ";
bool first = true;
for( auto matcher : m_matchers ) {
if( first )
first = false;
else
description += " or ";
description += matcher->toString();
}
description += " )";
return description;
}
MatchAnyOf<ArgT>& operator || ( MatcherBase<ArgT> const& other ) {
m_matchers.push_back( &other );
return *this;
}
std::vector<MatcherBase<ArgT> const*> m_matchers;
};
template<typename ArgT>
struct MatchNotOf : MatcherBase<ArgT> {
MatchNotOf( MatcherBase<ArgT> const& underlyingMatcher ) : m_underlyingMatcher( underlyingMatcher ) {}
bool match( ArgT const& arg ) const override {
return !m_underlyingMatcher.match( arg );
}
std::string describe() const override {
return "not " + m_underlyingMatcher.toString();
}
MatcherBase<ArgT> const& m_underlyingMatcher;
};
template<typename T>
MatchAllOf<T> MatcherBase<T>::operator && ( MatcherBase const& other ) const {
return MatchAllOf<T>() && *this && other;
}
template<typename T>
MatchAnyOf<T> MatcherBase<T>::operator || ( MatcherBase const& other ) const {
return MatchAnyOf<T>() || *this || other;
}
template<typename T>
MatchNotOf<T> MatcherBase<T>::operator ! () const {
return MatchNotOf<T>( *this );
}
} // namespace Impl
} // namespace Matchers
using namespace Matchers;
using Matchers::Impl::MatcherBase;
} // namespace Catch
// end catch_matchers.h
// start catch_matchers_floating.h
#include <type_traits>
#include <cmath>
namespace Catch {
namespace Matchers {
namespace Floating {
enum class FloatingPointKind : uint8_t;
struct WithinAbsMatcher : MatcherBase<double> {
WithinAbsMatcher(double target, double margin);
bool match(double const& matchee) const override;
std::string describe() const override;
private:
double m_target;
double m_margin;
};
struct WithinUlpsMatcher : MatcherBase<double> {
WithinUlpsMatcher(double target, int ulps, FloatingPointKind baseType);
bool match(double const& matchee) const override;
std::string describe() const override;
private:
double m_target;
int m_ulps;
FloatingPointKind m_type;
};
} // namespace Floating
// The following functions create the actual matcher objects.
// This allows the types to be inferred
Floating::WithinUlpsMatcher WithinULP(double target, int maxUlpDiff);
Floating::WithinUlpsMatcher WithinULP(float target, int maxUlpDiff);
Floating::WithinAbsMatcher WithinAbs(double target, double margin);
} // namespace Matchers
} // namespace Catch
// end catch_matchers_floating.h
// start catch_matchers_generic.hpp
#include <functional>
#include <string>
namespace Catch {
namespace Matchers {
namespace Generic {
namespace Detail {
std::string finalizeDescription(const std::string& desc);
}
template <typename T>
class PredicateMatcher : public MatcherBase<T> {
std::function<bool(T const&)> m_predicate;
std::string m_description;
public:
PredicateMatcher(std::function<bool(T const&)> const& elem, std::string const& descr)
:m_predicate(std::move(elem)),
m_description(Detail::finalizeDescription(descr))
{}
bool match( T const& item ) const override {
return m_predicate(item);
}
std::string describe() const override {
return m_description;
}
};
} // namespace Generic
// The following functions create the actual matcher objects.
// The user has to explicitly specify type to the function, because
// infering std::function<bool(T const&)> is hard (but possible) and
// requires a lot of TMP.
template<typename T>
Generic::PredicateMatcher<T> Predicate(std::function<bool(T const&)> const& predicate, std::string const& description = "") {
return Generic::PredicateMatcher<T>(predicate, description);
}
} // namespace Matchers
} // namespace Catch
// end catch_matchers_generic.hpp
// start catch_matchers_string.h
#include <string>
namespace Catch {
namespace Matchers {
namespace StdString {
struct CasedString
{
CasedString( std::string const& str, CaseSensitive::Choice caseSensitivity );
std::string adjustString( std::string const& str ) const;
std::string caseSensitivitySuffix() const;
CaseSensitive::Choice m_caseSensitivity;
std::string m_str;
};
struct StringMatcherBase : MatcherBase<std::string> {
StringMatcherBase( std::string const& operation, CasedString const& comparator );
std::string describe() const override;
CasedString m_comparator;
std::string m_operation;
};
struct EqualsMatcher : StringMatcherBase {
EqualsMatcher( CasedString const& comparator );
bool match( std::string const& source ) const override;
};
struct ContainsMatcher : StringMatcherBase {
ContainsMatcher( CasedString const& comparator );
bool match( std::string const& source ) const override;
};
struct StartsWithMatcher : StringMatcherBase {
StartsWithMatcher( CasedString const& comparator );
bool match( std::string const& source ) const override;
};
struct EndsWithMatcher : StringMatcherBase {
EndsWithMatcher( CasedString const& comparator );
bool match( std::string const& source ) const override;
};
struct RegexMatcher : MatcherBase<std::string> {
RegexMatcher( std::string regex, CaseSensitive::Choice caseSensitivity );
bool match( std::string const& matchee ) const override;
std::string describe() const override;
private:
std::string m_regex;
CaseSensitive::Choice m_caseSensitivity;
};
} // namespace StdString
// The following functions create the actual matcher objects.
// This allows the types to be inferred
StdString::EqualsMatcher Equals( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes );
StdString::ContainsMatcher Contains( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes );
StdString::EndsWithMatcher EndsWith( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes );
StdString::StartsWithMatcher StartsWith( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes );
StdString::RegexMatcher Matches( std::string const& regex, CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes );
} // namespace Matchers
} // namespace Catch
// end catch_matchers_string.h
// start catch_matchers_vector.h
#include <algorithm>
namespace Catch {
namespace Matchers {
namespace Vector {
namespace Detail {
template <typename InputIterator, typename T>
size_t count(InputIterator first, InputIterator last, T const& item) {
size_t cnt = 0;
for (; first != last; ++first) {
if (*first == item) {
++cnt;
}
}
return cnt;
}
template <typename InputIterator, typename T>
bool contains(InputIterator first, InputIterator last, T const& item) {
for (; first != last; ++first) {
if (*first == item) {
return true;
}
}
return false;
}
}
template<typename T>
struct ContainsElementMatcher : MatcherBase<std::vector<T>> {
ContainsElementMatcher(T const &comparator) : m_comparator( comparator) {}
bool match(std::vector<T> const &v) const override {
for (auto const& el : v) {
if (el == m_comparator) {
return true;
}
}
return false;
}
std::string describe() const override {
return "Contains: " + ::Catch::Detail::stringify( m_comparator );
}
T const& m_comparator;
};
template<typename T>
struct ContainsMatcher : MatcherBase<std::vector<T>> {
ContainsMatcher(std::vector<T> const &comparator) : m_comparator( comparator ) {}
bool match(std::vector<T> const &v) const override {
// !TBD: see note in EqualsMatcher
if (m_comparator.size() > v.size())
return false;
for (auto const& comparator : m_comparator) {
auto present = false;
for (const auto& el : v) {
if (el == comparator) {
present = true;
break;
}
}
if (!present) {
return false;
}
}
return true;
}
std::string describe() const override {
return "Contains: " + ::Catch::Detail::stringify( m_comparator );
}
std::vector<T> const& m_comparator;
};
template<typename T>
struct EqualsMatcher : MatcherBase<std::vector<T>> {
EqualsMatcher(std::vector<T> const &comparator) : m_comparator( comparator ) {}
bool match(std::vector<T> const &v) const override {
// !TBD: This currently works if all elements can be compared using !=
// - a more general approach would be via a cmp template that defaults
// to using !=. but could be specialised for, e.g. std::vector<T> etc
// - then just call that directly
if (m_comparator.size() != v.size())
return false;
for (std::size_t i = 0; i < v.size(); ++i)
if (m_comparator[i] != v[i])
return false;
return true;
}
std::string describe() const override {
return "Equals: " + ::Catch::Detail::stringify( m_comparator );
}
std::vector<T> const& m_comparator;
};
template<typename T>
struct UnorderedEqualsMatcher : MatcherBase<std::vector<T>> {
UnorderedEqualsMatcher(std::vector<T> const& target) : m_target(target) {}
bool match(std::vector<T> const& vec) const override {
// Note: This is a reimplementation of std::is_permutation,
// because I don't want to include <algorithm> inside the common path
if (m_target.size() != vec.size()) {
return false;
}
auto lfirst = m_target.begin(), llast = m_target.end();
auto rfirst = vec.begin(), rlast = vec.end();
// Cut common prefix to optimize checking of permuted parts
while (lfirst != llast && *lfirst == *rfirst) {
++lfirst; ++rfirst;
}
if (lfirst == llast) {
return true;
}
for (auto mid = lfirst; mid != llast; ++mid) {
// Skip already counted items
if (Detail::contains(lfirst, mid, *mid)) {
continue;
}
size_t num_vec = Detail::count(rfirst, rlast, *mid);
if (num_vec == 0 || Detail::count(lfirst, llast, *mid) != num_vec) {
return false;
}
}
return true;
}
std::string describe() const override {
return "UnorderedEquals: " + ::Catch::Detail::stringify(m_target);
}
private:
std::vector<T> const& m_target;
};
} // namespace Vector
// The following functions create the actual matcher objects.
// This allows the types to be inferred
template<typename T>
Vector::ContainsMatcher<T> Contains( std::vector<T> const& comparator ) {
return Vector::ContainsMatcher<T>( comparator );
}
template<typename T>
Vector::ContainsElementMatcher<T> VectorContains( T const& comparator ) {
return Vector::ContainsElementMatcher<T>( comparator );
}
template<typename T>
Vector::EqualsMatcher<T> Equals( std::vector<T> const& comparator ) {
return Vector::EqualsMatcher<T>( comparator );
}
template<typename T>
Vector::UnorderedEqualsMatcher<T> UnorderedEquals(std::vector<T> const& target) {
return Vector::UnorderedEqualsMatcher<T>(target);
}
} // namespace Matchers
} // namespace Catch
// end catch_matchers_vector.h
namespace Catch {
template<typename ArgT, typename MatcherT>
class MatchExpr : public ITransientExpression {
ArgT const& m_arg;
MatcherT m_matcher;
StringRef m_matcherString;
public:
MatchExpr( ArgT const& arg, MatcherT const& matcher, StringRef const& matcherString )
: ITransientExpression{ true, matcher.match( arg ) },
m_arg( arg ),
m_matcher( matcher ),
m_matcherString( matcherString )
{}
void streamReconstructedExpression( std::ostream &os ) const override {
auto matcherAsString = m_matcher.toString();
os << Catch::Detail::stringify( m_arg ) << ' ';
if( matcherAsString == Detail::unprintableString )
os << m_matcherString;
else
os << matcherAsString;
}
};
using StringMatcher = Matchers::Impl::MatcherBase<std::string>;
void handleExceptionMatchExpr( AssertionHandler& handler, StringMatcher const& matcher, StringRef const& matcherString );
template<typename ArgT, typename MatcherT>
auto makeMatchExpr( ArgT const& arg, MatcherT const& matcher, StringRef const& matcherString ) -> MatchExpr<ArgT, MatcherT> {
return MatchExpr<ArgT, MatcherT>( arg, matcher, matcherString );
}
} // namespace Catch
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CHECK_THAT( macroName, matcher, resultDisposition, arg ) \
do { \
Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATCH_INTERNAL_STRINGIFY(arg) ", " CATCH_INTERNAL_STRINGIFY(matcher), resultDisposition ); \
INTERNAL_CATCH_TRY { \
catchAssertionHandler.handleExpr( Catch::makeMatchExpr( arg, matcher, #matcher##_catch_sr ) ); \
} INTERNAL_CATCH_CATCH( catchAssertionHandler ) \
INTERNAL_CATCH_REACT( catchAssertionHandler ) \
} while( false )
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_THROWS_MATCHES( macroName, exceptionType, resultDisposition, matcher, ... ) \
do { \
Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATCH_INTERNAL_STRINGIFY(__VA_ARGS__) ", " CATCH_INTERNAL_STRINGIFY(exceptionType) ", " CATCH_INTERNAL_STRINGIFY(matcher), resultDisposition ); \
if( catchAssertionHandler.allowThrows() ) \
try { \
static_cast<void>(__VA_ARGS__ ); \
catchAssertionHandler.handleUnexpectedExceptionNotThrown(); \
} \
catch( exceptionType const& ex ) { \
catchAssertionHandler.handleExpr( Catch::makeMatchExpr( ex, matcher, #matcher##_catch_sr ) ); \
} \
catch( ... ) { \
catchAssertionHandler.handleUnexpectedInflightException(); \
} \
else \
catchAssertionHandler.handleThrowingCallSkipped(); \
INTERNAL_CATCH_REACT( catchAssertionHandler ) \
} while( false )
// end catch_capture_matchers.h
#endif
// start catch_generators.hpp
// start catch_interfaces_generatortracker.h
#include <memory>
namespace Catch {
namespace Generators {
class GeneratorUntypedBase {
public:
GeneratorUntypedBase() = default;
virtual ~GeneratorUntypedBase();
// Attempts to move the generator to the next element
//
// Returns true iff the move succeeded (and a valid element
// can be retrieved).
virtual bool next() = 0;
};
using GeneratorBasePtr = std::unique_ptr<GeneratorUntypedBase>;
} // namespace Generators
struct IGeneratorTracker {
virtual ~IGeneratorTracker();
virtual auto hasGenerator() const -> bool = 0;
virtual auto getGenerator() const -> Generators::GeneratorBasePtr const& = 0;
virtual void setGenerator( Generators::GeneratorBasePtr&& generator ) = 0;
};
} // namespace Catch
// end catch_interfaces_generatortracker.h
// start catch_enforce.h
#include <stdexcept>
namespace Catch {
#if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
template <typename Ex>
[[noreturn]]
void throw_exception(Ex const& e) {
throw e;
}
#else // ^^ Exceptions are enabled // Exceptions are disabled vv
[[noreturn]]
void throw_exception(std::exception const& e);
#endif
} // namespace Catch;
#define CATCH_PREPARE_EXCEPTION( type, msg ) \
type( ( Catch::ReusableStringStream() << msg ).str() )
#define CATCH_INTERNAL_ERROR( msg ) \
Catch::throw_exception(CATCH_PREPARE_EXCEPTION( std::logic_error, CATCH_INTERNAL_LINEINFO << ": Internal Catch error: " << msg))
#define CATCH_ERROR( msg ) \
Catch::throw_exception(CATCH_PREPARE_EXCEPTION( std::domain_error, msg ))
#define CATCH_RUNTIME_ERROR( msg ) \
Catch::throw_exception(CATCH_PREPARE_EXCEPTION( std::runtime_error, msg ))
#define CATCH_ENFORCE( condition, msg ) \
do{ if( !(condition) ) CATCH_ERROR( msg ); } while(false)
// end catch_enforce.h
#include <memory>
#include <vector>
#include <cassert>
#include <utility>
#include <exception>
namespace Catch {
class GeneratorException : public std::exception {
const char* const m_msg = "";
public:
GeneratorException(const char* msg):
m_msg(msg)
{}
const char* what() const noexcept override final;
};
namespace Generators {
// !TBD move this into its own location?
namespace pf{
template<typename T, typename... Args>
std::unique_ptr<T> make_unique( Args&&... args ) {
return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
}
}
template<typename T>
struct IGenerator : GeneratorUntypedBase {
virtual ~IGenerator() = default;
// Returns the current element of the generator
//
// \Precondition The generator is either freshly constructed,
// or the last call to `next()` returned true
virtual T const& get() const = 0;
using type = T;
};
template<typename T>
class SingleValueGenerator final : public IGenerator<T> {
T m_value;
public:
SingleValueGenerator(T const& value) : m_value( value ) {}
SingleValueGenerator(T&& value) : m_value(std::move(value)) {}
T const& get() const override {
return m_value;
}
bool next() override {
return false;
}
};
template<typename T>
class FixedValuesGenerator final : public IGenerator<T> {
std::vector<T> m_values;
size_t m_idx = 0;
public:
FixedValuesGenerator( std::initializer_list<T> values ) : m_values( values ) {}
T const& get() const override {
return m_values[m_idx];
}
bool next() override {
++m_idx;
return m_idx < m_values.size();
}
};
template <typename T>
class GeneratorWrapper final {
std::unique_ptr<IGenerator<T>> m_generator;
public:
GeneratorWrapper(std::unique_ptr<IGenerator<T>> generator):
m_generator(std::move(generator))
{}
T const& get() const {
return m_generator->get();
}
bool next() {
return m_generator->next();
}
};
template <typename T>
GeneratorWrapper<T> value(T&& value) {
return GeneratorWrapper<T>(pf::make_unique<SingleValueGenerator<T>>(std::forward<T>(value)));
}
template <typename T>
GeneratorWrapper<T> values(std::initializer_list<T> values) {
return GeneratorWrapper<T>(pf::make_unique<FixedValuesGenerator<T>>(values));
}
template<typename T>
class Generators : public IGenerator<T> {
std::vector<GeneratorWrapper<T>> m_generators;
size_t m_current = 0;
void populate(GeneratorWrapper<T>&& generator) {
m_generators.emplace_back(std::move(generator));
}
void populate(T&& val) {
m_generators.emplace_back(value(std::move(val)));
}
template<typename U>
void populate(U&& val) {
populate(T(std::move(val)));
}
template<typename U, typename... Gs>
void populate(U&& valueOrGenerator, Gs... moreGenerators) {
populate(std::forward<U>(valueOrGenerator));
populate(std::forward<Gs>(moreGenerators)...);
}
public:
template <typename... Gs>
Generators(Gs... moreGenerators) {
m_generators.reserve(sizeof...(Gs));
populate(std::forward<Gs>(moreGenerators)...);
}
T const& get() const override {
return m_generators[m_current].get();
}
bool next() override {
if (m_current >= m_generators.size()) {
return false;
}
const bool current_status = m_generators[m_current].next();
if (!current_status) {
++m_current;
}
return m_current < m_generators.size();
}
};
template<typename... Ts>
GeneratorWrapper<std::tuple<Ts...>> table( std::initializer_list<std::tuple<typename std::decay<Ts>::type...>> tuples ) {
return values<std::tuple<Ts...>>( tuples );
}
// Tag type to signal that a generator sequence should convert arguments to a specific type
template <typename T>
struct as {};
template<typename T, typename... Gs>
auto makeGenerators( GeneratorWrapper<T>&& generator, Gs... moreGenerators ) -> Generators<T> {
return Generators<T>(std::move(generator), std::forward<Gs>(moreGenerators)...);
}
template<typename T>
auto makeGenerators( GeneratorWrapper<T>&& generator ) -> Generators<T> {
return Generators<T>(std::move(generator));
}
template<typename T, typename... Gs>
auto makeGenerators( T&& val, Gs... moreGenerators ) -> Generators<T> {
return makeGenerators( value( std::forward<T>( val ) ), std::forward<Gs>( moreGenerators )... );
}
template<typename T, typename U, typename... Gs>
auto makeGenerators( as<T>, U&& val, Gs... moreGenerators ) -> Generators<T> {
return makeGenerators( value( T( std::forward<U>( val ) ) ), std::forward<Gs>( moreGenerators )... );
}
template <typename T>
class TakeGenerator : public IGenerator<T> {
GeneratorWrapper<T> m_generator;
size_t m_returned = 0;
size_t m_target;
public:
TakeGenerator(size_t target, GeneratorWrapper<T>&& generator):
m_generator(std::move(generator)),
m_target(target)
{
assert(target != 0 && "Empty generators are not allowed");
}
T const& get() const override {
return m_generator.get();
}
bool next() override {
++m_returned;
if (m_returned >= m_target) {
return false;
}
const auto success = m_generator.next();
// If the underlying generator does not contain enough values
// then we cut short as well
if (!success) {
m_returned = m_target;
}
return success;
}
};
template <typename T>
GeneratorWrapper<T> take(size_t target, GeneratorWrapper<T>&& generator) {
return GeneratorWrapper<T>(pf::make_unique<TakeGenerator<T>>(target, std::move(generator)));
}
template <typename T, typename Predicate>
class FilterGenerator : public IGenerator<T> {
GeneratorWrapper<T> m_generator;
Predicate m_predicate;
public:
template <typename P = Predicate>
FilterGenerator(P&& pred, GeneratorWrapper<T>&& generator):
m_generator(std::move(generator)),
m_predicate(std::forward<P>(pred))
{
if (!m_predicate(m_generator.get())) {
// It might happen that there are no values that pass the
// filter. In that case we throw an exception.
auto has_initial_value = next();
if (!has_initial_value) {
Catch::throw_exception(GeneratorException("No valid value found in filtered generator"));
}
}
}
T const& get() const override {
return m_generator.get();
}
bool next() override {
bool success = m_generator.next();
if (!success) {
return false;
}
while (!m_predicate(m_generator.get()) && (success = m_generator.next()) == true);
return success;
}
};
template <typename T, typename Predicate>
GeneratorWrapper<T> filter(Predicate&& pred, GeneratorWrapper<T>&& generator) {
return GeneratorWrapper<T>(std::unique_ptr<IGenerator<T>>(pf::make_unique<FilterGenerator<T, Predicate>>(std::forward<Predicate>(pred), std::move(generator))));
}
template <typename T>
class RepeatGenerator : public IGenerator<T> {
GeneratorWrapper<T> m_generator;
mutable std::vector<T> m_returned;
size_t m_target_repeats;
size_t m_current_repeat = 0;
size_t m_repeat_index = 0;
public:
RepeatGenerator(size_t repeats, GeneratorWrapper<T>&& generator):
m_generator(std::move(generator)),
m_target_repeats(repeats)
{
assert(m_target_repeats > 0 && "Repeat generator must repeat at least once");
}
T const& get() const override {
if (m_current_repeat == 0) {
m_returned.push_back(m_generator.get());
return m_returned.back();
}
return m_returned[m_repeat_index];
}
bool next() override {
// There are 2 basic cases:
// 1) We are still reading the generator
// 2) We are reading our own cache
// In the first case, we need to poke the underlying generator.
// If it happily moves, we are left in that state, otherwise it is time to start reading from our cache
if (m_current_repeat == 0) {
const auto success = m_generator.next();
if (!success) {
++m_current_repeat;
}
return m_current_repeat < m_target_repeats;
}
// In the second case, we need to move indices forward and check that we haven't run up against the end
++m_repeat_index;
if (m_repeat_index == m_returned.size()) {
m_repeat_index = 0;
++m_current_repeat;
}
return m_current_repeat < m_target_repeats;
}
};
template <typename T>
GeneratorWrapper<T> repeat(size_t repeats, GeneratorWrapper<T>&& generator) {
return GeneratorWrapper<T>(pf::make_unique<RepeatGenerator<T>>(repeats, std::move(generator)));
}
template <typename T, typename U, typename Func>
class MapGenerator : public IGenerator<T> {
// TBD: provide static assert for mapping function, for friendly error message
GeneratorWrapper<U> m_generator;
Func m_function;
// To avoid returning dangling reference, we have to save the values
T m_cache;
public:
template <typename F2 = Func>
MapGenerator(F2&& function, GeneratorWrapper<U>&& generator) :
m_generator(std::move(generator)),
m_function(std::forward<F2>(function)),
m_cache(m_function(m_generator.get()))
{}
T const& get() const override {
return m_cache;
}
bool next() override {
const auto success = m_generator.next();
if (success) {
m_cache = m_function(m_generator.get());
}
return success;
}
};
template <typename T, typename U, typename Func>
GeneratorWrapper<T> map(Func&& function, GeneratorWrapper<U>&& generator) {
return GeneratorWrapper<T>(
pf::make_unique<MapGenerator<T, U, Func>>(std::forward<Func>(function), std::move(generator))
);
}
template <typename T, typename Func>
GeneratorWrapper<T> map(Func&& function, GeneratorWrapper<T>&& generator) {
return GeneratorWrapper<T>(
pf::make_unique<MapGenerator<T, T, Func>>(std::forward<Func>(function), std::move(generator))
);
}
auto acquireGeneratorTracker( SourceLineInfo const& lineInfo ) -> IGeneratorTracker&;
template<typename L>
// Note: The type after -> is weird, because VS2015 cannot parse
// the expression used in the typedef inside, when it is in
// return type. Yeah, ¯\_(ツ)_/¯
auto generate( SourceLineInfo const& lineInfo, L const& generatorExpression ) -> decltype(std::declval<decltype(generatorExpression())>().get()) {
using UnderlyingType = typename decltype(generatorExpression())::type;
IGeneratorTracker& tracker = acquireGeneratorTracker( lineInfo );
if (!tracker.hasGenerator()) {
tracker.setGenerator(pf::make_unique<Generators<UnderlyingType>>(generatorExpression()));
}
auto const& generator = static_cast<IGenerator<UnderlyingType> const&>( *tracker.getGenerator() );
return generator.get();
}
} // namespace Generators
} // namespace Catch
#define GENERATE( ... ) \
Catch::Generators::generate( CATCH_INTERNAL_LINEINFO, []{ using namespace Catch::Generators; return makeGenerators( __VA_ARGS__ ); } )
// end catch_generators.hpp
// These files are included here so the single_include script doesn't put them
// in the conditionally compiled sections
// start catch_test_case_info.h
#include <string>
#include <vector>
#include <memory>
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wpadded"
#endif
namespace Catch {
struct ITestInvoker;
struct TestCaseInfo {
enum SpecialProperties{
None = 0,
IsHidden = 1 << 1,
ShouldFail = 1 << 2,
MayFail = 1 << 3,
Throws = 1 << 4,
NonPortable = 1 << 5,
Benchmark = 1 << 6
};
TestCaseInfo( std::string const& _name,
std::string const& _className,
std::string const& _description,
std::vector<std::string> const& _tags,
SourceLineInfo const& _lineInfo );
friend void setTags( TestCaseInfo& testCaseInfo, std::vector<std::string> tags );
bool isHidden() const;
bool throws() const;
bool okToFail() const;
bool expectedToFail() const;
std::string tagsAsString() const;
std::string name;
std::string className;
std::string description;
std::vector<std::string> tags;
std::vector<std::string> lcaseTags;
SourceLineInfo lineInfo;
SpecialProperties properties;
};
class TestCase : public TestCaseInfo {
public:
TestCase( ITestInvoker* testCase, TestCaseInfo&& info );
TestCase withName( std::string const& _newName ) const;
void invoke() const;
TestCaseInfo const& getTestCaseInfo() const;
bool operator == ( TestCase const& other ) const;
bool operator < ( TestCase const& other ) const;
private:
std::shared_ptr<ITestInvoker> test;
};
TestCase makeTestCase( ITestInvoker* testCase,
std::string const& className,
NameAndTags const& nameAndTags,
SourceLineInfo const& lineInfo );
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// end catch_test_case_info.h
// start catch_interfaces_runner.h
namespace Catch {
struct IRunner {
virtual ~IRunner();
virtual bool aborting() const = 0;
};
}
// end catch_interfaces_runner.h
#ifdef __OBJC__
// start catch_objc.hpp
#import <objc/runtime.h>
#include <string>
// NB. Any general catch headers included here must be included
// in catch.hpp first to make sure they are included by the single
// header for non obj-usage
///////////////////////////////////////////////////////////////////////////////
// This protocol is really only here for (self) documenting purposes, since
// all its methods are optional.
@protocol OcFixture
@optional
-(void) setUp;
-(void) tearDown;
@end
namespace Catch {
class OcMethod : public ITestInvoker {
public:
OcMethod( Class cls, SEL sel ) : m_cls( cls ), m_sel( sel ) {}
virtual void invoke() const {
id obj = [[m_cls alloc] init];
performOptionalSelector( obj, @selector(setUp) );
performOptionalSelector( obj, m_sel );
performOptionalSelector( obj, @selector(tearDown) );
arcSafeRelease( obj );
}
private:
virtual ~OcMethod() {}
Class m_cls;
SEL m_sel;
};
namespace Detail{
inline std::string getAnnotation( Class cls,
std::string const& annotationName,
std::string const& testCaseName ) {
NSString* selStr = [[NSString alloc] initWithFormat:@"Catch_%s_%s", annotationName.c_str(), testCaseName.c_str()];
SEL sel = NSSelectorFromString( selStr );
arcSafeRelease( selStr );
id value = performOptionalSelector( cls, sel );
if( value )
return [(NSString*)value UTF8String];
return "";
}
}
inline std::size_t registerTestMethods() {
std::size_t noTestMethods = 0;
int noClasses = objc_getClassList( nullptr, 0 );
Class* classes = (CATCH_UNSAFE_UNRETAINED Class *)malloc( sizeof(Class) * noClasses);
objc_getClassList( classes, noClasses );
for( int c = 0; c < noClasses; c++ ) {
Class cls = classes[c];
{
u_int count;
Method* methods = class_copyMethodList( cls, &count );
for( u_int m = 0; m < count ; m++ ) {
SEL selector = method_getName(methods[m]);
std::string methodName = sel_getName(selector);
if( startsWith( methodName, "Catch_TestCase_" ) ) {
std::string testCaseName = methodName.substr( 15 );
std::string name = Detail::getAnnotation( cls, "Name", testCaseName );
std::string desc = Detail::getAnnotation( cls, "Description", testCaseName );
const char* className = class_getName( cls );
getMutableRegistryHub().registerTest( makeTestCase( new OcMethod( cls, selector ), className, NameAndTags( name.c_str(), desc.c_str() ), SourceLineInfo("",0) ) );
noTestMethods++;
}
}
free(methods);
}
}
return noTestMethods;
}
#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
namespace Matchers {
namespace Impl {
namespace NSStringMatchers {
struct StringHolder : MatcherBase<NSString*>{
StringHolder( NSString* substr ) : m_substr( [substr copy] ){}
StringHolder( StringHolder const& other ) : m_substr( [other.m_substr copy] ){}
StringHolder() {
arcSafeRelease( m_substr );
}
bool match( NSString* arg ) const override {
return false;
}
NSString* CATCH_ARC_STRONG m_substr;
};
struct Equals : StringHolder {
Equals( NSString* substr ) : StringHolder( substr ){}
bool match( NSString* str ) const override {
return (str != nil || m_substr == nil ) &&
[str isEqualToString:m_substr];
}
std::string describe() const override {
return "equals string: " + Catch::Detail::stringify( m_substr );
}
};
struct Contains : StringHolder {
Contains( NSString* substr ) : StringHolder( substr ){}
bool match( NSString* str ) const {
return (str != nil || m_substr == nil ) &&
[str rangeOfString:m_substr].location != NSNotFound;
}
std::string describe() const override {
return "contains string: " + Catch::Detail::stringify( m_substr );
}
};
struct StartsWith : StringHolder {
StartsWith( NSString* substr ) : StringHolder( substr ){}
bool match( NSString* str ) const override {
return (str != nil || m_substr == nil ) &&
[str rangeOfString:m_substr].location == 0;
}
std::string describe() const override {
return "starts with: " + Catch::Detail::stringify( m_substr );
}
};
struct EndsWith : StringHolder {
EndsWith( NSString* substr ) : StringHolder( substr ){}
bool match( NSString* str ) const override {
return (str != nil || m_substr == nil ) &&
[str rangeOfString:m_substr].location == [str length] - [m_substr length];
}
std::string describe() const override {
return "ends with: " + Catch::Detail::stringify( m_substr );
}
};
} // namespace NSStringMatchers
} // namespace Impl
inline Impl::NSStringMatchers::Equals
Equals( NSString* substr ){ return Impl::NSStringMatchers::Equals( substr ); }
inline Impl::NSStringMatchers::Contains
Contains( NSString* substr ){ return Impl::NSStringMatchers::Contains( substr ); }
inline Impl::NSStringMatchers::StartsWith
StartsWith( NSString* substr ){ return Impl::NSStringMatchers::StartsWith( substr ); }
inline Impl::NSStringMatchers::EndsWith
EndsWith( NSString* substr ){ return Impl::NSStringMatchers::EndsWith( substr ); }
} // namespace Matchers
using namespace Matchers;
#endif // CATCH_CONFIG_DISABLE_MATCHERS
} // namespace Catch
///////////////////////////////////////////////////////////////////////////////
#define OC_MAKE_UNIQUE_NAME( root, uniqueSuffix ) root##uniqueSuffix
#define OC_TEST_CASE2( name, desc, uniqueSuffix ) \
+(NSString*) OC_MAKE_UNIQUE_NAME( Catch_Name_test_, uniqueSuffix ) \
{ \
return @ name; \
} \
+(NSString*) OC_MAKE_UNIQUE_NAME( Catch_Description_test_, uniqueSuffix ) \
{ \
return @ desc; \
} \
-(void) OC_MAKE_UNIQUE_NAME( Catch_TestCase_test_, uniqueSuffix )
#define OC_TEST_CASE( name, desc ) OC_TEST_CASE2( name, desc, __LINE__ )
// end catch_objc.hpp
#endif
#ifdef CATCH_CONFIG_EXTERNAL_INTERFACES
// start catch_external_interfaces.h
// start catch_reporter_bases.hpp
// start catch_interfaces_reporter.h
// start catch_config.hpp
// start catch_test_spec_parser.h
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wpadded"
#endif
// start catch_test_spec.h
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wpadded"
#endif
// start catch_wildcard_pattern.h
namespace Catch
{
class WildcardPattern {
enum WildcardPosition {
NoWildcard = 0,
WildcardAtStart = 1,
WildcardAtEnd = 2,
WildcardAtBothEnds = WildcardAtStart | WildcardAtEnd
};
public:
WildcardPattern( std::string const& pattern, CaseSensitive::Choice caseSensitivity );
virtual ~WildcardPattern() = default;
virtual bool matches( std::string const& str ) const;
private:
std::string adjustCase( std::string const& str ) const;
CaseSensitive::Choice m_caseSensitivity;
WildcardPosition m_wildcard = NoWildcard;
std::string m_pattern;
};
}
// end catch_wildcard_pattern.h
#include <string>
#include <vector>
#include <memory>
namespace Catch {
class TestSpec {
struct Pattern {
virtual ~Pattern();
virtual bool matches( TestCaseInfo const& testCase ) const = 0;
};
using PatternPtr = std::shared_ptr<Pattern>;
class NamePattern : public Pattern {
public:
NamePattern( std::string const& name );
virtual ~NamePattern();
virtual bool matches( TestCaseInfo const& testCase ) const override;
private:
WildcardPattern m_wildcardPattern;
};
class TagPattern : public Pattern {
public:
TagPattern( std::string const& tag );
virtual ~TagPattern();
virtual bool matches( TestCaseInfo const& testCase ) const override;
private:
std::string m_tag;
};
class ExcludedPattern : public Pattern {
public:
ExcludedPattern( PatternPtr const& underlyingPattern );
virtual ~ExcludedPattern();
virtual bool matches( TestCaseInfo const& testCase ) const override;
private:
PatternPtr m_underlyingPattern;
};
struct Filter {
std::vector<PatternPtr> m_patterns;
bool matches( TestCaseInfo const& testCase ) const;
};
public:
bool hasFilters() const;
bool matches( TestCaseInfo const& testCase ) const;
private:
std::vector<Filter> m_filters;
friend class TestSpecParser;
};
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// end catch_test_spec.h
// start catch_interfaces_tag_alias_registry.h
#include <string>
namespace Catch {
struct TagAlias;
struct ITagAliasRegistry {
virtual ~ITagAliasRegistry();
// Nullptr if not present
virtual TagAlias const* find( std::string const& alias ) const = 0;
virtual std::string expandAliases( std::string const& unexpandedTestSpec ) const = 0;
static ITagAliasRegistry const& get();
};
} // end namespace Catch
// end catch_interfaces_tag_alias_registry.h
namespace Catch {
class TestSpecParser {
enum Mode{ None, Name, QuotedName, Tag, EscapedName };
Mode m_mode = None;
bool m_exclusion = false;
std::size_t m_start = std::string::npos, m_pos = 0;
std::string m_arg;
std::vector<std::size_t> m_escapeChars;
TestSpec::Filter m_currentFilter;
TestSpec m_testSpec;
ITagAliasRegistry const* m_tagAliases = nullptr;
public:
TestSpecParser( ITagAliasRegistry const& tagAliases );
TestSpecParser& parse( std::string const& arg );
TestSpec testSpec();
private:
void visitChar( char c );
void startNewMode( Mode mode, std::size_t start );
void escape();
std::string subString() const;
template<typename T>
void addPattern() {
std::string token = subString();
for( std::size_t i = 0; i < m_escapeChars.size(); ++i )
token = token.substr( 0, m_escapeChars[i]-m_start-i ) + token.substr( m_escapeChars[i]-m_start-i+1 );
m_escapeChars.clear();
if( startsWith( token, "exclude:" ) ) {
m_exclusion = true;
token = token.substr( 8 );
}
if( !token.empty() ) {
TestSpec::PatternPtr pattern = std::make_shared<T>( token );
if( m_exclusion )
pattern = std::make_shared<TestSpec::ExcludedPattern>( pattern );
m_currentFilter.m_patterns.push_back( pattern );
}
m_exclusion = false;
m_mode = None;
}
void addFilter();
};
TestSpec parseTestSpec( std::string const& arg );
} // namespace Catch
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// end catch_test_spec_parser.h
// start catch_interfaces_config.h
#include <iosfwd>
#include <string>
#include <vector>
#include <memory>
namespace Catch {
enum class Verbosity {
Quiet = 0,
Normal,
High
};
struct WarnAbout { enum What {
Nothing = 0x00,
NoAssertions = 0x01,
NoTests = 0x02
}; };
struct ShowDurations { enum OrNot {
DefaultForReporter,
Always,
Never
}; };
struct RunTests { enum InWhatOrder {
InDeclarationOrder,
InLexicographicalOrder,
InRandomOrder
}; };
struct UseColour { enum YesOrNo {
Auto,
Yes,
No
}; };
struct WaitForKeypress { enum When {
Never,
BeforeStart = 1,
BeforeExit = 2,
BeforeStartAndExit = BeforeStart | BeforeExit
}; };
class TestSpec;
struct IConfig : NonCopyable {
virtual ~IConfig();
virtual bool allowThrows() const = 0;
virtual std::ostream& stream() const = 0;
virtual std::string name() const = 0;
virtual bool includeSuccessfulResults() const = 0;
virtual bool shouldDebugBreak() const = 0;
virtual bool warnAboutMissingAssertions() const = 0;
virtual bool warnAboutNoTests() const = 0;
virtual int abortAfter() const = 0;
virtual bool showInvisibles() const = 0;
virtual ShowDurations::OrNot showDurations() const = 0;
virtual TestSpec const& testSpec() const = 0;
virtual bool hasTestFilters() const = 0;
virtual RunTests::InWhatOrder runOrder() const = 0;
virtual unsigned int rngSeed() const = 0;
virtual int benchmarkResolutionMultiple() const = 0;
virtual UseColour::YesOrNo useColour() const = 0;
virtual std::vector<std::string> const& getSectionsToRun() const = 0;
virtual Verbosity verbosity() const = 0;
};
using IConfigPtr = std::shared_ptr<IConfig const>;
}
// end catch_interfaces_config.h
// Libstdc++ doesn't like incomplete classes for unique_ptr
#include <memory>
#include <vector>
#include <string>
#ifndef CATCH_CONFIG_CONSOLE_WIDTH
#define CATCH_CONFIG_CONSOLE_WIDTH 80
#endif
namespace Catch {
struct IStream;
struct ConfigData {
bool listTests = false;
bool listTags = false;
bool listReporters = false;
bool listTestNamesOnly = false;
bool showSuccessfulTests = false;
bool shouldDebugBreak = false;
bool noThrow = false;
bool showHelp = false;
bool showInvisibles = false;
bool filenamesAsTags = false;
bool libIdentify = false;
int abortAfter = -1;
unsigned int rngSeed = 0;
int benchmarkResolutionMultiple = 100;
Verbosity verbosity = Verbosity::Normal;
WarnAbout::What warnings = WarnAbout::Nothing;
ShowDurations::OrNot showDurations = ShowDurations::DefaultForReporter;
RunTests::InWhatOrder runOrder = RunTests::InDeclarationOrder;
UseColour::YesOrNo useColour = UseColour::Auto;
WaitForKeypress::When waitForKeypress = WaitForKeypress::Never;
std::string outputFilename;
std::string name;
std::string processName;
#ifndef CATCH_CONFIG_DEFAULT_REPORTER
#define CATCH_CONFIG_DEFAULT_REPORTER "console"
#endif
std::string reporterName = CATCH_CONFIG_DEFAULT_REPORTER;
#undef CATCH_CONFIG_DEFAULT_REPORTER
std::vector<std::string> testsOrTags;
std::vector<std::string> sectionsToRun;
};
class Config : public IConfig {
public:
Config() = default;
Config( ConfigData const& data );
virtual ~Config() = default;
std::string const& getFilename() const;
bool listTests() const;
bool listTestNamesOnly() const;
bool listTags() const;
bool listReporters() const;
std::string getProcessName() const;
std::string const& getReporterName() const;
std::vector<std::string> const& getTestsOrTags() const;
std::vector<std::string> const& getSectionsToRun() const override;
virtual TestSpec const& testSpec() const override;
bool hasTestFilters() const override;
bool showHelp() const;
// IConfig interface
bool allowThrows() const override;
std::ostream& stream() const override;
std::string name() const override;
bool includeSuccessfulResults() const override;
bool warnAboutMissingAssertions() const override;
bool warnAboutNoTests() const override;
ShowDurations::OrNot showDurations() const override;
RunTests::InWhatOrder runOrder() const override;
unsigned int rngSeed() const override;
int benchmarkResolutionMultiple() const override;
UseColour::YesOrNo useColour() const override;
bool shouldDebugBreak() const override;
int abortAfter() const override;
bool showInvisibles() const override;
Verbosity verbosity() const override;
private:
IStream const* openStream();
ConfigData m_data;
std::unique_ptr<IStream const> m_stream;
TestSpec m_testSpec;
bool m_hasTestFilters = false;
};
} // end namespace Catch
// end catch_config.hpp
// start catch_assertionresult.h
#include <string>
namespace Catch {
struct AssertionResultData
{
AssertionResultData() = delete;
AssertionResultData( ResultWas::OfType _resultType, LazyExpression const& _lazyExpression );
std::string message;
mutable std::string reconstructedExpression;
LazyExpression lazyExpression;
ResultWas::OfType resultType;
std::string reconstructExpression() const;
};
class AssertionResult {
public:
AssertionResult() = delete;
AssertionResult( AssertionInfo const& info, AssertionResultData const& data );
bool isOk() const;
bool succeeded() const;
ResultWas::OfType getResultType() const;
bool hasExpression() const;
bool hasMessage() const;
std::string getExpression() const;
std::string getExpressionInMacro() const;
bool hasExpandedExpression() const;
std::string getExpandedExpression() const;
std::string getMessage() const;
SourceLineInfo getSourceInfo() const;
StringRef getTestMacroName() const;
//protected:
AssertionInfo m_info;
AssertionResultData m_resultData;
};
} // end namespace Catch
// end catch_assertionresult.h
// start catch_option.hpp
namespace Catch {
// An optional type
template<typename T>
class Option {
public:
Option() : nullableValue( nullptr ) {}
Option( T const& _value )
: nullableValue( new( storage ) T( _value ) )
{}
Option( Option const& _other )
: nullableValue( _other ? new( storage ) T( *_other ) : nullptr )
{}
~Option() {
reset();
}
Option& operator= ( Option const& _other ) {
if( &_other != this ) {
reset();
if( _other )
nullableValue = new( storage ) T( *_other );
}
return *this;
}
Option& operator = ( T const& _value ) {
reset();
nullableValue = new( storage ) T( _value );
return *this;
}
void reset() {
if( nullableValue )
nullableValue->~T();
nullableValue = nullptr;
}
T& operator*() { return *nullableValue; }
T const& operator*() const { return *nullableValue; }
T* operator->() { return nullableValue; }
const T* operator->() const { return nullableValue; }
T valueOr( T const& defaultValue ) const {
return nullableValue ? *nullableValue : defaultValue;
}
bool some() const { return nullableValue != nullptr; }
bool none() const { return nullableValue == nullptr; }
bool operator !() const { return nullableValue == nullptr; }
explicit operator bool() const {
return some();
}
private:
T *nullableValue;
alignas(alignof(T)) char storage[sizeof(T)];
};
} // end namespace Catch
// end catch_option.hpp
#include <string>
#include <iosfwd>
#include <map>
#include <set>
#include <memory>
namespace Catch {
struct ReporterConfig {
explicit ReporterConfig( IConfigPtr const& _fullConfig );
ReporterConfig( IConfigPtr const& _fullConfig, std::ostream& _stream );
std::ostream& stream() const;
IConfigPtr fullConfig() const;
private:
std::ostream* m_stream;
IConfigPtr m_fullConfig;
};
struct ReporterPreferences {
bool shouldRedirectStdOut = false;
bool shouldReportAllAssertions = false;
};
template<typename T>
struct LazyStat : Option<T> {
LazyStat& operator=( T const& _value ) {
Option<T>::operator=( _value );
used = false;
return *this;
}
void reset() {
Option<T>::reset();
used = false;
}
bool used = false;
};
struct TestRunInfo {
TestRunInfo( std::string const& _name );
std::string name;
};
struct GroupInfo {
GroupInfo( std::string const& _name,
std::size_t _groupIndex,
std::size_t _groupsCount );
std::string name;
std::size_t groupIndex;
std::size_t groupsCounts;
};
struct AssertionStats {
AssertionStats( AssertionResult const& _assertionResult,
std::vector<MessageInfo> const& _infoMessages,
Totals const& _totals );
AssertionStats( AssertionStats const& ) = default;
AssertionStats( AssertionStats && ) = default;
AssertionStats& operator = ( AssertionStats const& ) = default;
AssertionStats& operator = ( AssertionStats && ) = default;
virtual ~AssertionStats();
AssertionResult assertionResult;
std::vector<MessageInfo> infoMessages;
Totals totals;
};
struct SectionStats {
SectionStats( SectionInfo const& _sectionInfo,
Counts const& _assertions,
double _durationInSeconds,
bool _missingAssertions );
SectionStats( SectionStats const& ) = default;
SectionStats( SectionStats && ) = default;
SectionStats& operator = ( SectionStats const& ) = default;
SectionStats& operator = ( SectionStats && ) = default;
virtual ~SectionStats();
SectionInfo sectionInfo;
Counts assertions;
double durationInSeconds;
bool missingAssertions;
};
struct TestCaseStats {
TestCaseStats( TestCaseInfo const& _testInfo,
Totals const& _totals,
std::string const& _stdOut,
std::string const& _stdErr,
bool _aborting );
TestCaseStats( TestCaseStats const& ) = default;
TestCaseStats( TestCaseStats && ) = default;
TestCaseStats& operator = ( TestCaseStats const& ) = default;
TestCaseStats& operator = ( TestCaseStats && ) = default;
virtual ~TestCaseStats();
TestCaseInfo testInfo;
Totals totals;
std::string stdOut;
std::string stdErr;
bool aborting;
};
struct TestGroupStats {
TestGroupStats( GroupInfo const& _groupInfo,
Totals const& _totals,
bool _aborting );
TestGroupStats( GroupInfo const& _groupInfo );
TestGroupStats( TestGroupStats const& ) = default;
TestGroupStats( TestGroupStats && ) = default;
TestGroupStats& operator = ( TestGroupStats const& ) = default;
TestGroupStats& operator = ( TestGroupStats && ) = default;
virtual ~TestGroupStats();
GroupInfo groupInfo;
Totals totals;
bool aborting;
};
struct TestRunStats {
TestRunStats( TestRunInfo const& _runInfo,
Totals const& _totals,
bool _aborting );
TestRunStats( TestRunStats const& ) = default;
TestRunStats( TestRunStats && ) = default;
TestRunStats& operator = ( TestRunStats const& ) = default;
TestRunStats& operator = ( TestRunStats && ) = default;
virtual ~TestRunStats();
TestRunInfo runInfo;
Totals totals;
bool aborting;
};
struct BenchmarkInfo {
std::string name;
};
struct BenchmarkStats {
BenchmarkInfo info;
std::size_t iterations;
uint64_t elapsedTimeInNanoseconds;
};
struct IStreamingReporter {
virtual ~IStreamingReporter() = default;
// Implementing class must also provide the following static methods:
// static std::string getDescription();
// static std::set<Verbosity> getSupportedVerbosities()
virtual ReporterPreferences getPreferences() const = 0;
virtual void noMatchingTestCases( std::string const& spec ) = 0;
virtual void testRunStarting( TestRunInfo const& testRunInfo ) = 0;
virtual void testGroupStarting( GroupInfo const& groupInfo ) = 0;
virtual void testCaseStarting( TestCaseInfo const& testInfo ) = 0;
virtual void sectionStarting( SectionInfo const& sectionInfo ) = 0;
// *** experimental ***
virtual void benchmarkStarting( BenchmarkInfo const& ) {}
virtual void assertionStarting( AssertionInfo const& assertionInfo ) = 0;
// The return value indicates if the messages buffer should be cleared:
virtual bool assertionEnded( AssertionStats const& assertionStats ) = 0;
// *** experimental ***
virtual void benchmarkEnded( BenchmarkStats const& ) {}
virtual void sectionEnded( SectionStats const& sectionStats ) = 0;
virtual void testCaseEnded( TestCaseStats const& testCaseStats ) = 0;
virtual void testGroupEnded( TestGroupStats const& testGroupStats ) = 0;
virtual void testRunEnded( TestRunStats const& testRunStats ) = 0;
virtual void skipTest( TestCaseInfo const& testInfo ) = 0;
// Default empty implementation provided
virtual void fatalErrorEncountered( StringRef name );
virtual bool isMulti() const;
};
using IStreamingReporterPtr = std::unique_ptr<IStreamingReporter>;
struct IReporterFactory {
virtual ~IReporterFactory();
virtual IStreamingReporterPtr create( ReporterConfig const& config ) const = 0;
virtual std::string getDescription() const = 0;
};
using IReporterFactoryPtr = std::shared_ptr<IReporterFactory>;
struct IReporterRegistry {
using FactoryMap = std::map<std::string, IReporterFactoryPtr>;
using Listeners = std::vector<IReporterFactoryPtr>;
virtual ~IReporterRegistry();
virtual IStreamingReporterPtr create( std::string const& name, IConfigPtr const& config ) const = 0;
virtual FactoryMap const& getFactories() const = 0;
virtual Listeners const& getListeners() const = 0;
};
} // end namespace Catch
// end catch_interfaces_reporter.h
#include <algorithm>
#include <cstring>
#include <cfloat>
#include <cstdio>
#include <cassert>
#include <memory>
#include <ostream>
namespace Catch {
void prepareExpandedExpression(AssertionResult& result);
// Returns double formatted as %.3f (format expected on output)
std::string getFormattedDuration( double duration );
template<typename DerivedT>
struct StreamingReporterBase : IStreamingReporter {
StreamingReporterBase( ReporterConfig const& _config )
: m_config( _config.fullConfig() ),
stream( _config.stream() )
{
m_reporterPrefs.shouldRedirectStdOut = false;
if( !DerivedT::getSupportedVerbosities().count( m_config->verbosity() ) )
CATCH_ERROR( "Verbosity level not supported by this reporter" );
}
ReporterPreferences getPreferences() const override {
return m_reporterPrefs;
}
static std::set<Verbosity> getSupportedVerbosities() {
return { Verbosity::Normal };
}
~StreamingReporterBase() override = default;
void noMatchingTestCases(std::string const&) override {}
void testRunStarting(TestRunInfo const& _testRunInfo) override {
currentTestRunInfo = _testRunInfo;
}
void testGroupStarting(GroupInfo const& _groupInfo) override {
currentGroupInfo = _groupInfo;
}
void testCaseStarting(TestCaseInfo const& _testInfo) override {
currentTestCaseInfo = _testInfo;
}
void sectionStarting(SectionInfo const& _sectionInfo) override {
m_sectionStack.push_back(_sectionInfo);
}
void sectionEnded(SectionStats const& /* _sectionStats */) override {
m_sectionStack.pop_back();
}
void testCaseEnded(TestCaseStats const& /* _testCaseStats */) override {
currentTestCaseInfo.reset();
}
void testGroupEnded(TestGroupStats const& /* _testGroupStats */) override {
currentGroupInfo.reset();
}
void testRunEnded(TestRunStats const& /* _testRunStats */) override {
currentTestCaseInfo.reset();
currentGroupInfo.reset();
currentTestRunInfo.reset();
}
void skipTest(TestCaseInfo const&) override {
// Don't do anything with this by default.
// It can optionally be overridden in the derived class.
}
IConfigPtr m_config;
std::ostream& stream;
LazyStat<TestRunInfo> currentTestRunInfo;
LazyStat<GroupInfo> currentGroupInfo;
LazyStat<TestCaseInfo> currentTestCaseInfo;
std::vector<SectionInfo> m_sectionStack;
ReporterPreferences m_reporterPrefs;
};
template<typename DerivedT>
struct CumulativeReporterBase : IStreamingReporter {
template<typename T, typename ChildNodeT>
struct Node {
explicit Node( T const& _value ) : value( _value ) {}
virtual ~Node() {}
using ChildNodes = std::vector<std::shared_ptr<ChildNodeT>>;
T value;
ChildNodes children;
};
struct SectionNode {
explicit SectionNode(SectionStats const& _stats) : stats(_stats) {}
virtual ~SectionNode() = default;
bool operator == (SectionNode const& other) const {
return stats.sectionInfo.lineInfo == other.stats.sectionInfo.lineInfo;
}
bool operator == (std::shared_ptr<SectionNode> const& other) const {
return operator==(*other);
}
SectionStats stats;
using ChildSections = std::vector<std::shared_ptr<SectionNode>>;
using Assertions = std::vector<AssertionStats>;
ChildSections childSections;
Assertions assertions;
std::string stdOut;
std::string stdErr;
};
struct BySectionInfo {
BySectionInfo( SectionInfo const& other ) : m_other( other ) {}
BySectionInfo( BySectionInfo const& other ) : m_other( other.m_other ) {}
bool operator() (std::shared_ptr<SectionNode> const& node) const {
return ((node->stats.sectionInfo.name == m_other.name) &&
(node->stats.sectionInfo.lineInfo == m_other.lineInfo));
}
void operator=(BySectionInfo const&) = delete;
private:
SectionInfo const& m_other;
};
using TestCaseNode = Node<TestCaseStats, SectionNode>;
using TestGroupNode = Node<TestGroupStats, TestCaseNode>;
using TestRunNode = Node<TestRunStats, TestGroupNode>;
CumulativeReporterBase( ReporterConfig const& _config )
: m_config( _config.fullConfig() ),
stream( _config.stream() )
{
m_reporterPrefs.shouldRedirectStdOut = false;
if( !DerivedT::getSupportedVerbosities().count( m_config->verbosity() ) )
CATCH_ERROR( "Verbosity level not supported by this reporter" );
}
~CumulativeReporterBase() override = default;
ReporterPreferences getPreferences() const override {
return m_reporterPrefs;
}
static std::set<Verbosity> getSupportedVerbosities() {
return { Verbosity::Normal };
}
void testRunStarting( TestRunInfo const& ) override {}
void testGroupStarting( GroupInfo const& ) override {}
void testCaseStarting( TestCaseInfo const& ) override {}
void sectionStarting( SectionInfo const& sectionInfo ) override {
SectionStats incompleteStats( sectionInfo, Counts(), 0, false );
std::shared_ptr<SectionNode> node;
if( m_sectionStack.empty() ) {
if( !m_rootSection )
m_rootSection = std::make_shared<SectionNode>( incompleteStats );
node = m_rootSection;
}
else {
SectionNode& parentNode = *m_sectionStack.back();
auto it =
std::find_if( parentNode.childSections.begin(),
parentNode.childSections.end(),
BySectionInfo( sectionInfo ) );
if( it == parentNode.childSections.end() ) {
node = std::make_shared<SectionNode>( incompleteStats );
parentNode.childSections.push_back( node );
}
else
node = *it;
}
m_sectionStack.push_back( node );
m_deepestSection = std::move(node);
}
void assertionStarting(AssertionInfo const&) override {}
bool assertionEnded(AssertionStats const& assertionStats) override {
assert(!m_sectionStack.empty());
// AssertionResult holds a pointer to a temporary DecomposedExpression,
// which getExpandedExpression() calls to build the expression string.
// Our section stack copy of the assertionResult will likely outlive the
// temporary, so it must be expanded or discarded now to avoid calling
// a destroyed object later.
prepareExpandedExpression(const_cast<AssertionResult&>( assertionStats.assertionResult ) );
SectionNode& sectionNode = *m_sectionStack.back();
sectionNode.assertions.push_back(assertionStats);
return true;
}
void sectionEnded(SectionStats const& sectionStats) override {
assert(!m_sectionStack.empty());
SectionNode& node = *m_sectionStack.back();
node.stats = sectionStats;
m_sectionStack.pop_back();
}
void testCaseEnded(TestCaseStats const& testCaseStats) override {
auto node = std::make_shared<TestCaseNode>(testCaseStats);
assert(m_sectionStack.size() == 0);
node->children.push_back(m_rootSection);
m_testCases.push_back(node);
m_rootSection.reset();
assert(m_deepestSection);
m_deepestSection->stdOut = testCaseStats.stdOut;
m_deepestSection->stdErr = testCaseStats.stdErr;
}
void testGroupEnded(TestGroupStats const& testGroupStats) override {
auto node = std::make_shared<TestGroupNode>(testGroupStats);
node->children.swap(m_testCases);
m_testGroups.push_back(node);
}
void testRunEnded(TestRunStats const& testRunStats) override {
auto node = std::make_shared<TestRunNode>(testRunStats);
node->children.swap(m_testGroups);
m_testRuns.push_back(node);
testRunEndedCumulative();
}
virtual void testRunEndedCumulative() = 0;
void skipTest(TestCaseInfo const&) override {}
IConfigPtr m_config;
std::ostream& stream;
std::vector<AssertionStats> m_assertions;
std::vector<std::vector<std::shared_ptr<SectionNode>>> m_sections;
std::vector<std::shared_ptr<TestCaseNode>> m_testCases;
std::vector<std::shared_ptr<TestGroupNode>> m_testGroups;
std::vector<std::shared_ptr<TestRunNode>> m_testRuns;
std::shared_ptr<SectionNode> m_rootSection;
std::shared_ptr<SectionNode> m_deepestSection;
std::vector<std::shared_ptr<SectionNode>> m_sectionStack;
ReporterPreferences m_reporterPrefs;
};
template<char C>
char const* getLineOfChars() {
static char line[CATCH_CONFIG_CONSOLE_WIDTH] = {0};
if( !*line ) {
std::memset( line, C, CATCH_CONFIG_CONSOLE_WIDTH-1 );
line[CATCH_CONFIG_CONSOLE_WIDTH-1] = 0;
}
return line;
}
struct TestEventListenerBase : StreamingReporterBase<TestEventListenerBase> {
TestEventListenerBase( ReporterConfig const& _config );
static std::set<Verbosity> getSupportedVerbosities();
void assertionStarting(AssertionInfo const&) override;
bool assertionEnded(AssertionStats const&) override;
};
} // end namespace Catch
// end catch_reporter_bases.hpp
// start catch_console_colour.h
namespace Catch {
struct Colour {
enum Code {
None = 0,
White,
Red,
Green,
Blue,
Cyan,
Yellow,
Grey,
Bright = 0x10,
BrightRed = Bright | Red,
BrightGreen = Bright | Green,
LightGrey = Bright | Grey,
BrightWhite = Bright | White,
BrightYellow = Bright | Yellow,
// By intention
FileName = LightGrey,
Warning = BrightYellow,
ResultError = BrightRed,
ResultSuccess = BrightGreen,
ResultExpectedFailure = Warning,
Error = BrightRed,
Success = Green,
OriginalExpression = Cyan,
ReconstructedExpression = BrightYellow,
SecondaryText = LightGrey,
Headers = White
};
// Use constructed object for RAII guard
Colour( Code _colourCode );
Colour( Colour&& other ) noexcept;
Colour& operator=( Colour&& other ) noexcept;
~Colour();
// Use static method for one-shot changes
static void use( Code _colourCode );
private:
bool m_moved = false;
};
std::ostream& operator << ( std::ostream& os, Colour const& );
} // end namespace Catch
// end catch_console_colour.h
// start catch_reporter_registrars.hpp
namespace Catch {
template<typename T>
class ReporterRegistrar {
class ReporterFactory : public IReporterFactory {
virtual IStreamingReporterPtr create( ReporterConfig const& config ) const override {
return std::unique_ptr<T>( new T( config ) );
}
virtual std::string getDescription() const override {
return T::getDescription();
}
};
public:
explicit ReporterRegistrar( std::string const& name ) {
getMutableRegistryHub().registerReporter( name, std::make_shared<ReporterFactory>() );
}
};
template<typename T>
class ListenerRegistrar {
class ListenerFactory : public IReporterFactory {
virtual IStreamingReporterPtr create( ReporterConfig const& config ) const override {
return std::unique_ptr<T>( new T( config ) );
}
virtual std::string getDescription() const override {
return std::string();
}
};
public:
ListenerRegistrar() {
getMutableRegistryHub().registerListener( std::make_shared<ListenerFactory>() );
}
};
}
#if !defined(CATCH_CONFIG_DISABLE)
#define CATCH_REGISTER_REPORTER( name, reporterType ) \
CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
namespace{ Catch::ReporterRegistrar<reporterType> catch_internal_RegistrarFor##reporterType( name ); } \
CATCH_INTERNAL_UNSUPPRESS_GLOBALS_WARNINGS
#define CATCH_REGISTER_LISTENER( listenerType ) \
CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
namespace{ Catch::ListenerRegistrar<listenerType> catch_internal_RegistrarFor##listenerType; } \
CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS
#else // CATCH_CONFIG_DISABLE
#define CATCH_REGISTER_REPORTER(name, reporterType)
#define CATCH_REGISTER_LISTENER(listenerType)
#endif // CATCH_CONFIG_DISABLE
// end catch_reporter_registrars.hpp
// Allow users to base their work off existing reporters
// start catch_reporter_compact.h
namespace Catch {
struct CompactReporter : StreamingReporterBase<CompactReporter> {
using StreamingReporterBase::StreamingReporterBase;
~CompactReporter() override;
static std::string getDescription();
ReporterPreferences getPreferences() const override;
void noMatchingTestCases(std::string const& spec) override;
void assertionStarting(AssertionInfo const&) override;
bool assertionEnded(AssertionStats const& _assertionStats) override;
void sectionEnded(SectionStats const& _sectionStats) override;
void testRunEnded(TestRunStats const& _testRunStats) override;
};
} // end namespace Catch
// end catch_reporter_compact.h
// start catch_reporter_console.h
#if defined(_MSC_VER)
#pragma warning(push)
#pragma warning(disable:4061) // Not all labels are EXPLICITLY handled in switch
// Note that 4062 (not all labels are handled
// and default is missing) is enabled
#endif
namespace Catch {
// Fwd decls
struct SummaryColumn;
class TablePrinter;
struct ConsoleReporter : StreamingReporterBase<ConsoleReporter> {
std::unique_ptr<TablePrinter> m_tablePrinter;
ConsoleReporter(ReporterConfig const& config);
~ConsoleReporter() override;
static std::string getDescription();
void noMatchingTestCases(std::string const& spec) override;
void assertionStarting(AssertionInfo const&) override;
bool assertionEnded(AssertionStats const& _assertionStats) override;
void sectionStarting(SectionInfo const& _sectionInfo) override;
void sectionEnded(SectionStats const& _sectionStats) override;
void benchmarkStarting(BenchmarkInfo const& info) override;
void benchmarkEnded(BenchmarkStats const& stats) override;
void testCaseEnded(TestCaseStats const& _testCaseStats) override;
void testGroupEnded(TestGroupStats const& _testGroupStats) override;
void testRunEnded(TestRunStats const& _testRunStats) override;
private:
void lazyPrint();
void lazyPrintWithoutClosingBenchmarkTable();
void lazyPrintRunInfo();
void lazyPrintGroupInfo();
void printTestCaseAndSectionHeader();
void printClosedHeader(std::string const& _name);
void printOpenHeader(std::string const& _name);
// if string has a : in first line will set indent to follow it on
// subsequent lines
void printHeaderString(std::string const& _string, std::size_t indent = 0);
void printTotals(Totals const& totals);
void printSummaryRow(std::string const& label, std::vector<SummaryColumn> const& cols, std::size_t row);
void printTotalsDivider(Totals const& totals);
void printSummaryDivider();
private:
bool m_headerPrinted = false;
};
} // end namespace Catch
#if defined(_MSC_VER)
#pragma warning(pop)
#endif
// end catch_reporter_console.h
// start catch_reporter_junit.h
// start catch_xmlwriter.h
#include <vector>
namespace Catch {
class XmlEncode {
public:
enum ForWhat { ForTextNodes, ForAttributes };
XmlEncode( std::string const& str, ForWhat forWhat = ForTextNodes );
void encodeTo( std::ostream& os ) const;
friend std::ostream& operator << ( std::ostream& os, XmlEncode const& xmlEncode );
private:
std::string m_str;
ForWhat m_forWhat;
};
class XmlWriter {
public:
class ScopedElement {
public:
ScopedElement( XmlWriter* writer );
ScopedElement( ScopedElement&& other ) noexcept;
ScopedElement& operator=( ScopedElement&& other ) noexcept;
~ScopedElement();
ScopedElement& writeText( std::string const& text, bool indent = true );
template<typename T>
ScopedElement& writeAttribute( std::string const& name, T const& attribute ) {
m_writer->writeAttribute( name, attribute );
return *this;
}
private:
mutable XmlWriter* m_writer = nullptr;
};
XmlWriter( std::ostream& os = Catch::cout() );
~XmlWriter();
XmlWriter( XmlWriter const& ) = delete;
XmlWriter& operator=( XmlWriter const& ) = delete;
XmlWriter& startElement( std::string const& name );
ScopedElement scopedElement( std::string const& name );
XmlWriter& endElement();
XmlWriter& writeAttribute( std::string const& name, std::string const& attribute );
XmlWriter& writeAttribute( std::string const& name, bool attribute );
template<typename T>
XmlWriter& writeAttribute( std::string const& name, T const& attribute ) {
ReusableStringStream rss;
rss << attribute;
return writeAttribute( name, rss.str() );
}
XmlWriter& writeText( std::string const& text, bool indent = true );
XmlWriter& writeComment( std::string const& text );
void writeStylesheetRef( std::string const& url );
XmlWriter& writeBlankLine();
void ensureTagClosed();
private:
void writeDeclaration();
void newlineIfNecessary();
bool m_tagIsOpen = false;
bool m_needsNewline = false;
std::vector<std::string> m_tags;
std::string m_indent;
std::ostream& m_os;
};
}
// end catch_xmlwriter.h
namespace Catch {
class JunitReporter : public CumulativeReporterBase<JunitReporter> {
public:
JunitReporter(ReporterConfig const& _config);
~JunitReporter() override;
static std::string getDescription();
void noMatchingTestCases(std::string const& /*spec*/) override;
void testRunStarting(TestRunInfo const& runInfo) override;
void testGroupStarting(GroupInfo const& groupInfo) override;
void testCaseStarting(TestCaseInfo const& testCaseInfo) override;
bool assertionEnded(AssertionStats const& assertionStats) override;
void testCaseEnded(TestCaseStats const& testCaseStats) override;
void testGroupEnded(TestGroupStats const& testGroupStats) override;
void testRunEndedCumulative() override;
void writeGroup(TestGroupNode const& groupNode, double suiteTime);
void writeTestCase(TestCaseNode const& testCaseNode);
void writeSection(std::string const& className,
std::string const& rootName,
SectionNode const& sectionNode);
void writeAssertions(SectionNode const& sectionNode);
void writeAssertion(AssertionStats const& stats);
XmlWriter xml;
Timer suiteTimer;
std::string stdOutForSuite;
std::string stdErrForSuite;
unsigned int unexpectedExceptions = 0;
bool m_okToFail = false;
};
} // end namespace Catch
// end catch_reporter_junit.h
// start catch_reporter_xml.h
namespace Catch {
class XmlReporter : public StreamingReporterBase<XmlReporter> {
public:
XmlReporter(ReporterConfig const& _config);
~XmlReporter() override;
static std::string getDescription();
virtual std::string getStylesheetRef() const;
void writeSourceInfo(SourceLineInfo const& sourceInfo);
public: // StreamingReporterBase
void noMatchingTestCases(std::string const& s) override;
void testRunStarting(TestRunInfo const& testInfo) override;
void testGroupStarting(GroupInfo const& groupInfo) override;
void testCaseStarting(TestCaseInfo const& testInfo) override;
void sectionStarting(SectionInfo const& sectionInfo) override;
void assertionStarting(AssertionInfo const&) override;
bool assertionEnded(AssertionStats const& assertionStats) override;
void sectionEnded(SectionStats const& sectionStats) override;
void testCaseEnded(TestCaseStats const& testCaseStats) override;
void testGroupEnded(TestGroupStats const& testGroupStats) override;
void testRunEnded(TestRunStats const& testRunStats) override;
private:
Timer m_testCaseTimer;
XmlWriter m_xml;
int m_sectionDepth = 0;
};
} // end namespace Catch
// end catch_reporter_xml.h
// end catch_external_interfaces.h
#endif
#endif // ! CATCH_CONFIG_IMPL_ONLY
#ifdef CATCH_IMPL
// start catch_impl.hpp
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wweak-vtables"
#endif
// Keep these here for external reporters
// start catch_test_case_tracker.h
#include <string>
#include <vector>
#include <memory>
namespace Catch {
namespace TestCaseTracking {
struct NameAndLocation {
std::string name;
SourceLineInfo location;
NameAndLocation( std::string const& _name, SourceLineInfo const& _location );
};
struct ITracker;
using ITrackerPtr = std::shared_ptr<ITracker>;
struct ITracker {
virtual ~ITracker();
// static queries
virtual NameAndLocation const& nameAndLocation() const = 0;
// dynamic queries
virtual bool isComplete() const = 0; // Successfully completed or failed
virtual bool isSuccessfullyCompleted() const = 0;
virtual bool isOpen() const = 0; // Started but not complete
virtual bool hasChildren() const = 0;
virtual ITracker& parent() = 0;
// actions
virtual void close() = 0; // Successfully complete
virtual void fail() = 0;
virtual void markAsNeedingAnotherRun() = 0;
virtual void addChild( ITrackerPtr const& child ) = 0;
virtual ITrackerPtr findChild( NameAndLocation const& nameAndLocation ) = 0;
virtual void openChild() = 0;
// Debug/ checking
virtual bool isSectionTracker() const = 0;
virtual bool isGeneratorTracker() const = 0;
};
class TrackerContext {
enum RunState {
NotStarted,
Executing,
CompletedCycle
};
ITrackerPtr m_rootTracker;
ITracker* m_currentTracker = nullptr;
RunState m_runState = NotStarted;
public:
static TrackerContext& instance();
ITracker& startRun();
void endRun();
void startCycle();
void completeCycle();
bool completedCycle() const;
ITracker& currentTracker();
void setCurrentTracker( ITracker* tracker );
};
class TrackerBase : public ITracker {
protected:
enum CycleState {
NotStarted,
Executing,
ExecutingChildren,
NeedsAnotherRun,
CompletedSuccessfully,
Failed
};
using Children = std::vector<ITrackerPtr>;
NameAndLocation m_nameAndLocation;
TrackerContext& m_ctx;
ITracker* m_parent;
Children m_children;
CycleState m_runState = NotStarted;
public:
TrackerBase( NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* parent );
NameAndLocation const& nameAndLocation() const override;
bool isComplete() const override;
bool isSuccessfullyCompleted() const override;
bool isOpen() const override;
bool hasChildren() const override;
void addChild( ITrackerPtr const& child ) override;
ITrackerPtr findChild( NameAndLocation const& nameAndLocation ) override;
ITracker& parent() override;
void openChild() override;
bool isSectionTracker() const override;
bool isGeneratorTracker() const override;
void open();
void close() override;
void fail() override;
void markAsNeedingAnotherRun() override;
private:
void moveToParent();
void moveToThis();
};
class SectionTracker : public TrackerBase {
std::vector<std::string> m_filters;
public:
SectionTracker( NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* parent );
bool isSectionTracker() const override;
bool isComplete() const override;
static SectionTracker& acquire( TrackerContext& ctx, NameAndLocation const& nameAndLocation );
void tryOpen();
void addInitialFilters( std::vector<std::string> const& filters );
void addNextFilters( std::vector<std::string> const& filters );
};
} // namespace TestCaseTracking
using TestCaseTracking::ITracker;
using TestCaseTracking::TrackerContext;
using TestCaseTracking::SectionTracker;
} // namespace Catch
// end catch_test_case_tracker.h
// start catch_leak_detector.h
namespace Catch {
struct LeakDetector {
LeakDetector();
~LeakDetector();
};
}
// end catch_leak_detector.h
// Cpp files will be included in the single-header file here
// start catch_approx.cpp
#include <cmath>
#include <limits>
namespace {
// Performs equivalent check of std::fabs(lhs - rhs) <= margin
// But without the subtraction to allow for INFINITY in comparison
bool marginComparison(double lhs, double rhs, double margin) {
return (lhs + margin >= rhs) && (rhs + margin >= lhs);
}
}
namespace Catch {
namespace Detail {
Approx::Approx ( double value )
: m_epsilon( std::numeric_limits<float>::epsilon()*100 ),
m_margin( 0.0 ),
m_scale( 0.0 ),
m_value( value )
{}
Approx Approx::custom() {
return Approx( 0 );
}
Approx Approx::operator-() const {
auto temp(*this);
temp.m_value = -temp.m_value;
return temp;
}
std::string Approx::toString() const {
ReusableStringStream rss;
rss << "Approx( " << ::Catch::Detail::stringify( m_value ) << " )";
return rss.str();
}
bool Approx::equalityComparisonImpl(const double other) const {
// First try with fixed margin, then compute margin based on epsilon, scale and Approx's value
// Thanks to Richard Harris for his help refining the scaled margin value
return marginComparison(m_value, other, m_margin) || marginComparison(m_value, other, m_epsilon * (m_scale + std::fabs(m_value)));
}
void Approx::setMargin(double margin) {
CATCH_ENFORCE(margin >= 0,
"Invalid Approx::margin: " << margin << '.'
<< " Approx::Margin has to be non-negative.");
m_margin = margin;
}
void Approx::setEpsilon(double epsilon) {
CATCH_ENFORCE(epsilon >= 0 && epsilon <= 1.0,
"Invalid Approx::epsilon: " << epsilon << '.'
<< " Approx::epsilon has to be in [0, 1]");
m_epsilon = epsilon;
}
} // end namespace Detail
namespace literals {
Detail::Approx operator "" _a(long double val) {
return Detail::Approx(val);
}
Detail::Approx operator "" _a(unsigned long long val) {
return Detail::Approx(val);
}
} // end namespace literals
std::string StringMaker<Catch::Detail::Approx>::convert(Catch::Detail::Approx const& value) {
return value.toString();
}
} // end namespace Catch
// end catch_approx.cpp
// start catch_assertionhandler.cpp
// start catch_context.h
#include <memory>
namespace Catch {
struct IResultCapture;
struct IRunner;
struct IConfig;
struct IMutableContext;
using IConfigPtr = std::shared_ptr<IConfig const>;
struct IContext
{
virtual ~IContext();
virtual IResultCapture* getResultCapture() = 0;
virtual IRunner* getRunner() = 0;
virtual IConfigPtr const& getConfig() const = 0;
};
struct IMutableContext : IContext
{
virtual ~IMutableContext();
virtual void setResultCapture( IResultCapture* resultCapture ) = 0;
virtual void setRunner( IRunner* runner ) = 0;
virtual void setConfig( IConfigPtr const& config ) = 0;
private:
static IMutableContext *currentContext;
friend IMutableContext& getCurrentMutableContext();
friend void cleanUpContext();
static void createContext();
};
inline IMutableContext& getCurrentMutableContext()
{
if( !IMutableContext::currentContext )
IMutableContext::createContext();
return *IMutableContext::currentContext;
}
inline IContext& getCurrentContext()
{
return getCurrentMutableContext();
}
void cleanUpContext();
}
// end catch_context.h
// start catch_debugger.h
namespace Catch {
bool isDebuggerActive();
}
#ifdef CATCH_PLATFORM_MAC
#define CATCH_TRAP() __asm__("int $3\n" : : ) /* NOLINT */
#elif defined(CATCH_PLATFORM_LINUX)
// If we can use inline assembler, do it because this allows us to break
// directly at the location of the failing check instead of breaking inside
// raise() called from it, i.e. one stack frame below.
#if defined(__GNUC__) && (defined(__i386) || defined(__x86_64))
#define CATCH_TRAP() asm volatile ("int $3") /* NOLINT */
#else // Fall back to the generic way.
#include <signal.h>
#define CATCH_TRAP() raise(SIGTRAP)
#endif
#elif defined(_MSC_VER)
#define CATCH_TRAP() __debugbreak()
#elif defined(__MINGW32__)
extern "C" __declspec(dllimport) void __stdcall DebugBreak();
#define CATCH_TRAP() DebugBreak()
#endif
#ifdef CATCH_TRAP
#define CATCH_BREAK_INTO_DEBUGGER() []{ if( Catch::isDebuggerActive() ) { CATCH_TRAP(); } }()
#else
#define CATCH_BREAK_INTO_DEBUGGER() []{}()
#endif
// end catch_debugger.h
// start catch_run_context.h
// start catch_fatal_condition.h
// start catch_windows_h_proxy.h
#if defined(CATCH_PLATFORM_WINDOWS)
#if !defined(NOMINMAX) && !defined(CATCH_CONFIG_NO_NOMINMAX)
# define CATCH_DEFINED_NOMINMAX
# define NOMINMAX
#endif
#if !defined(WIN32_LEAN_AND_MEAN) && !defined(CATCH_CONFIG_NO_WIN32_LEAN_AND_MEAN)
# define CATCH_DEFINED_WIN32_LEAN_AND_MEAN
# define WIN32_LEAN_AND_MEAN
#endif
#ifdef __AFXDLL
#include <AfxWin.h>
#else
#include <windows.h>
#endif
#ifdef CATCH_DEFINED_NOMINMAX
# undef NOMINMAX
#endif
#ifdef CATCH_DEFINED_WIN32_LEAN_AND_MEAN
# undef WIN32_LEAN_AND_MEAN
#endif
#endif // defined(CATCH_PLATFORM_WINDOWS)
// end catch_windows_h_proxy.h
#if defined( CATCH_CONFIG_WINDOWS_SEH )
namespace Catch {
struct FatalConditionHandler {
static LONG CALLBACK handleVectoredException(PEXCEPTION_POINTERS ExceptionInfo);
FatalConditionHandler();
static void reset();
~FatalConditionHandler();
private:
static bool isSet;
static ULONG guaranteeSize;
static PVOID exceptionHandlerHandle;
};
} // namespace Catch
#elif defined ( CATCH_CONFIG_POSIX_SIGNALS )
#include <signal.h>
namespace Catch {
struct FatalConditionHandler {
static bool isSet;
static struct sigaction oldSigActions[];
static stack_t oldSigStack;
static char altStackMem[];
static void handleSignal( int sig );
FatalConditionHandler();
~FatalConditionHandler();
static void reset();
};
} // namespace Catch
#else
namespace Catch {
struct FatalConditionHandler {
void reset();
};
}
#endif
// end catch_fatal_condition.h
#include <string>
namespace Catch {
struct IMutableContext;
///////////////////////////////////////////////////////////////////////////
class RunContext : public IResultCapture, public IRunner {
public:
RunContext( RunContext const& ) = delete;
RunContext& operator =( RunContext const& ) = delete;
explicit RunContext( IConfigPtr const& _config, IStreamingReporterPtr&& reporter );
~RunContext() override;
void testGroupStarting( std::string const& testSpec, std::size_t groupIndex, std::size_t groupsCount );
void testGroupEnded( std::string const& testSpec, Totals const& totals, std::size_t groupIndex, std::size_t groupsCount );
Totals runTest(TestCase const& testCase);
IConfigPtr config() const;
IStreamingReporter& reporter() const;
public: // IResultCapture
// Assertion handlers
void handleExpr
( AssertionInfo const& info,
ITransientExpression const& expr,
AssertionReaction& reaction ) override;
void handleMessage
( AssertionInfo const& info,
ResultWas::OfType resultType,
StringRef const& message,
AssertionReaction& reaction ) override;
void handleUnexpectedExceptionNotThrown
( AssertionInfo const& info,
AssertionReaction& reaction ) override;
void handleUnexpectedInflightException
( AssertionInfo const& info,
std::string const& message,
AssertionReaction& reaction ) override;
void handleIncomplete
( AssertionInfo const& info ) override;
void handleNonExpr
( AssertionInfo const &info,
ResultWas::OfType resultType,
AssertionReaction &reaction ) override;
bool sectionStarted( SectionInfo const& sectionInfo, Counts& assertions ) override;
void sectionEnded( SectionEndInfo const& endInfo ) override;
void sectionEndedEarly( SectionEndInfo const& endInfo ) override;
auto acquireGeneratorTracker( SourceLineInfo const& lineInfo ) -> IGeneratorTracker& override;
void benchmarkStarting( BenchmarkInfo const& info ) override;
void benchmarkEnded( BenchmarkStats const& stats ) override;
void pushScopedMessage( MessageInfo const& message ) override;
void popScopedMessage( MessageInfo const& message ) override;
std::string getCurrentTestName() const override;
const AssertionResult* getLastResult() const override;
void exceptionEarlyReported() override;
void handleFatalErrorCondition( StringRef message ) override;
bool lastAssertionPassed() override;
void assertionPassed() override;
public:
// !TBD We need to do this another way!
bool aborting() const final;
private:
void runCurrentTest( std::string& redirectedCout, std::string& redirectedCerr );
void invokeActiveTestCase();
void resetAssertionInfo();
bool testForMissingAssertions( Counts& assertions );
void assertionEnded( AssertionResult const& result );
void reportExpr
( AssertionInfo const &info,
ResultWas::OfType resultType,
ITransientExpression const *expr,
bool negated );
void populateReaction( AssertionReaction& reaction );
private:
void handleUnfinishedSections();
TestRunInfo m_runInfo;
IMutableContext& m_context;
TestCase const* m_activeTestCase = nullptr;
ITracker* m_testCaseTracker = nullptr;
Option<AssertionResult> m_lastResult;
IConfigPtr m_config;
Totals m_totals;
IStreamingReporterPtr m_reporter;
std::vector<MessageInfo> m_messages;
AssertionInfo m_lastAssertionInfo;
std::vector<SectionEndInfo> m_unfinishedSections;
std::vector<ITracker*> m_activeSections;
TrackerContext m_trackerContext;
bool m_lastAssertionPassed = false;
bool m_shouldReportUnexpected = true;
bool m_includeSuccessfulResults;
};
} // end namespace Catch
// end catch_run_context.h
namespace Catch {
namespace {
auto operator <<( std::ostream& os, ITransientExpression const& expr ) -> std::ostream& {
expr.streamReconstructedExpression( os );
return os;
}
}
LazyExpression::LazyExpression( bool isNegated )
: m_isNegated( isNegated )
{}
LazyExpression::LazyExpression( LazyExpression const& other ) : m_isNegated( other.m_isNegated ) {}
LazyExpression::operator bool() const {
return m_transientExpression != nullptr;
}
auto operator << ( std::ostream& os, LazyExpression const& lazyExpr ) -> std::ostream& {
if( lazyExpr.m_isNegated )
os << "!";
if( lazyExpr ) {
if( lazyExpr.m_isNegated && lazyExpr.m_transientExpression->isBinaryExpression() )
os << "(" << *lazyExpr.m_transientExpression << ")";
else
os << *lazyExpr.m_transientExpression;
}
else {
os << "{** error - unchecked empty expression requested **}";
}
return os;
}
AssertionHandler::AssertionHandler
( StringRef const& macroName,
SourceLineInfo const& lineInfo,
StringRef capturedExpression,
ResultDisposition::Flags resultDisposition )
: m_assertionInfo{ macroName, lineInfo, capturedExpression, resultDisposition },
m_resultCapture( getResultCapture() )
{}
void AssertionHandler::handleExpr( ITransientExpression const& expr ) {
m_resultCapture.handleExpr( m_assertionInfo, expr, m_reaction );
}
void AssertionHandler::handleMessage(ResultWas::OfType resultType, StringRef const& message) {
m_resultCapture.handleMessage( m_assertionInfo, resultType, message, m_reaction );
}
auto AssertionHandler::allowThrows() const -> bool {
return getCurrentContext().getConfig()->allowThrows();
}
void AssertionHandler::complete() {
setCompleted();
if( m_reaction.shouldDebugBreak ) {
// If you find your debugger stopping you here then go one level up on the
// call-stack for the code that caused it (typically a failed assertion)
// (To go back to the test and change execution, jump over the throw, next)
CATCH_BREAK_INTO_DEBUGGER();
}
if (m_reaction.shouldThrow) {
#if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
throw Catch::TestFailureException();
#else
CATCH_ERROR( "Test failure requires aborting test!" );
#endif
}
}
void AssertionHandler::setCompleted() {
m_completed = true;
}
void AssertionHandler::handleUnexpectedInflightException() {
m_resultCapture.handleUnexpectedInflightException( m_assertionInfo, Catch::translateActiveException(), m_reaction );
}
void AssertionHandler::handleExceptionThrownAsExpected() {
m_resultCapture.handleNonExpr(m_assertionInfo, ResultWas::Ok, m_reaction);
}
void AssertionHandler::handleExceptionNotThrownAsExpected() {
m_resultCapture.handleNonExpr(m_assertionInfo, ResultWas::Ok, m_reaction);
}
void AssertionHandler::handleUnexpectedExceptionNotThrown() {
m_resultCapture.handleUnexpectedExceptionNotThrown( m_assertionInfo, m_reaction );
}
void AssertionHandler::handleThrowingCallSkipped() {
m_resultCapture.handleNonExpr(m_assertionInfo, ResultWas::Ok, m_reaction);
}
// This is the overload that takes a string and infers the Equals matcher from it
// The more general overload, that takes any string matcher, is in catch_capture_matchers.cpp
void handleExceptionMatchExpr( AssertionHandler& handler, std::string const& str, StringRef const& matcherString ) {
handleExceptionMatchExpr( handler, Matchers::Equals( str ), matcherString );
}
} // namespace Catch
// end catch_assertionhandler.cpp
// start catch_assertionresult.cpp
namespace Catch {
AssertionResultData::AssertionResultData(ResultWas::OfType _resultType, LazyExpression const & _lazyExpression):
lazyExpression(_lazyExpression),
resultType(_resultType) {}
std::string AssertionResultData::reconstructExpression() const {
if( reconstructedExpression.empty() ) {
if( lazyExpression ) {
ReusableStringStream rss;
rss << lazyExpression;
reconstructedExpression = rss.str();
}
}
return reconstructedExpression;
}
AssertionResult::AssertionResult( AssertionInfo const& info, AssertionResultData const& data )
: m_info( info ),
m_resultData( data )
{}
// Result was a success
bool AssertionResult::succeeded() const {
return Catch::isOk( m_resultData.resultType );
}
// Result was a success, or failure is suppressed
bool AssertionResult::isOk() const {
return Catch::isOk( m_resultData.resultType ) || shouldSuppressFailure( m_info.resultDisposition );
}
ResultWas::OfType AssertionResult::getResultType() const {
return m_resultData.resultType;
}
bool AssertionResult::hasExpression() const {
return m_info.capturedExpression[0] != 0;
}
bool AssertionResult::hasMessage() const {
return !m_resultData.message.empty();
}
std::string AssertionResult::getExpression() const {
if( isFalseTest( m_info.resultDisposition ) )
return "!(" + m_info.capturedExpression + ")";
else
return m_info.capturedExpression;
}
std::string AssertionResult::getExpressionInMacro() const {
std::string expr;
if( m_info.macroName[0] == 0 )
expr = m_info.capturedExpression;
else {
expr.reserve( m_info.macroName.size() + m_info.capturedExpression.size() + 4 );
expr += m_info.macroName;
expr += "( ";
expr += m_info.capturedExpression;
expr += " )";
}
return expr;
}
bool AssertionResult::hasExpandedExpression() const {
return hasExpression() && getExpandedExpression() != getExpression();
}
std::string AssertionResult::getExpandedExpression() const {
std::string expr = m_resultData.reconstructExpression();
return expr.empty()
? getExpression()
: expr;
}
std::string AssertionResult::getMessage() const {
return m_resultData.message;
}
SourceLineInfo AssertionResult::getSourceInfo() const {
return m_info.lineInfo;
}
StringRef AssertionResult::getTestMacroName() const {
return m_info.macroName;
}
} // end namespace Catch
// end catch_assertionresult.cpp
// start catch_benchmark.cpp
namespace Catch {
auto BenchmarkLooper::getResolution() -> uint64_t {
return getEstimatedClockResolution() * getCurrentContext().getConfig()->benchmarkResolutionMultiple();
}
void BenchmarkLooper::reportStart() {
getResultCapture().benchmarkStarting( { m_name } );
}
auto BenchmarkLooper::needsMoreIterations() -> bool {
auto elapsed = m_timer.getElapsedNanoseconds();
// Exponentially increasing iterations until we're confident in our timer resolution
if( elapsed < m_resolution ) {
m_iterationsToRun *= 10;
return true;
}
getResultCapture().benchmarkEnded( { { m_name }, m_count, elapsed } );
return false;
}
} // end namespace Catch
// end catch_benchmark.cpp
// start catch_capture_matchers.cpp
namespace Catch {
using StringMatcher = Matchers::Impl::MatcherBase<std::string>;
// This is the general overload that takes a any string matcher
// There is another overload, in catch_assertionhandler.h/.cpp, that only takes a string and infers
// the Equals matcher (so the header does not mention matchers)
void handleExceptionMatchExpr( AssertionHandler& handler, StringMatcher const& matcher, StringRef const& matcherString ) {
std::string exceptionMessage = Catch::translateActiveException();
MatchExpr<std::string, StringMatcher const&> expr( exceptionMessage, matcher, matcherString );
handler.handleExpr( expr );
}
} // namespace Catch
// end catch_capture_matchers.cpp
// start catch_commandline.cpp
// start catch_commandline.h
// start catch_clara.h
// Use Catch's value for console width (store Clara's off to the side, if present)
#ifdef CLARA_CONFIG_CONSOLE_WIDTH
#define CATCH_TEMP_CLARA_CONFIG_CONSOLE_WIDTH CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH
#undef CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH
#endif
#define CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH CATCH_CONFIG_CONSOLE_WIDTH-1
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wweak-vtables"
#pragma clang diagnostic ignored "-Wexit-time-destructors"
#pragma clang diagnostic ignored "-Wshadow"
#endif
// start clara.hpp
// Copyright 2017 Two Blue Cubes Ltd. All rights reserved.
//
// Distributed under 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)
//
// See https://github.com/philsquared/Clara for more details
// Clara v1.1.5
#ifndef CATCH_CLARA_CONFIG_CONSOLE_WIDTH
#define CATCH_CLARA_CONFIG_CONSOLE_WIDTH 80
#endif
#ifndef CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH
#define CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH CATCH_CLARA_CONFIG_CONSOLE_WIDTH
#endif
#ifndef CLARA_CONFIG_OPTIONAL_TYPE
#ifdef __has_include
#if __has_include(<optional>) && __cplusplus >= 201703L
#include <optional>
#define CLARA_CONFIG_OPTIONAL_TYPE std::optional
#endif
#endif
#endif
// ----------- #included from clara_textflow.hpp -----------
// TextFlowCpp
//
// A single-header library for wrapping and laying out basic text, by Phil Nash
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// This project is hosted at https://github.com/philsquared/textflowcpp
#include <cassert>
#include <ostream>
#include <sstream>
#include <vector>
#ifndef CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH
#define CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH 80
#endif
namespace Catch {
namespace clara {
namespace TextFlow {
inline auto isWhitespace(char c) -> bool {
static std::string chars = " \t\n\r";
return chars.find(c) != std::string::npos;
}
inline auto isBreakableBefore(char c) -> bool {
static std::string chars = "[({<|";
return chars.find(c) != std::string::npos;
}
inline auto isBreakableAfter(char c) -> bool {
static std::string chars = "])}>.,:;*+-=&/\\";
return chars.find(c) != std::string::npos;
}
class Columns;
class Column {
std::vector<std::string> m_strings;
size_t m_width = CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH;
size_t m_indent = 0;
size_t m_initialIndent = std::string::npos;
public:
class iterator {
friend Column;
Column const& m_column;
size_t m_stringIndex = 0;
size_t m_pos = 0;
size_t m_len = 0;
size_t m_end = 0;
bool m_suffix = false;
iterator(Column const& column, size_t stringIndex)
: m_column(column),
m_stringIndex(stringIndex) {}
auto line() const -> std::string const& { return m_column.m_strings[m_stringIndex]; }
auto isBoundary(size_t at) const -> bool {
assert(at > 0);
assert(at <= line().size());
return at == line().size() ||
(isWhitespace(line()[at]) && !isWhitespace(line()[at - 1])) ||
isBreakableBefore(line()[at]) ||
isBreakableAfter(line()[at - 1]);
}
void calcLength() {
assert(m_stringIndex < m_column.m_strings.size());
m_suffix = false;
auto width = m_column.m_width - indent();
m_end = m_pos;
while (m_end < line().size() && line()[m_end] != '\n')
++m_end;
if (m_end < m_pos + width) {
m_len = m_end - m_pos;
} else {
size_t len = width;
while (len > 0 && !isBoundary(m_pos + len))
--len;
while (len > 0 && isWhitespace(line()[m_pos + len - 1]))
--len;
if (len > 0) {
m_len = len;
} else {
m_suffix = true;
m_len = width - 1;
}
}
}
auto indent() const -> size_t {
auto initial = m_pos == 0 && m_stringIndex == 0 ? m_column.m_initialIndent : std::string::npos;
return initial == std::string::npos ? m_column.m_indent : initial;
}
auto addIndentAndSuffix(std::string const &plain) const -> std::string {
return std::string(indent(), ' ') + (m_suffix ? plain + "-" : plain);
}
public:
using difference_type = std::ptrdiff_t;
using value_type = std::string;
using pointer = value_type * ;
using reference = value_type & ;
using iterator_category = std::forward_iterator_tag;
explicit iterator(Column const& column) : m_column(column) {
assert(m_column.m_width > m_column.m_indent);
assert(m_column.m_initialIndent == std::string::npos || m_column.m_width > m_column.m_initialIndent);
calcLength();
if (m_len == 0)
m_stringIndex++; // Empty string
}
auto operator *() const -> std::string {
assert(m_stringIndex < m_column.m_strings.size());
assert(m_pos <= m_end);
return addIndentAndSuffix(line().substr(m_pos, m_len));
}
auto operator ++() -> iterator& {
m_pos += m_len;
if (m_pos < line().size() && line()[m_pos] == '\n')
m_pos += 1;
else
while (m_pos < line().size() && isWhitespace(line()[m_pos]))
++m_pos;
if (m_pos == line().size()) {
m_pos = 0;
++m_stringIndex;
}
if (m_stringIndex < m_column.m_strings.size())
calcLength();
return *this;
}
auto operator ++(int) -> iterator {
iterator prev(*this);
operator++();
return prev;
}
auto operator ==(iterator const& other) const -> bool {
return
m_pos == other.m_pos &&
m_stringIndex == other.m_stringIndex &&
&m_column == &other.m_column;
}
auto operator !=(iterator const& other) const -> bool {
return !operator==(other);
}
};
using const_iterator = iterator;
explicit Column(std::string const& text) { m_strings.push_back(text); }
auto width(size_t newWidth) -> Column& {
assert(newWidth > 0);
m_width = newWidth;
return *this;
}
auto indent(size_t newIndent) -> Column& {
m_indent = newIndent;
return *this;
}
auto initialIndent(size_t newIndent) -> Column& {
m_initialIndent = newIndent;
return *this;
}
auto width() const -> size_t { return m_width; }
auto begin() const -> iterator { return iterator(*this); }
auto end() const -> iterator { return { *this, m_strings.size() }; }
inline friend std::ostream& operator << (std::ostream& os, Column const& col) {
bool first = true;
for (auto line : col) {
if (first)
first = false;
else
os << "\n";
os << line;
}
return os;
}
auto operator + (Column const& other)->Columns;
auto toString() const -> std::string {
std::ostringstream oss;
oss << *this;
return oss.str();
}
};
class Spacer : public Column {
public:
explicit Spacer(size_t spaceWidth) : Column("") {
width(spaceWidth);
}
};
class Columns {
std::vector<Column> m_columns;
public:
class iterator {
friend Columns;
struct EndTag {};
std::vector<Column> const& m_columns;
std::vector<Column::iterator> m_iterators;
size_t m_activeIterators;
iterator(Columns const& columns, EndTag)
: m_columns(columns.m_columns),
m_activeIterators(0) {
m_iterators.reserve(m_columns.size());
for (auto const& col : m_columns)
m_iterators.push_back(col.end());
}
public:
using difference_type = std::ptrdiff_t;
using value_type = std::string;
using pointer = value_type * ;
using reference = value_type & ;
using iterator_category = std::forward_iterator_tag;
explicit iterator(Columns const& columns)
: m_columns(columns.m_columns),
m_activeIterators(m_columns.size()) {
m_iterators.reserve(m_columns.size());
for (auto const& col : m_columns)
m_iterators.push_back(col.begin());
}
auto operator ==(iterator const& other) const -> bool {
return m_iterators == other.m_iterators;
}
auto operator !=(iterator const& other) const -> bool {
return m_iterators != other.m_iterators;
}
auto operator *() const -> std::string {
std::string row, padding;
for (size_t i = 0; i < m_columns.size(); ++i) {
auto width = m_columns[i].width();
if (m_iterators[i] != m_columns[i].end()) {
std::string col = *m_iterators[i];
row += padding + col;
if (col.size() < width)
padding = std::string(width - col.size(), ' ');
else
padding = "";
} else {
padding += std::string(width, ' ');
}
}
return row;
}
auto operator ++() -> iterator& {
for (size_t i = 0; i < m_columns.size(); ++i) {
if (m_iterators[i] != m_columns[i].end())
++m_iterators[i];
}
return *this;
}
auto operator ++(int) -> iterator {
iterator prev(*this);
operator++();
return prev;
}
};
using const_iterator = iterator;
auto begin() const -> iterator { return iterator(*this); }
auto end() const -> iterator { return { *this, iterator::EndTag() }; }
auto operator += (Column const& col) -> Columns& {
m_columns.push_back(col);
return *this;
}
auto operator + (Column const& col) -> Columns {
Columns combined = *this;
combined += col;
return combined;
}
inline friend std::ostream& operator << (std::ostream& os, Columns const& cols) {
bool first = true;
for (auto line : cols) {
if (first)
first = false;
else
os << "\n";
os << line;
}
return os;
}
auto toString() const -> std::string {
std::ostringstream oss;
oss << *this;
return oss.str();
}
};
inline auto Column::operator + (Column const& other) -> Columns {
Columns cols;
cols += *this;
cols += other;
return cols;
}
}
}
}
// ----------- end of #include from clara_textflow.hpp -----------
// ........... back in clara.hpp
#include <string>
#include <memory>
#include <set>
#include <algorithm>
#if !defined(CATCH_PLATFORM_WINDOWS) && ( defined(WIN32) || defined(__WIN32__) || defined(_WIN32) || defined(_MSC_VER) )
#define CATCH_PLATFORM_WINDOWS
#endif
namespace Catch { namespace clara {
namespace detail {
// Traits for extracting arg and return type of lambdas (for single argument lambdas)
template<typename L>
struct UnaryLambdaTraits : UnaryLambdaTraits<decltype( &L::operator() )> {};
template<typename ClassT, typename ReturnT, typename... Args>
struct UnaryLambdaTraits<ReturnT( ClassT::* )( Args... ) const> {
static const bool isValid = false;
};
template<typename ClassT, typename ReturnT, typename ArgT>
struct UnaryLambdaTraits<ReturnT( ClassT::* )( ArgT ) const> {
static const bool isValid = true;
using ArgType = typename std::remove_const<typename std::remove_reference<ArgT>::type>::type;
using ReturnType = ReturnT;
};
class TokenStream;
// Transport for raw args (copied from main args, or supplied via init list for testing)
class Args {
friend TokenStream;
std::string m_exeName;
std::vector<std::string> m_args;
public:
Args( int argc, char const* const* argv )
: m_exeName(argv[0]),
m_args(argv + 1, argv + argc) {}
Args( std::initializer_list<std::string> args )
: m_exeName( *args.begin() ),
m_args( args.begin()+1, args.end() )
{}
auto exeName() const -> std::string {
return m_exeName;
}
};
// Wraps a token coming from a token stream. These may not directly correspond to strings as a single string
// may encode an option + its argument if the : or = form is used
enum class TokenType {
Option, Argument
};
struct Token {
TokenType type;
std::string token;
};
inline auto isOptPrefix( char c ) -> bool {
return c == '-'
#ifdef CATCH_PLATFORM_WINDOWS
|| c == '/'
#endif
;
}
// Abstracts iterators into args as a stream of tokens, with option arguments uniformly handled
class TokenStream {
using Iterator = std::vector<std::string>::const_iterator;
Iterator it;
Iterator itEnd;
std::vector<Token> m_tokenBuffer;
void loadBuffer() {
m_tokenBuffer.resize( 0 );
// Skip any empty strings
while( it != itEnd && it->empty() )
++it;
if( it != itEnd ) {
auto const &next = *it;
if( isOptPrefix( next[0] ) ) {
auto delimiterPos = next.find_first_of( " :=" );
if( delimiterPos != std::string::npos ) {
m_tokenBuffer.push_back( { TokenType::Option, next.substr( 0, delimiterPos ) } );
m_tokenBuffer.push_back( { TokenType::Argument, next.substr( delimiterPos + 1 ) } );
} else {
if( next[1] != '-' && next.size() > 2 ) {
std::string opt = "- ";
for( size_t i = 1; i < next.size(); ++i ) {
opt[1] = next[i];
m_tokenBuffer.push_back( { TokenType::Option, opt } );
}
} else {
m_tokenBuffer.push_back( { TokenType::Option, next } );
}
}
} else {
m_tokenBuffer.push_back( { TokenType::Argument, next } );
}
}
}
public:
explicit TokenStream( Args const &args ) : TokenStream( args.m_args.begin(), args.m_args.end() ) {}
TokenStream( Iterator it, Iterator itEnd ) : it( it ), itEnd( itEnd ) {
loadBuffer();
}
explicit operator bool() const {
return !m_tokenBuffer.empty() || it != itEnd;
}
auto count() const -> size_t { return m_tokenBuffer.size() + (itEnd - it); }
auto operator*() const -> Token {
assert( !m_tokenBuffer.empty() );
return m_tokenBuffer.front();
}
auto operator->() const -> Token const * {
assert( !m_tokenBuffer.empty() );
return &m_tokenBuffer.front();
}
auto operator++() -> TokenStream & {
if( m_tokenBuffer.size() >= 2 ) {
m_tokenBuffer.erase( m_tokenBuffer.begin() );
} else {
if( it != itEnd )
++it;
loadBuffer();
}
return *this;
}
};
class ResultBase {
public:
enum Type {
Ok, LogicError, RuntimeError
};
protected:
ResultBase( Type type ) : m_type( type ) {}
virtual ~ResultBase() = default;
virtual void enforceOk() const = 0;
Type m_type;
};
template<typename T>
class ResultValueBase : public ResultBase {
public:
auto value() const -> T const & {
enforceOk();
return m_value;
}
protected:
ResultValueBase( Type type ) : ResultBase( type ) {}
ResultValueBase( ResultValueBase const &other ) : ResultBase( other ) {
if( m_type == ResultBase::Ok )
new( &m_value ) T( other.m_value );
}
ResultValueBase( Type, T const &value ) : ResultBase( Ok ) {
new( &m_value ) T( value );
}
auto operator=( ResultValueBase const &other ) -> ResultValueBase & {
if( m_type == ResultBase::Ok )
m_value.~T();
ResultBase::operator=(other);
if( m_type == ResultBase::Ok )
new( &m_value ) T( other.m_value );
return *this;
}
~ResultValueBase() override {
if( m_type == Ok )
m_value.~T();
}
union {
T m_value;
};
};
template<>
class ResultValueBase<void> : public ResultBase {
protected:
using ResultBase::ResultBase;
};
template<typename T = void>
class BasicResult : public ResultValueBase<T> {
public:
template<typename U>
explicit BasicResult( BasicResult<U> const &other )
: ResultValueBase<T>( other.type() ),
m_errorMessage( other.errorMessage() )
{
assert( type() != ResultBase::Ok );
}
template<typename U>
static auto ok( U const &value ) -> BasicResult { return { ResultBase::Ok, value }; }
static auto ok() -> BasicResult { return { ResultBase::Ok }; }
static auto logicError( std::string const &message ) -> BasicResult { return { ResultBase::LogicError, message }; }
static auto runtimeError( std::string const &message ) -> BasicResult { return { ResultBase::RuntimeError, message }; }
explicit operator bool() const { return m_type == ResultBase::Ok; }
auto type() const -> ResultBase::Type { return m_type; }
auto errorMessage() const -> std::string { return m_errorMessage; }
protected:
void enforceOk() const override {
// Errors shouldn't reach this point, but if they do
// the actual error message will be in m_errorMessage
assert( m_type != ResultBase::LogicError );
assert( m_type != ResultBase::RuntimeError );
if( m_type != ResultBase::Ok )
std::abort();
}
std::string m_errorMessage; // Only populated if resultType is an error
BasicResult( ResultBase::Type type, std::string const &message )
: ResultValueBase<T>(type),
m_errorMessage(message)
{
assert( m_type != ResultBase::Ok );
}
using ResultValueBase<T>::ResultValueBase;
using ResultBase::m_type;
};
enum class ParseResultType {
Matched, NoMatch, ShortCircuitAll, ShortCircuitSame
};
class ParseState {
public:
ParseState( ParseResultType type, TokenStream const &remainingTokens )
: m_type(type),
m_remainingTokens( remainingTokens )
{}
auto type() const -> ParseResultType { return m_type; }
auto remainingTokens() const -> TokenStream { return m_remainingTokens; }
private:
ParseResultType m_type;
TokenStream m_remainingTokens;
};
using Result = BasicResult<void>;
using ParserResult = BasicResult<ParseResultType>;
using InternalParseResult = BasicResult<ParseState>;
struct HelpColumns {
std::string left;
std::string right;
};
template<typename T>
inline auto convertInto( std::string const &source, T& target ) -> ParserResult {
std::stringstream ss;
ss << source;
ss >> target;
if( ss.fail() )
return ParserResult::runtimeError( "Unable to convert '" + source + "' to destination type" );
else
return ParserResult::ok( ParseResultType::Matched );
}
inline auto convertInto( std::string const &source, std::string& target ) -> ParserResult {
target = source;
return ParserResult::ok( ParseResultType::Matched );
}
inline auto convertInto( std::string const &source, bool &target ) -> ParserResult {
std::string srcLC = source;
std::transform( srcLC.begin(), srcLC.end(), srcLC.begin(), []( char c ) { return static_cast<char>( ::tolower(c) ); } );
if (srcLC == "y" || srcLC == "1" || srcLC == "true" || srcLC == "yes" || srcLC == "on")
target = true;
else if (srcLC == "n" || srcLC == "0" || srcLC == "false" || srcLC == "no" || srcLC == "off")
target = false;
else
return ParserResult::runtimeError( "Expected a boolean value but did not recognise: '" + source + "'" );
return ParserResult::ok( ParseResultType::Matched );
}
#ifdef CLARA_CONFIG_OPTIONAL_TYPE
template<typename T>
inline auto convertInto( std::string const &source, CLARA_CONFIG_OPTIONAL_TYPE<T>& target ) -> ParserResult {
T temp;
auto result = convertInto( source, temp );
if( result )
target = std::move(temp);
return result;
}
#endif // CLARA_CONFIG_OPTIONAL_TYPE
struct NonCopyable {
NonCopyable() = default;
NonCopyable( NonCopyable const & ) = delete;
NonCopyable( NonCopyable && ) = delete;
NonCopyable &operator=( NonCopyable const & ) = delete;
NonCopyable &operator=( NonCopyable && ) = delete;
};
struct BoundRef : NonCopyable {
virtual ~BoundRef() = default;
virtual auto isContainer() const -> bool { return false; }
virtual auto isFlag() const -> bool { return false; }
};
struct BoundValueRefBase : BoundRef {
virtual auto setValue( std::string const &arg ) -> ParserResult = 0;
};
struct BoundFlagRefBase : BoundRef {
virtual auto setFlag( bool flag ) -> ParserResult = 0;
virtual auto isFlag() const -> bool { return true; }
};
template<typename T>
struct BoundValueRef : BoundValueRefBase {
T &m_ref;
explicit BoundValueRef( T &ref ) : m_ref( ref ) {}
auto setValue( std::string const &arg ) -> ParserResult override {
return convertInto( arg, m_ref );
}
};
template<typename T>
struct BoundValueRef<std::vector<T>> : BoundValueRefBase {
std::vector<T> &m_ref;
explicit BoundValueRef( std::vector<T> &ref ) : m_ref( ref ) {}
auto isContainer() const -> bool override { return true; }
auto setValue( std::string const &arg ) -> ParserResult override {
T temp;
auto result = convertInto( arg, temp );
if( result )
m_ref.push_back( temp );
return result;
}
};
struct BoundFlagRef : BoundFlagRefBase {
bool &m_ref;
explicit BoundFlagRef( bool &ref ) : m_ref( ref ) {}
auto setFlag( bool flag ) -> ParserResult override {
m_ref = flag;
return ParserResult::ok( ParseResultType::Matched );
}
};
template<typename ReturnType>
struct LambdaInvoker {
static_assert( std::is_same<ReturnType, ParserResult>::value, "Lambda must return void or clara::ParserResult" );
template<typename L, typename ArgType>
static auto invoke( L const &lambda, ArgType const &arg ) -> ParserResult {
return lambda( arg );
}
};
template<>
struct LambdaInvoker<void> {
template<typename L, typename ArgType>
static auto invoke( L const &lambda, ArgType const &arg ) -> ParserResult {
lambda( arg );
return ParserResult::ok( ParseResultType::Matched );
}
};
template<typename ArgType, typename L>
inline auto invokeLambda( L const &lambda, std::string const &arg ) -> ParserResult {
ArgType temp{};
auto result = convertInto( arg, temp );
return !result
? result
: LambdaInvoker<typename UnaryLambdaTraits<L>::ReturnType>::invoke( lambda, temp );
}
template<typename L>
struct BoundLambda : BoundValueRefBase {
L m_lambda;
static_assert( UnaryLambdaTraits<L>::isValid, "Supplied lambda must take exactly one argument" );
explicit BoundLambda( L const &lambda ) : m_lambda( lambda ) {}
auto setValue( std::string const &arg ) -> ParserResult override {
return invokeLambda<typename UnaryLambdaTraits<L>::ArgType>( m_lambda, arg );
}
};
template<typename L>
struct BoundFlagLambda : BoundFlagRefBase {
L m_lambda;
static_assert( UnaryLambdaTraits<L>::isValid, "Supplied lambda must take exactly one argument" );
static_assert( std::is_same<typename UnaryLambdaTraits<L>::ArgType, bool>::value, "flags must be boolean" );
explicit BoundFlagLambda( L const &lambda ) : m_lambda( lambda ) {}
auto setFlag( bool flag ) -> ParserResult override {
return LambdaInvoker<typename UnaryLambdaTraits<L>::ReturnType>::invoke( m_lambda, flag );
}
};
enum class Optionality { Optional, Required };
struct Parser;
class ParserBase {
public:
virtual ~ParserBase() = default;
virtual auto validate() const -> Result { return Result::ok(); }
virtual auto parse( std::string const& exeName, TokenStream const &tokens) const -> InternalParseResult = 0;
virtual auto cardinality() const -> size_t { return 1; }
auto parse( Args const &args ) const -> InternalParseResult {
return parse( args.exeName(), TokenStream( args ) );
}
};
template<typename DerivedT>
class ComposableParserImpl : public ParserBase {
public:
template<typename T>
auto operator|( T const &other ) const -> Parser;
template<typename T>
auto operator+( T const &other ) const -> Parser;
};
// Common code and state for Args and Opts
template<typename DerivedT>
class ParserRefImpl : public ComposableParserImpl<DerivedT> {
protected:
Optionality m_optionality = Optionality::Optional;
std::shared_ptr<BoundRef> m_ref;
std::string m_hint;
std::string m_description;
explicit ParserRefImpl( std::shared_ptr<BoundRef> const &ref ) : m_ref( ref ) {}
public:
template<typename T>
ParserRefImpl( T &ref, std::string const &hint )
: m_ref( std::make_shared<BoundValueRef<T>>( ref ) ),
m_hint( hint )
{}
template<typename LambdaT>
ParserRefImpl( LambdaT const &ref, std::string const &hint )
: m_ref( std::make_shared<BoundLambda<LambdaT>>( ref ) ),
m_hint(hint)
{}
auto operator()( std::string const &description ) -> DerivedT & {
m_description = description;
return static_cast<DerivedT &>( *this );
}
auto optional() -> DerivedT & {
m_optionality = Optionality::Optional;
return static_cast<DerivedT &>( *this );
};
auto required() -> DerivedT & {
m_optionality = Optionality::Required;
return static_cast<DerivedT &>( *this );
};
auto isOptional() const -> bool {
return m_optionality == Optionality::Optional;
}
auto cardinality() const -> size_t override {
if( m_ref->isContainer() )
return 0;
else
return 1;
}
auto hint() const -> std::string { return m_hint; }
};
class ExeName : public ComposableParserImpl<ExeName> {
std::shared_ptr<std::string> m_name;
std::shared_ptr<BoundValueRefBase> m_ref;
template<typename LambdaT>
static auto makeRef(LambdaT const &lambda) -> std::shared_ptr<BoundValueRefBase> {
return std::make_shared<BoundLambda<LambdaT>>( lambda) ;
}
public:
ExeName() : m_name( std::make_shared<std::string>( "<executable>" ) ) {}
explicit ExeName( std::string &ref ) : ExeName() {
m_ref = std::make_shared<BoundValueRef<std::string>>( ref );
}
template<typename LambdaT>
explicit ExeName( LambdaT const& lambda ) : ExeName() {
m_ref = std::make_shared<BoundLambda<LambdaT>>( lambda );
}
// The exe name is not parsed out of the normal tokens, but is handled specially
auto parse( std::string const&, TokenStream const &tokens ) const -> InternalParseResult override {
return InternalParseResult::ok( ParseState( ParseResultType::NoMatch, tokens ) );
}
auto name() const -> std::string { return *m_name; }
auto set( std::string const& newName ) -> ParserResult {
auto lastSlash = newName.find_last_of( "\\/" );
auto filename = ( lastSlash == std::string::npos )
? newName
: newName.substr( lastSlash+1 );
*m_name = filename;
if( m_ref )
return m_ref->setValue( filename );
else
return ParserResult::ok( ParseResultType::Matched );
}
};
class Arg : public ParserRefImpl<Arg> {
public:
using ParserRefImpl::ParserRefImpl;
auto parse( std::string const &, TokenStream const &tokens ) const -> InternalParseResult override {
auto validationResult = validate();
if( !validationResult )
return InternalParseResult( validationResult );
auto remainingTokens = tokens;
auto const &token = *remainingTokens;
if( token.type != TokenType::Argument )
return InternalParseResult::ok( ParseState( ParseResultType::NoMatch, remainingTokens ) );
assert( !m_ref->isFlag() );
auto valueRef = static_cast<detail::BoundValueRefBase*>( m_ref.get() );
auto result = valueRef->setValue( remainingTokens->token );
if( !result )
return InternalParseResult( result );
else
return InternalParseResult::ok( ParseState( ParseResultType::Matched, ++remainingTokens ) );
}
};
inline auto normaliseOpt( std::string const &optName ) -> std::string {
#ifdef CATCH_PLATFORM_WINDOWS
if( optName[0] == '/' )
return "-" + optName.substr( 1 );
else
#endif
return optName;
}
class Opt : public ParserRefImpl<Opt> {
protected:
std::vector<std::string> m_optNames;
public:
template<typename LambdaT>
explicit Opt( LambdaT const &ref ) : ParserRefImpl( std::make_shared<BoundFlagLambda<LambdaT>>( ref ) ) {}
explicit Opt( bool &ref ) : ParserRefImpl( std::make_shared<BoundFlagRef>( ref ) ) {}
template<typename LambdaT>
Opt( LambdaT const &ref, std::string const &hint ) : ParserRefImpl( ref, hint ) {}
template<typename T>
Opt( T &ref, std::string const &hint ) : ParserRefImpl( ref, hint ) {}
auto operator[]( std::string const &optName ) -> Opt & {
m_optNames.push_back( optName );
return *this;
}
auto getHelpColumns() const -> std::vector<HelpColumns> {
std::ostringstream oss;
bool first = true;
for( auto const &opt : m_optNames ) {
if (first)
first = false;
else
oss << ", ";
oss << opt;
}
if( !m_hint.empty() )
oss << " <" << m_hint << ">";
return { { oss.str(), m_description } };
}
auto isMatch( std::string const &optToken ) const -> bool {
auto normalisedToken = normaliseOpt( optToken );
for( auto const &name : m_optNames ) {
if( normaliseOpt( name ) == normalisedToken )
return true;
}
return false;
}
using ParserBase::parse;
auto parse( std::string const&, TokenStream const &tokens ) const -> InternalParseResult override {
auto validationResult = validate();
if( !validationResult )
return InternalParseResult( validationResult );
auto remainingTokens = tokens;
if( remainingTokens && remainingTokens->type == TokenType::Option ) {
auto const &token = *remainingTokens;
if( isMatch(token.token ) ) {
if( m_ref->isFlag() ) {
auto flagRef = static_cast<detail::BoundFlagRefBase*>( m_ref.get() );
auto result = flagRef->setFlag( true );
if( !result )
return InternalParseResult( result );
if( result.value() == ParseResultType::ShortCircuitAll )
return InternalParseResult::ok( ParseState( result.value(), remainingTokens ) );
} else {
auto valueRef = static_cast<detail::BoundValueRefBase*>( m_ref.get() );
++remainingTokens;
if( !remainingTokens )
return InternalParseResult::runtimeError( "Expected argument following " + token.token );
auto const &argToken = *remainingTokens;
if( argToken.type != TokenType::Argument )
return InternalParseResult::runtimeError( "Expected argument following " + token.token );
auto result = valueRef->setValue( argToken.token );
if( !result )
return InternalParseResult( result );
if( result.value() == ParseResultType::ShortCircuitAll )
return InternalParseResult::ok( ParseState( result.value(), remainingTokens ) );
}
return InternalParseResult::ok( ParseState( ParseResultType::Matched, ++remainingTokens ) );
}
}
return InternalParseResult::ok( ParseState( ParseResultType::NoMatch, remainingTokens ) );
}
auto validate() const -> Result override {
if( m_optNames.empty() )
return Result::logicError( "No options supplied to Opt" );
for( auto const &name : m_optNames ) {
if( name.empty() )
return Result::logicError( "Option name cannot be empty" );
#ifdef CATCH_PLATFORM_WINDOWS
if( name[0] != '-' && name[0] != '/' )
return Result::logicError( "Option name must begin with '-' or '/'" );
#else
if( name[0] != '-' )
return Result::logicError( "Option name must begin with '-'" );
#endif
}
return ParserRefImpl::validate();
}
};
struct Help : Opt {
Help( bool &showHelpFlag )
: Opt([&]( bool flag ) {
showHelpFlag = flag;
return ParserResult::ok( ParseResultType::ShortCircuitAll );
})
{
static_cast<Opt &>( *this )
("display usage information")
["-?"]["-h"]["--help"]
.optional();
}
};
struct Parser : ParserBase {
mutable ExeName m_exeName;
std::vector<Opt> m_options;
std::vector<Arg> m_args;
auto operator|=( ExeName const &exeName ) -> Parser & {
m_exeName = exeName;
return *this;
}
auto operator|=( Arg const &arg ) -> Parser & {
m_args.push_back(arg);
return *this;
}
auto operator|=( Opt const &opt ) -> Parser & {
m_options.push_back(opt);
return *this;
}
auto operator|=( Parser const &other ) -> Parser & {
m_options.insert(m_options.end(), other.m_options.begin(), other.m_options.end());
m_args.insert(m_args.end(), other.m_args.begin(), other.m_args.end());
return *this;
}
template<typename T>
auto operator|( T const &other ) const -> Parser {
return Parser( *this ) |= other;
}
// Forward deprecated interface with '+' instead of '|'
template<typename T>
auto operator+=( T const &other ) -> Parser & { return operator|=( other ); }
template<typename T>
auto operator+( T const &other ) const -> Parser { return operator|( other ); }
auto getHelpColumns() const -> std::vector<HelpColumns> {
std::vector<HelpColumns> cols;
for (auto const &o : m_options) {
auto childCols = o.getHelpColumns();
cols.insert( cols.end(), childCols.begin(), childCols.end() );
}
return cols;
}
void writeToStream( std::ostream &os ) const {
if (!m_exeName.name().empty()) {
os << "usage:\n" << " " << m_exeName.name() << " ";
bool required = true, first = true;
for( auto const &arg : m_args ) {
if (first)
first = false;
else
os << " ";
if( arg.isOptional() && required ) {
os << "[";
required = false;
}
os << "<" << arg.hint() << ">";
if( arg.cardinality() == 0 )
os << " ... ";
}
if( !required )
os << "]";
if( !m_options.empty() )
os << " options";
os << "\n\nwhere options are:" << std::endl;
}
auto rows = getHelpColumns();
size_t consoleWidth = CATCH_CLARA_CONFIG_CONSOLE_WIDTH;
size_t optWidth = 0;
for( auto const &cols : rows )
optWidth = (std::max)(optWidth, cols.left.size() + 2);
optWidth = (std::min)(optWidth, consoleWidth/2);
for( auto const &cols : rows ) {
auto row =
TextFlow::Column( cols.left ).width( optWidth ).indent( 2 ) +
TextFlow::Spacer(4) +
TextFlow::Column( cols.right ).width( consoleWidth - 7 - optWidth );
os << row << std::endl;
}
}
friend auto operator<<( std::ostream &os, Parser const &parser ) -> std::ostream& {
parser.writeToStream( os );
return os;
}
auto validate() const -> Result override {
for( auto const &opt : m_options ) {
auto result = opt.validate();
if( !result )
return result;
}
for( auto const &arg : m_args ) {
auto result = arg.validate();
if( !result )
return result;
}
return Result::ok();
}
using ParserBase::parse;
auto parse( std::string const& exeName, TokenStream const &tokens ) const -> InternalParseResult override {
struct ParserInfo {
ParserBase const* parser = nullptr;
size_t count = 0;
};
const size_t totalParsers = m_options.size() + m_args.size();
assert( totalParsers < 512 );
// ParserInfo parseInfos[totalParsers]; // <-- this is what we really want to do
ParserInfo parseInfos[512];
{
size_t i = 0;
for (auto const &opt : m_options) parseInfos[i++].parser = &opt;
for (auto const &arg : m_args) parseInfos[i++].parser = &arg;
}
m_exeName.set( exeName );
auto result = InternalParseResult::ok( ParseState( ParseResultType::NoMatch, tokens ) );
while( result.value().remainingTokens() ) {
bool tokenParsed = false;
for( size_t i = 0; i < totalParsers; ++i ) {
auto& parseInfo = parseInfos[i];
if( parseInfo.parser->cardinality() == 0 || parseInfo.count < parseInfo.parser->cardinality() ) {
result = parseInfo.parser->parse(exeName, result.value().remainingTokens());
if (!result)
return result;
if (result.value().type() != ParseResultType::NoMatch) {
tokenParsed = true;
++parseInfo.count;
break;
}
}
}
if( result.value().type() == ParseResultType::ShortCircuitAll )
return result;
if( !tokenParsed )
return InternalParseResult::runtimeError( "Unrecognised token: " + result.value().remainingTokens()->token );
}
// !TBD Check missing required options
return result;
}
};
template<typename DerivedT>
template<typename T>
auto ComposableParserImpl<DerivedT>::operator|( T const &other ) const -> Parser {
return Parser() | static_cast<DerivedT const &>( *this ) | other;
}
} // namespace detail
// A Combined parser
using detail::Parser;
// A parser for options
using detail::Opt;
// A parser for arguments
using detail::Arg;
// Wrapper for argc, argv from main()
using detail::Args;
// Specifies the name of the executable
using detail::ExeName;
// Convenience wrapper for option parser that specifies the help option
using detail::Help;
// enum of result types from a parse
using detail::ParseResultType;
// Result type for parser operation
using detail::ParserResult;
}} // namespace Catch::clara
// end clara.hpp
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Restore Clara's value for console width, if present
#ifdef CATCH_TEMP_CLARA_CONFIG_CONSOLE_WIDTH
#define CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH CATCH_TEMP_CLARA_CONFIG_CONSOLE_WIDTH
#undef CATCH_TEMP_CLARA_CONFIG_CONSOLE_WIDTH
#endif
// end catch_clara.h
namespace Catch {
clara::Parser makeCommandLineParser( ConfigData& config );
} // end namespace Catch
// end catch_commandline.h
#include <fstream>
#include <ctime>
namespace Catch {
clara::Parser makeCommandLineParser( ConfigData& config ) {
using namespace clara;
auto const setWarning = [&]( std::string const& warning ) {
auto warningSet = [&]() {
if( warning == "NoAssertions" )
return WarnAbout::NoAssertions;
if ( warning == "NoTests" )
return WarnAbout::NoTests;
return WarnAbout::Nothing;
}();
if (warningSet == WarnAbout::Nothing)
return ParserResult::runtimeError( "Unrecognised warning: '" + warning + "'" );
config.warnings = static_cast<WarnAbout::What>( config.warnings | warningSet );
return ParserResult::ok( ParseResultType::Matched );
};
auto const loadTestNamesFromFile = [&]( std::string const& filename ) {
std::ifstream f( filename.c_str() );
if( !f.is_open() )
return ParserResult::runtimeError( "Unable to load input file: '" + filename + "'" );
std::string line;
while( std::getline( f, line ) ) {
line = trim(line);
if( !line.empty() && !startsWith( line, '#' ) ) {
if( !startsWith( line, '"' ) )
line = '"' + line + '"';
config.testsOrTags.push_back( line + ',' );
}
}
return ParserResult::ok( ParseResultType::Matched );
};
auto const setTestOrder = [&]( std::string const& order ) {
if( startsWith( "declared", order ) )
config.runOrder = RunTests::InDeclarationOrder;
else if( startsWith( "lexical", order ) )
config.runOrder = RunTests::InLexicographicalOrder;
else if( startsWith( "random", order ) )
config.runOrder = RunTests::InRandomOrder;
else
return clara::ParserResult::runtimeError( "Unrecognised ordering: '" + order + "'" );
return ParserResult::ok( ParseResultType::Matched );
};
auto const setRngSeed = [&]( std::string const& seed ) {
if( seed != "time" )
return clara::detail::convertInto( seed, config.rngSeed );
config.rngSeed = static_cast<unsigned int>( std::time(nullptr) );
return ParserResult::ok( ParseResultType::Matched );
};
auto const setColourUsage = [&]( std::string const& useColour ) {
auto mode = toLower( useColour );
if( mode == "yes" )
config.useColour = UseColour::Yes;
else if( mode == "no" )
config.useColour = UseColour::No;
else if( mode == "auto" )
config.useColour = UseColour::Auto;
else
return ParserResult::runtimeError( "colour mode must be one of: auto, yes or no. '" + useColour + "' not recognised" );
return ParserResult::ok( ParseResultType::Matched );
};
auto const setWaitForKeypress = [&]( std::string const& keypress ) {
auto keypressLc = toLower( keypress );
if( keypressLc == "start" )
config.waitForKeypress = WaitForKeypress::BeforeStart;
else if( keypressLc == "exit" )
config.waitForKeypress = WaitForKeypress::BeforeExit;
else if( keypressLc == "both" )
config.waitForKeypress = WaitForKeypress::BeforeStartAndExit;
else
return ParserResult::runtimeError( "keypress argument must be one of: start, exit or both. '" + keypress + "' not recognised" );
return ParserResult::ok( ParseResultType::Matched );
};
auto const setVerbosity = [&]( std::string const& verbosity ) {
auto lcVerbosity = toLower( verbosity );
if( lcVerbosity == "quiet" )
config.verbosity = Verbosity::Quiet;
else if( lcVerbosity == "normal" )
config.verbosity = Verbosity::Normal;
else if( lcVerbosity == "high" )
config.verbosity = Verbosity::High;
else
return ParserResult::runtimeError( "Unrecognised verbosity, '" + verbosity + "'" );
return ParserResult::ok( ParseResultType::Matched );
};
auto const setReporter = [&]( std::string const& reporter ) {
IReporterRegistry::FactoryMap const& factories = getRegistryHub().getReporterRegistry().getFactories();
auto lcReporter = toLower( reporter );
auto result = factories.find( lcReporter );
if( factories.end() != result )
config.reporterName = lcReporter;
else
return ParserResult::runtimeError( "Unrecognized reporter, '" + reporter + "'. Check available with --list-reporters" );
return ParserResult::ok( ParseResultType::Matched );
};
auto cli
= ExeName( config.processName )
| Help( config.showHelp )
| Opt( config.listTests )
["-l"]["--list-tests"]
( "list all/matching test cases" )
| Opt( config.listTags )
["-t"]["--list-tags"]
( "list all/matching tags" )
| Opt( config.showSuccessfulTests )
["-s"]["--success"]
( "include successful tests in output" )
| Opt( config.shouldDebugBreak )
["-b"]["--break"]
( "break into debugger on failure" )
| Opt( config.noThrow )
["-e"]["--nothrow"]
( "skip exception tests" )
| Opt( config.showInvisibles )
["-i"]["--invisibles"]
( "show invisibles (tabs, newlines)" )
| Opt( config.outputFilename, "filename" )
["-o"]["--out"]
( "output filename" )
| Opt( setReporter, "name" )
["-r"]["--reporter"]
( "reporter to use (defaults to console)" )
| Opt( config.name, "name" )
["-n"]["--name"]
( "suite name" )
| Opt( [&]( bool ){ config.abortAfter = 1; } )
["-a"]["--abort"]
( "abort at first failure" )
| Opt( [&]( int x ){ config.abortAfter = x; }, "no. failures" )
["-x"]["--abortx"]
( "abort after x failures" )
| Opt( setWarning, "warning name" )
["-w"]["--warn"]
( "enable warnings" )
| Opt( [&]( bool flag ) { config.showDurations = flag ? ShowDurations::Always : ShowDurations::Never; }, "yes|no" )
["-d"]["--durations"]
( "show test durations" )
| Opt( loadTestNamesFromFile, "filename" )
["-f"]["--input-file"]
( "load test names to run from a file" )
| Opt( config.filenamesAsTags )
["-#"]["--filenames-as-tags"]
( "adds a tag for the filename" )
| Opt( config.sectionsToRun, "section name" )
["-c"]["--section"]
( "specify section to run" )
| Opt( setVerbosity, "quiet|normal|high" )
["-v"]["--verbosity"]
( "set output verbosity" )
| Opt( config.listTestNamesOnly )
["--list-test-names-only"]
( "list all/matching test cases names only" )
| Opt( config.listReporters )
["--list-reporters"]
( "list all reporters" )
| Opt( setTestOrder, "decl|lex|rand" )
["--order"]
( "test case order (defaults to decl)" )
| Opt( setRngSeed, "'time'|number" )
["--rng-seed"]
( "set a specific seed for random numbers" )
| Opt( setColourUsage, "yes|no" )
["--use-colour"]
( "should output be colourised" )
| Opt( config.libIdentify )
["--libidentify"]
( "report name and version according to libidentify standard" )
| Opt( setWaitForKeypress, "start|exit|both" )
["--wait-for-keypress"]
( "waits for a keypress before exiting" )
| Opt( config.benchmarkResolutionMultiple, "multiplier" )
["--benchmark-resolution-multiple"]
( "multiple of clock resolution to run benchmarks" )
| Arg( config.testsOrTags, "test name|pattern|tags" )
( "which test or tests to use" );
return cli;
}
} // end namespace Catch
// end catch_commandline.cpp
// start catch_common.cpp
#include <cstring>
#include <ostream>
namespace Catch {
bool SourceLineInfo::empty() const noexcept {
return file[0] == '\0';
}
bool SourceLineInfo::operator == ( SourceLineInfo const& other ) const noexcept {
return line == other.line && (file == other.file || std::strcmp(file, other.file) == 0);
}
bool SourceLineInfo::operator < ( SourceLineInfo const& other ) const noexcept {
// We can assume that the same file will usually have the same pointer.
// Thus, if the pointers are the same, there is no point in calling the strcmp
return line < other.line || ( line == other.line && file != other.file && (std::strcmp(file, other.file) < 0));
}
std::ostream& operator << ( std::ostream& os, SourceLineInfo const& info ) {
#ifndef __GNUG__
os << info.file << '(' << info.line << ')';
#else
os << info.file << ':' << info.line;
#endif
return os;
}
std::string StreamEndStop::operator+() const {
return std::string();
}
NonCopyable::NonCopyable() = default;
NonCopyable::~NonCopyable() = default;
}
// end catch_common.cpp
// start catch_config.cpp
namespace Catch {
Config::Config( ConfigData const& data )
: m_data( data ),
m_stream( openStream() )
{
TestSpecParser parser(ITagAliasRegistry::get());
if (data.testsOrTags.empty()) {
parser.parse("~[.]"); // All not hidden tests
}
else {
m_hasTestFilters = true;
for( auto const& testOrTags : data.testsOrTags )
parser.parse( testOrTags );
}
m_testSpec = parser.testSpec();
}
std::string const& Config::getFilename() const {
return m_data.outputFilename ;
}
bool Config::listTests() const { return m_data.listTests; }
bool Config::listTestNamesOnly() const { return m_data.listTestNamesOnly; }
bool Config::listTags() const { return m_data.listTags; }
bool Config::listReporters() const { return m_data.listReporters; }
std::string Config::getProcessName() const { return m_data.processName; }
std::string const& Config::getReporterName() const { return m_data.reporterName; }
std::vector<std::string> const& Config::getTestsOrTags() const { return m_data.testsOrTags; }
std::vector<std::string> const& Config::getSectionsToRun() const { return m_data.sectionsToRun; }
TestSpec const& Config::testSpec() const { return m_testSpec; }
bool Config::hasTestFilters() const { return m_hasTestFilters; }
bool Config::showHelp() const { return m_data.showHelp; }
// IConfig interface
bool Config::allowThrows() const { return !m_data.noThrow; }
std::ostream& Config::stream() const { return m_stream->stream(); }
std::string Config::name() const { return m_data.name.empty() ? m_data.processName : m_data.name; }
bool Config::includeSuccessfulResults() const { return m_data.showSuccessfulTests; }
bool Config::warnAboutMissingAssertions() const { return !!(m_data.warnings & WarnAbout::NoAssertions); }
bool Config::warnAboutNoTests() const { return !!(m_data.warnings & WarnAbout::NoTests); }
ShowDurations::OrNot Config::showDurations() const { return m_data.showDurations; }
RunTests::InWhatOrder Config::runOrder() const { return m_data.runOrder; }
unsigned int Config::rngSeed() const { return m_data.rngSeed; }
int Config::benchmarkResolutionMultiple() const { return m_data.benchmarkResolutionMultiple; }
UseColour::YesOrNo Config::useColour() const { return m_data.useColour; }
bool Config::shouldDebugBreak() const { return m_data.shouldDebugBreak; }
int Config::abortAfter() const { return m_data.abortAfter; }
bool Config::showInvisibles() const { return m_data.showInvisibles; }
Verbosity Config::verbosity() const { return m_data.verbosity; }
IStream const* Config::openStream() {
return Catch::makeStream(m_data.outputFilename);
}
} // end namespace Catch
// end catch_config.cpp
// start catch_console_colour.cpp
#if defined(__clang__)
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wexit-time-destructors"
#endif
// start catch_errno_guard.h
namespace Catch {
class ErrnoGuard {
public:
ErrnoGuard();
~ErrnoGuard();
private:
int m_oldErrno;
};
}
// end catch_errno_guard.h
#include <sstream>
namespace Catch {
namespace {
struct IColourImpl {
virtual ~IColourImpl() = default;
virtual void use( Colour::Code _colourCode ) = 0;
};
struct NoColourImpl : IColourImpl {
void use( Colour::Code ) {}
static IColourImpl* instance() {
static NoColourImpl s_instance;
return &s_instance;
}
};
} // anon namespace
} // namespace Catch
#if !defined( CATCH_CONFIG_COLOUR_NONE ) && !defined( CATCH_CONFIG_COLOUR_WINDOWS ) && !defined( CATCH_CONFIG_COLOUR_ANSI )
# ifdef CATCH_PLATFORM_WINDOWS
# define CATCH_CONFIG_COLOUR_WINDOWS
# else
# define CATCH_CONFIG_COLOUR_ANSI
# endif
#endif
#if defined ( CATCH_CONFIG_COLOUR_WINDOWS ) /////////////////////////////////////////
namespace Catch {
namespace {
class Win32ColourImpl : public IColourImpl {
public:
Win32ColourImpl() : stdoutHandle( GetStdHandle(STD_OUTPUT_HANDLE) )
{
CONSOLE_SCREEN_BUFFER_INFO csbiInfo;
GetConsoleScreenBufferInfo( stdoutHandle, &csbiInfo );
originalForegroundAttributes = csbiInfo.wAttributes & ~( BACKGROUND_GREEN | BACKGROUND_RED | BACKGROUND_BLUE | BACKGROUND_INTENSITY );
originalBackgroundAttributes = csbiInfo.wAttributes & ~( FOREGROUND_GREEN | FOREGROUND_RED | FOREGROUND_BLUE | FOREGROUND_INTENSITY );
}
virtual void use( Colour::Code _colourCode ) override {
switch( _colourCode ) {
case Colour::None: return setTextAttribute( originalForegroundAttributes );
case Colour::White: return setTextAttribute( FOREGROUND_GREEN | FOREGROUND_RED | FOREGROUND_BLUE );
case Colour::Red: return setTextAttribute( FOREGROUND_RED );
case Colour::Green: return setTextAttribute( FOREGROUND_GREEN );
case Colour::Blue: return setTextAttribute( FOREGROUND_BLUE );
case Colour::Cyan: return setTextAttribute( FOREGROUND_BLUE | FOREGROUND_GREEN );
case Colour::Yellow: return setTextAttribute( FOREGROUND_RED | FOREGROUND_GREEN );
case Colour::Grey: return setTextAttribute( 0 );
case Colour::LightGrey: return setTextAttribute( FOREGROUND_INTENSITY );
case Colour::BrightRed: return setTextAttribute( FOREGROUND_INTENSITY | FOREGROUND_RED );
case Colour::BrightGreen: return setTextAttribute( FOREGROUND_INTENSITY | FOREGROUND_GREEN );
case Colour::BrightWhite: return setTextAttribute( FOREGROUND_INTENSITY | FOREGROUND_GREEN | FOREGROUND_RED | FOREGROUND_BLUE );
case Colour::BrightYellow: return setTextAttribute( FOREGROUND_INTENSITY | FOREGROUND_RED | FOREGROUND_GREEN );
case Colour::Bright: CATCH_INTERNAL_ERROR( "not a colour" );
default:
CATCH_ERROR( "Unknown colour requested" );
}
}
private:
void setTextAttribute( WORD _textAttribute ) {
SetConsoleTextAttribute( stdoutHandle, _textAttribute | originalBackgroundAttributes );
}
HANDLE stdoutHandle;
WORD originalForegroundAttributes;
WORD originalBackgroundAttributes;
};
IColourImpl* platformColourInstance() {
static Win32ColourImpl s_instance;
IConfigPtr config = getCurrentContext().getConfig();
UseColour::YesOrNo colourMode = config
? config->useColour()
: UseColour::Auto;
if( colourMode == UseColour::Auto )
colourMode = UseColour::Yes;
return colourMode == UseColour::Yes
? &s_instance
: NoColourImpl::instance();
}
} // end anon namespace
} // end namespace Catch
#elif defined( CATCH_CONFIG_COLOUR_ANSI ) //////////////////////////////////////
#include <unistd.h>
namespace Catch {
namespace {
// use POSIX/ ANSI console terminal codes
// Thanks to Adam Strzelecki for original contribution
// (http://github.com/nanoant)
// https://github.com/philsquared/Catch/pull/131
class PosixColourImpl : public IColourImpl {
public:
virtual void use( Colour::Code _colourCode ) override {
switch( _colourCode ) {
case Colour::None:
case Colour::White: return setColour( "[0m" );
case Colour::Red: return setColour( "[0;31m" );
case Colour::Green: return setColour( "[0;32m" );
case Colour::Blue: return setColour( "[0;34m" );
case Colour::Cyan: return setColour( "[0;36m" );
case Colour::Yellow: return setColour( "[0;33m" );
case Colour::Grey: return setColour( "[1;30m" );
case Colour::LightGrey: return setColour( "[0;37m" );
case Colour::BrightRed: return setColour( "[1;31m" );
case Colour::BrightGreen: return setColour( "[1;32m" );
case Colour::BrightWhite: return setColour( "[1;37m" );
case Colour::BrightYellow: return setColour( "[1;33m" );
case Colour::Bright: CATCH_INTERNAL_ERROR( "not a colour" );
default: CATCH_INTERNAL_ERROR( "Unknown colour requested" );
}
}
static IColourImpl* instance() {
static PosixColourImpl s_instance;
return &s_instance;
}
private:
void setColour( const char* _escapeCode ) {
getCurrentContext().getConfig()->stream()
<< '\033' << _escapeCode;
}
};
bool useColourOnPlatform() {
return
#ifdef CATCH_PLATFORM_MAC
!isDebuggerActive() &&
#endif
#if !(defined(__DJGPP__) && defined(__STRICT_ANSI__))
isatty(STDOUT_FILENO)
#else
false
#endif
;
}
IColourImpl* platformColourInstance() {
ErrnoGuard guard;
IConfigPtr config = getCurrentContext().getConfig();
UseColour::YesOrNo colourMode = config
? config->useColour()
: UseColour::Auto;
if( colourMode == UseColour::Auto )
colourMode = useColourOnPlatform()
? UseColour::Yes
: UseColour::No;
return colourMode == UseColour::Yes
? PosixColourImpl::instance()
: NoColourImpl::instance();
}
} // end anon namespace
} // end namespace Catch
#else // not Windows or ANSI ///////////////////////////////////////////////
namespace Catch {
static IColourImpl* platformColourInstance() { return NoColourImpl::instance(); }
} // end namespace Catch
#endif // Windows/ ANSI/ None
namespace Catch {
Colour::Colour( Code _colourCode ) { use( _colourCode ); }
Colour::Colour( Colour&& rhs ) noexcept {
m_moved = rhs.m_moved;
rhs.m_moved = true;
}
Colour& Colour::operator=( Colour&& rhs ) noexcept {
m_moved = rhs.m_moved;
rhs.m_moved = true;
return *this;
}
Colour::~Colour(){ if( !m_moved ) use( None ); }
void Colour::use( Code _colourCode ) {
static IColourImpl* impl = platformColourInstance();
impl->use( _colourCode );
}
std::ostream& operator << ( std::ostream& os, Colour const& ) {
return os;
}
} // end namespace Catch
#if defined(__clang__)
# pragma clang diagnostic pop
#endif
// end catch_console_colour.cpp
// start catch_context.cpp
namespace Catch {
class Context : public IMutableContext, NonCopyable {
public: // IContext
virtual IResultCapture* getResultCapture() override {
return m_resultCapture;
}
virtual IRunner* getRunner() override {
return m_runner;
}
virtual IConfigPtr const& getConfig() const override {
return m_config;
}
virtual ~Context() override;
public: // IMutableContext
virtual void setResultCapture( IResultCapture* resultCapture ) override {
m_resultCapture = resultCapture;
}
virtual void setRunner( IRunner* runner ) override {
m_runner = runner;
}
virtual void setConfig( IConfigPtr const& config ) override {
m_config = config;
}
friend IMutableContext& getCurrentMutableContext();
private:
IConfigPtr m_config;
IRunner* m_runner = nullptr;
IResultCapture* m_resultCapture = nullptr;
};
IMutableContext *IMutableContext::currentContext = nullptr;
void IMutableContext::createContext()
{
currentContext = new Context();
}
void cleanUpContext() {
delete IMutableContext::currentContext;
IMutableContext::currentContext = nullptr;
}
IContext::~IContext() = default;
IMutableContext::~IMutableContext() = default;
Context::~Context() = default;
}
// end catch_context.cpp
// start catch_debug_console.cpp
// start catch_debug_console.h
#include <string>
namespace Catch {
void writeToDebugConsole( std::string const& text );
}
// end catch_debug_console.h
#ifdef CATCH_PLATFORM_WINDOWS
namespace Catch {
void writeToDebugConsole( std::string const& text ) {
::OutputDebugStringA( text.c_str() );
}
}
#else
namespace Catch {
void writeToDebugConsole( std::string const& text ) {
// !TBD: Need a version for Mac/ XCode and other IDEs
Catch::cout() << text;
}
}
#endif // Platform
// end catch_debug_console.cpp
// start catch_debugger.cpp
#ifdef CATCH_PLATFORM_MAC
# include <assert.h>
# include <stdbool.h>
# include <sys/types.h>
# include <unistd.h>
# include <sys/sysctl.h>
# include <cstddef>
# include <ostream>
namespace Catch {
// The following function is taken directly from the following technical note:
// http://developer.apple.com/library/mac/#qa/qa2004/qa1361.html
// Returns true if the current process is being debugged (either
// running under the debugger or has a debugger attached post facto).
bool isDebuggerActive(){
int mib[4];
struct kinfo_proc info;
std::size_t size;
// Initialize the flags so that, if sysctl fails for some bizarre
// reason, we get a predictable result.
info.kp_proc.p_flag = 0;
// Initialize mib, which tells sysctl the info we want, in this case
// we're looking for information about a specific process ID.
mib[0] = CTL_KERN;
mib[1] = KERN_PROC;
mib[2] = KERN_PROC_PID;
mib[3] = getpid();
// Call sysctl.
size = sizeof(info);
if( sysctl(mib, sizeof(mib) / sizeof(*mib), &info, &size, nullptr, 0) != 0 ) {
Catch::cerr() << "\n** Call to sysctl failed - unable to determine if debugger is active **\n" << std::endl;
return false;
}
// We're being debugged if the P_TRACED flag is set.
return ( (info.kp_proc.p_flag & P_TRACED) != 0 );
}
} // namespace Catch
#elif defined(CATCH_PLATFORM_LINUX)
#include <fstream>
#include <string>
namespace Catch{
// The standard POSIX way of detecting a debugger is to attempt to
// ptrace() the process, but this needs to be done from a child and not
// this process itself to still allow attaching to this process later
// if wanted, so is rather heavy. Under Linux we have the PID of the
// "debugger" (which doesn't need to be gdb, of course, it could also
// be strace, for example) in /proc/$PID/status, so just get it from
// there instead.
bool isDebuggerActive(){
// Libstdc++ has a bug, where std::ifstream sets errno to 0
// This way our users can properly assert over errno values
ErrnoGuard guard;
std::ifstream in("/proc/self/status");
for( std::string line; std::getline(in, line); ) {
static const int PREFIX_LEN = 11;
if( line.cmp(0, PREFIX_LEN, "TracerPid:\t") == 0 ) {
// We're traced if the PID is not 0 and no other PID starts
// with 0 digit, so it's enough to check for just a single
// character.
return line.length() > PREFIX_LEN && line[PREFIX_LEN] != '0';
}
}
return false;
}
} // namespace Catch
#elif defined(_MSC_VER)
extern "C" __declspec(dllimport) int __stdcall IsDebuggerPresent();
namespace Catch {
bool isDebuggerActive() {
return IsDebuggerPresent() != 0;
}
}
#elif defined(__MINGW32__)
extern "C" __declspec(dllimport) int __stdcall IsDebuggerPresent();
namespace Catch {
bool isDebuggerActive() {
return IsDebuggerPresent() != 0;
}
}
#else
namespace Catch {
bool isDebuggerActive() { return false; }
}
#endif // Platform
// end catch_debugger.cpp
// start catch_decomposer.cpp
namespace Catch {
ITransientExpression::~ITransientExpression() = default;
void formatReconstructedExpression( std::ostream &os, std::string const& lhs, StringRef op, std::string const& rhs ) {
if( lhs.size() + rhs.size() < 40 &&
lhs.find('\n') == std::string::npos &&
rhs.find('\n') == std::string::npos )
os << lhs << " " << op << " " << rhs;
else
os << lhs << "\n" << op << "\n" << rhs;
}
}
// end catch_decomposer.cpp
// start catch_enforce.cpp
namespace Catch {
#if defined(CATCH_CONFIG_DISABLE_EXCEPTIONS) && !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS_CUSTOM_HANDLER)
[[noreturn]]
void throw_exception(std::exception const& e) {
Catch::cerr() << "Catch will terminate because it needed to throw an exception.\n"
<< "The message was: " << e.what() << '\n';
std::terminate();
}
#endif
} // namespace Catch;
// end catch_enforce.cpp
// start catch_errno_guard.cpp
#include <cerrno>
namespace Catch {
ErrnoGuard::ErrnoGuard():m_oldErrno(errno){}
ErrnoGuard::~ErrnoGuard() { errno = m_oldErrno; }
}
// end catch_errno_guard.cpp
// start catch_exception_translator_registry.cpp
// start catch_exception_translator_registry.h
#include <vector>
#include <string>
#include <memory>
namespace Catch {
class ExceptionTranslatorRegistry : public IExceptionTranslatorRegistry {
public:
~ExceptionTranslatorRegistry();
virtual void registerTranslator( const IExceptionTranslator* translator );
virtual std::string translateActiveException() const override;
std::string tryTranslators() const;
private:
std::vector<std::unique_ptr<IExceptionTranslator const>> m_translators;
};
}
// end catch_exception_translator_registry.h
#ifdef __OBJC__
#import "Foundation/Foundation.h"
#endif
namespace Catch {
ExceptionTranslatorRegistry::~ExceptionTranslatorRegistry() {
}
void ExceptionTranslatorRegistry::registerTranslator( const IExceptionTranslator* translator ) {
m_translators.push_back( std::unique_ptr<const IExceptionTranslator>( translator ) );
}
#if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
std::string ExceptionTranslatorRegistry::translateActiveException() const {
try {
#ifdef __OBJC__
// In Objective-C try objective-c exceptions first
@try {
return tryTranslators();
}
@catch (NSException *exception) {
return Catch::Detail::stringify( [exception description] );
}
#else
// Compiling a mixed mode project with MSVC means that CLR
// exceptions will be caught in (...) as well. However, these
// do not fill-in std::current_exception and thus lead to crash
// when attempting rethrow.
// /EHa switch also causes structured exceptions to be caught
// here, but they fill-in current_exception properly, so
// at worst the output should be a little weird, instead of
// causing a crash.
if (std::current_exception() == nullptr) {
return "Non C++ exception. Possibly a CLR exception.";
}
return tryTranslators();
#endif
}
catch( TestFailureException& ) {
std::rethrow_exception(std::current_exception());
}
catch( std::exception& ex ) {
return ex.what();
}
catch( std::string& msg ) {
return msg;
}
catch( const char* msg ) {
return msg;
}
catch(...) {
return "Unknown exception";
}
}
std::string ExceptionTranslatorRegistry::tryTranslators() const {
if (m_translators.empty()) {
std::rethrow_exception(std::current_exception());
} else {
return m_translators[0]->translate(m_translators.begin() + 1, m_translators.end());
}
}
#else // ^^ Exceptions are enabled // Exceptions are disabled vv
std::string ExceptionTranslatorRegistry::translateActiveException() const {
CATCH_INTERNAL_ERROR("Attempted to translate active exception under CATCH_CONFIG_DISABLE_EXCEPTIONS!");
}
std::string ExceptionTranslatorRegistry::tryTranslators() const {
CATCH_INTERNAL_ERROR("Attempted to use exception translators under CATCH_CONFIG_DISABLE_EXCEPTIONS!");
}
#endif
}
// end catch_exception_translator_registry.cpp
// start catch_fatal_condition.cpp
#if defined(__GNUC__)
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
#if defined( CATCH_CONFIG_WINDOWS_SEH ) || defined( CATCH_CONFIG_POSIX_SIGNALS )
namespace {
// Report the error condition
void reportFatal( char const * const message ) {
Catch::getCurrentContext().getResultCapture()->handleFatalErrorCondition( message );
}
}
#endif // signals/SEH handling
#if defined( CATCH_CONFIG_WINDOWS_SEH )
namespace Catch {
struct SignalDefs { DWORD id; const char* name; };
// There is no 1-1 mapping between signals and windows exceptions.
// Windows can easily distinguish between SO and SigSegV,
// but SigInt, SigTerm, etc are handled differently.
static SignalDefs signalDefs[] = {
{ EXCEPTION_ILLEGAL_INSTRUCTION, "SIGILL - Illegal instruction signal" },
{ EXCEPTION_STACK_OVERFLOW, "SIGSEGV - Stack overflow" },
{ EXCEPTION_ACCESS_VIOLATION, "SIGSEGV - Segmentation violation signal" },
{ EXCEPTION_INT_DIVIDE_BY_ZERO, "Divide by zero error" },
};
LONG CALLBACK FatalConditionHandler::handleVectoredException(PEXCEPTION_POINTERS ExceptionInfo) {
for (auto const& def : signalDefs) {
if (ExceptionInfo->ExceptionRecord->ExceptionCode == def.id) {
reportFatal(def.name);
}
}
// If its not an exception we care about, pass it along.
// This stops us from eating debugger breaks etc.
return EXCEPTION_CONTINUE_SEARCH;
}
FatalConditionHandler::FatalConditionHandler() {
isSet = true;
// 32k seems enough for Catch to handle stack overflow,
// but the value was found experimentally, so there is no strong guarantee
guaranteeSize = 32 * 1024;
exceptionHandlerHandle = nullptr;
// Register as first handler in current chain
exceptionHandlerHandle = AddVectoredExceptionHandler(1, handleVectoredException);
// Pass in guarantee size to be filled
SetThreadStackGuarantee(&guaranteeSize);
}
void FatalConditionHandler::reset() {
if (isSet) {
RemoveVectoredExceptionHandler(exceptionHandlerHandle);
SetThreadStackGuarantee(&guaranteeSize);
exceptionHandlerHandle = nullptr;
isSet = false;
}
}
FatalConditionHandler::~FatalConditionHandler() {
reset();
}
bool FatalConditionHandler::isSet = false;
ULONG FatalConditionHandler::guaranteeSize = 0;
PVOID FatalConditionHandler::exceptionHandlerHandle = nullptr;
} // namespace Catch
#elif defined( CATCH_CONFIG_POSIX_SIGNALS )
namespace Catch {
struct SignalDefs {
int id;
const char* name;
};
// 32kb for the alternate stack seems to be sufficient. However, this value
// is experimentally determined, so that's not guaranteed.
constexpr static std::size_t sigStackSize = 32768 >= MINSIGSTKSZ ? 32768 : MINSIGSTKSZ;
static SignalDefs signalDefs[] = {
{ SIGINT, "SIGINT - Terminal interrupt signal" },
{ SIGILL, "SIGILL - Illegal instruction signal" },
{ SIGFPE, "SIGFPE - Floating point error signal" },
{ SIGSEGV, "SIGSEGV - Segmentation violation signal" },
{ SIGTERM, "SIGTERM - Termination request signal" },
{ SIGABRT, "SIGABRT - Abort (abnormal termination) signal" }
};
void FatalConditionHandler::handleSignal( int sig ) {
char const * name = "<unknown signal>";
for (auto const& def : signalDefs) {
if (sig == def.id) {
name = def.name;
break;
}
}
reset();
reportFatal(name);
raise( sig );
}
FatalConditionHandler::FatalConditionHandler() {
isSet = true;
stack_t sigStack;
sigStack.ss_sp = altStackMem;
sigStack.ss_size = sigStackSize;
sigStack.ss_flags = 0;
sigaltstack(&sigStack, &oldSigStack);
struct sigaction sa = { };
sa.sa_handler = handleSignal;
sa.sa_flags = SA_ONSTACK;
for (std::size_t i = 0; i < sizeof(signalDefs)/sizeof(SignalDefs); ++i) {
sigaction(signalDefs[i].id, &sa, &oldSigActions[i]);
}
}
FatalConditionHandler::~FatalConditionHandler() {
reset();
}
void FatalConditionHandler::reset() {
if( isSet ) {
// Set signals back to previous values -- hopefully nobody overwrote them in the meantime
for( std::size_t i = 0; i < sizeof(signalDefs)/sizeof(SignalDefs); ++i ) {
sigaction(signalDefs[i].id, &oldSigActions[i], nullptr);
}
// Return the old stack
sigaltstack(&oldSigStack, nullptr);
isSet = false;
}
}
bool FatalConditionHandler::isSet = false;
struct sigaction FatalConditionHandler::oldSigActions[sizeof(signalDefs)/sizeof(SignalDefs)] = {};
stack_t FatalConditionHandler::oldSigStack = {};
char FatalConditionHandler::altStackMem[sigStackSize] = {};
} // namespace Catch
#else
namespace Catch {
void FatalConditionHandler::reset() {}
}
#endif // signals/SEH handling
#if defined(__GNUC__)
# pragma GCC diagnostic pop
#endif
// end catch_fatal_condition.cpp
// start catch_generators.cpp
// start catch_random_number_generator.h
#include <algorithm>
#include <random>
namespace Catch {
struct IConfig;
std::mt19937& rng();
void seedRng( IConfig const& config );
unsigned int rngSeed();
}
// end catch_random_number_generator.h
#include <limits>
#include <set>
namespace Catch {
IGeneratorTracker::~IGeneratorTracker() {}
const char* GeneratorException::what() const noexcept {
return m_msg;
}
namespace Generators {
GeneratorUntypedBase::~GeneratorUntypedBase() {}
auto acquireGeneratorTracker( SourceLineInfo const& lineInfo ) -> IGeneratorTracker& {
return getResultCapture().acquireGeneratorTracker( lineInfo );
}
} // namespace Generators
} // namespace Catch
// end catch_generators.cpp
// start catch_interfaces_capture.cpp
namespace Catch {
IResultCapture::~IResultCapture() = default;
}
// end catch_interfaces_capture.cpp
// start catch_interfaces_config.cpp
namespace Catch {
IConfig::~IConfig() = default;
}
// end catch_interfaces_config.cpp
// start catch_interfaces_exception.cpp
namespace Catch {
IExceptionTranslator::~IExceptionTranslator() = default;
IExceptionTranslatorRegistry::~IExceptionTranslatorRegistry() = default;
}
// end catch_interfaces_exception.cpp
// start catch_interfaces_registry_hub.cpp
namespace Catch {
IRegistryHub::~IRegistryHub() = default;
IMutableRegistryHub::~IMutableRegistryHub() = default;
}
// end catch_interfaces_registry_hub.cpp
// start catch_interfaces_reporter.cpp
// start catch_reporter_listening.h
namespace Catch {
class ListeningReporter : public IStreamingReporter {
using Reporters = std::vector<IStreamingReporterPtr>;
Reporters m_listeners;
IStreamingReporterPtr m_reporter = nullptr;
ReporterPreferences m_preferences;
public:
ListeningReporter();
void addListener( IStreamingReporterPtr&& listener );
void addReporter( IStreamingReporterPtr&& reporter );
public: // IStreamingReporter
ReporterPreferences getPreferences() const override;
void noMatchingTestCases( std::string const& spec ) override;
static std::set<Verbosity> getSupportedVerbosities();
void benchmarkStarting( BenchmarkInfo const& benchmarkInfo ) override;
void benchmarkEnded( BenchmarkStats const& benchmarkStats ) override;
void testRunStarting( TestRunInfo const& testRunInfo ) override;
void testGroupStarting( GroupInfo const& groupInfo ) override;
void testCaseStarting( TestCaseInfo const& testInfo ) override;
void sectionStarting( SectionInfo const& sectionInfo ) override;
void assertionStarting( AssertionInfo const& assertionInfo ) override;
// The return value indicates if the messages buffer should be cleared:
bool assertionEnded( AssertionStats const& assertionStats ) override;
void sectionEnded( SectionStats const& sectionStats ) override;
void testCaseEnded( TestCaseStats const& testCaseStats ) override;
void testGroupEnded( TestGroupStats const& testGroupStats ) override;
void testRunEnded( TestRunStats const& testRunStats ) override;
void skipTest( TestCaseInfo const& testInfo ) override;
bool isMulti() const override;
};
} // end namespace Catch
// end catch_reporter_listening.h
namespace Catch {
ReporterConfig::ReporterConfig( IConfigPtr const& _fullConfig )
: m_stream( &_fullConfig->stream() ), m_fullConfig( _fullConfig ) {}
ReporterConfig::ReporterConfig( IConfigPtr const& _fullConfig, std::ostream& _stream )
: m_stream( &_stream ), m_fullConfig( _fullConfig ) {}
std::ostream& ReporterConfig::stream() const { return *m_stream; }
IConfigPtr ReporterConfig::fullConfig() const { return m_fullConfig; }
TestRunInfo::TestRunInfo( std::string const& _name ) : name( _name ) {}
GroupInfo::GroupInfo( std::string const& _name,
std::size_t _groupIndex,
std::size_t _groupsCount )
: name( _name ),
groupIndex( _groupIndex ),
groupsCounts( _groupsCount )
{}
AssertionStats::AssertionStats( AssertionResult const& _assertionResult,
std::vector<MessageInfo> const& _infoMessages,
Totals const& _totals )
: assertionResult( _assertionResult ),
infoMessages( _infoMessages ),
totals( _totals )
{
assertionResult.m_resultData.lazyExpression.m_transientExpression = _assertionResult.m_resultData.lazyExpression.m_transientExpression;
if( assertionResult.hasMessage() ) {
// Copy message into messages list.
// !TBD This should have been done earlier, somewhere
MessageBuilder builder( assertionResult.getTestMacroName(), assertionResult.getSourceInfo(), assertionResult.getResultType() );
builder << assertionResult.getMessage();
builder.m_info.message = builder.m_stream.str();
infoMessages.push_back( builder.m_info );
}
}
AssertionStats::~AssertionStats() = default;
SectionStats::SectionStats( SectionInfo const& _sectionInfo,
Counts const& _assertions,
double _durationInSeconds,
bool _missingAssertions )
: sectionInfo( _sectionInfo ),
assertions( _assertions ),
durationInSeconds( _durationInSeconds ),
missingAssertions( _missingAssertions )
{}
SectionStats::~SectionStats() = default;
TestCaseStats::TestCaseStats( TestCaseInfo const& _testInfo,
Totals const& _totals,
std::string const& _stdOut,
std::string const& _stdErr,
bool _aborting )
: testInfo( _testInfo ),
totals( _totals ),
stdOut( _stdOut ),
stdErr( _stdErr ),
aborting( _aborting )
{}
TestCaseStats::~TestCaseStats() = default;
TestGroupStats::TestGroupStats( GroupInfo const& _groupInfo,
Totals const& _totals,
bool _aborting )
: groupInfo( _groupInfo ),
totals( _totals ),
aborting( _aborting )
{}
TestGroupStats::TestGroupStats( GroupInfo const& _groupInfo )
: groupInfo( _groupInfo ),
aborting( false )
{}
TestGroupStats::~TestGroupStats() = default;
TestRunStats::TestRunStats( TestRunInfo const& _runInfo,
Totals const& _totals,
bool _aborting )
: runInfo( _runInfo ),
totals( _totals ),
aborting( _aborting )
{}
TestRunStats::~TestRunStats() = default;
void IStreamingReporter::fatalErrorEncountered( StringRef ) {}
bool IStreamingReporter::isMulti() const { return false; }
IReporterFactory::~IReporterFactory() = default;
IReporterRegistry::~IReporterRegistry() = default;
} // end namespace Catch
// end catch_interfaces_reporter.cpp
// start catch_interfaces_runner.cpp
namespace Catch {
IRunner::~IRunner() = default;
}
// end catch_interfaces_runner.cpp
// start catch_interfaces_testcase.cpp
namespace Catch {
ITestInvoker::~ITestInvoker() = default;
ITestCaseRegistry::~ITestCaseRegistry() = default;
}
// end catch_interfaces_testcase.cpp
// start catch_leak_detector.cpp
#ifdef CATCH_CONFIG_WINDOWS_CRTDBG
#include <crtdbg.h>
namespace Catch {
LeakDetector::LeakDetector() {
int flag = _CrtSetDbgFlag(_CRTDBG_REPORT_FLAG);
flag |= _CRTDBG_LEAK_CHECK_DF;
flag |= _CRTDBG_ALLOC_MEM_DF;
_CrtSetDbgFlag(flag);
_CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE | _CRTDBG_MODE_DEBUG);
_CrtSetReportFile(_CRT_WARN, _CRTDBG_FILE_STDERR);
// Change this to leaking allocation's number to break there
_CrtSetBreakAlloc(-1);
}
}
#else
Catch::LeakDetector::LeakDetector() {}
#endif
Catch::LeakDetector::~LeakDetector() {
Catch::cleanUp();
}
// end catch_leak_detector.cpp
// start catch_list.cpp
// start catch_list.h
#include <set>
namespace Catch {
std::size_t listTests( Config const& config );
std::size_t listTestsNamesOnly( Config const& config );
struct TagInfo {
void add( std::string const& spelling );
std::string all() const;
std::set<std::string> spellings;
std::size_t count = 0;
};
std::size_t listTags( Config const& config );
std::size_t listReporters();
Option<std::size_t> list( Config const& config );
} // end namespace Catch
// end catch_list.h
// start catch_text.h
namespace Catch {
using namespace clara::TextFlow;
}
// end catch_text.h
#include <limits>
#include <algorithm>
#include <iomanip>
namespace Catch {
std::size_t listTests( Config const& config ) {
TestSpec testSpec = config.testSpec();
if( config.hasTestFilters() )
Catch::cout() << "Matching test cases:\n";
else {
Catch::cout() << "All available test cases:\n";
}
auto matchedTestCases = filterTests( getAllTestCasesSorted( config ), testSpec, config );
for( auto const& testCaseInfo : matchedTestCases ) {
Colour::Code colour = testCaseInfo.isHidden()
? Colour::SecondaryText
: Colour::None;
Colour colourGuard( colour );
Catch::cout() << Column( testCaseInfo.name ).initialIndent( 2 ).indent( 4 ) << "\n";
if( config.verbosity() >= Verbosity::High ) {
Catch::cout() << Column( Catch::Detail::stringify( testCaseInfo.lineInfo ) ).indent(4) << std::endl;
std::string description = testCaseInfo.description;
if( description.empty() )
description = "(NO DESCRIPTION)";
Catch::cout() << Column( description ).indent(4) << std::endl;
}
if( !testCaseInfo.tags.empty() )
Catch::cout() << Column( testCaseInfo.tagsAsString() ).indent( 6 ) << "\n";
}
if( !config.hasTestFilters() )
Catch::cout() << pluralise( matchedTestCases.size(), "test case" ) << '\n' << std::endl;
else
Catch::cout() << pluralise( matchedTestCases.size(), "matching test case" ) << '\n' << std::endl;
return matchedTestCases.size();
}
std::size_t listTestsNamesOnly( Config const& config ) {
TestSpec testSpec = config.testSpec();
std::size_t matchedTests = 0;
std::vector<TestCase> matchedTestCases = filterTests( getAllTestCasesSorted( config ), testSpec, config );
for( auto const& testCaseInfo : matchedTestCases ) {
matchedTests++;
if( startsWith( testCaseInfo.name, '#' ) )
Catch::cout() << '"' << testCaseInfo.name << '"';
else
Catch::cout() << testCaseInfo.name;
if ( config.verbosity() >= Verbosity::High )
Catch::cout() << "\t@" << testCaseInfo.lineInfo;
Catch::cout() << std::endl;
}
return matchedTests;
}
void TagInfo::add( std::string const& spelling ) {
++count;
spellings.insert( spelling );
}
std::string TagInfo::all() const {
std::string out;
for( auto const& spelling : spellings )
out += "[" + spelling + "]";
return out;
}
std::size_t listTags( Config const& config ) {
TestSpec testSpec = config.testSpec();
if( config.hasTestFilters() )
Catch::cout() << "Tags for matching test cases:\n";
else {
Catch::cout() << "All available tags:\n";
}
std::map<std::string, TagInfo> tagCounts;
std::vector<TestCase> matchedTestCases = filterTests( getAllTestCasesSorted( config ), testSpec, config );
for( auto const& testCase : matchedTestCases ) {
for( auto const& tagName : testCase.getTestCaseInfo().tags ) {
std::string lcaseTagName = toLower( tagName );
auto countIt = tagCounts.find( lcaseTagName );
if( countIt == tagCounts.end() )
countIt = tagCounts.insert( std::make_pair( lcaseTagName, TagInfo() ) ).first;
countIt->second.add( tagName );
}
}
for( auto const& tagCount : tagCounts ) {
ReusableStringStream rss;
rss << " " << std::setw(2) << tagCount.second.count << " ";
auto str = rss.str();
auto wrapper = Column( tagCount.second.all() )
.initialIndent( 0 )
.indent( str.size() )
.width( CATCH_CONFIG_CONSOLE_WIDTH-10 );
Catch::cout() << str << wrapper << '\n';
}
Catch::cout() << pluralise( tagCounts.size(), "tag" ) << '\n' << std::endl;
return tagCounts.size();
}
std::size_t listReporters() {
Catch::cout() << "Available reporters:\n";
IReporterRegistry::FactoryMap const& factories = getRegistryHub().getReporterRegistry().getFactories();
std::size_t maxNameLen = 0;
for( auto const& factoryKvp : factories )
maxNameLen = (std::max)( maxNameLen, factoryKvp.first.size() );
for( auto const& factoryKvp : factories ) {
Catch::cout()
<< Column( factoryKvp.first + ":" )
.indent(2)
.width( 5+maxNameLen )
+ Column( factoryKvp.second->getDescription() )
.initialIndent(0)
.indent(2)
.width( CATCH_CONFIG_CONSOLE_WIDTH - maxNameLen-8 )
<< "\n";
}
Catch::cout() << std::endl;
return factories.size();
}
Option<std::size_t> list( Config const& config ) {
Option<std::size_t> listedCount;
if( config.listTests() )
listedCount = listedCount.valueOr(0) + listTests( config );
if( config.listTestNamesOnly() )
listedCount = listedCount.valueOr(0) + listTestsNamesOnly( config );
if( config.listTags() )
listedCount = listedCount.valueOr(0) + listTags( config );
if( config.listReporters() )
listedCount = listedCount.valueOr(0) + listReporters();
return listedCount;
}
} // end namespace Catch
// end catch_list.cpp
// start catch_matchers.cpp
namespace Catch {
namespace Matchers {
namespace Impl {
std::string MatcherUntypedBase::toString() const {
if( m_cachedToString.empty() )
m_cachedToString = describe();
return m_cachedToString;
}
MatcherUntypedBase::~MatcherUntypedBase() = default;
} // namespace Impl
} // namespace Matchers
using namespace Matchers;
using Matchers::Impl::MatcherBase;
} // namespace Catch
// end catch_matchers.cpp
// start catch_matchers_floating.cpp
// start catch_polyfills.hpp
namespace Catch {
bool isnan(float f);
bool isnan(double d);
}
// end catch_polyfills.hpp
// start catch_to_string.hpp
#include <string>
namespace Catch {
template <typename T>
std::string to_string(T const& t) {
#if defined(CATCH_CONFIG_CPP11_TO_STRING)
return std::to_string(t);
#else
ReusableStringStream rss;
rss << t;
return rss.str();
#endif
}
} // end namespace Catch
// end catch_to_string.hpp
#include <cstdlib>
#include <cstdint>
#include <cstring>
namespace Catch {
namespace Matchers {
namespace Floating {
enum class FloatingPointKind : uint8_t {
Float,
Double
};
}
}
}
namespace {
template <typename T>
struct Converter;
template <>
struct Converter<float> {
static_assert(sizeof(float) == sizeof(int32_t), "Important ULP matcher assumption violated");
Converter(float f) {
std::memcpy(&i, &f, sizeof(f));
}
int32_t i;
};
template <>
struct Converter<double> {
static_assert(sizeof(double) == sizeof(int64_t), "Important ULP matcher assumption violated");
Converter(double d) {
std::memcpy(&i, &d, sizeof(d));
}
int64_t i;
};
template <typename T>
auto convert(T t) -> Converter<T> {
return Converter<T>(t);
}
template <typename FP>
bool almostEqualUlps(FP lhs, FP rhs, int maxUlpDiff) {
// Comparison with NaN should always be false.
// This way we can rule it out before getting into the ugly details
if (Catch::isnan(lhs) || Catch::isnan(rhs)) {
return false;
}
auto lc = convert(lhs);
auto rc = convert(rhs);
if ((lc.i < 0) != (rc.i < 0)) {
// Potentially we can have +0 and -0
return lhs == rhs;
}
auto ulpDiff = std::abs(lc.i - rc.i);
return ulpDiff <= maxUlpDiff;
}
}
namespace Catch {
namespace Matchers {
namespace Floating {
WithinAbsMatcher::WithinAbsMatcher(double target, double margin)
:m_target{ target }, m_margin{ margin } {
CATCH_ENFORCE(margin >= 0, "Invalid margin: " << margin << '.'
<< " Margin has to be non-negative.");
}
// Performs equivalent check of std::fabs(lhs - rhs) <= margin
// But without the subtraction to allow for INFINITY in comparison
bool WithinAbsMatcher::match(double const& matchee) const {
return (matchee + m_margin >= m_target) && (m_target + m_margin >= matchee);
}
std::string WithinAbsMatcher::describe() const {
return "is within " + ::Catch::Detail::stringify(m_margin) + " of " + ::Catch::Detail::stringify(m_target);
}
WithinUlpsMatcher::WithinUlpsMatcher(double target, int ulps, FloatingPointKind baseType)
:m_target{ target }, m_ulps{ ulps }, m_type{ baseType } {
CATCH_ENFORCE(ulps >= 0, "Invalid ULP setting: " << ulps << '.'
<< " ULPs have to be non-negative.");
}
#if defined(__clang__)
#pragma clang diagnostic push
// Clang <3.5 reports on the default branch in the switch below
#pragma clang diagnostic ignored "-Wunreachable-code"
#endif
bool WithinUlpsMatcher::match(double const& matchee) const {
switch (m_type) {
case FloatingPointKind::Float:
return almostEqualUlps<float>(static_cast<float>(matchee), static_cast<float>(m_target), m_ulps);
case FloatingPointKind::Double:
return almostEqualUlps<double>(matchee, m_target, m_ulps);
default:
CATCH_INTERNAL_ERROR( "Unknown FloatingPointKind value" );
}
}
#if defined(__clang__)
#pragma clang diagnostic pop
#endif
std::string WithinUlpsMatcher::describe() const {
return "is within " + Catch::to_string(m_ulps) + " ULPs of " + ::Catch::Detail::stringify(m_target) + ((m_type == FloatingPointKind::Float)? "f" : "");
}
}// namespace Floating
Floating::WithinUlpsMatcher WithinULP(double target, int maxUlpDiff) {
return Floating::WithinUlpsMatcher(target, maxUlpDiff, Floating::FloatingPointKind::Double);
}
Floating::WithinUlpsMatcher WithinULP(float target, int maxUlpDiff) {
return Floating::WithinUlpsMatcher(target, maxUlpDiff, Floating::FloatingPointKind::Float);
}
Floating::WithinAbsMatcher WithinAbs(double target, double margin) {
return Floating::WithinAbsMatcher(target, margin);
}
} // namespace Matchers
} // namespace Catch
// end catch_matchers_floating.cpp
// start catch_matchers_generic.cpp
std::string Catch::Matchers::Generic::Detail::finalizeDescription(const std::string& desc) {
if (desc.empty()) {
return "matches undescribed predicate";
} else {
return "matches predicate: \"" + desc + '"';
}
}
// end catch_matchers_generic.cpp
// start catch_matchers_string.cpp
#include <regex>
namespace Catch {
namespace Matchers {
namespace StdString {
CasedString::CasedString( std::string const& str, CaseSensitive::Choice caseSensitivity )
: m_caseSensitivity( caseSensitivity ),
m_str( adjustString( str ) )
{}
std::string CasedString::adjustString( std::string const& str ) const {
return m_caseSensitivity == CaseSensitive::No
? toLower( str )
: str;
}
std::string CasedString::caseSensitivitySuffix() const {
return m_caseSensitivity == CaseSensitive::No
? " (case insensitive)"
: std::string();
}
StringMatcherBase::StringMatcherBase( std::string const& operation, CasedString const& comparator )
: m_comparator( comparator ),
m_operation( operation ) {
}
std::string StringMatcherBase::describe() const {
std::string description;
description.reserve(5 + m_operation.size() + m_comparator.m_str.size() +
m_comparator.caseSensitivitySuffix().size());
description += m_operation;
description += ": \"";
description += m_comparator.m_str;
description += "\"";
description += m_comparator.caseSensitivitySuffix();
return description;
}
EqualsMatcher::EqualsMatcher( CasedString const& comparator ) : StringMatcherBase( "equals", comparator ) {}
bool EqualsMatcher::match( std::string const& source ) const {
return m_comparator.adjustString( source ) == m_comparator.m_str;
}
ContainsMatcher::ContainsMatcher( CasedString const& comparator ) : StringMatcherBase( "contains", comparator ) {}
bool ContainsMatcher::match( std::string const& source ) const {
return contains( m_comparator.adjustString( source ), m_comparator.m_str );
}
StartsWithMatcher::StartsWithMatcher( CasedString const& comparator ) : StringMatcherBase( "starts with", comparator ) {}
bool StartsWithMatcher::match( std::string const& source ) const {
return startsWith( m_comparator.adjustString( source ), m_comparator.m_str );
}
EndsWithMatcher::EndsWithMatcher( CasedString const& comparator ) : StringMatcherBase( "ends with", comparator ) {}
bool EndsWithMatcher::match( std::string const& source ) const {
return endsWith( m_comparator.adjustString( source ), m_comparator.m_str );
}
RegexMatcher::RegexMatcher(std::string regex, CaseSensitive::Choice caseSensitivity): m_regex(std::move(regex)), m_caseSensitivity(caseSensitivity) {}
bool RegexMatcher::match(std::string const& matchee) const {
auto flags = std::regex::ECMAScript; // ECMAScript is the default syntax option anyway
if (m_caseSensitivity == CaseSensitive::Choice::No) {
flags |= std::regex::icase;
}
auto reg = std::regex(m_regex, flags);
return std::regex_match(matchee, reg);
}
std::string RegexMatcher::describe() const {
return "matches " + ::Catch::Detail::stringify(m_regex) + ((m_caseSensitivity == CaseSensitive::Choice::Yes)? " case sensitively" : " case insensitively");
}
} // namespace StdString
StdString::EqualsMatcher Equals( std::string const& str, CaseSensitive::Choice caseSensitivity ) {
return StdString::EqualsMatcher( StdString::CasedString( str, caseSensitivity) );
}
StdString::ContainsMatcher Contains( std::string const& str, CaseSensitive::Choice caseSensitivity ) {
return StdString::ContainsMatcher( StdString::CasedString( str, caseSensitivity) );
}
StdString::EndsWithMatcher EndsWith( std::string const& str, CaseSensitive::Choice caseSensitivity ) {
return StdString::EndsWithMatcher( StdString::CasedString( str, caseSensitivity) );
}
StdString::StartsWithMatcher StartsWith( std::string const& str, CaseSensitive::Choice caseSensitivity ) {
return StdString::StartsWithMatcher( StdString::CasedString( str, caseSensitivity) );
}
StdString::RegexMatcher Matches(std::string const& regex, CaseSensitive::Choice caseSensitivity) {
return StdString::RegexMatcher(regex, caseSensitivity);
}
} // namespace Matchers
} // namespace Catch
// end catch_matchers_string.cpp
// start catch_message.cpp
// start catch_uncaught_exceptions.h
namespace Catch {
bool uncaught_exceptions();
} // end namespace Catch
// end catch_uncaught_exceptions.h
#include <cassert>
#include <stack>
namespace Catch {
MessageInfo::MessageInfo( StringRef const& _macroName,
SourceLineInfo const& _lineInfo,
ResultWas::OfType _type )
: macroName( _macroName ),
lineInfo( _lineInfo ),
type( _type ),
sequence( ++globalCount )
{}
bool MessageInfo::operator==( MessageInfo const& other ) const {
return sequence == other.sequence;
}
bool MessageInfo::operator<( MessageInfo const& other ) const {
return sequence < other.sequence;
}
// This may need protecting if threading support is added
unsigned int MessageInfo::globalCount = 0;
////////////////////////////////////////////////////////////////////////////
Catch::MessageBuilder::MessageBuilder( StringRef const& macroName,
SourceLineInfo const& lineInfo,
ResultWas::OfType type )
:m_info(macroName, lineInfo, type) {}
////////////////////////////////////////////////////////////////////////////
ScopedMessage::ScopedMessage( MessageBuilder const& builder )
: m_info( builder.m_info )
{
m_info.message = builder.m_stream.str();
getResultCapture().pushScopedMessage( m_info );
}
ScopedMessage::~ScopedMessage() {
if ( !uncaught_exceptions() ){
getResultCapture().popScopedMessage(m_info);
}
}
Capturer::Capturer( StringRef macroName, SourceLineInfo const& lineInfo, ResultWas::OfType resultType, StringRef names ) {
auto trimmed = [&] (size_t start, size_t end) {
while (names[start] == ',' || isspace(names[start])) {
++start;
}
while (names[end] == ',' || isspace(names[end])) {
--end;
}
return names.substr(start, end - start + 1);
};
size_t start = 0;
std::stack<char> openings;
for (size_t pos = 0; pos < names.size(); ++pos) {
char c = names[pos];
switch (c) {
case '[':
case '{':
case '(':
// It is basically impossible to disambiguate between
// comparison and start of template args in this context
// case '<':
openings.push(c);
break;
case ']':
case '}':
case ')':
// case '>':
openings.pop();
break;
case ',':
if (start != pos && openings.size() == 0) {
m_messages.emplace_back(macroName, lineInfo, resultType);
m_messages.back().message = trimmed(start, pos);
m_messages.back().message += " := ";
start = pos;
}
}
}
assert(openings.size() == 0 && "Mismatched openings");
m_messages.emplace_back(macroName, lineInfo, resultType);
m_messages.back().message = trimmed(start, names.size() - 1);
m_messages.back().message += " := ";
}
Capturer::~Capturer() {
if ( !uncaught_exceptions() ){
assert( m_captured == m_messages.size() );
for( size_t i = 0; i < m_captured; ++i )
m_resultCapture.popScopedMessage( m_messages[i] );
}
}
void Capturer::captureValue( size_t index, std::string const& value ) {
assert( index < m_messages.size() );
m_messages[index].message += value;
m_resultCapture.pushScopedMessage( m_messages[index] );
m_captured++;
}
} // end namespace Catch
// end catch_message.cpp
// start catch_output_redirect.cpp
// start catch_output_redirect.h
#ifndef TWOBLUECUBES_CATCH_OUTPUT_REDIRECT_H
#define TWOBLUECUBES_CATCH_OUTPUT_REDIRECT_H
#include <cstdio>
#include <iosfwd>
#include <string>
namespace Catch {
class RedirectedStream {
std::ostream& m_originalStream;
std::ostream& m_redirectionStream;
std::streambuf* m_prevBuf;
public:
RedirectedStream( std::ostream& originalStream, std::ostream& redirectionStream );
~RedirectedStream();
};
class RedirectedStdOut {
ReusableStringStream m_rss;
RedirectedStream m_cout;
public:
RedirectedStdOut();
auto str() const -> std::string;
};
// StdErr has two constituent streams in C++, std::cerr and std::clog
// This means that we need to redirect 2 streams into 1 to keep proper
// order of writes
class RedirectedStdErr {
ReusableStringStream m_rss;
RedirectedStream m_cerr;
RedirectedStream m_clog;
public:
RedirectedStdErr();
auto str() const -> std::string;
};
#if defined(CATCH_CONFIG_NEW_CAPTURE)
// Windows's implementation of std::tmpfile is terrible (it tries
// to create a file inside system folder, thus requiring elevated
// privileges for the binary), so we have to use tmpnam(_s) and
// create the file ourselves there.
class TempFile {
public:
TempFile(TempFile const&) = delete;
TempFile& operator=(TempFile const&) = delete;
TempFile(TempFile&&) = delete;
TempFile& operator=(TempFile&&) = delete;
TempFile();
~TempFile();
std::FILE* getFile();
std::string getContents();
private:
std::FILE* m_file = nullptr;
#if defined(_MSC_VER)
char m_buffer[L_tmpnam] = { 0 };
#endif
};
class OutputRedirect {
public:
OutputRedirect(OutputRedirect const&) = delete;
OutputRedirect& operator=(OutputRedirect const&) = delete;
OutputRedirect(OutputRedirect&&) = delete;
OutputRedirect& operator=(OutputRedirect&&) = delete;
OutputRedirect(std::string& stdout_dest, std::string& stderr_dest);
~OutputRedirect();
private:
int m_originalStdout = -1;
int m_originalStderr = -1;
TempFile m_stdoutFile;
TempFile m_stderrFile;
std::string& m_stdoutDest;
std::string& m_stderrDest;
};
#endif
} // end namespace Catch
#endif // TWOBLUECUBES_CATCH_OUTPUT_REDIRECT_H
// end catch_output_redirect.h
#include <cstdio>
#include <cstring>
#include <fstream>
#include <sstream>
#include <stdexcept>
#if defined(CATCH_CONFIG_NEW_CAPTURE)
#if defined(_MSC_VER)
#include <io.h> //_dup and _dup2
#define dup _dup
#define dup2 _dup2
#define fileno _fileno
#else
#include <unistd.h> // dup and dup2
#endif
#endif
namespace Catch {
RedirectedStream::RedirectedStream( std::ostream& originalStream, std::ostream& redirectionStream )
: m_originalStream( originalStream ),
m_redirectionStream( redirectionStream ),
m_prevBuf( m_originalStream.rdbuf() )
{
m_originalStream.rdbuf( m_redirectionStream.rdbuf() );
}
RedirectedStream::~RedirectedStream() {
m_originalStream.rdbuf( m_prevBuf );
}
RedirectedStdOut::RedirectedStdOut() : m_cout( Catch::cout(), m_rss.get() ) {}
auto RedirectedStdOut::str() const -> std::string { return m_rss.str(); }
RedirectedStdErr::RedirectedStdErr()
: m_cerr( Catch::cerr(), m_rss.get() ),
m_clog( Catch::clog(), m_rss.get() )
{}
auto RedirectedStdErr::str() const -> std::string { return m_rss.str(); }
#if defined(CATCH_CONFIG_NEW_CAPTURE)
#if defined(_MSC_VER)
TempFile::TempFile() {
if (tmpnam_s(m_buffer)) {
CATCH_RUNTIME_ERROR("Could not get a temp filename");
}
if (fopen_s(&m_file, m_buffer, "w")) {
char buffer[100];
if (strerror_s(buffer, errno)) {
CATCH_RUNTIME_ERROR("Could not translate errno to a string");
}
CATCH_RUNTIME_ERROR("Coul dnot open the temp file: '" << m_buffer << "' because: " << buffer);
}
}
#else
TempFile::TempFile() {
m_file = std::tmpfile();
if (!m_file) {
CATCH_RUNTIME_ERROR("Could not create a temp file.");
}
}
#endif
TempFile::~TempFile() {
// TBD: What to do about errors here?
std::fclose(m_file);
// We manually create the file on Windows only, on Linux
// it will be autodeleted
#if defined(_MSC_VER)
std::remove(m_buffer);
#endif
}
FILE* TempFile::getFile() {
return m_file;
}
std::string TempFile::getContents() {
std::stringstream sstr;
char buffer[100] = {};
std::rewind(m_file);
while (std::fgets(buffer, sizeof(buffer), m_file)) {
sstr << buffer;
}
return sstr.str();
}
OutputRedirect::OutputRedirect(std::string& stdout_dest, std::string& stderr_dest) :
m_originalStdout(dup(1)),
m_originalStderr(dup(2)),
m_stdoutDest(stdout_dest),
m_stderrDest(stderr_dest) {
dup2(fileno(m_stdoutFile.getFile()), 1);
dup2(fileno(m_stderrFile.getFile()), 2);
}
OutputRedirect::~OutputRedirect() {
Catch::cout() << std::flush;
fflush(stdout);
// Since we support overriding these streams, we flush cerr
// even though std::cerr is unbuffered
Catch::cerr() << std::flush;
Catch::clog() << std::flush;
fflush(stderr);
dup2(m_originalStdout, 1);
dup2(m_originalStderr, 2);
m_stdoutDest += m_stdoutFile.getContents();
m_stderrDest += m_stderrFile.getContents();
}
#endif // CATCH_CONFIG_NEW_CAPTURE
} // namespace Catch
#if defined(CATCH_CONFIG_NEW_CAPTURE)
#if defined(_MSC_VER)
#undef dup
#undef dup2
#undef fileno
#endif
#endif
// end catch_output_redirect.cpp
// start catch_polyfills.cpp
#include <cmath>
namespace Catch {
#if !defined(CATCH_CONFIG_POLYFILL_ISNAN)
bool isnan(float f) {
return std::isnan(f);
}
bool isnan(double d) {
return std::isnan(d);
}
#else
// For now we only use this for embarcadero
bool isnan(float f) {
return std::_isnan(f);
}
bool isnan(double d) {
return std::_isnan(d);
}
#endif
} // end namespace Catch
// end catch_polyfills.cpp
// start catch_random_number_generator.cpp
namespace Catch {
std::mt19937& rng() {
static std::mt19937 s_rng;
return s_rng;
}
void seedRng( IConfig const& config ) {
if( config.rngSeed() != 0 ) {
std::srand( config.rngSeed() );
rng().seed( config.rngSeed() );
}
}
unsigned int rngSeed() {
return getCurrentContext().getConfig()->rngSeed();
}
}
// end catch_random_number_generator.cpp
// start catch_registry_hub.cpp
// start catch_test_case_registry_impl.h
#include <vector>
#include <set>
#include <algorithm>
#include <ios>
namespace Catch {
class TestCase;
struct IConfig;
std::vector<TestCase> sortTests( IConfig const& config, std::vector<TestCase> const& unsortedTestCases );
bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config );
void enforceNoDuplicateTestCases( std::vector<TestCase> const& functions );
std::vector<TestCase> filterTests( std::vector<TestCase> const& testCases, TestSpec const& testSpec, IConfig const& config );
std::vector<TestCase> const& getAllTestCasesSorted( IConfig const& config );
class TestRegistry : public ITestCaseRegistry {
public:
virtual ~TestRegistry() = default;
virtual void registerTest( TestCase const& testCase );
std::vector<TestCase> const& getAllTests() const override;
std::vector<TestCase> const& getAllTestsSorted( IConfig const& config ) const override;
private:
std::vector<TestCase> m_functions;
mutable RunTests::InWhatOrder m_currentSortOrder = RunTests::InDeclarationOrder;
mutable std::vector<TestCase> m_sortedFunctions;
std::size_t m_unnamedCount = 0;
std::ios_base::Init m_ostreamInit; // Forces cout/ cerr to be initialised
};
///////////////////////////////////////////////////////////////////////////
class TestInvokerAsFunction : public ITestInvoker {
void(*m_testAsFunction)();
public:
TestInvokerAsFunction( void(*testAsFunction)() ) noexcept;
void invoke() const override;
};
std::string extractClassName( StringRef const& classOrQualifiedMethodName );
///////////////////////////////////////////////////////////////////////////
} // end namespace Catch
// end catch_test_case_registry_impl.h
// start catch_reporter_registry.h
#include <map>
namespace Catch {
class ReporterRegistry : public IReporterRegistry {
public:
~ReporterRegistry() override;
IStreamingReporterPtr create( std::string const& name, IConfigPtr const& config ) const override;
void registerReporter( std::string const& name, IReporterFactoryPtr const& factory );
void registerListener( IReporterFactoryPtr const& factory );
FactoryMap const& getFactories() const override;
Listeners const& getListeners() const override;
private:
FactoryMap m_factories;
Listeners m_listeners;
};
}
// end catch_reporter_registry.h
// start catch_tag_alias_registry.h
// start catch_tag_alias.h
#include <string>
namespace Catch {
struct TagAlias {
TagAlias(std::string const& _tag, SourceLineInfo _lineInfo);
std::string tag;
SourceLineInfo lineInfo;
};
} // end namespace Catch
// end catch_tag_alias.h
#include <map>
namespace Catch {
class TagAliasRegistry : public ITagAliasRegistry {
public:
~TagAliasRegistry() override;
TagAlias const* find( std::string const& alias ) const override;
std::string expandAliases( std::string const& unexpandedTestSpec ) const override;
void add( std::string const& alias, std::string const& tag, SourceLineInfo const& lineInfo );
private:
std::map<std::string, TagAlias> m_registry;
};
} // end namespace Catch
// end catch_tag_alias_registry.h
// start catch_startup_exception_registry.h
#include <vector>
#include <exception>
namespace Catch {
class StartupExceptionRegistry {
public:
void add(std::exception_ptr const& exception) noexcept;
std::vector<std::exception_ptr> const& getExceptions() const noexcept;
private:
std::vector<std::exception_ptr> m_exceptions;
};
} // end namespace Catch
// end catch_startup_exception_registry.h
// start catch_singletons.hpp
namespace Catch {
struct ISingleton {
virtual ~ISingleton();
};
void addSingleton( ISingleton* singleton );
void cleanupSingletons();
template<typename SingletonImplT, typename InterfaceT = SingletonImplT, typename MutableInterfaceT = InterfaceT>
class Singleton : SingletonImplT, public ISingleton {
static auto getInternal() -> Singleton* {
static Singleton* s_instance = nullptr;
if( !s_instance ) {
s_instance = new Singleton;
addSingleton( s_instance );
}
return s_instance;
}
public:
static auto get() -> InterfaceT const& {
return *getInternal();
}
static auto getMutable() -> MutableInterfaceT& {
return *getInternal();
}
};
} // namespace Catch
// end catch_singletons.hpp
namespace Catch {
namespace {
class RegistryHub : public IRegistryHub, public IMutableRegistryHub,
private NonCopyable {
public: // IRegistryHub
RegistryHub() = default;
IReporterRegistry const& getReporterRegistry() const override {
return m_reporterRegistry;
}
ITestCaseRegistry const& getTestCaseRegistry() const override {
return m_testCaseRegistry;
}
IExceptionTranslatorRegistry const& getExceptionTranslatorRegistry() const override {
return m_exceptionTranslatorRegistry;
}
ITagAliasRegistry const& getTagAliasRegistry() const override {
return m_tagAliasRegistry;
}
StartupExceptionRegistry const& getStartupExceptionRegistry() const override {
return m_exceptionRegistry;
}
public: // IMutableRegistryHub
void registerReporter( std::string const& name, IReporterFactoryPtr const& factory ) override {
m_reporterRegistry.registerReporter( name, factory );
}
void registerListener( IReporterFactoryPtr const& factory ) override {
m_reporterRegistry.registerListener( factory );
}
void registerTest( TestCase const& testInfo ) override {
m_testCaseRegistry.registerTest( testInfo );
}
void registerTranslator( const IExceptionTranslator* translator ) override {
m_exceptionTranslatorRegistry.registerTranslator( translator );
}
void registerTagAlias( std::string const& alias, std::string const& tag, SourceLineInfo const& lineInfo ) override {
m_tagAliasRegistry.add( alias, tag, lineInfo );
}
void registerStartupException() noexcept override {
m_exceptionRegistry.add(std::current_exception());
}
private:
TestRegistry m_testCaseRegistry;
ReporterRegistry m_reporterRegistry;
ExceptionTranslatorRegistry m_exceptionTranslatorRegistry;
TagAliasRegistry m_tagAliasRegistry;
StartupExceptionRegistry m_exceptionRegistry;
};
}
using RegistryHubSingleton = Singleton<RegistryHub, IRegistryHub, IMutableRegistryHub>;
IRegistryHub const& getRegistryHub() {
return RegistryHubSingleton::get();
}
IMutableRegistryHub& getMutableRegistryHub() {
return RegistryHubSingleton::getMutable();
}
void cleanUp() {
cleanupSingletons();
cleanUpContext();
}
std::string translateActiveException() {
return getRegistryHub().getExceptionTranslatorRegistry().translateActiveException();
}
} // end namespace Catch
// end catch_registry_hub.cpp
// start catch_reporter_registry.cpp
namespace Catch {
ReporterRegistry::~ReporterRegistry() = default;
IStreamingReporterPtr ReporterRegistry::create( std::string const& name, IConfigPtr const& config ) const {
auto it = m_factories.find( name );
if( it == m_factories.end() )
return nullptr;
return it->second->create( ReporterConfig( config ) );
}
void ReporterRegistry::registerReporter( std::string const& name, IReporterFactoryPtr const& factory ) {
m_factories.emplace(name, factory);
}
void ReporterRegistry::registerListener( IReporterFactoryPtr const& factory ) {
m_listeners.push_back( factory );
}
IReporterRegistry::FactoryMap const& ReporterRegistry::getFactories() const {
return m_factories;
}
IReporterRegistry::Listeners const& ReporterRegistry::getListeners() const {
return m_listeners;
}
}
// end catch_reporter_registry.cpp
// start catch_result_type.cpp
namespace Catch {
bool isOk( ResultWas::OfType resultType ) {
return ( resultType & ResultWas::FailureBit ) == 0;
}
bool isJustInfo( int flags ) {
return flags == ResultWas::Info;
}
ResultDisposition::Flags operator | ( ResultDisposition::Flags lhs, ResultDisposition::Flags rhs ) {
return static_cast<ResultDisposition::Flags>( static_cast<int>( lhs ) | static_cast<int>( rhs ) );
}
bool shouldContinueOnFailure( int flags ) { return ( flags & ResultDisposition::ContinueOnFailure ) != 0; }
bool shouldSuppressFailure( int flags ) { return ( flags & ResultDisposition::SuppressFail ) != 0; }
} // end namespace Catch
// end catch_result_type.cpp
// start catch_run_context.cpp
#include <cassert>
#include <algorithm>
#include <sstream>
namespace Catch {
namespace Generators {
struct GeneratorTracker : TestCaseTracking::TrackerBase, IGeneratorTracker {
GeneratorBasePtr m_generator;
GeneratorTracker( TestCaseTracking::NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* parent )
: TrackerBase( nameAndLocation, ctx, parent )
{}
~GeneratorTracker();
static GeneratorTracker& acquire( TrackerContext& ctx, TestCaseTracking::NameAndLocation const& nameAndLocation ) {
std::shared_ptr<GeneratorTracker> tracker;
ITracker& currentTracker = ctx.currentTracker();
if( TestCaseTracking::ITrackerPtr childTracker = currentTracker.findChild( nameAndLocation ) ) {
assert( childTracker );
assert( childTracker->isGeneratorTracker() );
tracker = std::static_pointer_cast<GeneratorTracker>( childTracker );
}
else {
tracker = std::make_shared<GeneratorTracker>( nameAndLocation, ctx, ¤tTracker );
currentTracker.addChild( tracker );
}
if( !ctx.completedCycle() && !tracker->isComplete() ) {
tracker->open();
}
return *tracker;
}
// TrackerBase interface
bool isGeneratorTracker() const override { return true; }
auto hasGenerator() const -> bool override {
return !!m_generator;
}
void close() override {
TrackerBase::close();
// Generator interface only finds out if it has another item on atual move
if (m_runState == CompletedSuccessfully && m_generator->next()) {
m_children.clear();
m_runState = Executing;
}
}
// IGeneratorTracker interface
auto getGenerator() const -> GeneratorBasePtr const& override {
return m_generator;
}
void setGenerator( GeneratorBasePtr&& generator ) override {
m_generator = std::move( generator );
}
};
GeneratorTracker::~GeneratorTracker() {}
}
RunContext::RunContext(IConfigPtr const& _config, IStreamingReporterPtr&& reporter)
: m_runInfo(_config->name()),
m_context(getCurrentMutableContext()),
m_config(_config),
m_reporter(std::move(reporter)),
m_lastAssertionInfo{ StringRef(), SourceLineInfo("",0), StringRef(), ResultDisposition::Normal },
m_includeSuccessfulResults( m_config->includeSuccessfulResults() || m_reporter->getPreferences().shouldReportAllAssertions )
{
m_context.setRunner(this);
m_context.setConfig(m_config);
m_context.setResultCapture(this);
m_reporter->testRunStarting(m_runInfo);
}
RunContext::~RunContext() {
m_reporter->testRunEnded(TestRunStats(m_runInfo, m_totals, aborting()));
}
void RunContext::testGroupStarting(std::string const& testSpec, std::size_t groupIndex, std::size_t groupsCount) {
m_reporter->testGroupStarting(GroupInfo(testSpec, groupIndex, groupsCount));
}
void RunContext::testGroupEnded(std::string const& testSpec, Totals const& totals, std::size_t groupIndex, std::size_t groupsCount) {
m_reporter->testGroupEnded(TestGroupStats(GroupInfo(testSpec, groupIndex, groupsCount), totals, aborting()));
}
Totals RunContext::runTest(TestCase const& testCase) {
Totals prevTotals = m_totals;
std::string redirectedCout;
std::string redirectedCerr;
auto const& testInfo = testCase.getTestCaseInfo();
m_reporter->testCaseStarting(testInfo);
m_activeTestCase = &testCase;
ITracker& rootTracker = m_trackerContext.startRun();
assert(rootTracker.isSectionTracker());
static_cast<SectionTracker&>(rootTracker).addInitialFilters(m_config->getSectionsToRun());
do {
m_trackerContext.startCycle();
m_testCaseTracker = &SectionTracker::acquire(m_trackerContext, TestCaseTracking::NameAndLocation(testInfo.name, testInfo.lineInfo));
runCurrentTest(redirectedCout, redirectedCerr);
} while (!m_testCaseTracker->isSuccessfullyCompleted() && !aborting());
Totals deltaTotals = m_totals.delta(prevTotals);
if (testInfo.expectedToFail() && deltaTotals.testCases.passed > 0) {
deltaTotals.assertions.failed++;
deltaTotals.testCases.passed--;
deltaTotals.testCases.failed++;
}
m_totals.testCases += deltaTotals.testCases;
m_reporter->testCaseEnded(TestCaseStats(testInfo,
deltaTotals,
redirectedCout,
redirectedCerr,
aborting()));
m_activeTestCase = nullptr;
m_testCaseTracker = nullptr;
return deltaTotals;
}
IConfigPtr RunContext::config() const {
return m_config;
}
IStreamingReporter& RunContext::reporter() const {
return *m_reporter;
}
void RunContext::assertionEnded(AssertionResult const & result) {
if (result.getResultType() == ResultWas::Ok) {
m_totals.assertions.passed++;
m_lastAssertionPassed = true;
} else if (!result.isOk()) {
m_lastAssertionPassed = false;
if( m_activeTestCase->getTestCaseInfo().okToFail() )
m_totals.assertions.failedButOk++;
else
m_totals.assertions.failed++;
}
else {
m_lastAssertionPassed = true;
}
// We have no use for the return value (whether messages should be cleared), because messages were made scoped
// and should be let to clear themselves out.
static_cast<void>(m_reporter->assertionEnded(AssertionStats(result, m_messages, m_totals)));
// Reset working state
resetAssertionInfo();
m_lastResult = result;
}
void RunContext::resetAssertionInfo() {
m_lastAssertionInfo.macroName = StringRef();
m_lastAssertionInfo.capturedExpression = "{Unknown expression after the reported line}"_sr;
}
bool RunContext::sectionStarted(SectionInfo const & sectionInfo, Counts & assertions) {
ITracker& sectionTracker = SectionTracker::acquire(m_trackerContext, TestCaseTracking::NameAndLocation(sectionInfo.name, sectionInfo.lineInfo));
if (!sectionTracker.isOpen())
return false;
m_activeSections.push_back(§ionTracker);
m_lastAssertionInfo.lineInfo = sectionInfo.lineInfo;
m_reporter->sectionStarting(sectionInfo);
assertions = m_totals.assertions;
return true;
}
auto RunContext::acquireGeneratorTracker( SourceLineInfo const& lineInfo ) -> IGeneratorTracker& {
using namespace Generators;
GeneratorTracker& tracker = GeneratorTracker::acquire( m_trackerContext, TestCaseTracking::NameAndLocation( "generator", lineInfo ) );
assert( tracker.isOpen() );
m_lastAssertionInfo.lineInfo = lineInfo;
return tracker;
}
bool RunContext::testForMissingAssertions(Counts& assertions) {
if (assertions.total() != 0)
return false;
if (!m_config->warnAboutMissingAssertions())
return false;
if (m_trackerContext.currentTracker().hasChildren())
return false;
m_totals.assertions.failed++;
assertions.failed++;
return true;
}
void RunContext::sectionEnded(SectionEndInfo const & endInfo) {
Counts assertions = m_totals.assertions - endInfo.prevAssertions;
bool missingAssertions = testForMissingAssertions(assertions);
if (!m_activeSections.empty()) {
m_activeSections.back()->close();
m_activeSections.pop_back();
}
m_reporter->sectionEnded(SectionStats(endInfo.sectionInfo, assertions, endInfo.durationInSeconds, missingAssertions));
m_messages.clear();
}
void RunContext::sectionEndedEarly(SectionEndInfo const & endInfo) {
if (m_unfinishedSections.empty())
m_activeSections.back()->fail();
else
m_activeSections.back()->close();
m_activeSections.pop_back();
m_unfinishedSections.push_back(endInfo);
}
void RunContext::benchmarkStarting( BenchmarkInfo const& info ) {
m_reporter->benchmarkStarting( info );
}
void RunContext::benchmarkEnded( BenchmarkStats const& stats ) {
m_reporter->benchmarkEnded( stats );
}
void RunContext::pushScopedMessage(MessageInfo const & message) {
m_messages.push_back(message);
}
void RunContext::popScopedMessage(MessageInfo const & message) {
m_messages.erase(std::remove(m_messages.begin(), m_messages.end(), message), m_messages.end());
}
std::string RunContext::getCurrentTestName() const {
return m_activeTestCase
? m_activeTestCase->getTestCaseInfo().name
: std::string();
}
const AssertionResult * RunContext::getLastResult() const {
return &(*m_lastResult);
}
void RunContext::exceptionEarlyReported() {
m_shouldReportUnexpected = false;
}
void RunContext::handleFatalErrorCondition( StringRef message ) {
// First notify reporter that bad things happened
m_reporter->fatalErrorEncountered(message);
// Don't rebuild the result -- the stringification itself can cause more fatal errors
// Instead, fake a result data.
AssertionResultData tempResult( ResultWas::FatalErrorCondition, { false } );
tempResult.message = message;
AssertionResult result(m_lastAssertionInfo, tempResult);
assertionEnded(result);
handleUnfinishedSections();
// Recreate section for test case (as we will lose the one that was in scope)
auto const& testCaseInfo = m_activeTestCase->getTestCaseInfo();
SectionInfo testCaseSection(testCaseInfo.lineInfo, testCaseInfo.name);
Counts assertions;
assertions.failed = 1;
SectionStats testCaseSectionStats(testCaseSection, assertions, 0, false);
m_reporter->sectionEnded(testCaseSectionStats);
auto const& testInfo = m_activeTestCase->getTestCaseInfo();
Totals deltaTotals;
deltaTotals.testCases.failed = 1;
deltaTotals.assertions.failed = 1;
m_reporter->testCaseEnded(TestCaseStats(testInfo,
deltaTotals,
std::string(),
std::string(),
false));
m_totals.testCases.failed++;
testGroupEnded(std::string(), m_totals, 1, 1);
m_reporter->testRunEnded(TestRunStats(m_runInfo, m_totals, false));
}
bool RunContext::lastAssertionPassed() {
return m_lastAssertionPassed;
}
void RunContext::assertionPassed() {
m_lastAssertionPassed = true;
++m_totals.assertions.passed;
resetAssertionInfo();
}
bool RunContext::aborting() const {
return m_totals.assertions.failed >= static_cast<std::size_t>(m_config->abortAfter());
}
void RunContext::runCurrentTest(std::string & redirectedCout, std::string & redirectedCerr) {
auto const& testCaseInfo = m_activeTestCase->getTestCaseInfo();
SectionInfo testCaseSection(testCaseInfo.lineInfo, testCaseInfo.name);
m_reporter->sectionStarting(testCaseSection);
Counts prevAssertions = m_totals.assertions;
double duration = 0;
m_shouldReportUnexpected = true;
m_lastAssertionInfo = { "TEST_CASE"_sr, testCaseInfo.lineInfo, StringRef(), ResultDisposition::Normal };
seedRng(*m_config);
Timer timer;
CATCH_TRY {
if (m_reporter->getPreferences().shouldRedirectStdOut) {
#if !defined(CATCH_CONFIG_EXPERIMENTAL_REDIRECT)
RedirectedStdOut redirectedStdOut;
RedirectedStdErr redirectedStdErr;
timer.start();
invokeActiveTestCase();
redirectedCout += redirectedStdOut.str();
redirectedCerr += redirectedStdErr.str();
#else
OutputRedirect r(redirectedCout, redirectedCerr);
timer.start();
invokeActiveTestCase();
#endif
} else {
timer.start();
invokeActiveTestCase();
}
duration = timer.getElapsedSeconds();
} CATCH_CATCH_ANON (TestFailureException&) {
// This just means the test was aborted due to failure
} CATCH_CATCH_ALL {
// Under CATCH_CONFIG_FAST_COMPILE, unexpected exceptions under REQUIRE assertions
// are reported without translation at the point of origin.
if( m_shouldReportUnexpected ) {
AssertionReaction dummyReaction;
handleUnexpectedInflightException( m_lastAssertionInfo, translateActiveException(), dummyReaction );
}
}
Counts assertions = m_totals.assertions - prevAssertions;
bool missingAssertions = testForMissingAssertions(assertions);
m_testCaseTracker->close();
handleUnfinishedSections();
m_messages.clear();
SectionStats testCaseSectionStats(testCaseSection, assertions, duration, missingAssertions);
m_reporter->sectionEnded(testCaseSectionStats);
}
void RunContext::invokeActiveTestCase() {
FatalConditionHandler fatalConditionHandler; // Handle signals
m_activeTestCase->invoke();
fatalConditionHandler.reset();
}
void RunContext::handleUnfinishedSections() {
// If sections ended prematurely due to an exception we stored their
// infos here so we can tear them down outside the unwind process.
for (auto it = m_unfinishedSections.rbegin(),
itEnd = m_unfinishedSections.rend();
it != itEnd;
++it)
sectionEnded(*it);
m_unfinishedSections.clear();
}
void RunContext::handleExpr(
AssertionInfo const& info,
ITransientExpression const& expr,
AssertionReaction& reaction
) {
m_reporter->assertionStarting( info );
bool negated = isFalseTest( info.resultDisposition );
bool result = expr.getResult() != negated;
if( result ) {
if (!m_includeSuccessfulResults) {
assertionPassed();
}
else {
reportExpr(info, ResultWas::Ok, &expr, negated);
}
}
else {
reportExpr(info, ResultWas::ExpressionFailed, &expr, negated );
populateReaction( reaction );
}
}
void RunContext::reportExpr(
AssertionInfo const &info,
ResultWas::OfType resultType,
ITransientExpression const *expr,
bool negated ) {
m_lastAssertionInfo = info;
AssertionResultData data( resultType, LazyExpression( negated ) );
AssertionResult assertionResult{ info, data };
assertionResult.m_resultData.lazyExpression.m_transientExpression = expr;
assertionEnded( assertionResult );
}
void RunContext::handleMessage(
AssertionInfo const& info,
ResultWas::OfType resultType,
StringRef const& message,
AssertionReaction& reaction
) {
m_reporter->assertionStarting( info );
m_lastAssertionInfo = info;
AssertionResultData data( resultType, LazyExpression( false ) );
data.message = message;
AssertionResult assertionResult{ m_lastAssertionInfo, data };
assertionEnded( assertionResult );
if( !assertionResult.isOk() )
populateReaction( reaction );
}
void RunContext::handleUnexpectedExceptionNotThrown(
AssertionInfo const& info,
AssertionReaction& reaction
) {
handleNonExpr(info, Catch::ResultWas::DidntThrowException, reaction);
}
void RunContext::handleUnexpectedInflightException(
AssertionInfo const& info,
std::string const& message,
AssertionReaction& reaction
) {
m_lastAssertionInfo = info;
AssertionResultData data( ResultWas::ThrewException, LazyExpression( false ) );
data.message = message;
AssertionResult assertionResult{ info, data };
assertionEnded( assertionResult );
populateReaction( reaction );
}
void RunContext::populateReaction( AssertionReaction& reaction ) {
reaction.shouldDebugBreak = m_config->shouldDebugBreak();
reaction.shouldThrow = aborting() || (m_lastAssertionInfo.resultDisposition & ResultDisposition::Normal);
}
void RunContext::handleIncomplete(
AssertionInfo const& info
) {
m_lastAssertionInfo = info;
AssertionResultData data( ResultWas::ThrewException, LazyExpression( false ) );
data.message = "Exception translation was disabled by CATCH_CONFIG_FAST_COMPILE";
AssertionResult assertionResult{ info, data };
assertionEnded( assertionResult );
}
void RunContext::handleNonExpr(
AssertionInfo const &info,
ResultWas::OfType resultType,
AssertionReaction &reaction
) {
m_lastAssertionInfo = info;
AssertionResultData data( resultType, LazyExpression( false ) );
AssertionResult assertionResult{ info, data };
assertionEnded( assertionResult );
if( !assertionResult.isOk() )
populateReaction( reaction );
}
IResultCapture& getResultCapture() {
if (auto* capture = getCurrentContext().getResultCapture())
return *capture;
else
CATCH_INTERNAL_ERROR("No result capture instance");
}
}
// end catch_run_context.cpp
// start catch_section.cpp
namespace Catch {
Section::Section( SectionInfo const& info )
: m_info( info ),
m_sectionIncluded( getResultCapture().sectionStarted( m_info, m_assertions ) )
{
m_timer.start();
}
Section::~Section() {
if( m_sectionIncluded ) {
SectionEndInfo endInfo{ m_info, m_assertions, m_timer.getElapsedSeconds() };
if( uncaught_exceptions() )
getResultCapture().sectionEndedEarly( endInfo );
else
getResultCapture().sectionEnded( endInfo );
}
}
// This indicates whether the section should be executed or not
Section::operator bool() const {
return m_sectionIncluded;
}
} // end namespace Catch
// end catch_section.cpp
// start catch_section_info.cpp
namespace Catch {
SectionInfo::SectionInfo
( SourceLineInfo const& _lineInfo,
std::string const& _name )
: name( _name ),
lineInfo( _lineInfo )
{}
} // end namespace Catch
// end catch_section_info.cpp
// start catch_session.cpp
// start catch_session.h
#include <memory>
namespace Catch {
class Session : NonCopyable {
public:
Session();
~Session() override;
void showHelp() const;
void libIdentify();
int applyCommandLine( int argc, char const * const * argv );
#if defined(CATCH_CONFIG_WCHAR) && defined(WIN32) && defined(UNICODE)
int applyCommandLine( int argc, wchar_t const * const * argv );
#endif
void useConfigData( ConfigData const& configData );
template<typename CharT>
int run(int argc, CharT const * const argv[]) {
if (m_startupExceptions)
return 1;
int returnCode = applyCommandLine(argc, argv);
if (returnCode == 0)
returnCode = run();
return returnCode;
}
int run();
clara::Parser const& cli() const;
void cli( clara::Parser const& newParser );
ConfigData& configData();
Config& config();
private:
int runInternal();
clara::Parser m_cli;
ConfigData m_configData;
std::shared_ptr<Config> m_config;
bool m_startupExceptions = false;
};
} // end namespace Catch
// end catch_session.h
// start catch_version.h
#include <iosfwd>
namespace Catch {
// Versioning information
struct Version {
Version( Version const& ) = delete;
Version& operator=( Version const& ) = delete;
Version( unsigned int _majorVersion,
unsigned int _minorVersion,
unsigned int _patchNumber,
char const * const _branchName,
unsigned int _buildNumber );
unsigned int const majorVersion;
unsigned int const minorVersion;
unsigned int const patchNumber;
// buildNumber is only used if branchName is not null
char const * const branchName;
unsigned int const buildNumber;
friend std::ostream& operator << ( std::ostream& os, Version const& version );
};
Version const& libraryVersion();
}
// end catch_version.h
#include <cstdlib>
#include <iomanip>
namespace Catch {
namespace {
const int MaxExitCode = 255;
IStreamingReporterPtr createReporter(std::string const& reporterName, IConfigPtr const& config) {
auto reporter = Catch::getRegistryHub().getReporterRegistry().create(reporterName, config);
CATCH_ENFORCE(reporter, "No reporter registered with name: '" << reporterName << "'");
return reporter;
}
IStreamingReporterPtr makeReporter(std::shared_ptr<Config> const& config) {
if (Catch::getRegistryHub().getReporterRegistry().getListeners().empty()) {
return createReporter(config->getReporterName(), config);
}
// On older platforms, returning std::unique_ptr<ListeningReporter>
// when the return type is std::unique_ptr<IStreamingReporter>
// doesn't compile without a std::move call. However, this causes
// a warning on newer platforms. Thus, we have to work around
// it a bit and downcast the pointer manually.
auto ret = std::unique_ptr<IStreamingReporter>(new ListeningReporter);
auto& multi = static_cast<ListeningReporter&>(*ret);
auto const& listeners = Catch::getRegistryHub().getReporterRegistry().getListeners();
for (auto const& listener : listeners) {
multi.addListener(listener->create(Catch::ReporterConfig(config)));
}
multi.addReporter(createReporter(config->getReporterName(), config));
return ret;
}
Catch::Totals runTests(std::shared_ptr<Config> const& config) {
auto reporter = makeReporter(config);
RunContext context(config, std::move(reporter));
Totals totals;
context.testGroupStarting(config->name(), 1, 1);
TestSpec testSpec = config->testSpec();
auto const& allTestCases = getAllTestCasesSorted(*config);
for (auto const& testCase : allTestCases) {
if (!context.aborting() && matchTest(testCase, testSpec, *config))
totals += context.runTest(testCase);
else
context.reporter().skipTest(testCase);
}
if (config->warnAboutNoTests() && totals.testCases.total() == 0) {
ReusableStringStream testConfig;
bool first = true;
for (const auto& input : config->getTestsOrTags()) {
if (!first) { testConfig << ' '; }
first = false;
testConfig << input;
}
context.reporter().noMatchingTestCases(testConfig.str());
totals.error = -1;
}
context.testGroupEnded(config->name(), totals, 1, 1);
return totals;
}
void applyFilenamesAsTags(Catch::IConfig const& config) {
auto& tests = const_cast<std::vector<TestCase>&>(getAllTestCasesSorted(config));
for (auto& testCase : tests) {
auto tags = testCase.tags;
std::string filename = testCase.lineInfo.file;
auto lastSlash = filename.find_last_of("\\/");
if (lastSlash != std::string::npos) {
filename.erase(0, lastSlash);
filename[0] = '#';
}
auto lastDot = filename.find_last_of('.');
if (lastDot != std::string::npos) {
filename.erase(lastDot);
}
tags.push_back(std::move(filename));
setTags(testCase, tags);
}
}
} // anon namespace
Session::Session() {
static bool alreadyInstantiated = false;
if( alreadyInstantiated ) {
CATCH_TRY { CATCH_INTERNAL_ERROR( "Only one instance of Catch::Session can ever be used" ); }
CATCH_CATCH_ALL { getMutableRegistryHub().registerStartupException(); }
}
// There cannot be exceptions at startup in no-exception mode.
#if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
const auto& exceptions = getRegistryHub().getStartupExceptionRegistry().getExceptions();
if ( !exceptions.empty() ) {
m_startupExceptions = true;
Colour colourGuard( Colour::Red );
Catch::cerr() << "Errors occurred during startup!" << '\n';
// iterate over all exceptions and notify user
for ( const auto& ex_ptr : exceptions ) {
try {
std::rethrow_exception(ex_ptr);
} catch ( std::exception const& ex ) {
Catch::cerr() << Column( ex.what() ).indent(2) << '\n';
}
}
}
#endif
alreadyInstantiated = true;
m_cli = makeCommandLineParser( m_configData );
}
Session::~Session() {
Catch::cleanUp();
}
void Session::showHelp() const {
Catch::cout()
<< "\nCatch v" << libraryVersion() << "\n"
<< m_cli << std::endl
<< "For more detailed usage please see the project docs\n" << std::endl;
}
void Session::libIdentify() {
Catch::cout()
<< std::left << std::setw(16) << "description: " << "A Catch test executable\n"
<< std::left << std::setw(16) << "category: " << "testframework\n"
<< std::left << std::setw(16) << "framework: " << "Catch Test\n"
<< std::left << std::setw(16) << "version: " << libraryVersion() << std::endl;
}
int Session::applyCommandLine( int argc, char const * const * argv ) {
if( m_startupExceptions )
return 1;
auto result = m_cli.parse( clara::Args( argc, argv ) );
if( !result ) {
Catch::cerr()
<< Colour( Colour::Red )
<< "\nError(s) in input:\n"
<< Column( result.errorMessage() ).indent( 2 )
<< "\n\n";
Catch::cerr() << "Run with -? for usage\n" << std::endl;
return MaxExitCode;
}
if( m_configData.showHelp )
showHelp();
if( m_configData.libIdentify )
libIdentify();
m_config.reset();
return 0;
}
#if defined(CATCH_CONFIG_WCHAR) && defined(WIN32) && defined(UNICODE)
int Session::applyCommandLine( int argc, wchar_t const * const * argv ) {
char **utf8Argv = new char *[ argc ];
for ( int i = 0; i < argc; ++i ) {
int bufSize = WideCharToMultiByte( CP_UTF8, 0, argv[i], -1, NULL, 0, NULL, NULL );
utf8Argv[ i ] = new char[ bufSize ];
WideCharToMultiByte( CP_UTF8, 0, argv[i], -1, utf8Argv[i], bufSize, NULL, NULL );
}
int returnCode = applyCommandLine( argc, utf8Argv );
for ( int i = 0; i < argc; ++i )
delete [] utf8Argv[ i ];
delete [] utf8Argv;
return returnCode;
}
#endif
void Session::useConfigData( ConfigData const& configData ) {
m_configData = configData;
m_config.reset();
}
int Session::run() {
if( ( m_configData.waitForKeypress & WaitForKeypress::BeforeStart ) != 0 ) {
Catch::cout() << "...waiting for enter/ return before starting" << std::endl;
static_cast<void>(std::getchar());
}
int exitCode = runInternal();
if( ( m_configData.waitForKeypress & WaitForKeypress::BeforeExit ) != 0 ) {
Catch::cout() << "...waiting for enter/ return before exiting, with code: " << exitCode << std::endl;
static_cast<void>(std::getchar());
}
return exitCode;
}
clara::Parser const& Session::cli() const {
return m_cli;
}
void Session::cli( clara::Parser const& newParser ) {
m_cli = newParser;
}
ConfigData& Session::configData() {
return m_configData;
}
Config& Session::config() {
if( !m_config )
m_config = std::make_shared<Config>( m_configData );
return *m_config;
}
int Session::runInternal() {
if( m_startupExceptions )
return 1;
if (m_configData.showHelp || m_configData.libIdentify) {
return 0;
}
CATCH_TRY {
config(); // Force config to be constructed
seedRng( *m_config );
if( m_configData.filenamesAsTags )
applyFilenamesAsTags( *m_config );
// Handle list request
if( Option<std::size_t> listed = list( config() ) )
return static_cast<int>( *listed );
auto totals = runTests( m_config );
// Note that on unices only the lower 8 bits are usually used, clamping
// the return value to 255 prevents false negative when some multiple
// of 256 tests has failed
return (std::min) (MaxExitCode, (std::max) (totals.error, static_cast<int>(totals.assertions.failed)));
}
#if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
catch( std::exception& ex ) {
Catch::cerr() << ex.what() << std::endl;
return MaxExitCode;
}
#endif
}
} // end namespace Catch
// end catch_session.cpp
// start catch_singletons.cpp
#include <vector>
namespace Catch {
namespace {
static auto getSingletons() -> std::vector<ISingleton*>*& {
static std::vector<ISingleton*>* g_singletons = nullptr;
if( !g_singletons )
g_singletons = new std::vector<ISingleton*>();
return g_singletons;
}
}
ISingleton::~ISingleton() {}
void addSingleton(ISingleton* singleton ) {
getSingletons()->push_back( singleton );
}
void cleanupSingletons() {
auto& singletons = getSingletons();
for( auto singleton : *singletons )
delete singleton;
delete singletons;
singletons = nullptr;
}
} // namespace Catch
// end catch_singletons.cpp
// start catch_startup_exception_registry.cpp
namespace Catch {
void StartupExceptionRegistry::add( std::exception_ptr const& exception ) noexcept {
CATCH_TRY {
m_exceptions.push_back(exception);
} CATCH_CATCH_ALL {
// If we run out of memory during start-up there's really not a lot more we can do about it
std::terminate();
}
}
std::vector<std::exception_ptr> const& StartupExceptionRegistry::getExceptions() const noexcept {
return m_exceptions;
}
} // end namespace Catch
// end catch_startup_exception_registry.cpp
// start catch_stream.cpp
#include <cstdio>
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include <memory>
namespace Catch {
Catch::IStream::~IStream() = default;
namespace detail { namespace {
template<typename WriterF, std::size_t bufferSize=256>
class StreamBufImpl : public std::streambuf {
char data[bufferSize];
WriterF m_writer;
public:
StreamBufImpl() {
setp( data, data + sizeof(data) );
}
~StreamBufImpl() noexcept {
StreamBufImpl::sync();
}
private:
int overflow( int c ) override {
sync();
if( c != EOF ) {
if( pbase() == epptr() )
m_writer( std::string( 1, static_cast<char>( c ) ) );
else
sputc( static_cast<char>( c ) );
}
return 0;
}
int sync() override {
if( pbase() != pptr() ) {
m_writer( std::string( pbase(), static_cast<std::string::size_type>( pptr() - pbase() ) ) );
setp( pbase(), epptr() );
}
return 0;
}
};
///////////////////////////////////////////////////////////////////////////
struct OutputDebugWriter {
void operator()( std::string const&str ) {
writeToDebugConsole( str );
}
};
///////////////////////////////////////////////////////////////////////////
class FileStream : public IStream {
mutable std::ofstream m_ofs;
public:
FileStream( StringRef filename ) {
m_ofs.open( filename.c_str() );
CATCH_ENFORCE( !m_ofs.fail(), "Unable to open file: '" << filename << "'" );
}
~FileStream() override = default;
public: // IStream
std::ostream& stream() const override {
return m_ofs;
}
};
///////////////////////////////////////////////////////////////////////////
class CoutStream : public IStream {
mutable std::ostream m_os;
public:
// Store the streambuf from cout up-front because
// cout may get redirected when running tests
CoutStream() : m_os( Catch::cout().rdbuf() ) {}
~CoutStream() override = default;
public: // IStream
std::ostream& stream() const override { return m_os; }
};
///////////////////////////////////////////////////////////////////////////
class DebugOutStream : public IStream {
std::unique_ptr<StreamBufImpl<OutputDebugWriter>> m_streamBuf;
mutable std::ostream m_os;
public:
DebugOutStream()
: m_streamBuf( new StreamBufImpl<OutputDebugWriter>() ),
m_os( m_streamBuf.get() )
{}
~DebugOutStream() override = default;
public: // IStream
std::ostream& stream() const override { return m_os; }
};
}} // namespace anon::detail
///////////////////////////////////////////////////////////////////////////
auto makeStream( StringRef const &filename ) -> IStream const* {
if( filename.empty() )
return new detail::CoutStream();
else if( filename[0] == '%' ) {
if( filename == "%debug" )
return new detail::DebugOutStream();
else
CATCH_ERROR( "Unrecognised stream: '" << filename << "'" );
}
else
return new detail::FileStream( filename );
}
// This class encapsulates the idea of a pool of ostringstreams that can be reused.
struct StringStreams {
std::vector<std::unique_ptr<std::ostringstream>> m_streams;
std::vector<std::size_t> m_unused;
std::ostringstream m_referenceStream; // Used for copy state/ flags from
auto add() -> std::size_t {
if( m_unused.empty() ) {
m_streams.push_back( std::unique_ptr<std::ostringstream>( new std::ostringstream ) );
return m_streams.size()-1;
}
else {
auto index = m_unused.back();
m_unused.pop_back();
return index;
}
}
void release( std::size_t index ) {
m_streams[index]->copyfmt( m_referenceStream ); // Restore initial flags and other state
m_unused.push_back(index);
}
};
ReusableStringStream::ReusableStringStream()
: m_index( Singleton<StringStreams>::getMutable().add() ),
m_oss( Singleton<StringStreams>::getMutable().m_streams[m_index].get() )
{}
ReusableStringStream::~ReusableStringStream() {
static_cast<std::ostringstream*>( m_oss )->str("");
m_oss->clear();
Singleton<StringStreams>::getMutable().release( m_index );
}
auto ReusableStringStream::str() const -> std::string {
return static_cast<std::ostringstream*>( m_oss )->str();
}
///////////////////////////////////////////////////////////////////////////
#ifndef CATCH_CONFIG_NOSTDOUT // If you #define this you must implement these functions
std::ostream& cout() { return std::cout; }
std::ostream& cerr() { return std::cerr; }
std::ostream& clog() { return std::clog; }
#endif
}
// end catch_stream.cpp
// start catch_string_manip.cpp
#include <algorithm>
#include <ostream>
#include <cstring>
#include <cctype>
namespace Catch {
namespace {
char toLowerCh(char c) {
return static_cast<char>( std::tolower( c ) );
}
}
bool startsWith( std::string const& s, std::string const& prefix ) {
return s.size() >= prefix.size() && std::equal(prefix.begin(), prefix.end(), s.begin());
}
bool startsWith( std::string const& s, char prefix ) {
return !s.empty() && s[0] == prefix;
}
bool endsWith( std::string const& s, std::string const& suffix ) {
return s.size() >= suffix.size() && std::equal(suffix.rbegin(), suffix.rend(), s.rbegin());
}
bool endsWith( std::string const& s, char suffix ) {
return !s.empty() && s[s.size()-1] == suffix;
}
bool contains( std::string const& s, std::string const& infix ) {
return s.find( infix ) != std::string::npos;
}
void toLowerInPlace( std::string& s ) {
std::transform( s.begin(), s.end(), s.begin(), toLowerCh );
}
std::string toLower( std::string const& s ) {
std::string lc = s;
toLowerInPlace( lc );
return lc;
}
std::string trim( std::string const& str ) {
static char const* whitespaceChars = "\n\r\t ";
std::string::size_type start = str.find_first_not_of( whitespaceChars );
std::string::size_type end = str.find_last_not_of( whitespaceChars );
return start != std::string::npos ? str.substr( start, 1+end-start ) : std::string();
}
bool replaceInPlace( std::string& str, std::string const& replaceThis, std::string const& withThis ) {
bool replaced = false;
std::size_t i = str.find( replaceThis );
while( i != std::string::npos ) {
replaced = true;
str = str.substr( 0, i ) + withThis + str.substr( i+replaceThis.size() );
if( i < str.size()-withThis.size() )
i = str.find( replaceThis, i+withThis.size() );
else
i = std::string::npos;
}
return replaced;
}
pluralise::pluralise( std::size_t count, std::string const& label )
: m_count( count ),
m_label( label )
{}
std::ostream& operator << ( std::ostream& os, pluralise const& pluraliser ) {
os << pluraliser.m_count << ' ' << pluraliser.m_label;
if( pluraliser.m_count != 1 )
os << 's';
return os;
}
}
// end catch_string_manip.cpp
// start catch_stringref.cpp
#if defined(__clang__)
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wexit-time-destructors"
#endif
#include <ostream>
#include <cstring>
#include <cstdint>
namespace {
const uint32_t byte_2_lead = 0xC0;
const uint32_t byte_3_lead = 0xE0;
const uint32_t byte_4_lead = 0xF0;
}
namespace Catch {
StringRef::StringRef( char const* rawChars ) noexcept
: StringRef( rawChars, static_cast<StringRef::size_type>(std::strlen(rawChars) ) )
{}
StringRef::operator std::string() const {
return std::string( m_start, m_size );
}
void StringRef::swap( StringRef& other ) noexcept {
std::swap( m_start, other.m_start );
std::swap( m_size, other.m_size );
std::swap( m_data, other.m_data );
}
auto StringRef::c_str() const -> char const* {
if( isSubstring() )
const_cast<StringRef*>( this )->takeOwnership();
return m_start;
}
auto StringRef::currentData() const noexcept -> char const* {
return m_start;
}
auto StringRef::isOwned() const noexcept -> bool {
return m_data != nullptr;
}
auto StringRef::isSubstring() const noexcept -> bool {
return m_start[m_size] != '\0';
}
void StringRef::takeOwnership() {
if( !isOwned() ) {
m_data = new char[m_size+1];
memcpy( m_data, m_start, m_size );
m_data[m_size] = '\0';
m_start = m_data;
}
}
auto StringRef::substr( size_type start, size_type size ) const noexcept -> StringRef {
if( start < m_size )
return StringRef( m_start+start, size );
else
return StringRef();
}
auto StringRef::operator == ( StringRef const& other ) const noexcept -> bool {
return
size() == other.size() &&
(std::strncmp( m_start, other.m_start, size() ) == 0);
}
auto StringRef::operator != ( StringRef const& other ) const noexcept -> bool {
return !operator==( other );
}
auto StringRef::operator[](size_type index) const noexcept -> char {
return m_start[index];
}
auto StringRef::numberOfCharacters() const noexcept -> size_type {
size_type noChars = m_size;
// Make adjustments for uft encodings
for( size_type i=0; i < m_size; ++i ) {
char c = m_start[i];
if( ( c & byte_2_lead ) == byte_2_lead ) {
noChars--;
if (( c & byte_3_lead ) == byte_3_lead )
noChars--;
if( ( c & byte_4_lead ) == byte_4_lead )
noChars--;
}
}
return noChars;
}
auto operator + ( StringRef const& lhs, StringRef const& rhs ) -> std::string {
std::string str;
str.reserve( lhs.size() + rhs.size() );
str += lhs;
str += rhs;
return str;
}
auto operator + ( StringRef const& lhs, const char* rhs ) -> std::string {
return std::string( lhs ) + std::string( rhs );
}
auto operator + ( char const* lhs, StringRef const& rhs ) -> std::string {
return std::string( lhs ) + std::string( rhs );
}
auto operator << ( std::ostream& os, StringRef const& str ) -> std::ostream& {
return os.write(str.currentData(), str.size());
}
auto operator+=( std::string& lhs, StringRef const& rhs ) -> std::string& {
lhs.append(rhs.currentData(), rhs.size());
return lhs;
}
} // namespace Catch
#if defined(__clang__)
# pragma clang diagnostic pop
#endif
// end catch_stringref.cpp
// start catch_tag_alias.cpp
namespace Catch {
TagAlias::TagAlias(std::string const & _tag, SourceLineInfo _lineInfo): tag(_tag), lineInfo(_lineInfo) {}
}
// end catch_tag_alias.cpp
// start catch_tag_alias_autoregistrar.cpp
namespace Catch {
RegistrarForTagAliases::RegistrarForTagAliases(char const* alias, char const* tag, SourceLineInfo const& lineInfo) {
CATCH_TRY {
getMutableRegistryHub().registerTagAlias(alias, tag, lineInfo);
} CATCH_CATCH_ALL {
// Do not throw when constructing global objects, instead register the exception to be processed later
getMutableRegistryHub().registerStartupException();
}
}
}
// end catch_tag_alias_autoregistrar.cpp
// start catch_tag_alias_registry.cpp
#include <sstream>
namespace Catch {
TagAliasRegistry::~TagAliasRegistry() {}
TagAlias const* TagAliasRegistry::find( std::string const& alias ) const {
auto it = m_registry.find( alias );
if( it != m_registry.end() )
return &(it->second);
else
return nullptr;
}
std::string TagAliasRegistry::expandAliases( std::string const& unexpandedTestSpec ) const {
std::string expandedTestSpec = unexpandedTestSpec;
for( auto const& registryKvp : m_registry ) {
std::size_t pos = expandedTestSpec.find( registryKvp.first );
if( pos != std::string::npos ) {
expandedTestSpec = expandedTestSpec.substr( 0, pos ) +
registryKvp.second.tag +
expandedTestSpec.substr( pos + registryKvp.first.size() );
}
}
return expandedTestSpec;
}
void TagAliasRegistry::add( std::string const& alias, std::string const& tag, SourceLineInfo const& lineInfo ) {
CATCH_ENFORCE( startsWith(alias, "[@") && endsWith(alias, ']'),
"error: tag alias, '" << alias << "' is not of the form [@alias name].\n" << lineInfo );
CATCH_ENFORCE( m_registry.insert(std::make_pair(alias, TagAlias(tag, lineInfo))).second,
"error: tag alias, '" << alias << "' already registered.\n"
<< "\tFirst seen at: " << find(alias)->lineInfo << "\n"
<< "\tRedefined at: " << lineInfo );
}
ITagAliasRegistry::~ITagAliasRegistry() {}
ITagAliasRegistry const& ITagAliasRegistry::get() {
return getRegistryHub().getTagAliasRegistry();
}
} // end namespace Catch
// end catch_tag_alias_registry.cpp
// start catch_test_case_info.cpp
#include <cctype>
#include <exception>
#include <algorithm>
#include <sstream>
namespace Catch {
namespace {
TestCaseInfo::SpecialProperties parseSpecialTag( std::string const& tag ) {
if( startsWith( tag, '.' ) ||
tag == "!hide" )
return TestCaseInfo::IsHidden;
else if( tag == "!throws" )
return TestCaseInfo::Throws;
else if( tag == "!shouldfail" )
return TestCaseInfo::ShouldFail;
else if( tag == "!mayfail" )
return TestCaseInfo::MayFail;
else if( tag == "!nonportable" )
return TestCaseInfo::NonPortable;
else if( tag == "!benchmark" )
return static_cast<TestCaseInfo::SpecialProperties>( TestCaseInfo::Benchmark | TestCaseInfo::IsHidden );
else
return TestCaseInfo::None;
}
bool isReservedTag( std::string const& tag ) {
return parseSpecialTag( tag ) == TestCaseInfo::None && tag.size() > 0 && !std::isalnum( static_cast<unsigned char>(tag[0]) );
}
void enforceNotReservedTag( std::string const& tag, SourceLineInfo const& _lineInfo ) {
CATCH_ENFORCE( !isReservedTag(tag),
"Tag name: [" << tag << "] is not allowed.\n"
<< "Tag names starting with non alpha-numeric characters are reserved\n"
<< _lineInfo );
}
}
TestCase makeTestCase( ITestInvoker* _testCase,
std::string const& _className,
NameAndTags const& nameAndTags,
SourceLineInfo const& _lineInfo )
{
bool isHidden = false;
// Parse out tags
std::vector<std::string> tags;
std::string desc, tag;
bool inTag = false;
std::string _descOrTags = nameAndTags.tags;
for (char c : _descOrTags) {
if( !inTag ) {
if( c == '[' )
inTag = true;
else
desc += c;
}
else {
if( c == ']' ) {
TestCaseInfo::SpecialProperties prop = parseSpecialTag( tag );
if( ( prop & TestCaseInfo::IsHidden ) != 0 )
isHidden = true;
else if( prop == TestCaseInfo::None )
enforceNotReservedTag( tag, _lineInfo );
tags.push_back( tag );
tag.clear();
inTag = false;
}
else
tag += c;
}
}
if( isHidden ) {
tags.push_back( "." );
}
TestCaseInfo info( nameAndTags.name, _className, desc, tags, _lineInfo );
return TestCase( _testCase, std::move(info) );
}
void setTags( TestCaseInfo& testCaseInfo, std::vector<std::string> tags ) {
std::sort(begin(tags), end(tags));
tags.erase(std::unique(begin(tags), end(tags)), end(tags));
testCaseInfo.lcaseTags.clear();
for( auto const& tag : tags ) {
std::string lcaseTag = toLower( tag );
testCaseInfo.properties = static_cast<TestCaseInfo::SpecialProperties>( testCaseInfo.properties | parseSpecialTag( lcaseTag ) );
testCaseInfo.lcaseTags.push_back( lcaseTag );
}
testCaseInfo.tags = std::move(tags);
}
TestCaseInfo::TestCaseInfo( std::string const& _name,
std::string const& _className,
std::string const& _description,
std::vector<std::string> const& _tags,
SourceLineInfo const& _lineInfo )
: name( _name ),
className( _className ),
description( _description ),
lineInfo( _lineInfo ),
properties( None )
{
setTags( *this, _tags );
}
bool TestCaseInfo::isHidden() const {
return ( properties & IsHidden ) != 0;
}
bool TestCaseInfo::throws() const {
return ( properties & Throws ) != 0;
}
bool TestCaseInfo::okToFail() const {
return ( properties & (ShouldFail | MayFail ) ) != 0;
}
bool TestCaseInfo::expectedToFail() const {
return ( properties & (ShouldFail ) ) != 0;
}
std::string TestCaseInfo::tagsAsString() const {
std::string ret;
// '[' and ']' per tag
std::size_t full_size = 2 * tags.size();
for (const auto& tag : tags) {
full_size += tag.size();
}
ret.reserve(full_size);
for (const auto& tag : tags) {
ret.push_back('[');
ret.append(tag);
ret.push_back(']');
}
return ret;
}
TestCase::TestCase( ITestInvoker* testCase, TestCaseInfo&& info ) : TestCaseInfo( std::move(info) ), test( testCase ) {}
TestCase TestCase::withName( std::string const& _newName ) const {
TestCase other( *this );
other.name = _newName;
return other;
}
void TestCase::invoke() const {
test->invoke();
}
bool TestCase::operator == ( TestCase const& other ) const {
return test.get() == other.test.get() &&
name == other.name &&
className == other.className;
}
bool TestCase::operator < ( TestCase const& other ) const {
return name < other.name;
}
TestCaseInfo const& TestCase::getTestCaseInfo() const
{
return *this;
}
} // end namespace Catch
// end catch_test_case_info.cpp
// start catch_test_case_registry_impl.cpp
#include <sstream>
namespace Catch {
std::vector<TestCase> sortTests( IConfig const& config, std::vector<TestCase> const& unsortedTestCases ) {
std::vector<TestCase> sorted = unsortedTestCases;
switch( config.runOrder() ) {
case RunTests::InLexicographicalOrder:
std::sort( sorted.begin(), sorted.end() );
break;
case RunTests::InRandomOrder:
seedRng( config );
std::shuffle( sorted.begin(), sorted.end(), rng() );
break;
case RunTests::InDeclarationOrder:
// already in declaration order
break;
}
return sorted;
}
bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config ) {
return testSpec.matches( testCase ) && ( config.allowThrows() || !testCase.throws() );
}
void enforceNoDuplicateTestCases( std::vector<TestCase> const& functions ) {
std::set<TestCase> seenFunctions;
for( auto const& function : functions ) {
auto prev = seenFunctions.insert( function );
CATCH_ENFORCE( prev.second,
"error: TEST_CASE( \"" << function.name << "\" ) already defined.\n"
<< "\tFirst seen at " << prev.first->getTestCaseInfo().lineInfo << "\n"
<< "\tRedefined at " << function.getTestCaseInfo().lineInfo );
}
}
std::vector<TestCase> filterTests( std::vector<TestCase> const& testCases, TestSpec const& testSpec, IConfig const& config ) {
std::vector<TestCase> filtered;
filtered.reserve( testCases.size() );
for( auto const& testCase : testCases )
if( matchTest( testCase, testSpec, config ) )
filtered.push_back( testCase );
return filtered;
}
std::vector<TestCase> const& getAllTestCasesSorted( IConfig const& config ) {
return getRegistryHub().getTestCaseRegistry().getAllTestsSorted( config );
}
void TestRegistry::registerTest( TestCase const& testCase ) {
std::string name = testCase.getTestCaseInfo().name;
if( name.empty() ) {
ReusableStringStream rss;
rss << "Anonymous test case " << ++m_unnamedCount;
return registerTest( testCase.withName( rss.str() ) );
}
m_functions.push_back( testCase );
}
std::vector<TestCase> const& TestRegistry::getAllTests() const {
return m_functions;
}
std::vector<TestCase> const& TestRegistry::getAllTestsSorted( IConfig const& config ) const {
if( m_sortedFunctions.empty() )
enforceNoDuplicateTestCases( m_functions );
if( m_currentSortOrder != config.runOrder() || m_sortedFunctions.empty() ) {
m_sortedFunctions = sortTests( config, m_functions );
m_currentSortOrder = config.runOrder();
}
return m_sortedFunctions;
}
///////////////////////////////////////////////////////////////////////////
TestInvokerAsFunction::TestInvokerAsFunction( void(*testAsFunction)() ) noexcept : m_testAsFunction( testAsFunction ) {}
void TestInvokerAsFunction::invoke() const {
m_testAsFunction();
}
std::string extractClassName( StringRef const& classOrQualifiedMethodName ) {
std::string className = classOrQualifiedMethodName;
if( startsWith( className, '&' ) )
{
std::size_t lastColons = className.rfind( "::" );
std::size_t penultimateColons = className.rfind( "::", lastColons-1 );
if( penultimateColons == std::string::npos )
penultimateColons = 1;
className = className.substr( penultimateColons, lastColons-penultimateColons );
}
return className;
}
} // end namespace Catch
// end catch_test_case_registry_impl.cpp
// start catch_test_case_tracker.cpp
#include <algorithm>
#include <cassert>
#include <stdexcept>
#include <memory>
#include <sstream>
#if defined(__clang__)
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wexit-time-destructors"
#endif
namespace Catch {
namespace TestCaseTracking {
NameAndLocation::NameAndLocation( std::string const& _name, SourceLineInfo const& _location )
: name( _name ),
location( _location )
{}
ITracker::~ITracker() = default;
TrackerContext& TrackerContext::instance() {
static TrackerContext s_instance;
return s_instance;
}
ITracker& TrackerContext::startRun() {
m_rootTracker = std::make_shared<SectionTracker>( NameAndLocation( "{root}", CATCH_INTERNAL_LINEINFO ), *this, nullptr );
m_currentTracker = nullptr;
m_runState = Executing;
return *m_rootTracker;
}
void TrackerContext::endRun() {
m_rootTracker.reset();
m_currentTracker = nullptr;
m_runState = NotStarted;
}
void TrackerContext::startCycle() {
m_currentTracker = m_rootTracker.get();
m_runState = Executing;
}
void TrackerContext::completeCycle() {
m_runState = CompletedCycle;
}
bool TrackerContext::completedCycle() const {
return m_runState == CompletedCycle;
}
ITracker& TrackerContext::currentTracker() {
return *m_currentTracker;
}
void TrackerContext::setCurrentTracker( ITracker* tracker ) {
m_currentTracker = tracker;
}
TrackerBase::TrackerBase( NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* parent )
: m_nameAndLocation( nameAndLocation ),
m_ctx( ctx ),
m_parent( parent )
{}
NameAndLocation const& TrackerBase::nameAndLocation() const {
return m_nameAndLocation;
}
bool TrackerBase::isComplete() const {
return m_runState == CompletedSuccessfully || m_runState == Failed;
}
bool TrackerBase::isSuccessfullyCompleted() const {
return m_runState == CompletedSuccessfully;
}
bool TrackerBase::isOpen() const {
return m_runState != NotStarted && !isComplete();
}
bool TrackerBase::hasChildren() const {
return !m_children.empty();
}
void TrackerBase::addChild( ITrackerPtr const& child ) {
m_children.push_back( child );
}
ITrackerPtr TrackerBase::findChild( NameAndLocation const& nameAndLocation ) {
auto it = std::find_if( m_children.begin(), m_children.end(),
[&nameAndLocation]( ITrackerPtr const& tracker ){
return
tracker->nameAndLocation().location == nameAndLocation.location &&
tracker->nameAndLocation().name == nameAndLocation.name;
} );
return( it != m_children.end() )
? *it
: nullptr;
}
ITracker& TrackerBase::parent() {
assert( m_parent ); // Should always be non-null except for root
return *m_parent;
}
void TrackerBase::openChild() {
if( m_runState != ExecutingChildren ) {
m_runState = ExecutingChildren;
if( m_parent )
m_parent->openChild();
}
}
bool TrackerBase::isSectionTracker() const { return false; }
bool TrackerBase::isGeneratorTracker() const { return false; }
void TrackerBase::open() {
m_runState = Executing;
moveToThis();
if( m_parent )
m_parent->openChild();
}
void TrackerBase::close() {
// Close any still open children (e.g. generators)
while( &m_ctx.currentTracker() != this )
m_ctx.currentTracker().close();
switch( m_runState ) {
case NeedsAnotherRun:
break;
case Executing:
m_runState = CompletedSuccessfully;
break;
case ExecutingChildren:
if( m_children.empty() || m_children.back()->isComplete() )
m_runState = CompletedSuccessfully;
break;
case NotStarted:
case CompletedSuccessfully:
case Failed:
CATCH_INTERNAL_ERROR( "Illogical state: " << m_runState );
default:
CATCH_INTERNAL_ERROR( "Unknown state: " << m_runState );
}
moveToParent();
m_ctx.completeCycle();
}
void TrackerBase::fail() {
m_runState = Failed;
if( m_parent )
m_parent->markAsNeedingAnotherRun();
moveToParent();
m_ctx.completeCycle();
}
void TrackerBase::markAsNeedingAnotherRun() {
m_runState = NeedsAnotherRun;
}
void TrackerBase::moveToParent() {
assert( m_parent );
m_ctx.setCurrentTracker( m_parent );
}
void TrackerBase::moveToThis() {
m_ctx.setCurrentTracker( this );
}
SectionTracker::SectionTracker( NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* parent )
: TrackerBase( nameAndLocation, ctx, parent )
{
if( parent ) {
while( !parent->isSectionTracker() )
parent = &parent->parent();
SectionTracker& parentSection = static_cast<SectionTracker&>( *parent );
addNextFilters( parentSection.m_filters );
}
}
bool SectionTracker::isComplete() const {
bool complete = true;
if ((m_filters.empty() || m_filters[0] == "") ||
std::find(m_filters.begin(), m_filters.end(),
m_nameAndLocation.name) != m_filters.end())
complete = TrackerBase::isComplete();
return complete;
}
bool SectionTracker::isSectionTracker() const { return true; }
SectionTracker& SectionTracker::acquire( TrackerContext& ctx, NameAndLocation const& nameAndLocation ) {
std::shared_ptr<SectionTracker> section;
ITracker& currentTracker = ctx.currentTracker();
if( ITrackerPtr childTracker = currentTracker.findChild( nameAndLocation ) ) {
assert( childTracker );
assert( childTracker->isSectionTracker() );
section = std::static_pointer_cast<SectionTracker>( childTracker );
}
else {
section = std::make_shared<SectionTracker>( nameAndLocation, ctx, ¤tTracker );
currentTracker.addChild( section );
}
if( !ctx.completedCycle() )
section->tryOpen();
return *section;
}
void SectionTracker::tryOpen() {
if( !isComplete() && (m_filters.empty() || m_filters[0].empty() || m_filters[0] == m_nameAndLocation.name ) )
open();
}
void SectionTracker::addInitialFilters( std::vector<std::string> const& filters ) {
if( !filters.empty() ) {
m_filters.push_back(""); // Root - should never be consulted
m_filters.push_back(""); // Test Case - not a section filter
m_filters.insert( m_filters.end(), filters.begin(), filters.end() );
}
}
void SectionTracker::addNextFilters( std::vector<std::string> const& filters ) {
if( filters.size() > 1 )
m_filters.insert( m_filters.end(), ++filters.begin(), filters.end() );
}
} // namespace TestCaseTracking
using TestCaseTracking::ITracker;
using TestCaseTracking::TrackerContext;
using TestCaseTracking::SectionTracker;
} // namespace Catch
#if defined(__clang__)
# pragma clang diagnostic pop
#endif
// end catch_test_case_tracker.cpp
// start catch_test_registry.cpp
namespace Catch {
auto makeTestInvoker( void(*testAsFunction)() ) noexcept -> ITestInvoker* {
return new(std::nothrow) TestInvokerAsFunction( testAsFunction );
}
NameAndTags::NameAndTags( StringRef const& name_ , StringRef const& tags_ ) noexcept : name( name_ ), tags( tags_ ) {}
AutoReg::AutoReg( ITestInvoker* invoker, SourceLineInfo const& lineInfo, StringRef const& classOrMethod, NameAndTags const& nameAndTags ) noexcept {
CATCH_TRY {
getMutableRegistryHub()
.registerTest(
makeTestCase(
invoker,
extractClassName( classOrMethod ),
nameAndTags,
lineInfo));
} CATCH_CATCH_ALL {
// Do not throw when constructing global objects, instead register the exception to be processed later
getMutableRegistryHub().registerStartupException();
}
}
AutoReg::~AutoReg() = default;
}
// end catch_test_registry.cpp
// start catch_test_spec.cpp
#include <algorithm>
#include <string>
#include <vector>
#include <memory>
namespace Catch {
TestSpec::Pattern::~Pattern() = default;
TestSpec::NamePattern::~NamePattern() = default;
TestSpec::TagPattern::~TagPattern() = default;
TestSpec::ExcludedPattern::~ExcludedPattern() = default;
TestSpec::NamePattern::NamePattern( std::string const& name )
: m_wildcardPattern( toLower( name ), CaseSensitive::No )
{}
bool TestSpec::NamePattern::matches( TestCaseInfo const& testCase ) const {
return m_wildcardPattern.matches( toLower( testCase.name ) );
}
TestSpec::TagPattern::TagPattern( std::string const& tag ) : m_tag( toLower( tag ) ) {}
bool TestSpec::TagPattern::matches( TestCaseInfo const& testCase ) const {
return std::find(begin(testCase.lcaseTags),
end(testCase.lcaseTags),
m_tag) != end(testCase.lcaseTags);
}
TestSpec::ExcludedPattern::ExcludedPattern( PatternPtr const& underlyingPattern ) : m_underlyingPattern( underlyingPattern ) {}
bool TestSpec::ExcludedPattern::matches( TestCaseInfo const& testCase ) const { return !m_underlyingPattern->matches( testCase ); }
bool TestSpec::Filter::matches( TestCaseInfo const& testCase ) const {
// All patterns in a filter must match for the filter to be a match
for( auto const& pattern : m_patterns ) {
if( !pattern->matches( testCase ) )
return false;
}
return true;
}
bool TestSpec::hasFilters() const {
return !m_filters.empty();
}
bool TestSpec::matches( TestCaseInfo const& testCase ) const {
// A TestSpec matches if any filter matches
for( auto const& filter : m_filters )
if( filter.matches( testCase ) )
return true;
return false;
}
}
// end catch_test_spec.cpp
// start catch_test_spec_parser.cpp
namespace Catch {
TestSpecParser::TestSpecParser( ITagAliasRegistry const& tagAliases ) : m_tagAliases( &tagAliases ) {}
TestSpecParser& TestSpecParser::parse( std::string const& arg ) {
m_mode = None;
m_exclusion = false;
m_start = std::string::npos;
m_arg = m_tagAliases->expandAliases( arg );
m_escapeChars.clear();
for( m_pos = 0; m_pos < m_arg.size(); ++m_pos )
visitChar( m_arg[m_pos] );
if( m_mode == Name )
addPattern<TestSpec::NamePattern>();
return *this;
}
TestSpec TestSpecParser::testSpec() {
addFilter();
return m_testSpec;
}
void TestSpecParser::visitChar( char c ) {
if( m_mode == None ) {
switch( c ) {
case ' ': return;
case '~': m_exclusion = true; return;
case '[': return startNewMode( Tag, ++m_pos );
case '"': return startNewMode( QuotedName, ++m_pos );
case '\\': return escape();
default: startNewMode( Name, m_pos ); break;
}
}
if( m_mode == Name ) {
if( c == ',' ) {
addPattern<TestSpec::NamePattern>();
addFilter();
}
else if( c == '[' ) {
if( subString() == "exclude:" )
m_exclusion = true;
else
addPattern<TestSpec::NamePattern>();
startNewMode( Tag, ++m_pos );
}
else if( c == '\\' )
escape();
}
else if( m_mode == EscapedName )
m_mode = Name;
else if( m_mode == QuotedName && c == '"' )
addPattern<TestSpec::NamePattern>();
else if( m_mode == Tag && c == ']' )
addPattern<TestSpec::TagPattern>();
}
void TestSpecParser::startNewMode( Mode mode, std::size_t start ) {
m_mode = mode;
m_start = start;
}
void TestSpecParser::escape() {
if( m_mode == None )
m_start = m_pos;
m_mode = EscapedName;
m_escapeChars.push_back( m_pos );
}
std::string TestSpecParser::subString() const { return m_arg.substr( m_start, m_pos - m_start ); }
void TestSpecParser::addFilter() {
if( !m_currentFilter.m_patterns.empty() ) {
m_testSpec.m_filters.push_back( m_currentFilter );
m_currentFilter = TestSpec::Filter();
}
}
TestSpec parseTestSpec( std::string const& arg ) {
return TestSpecParser( ITagAliasRegistry::get() ).parse( arg ).testSpec();
}
} // namespace Catch
// end catch_test_spec_parser.cpp
// start catch_timer.cpp
#include <chrono>
static const uint64_t nanosecondsInSecond = 1000000000;
namespace Catch {
auto getCurrentNanosecondsSinceEpoch() -> uint64_t {
return std::chrono::duration_cast<std::chrono::nanoseconds>( std::chrono::high_resolution_clock::now().time_since_epoch() ).count();
}
namespace {
auto estimateClockResolution() -> uint64_t {
uint64_t sum = 0;
static const uint64_t iterations = 1000000;
auto startTime = getCurrentNanosecondsSinceEpoch();
for( std::size_t i = 0; i < iterations; ++i ) {
uint64_t ticks;
uint64_t baseTicks = getCurrentNanosecondsSinceEpoch();
do {
ticks = getCurrentNanosecondsSinceEpoch();
} while( ticks == baseTicks );
auto delta = ticks - baseTicks;
sum += delta;
// If we have been calibrating for over 3 seconds -- the clock
// is terrible and we should move on.
// TBD: How to signal that the measured resolution is probably wrong?
if (ticks > startTime + 3 * nanosecondsInSecond) {
return sum / ( i + 1u );
}
}
// We're just taking the mean, here. To do better we could take the std. dev and exclude outliers
// - and potentially do more iterations if there's a high variance.
return sum/iterations;
}
}
auto getEstimatedClockResolution() -> uint64_t {
static auto s_resolution = estimateClockResolution();
return s_resolution;
}
void Timer::start() {
m_nanoseconds = getCurrentNanosecondsSinceEpoch();
}
auto Timer::getElapsedNanoseconds() const -> uint64_t {
return getCurrentNanosecondsSinceEpoch() - m_nanoseconds;
}
auto Timer::getElapsedMicroseconds() const -> uint64_t {
return getElapsedNanoseconds()/1000;
}
auto Timer::getElapsedMilliseconds() const -> unsigned int {
return static_cast<unsigned int>(getElapsedMicroseconds()/1000);
}
auto Timer::getElapsedSeconds() const -> double {
return getElapsedMicroseconds()/1000000.0;
}
} // namespace Catch
// end catch_timer.cpp
// start catch_tostring.cpp
#if defined(__clang__)
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wexit-time-destructors"
# pragma clang diagnostic ignored "-Wglobal-constructors"
#endif
// Enable specific decls locally
#if !defined(CATCH_CONFIG_ENABLE_CHRONO_STRINGMAKER)
#define CATCH_CONFIG_ENABLE_CHRONO_STRINGMAKER
#endif
#include <cmath>
#include <iomanip>
namespace Catch {
namespace Detail {
const std::string unprintableString = "{?}";
namespace {
const int hexThreshold = 255;
struct Endianness {
enum Arch { Big, Little };
static Arch which() {
union _{
int asInt;
char asChar[sizeof (int)];
} u;
u.asInt = 1;
return ( u.asChar[sizeof(int)-1] == 1 ) ? Big : Little;
}
};
}
std::string rawMemoryToString( const void *object, std::size_t size ) {
// Reverse order for little endian architectures
int i = 0, end = static_cast<int>( size ), inc = 1;
if( Endianness::which() == Endianness::Little ) {
i = end-1;
end = inc = -1;
}
unsigned char const *bytes = static_cast<unsigned char const *>(object);
ReusableStringStream rss;
rss << "0x" << std::setfill('0') << std::hex;
for( ; i != end; i += inc )
rss << std::setw(2) << static_cast<unsigned>(bytes[i]);
return rss.str();
}
}
template<typename T>
std::string fpToString( T value, int precision ) {
if (Catch::isnan(value)) {
return "nan";
}
ReusableStringStream rss;
rss << std::setprecision( precision )
<< std::fixed
<< value;
std::string d = rss.str();
std::size_t i = d.find_last_not_of( '0' );
if( i != std::string::npos && i != d.size()-1 ) {
if( d[i] == '.' )
i++;
d = d.substr( 0, i+1 );
}
return d;
}
//// ======================================================= ////
//
// Out-of-line defs for full specialization of StringMaker
//
//// ======================================================= ////
std::string StringMaker<std::string>::convert(const std::string& str) {
if (!getCurrentContext().getConfig()->showInvisibles()) {
return '"' + str + '"';
}
std::string s("\"");
for (char c : str) {
switch (c) {
case '\n':
s.append("\\n");
break;
case '\t':
s.append("\\t");
break;
default:
s.push_back(c);
break;
}
}
s.append("\"");
return s;
}
#ifdef CATCH_CONFIG_CPP17_STRING_VIEW
std::string StringMaker<std::string_view>::convert(std::string_view str) {
return ::Catch::Detail::stringify(std::string{ str });
}
#endif
std::string StringMaker<char const*>::convert(char const* str) {
if (str) {
return ::Catch::Detail::stringify(std::string{ str });
} else {
return{ "{null string}" };
}
}
std::string StringMaker<char*>::convert(char* str) {
if (str) {
return ::Catch::Detail::stringify(std::string{ str });
} else {
return{ "{null string}" };
}
}
#ifdef CATCH_CONFIG_WCHAR
std::string StringMaker<std::wstring>::convert(const std::wstring& wstr) {
std::string s;
s.reserve(wstr.size());
for (auto c : wstr) {
s += (c <= 0xff) ? static_cast<char>(c) : '?';
}
return ::Catch::Detail::stringify(s);
}
# ifdef CATCH_CONFIG_CPP17_STRING_VIEW
std::string StringMaker<std::wstring_view>::convert(std::wstring_view str) {
return StringMaker<std::wstring>::convert(std::wstring(str));
}
# endif
std::string StringMaker<wchar_t const*>::convert(wchar_t const * str) {
if (str) {
return ::Catch::Detail::stringify(std::wstring{ str });
} else {
return{ "{null string}" };
}
}
std::string StringMaker<wchar_t *>::convert(wchar_t * str) {
if (str) {
return ::Catch::Detail::stringify(std::wstring{ str });
} else {
return{ "{null string}" };
}
}
#endif
std::string StringMaker<int>::convert(int value) {
return ::Catch::Detail::stringify(static_cast<long long>(value));
}
std::string StringMaker<long>::convert(long value) {
return ::Catch::Detail::stringify(static_cast<long long>(value));
}
std::string StringMaker<long long>::convert(long long value) {
ReusableStringStream rss;
rss << value;
if (value > Detail::hexThreshold) {
rss << " (0x" << std::hex << value << ')';
}
return rss.str();
}
std::string StringMaker<unsigned int>::convert(unsigned int value) {
return ::Catch::Detail::stringify(static_cast<unsigned long long>(value));
}
std::string StringMaker<unsigned long>::convert(unsigned long value) {
return ::Catch::Detail::stringify(static_cast<unsigned long long>(value));
}
std::string StringMaker<unsigned long long>::convert(unsigned long long value) {
ReusableStringStream rss;
rss << value;
if (value > Detail::hexThreshold) {
rss << " (0x" << std::hex << value << ')';
}
return rss.str();
}
std::string StringMaker<bool>::convert(bool b) {
return b ? "true" : "false";
}
std::string StringMaker<signed char>::convert(signed char value) {
if (value == '\r') {
return "'\\r'";
} else if (value == '\f') {
return "'\\f'";
} else if (value == '\n') {
return "'\\n'";
} else if (value == '\t') {
return "'\\t'";
} else if ('\0' <= value && value < ' ') {
return ::Catch::Detail::stringify(static_cast<unsigned int>(value));
} else {
char chstr[] = "' '";
chstr[1] = value;
return chstr;
}
}
std::string StringMaker<char>::convert(char c) {
return ::Catch::Detail::stringify(static_cast<signed char>(c));
}
std::string StringMaker<unsigned char>::convert(unsigned char c) {
return ::Catch::Detail::stringify(static_cast<char>(c));
}
std::string StringMaker<std::nullptr_t>::convert(std::nullptr_t) {
return "nullptr";
}
std::string StringMaker<float>::convert(float value) {
return fpToString(value, 5) + 'f';
}
std::string StringMaker<double>::convert(double value) {
return fpToString(value, 10);
}
std::string ratio_string<std::atto>::symbol() { return "a"; }
std::string ratio_string<std::femto>::symbol() { return "f"; }
std::string ratio_string<std::pico>::symbol() { return "p"; }
std::string ratio_string<std::nano>::symbol() { return "n"; }
std::string ratio_string<std::micro>::symbol() { return "u"; }
std::string ratio_string<std::milli>::symbol() { return "m"; }
} // end namespace Catch
#if defined(__clang__)
# pragma clang diagnostic pop
#endif
// end catch_tostring.cpp
// start catch_totals.cpp
namespace Catch {
Counts Counts::operator - ( Counts const& other ) const {
Counts diff;
diff.passed = passed - other.passed;
diff.failed = failed - other.failed;
diff.failedButOk = failedButOk - other.failedButOk;
return diff;
}
Counts& Counts::operator += ( Counts const& other ) {
passed += other.passed;
failed += other.failed;
failedButOk += other.failedButOk;
return *this;
}
std::size_t Counts::total() const {
return passed + failed + failedButOk;
}
bool Counts::allPassed() const {
return failed == 0 && failedButOk == 0;
}
bool Counts::allOk() const {
return failed == 0;
}
Totals Totals::operator - ( Totals const& other ) const {
Totals diff;
diff.assertions = assertions - other.assertions;
diff.testCases = testCases - other.testCases;
return diff;
}
Totals& Totals::operator += ( Totals const& other ) {
assertions += other.assertions;
testCases += other.testCases;
return *this;
}
Totals Totals::delta( Totals const& prevTotals ) const {
Totals diff = *this - prevTotals;
if( diff.assertions.failed > 0 )
++diff.testCases.failed;
else if( diff.assertions.failedButOk > 0 )
++diff.testCases.failedButOk;
else
++diff.testCases.passed;
return diff;
}
}
// end catch_totals.cpp
// start catch_uncaught_exceptions.cpp
#include <exception>
namespace Catch {
bool uncaught_exceptions() {
#if defined(CATCH_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS)
return std::uncaught_exceptions() > 0;
#else
return std::uncaught_exception();
#endif
}
} // end namespace Catch
// end catch_uncaught_exceptions.cpp
// start catch_version.cpp
#include <ostream>
namespace Catch {
Version::Version
( unsigned int _majorVersion,
unsigned int _minorVersion,
unsigned int _patchNumber,
char const * const _branchName,
unsigned int _buildNumber )
: majorVersion( _majorVersion ),
minorVersion( _minorVersion ),
patchNumber( _patchNumber ),
branchName( _branchName ),
buildNumber( _buildNumber )
{}
std::ostream& operator << ( std::ostream& os, Version const& version ) {
os << version.majorVersion << '.'
<< version.minorVersion << '.'
<< version.patchNumber;
// branchName is never null -> 0th char is \0 if it is empty
if (version.branchName[0]) {
os << '-' << version.branchName
<< '.' << version.buildNumber;
}
return os;
}
Version const& libraryVersion() {
static Version version( 2, 6, 0, "", 0 );
return version;
}
}
// end catch_version.cpp
// start catch_wildcard_pattern.cpp
#include <sstream>
namespace Catch {
WildcardPattern::WildcardPattern( std::string const& pattern,
CaseSensitive::Choice caseSensitivity )
: m_caseSensitivity( caseSensitivity ),
m_pattern( adjustCase( pattern ) )
{
if( startsWith( m_pattern, '*' ) ) {
m_pattern = m_pattern.substr( 1 );
m_wildcard = WildcardAtStart;
}
if( endsWith( m_pattern, '*' ) ) {
m_pattern = m_pattern.substr( 0, m_pattern.size()-1 );
m_wildcard = static_cast<WildcardPosition>( m_wildcard | WildcardAtEnd );
}
}
bool WildcardPattern::matches( std::string const& str ) const {
switch( m_wildcard ) {
case NoWildcard:
return m_pattern == adjustCase( str );
case WildcardAtStart:
return endsWith( adjustCase( str ), m_pattern );
case WildcardAtEnd:
return startsWith( adjustCase( str ), m_pattern );
case WildcardAtBothEnds:
return contains( adjustCase( str ), m_pattern );
default:
CATCH_INTERNAL_ERROR( "Unknown enum" );
}
}
std::string WildcardPattern::adjustCase( std::string const& str ) const {
return m_caseSensitivity == CaseSensitive::No ? toLower( str ) : str;
}
}
// end catch_wildcard_pattern.cpp
// start catch_xmlwriter.cpp
#include <iomanip>
using uchar = unsigned char;
namespace Catch {
namespace {
size_t trailingBytes(unsigned char c) {
if ((c & 0xE0) == 0xC0) {
return 2;
}
if ((c & 0xF0) == 0xE0) {
return 3;
}
if ((c & 0xF8) == 0xF0) {
return 4;
}
CATCH_INTERNAL_ERROR("Invalid multibyte utf-8 start byte encountered");
}
uint32_t headerValue(unsigned char c) {
if ((c & 0xE0) == 0xC0) {
return c & 0x1F;
}
if ((c & 0xF0) == 0xE0) {
return c & 0x0F;
}
if ((c & 0xF8) == 0xF0) {
return c & 0x07;
}
CATCH_INTERNAL_ERROR("Invalid multibyte utf-8 start byte encountered");
}
void hexEscapeChar(std::ostream& os, unsigned char c) {
std::ios_base::fmtflags f(os.flags());
os << "\\x"
<< std::uppercase << std::hex << std::setfill('0') << std::setw(2)
<< static_cast<int>(c);
os.flags(f);
}
} // anonymous namespace
XmlEncode::XmlEncode( std::string const& str, ForWhat forWhat )
: m_str( str ),
m_forWhat( forWhat )
{}
void XmlEncode::encodeTo( std::ostream& os ) const {
// Apostrophe escaping not necessary if we always use " to write attributes
// (see: http://www.w3.org/TR/xml/#syntax)
for( std::size_t idx = 0; idx < m_str.size(); ++ idx ) {
uchar c = m_str[idx];
switch (c) {
case '<': os << "<"; break;
case '&': os << "&"; break;
case '>':
// See: http://www.w3.org/TR/xml/#syntax
if (idx > 2 && m_str[idx - 1] == ']' && m_str[idx - 2] == ']')
os << ">";
else
os << c;
break;
case '\"':
if (m_forWhat == ForAttributes)
os << """;
else
os << c;
break;
default:
// Check for control characters and invalid utf-8
// Escape control characters in standard ascii
// see http://stackoverflow.com/questions/404107/why-are-control-characters-illegal-in-xml-1-0
if (c < 0x09 || (c > 0x0D && c < 0x20) || c == 0x7F) {
hexEscapeChar(os, c);
break;
}
// Plain ASCII: Write it to stream
if (c < 0x7F) {
os << c;
break;
}
// UTF-8 territory
// Check if the encoding is valid and if it is not, hex escape bytes.
// Important: We do not check the exact decoded values for validity, only the encoding format
// First check that this bytes is a valid lead byte:
// This means that it is not encoded as 1111 1XXX
// Or as 10XX XXXX
if (c < 0xC0 ||
c >= 0xF8) {
hexEscapeChar(os, c);
break;
}
auto encBytes = trailingBytes(c);
// Are there enough bytes left to avoid accessing out-of-bounds memory?
if (idx + encBytes - 1 >= m_str.size()) {
hexEscapeChar(os, c);
break;
}
// The header is valid, check data
// The next encBytes bytes must together be a valid utf-8
// This means: bitpattern 10XX XXXX and the extracted value is sane (ish)
bool valid = true;
uint32_t value = headerValue(c);
for (std::size_t n = 1; n < encBytes; ++n) {
uchar nc = m_str[idx + n];
valid &= ((nc & 0xC0) == 0x80);
value = (value << 6) | (nc & 0x3F);
}
if (
// Wrong bit pattern of following bytes
(!valid) ||
// Overlong encodings
(value < 0x80) ||
(0x80 <= value && value < 0x800 && encBytes > 2) ||
(0x800 < value && value < 0x10000 && encBytes > 3) ||
// Encoded value out of range
(value >= 0x110000)
) {
hexEscapeChar(os, c);
break;
}
// If we got here, this is in fact a valid(ish) utf-8 sequence
for (std::size_t n = 0; n < encBytes; ++n) {
os << m_str[idx + n];
}
idx += encBytes - 1;
break;
}
}
}
std::ostream& operator << ( std::ostream& os, XmlEncode const& xmlEncode ) {
xmlEncode.encodeTo( os );
return os;
}
XmlWriter::ScopedElement::ScopedElement( XmlWriter* writer )
: m_writer( writer )
{}
XmlWriter::ScopedElement::ScopedElement( ScopedElement&& other ) noexcept
: m_writer( other.m_writer ){
other.m_writer = nullptr;
}
XmlWriter::ScopedElement& XmlWriter::ScopedElement::operator=( ScopedElement&& other ) noexcept {
if ( m_writer ) {
m_writer->endElement();
}
m_writer = other.m_writer;
other.m_writer = nullptr;
return *this;
}
XmlWriter::ScopedElement::~ScopedElement() {
if( m_writer )
m_writer->endElement();
}
XmlWriter::ScopedElement& XmlWriter::ScopedElement::writeText( std::string const& text, bool indent ) {
m_writer->writeText( text, indent );
return *this;
}
XmlWriter::XmlWriter( std::ostream& os ) : m_os( os )
{
writeDeclaration();
}
XmlWriter::~XmlWriter() {
while( !m_tags.empty() )
endElement();
}
XmlWriter& XmlWriter::startElement( std::string const& name ) {
ensureTagClosed();
newlineIfNecessary();
m_os << m_indent << '<' << name;
m_tags.push_back( name );
m_indent += " ";
m_tagIsOpen = true;
return *this;
}
XmlWriter::ScopedElement XmlWriter::scopedElement( std::string const& name ) {
ScopedElement scoped( this );
startElement( name );
return scoped;
}
XmlWriter& XmlWriter::endElement() {
newlineIfNecessary();
m_indent = m_indent.substr( 0, m_indent.size()-2 );
if( m_tagIsOpen ) {
m_os << "/>";
m_tagIsOpen = false;
}
else {
m_os << m_indent << "</" << m_tags.back() << ">";
}
m_os << std::endl;
m_tags.pop_back();
return *this;
}
XmlWriter& XmlWriter::writeAttribute( std::string const& name, std::string const& attribute ) {
if( !name.empty() && !attribute.empty() )
m_os << ' ' << name << "=\"" << XmlEncode( attribute, XmlEncode::ForAttributes ) << '"';
return *this;
}
XmlWriter& XmlWriter::writeAttribute( std::string const& name, bool attribute ) {
m_os << ' ' << name << "=\"" << ( attribute ? "true" : "false" ) << '"';
return *this;
}
XmlWriter& XmlWriter::writeText( std::string const& text, bool indent ) {
if( !text.empty() ){
bool tagWasOpen = m_tagIsOpen;
ensureTagClosed();
if( tagWasOpen && indent )
m_os << m_indent;
m_os << XmlEncode( text );
m_needsNewline = true;
}
return *this;
}
XmlWriter& XmlWriter::writeComment( std::string const& text ) {
ensureTagClosed();
m_os << m_indent << "<!--" << text << "-->";
m_needsNewline = true;
return *this;
}
void XmlWriter::writeStylesheetRef( std::string const& url ) {
m_os << "<?xml-stylesheet type=\"text/xsl\" href=\"" << url << "\"?>\n";
}
XmlWriter& XmlWriter::writeBlankLine() {
ensureTagClosed();
m_os << '\n';
return *this;
}
void XmlWriter::ensureTagClosed() {
if( m_tagIsOpen ) {
m_os << ">" << std::endl;
m_tagIsOpen = false;
}
}
void XmlWriter::writeDeclaration() {
m_os << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
}
void XmlWriter::newlineIfNecessary() {
if( m_needsNewline ) {
m_os << std::endl;
m_needsNewline = false;
}
}
}
// end catch_xmlwriter.cpp
// start catch_reporter_bases.cpp
#include <cstring>
#include <cfloat>
#include <cstdio>
#include <cassert>
#include <memory>
namespace Catch {
void prepareExpandedExpression(AssertionResult& result) {
result.getExpandedExpression();
}
// Because formatting using c++ streams is stateful, drop down to C is required
// Alternatively we could use stringstream, but its performance is... not good.
std::string getFormattedDuration( double duration ) {
// Max exponent + 1 is required to represent the whole part
// + 1 for decimal point
// + 3 for the 3 decimal places
// + 1 for null terminator
const std::size_t maxDoubleSize = DBL_MAX_10_EXP + 1 + 1 + 3 + 1;
char buffer[maxDoubleSize];
// Save previous errno, to prevent sprintf from overwriting it
ErrnoGuard guard;
#ifdef _MSC_VER
sprintf_s(buffer, "%.3f", duration);
#else
sprintf(buffer, "%.3f", duration);
#endif
return std::string(buffer);
}
TestEventListenerBase::TestEventListenerBase(ReporterConfig const & _config)
:StreamingReporterBase(_config) {}
std::set<Verbosity> TestEventListenerBase::getSupportedVerbosities() {
return { Verbosity::Quiet, Verbosity::Normal, Verbosity::High };
}
void TestEventListenerBase::assertionStarting(AssertionInfo const &) {}
bool TestEventListenerBase::assertionEnded(AssertionStats const &) {
return false;
}
} // end namespace Catch
// end catch_reporter_bases.cpp
// start catch_reporter_compact.cpp
namespace {
#ifdef CATCH_PLATFORM_MAC
const char* failedString() { return "FAILED"; }
const char* passedString() { return "PASSED"; }
#else
const char* failedString() { return "failed"; }
const char* passedString() { return "passed"; }
#endif
// Colour::LightGrey
Catch::Colour::Code dimColour() { return Catch::Colour::FileName; }
std::string bothOrAll( std::size_t count ) {
return count == 1 ? std::string() :
count == 2 ? "both " : "all " ;
}
} // anon namespace
namespace Catch {
namespace {
// Colour, message variants:
// - white: No tests ran.
// - red: Failed [both/all] N test cases, failed [both/all] M assertions.
// - white: Passed [both/all] N test cases (no assertions).
// - red: Failed N tests cases, failed M assertions.
// - green: Passed [both/all] N tests cases with M assertions.
void printTotals(std::ostream& out, const Totals& totals) {
if (totals.testCases.total() == 0) {
out << "No tests ran.";
} else if (totals.testCases.failed == totals.testCases.total()) {
Colour colour(Colour::ResultError);
const std::string qualify_assertions_failed =
totals.assertions.failed == totals.assertions.total() ?
bothOrAll(totals.assertions.failed) : std::string();
out <<
"Failed " << bothOrAll(totals.testCases.failed)
<< pluralise(totals.testCases.failed, "test case") << ", "
"failed " << qualify_assertions_failed <<
pluralise(totals.assertions.failed, "assertion") << '.';
} else if (totals.assertions.total() == 0) {
out <<
"Passed " << bothOrAll(totals.testCases.total())
<< pluralise(totals.testCases.total(), "test case")
<< " (no assertions).";
} else if (totals.assertions.failed) {
Colour colour(Colour::ResultError);
out <<
"Failed " << pluralise(totals.testCases.failed, "test case") << ", "
"failed " << pluralise(totals.assertions.failed, "assertion") << '.';
} else {
Colour colour(Colour::ResultSuccess);
out <<
"Passed " << bothOrAll(totals.testCases.passed)
<< pluralise(totals.testCases.passed, "test case") <<
" with " << pluralise(totals.assertions.passed, "assertion") << '.';
}
}
// Implementation of CompactReporter formatting
class AssertionPrinter {
public:
AssertionPrinter& operator= (AssertionPrinter const&) = delete;
AssertionPrinter(AssertionPrinter const&) = delete;
AssertionPrinter(std::ostream& _stream, AssertionStats const& _stats, bool _printInfoMessages)
: stream(_stream)
, result(_stats.assertionResult)
, messages(_stats.infoMessages)
, itMessage(_stats.infoMessages.begin())
, printInfoMessages(_printInfoMessages) {}
void print() {
printSourceInfo();
itMessage = messages.begin();
switch (result.getResultType()) {
case ResultWas::Ok:
printResultType(Colour::ResultSuccess, passedString());
printOriginalExpression();
printReconstructedExpression();
if (!result.hasExpression())
printRemainingMessages(Colour::None);
else
printRemainingMessages();
break;
case ResultWas::ExpressionFailed:
if (result.isOk())
printResultType(Colour::ResultSuccess, failedString() + std::string(" - but was ok"));
else
printResultType(Colour::Error, failedString());
printOriginalExpression();
printReconstructedExpression();
printRemainingMessages();
break;
case ResultWas::ThrewException:
printResultType(Colour::Error, failedString());
printIssue("unexpected exception with message:");
printMessage();
printExpressionWas();
printRemainingMessages();
break;
case ResultWas::FatalErrorCondition:
printResultType(Colour::Error, failedString());
printIssue("fatal error condition with message:");
printMessage();
printExpressionWas();
printRemainingMessages();
break;
case ResultWas::DidntThrowException:
printResultType(Colour::Error, failedString());
printIssue("expected exception, got none");
printExpressionWas();
printRemainingMessages();
break;
case ResultWas::Info:
printResultType(Colour::None, "info");
printMessage();
printRemainingMessages();
break;
case ResultWas::Warning:
printResultType(Colour::None, "warning");
printMessage();
printRemainingMessages();
break;
case ResultWas::ExplicitFailure:
printResultType(Colour::Error, failedString());
printIssue("explicitly");
printRemainingMessages(Colour::None);
break;
// These cases are here to prevent compiler warnings
case ResultWas::Unknown:
case ResultWas::FailureBit:
case ResultWas::Exception:
printResultType(Colour::Error, "** internal error **");
break;
}
}
private:
void printSourceInfo() const {
Colour colourGuard(Colour::FileName);
stream << result.getSourceInfo() << ':';
}
void printResultType(Colour::Code colour, std::string const& passOrFail) const {
if (!passOrFail.empty()) {
{
Colour colourGuard(colour);
stream << ' ' << passOrFail;
}
stream << ':';
}
}
void printIssue(std::string const& issue) const {
stream << ' ' << issue;
}
void printExpressionWas() {
if (result.hasExpression()) {
stream << ';';
{
Colour colour(dimColour());
stream << " expression was:";
}
printOriginalExpression();
}
}
void printOriginalExpression() const {
if (result.hasExpression()) {
stream << ' ' << result.getExpression();
}
}
void printReconstructedExpression() const {
if (result.hasExpandedExpression()) {
{
Colour colour(dimColour());
stream << " for: ";
}
stream << result.getExpandedExpression();
}
}
void printMessage() {
if (itMessage != messages.end()) {
stream << " '" << itMessage->message << '\'';
++itMessage;
}
}
void printRemainingMessages(Colour::Code colour = dimColour()) {
if (itMessage == messages.end())
return;
// using messages.end() directly yields (or auto) compilation error:
std::vector<MessageInfo>::const_iterator itEnd = messages.end();
const std::size_t N = static_cast<std::size_t>(std::distance(itMessage, itEnd));
{
Colour colourGuard(colour);
stream << " with " << pluralise(N, "message") << ':';
}
for (; itMessage != itEnd; ) {
// If this assertion is a warning ignore any INFO messages
if (printInfoMessages || itMessage->type != ResultWas::Info) {
stream << " '" << itMessage->message << '\'';
if (++itMessage != itEnd) {
Colour colourGuard(dimColour());
stream << " and";
}
}
}
}
private:
std::ostream& stream;
AssertionResult const& result;
std::vector<MessageInfo> messages;
std::vector<MessageInfo>::const_iterator itMessage;
bool printInfoMessages;
};
} // anon namespace
std::string CompactReporter::getDescription() {
return "Reports test results on a single line, suitable for IDEs";
}
ReporterPreferences CompactReporter::getPreferences() const {
return m_reporterPrefs;
}
void CompactReporter::noMatchingTestCases( std::string const& spec ) {
stream << "No test cases matched '" << spec << '\'' << std::endl;
}
void CompactReporter::assertionStarting( AssertionInfo const& ) {}
bool CompactReporter::assertionEnded( AssertionStats const& _assertionStats ) {
AssertionResult const& result = _assertionStats.assertionResult;
bool printInfoMessages = true;
// Drop out if result was successful and we're not printing those
if( !m_config->includeSuccessfulResults() && result.isOk() ) {
if( result.getResultType() != ResultWas::Warning )
return false;
printInfoMessages = false;
}
AssertionPrinter printer( stream, _assertionStats, printInfoMessages );
printer.print();
stream << std::endl;
return true;
}
void CompactReporter::sectionEnded(SectionStats const& _sectionStats) {
if (m_config->showDurations() == ShowDurations::Always) {
stream << getFormattedDuration(_sectionStats.durationInSeconds) << " s: " << _sectionStats.sectionInfo.name << std::endl;
}
}
void CompactReporter::testRunEnded( TestRunStats const& _testRunStats ) {
printTotals( stream, _testRunStats.totals );
stream << '\n' << std::endl;
StreamingReporterBase::testRunEnded( _testRunStats );
}
CompactReporter::~CompactReporter() {}
CATCH_REGISTER_REPORTER( "compact", CompactReporter )
} // end namespace Catch
// end catch_reporter_compact.cpp
// start catch_reporter_console.cpp
#include <cfloat>
#include <cstdio>
#if defined(_MSC_VER)
#pragma warning(push)
#pragma warning(disable:4061) // Not all labels are EXPLICITLY handled in switch
// Note that 4062 (not all labels are handled
// and default is missing) is enabled
#endif
namespace Catch {
namespace {
// Formatter impl for ConsoleReporter
class ConsoleAssertionPrinter {
public:
ConsoleAssertionPrinter& operator= (ConsoleAssertionPrinter const&) = delete;
ConsoleAssertionPrinter(ConsoleAssertionPrinter const&) = delete;
ConsoleAssertionPrinter(std::ostream& _stream, AssertionStats const& _stats, bool _printInfoMessages)
: stream(_stream),
stats(_stats),
result(_stats.assertionResult),
colour(Colour::None),
message(result.getMessage()),
messages(_stats.infoMessages),
printInfoMessages(_printInfoMessages) {
switch (result.getResultType()) {
case ResultWas::Ok:
colour = Colour::Success;
passOrFail = "PASSED";
//if( result.hasMessage() )
if (_stats.infoMessages.size() == 1)
messageLabel = "with message";
if (_stats.infoMessages.size() > 1)
messageLabel = "with messages";
break;
case ResultWas::ExpressionFailed:
if (result.isOk()) {
colour = Colour::Success;
passOrFail = "FAILED - but was ok";
} else {
colour = Colour::Error;
passOrFail = "FAILED";
}
if (_stats.infoMessages.size() == 1)
messageLabel = "with message";
if (_stats.infoMessages.size() > 1)
messageLabel = "with messages";
break;
case ResultWas::ThrewException:
colour = Colour::Error;
passOrFail = "FAILED";
messageLabel = "due to unexpected exception with ";
if (_stats.infoMessages.size() == 1)
messageLabel += "message";
if (_stats.infoMessages.size() > 1)
messageLabel += "messages";
break;
case ResultWas::FatalErrorCondition:
colour = Colour::Error;
passOrFail = "FAILED";
messageLabel = "due to a fatal error condition";
break;
case ResultWas::DidntThrowException:
colour = Colour::Error;
passOrFail = "FAILED";
messageLabel = "because no exception was thrown where one was expected";
break;
case ResultWas::Info:
messageLabel = "info";
break;
case ResultWas::Warning:
messageLabel = "warning";
break;
case ResultWas::ExplicitFailure:
passOrFail = "FAILED";
colour = Colour::Error;
if (_stats.infoMessages.size() == 1)
messageLabel = "explicitly with message";
if (_stats.infoMessages.size() > 1)
messageLabel = "explicitly with messages";
break;
// These cases are here to prevent compiler warnings
case ResultWas::Unknown:
case ResultWas::FailureBit:
case ResultWas::Exception:
passOrFail = "** internal error **";
colour = Colour::Error;
break;
}
}
void print() const {
printSourceInfo();
if (stats.totals.assertions.total() > 0) {
printResultType();
printOriginalExpression();
printReconstructedExpression();
} else {
stream << '\n';
}
printMessage();
}
private:
void printResultType() const {
if (!passOrFail.empty()) {
Colour colourGuard(colour);
stream << passOrFail << ":\n";
}
}
void printOriginalExpression() const {
if (result.hasExpression()) {
Colour colourGuard(Colour::OriginalExpression);
stream << " ";
stream << result.getExpressionInMacro();
stream << '\n';
}
}
void printReconstructedExpression() const {
if (result.hasExpandedExpression()) {
stream << "with expansion:\n";
Colour colourGuard(Colour::ReconstructedExpression);
stream << Column(result.getExpandedExpression()).indent(2) << '\n';
}
}
void printMessage() const {
if (!messageLabel.empty())
stream << messageLabel << ':' << '\n';
for (auto const& msg : messages) {
// If this assertion is a warning ignore any INFO messages
if (printInfoMessages || msg.type != ResultWas::Info)
stream << Column(msg.message).indent(2) << '\n';
}
}
void printSourceInfo() const {
Colour colourGuard(Colour::FileName);
stream << result.getSourceInfo() << ": ";
}
std::ostream& stream;
AssertionStats const& stats;
AssertionResult const& result;
Colour::Code colour;
std::string passOrFail;
std::string messageLabel;
std::string message;
std::vector<MessageInfo> messages;
bool printInfoMessages;
};
std::size_t makeRatio(std::size_t number, std::size_t total) {
std::size_t ratio = total > 0 ? CATCH_CONFIG_CONSOLE_WIDTH * number / total : 0;
return (ratio == 0 && number > 0) ? 1 : ratio;
}
std::size_t& findMax(std::size_t& i, std::size_t& j, std::size_t& k) {
if (i > j && i > k)
return i;
else if (j > k)
return j;
else
return k;
}
struct ColumnInfo {
enum Justification { Left, Right };
std::string name;
int width;
Justification justification;
};
struct ColumnBreak {};
struct RowBreak {};
class Duration {
enum class Unit {
Auto,
Nanoseconds,
Microseconds,
Milliseconds,
Seconds,
Minutes
};
static const uint64_t s_nanosecondsInAMicrosecond = 1000;
static const uint64_t s_nanosecondsInAMillisecond = 1000 * s_nanosecondsInAMicrosecond;
static const uint64_t s_nanosecondsInASecond = 1000 * s_nanosecondsInAMillisecond;
static const uint64_t s_nanosecondsInAMinute = 60 * s_nanosecondsInASecond;
uint64_t m_inNanoseconds;
Unit m_units;
public:
explicit Duration(uint64_t inNanoseconds, Unit units = Unit::Auto)
: m_inNanoseconds(inNanoseconds),
m_units(units) {
if (m_units == Unit::Auto) {
if (m_inNanoseconds < s_nanosecondsInAMicrosecond)
m_units = Unit::Nanoseconds;
else if (m_inNanoseconds < s_nanosecondsInAMillisecond)
m_units = Unit::Microseconds;
else if (m_inNanoseconds < s_nanosecondsInASecond)
m_units = Unit::Milliseconds;
else if (m_inNanoseconds < s_nanosecondsInAMinute)
m_units = Unit::Seconds;
else
m_units = Unit::Minutes;
}
}
auto value() const -> double {
switch (m_units) {
case Unit::Microseconds:
return m_inNanoseconds / static_cast<double>(s_nanosecondsInAMicrosecond);
case Unit::Milliseconds:
return m_inNanoseconds / static_cast<double>(s_nanosecondsInAMillisecond);
case Unit::Seconds:
return m_inNanoseconds / static_cast<double>(s_nanosecondsInASecond);
case Unit::Minutes:
return m_inNanoseconds / static_cast<double>(s_nanosecondsInAMinute);
default:
return static_cast<double>(m_inNanoseconds);
}
}
auto unitsAsString() const -> std::string {
switch (m_units) {
case Unit::Nanoseconds:
return "ns";
case Unit::Microseconds:
return "µs";
case Unit::Milliseconds:
return "ms";
case Unit::Seconds:
return "s";
case Unit::Minutes:
return "m";
default:
return "** internal error **";
}
}
friend auto operator << (std::ostream& os, Duration const& duration) -> std::ostream& {
return os << duration.value() << " " << duration.unitsAsString();
}
};
} // end anon namespace
class TablePrinter {
std::ostream& m_os;
std::vector<ColumnInfo> m_columnInfos;
std::ostringstream m_oss;
int m_currentColumn = -1;
bool m_isOpen = false;
public:
TablePrinter( std::ostream& os, std::vector<ColumnInfo> columnInfos )
: m_os( os ),
m_columnInfos( std::move( columnInfos ) ) {}
auto columnInfos() const -> std::vector<ColumnInfo> const& {
return m_columnInfos;
}
void open() {
if (!m_isOpen) {
m_isOpen = true;
*this << RowBreak();
for (auto const& info : m_columnInfos)
*this << info.name << ColumnBreak();
*this << RowBreak();
m_os << Catch::getLineOfChars<'-'>() << "\n";
}
}
void close() {
if (m_isOpen) {
*this << RowBreak();
m_os << std::endl;
m_isOpen = false;
}
}
template<typename T>
friend TablePrinter& operator << (TablePrinter& tp, T const& value) {
tp.m_oss << value;
return tp;
}
friend TablePrinter& operator << (TablePrinter& tp, ColumnBreak) {
auto colStr = tp.m_oss.str();
// This takes account of utf8 encodings
auto strSize = Catch::StringRef(colStr).numberOfCharacters();
tp.m_oss.str("");
tp.open();
if (tp.m_currentColumn == static_cast<int>(tp.m_columnInfos.size() - 1)) {
tp.m_currentColumn = -1;
tp.m_os << "\n";
}
tp.m_currentColumn++;
auto colInfo = tp.m_columnInfos[tp.m_currentColumn];
auto padding = (strSize + 2 < static_cast<std::size_t>(colInfo.width))
? std::string(colInfo.width - (strSize + 2), ' ')
: std::string();
if (colInfo.justification == ColumnInfo::Left)
tp.m_os << colStr << padding << " ";
else
tp.m_os << padding << colStr << " ";
return tp;
}
friend TablePrinter& operator << (TablePrinter& tp, RowBreak) {
if (tp.m_currentColumn > 0) {
tp.m_os << "\n";
tp.m_currentColumn = -1;
}
return tp;
}
};
ConsoleReporter::ConsoleReporter(ReporterConfig const& config)
: StreamingReporterBase(config),
m_tablePrinter(new TablePrinter(config.stream(),
{
{ "benchmark name", CATCH_CONFIG_CONSOLE_WIDTH - 32, ColumnInfo::Left },
{ "iters", 8, ColumnInfo::Right },
{ "elapsed ns", 14, ColumnInfo::Right },
{ "average", 14, ColumnInfo::Right }
})) {}
ConsoleReporter::~ConsoleReporter() = default;
std::string ConsoleReporter::getDescription() {
return "Reports test results as plain lines of text";
}
void ConsoleReporter::noMatchingTestCases(std::string const& spec) {
stream << "No test cases matched '" << spec << '\'' << std::endl;
}
void ConsoleReporter::assertionStarting(AssertionInfo const&) {}
bool ConsoleReporter::assertionEnded(AssertionStats const& _assertionStats) {
AssertionResult const& result = _assertionStats.assertionResult;
bool includeResults = m_config->includeSuccessfulResults() || !result.isOk();
// Drop out if result was successful but we're not printing them.
if (!includeResults && result.getResultType() != ResultWas::Warning)
return false;
lazyPrint();
ConsoleAssertionPrinter printer(stream, _assertionStats, includeResults);
printer.print();
stream << std::endl;
return true;
}
void ConsoleReporter::sectionStarting(SectionInfo const& _sectionInfo) {
m_headerPrinted = false;
StreamingReporterBase::sectionStarting(_sectionInfo);
}
void ConsoleReporter::sectionEnded(SectionStats const& _sectionStats) {
m_tablePrinter->close();
if (_sectionStats.missingAssertions) {
lazyPrint();
Colour colour(Colour::ResultError);
if (m_sectionStack.size() > 1)
stream << "\nNo assertions in section";
else
stream << "\nNo assertions in test case";
stream << " '" << _sectionStats.sectionInfo.name << "'\n" << std::endl;
}
if (m_config->showDurations() == ShowDurations::Always) {
stream << getFormattedDuration(_sectionStats.durationInSeconds) << " s: " << _sectionStats.sectionInfo.name << std::endl;
}
if (m_headerPrinted) {
m_headerPrinted = false;
}
StreamingReporterBase::sectionEnded(_sectionStats);
}
void ConsoleReporter::benchmarkStarting(BenchmarkInfo const& info) {
lazyPrintWithoutClosingBenchmarkTable();
auto nameCol = Column( info.name ).width( static_cast<std::size_t>( m_tablePrinter->columnInfos()[0].width - 2 ) );
bool firstLine = true;
for (auto line : nameCol) {
if (!firstLine)
(*m_tablePrinter) << ColumnBreak() << ColumnBreak() << ColumnBreak();
else
firstLine = false;
(*m_tablePrinter) << line << ColumnBreak();
}
}
void ConsoleReporter::benchmarkEnded(BenchmarkStats const& stats) {
Duration average(stats.elapsedTimeInNanoseconds / stats.iterations);
(*m_tablePrinter)
<< stats.iterations << ColumnBreak()
<< stats.elapsedTimeInNanoseconds << ColumnBreak()
<< average << ColumnBreak();
}
void ConsoleReporter::testCaseEnded(TestCaseStats const& _testCaseStats) {
m_tablePrinter->close();
StreamingReporterBase::testCaseEnded(_testCaseStats);
m_headerPrinted = false;
}
void ConsoleReporter::testGroupEnded(TestGroupStats const& _testGroupStats) {
if (currentGroupInfo.used) {
printSummaryDivider();
stream << "Summary for group '" << _testGroupStats.groupInfo.name << "':\n";
printTotals(_testGroupStats.totals);
stream << '\n' << std::endl;
}
StreamingReporterBase::testGroupEnded(_testGroupStats);
}
void ConsoleReporter::testRunEnded(TestRunStats const& _testRunStats) {
printTotalsDivider(_testRunStats.totals);
printTotals(_testRunStats.totals);
stream << std::endl;
StreamingReporterBase::testRunEnded(_testRunStats);
}
void ConsoleReporter::lazyPrint() {
m_tablePrinter->close();
lazyPrintWithoutClosingBenchmarkTable();
}
void ConsoleReporter::lazyPrintWithoutClosingBenchmarkTable() {
if (!currentTestRunInfo.used)
lazyPrintRunInfo();
if (!currentGroupInfo.used)
lazyPrintGroupInfo();
if (!m_headerPrinted) {
printTestCaseAndSectionHeader();
m_headerPrinted = true;
}
}
void ConsoleReporter::lazyPrintRunInfo() {
stream << '\n' << getLineOfChars<'~'>() << '\n';
Colour colour(Colour::SecondaryText);
stream << currentTestRunInfo->name
<< " is a Catch v" << libraryVersion() << " host application.\n"
<< "Run with -? for options\n\n";
if (m_config->rngSeed() != 0)
stream << "Randomness seeded to: " << m_config->rngSeed() << "\n\n";
currentTestRunInfo.used = true;
}
void ConsoleReporter::lazyPrintGroupInfo() {
if (!currentGroupInfo->name.empty() && currentGroupInfo->groupsCounts > 1) {
printClosedHeader("Group: " + currentGroupInfo->name);
currentGroupInfo.used = true;
}
}
void ConsoleReporter::printTestCaseAndSectionHeader() {
assert(!m_sectionStack.empty());
printOpenHeader(currentTestCaseInfo->name);
if (m_sectionStack.size() > 1) {
Colour colourGuard(Colour::Headers);
auto
it = m_sectionStack.begin() + 1, // Skip first section (test case)
itEnd = m_sectionStack.end();
for (; it != itEnd; ++it)
printHeaderString(it->name, 2);
}
SourceLineInfo lineInfo = m_sectionStack.back().lineInfo;
if (!lineInfo.empty()) {
stream << getLineOfChars<'-'>() << '\n';
Colour colourGuard(Colour::FileName);
stream << lineInfo << '\n';
}
stream << getLineOfChars<'.'>() << '\n' << std::endl;
}
void ConsoleReporter::printClosedHeader(std::string const& _name) {
printOpenHeader(_name);
stream << getLineOfChars<'.'>() << '\n';
}
void ConsoleReporter::printOpenHeader(std::string const& _name) {
stream << getLineOfChars<'-'>() << '\n';
{
Colour colourGuard(Colour::Headers);
printHeaderString(_name);
}
}
// if string has a : in first line will set indent to follow it on
// subsequent lines
void ConsoleReporter::printHeaderString(std::string const& _string, std::size_t indent) {
std::size_t i = _string.find(": ");
if (i != std::string::npos)
i += 2;
else
i = 0;
stream << Column(_string).indent(indent + i).initialIndent(indent) << '\n';
}
struct SummaryColumn {
SummaryColumn( std::string _label, Colour::Code _colour )
: label( std::move( _label ) ),
colour( _colour ) {}
SummaryColumn addRow( std::size_t count ) {
ReusableStringStream rss;
rss << count;
std::string row = rss.str();
for (auto& oldRow : rows) {
while (oldRow.size() < row.size())
oldRow = ' ' + oldRow;
while (oldRow.size() > row.size())
row = ' ' + row;
}
rows.push_back(row);
return *this;
}
std::string label;
Colour::Code colour;
std::vector<std::string> rows;
};
void ConsoleReporter::printTotals( Totals const& totals ) {
if (totals.testCases.total() == 0) {
stream << Colour(Colour::Warning) << "No tests ran\n";
} else if (totals.assertions.total() > 0 && totals.testCases.allPassed()) {
stream << Colour(Colour::ResultSuccess) << "All tests passed";
stream << " ("
<< pluralise(totals.assertions.passed, "assertion") << " in "
<< pluralise(totals.testCases.passed, "test case") << ')'
<< '\n';
} else {
std::vector<SummaryColumn> columns;
columns.push_back(SummaryColumn("", Colour::None)
.addRow(totals.testCases.total())
.addRow(totals.assertions.total()));
columns.push_back(SummaryColumn("passed", Colour::Success)
.addRow(totals.testCases.passed)
.addRow(totals.assertions.passed));
columns.push_back(SummaryColumn("failed", Colour::ResultError)
.addRow(totals.testCases.failed)
.addRow(totals.assertions.failed));
columns.push_back(SummaryColumn("failed as expected", Colour::ResultExpectedFailure)
.addRow(totals.testCases.failedButOk)
.addRow(totals.assertions.failedButOk));
printSummaryRow("test cases", columns, 0);
printSummaryRow("assertions", columns, 1);
}
}
void ConsoleReporter::printSummaryRow(std::string const& label, std::vector<SummaryColumn> const& cols, std::size_t row) {
for (auto col : cols) {
std::string value = col.rows[row];
if (col.label.empty()) {
stream << label << ": ";
if (value != "0")
stream << value;
else
stream << Colour(Colour::Warning) << "- none -";
} else if (value != "0") {
stream << Colour(Colour::LightGrey) << " | ";
stream << Colour(col.colour)
<< value << ' ' << col.label;
}
}
stream << '\n';
}
void ConsoleReporter::printTotalsDivider(Totals const& totals) {
if (totals.testCases.total() > 0) {
std::size_t failedRatio = makeRatio(totals.testCases.failed, totals.testCases.total());
std::size_t failedButOkRatio = makeRatio(totals.testCases.failedButOk, totals.testCases.total());
std::size_t passedRatio = makeRatio(totals.testCases.passed, totals.testCases.total());
while (failedRatio + failedButOkRatio + passedRatio < CATCH_CONFIG_CONSOLE_WIDTH - 1)
findMax(failedRatio, failedButOkRatio, passedRatio)++;
while (failedRatio + failedButOkRatio + passedRatio > CATCH_CONFIG_CONSOLE_WIDTH - 1)
findMax(failedRatio, failedButOkRatio, passedRatio)--;
stream << Colour(Colour::Error) << std::string(failedRatio, '=');
stream << Colour(Colour::ResultExpectedFailure) << std::string(failedButOkRatio, '=');
if (totals.testCases.allPassed())
stream << Colour(Colour::ResultSuccess) << std::string(passedRatio, '=');
else
stream << Colour(Colour::Success) << std::string(passedRatio, '=');
} else {
stream << Colour(Colour::Warning) << std::string(CATCH_CONFIG_CONSOLE_WIDTH - 1, '=');
}
stream << '\n';
}
void ConsoleReporter::printSummaryDivider() {
stream << getLineOfChars<'-'>() << '\n';
}
CATCH_REGISTER_REPORTER("console", ConsoleReporter)
} // end namespace Catch
#if defined(_MSC_VER)
#pragma warning(pop)
#endif
// end catch_reporter_console.cpp
// start catch_reporter_junit.cpp
#include <cassert>
#include <sstream>
#include <ctime>
#include <algorithm>
namespace Catch {
namespace {
std::string getCurrentTimestamp() {
// Beware, this is not reentrant because of backward compatibility issues
// Also, UTC only, again because of backward compatibility (%z is C++11)
time_t rawtime;
std::time(&rawtime);
auto const timeStampSize = sizeof("2017-01-16T17:06:45Z");
#ifdef _MSC_VER
std::tm timeInfo = {};
gmtime_s(&timeInfo, &rawtime);
#else
std::tm* timeInfo;
timeInfo = std::gmtime(&rawtime);
#endif
char timeStamp[timeStampSize];
const char * const fmt = "%Y-%m-%dT%H:%M:%SZ";
#ifdef _MSC_VER
std::strftime(timeStamp, timeStampSize, fmt, &timeInfo);
#else
std::strftime(timeStamp, timeStampSize, fmt, timeInfo);
#endif
return std::string(timeStamp);
}
std::string fileNameTag(const std::vector<std::string> &tags) {
auto it = std::find_if(begin(tags),
end(tags),
[] (std::string const& tag) {return tag.front() == '#'; });
if (it != tags.end())
return it->substr(1);
return std::string();
}
} // anonymous namespace
JunitReporter::JunitReporter( ReporterConfig const& _config )
: CumulativeReporterBase( _config ),
xml( _config.stream() )
{
m_reporterPrefs.shouldRedirectStdOut = true;
m_reporterPrefs.shouldReportAllAssertions = true;
}
JunitReporter::~JunitReporter() {}
std::string JunitReporter::getDescription() {
return "Reports test results in an XML format that looks like Ant's junitreport target";
}
void JunitReporter::noMatchingTestCases( std::string const& /*spec*/ ) {}
void JunitReporter::testRunStarting( TestRunInfo const& runInfo ) {
CumulativeReporterBase::testRunStarting( runInfo );
xml.startElement( "testsuites" );
}
void JunitReporter::testGroupStarting( GroupInfo const& groupInfo ) {
suiteTimer.start();
stdOutForSuite.clear();
stdErrForSuite.clear();
unexpectedExceptions = 0;
CumulativeReporterBase::testGroupStarting( groupInfo );
}
void JunitReporter::testCaseStarting( TestCaseInfo const& testCaseInfo ) {
m_okToFail = testCaseInfo.okToFail();
}
bool JunitReporter::assertionEnded( AssertionStats const& assertionStats ) {
if( assertionStats.assertionResult.getResultType() == ResultWas::ThrewException && !m_okToFail )
unexpectedExceptions++;
return CumulativeReporterBase::assertionEnded( assertionStats );
}
void JunitReporter::testCaseEnded( TestCaseStats const& testCaseStats ) {
stdOutForSuite += testCaseStats.stdOut;
stdErrForSuite += testCaseStats.stdErr;
CumulativeReporterBase::testCaseEnded( testCaseStats );
}
void JunitReporter::testGroupEnded( TestGroupStats const& testGroupStats ) {
double suiteTime = suiteTimer.getElapsedSeconds();
CumulativeReporterBase::testGroupEnded( testGroupStats );
writeGroup( *m_testGroups.back(), suiteTime );
}
void JunitReporter::testRunEndedCumulative() {
xml.endElement();
}
void JunitReporter::writeGroup( TestGroupNode const& groupNode, double suiteTime ) {
XmlWriter::ScopedElement e = xml.scopedElement( "testsuite" );
TestGroupStats const& stats = groupNode.value;
xml.writeAttribute( "name", stats.groupInfo.name );
xml.writeAttribute( "errors", unexpectedExceptions );
xml.writeAttribute( "failures", stats.totals.assertions.failed-unexpectedExceptions );
xml.writeAttribute( "tests", stats.totals.assertions.total() );
xml.writeAttribute( "hostname", "tbd" ); // !TBD
if( m_config->showDurations() == ShowDurations::Never )
xml.writeAttribute( "time", "" );
else
xml.writeAttribute( "time", suiteTime );
xml.writeAttribute( "timestamp", getCurrentTimestamp() );
// Write test cases
for( auto const& child : groupNode.children )
writeTestCase( *child );
xml.scopedElement( "system-out" ).writeText( trim( stdOutForSuite ), false );
xml.scopedElement( "system-err" ).writeText( trim( stdErrForSuite ), false );
}
void JunitReporter::writeTestCase( TestCaseNode const& testCaseNode ) {
TestCaseStats const& stats = testCaseNode.value;
// All test cases have exactly one section - which represents the
// test case itself. That section may have 0-n nested sections
assert( testCaseNode.children.size() == 1 );
SectionNode const& rootSection = *testCaseNode.children.front();
std::string className = stats.testInfo.className;
if( className.empty() ) {
className = fileNameTag(stats.testInfo.tags);
if ( className.empty() )
className = "global";
}
if ( !m_config->name().empty() )
className = m_config->name() + "." + className;
writeSection( className, "", rootSection );
}
void JunitReporter::writeSection( std::string const& className,
std::string const& rootName,
SectionNode const& sectionNode ) {
std::string name = trim( sectionNode.stats.sectionInfo.name );
if( !rootName.empty() )
name = rootName + '/' + name;
if( !sectionNode.assertions.empty() ||
!sectionNode.stdOut.empty() ||
!sectionNode.stdErr.empty() ) {
XmlWriter::ScopedElement e = xml.scopedElement( "testcase" );
if( className.empty() ) {
xml.writeAttribute( "classname", name );
xml.writeAttribute( "name", "root" );
}
else {
xml.writeAttribute( "classname", className );
xml.writeAttribute( "name", name );
}
xml.writeAttribute( "time", ::Catch::Detail::stringify( sectionNode.stats.durationInSeconds ) );
writeAssertions( sectionNode );
if( !sectionNode.stdOut.empty() )
xml.scopedElement( "system-out" ).writeText( trim( sectionNode.stdOut ), false );
if( !sectionNode.stdErr.empty() )
xml.scopedElement( "system-err" ).writeText( trim( sectionNode.stdErr ), false );
}
for( auto const& childNode : sectionNode.childSections )
if( className.empty() )
writeSection( name, "", *childNode );
else
writeSection( className, name, *childNode );
}
void JunitReporter::writeAssertions( SectionNode const& sectionNode ) {
for( auto const& assertion : sectionNode.assertions )
writeAssertion( assertion );
}
void JunitReporter::writeAssertion( AssertionStats const& stats ) {
AssertionResult const& result = stats.assertionResult;
if( !result.isOk() ) {
std::string elementName;
switch( result.getResultType() ) {
case ResultWas::ThrewException:
case ResultWas::FatalErrorCondition:
elementName = "error";
break;
case ResultWas::ExplicitFailure:
elementName = "failure";
break;
case ResultWas::ExpressionFailed:
elementName = "failure";
break;
case ResultWas::DidntThrowException:
elementName = "failure";
break;
// We should never see these here:
case ResultWas::Info:
case ResultWas::Warning:
case ResultWas::Ok:
case ResultWas::Unknown:
case ResultWas::FailureBit:
case ResultWas::Exception:
elementName = "internalError";
break;
}
XmlWriter::ScopedElement e = xml.scopedElement( elementName );
xml.writeAttribute( "message", result.getExpandedExpression() );
xml.writeAttribute( "type", result.getTestMacroName() );
ReusableStringStream rss;
if( !result.getMessage().empty() )
rss << result.getMessage() << '\n';
for( auto const& msg : stats.infoMessages )
if( msg.type == ResultWas::Info )
rss << msg.message << '\n';
rss << "at " << result.getSourceInfo();
xml.writeText( rss.str(), false );
}
}
CATCH_REGISTER_REPORTER( "junit", JunitReporter )
} // end namespace Catch
// end catch_reporter_junit.cpp
// start catch_reporter_listening.cpp
#include <cassert>
namespace Catch {
ListeningReporter::ListeningReporter() {
// We will assume that listeners will always want all assertions
m_preferences.shouldReportAllAssertions = true;
}
void ListeningReporter::addListener( IStreamingReporterPtr&& listener ) {
m_listeners.push_back( std::move( listener ) );
}
void ListeningReporter::addReporter(IStreamingReporterPtr&& reporter) {
assert(!m_reporter && "Listening reporter can wrap only 1 real reporter");
m_reporter = std::move( reporter );
m_preferences.shouldRedirectStdOut = m_reporter->getPreferences().shouldRedirectStdOut;
}
ReporterPreferences ListeningReporter::getPreferences() const {
return m_preferences;
}
std::set<Verbosity> ListeningReporter::getSupportedVerbosities() {
return std::set<Verbosity>{ };
}
void ListeningReporter::noMatchingTestCases( std::string const& spec ) {
for ( auto const& listener : m_listeners ) {
listener->noMatchingTestCases( spec );
}
m_reporter->noMatchingTestCases( spec );
}
void ListeningReporter::benchmarkStarting( BenchmarkInfo const& benchmarkInfo ) {
for ( auto const& listener : m_listeners ) {
listener->benchmarkStarting( benchmarkInfo );
}
m_reporter->benchmarkStarting( benchmarkInfo );
}
void ListeningReporter::benchmarkEnded( BenchmarkStats const& benchmarkStats ) {
for ( auto const& listener : m_listeners ) {
listener->benchmarkEnded( benchmarkStats );
}
m_reporter->benchmarkEnded( benchmarkStats );
}
void ListeningReporter::testRunStarting( TestRunInfo const& testRunInfo ) {
for ( auto const& listener : m_listeners ) {
listener->testRunStarting( testRunInfo );
}
m_reporter->testRunStarting( testRunInfo );
}
void ListeningReporter::testGroupStarting( GroupInfo const& groupInfo ) {
for ( auto const& listener : m_listeners ) {
listener->testGroupStarting( groupInfo );
}
m_reporter->testGroupStarting( groupInfo );
}
void ListeningReporter::testCaseStarting( TestCaseInfo const& testInfo ) {
for ( auto const& listener : m_listeners ) {
listener->testCaseStarting( testInfo );
}
m_reporter->testCaseStarting( testInfo );
}
void ListeningReporter::sectionStarting( SectionInfo const& sectionInfo ) {
for ( auto const& listener : m_listeners ) {
listener->sectionStarting( sectionInfo );
}
m_reporter->sectionStarting( sectionInfo );
}
void ListeningReporter::assertionStarting( AssertionInfo const& assertionInfo ) {
for ( auto const& listener : m_listeners ) {
listener->assertionStarting( assertionInfo );
}
m_reporter->assertionStarting( assertionInfo );
}
// The return value indicates if the messages buffer should be cleared:
bool ListeningReporter::assertionEnded( AssertionStats const& assertionStats ) {
for( auto const& listener : m_listeners ) {
static_cast<void>( listener->assertionEnded( assertionStats ) );
}
return m_reporter->assertionEnded( assertionStats );
}
void ListeningReporter::sectionEnded( SectionStats const& sectionStats ) {
for ( auto const& listener : m_listeners ) {
listener->sectionEnded( sectionStats );
}
m_reporter->sectionEnded( sectionStats );
}
void ListeningReporter::testCaseEnded( TestCaseStats const& testCaseStats ) {
for ( auto const& listener : m_listeners ) {
listener->testCaseEnded( testCaseStats );
}
m_reporter->testCaseEnded( testCaseStats );
}
void ListeningReporter::testGroupEnded( TestGroupStats const& testGroupStats ) {
for ( auto const& listener : m_listeners ) {
listener->testGroupEnded( testGroupStats );
}
m_reporter->testGroupEnded( testGroupStats );
}
void ListeningReporter::testRunEnded( TestRunStats const& testRunStats ) {
for ( auto const& listener : m_listeners ) {
listener->testRunEnded( testRunStats );
}
m_reporter->testRunEnded( testRunStats );
}
void ListeningReporter::skipTest( TestCaseInfo const& testInfo ) {
for ( auto const& listener : m_listeners ) {
listener->skipTest( testInfo );
}
m_reporter->skipTest( testInfo );
}
bool ListeningReporter::isMulti() const {
return true;
}
} // end namespace Catch
// end catch_reporter_listening.cpp
// start catch_reporter_xml.cpp
#if defined(_MSC_VER)
#pragma warning(push)
#pragma warning(disable:4061) // Not all labels are EXPLICITLY handled in switch
// Note that 4062 (not all labels are handled
// and default is missing) is enabled
#endif
namespace Catch {
XmlReporter::XmlReporter( ReporterConfig const& _config )
: StreamingReporterBase( _config ),
m_xml(_config.stream())
{
m_reporterPrefs.shouldRedirectStdOut = true;
m_reporterPrefs.shouldReportAllAssertions = true;
}
XmlReporter::~XmlReporter() = default;
std::string XmlReporter::getDescription() {
return "Reports test results as an XML document";
}
std::string XmlReporter::getStylesheetRef() const {
return std::string();
}
void XmlReporter::writeSourceInfo( SourceLineInfo const& sourceInfo ) {
m_xml
.writeAttribute( "filename", sourceInfo.file )
.writeAttribute( "line", sourceInfo.line );
}
void XmlReporter::noMatchingTestCases( std::string const& s ) {
StreamingReporterBase::noMatchingTestCases( s );
}
void XmlReporter::testRunStarting( TestRunInfo const& testInfo ) {
StreamingReporterBase::testRunStarting( testInfo );
std::string stylesheetRef = getStylesheetRef();
if( !stylesheetRef.empty() )
m_xml.writeStylesheetRef( stylesheetRef );
m_xml.startElement( "Catch" );
if( !m_config->name().empty() )
m_xml.writeAttribute( "name", m_config->name() );
if( m_config->rngSeed() != 0 )
m_xml.scopedElement( "Randomness" )
.writeAttribute( "seed", m_config->rngSeed() );
}
void XmlReporter::testGroupStarting( GroupInfo const& groupInfo ) {
StreamingReporterBase::testGroupStarting( groupInfo );
m_xml.startElement( "Group" )
.writeAttribute( "name", groupInfo.name );
}
void XmlReporter::testCaseStarting( TestCaseInfo const& testInfo ) {
StreamingReporterBase::testCaseStarting(testInfo);
m_xml.startElement( "TestCase" )
.writeAttribute( "name", trim( testInfo.name ) )
.writeAttribute( "description", testInfo.description )
.writeAttribute( "tags", testInfo.tagsAsString() );
writeSourceInfo( testInfo.lineInfo );
if ( m_config->showDurations() == ShowDurations::Always )
m_testCaseTimer.start();
m_xml.ensureTagClosed();
}
void XmlReporter::sectionStarting( SectionInfo const& sectionInfo ) {
StreamingReporterBase::sectionStarting( sectionInfo );
if( m_sectionDepth++ > 0 ) {
m_xml.startElement( "Section" )
.writeAttribute( "name", trim( sectionInfo.name ) );
writeSourceInfo( sectionInfo.lineInfo );
m_xml.ensureTagClosed();
}
}
void XmlReporter::assertionStarting( AssertionInfo const& ) { }
bool XmlReporter::assertionEnded( AssertionStats const& assertionStats ) {
AssertionResult const& result = assertionStats.assertionResult;
bool includeResults = m_config->includeSuccessfulResults() || !result.isOk();
if( includeResults || result.getResultType() == ResultWas::Warning ) {
// Print any info messages in <Info> tags.
for( auto const& msg : assertionStats.infoMessages ) {
if( msg.type == ResultWas::Info && includeResults ) {
m_xml.scopedElement( "Info" )
.writeText( msg.message );
} else if ( msg.type == ResultWas::Warning ) {
m_xml.scopedElement( "Warning" )
.writeText( msg.message );
}
}
}
// Drop out if result was successful but we're not printing them.
if( !includeResults && result.getResultType() != ResultWas::Warning )
return true;
// Print the expression if there is one.
if( result.hasExpression() ) {
m_xml.startElement( "Expression" )
.writeAttribute( "success", result.succeeded() )
.writeAttribute( "type", result.getTestMacroName() );
writeSourceInfo( result.getSourceInfo() );
m_xml.scopedElement( "Original" )
.writeText( result.getExpression() );
m_xml.scopedElement( "Expanded" )
.writeText( result.getExpandedExpression() );
}
// And... Print a result applicable to each result type.
switch( result.getResultType() ) {
case ResultWas::ThrewException:
m_xml.startElement( "Exception" );
writeSourceInfo( result.getSourceInfo() );
m_xml.writeText( result.getMessage() );
m_xml.endElement();
break;
case ResultWas::FatalErrorCondition:
m_xml.startElement( "FatalErrorCondition" );
writeSourceInfo( result.getSourceInfo() );
m_xml.writeText( result.getMessage() );
m_xml.endElement();
break;
case ResultWas::Info:
m_xml.scopedElement( "Info" )
.writeText( result.getMessage() );
break;
case ResultWas::Warning:
// Warning will already have been written
break;
case ResultWas::ExplicitFailure:
m_xml.startElement( "Failure" );
writeSourceInfo( result.getSourceInfo() );
m_xml.writeText( result.getMessage() );
m_xml.endElement();
break;
default:
break;
}
if( result.hasExpression() )
m_xml.endElement();
return true;
}
void XmlReporter::sectionEnded( SectionStats const& sectionStats ) {
StreamingReporterBase::sectionEnded( sectionStats );
if( --m_sectionDepth > 0 ) {
XmlWriter::ScopedElement e = m_xml.scopedElement( "OverallResults" );
e.writeAttribute( "successes", sectionStats.assertions.passed );
e.writeAttribute( "failures", sectionStats.assertions.failed );
e.writeAttribute( "expectedFailures", sectionStats.assertions.failedButOk );
if ( m_config->showDurations() == ShowDurations::Always )
e.writeAttribute( "durationInSeconds", sectionStats.durationInSeconds );
m_xml.endElement();
}
}
void XmlReporter::testCaseEnded( TestCaseStats const& testCaseStats ) {
StreamingReporterBase::testCaseEnded( testCaseStats );
XmlWriter::ScopedElement e = m_xml.scopedElement( "OverallResult" );
e.writeAttribute( "success", testCaseStats.totals.assertions.allOk() );
if ( m_config->showDurations() == ShowDurations::Always )
e.writeAttribute( "durationInSeconds", m_testCaseTimer.getElapsedSeconds() );
if( !testCaseStats.stdOut.empty() )
m_xml.scopedElement( "StdOut" ).writeText( trim( testCaseStats.stdOut ), false );
if( !testCaseStats.stdErr.empty() )
m_xml.scopedElement( "StdErr" ).writeText( trim( testCaseStats.stdErr ), false );
m_xml.endElement();
}
void XmlReporter::testGroupEnded( TestGroupStats const& testGroupStats ) {
StreamingReporterBase::testGroupEnded( testGroupStats );
// TODO: Check testGroupStats.aborting and act accordingly.
m_xml.scopedElement( "OverallResults" )
.writeAttribute( "successes", testGroupStats.totals.assertions.passed )
.writeAttribute( "failures", testGroupStats.totals.assertions.failed )
.writeAttribute( "expectedFailures", testGroupStats.totals.assertions.failedButOk );
m_xml.endElement();
}
void XmlReporter::testRunEnded( TestRunStats const& testRunStats ) {
StreamingReporterBase::testRunEnded( testRunStats );
m_xml.scopedElement( "OverallResults" )
.writeAttribute( "successes", testRunStats.totals.assertions.passed )
.writeAttribute( "failures", testRunStats.totals.assertions.failed )
.writeAttribute( "expectedFailures", testRunStats.totals.assertions.failedButOk );
m_xml.endElement();
}
CATCH_REGISTER_REPORTER( "xml", XmlReporter )
} // end namespace Catch
#if defined(_MSC_VER)
#pragma warning(pop)
#endif
// end catch_reporter_xml.cpp
namespace Catch {
LeakDetector leakDetector;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// end catch_impl.hpp
#endif
#ifdef CATCH_CONFIG_MAIN
// start catch_default_main.hpp
#ifndef __OBJC__
#if defined(CATCH_CONFIG_WCHAR) && defined(WIN32) && defined(_UNICODE) && !defined(DO_NOT_USE_WMAIN)
// Standard C/C++ Win32 Unicode wmain entry point
extern "C" int wmain (int argc, wchar_t * argv[], wchar_t * []) {
#else
// Standard C/C++ main entry point
int main (int argc, char * argv[]) {
#endif
return Catch::Session().run( argc, argv );
}
#else // __OBJC__
// Objective-C entry point
int main (int argc, char * const argv[]) {
#if !CATCH_ARC_ENABLED
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
#endif
Catch::registerTestMethods();
int result = Catch::Session().run( argc, (char**)argv );
#if !CATCH_ARC_ENABLED
[pool drain];
#endif
return result;
}
#endif // __OBJC__
// end catch_default_main.hpp
#endif
#if !defined(CATCH_CONFIG_IMPL_ONLY)
#ifdef CLARA_CONFIG_MAIN_NOT_DEFINED
# undef CLARA_CONFIG_MAIN
#endif
#if !defined(CATCH_CONFIG_DISABLE)
//////
// If this config identifier is defined then all CATCH macros are prefixed with CATCH_
#ifdef CATCH_CONFIG_PREFIX_ALL
#define CATCH_REQUIRE( ... ) INTERNAL_CATCH_TEST( "CATCH_REQUIRE", Catch::ResultDisposition::Normal, __VA_ARGS__ )
#define CATCH_REQUIRE_FALSE( ... ) INTERNAL_CATCH_TEST( "CATCH_REQUIRE_FALSE", Catch::ResultDisposition::Normal | Catch::ResultDisposition::FalseTest, __VA_ARGS__ )
#define CATCH_REQUIRE_THROWS( ... ) INTERNAL_CATCH_THROWS( "CATCH_REQUIRE_THROWS", Catch::ResultDisposition::Normal, "", __VA_ARGS__ )
#define CATCH_REQUIRE_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( "CATCH_REQUIRE_THROWS_AS", exceptionType, Catch::ResultDisposition::Normal, expr )
#define CATCH_REQUIRE_THROWS_WITH( expr, matcher ) INTERNAL_CATCH_THROWS_STR_MATCHES( "CATCH_REQUIRE_THROWS_WITH", Catch::ResultDisposition::Normal, matcher, expr )
#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
#define CATCH_REQUIRE_THROWS_MATCHES( expr, exceptionType, matcher ) INTERNAL_CATCH_THROWS_MATCHES( "CATCH_REQUIRE_THROWS_MATCHES", exceptionType, Catch::ResultDisposition::Normal, matcher, expr )
#endif// CATCH_CONFIG_DISABLE_MATCHERS
#define CATCH_REQUIRE_NOTHROW( ... ) INTERNAL_CATCH_NO_THROW( "CATCH_REQUIRE_NOTHROW", Catch::ResultDisposition::Normal, __VA_ARGS__ )
#define CATCH_CHECK( ... ) INTERNAL_CATCH_TEST( "CATCH_CHECK", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
#define CATCH_CHECK_FALSE( ... ) INTERNAL_CATCH_TEST( "CATCH_CHECK_FALSE", Catch::ResultDisposition::ContinueOnFailure | Catch::ResultDisposition::FalseTest, __VA_ARGS__ )
#define CATCH_CHECKED_IF( ... ) INTERNAL_CATCH_IF( "CATCH_CHECKED_IF", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
#define CATCH_CHECKED_ELSE( ... ) INTERNAL_CATCH_ELSE( "CATCH_CHECKED_ELSE", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
#define CATCH_CHECK_NOFAIL( ... ) INTERNAL_CATCH_TEST( "CATCH_CHECK_NOFAIL", Catch::ResultDisposition::ContinueOnFailure | Catch::ResultDisposition::SuppressFail, __VA_ARGS__ )
#define CATCH_CHECK_THROWS( ... ) INTERNAL_CATCH_THROWS( "CATCH_CHECK_THROWS", Catch::ResultDisposition::ContinueOnFailure, "", __VA_ARGS__ )
#define CATCH_CHECK_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( "CATCH_CHECK_THROWS_AS", exceptionType, Catch::ResultDisposition::ContinueOnFailure, expr )
#define CATCH_CHECK_THROWS_WITH( expr, matcher ) INTERNAL_CATCH_THROWS_STR_MATCHES( "CATCH_CHECK_THROWS_WITH", Catch::ResultDisposition::ContinueOnFailure, matcher, expr )
#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
#define CATCH_CHECK_THROWS_MATCHES( expr, exceptionType, matcher ) INTERNAL_CATCH_THROWS_MATCHES( "CATCH_CHECK_THROWS_MATCHES", exceptionType, Catch::ResultDisposition::ContinueOnFailure, matcher, expr )
#endif // CATCH_CONFIG_DISABLE_MATCHERS
#define CATCH_CHECK_NOTHROW( ... ) INTERNAL_CATCH_NO_THROW( "CATCH_CHECK_NOTHROW", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
#define CATCH_CHECK_THAT( arg, matcher ) INTERNAL_CHECK_THAT( "CATCH_CHECK_THAT", matcher, Catch::ResultDisposition::ContinueOnFailure, arg )
#define CATCH_REQUIRE_THAT( arg, matcher ) INTERNAL_CHECK_THAT( "CATCH_REQUIRE_THAT", matcher, Catch::ResultDisposition::Normal, arg )
#endif // CATCH_CONFIG_DISABLE_MATCHERS
#define CATCH_INFO( msg ) INTERNAL_CATCH_INFO( "CATCH_INFO", msg )
#define CATCH_WARN( msg ) INTERNAL_CATCH_MSG( "CATCH_WARN", Catch::ResultWas::Warning, Catch::ResultDisposition::ContinueOnFailure, msg )
#define CATCH_CAPTURE( ... ) INTERNAL_CATCH_CAPTURE( INTERNAL_CATCH_UNIQUE_NAME(capturer), "CATCH_CAPTURE",__VA_ARGS__ )
#define CATCH_TEST_CASE( ... ) INTERNAL_CATCH_TESTCASE( __VA_ARGS__ )
#define CATCH_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEST_CASE_METHOD( className, __VA_ARGS__ )
#define CATCH_METHOD_AS_TEST_CASE( method, ... ) INTERNAL_CATCH_METHOD_AS_TEST_CASE( method, __VA_ARGS__ )
#define CATCH_REGISTER_TEST_CASE( Function, ... ) INTERNAL_CATCH_REGISTER_TESTCASE( Function, __VA_ARGS__ )
#define CATCH_SECTION( ... ) INTERNAL_CATCH_SECTION( __VA_ARGS__ )
#define CATCH_DYNAMIC_SECTION( ... ) INTERNAL_CATCH_DYNAMIC_SECTION( __VA_ARGS__ )
#define CATCH_FAIL( ... ) INTERNAL_CATCH_MSG( "CATCH_FAIL", Catch::ResultWas::ExplicitFailure, Catch::ResultDisposition::Normal, __VA_ARGS__ )
#define CATCH_FAIL_CHECK( ... ) INTERNAL_CATCH_MSG( "CATCH_FAIL_CHECK", Catch::ResultWas::ExplicitFailure, Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
#define CATCH_SUCCEED( ... ) INTERNAL_CATCH_MSG( "CATCH_SUCCEED", Catch::ResultWas::Ok, Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
#define CATCH_ANON_TEST_CASE() INTERNAL_CATCH_TESTCASE()
#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
#define CATCH_TEMPLATE_TEST_CASE( ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE( __VA_ARGS__ )
#define CATCH_TEMPLATE_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ )
#define CATCH_TEMPLATE_PRODUCT_TEST_CASE( ... ) INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE( __VA_ARGS__ )
#define CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, __VA_ARGS__ )
#else
#define CATCH_TEMPLATE_TEST_CASE( ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE( __VA_ARGS__ ) )
#define CATCH_TEMPLATE_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ ) )
#define CATCH_TEMPLATE_PRODUCT_TEST_CASE( ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE( __VA_ARGS__ ) )
#define CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, __VA_ARGS__ ) )
#endif
#if !defined(CATCH_CONFIG_RUNTIME_STATIC_REQUIRE)
#define CATCH_STATIC_REQUIRE( ... ) static_assert( __VA_ARGS__ , #__VA_ARGS__ ); CATCH_SUCCEED( #__VA_ARGS__ )
#define CATCH_STATIC_REQUIRE_FALSE( ... ) static_assert( !(__VA_ARGS__), "!(" #__VA_ARGS__ ")" ); CATCH_SUCCEED( #__VA_ARGS__ )
#else
#define CATCH_STATIC_REQUIRE( ... ) CATCH_REQUIRE( __VA_ARGS__ )
#define CATCH_STATIC_REQUIRE_FALSE( ... ) CATCH_REQUIRE_FALSE( __VA_ARGS__ )
#endif
// "BDD-style" convenience wrappers
#define CATCH_SCENARIO( ... ) CATCH_TEST_CASE( "Scenario: " __VA_ARGS__ )
#define CATCH_SCENARIO_METHOD( className, ... ) INTERNAL_CATCH_TEST_CASE_METHOD( className, "Scenario: " __VA_ARGS__ )
#define CATCH_GIVEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " Given: " << desc )
#define CATCH_AND_GIVEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( "And given: " << desc )
#define CATCH_WHEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " When: " << desc )
#define CATCH_AND_WHEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " And when: " << desc )
#define CATCH_THEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " Then: " << desc )
#define CATCH_AND_THEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " And: " << desc )
// If CATCH_CONFIG_PREFIX_ALL is not defined then the CATCH_ prefix is not required
#else
#define REQUIRE( ... ) INTERNAL_CATCH_TEST( "REQUIRE", Catch::ResultDisposition::Normal, __VA_ARGS__ )
#define REQUIRE_FALSE( ... ) INTERNAL_CATCH_TEST( "REQUIRE_FALSE", Catch::ResultDisposition::Normal | Catch::ResultDisposition::FalseTest, __VA_ARGS__ )
#define REQUIRE_THROWS( ... ) INTERNAL_CATCH_THROWS( "REQUIRE_THROWS", Catch::ResultDisposition::Normal, __VA_ARGS__ )
#define REQUIRE_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( "REQUIRE_THROWS_AS", exceptionType, Catch::ResultDisposition::Normal, expr )
#define REQUIRE_THROWS_WITH( expr, matcher ) INTERNAL_CATCH_THROWS_STR_MATCHES( "REQUIRE_THROWS_WITH", Catch::ResultDisposition::Normal, matcher, expr )
#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
#define REQUIRE_THROWS_MATCHES( expr, exceptionType, matcher ) INTERNAL_CATCH_THROWS_MATCHES( "REQUIRE_THROWS_MATCHES", exceptionType, Catch::ResultDisposition::Normal, matcher, expr )
#endif // CATCH_CONFIG_DISABLE_MATCHERS
#define REQUIRE_NOTHROW( ... ) INTERNAL_CATCH_NO_THROW( "REQUIRE_NOTHROW", Catch::ResultDisposition::Normal, __VA_ARGS__ )
#define CHECK( ... ) INTERNAL_CATCH_TEST( "CHECK", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
#define CHECK_FALSE( ... ) INTERNAL_CATCH_TEST( "CHECK_FALSE", Catch::ResultDisposition::ContinueOnFailure | Catch::ResultDisposition::FalseTest, __VA_ARGS__ )
#define CHECKED_IF( ... ) INTERNAL_CATCH_IF( "CHECKED_IF", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
#define CHECKED_ELSE( ... ) INTERNAL_CATCH_ELSE( "CHECKED_ELSE", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
#define CHECK_NOFAIL( ... ) INTERNAL_CATCH_TEST( "CHECK_NOFAIL", Catch::ResultDisposition::ContinueOnFailure | Catch::ResultDisposition::SuppressFail, __VA_ARGS__ )
#define CHECK_THROWS( ... ) INTERNAL_CATCH_THROWS( "CHECK_THROWS", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
#define CHECK_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( "CHECK_THROWS_AS", exceptionType, Catch::ResultDisposition::ContinueOnFailure, expr )
#define CHECK_THROWS_WITH( expr, matcher ) INTERNAL_CATCH_THROWS_STR_MATCHES( "CHECK_THROWS_WITH", Catch::ResultDisposition::ContinueOnFailure, matcher, expr )
#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
#define CHECK_THROWS_MATCHES( expr, exceptionType, matcher ) INTERNAL_CATCH_THROWS_MATCHES( "CHECK_THROWS_MATCHES", exceptionType, Catch::ResultDisposition::ContinueOnFailure, matcher, expr )
#endif // CATCH_CONFIG_DISABLE_MATCHERS
#define CHECK_NOTHROW( ... ) INTERNAL_CATCH_NO_THROW( "CHECK_NOTHROW", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
#define CHECK_THAT( arg, matcher ) INTERNAL_CHECK_THAT( "CHECK_THAT", matcher, Catch::ResultDisposition::ContinueOnFailure, arg )
#define REQUIRE_THAT( arg, matcher ) INTERNAL_CHECK_THAT( "REQUIRE_THAT", matcher, Catch::ResultDisposition::Normal, arg )
#endif // CATCH_CONFIG_DISABLE_MATCHERS
#define INFO( msg ) INTERNAL_CATCH_INFO( "INFO", msg )
#define WARN( msg ) INTERNAL_CATCH_MSG( "WARN", Catch::ResultWas::Warning, Catch::ResultDisposition::ContinueOnFailure, msg )
#define CAPTURE( ... ) INTERNAL_CATCH_CAPTURE( INTERNAL_CATCH_UNIQUE_NAME(capturer), "CAPTURE",__VA_ARGS__ )
#define TEST_CASE( ... ) INTERNAL_CATCH_TESTCASE( __VA_ARGS__ )
#define TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEST_CASE_METHOD( className, __VA_ARGS__ )
#define METHOD_AS_TEST_CASE( method, ... ) INTERNAL_CATCH_METHOD_AS_TEST_CASE( method, __VA_ARGS__ )
#define REGISTER_TEST_CASE( Function, ... ) INTERNAL_CATCH_REGISTER_TESTCASE( Function, __VA_ARGS__ )
#define SECTION( ... ) INTERNAL_CATCH_SECTION( __VA_ARGS__ )
#define DYNAMIC_SECTION( ... ) INTERNAL_CATCH_DYNAMIC_SECTION( __VA_ARGS__ )
#define FAIL( ... ) INTERNAL_CATCH_MSG( "FAIL", Catch::ResultWas::ExplicitFailure, Catch::ResultDisposition::Normal, __VA_ARGS__ )
#define FAIL_CHECK( ... ) INTERNAL_CATCH_MSG( "FAIL_CHECK", Catch::ResultWas::ExplicitFailure, Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
#define SUCCEED( ... ) INTERNAL_CATCH_MSG( "SUCCEED", Catch::ResultWas::Ok, Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
#define ANON_TEST_CASE() INTERNAL_CATCH_TESTCASE()
#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
#define TEMPLATE_TEST_CASE( ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE( __VA_ARGS__ )
#define TEMPLATE_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ )
#define TEMPLATE_PRODUCT_TEST_CASE( ... ) INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE( __VA_ARGS__ )
#define TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, __VA_ARGS__ )
#else
#define TEMPLATE_TEST_CASE( ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE( __VA_ARGS__ ) )
#define TEMPLATE_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ ) )
#define TEMPLATE_PRODUCT_TEST_CASE( ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE( __VA_ARGS__ ) )
#define TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, __VA_ARGS__ ) )
#endif
#if !defined(CATCH_CONFIG_RUNTIME_STATIC_REQUIRE)
#define STATIC_REQUIRE( ... ) static_assert( __VA_ARGS__, #__VA_ARGS__ ); SUCCEED( #__VA_ARGS__ )
#define STATIC_REQUIRE_FALSE( ... ) static_assert( !(__VA_ARGS__), "!(" #__VA_ARGS__ ")" ); SUCCEED( "!(" #__VA_ARGS__ ")" )
#else
#define STATIC_REQUIRE( ... ) REQUIRE( __VA_ARGS__ )
#define STATIC_REQUIRE_FALSE( ... ) REQUIRE_FALSE( __VA_ARGS__ )
#endif
#endif
#define CATCH_TRANSLATE_EXCEPTION( signature ) INTERNAL_CATCH_TRANSLATE_EXCEPTION( signature )
// "BDD-style" convenience wrappers
#define SCENARIO( ... ) TEST_CASE( "Scenario: " __VA_ARGS__ )
#define SCENARIO_METHOD( className, ... ) INTERNAL_CATCH_TEST_CASE_METHOD( className, "Scenario: " __VA_ARGS__ )
#define GIVEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " Given: " << desc )
#define AND_GIVEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( "And given: " << desc )
#define WHEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " When: " << desc )
#define AND_WHEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " And when: " << desc )
#define THEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " Then: " << desc )
#define AND_THEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " And: " << desc )
using Catch::Detail::Approx;
#else // CATCH_CONFIG_DISABLE
//////
// If this config identifier is defined then all CATCH macros are prefixed with CATCH_
#ifdef CATCH_CONFIG_PREFIX_ALL
#define CATCH_REQUIRE( ... ) (void)(0)
#define CATCH_REQUIRE_FALSE( ... ) (void)(0)
#define CATCH_REQUIRE_THROWS( ... ) (void)(0)
#define CATCH_REQUIRE_THROWS_AS( expr, exceptionType ) (void)(0)
#define CATCH_REQUIRE_THROWS_WITH( expr, matcher ) (void)(0)
#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
#define CATCH_REQUIRE_THROWS_MATCHES( expr, exceptionType, matcher ) (void)(0)
#endif// CATCH_CONFIG_DISABLE_MATCHERS
#define CATCH_REQUIRE_NOTHROW( ... ) (void)(0)
#define CATCH_CHECK( ... ) (void)(0)
#define CATCH_CHECK_FALSE( ... ) (void)(0)
#define CATCH_CHECKED_IF( ... ) if (__VA_ARGS__)
#define CATCH_CHECKED_ELSE( ... ) if (!(__VA_ARGS__))
#define CATCH_CHECK_NOFAIL( ... ) (void)(0)
#define CATCH_CHECK_THROWS( ... ) (void)(0)
#define CATCH_CHECK_THROWS_AS( expr, exceptionType ) (void)(0)
#define CATCH_CHECK_THROWS_WITH( expr, matcher ) (void)(0)
#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
#define CATCH_CHECK_THROWS_MATCHES( expr, exceptionType, matcher ) (void)(0)
#endif // CATCH_CONFIG_DISABLE_MATCHERS
#define CATCH_CHECK_NOTHROW( ... ) (void)(0)
#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
#define CATCH_CHECK_THAT( arg, matcher ) (void)(0)
#define CATCH_REQUIRE_THAT( arg, matcher ) (void)(0)
#endif // CATCH_CONFIG_DISABLE_MATCHERS
#define CATCH_INFO( msg ) (void)(0)
#define CATCH_WARN( msg ) (void)(0)
#define CATCH_CAPTURE( msg ) (void)(0)
#define CATCH_TEST_CASE( ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ))
#define CATCH_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ))
#define CATCH_METHOD_AS_TEST_CASE( method, ... )
#define CATCH_REGISTER_TEST_CASE( Function, ... ) (void)(0)
#define CATCH_SECTION( ... )
#define CATCH_DYNAMIC_SECTION( ... )
#define CATCH_FAIL( ... ) (void)(0)
#define CATCH_FAIL_CHECK( ... ) (void)(0)
#define CATCH_SUCCEED( ... ) (void)(0)
#define CATCH_ANON_TEST_CASE() INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ))
#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
#define CATCH_TEMPLATE_TEST_CASE( ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ) )
#define CATCH_TEMPLATE_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), className )
#define CATCH_TEMPLATE_PRODUCT_TEST_CASE( ... ) CATCH_TEMPLATE_TEST_CASE( __VA_ARGS__ )
#define CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, ... ) CATCH_TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ )
#else
#define CATCH_TEMPLATE_TEST_CASE( ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ) ) )
#define CATCH_TEMPLATE_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), className ) )
#define CATCH_TEMPLATE_PRODUCT_TEST_CASE( ... ) CATCH_TEMPLATE_TEST_CASE( __VA_ARGS__ )
#define CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, ... ) CATCH_TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ )
#endif
// "BDD-style" convenience wrappers
#define CATCH_SCENARIO( ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ))
#define CATCH_SCENARIO_METHOD( className, ... ) INTERNAL_CATCH_TESTCASE_METHOD_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ), className )
#define CATCH_GIVEN( desc )
#define CATCH_AND_GIVEN( desc )
#define CATCH_WHEN( desc )
#define CATCH_AND_WHEN( desc )
#define CATCH_THEN( desc )
#define CATCH_AND_THEN( desc )
#define CATCH_STATIC_REQUIRE( ... ) (void)(0)
#define CATCH_STATIC_REQUIRE_FALSE( ... ) (void)(0)
// If CATCH_CONFIG_PREFIX_ALL is not defined then the CATCH_ prefix is not required
#else
#define REQUIRE( ... ) (void)(0)
#define REQUIRE_FALSE( ... ) (void)(0)
#define REQUIRE_THROWS( ... ) (void)(0)
#define REQUIRE_THROWS_AS( expr, exceptionType ) (void)(0)
#define REQUIRE_THROWS_WITH( expr, matcher ) (void)(0)
#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
#define REQUIRE_THROWS_MATCHES( expr, exceptionType, matcher ) (void)(0)
#endif // CATCH_CONFIG_DISABLE_MATCHERS
#define REQUIRE_NOTHROW( ... ) (void)(0)
#define CHECK( ... ) (void)(0)
#define CHECK_FALSE( ... ) (void)(0)
#define CHECKED_IF( ... ) if (__VA_ARGS__)
#define CHECKED_ELSE( ... ) if (!(__VA_ARGS__))
#define CHECK_NOFAIL( ... ) (void)(0)
#define CHECK_THROWS( ... ) (void)(0)
#define CHECK_THROWS_AS( expr, exceptionType ) (void)(0)
#define CHECK_THROWS_WITH( expr, matcher ) (void)(0)
#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
#define CHECK_THROWS_MATCHES( expr, exceptionType, matcher ) (void)(0)
#endif // CATCH_CONFIG_DISABLE_MATCHERS
#define CHECK_NOTHROW( ... ) (void)(0)
#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
#define CHECK_THAT( arg, matcher ) (void)(0)
#define REQUIRE_THAT( arg, matcher ) (void)(0)
#endif // CATCH_CONFIG_DISABLE_MATCHERS
#define INFO( msg ) (void)(0)
#define WARN( msg ) (void)(0)
#define CAPTURE( msg ) (void)(0)
#define TEST_CASE( ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ))
#define TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ))
#define METHOD_AS_TEST_CASE( method, ... )
#define REGISTER_TEST_CASE( Function, ... ) (void)(0)
#define SECTION( ... )
#define DYNAMIC_SECTION( ... )
#define FAIL( ... ) (void)(0)
#define FAIL_CHECK( ... ) (void)(0)
#define SUCCEED( ... ) (void)(0)
#define ANON_TEST_CASE() INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ))
#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
#define TEMPLATE_TEST_CASE( ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ) )
#define TEMPLATE_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), className )
#define TEMPLATE_PRODUCT_TEST_CASE( ... ) TEMPLATE_TEST_CASE( __VA_ARGS__ )
#define TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, ... ) TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ )
#else
#define TEMPLATE_TEST_CASE( ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ) ) )
#define TEMPLATE_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), className ) )
#define TEMPLATE_PRODUCT_TEST_CASE( ... ) TEMPLATE_TEST_CASE( __VA_ARGS__ )
#define TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, ... ) TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ )
#endif
#define STATIC_REQUIRE( ... ) (void)(0)
#define STATIC_REQUIRE_FALSE( ... ) (void)(0)
#endif
#define CATCH_TRANSLATE_EXCEPTION( signature ) INTERNAL_CATCH_TRANSLATE_EXCEPTION_NO_REG( INTERNAL_CATCH_UNIQUE_NAME( catch_internal_ExceptionTranslator ), signature )
// "BDD-style" convenience wrappers
#define SCENARIO( ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ) )
#define SCENARIO_METHOD( className, ... ) INTERNAL_CATCH_TESTCASE_METHOD_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ), className )
#define GIVEN( desc )
#define AND_GIVEN( desc )
#define WHEN( desc )
#define AND_WHEN( desc )
#define THEN( desc )
#define AND_THEN( desc )
using Catch::Detail::Approx;
#endif
#endif // ! CATCH_CONFIG_IMPL_ONLY
// start catch_reenable_warnings.h
#ifdef __clang__
# ifdef __ICC // icpc defines the __clang__ macro
# pragma warning(pop)
# else
# pragma clang diagnostic pop
# endif
#elif defined __GNUC__
# pragma GCC diagnostic pop
#endif
// end catch_reenable_warnings.h
// end catch.hpp
#endif // TWOBLUECUBES_SINGLE_INCLUDE_CATCH_HPP_INCLUDED
| [
"kevinkosta@Kevins-MacBook-Pro-2.local"
] | kevinkosta@Kevins-MacBook-Pro-2.local |
f4091d54b549689022183ab1192140b3df88b2b2 | d002ed401cba924074e021d22347b84334a02b0f | /export/windows/obj/src/lime/net/_HTTPRequest_Bytes.cpp | 36c46feec0f11403511087f6e9bdf9970227c889 | [] | no_license | IADenner/LD47 | 63f6beda87424ba7e0e129848ee190c1eb1da54d | 340856f1d77983da0e7f331b467609c45587f5d1 | refs/heads/master | 2022-12-29T13:01:46.789276 | 2020-10-05T22:04:42 | 2020-10-05T22:04:42 | 301,550,551 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 6,034 | cpp | // Generated by Haxe 4.1.2
#include <hxcpp.h>
#ifndef INCLUDED_haxe_io_Bytes
#include <haxe/io/Bytes.h>
#endif
#ifndef INCLUDED_lime__internal_backend_native_NativeHTTPRequest
#include <lime/_internal/backend/native/NativeHTTPRequest.h>
#endif
#ifndef INCLUDED_lime_app_Future
#include <lime/app/Future.h>
#endif
#ifndef INCLUDED_lime_app_Promise
#include <lime/app/Promise.h>
#endif
#ifndef INCLUDED_lime_net__HTTPRequest_AbstractHTTPRequest
#include <lime/net/_HTTPRequest/AbstractHTTPRequest.h>
#endif
#ifndef INCLUDED_lime_net__HTTPRequest_Bytes
#include <lime/net/_HTTPRequest_Bytes.h>
#endif
#ifndef INCLUDED_lime_net__IHTTPRequest
#include <lime/net/_IHTTPRequest.h>
#endif
HX_DEFINE_STACK_FRAME(_hx_pos_d0a88ab7a13f72d7_88_new,"lime.net._HTTPRequest_Bytes","new",0xc45547d0,"lime.net._HTTPRequest_Bytes.new","lime/net/HTTPRequest.hx",88,0x339db723)
HX_LOCAL_STACK_FRAME(_hx_pos_d0a88ab7a13f72d7_93_fromBytes,"lime.net._HTTPRequest_Bytes","fromBytes",0x58799e11,"lime.net._HTTPRequest_Bytes.fromBytes","lime/net/HTTPRequest.hx",93,0x339db723)
HX_LOCAL_STACK_FRAME(_hx_pos_d0a88ab7a13f72d7_110_load,"lime.net._HTTPRequest_Bytes","load",0x04fea4b6,"lime.net._HTTPRequest_Bytes.load","lime/net/HTTPRequest.hx",110,0x339db723)
HX_LOCAL_STACK_FRAME(_hx_pos_d0a88ab7a13f72d7_97_load,"lime.net._HTTPRequest_Bytes","load",0x04fea4b6,"lime.net._HTTPRequest_Bytes.load","lime/net/HTTPRequest.hx",97,0x339db723)
namespace lime{
namespace net{
void _HTTPRequest_Bytes_obj::__construct(::String uri){
HX_STACKFRAME(&_hx_pos_d0a88ab7a13f72d7_88_new)
HXDLIN( 88) super::__construct(uri);
}
Dynamic _HTTPRequest_Bytes_obj::__CreateEmpty() { return new _HTTPRequest_Bytes_obj; }
void *_HTTPRequest_Bytes_obj::_hx_vtable = 0;
Dynamic _HTTPRequest_Bytes_obj::__Create(::hx::DynamicArray inArgs)
{
::hx::ObjectPtr< _HTTPRequest_Bytes_obj > _hx_result = new _HTTPRequest_Bytes_obj();
_hx_result->__construct(inArgs[0]);
return _hx_result;
}
bool _HTTPRequest_Bytes_obj::_hx_isInstanceOf(int inClassId) {
if (inClassId<=(int)0x09b24b15) {
return inClassId==(int)0x00000001 || inClassId==(int)0x09b24b15;
} else {
return inClassId==(int)0x7f4deb50;
}
}
::Dynamic _HTTPRequest_Bytes_obj::fromBytes( ::haxe::io::Bytes bytes){
HX_STACKFRAME(&_hx_pos_d0a88ab7a13f72d7_93_fromBytes)
HXDLIN( 93) return bytes;
}
HX_DEFINE_DYNAMIC_FUNC1(_HTTPRequest_Bytes_obj,fromBytes,return )
::lime::app::Future _HTTPRequest_Bytes_obj::load(::String uri){
HX_BEGIN_LOCAL_FUNC_S2(::hx::LocalFunc,_hx_Closure_0, ::lime::net::_HTTPRequest_Bytes,_gthis, ::lime::app::Promise,promise) HXARGC(1)
void _hx_run( ::haxe::io::Bytes bytes){
HX_GC_STACKFRAME(&_hx_pos_d0a88ab7a13f72d7_110_load)
HXLINE( 111) _gthis->responseData = _gthis->fromBytes(bytes);
HXLINE( 112) promise->complete(_gthis->responseData);
}
HX_END_LOCAL_FUNC1((void))
HX_GC_STACKFRAME(&_hx_pos_d0a88ab7a13f72d7_97_load)
HXLINE( 96) ::lime::net::_HTTPRequest_Bytes _gthis = ::hx::ObjectPtr<OBJ_>(this);
HXLINE( 98) if (::hx::IsNotNull( uri )) {
HXLINE( 100) this->uri = uri;
}
HXLINE( 103) ::lime::app::Promise promise = ::lime::app::Promise_obj::__alloc( HX_CTX );
HXLINE( 104) ::lime::app::Future future = this->_hx___backend->loadData(this->uri,null());
HXLINE( 106) future->onProgress(promise->progress_dyn());
HXLINE( 107) future->onError(promise->error_dyn());
HXLINE( 109) future->onComplete( ::Dynamic(new _hx_Closure_0(_gthis,promise)));
HXLINE( 115) return promise->future;
}
::hx::ObjectPtr< _HTTPRequest_Bytes_obj > _HTTPRequest_Bytes_obj::__new(::String uri) {
::hx::ObjectPtr< _HTTPRequest_Bytes_obj > __this = new _HTTPRequest_Bytes_obj();
__this->__construct(uri);
return __this;
}
::hx::ObjectPtr< _HTTPRequest_Bytes_obj > _HTTPRequest_Bytes_obj::__alloc(::hx::Ctx *_hx_ctx,::String uri) {
_HTTPRequest_Bytes_obj *__this = (_HTTPRequest_Bytes_obj*)(::hx::Ctx::alloc(_hx_ctx, sizeof(_HTTPRequest_Bytes_obj), true, "lime.net._HTTPRequest_Bytes"));
*(void **)__this = _HTTPRequest_Bytes_obj::_hx_vtable;
__this->__construct(uri);
return __this;
}
_HTTPRequest_Bytes_obj::_HTTPRequest_Bytes_obj()
{
}
::hx::Val _HTTPRequest_Bytes_obj::__Field(const ::String &inName,::hx::PropertyAccess inCallProp)
{
switch(inName.length) {
case 4:
if (HX_FIELD_EQ(inName,"load") ) { return ::hx::Val( load_dyn() ); }
break;
case 9:
if (HX_FIELD_EQ(inName,"fromBytes") ) { return ::hx::Val( fromBytes_dyn() ); }
}
return super::__Field(inName,inCallProp);
}
#ifdef HXCPP_SCRIPTABLE
static ::hx::StorageInfo *_HTTPRequest_Bytes_obj_sMemberStorageInfo = 0;
static ::hx::StaticInfo *_HTTPRequest_Bytes_obj_sStaticStorageInfo = 0;
#endif
static ::String _HTTPRequest_Bytes_obj_sMemberFields[] = {
HX_("fromBytes",a1,f2,20,72),
HX_("load",26,9a,b7,47),
::String(null()) };
::hx::Class _HTTPRequest_Bytes_obj::__mClass;
void _HTTPRequest_Bytes_obj::__register()
{
_HTTPRequest_Bytes_obj _hx_dummy;
_HTTPRequest_Bytes_obj::_hx_vtable = *(void **)&_hx_dummy;
::hx::Static(__mClass) = new ::hx::Class_obj();
__mClass->mName = HX_("lime.net._HTTPRequest_Bytes",de,5f,09,09);
__mClass->mSuper = &super::__SGetClass();
__mClass->mConstructEmpty = &__CreateEmpty;
__mClass->mConstructArgs = &__Create;
__mClass->mGetStaticField = &::hx::Class_obj::GetNoStaticField;
__mClass->mSetStaticField = &::hx::Class_obj::SetNoStaticField;
__mClass->mStatics = ::hx::Class_obj::dupFunctions(0 /* sStaticFields */);
__mClass->mMembers = ::hx::Class_obj::dupFunctions(_HTTPRequest_Bytes_obj_sMemberFields);
__mClass->mCanCast = ::hx::TCanCast< _HTTPRequest_Bytes_obj >;
#ifdef HXCPP_SCRIPTABLE
__mClass->mMemberStorageInfo = _HTTPRequest_Bytes_obj_sMemberStorageInfo;
#endif
#ifdef HXCPP_SCRIPTABLE
__mClass->mStaticStorageInfo = _HTTPRequest_Bytes_obj_sStaticStorageInfo;
#endif
::hx::_hx_RegisterClass(__mClass->mName, __mClass);
}
} // end namespace lime
} // end namespace net
| [
"theiadstudios@gmail.com"
] | theiadstudios@gmail.com |
1c4ff16ab7918c891ff75d7c398d7e3197391108 | 90047daeb462598a924d76ddf4288e832e86417c | /base/task_scheduler/task_unittest.cc | fb076d761bea261f68d378bc428aa373c7290bc8 | [
"BSD-3-Clause"
] | permissive | massbrowser/android | 99b8c21fa4552a13c06bbedd0f9c88dd4a4ad080 | a9c4371682c9443d6e1d66005d4db61a24a9617c | refs/heads/master | 2022-11-04T21:15:50.656802 | 2017-06-08T12:31:39 | 2017-06-08T12:31:39 | 93,747,579 | 2 | 2 | BSD-3-Clause | 2022-10-31T10:34:25 | 2017-06-08T12:36:07 | null | UTF-8 | C++ | false | false | 2,692 | cc | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/task_scheduler/task.h"
#include "base/bind.h"
#include "base/location.h"
#include "base/task_scheduler/task_traits.h"
#include "base/time/time.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace base {
namespace internal {
// Verify that the shutdown behavior of a BLOCK_SHUTDOWN delayed task is
// adjusted to SKIP_ON_SHUTDOWN. The shutown behavior of other delayed tasks
// should not change.
TEST(TaskSchedulerTaskTest, ShutdownBehaviorChangeWithDelay) {
Task continue_on_shutdown(FROM_HERE, BindOnce(&DoNothing),
TaskTraits().WithShutdownBehavior(
TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN),
TimeDelta::FromSeconds(1));
EXPECT_EQ(TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN,
continue_on_shutdown.traits.shutdown_behavior());
Task skip_on_shutdown(
FROM_HERE, BindOnce(&DoNothing),
TaskTraits().WithShutdownBehavior(TaskShutdownBehavior::SKIP_ON_SHUTDOWN),
TimeDelta::FromSeconds(1));
EXPECT_EQ(TaskShutdownBehavior::SKIP_ON_SHUTDOWN,
skip_on_shutdown.traits.shutdown_behavior());
Task block_shutdown(
FROM_HERE, BindOnce(&DoNothing),
TaskTraits().WithShutdownBehavior(TaskShutdownBehavior::BLOCK_SHUTDOWN),
TimeDelta::FromSeconds(1));
EXPECT_EQ(TaskShutdownBehavior::SKIP_ON_SHUTDOWN,
block_shutdown.traits.shutdown_behavior());
}
// Verify that the shutdown behavior of undelayed tasks is not adjusted.
TEST(TaskSchedulerTaskTest, NoShutdownBehaviorChangeNoDelay) {
Task continue_on_shutdown(FROM_HERE, BindOnce(&DoNothing),
TaskTraits().WithShutdownBehavior(
TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN),
TimeDelta());
EXPECT_EQ(TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN,
continue_on_shutdown.traits.shutdown_behavior());
Task skip_on_shutdown(
FROM_HERE, BindOnce(&DoNothing),
TaskTraits().WithShutdownBehavior(TaskShutdownBehavior::SKIP_ON_SHUTDOWN),
TimeDelta());
EXPECT_EQ(TaskShutdownBehavior::SKIP_ON_SHUTDOWN,
skip_on_shutdown.traits.shutdown_behavior());
Task block_shutdown(
FROM_HERE, BindOnce(&DoNothing),
TaskTraits().WithShutdownBehavior(TaskShutdownBehavior::BLOCK_SHUTDOWN),
TimeDelta());
EXPECT_EQ(TaskShutdownBehavior::BLOCK_SHUTDOWN,
block_shutdown.traits.shutdown_behavior());
}
} // namespace internal
} // namespace base
| [
"xElvis89x@gmail.com"
] | xElvis89x@gmail.com |
1268ac2c24e30d3cffa9b03a0070bfc96d0a916e | b2f17cca26922b7fc6268cca284b6cf6e85c602c | /src/Script/xtal_manager.cpp | 16baec5ecac5b356018f7d5b52b8eca3bca6b5e4 | [
"MIT"
] | permissive | katze7514/ManaGameFramework | e3e0e8699d95bef1258f5f0e8a5950b55e8f2eb0 | f79c6032cd9b3a522a7560272801a51ced2a6b83 | refs/heads/master | 2020-04-28T22:42:30.208249 | 2017-01-31T15:11:30 | 2017-01-31T15:11:30 | 41,914,237 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,532 | cpp | #include "../mana_common.h"
#include <xtal_lib/xtal_winthread.h>
#include <xtal_lib/xtal_chcode.h>
#include <xtal_lib/xtal_errormessage.h>
#include "xtal_lib.h"
#include "xtal_code.h"
#include "xtal_manager.h"
namespace mana{
namespace script{
xtal_manager::~xtal_manager()
{
fin();
}
void xtal_manager::init(const shared_ptr<resource_manager>& pResource)
{
logger::add_out_category("XTL");
pResource_ = pResource;
init_lib();
xtal::Setting setting;
setting.ch_code_lib = pCodeLib_;
setting.std_stream_lib = pStreamLib_;
setting.filesystem_lib = pFileSystemLib_;
setting.thread_lib = pThreadLib_;
xtal::initialize(setting);
xtal::bind_error_message();
init_bind();
bInit_ = true;
}
void xtal_manager::fin()
{
if(!bInit_) return;
mapCode_.clear();
fin_bind();
xtal::uninitialize();
safe_delete(pThreadLib_);
safe_delete(pFileSystemLib_);
safe_delete(pStreamLib_);
safe_delete(pCodeLib_);
bInit_ = false;
}
void xtal_manager::init_lib()
{
pCodeLib_ = new_ xtal::SJISChCodeLib();
pStreamLib_ = new_ logger_stream_lib();
pFileSystemLib_ = nullptr;
pThreadLib_ = new_ xtal::WinThreadLib();
}
void xtal_manager::init_bind()
{
xtal::lib()->def(Xid(xtal_manager), xtal::cpp_class<xtal_manager>());
xtal::lib()->def(Xid(manager), xtal::SmartPtr<xtal_manager>(this));
}
void xtal_manager::fin_bind()
{
xtal::cpp_class<xtal_manager>()->object_orphan();
}
void xtal_manager::exec()
{
xtal::gc();
}
//////////////////////////////////
const shared_ptr<xtal_code>& xtal_manager::create_code(const string_fw& sID)
{
if(sID.get().empty())
{
logger::warnln("[xtal_manager]IDが空です。");
return std::move(shared_ptr<xtal_code>());
}
auto code = make_shared<xtal_code>();
code->set_id(sID);
code->pMgr_ = this;
auto r = mapCode_.emplace(sID, code);
if(!r.second)
{
logger::warnln("[xtal_manager]コード情報を追加することができませんでした。");
return std::move(shared_ptr<xtal_code>());
}
return r.first->second;
}
void xtal_manager::destroy_code(const string_fw& sID)
{
auto it = mapCode_.find(sID);
if(it==mapCode_.end()) return;
it->second->call_bind(false);
mapCode_.erase(it);
}
const shared_ptr<xtal_code>& xtal_manager::code(const string_fw& sID)
{
auto it = mapCode_.find(sID);
if(it!=mapCode_.end()) return it->second;
return std::move(shared_ptr<xtal_code>());
}
} // namespace script end
} // namespace mana end
XTAL_PREBIND(mana::script::xtal_manager)
{
Xdef_ctor0();
}
XTAL_BIND(mana::script::xtal_manager)
{
}
| [
"katze.s2k@gmail.com"
] | katze.s2k@gmail.com |
661ffda6c50388e81844b52da4dda9f6d9531058 | e1ba0eb26a14be38c1b2fdf0902417d2552be913 | /REM/Tool/IDA 7.3/plugins/hexrays_sdk/plugins/vds14/hexrays_sample14.cpp | 309510a74eca15d21c8e16174728b1eb7c9c4266 | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | dodieboy/Np_class | db7fb9d4f4eb0fe4d5bb38dc05e69a9cbd485cf0 | 5c6e517599a20658ee23bdbdd76f197f2f4a1b63 | refs/heads/master | 2022-11-15T10:29:30.587639 | 2022-06-24T12:25:45 | 2022-06-24T12:25:45 | 181,395,891 | 0 | 2 | MIT | 2020-05-30T06:22:17 | 2019-04-15T02:07:40 | C# | UTF-8 | C++ | false | false | 11,183 | cpp | /*
* Hex-Rays Decompiler project
* Copyright (c) 2007-2019 by Hex-Rays, support@hex-rays.com
* ALL RIGHTS RESERVED.
*
* Sample plugin for Hex-Rays Decompiler.
* It shows xrefs to the called function as the decompiler output.
* All calls are displayed with the call arguments.
* Usage: Shift-X or Jump, Jump to call xrefs...
*/
#include <hexrays.hpp>
// Hex-Rays API pointer
hexdsp_t *hexdsp = NULL;
struct xref_info_t
{
qstring text;
ea_t ea;
char xref_type;
};
DECLARE_TYPE_AS_MOVABLE(xref_info_t);
typedef qvector<xref_info_t> xrefvec_t;
//-------------------------------------------------------------------------
// go backwards until the beginning of the basic block
static ea_t find_bb_start(ea_t call_ea)
{
ea_t ea = call_ea;
while ( true )
{
flags_t F = get_flags(ea);
if ( !is_flow(F) || has_xref(F) )
break;
insn_t tmp;
ea_t prev = decode_prev_insn(&tmp, ea);
if ( prev == BADADDR )
break;
ea = prev;
}
return ea;
}
//-------------------------------------------------------------------------
static bool determine_decompilation_range(
mba_ranges_t *mbr,
ea_t call_ea,
const tinfo_t &tif)
{
func_t *pfn = get_func(call_ea);
if ( pfn != NULL && calc_func_size(pfn) <= 1024 )
{ // a small function, decompile it entirely
mbr->pfn = pfn;
return true;
}
ea_t minea = call_ea;
ea_t maxea = call_ea;
eavec_t addrs;
if ( !get_arg_addrs(&addrs, call_ea) )
{
apply_callee_tinfo(call_ea, tif);
if ( !get_arg_addrs(&addrs, call_ea) )
minea = find_bb_start(call_ea);
}
for ( size_t i=0; i < addrs.size(); i++ )
{
if ( minea > addrs[i] )
minea = addrs[i];
if ( maxea < addrs[i] )
maxea = addrs[i];
}
range_t &r = mbr->ranges.push_back();
r.start_ea = minea;
r.end_ea = get_item_end(maxea);
return true;
}
//-------------------------------------------------------------------------
// decompile the snippet
static bool generate_call_line(
qstring *out,
bool *canceled,
ea_t call_ea,
const tinfo_t &tif)
{
mba_ranges_t mbr;
if ( !determine_decompilation_range(&mbr, call_ea, tif) )
return false;
hexrays_failure_t hf;
cfuncptr_t func = decompile(mbr, &hf, DECOMP_NO_WAIT);
if ( func == NULL )
{
if ( hf.code == MERR_CANCELED )
*canceled = true;
return false;
}
citem_t *call = func->body.find_closest_addr(call_ea);
if ( call == NULL || call->ea != call_ea )
return false;
const strvec_t &sv = func->get_pseudocode();
int y;
if ( !func->find_item_coords(call, NULL, &y) )
return false;
*out = sv[y].line;
tag_remove(out);
// indentation does not convey much info, so remove the leading spaces
out->ltrim();
return true;
}
//-------------------------------------------------------------------------
struct xref_chooser_t : public chooser_t
{
protected:
ea_t func_ea;
const xrefvec_t &list;
static const int widths_[];
static const char *const header_[];
enum { ICON = 55 };
public:
xref_chooser_t(uint32 flags, ea_t func_ea, const xrefvec_t &list, const char *title);
ea_t choose_modal(ea_t xrefpos_ea);
virtual size_t idaapi get_count() const { return list.size(); }
virtual void idaapi get_row(
qstrvec_t *cols,
int *icon_,
chooser_item_attrs_t *attrs,
size_t n) const;
// calculate the location of the item,
// item_data is a pointer to a xref position
virtual ssize_t idaapi get_item_index(const void *item_data) const;
protected:
static const char *direction_str(ea_t ea, ea_t refea)
{
return ea > refea ? "Up" : ea < refea ? "Down" : "";
}
static void get_xrefed_name(qstring *buf, ea_t ref);
xrefvec_t::const_iterator find(const xrefpos_t &pos) const
{
xrefvec_t::const_iterator it = list.begin();
xrefvec_t::const_iterator end = list.end();
for ( ; it != end; ++it )
{
const xref_info_t &cur = *it;
if ( cur.ea == pos.ea && cur.xref_type == pos.type )
break;
}
return it;
}
};
//-------------------------------------------------------------------------
const int xref_chooser_t::widths_[] =
{
6, // Direction
1, // Type
15, // Address
50, // Text
};
const char *const xref_chooser_t::header_[] =
{
"Direction", // 0
"Type", // 1
"Address", // 2
"Text", // 3
};
//-------------------------------------------------------------------------
inline xref_chooser_t::xref_chooser_t(
uint32 flags_,
ea_t func_ea_,
const xrefvec_t &list_,
const char *title_)
: chooser_t(flags_,
qnumber(widths_), widths_, header_,
title_),
func_ea(func_ea_),
list(list_)
{
CASSERT(qnumber(widths_) == qnumber(header_));
icon = ICON;
deflt_col = 2;
}
//-------------------------------------------------------------------------
inline ea_t xref_chooser_t::choose_modal(ea_t xrefpos_ea)
{
if ( list.empty() )
{
warning("There are no %s", title);
return BADADDR;
}
xrefpos_t defpos;
get_xrefpos(&defpos, xrefpos_ea);
ssize_t n = ::choose(this, &defpos);
if ( n < 0 || n >= list.size() )
return BADADDR;
const xref_info_t &entry = list[n];
if ( n == 0 )
{
del_xrefpos(xrefpos_ea);
}
else
{
xrefpos_t xp(entry.ea, entry.xref_type);
set_xrefpos(xrefpos_ea, &xp);
}
return entry.ea;
}
//-------------------------------------------------------------------------
void idaapi xref_chooser_t::get_row(
qstrvec_t *cols_,
int *,
chooser_item_attrs_t *,
size_t n) const
{
const xref_info_t &entry = list[n];
qstrvec_t &cols = *cols_;
cols[0] = direction_str(func_ea, entry.ea);
cols[1].sprnt("%c", xrefchar(entry.xref_type));
get_xrefed_name(&cols[2], entry.ea);
cols[3] = entry.text;
}
//------------------------------------------------------------------------
ssize_t idaapi xref_chooser_t::get_item_index(const void *item_data) const
{
if ( list.empty() )
return NO_SELECTION;
// `item_data` is a pointer to a xref position
xrefpos_t item_pos = *(const xrefpos_t *)item_data;
if ( !item_pos.is_valid() )
return 0; // first item by default
xrefvec_t::const_iterator it = find(item_pos);
if ( it == list.end() )
return 0; // first item by default
return it - list.begin();
}
//-------------------------------------------------------------------------
void xref_chooser_t::get_xrefed_name(qstring *buf, ea_t ref)
{
int f2 = GNCN_NOCOLOR; //-V688
if ( !inf_show_xref_fncoff() )
f2 |= GNCN_NOFUNC;
if ( !inf_show_xref_seg() )
f2 |= GNCN_NOSEG;
get_nice_colored_name(buf, ref, f2);
}
//-------------------------------------------------------------------------
static bool jump_to_call(ea_t func_ea)
{
// Retrieve all xrefs to the function
xrefblk_t xb;
xrefvec_t list;
for ( bool ok = xb.first_to(func_ea, 0); ok; ok=xb.next_to() )
{
xref_info_t &entry = list.push_back();
entry.ea = xb.from;
entry.xref_type = xb.type;
}
// Generate decompiler output or disassembly output for each xref
tinfo_t tif;
if ( get_tinfo(&tif, func_ea) )
guess_tinfo(&tif, func_ea);
show_wait_box("Decompiling...");
bool canceled = false;
size_t n = list.size();
for ( size_t i=0; i < n; i++ )
{
xref_info_t &entry = list[i];
bool success = false;
if ( entry.xref_type >= fl_CF && !canceled )
{
replace_wait_box("Decompiling %a (%" FMT_Z "/%" FMT_Z ")...", entry.ea, i, n);
success = generate_call_line(&entry.text, &canceled, entry.ea, tif);
}
if ( !success )
generate_disasm_line(&entry.text, entry.ea, GENDSM_REMOVE_TAGS);
}
hide_wait_box();
// Display the xref chooser
qstring title;
get_short_name(&title, func_ea);
title.insert("xrefs to ");
xref_chooser_t xrefch(CH_MODAL | CH_KEEP, func_ea, list, title.c_str());
ea_t target = xrefch.choose_modal(func_ea);
if ( target == BADADDR )
return false;
// Jump to the seleected target
return jumpto(target);
}
//-------------------------------------------------------------------------
struct func_xrefs_t : public action_handler_t
{
virtual int idaapi activate(action_activation_ctx_t *ctx)
{
ea_t ea = ctx->cur_value;
flags_t F = get_flags(ea);
if ( !is_func(F) )
{ // we are not staying on a call.
// check if we stay on the entry point of a function
ea = ctx->cur_ea;
F = get_flags(ea);
if ( !is_func(F) )
ea = BADADDR;
}
if ( ea != BADADDR )
return jump_to_call(ea);
return process_ui_action("JumpOpXref"); // fallback to the built-in action
}
virtual action_state_t idaapi update(action_update_ctx_t *ctx)
{
switch ( ctx->widget_type )
{
case BWN_EXPORTS: // exports
case BWN_IMPORTS: // imports
case BWN_NAMES: // names
case BWN_FUNCS: // functions
case BWN_DISASM: // disassembly views
case BWN_DUMP: // hex dumps
case BWN_PSEUDOCODE: // decompiler view
return AST_ENABLE_FOR_WIDGET;
}
return AST_DISABLE_FOR_WIDGET;
}
};
static func_xrefs_t func_xrefs_ah;
static const char ah_name[] = "vds14:call_xrefs";
static const action_desc_t xref_desc = ACTION_DESC_LITERAL(
ah_name,
"Jump to call x~r~efs",
&func_xrefs_ah,
"Shift-X",
NULL,
-1);
//--------------------------------------------------------------------------
int idaapi init(void)
{
if ( !init_hexrays_plugin() )
return PLUGIN_SKIP; // no decompiler
const char *hxver = get_hexrays_version();
msg("Hex-rays version %s has been detected, %s ready to use\n", hxver, PLUGIN.wanted_name);
register_action(xref_desc);
attach_action_to_menu("Jump/Jump to func", ah_name, SETMENU_APP);
return PLUGIN_KEEP;
}
//--------------------------------------------------------------------------
void idaapi term(void)
{
if ( hexdsp != NULL )
{
unregister_action(ah_name);
term_hexrays_plugin();
}
}
//--------------------------------------------------------------------------
bool idaapi run(size_t)
{
return false;
}
//--------------------------------------------------------------------------
static const char comment[] = "Sample14 plugin for Hex-Rays decompiler";
//--------------------------------------------------------------------------
//
// PLUGIN DESCRIPTION BLOCK
//
//--------------------------------------------------------------------------
plugin_t PLUGIN =
{
IDP_INTERFACE_VERSION,
PLUGIN_HIDE, // plugin flags
init, // initialize
term, // terminate. this pointer may be NULL.
run, // invoke plugin
comment, // long comment about the plugin
// it could appear in the status line
// or as a hint
"", // multiline help about the plugin
"Call xrefs", // the preferred short name of the plugin
// (not visible because of PLUGIN_HIDE)
"" // the preferred hotkey to run the plugin
};
| [
"dodieboy@users.noreply.github.com"
] | dodieboy@users.noreply.github.com |
bea4a9598825f17d8b4df2f15de6cff71a2254b2 | dca653bb975528bd1b8ab2547f6ef4f48e15b7b7 | /tags/wxPy-2.8.11.0/src/gtk/window.cpp | bbedb09eece2245a8602078a15cfcad11805a12f | [] | no_license | czxxjtu/wxPython-1 | 51ca2f62ff6c01722e50742d1813f4be378c0517 | 6a7473c258ea4105f44e31d140ea5c0ae6bc46d8 | refs/heads/master | 2021-01-15T12:09:59.328778 | 2015-01-05T20:55:10 | 2015-01-05T20:55:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 135,666 | cpp | /////////////////////////////////////////////////////////////////////////////
// Name: src/gtk/window.cpp
// Purpose:
// Author: Robert Roebling
// Id: $Id$
// Copyright: (c) 1998 Robert Roebling, Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __VMS
#define XWarpPointer XWARPPOINTER
#endif
#include "wx/window.h"
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/app.h"
#include "wx/frame.h"
#include "wx/dcclient.h"
#include "wx/menu.h"
#include "wx/settings.h"
#include "wx/msgdlg.h"
#include "wx/textctrl.h"
#include "wx/radiobut.h"
#include "wx/toolbar.h"
#include "wx/combobox.h"
#include "wx/layout.h"
#include "wx/math.h"
#endif
#include "wx/dnd.h"
#include "wx/tooltip.h"
#include "wx/caret.h"
#include "wx/fontutil.h"
#include "wx/sysopt.h"
#ifdef __WXDEBUG__
#include "wx/thread.h"
#endif
#include <ctype.h>
// FIXME: Due to a hack we use GtkCombo in here, which is deprecated since gtk2.3.0
#include <gtk/gtkversion.h>
#if defined(GTK_DISABLE_DEPRECATED) && GTK_CHECK_VERSION(2,3,0)
#undef GTK_DISABLE_DEPRECATED
#include <gtk/gtkcombo.h>
#define GTK_DISABLE_DEPRECATED
#endif
#define USE_STYLE_SET_CALLBACK 1
#include "wx/gtk/private.h"
#include "wx/gtk/win_gtk.h"
#include <gdk/gdkkeysyms.h>
#include <gdk/gdkx.h>
#if !GTK_CHECK_VERSION(2,10,0)
// GTK+ can reliably detect Meta key state only since 2.10 when
// GDK_META_MASK was introduced -- there wasn't any way to detect it
// in older versions. wxGTK used GDK_MOD2_MASK for this purpose, but
// GDK_MOD2_MASK is documented as:
//
// the fifth modifier key (it depends on the modifier mapping of the X
// server which key is interpreted as this modifier)
//
// In other words, it isn't guaranteed to map to Meta. This is a real
// problem: it is common to map NumLock to it (in fact, it's an exception
// if the X server _doesn't_ use it for NumLock). So the old code caused
// wxKeyEvent::MetaDown() to always return true as long as NumLock was on
// on many systems, which broke all applications using
// wxKeyEvent::GetModifiers() to check modifiers state (see e.g. here:
// http://tinyurl.com/56lsk2).
//
// Because of this, it's better to not detect Meta key state at all than
// to detect it incorrectly. Hence the following #define, which causes
// m_metaDown to be always set to false.
#define GDK_META_MASK 0
#endif
//-----------------------------------------------------------------------------
// documentation on internals
//-----------------------------------------------------------------------------
/*
I have been asked several times about writing some documentation about
the GTK port of wxWidgets, especially its internal structures. Obviously,
you cannot understand wxGTK without knowing a little about the GTK, but
some more information about what the wxWindow, which is the base class
for all other window classes, does seems required as well.
I)
What does wxWindow do? It contains the common interface for the following
jobs of its descendants:
1) Define the rudimentary behaviour common to all window classes, such as
resizing, intercepting user input (so as to make it possible to use these
events for special purposes in a derived class), window names etc.
2) Provide the possibility to contain and manage children, if the derived
class is allowed to contain children, which holds true for those window
classes which do not display a native GTK widget. To name them, these
classes are wxPanel, wxScrolledWindow, wxDialog, wxFrame. The MDI frame-
work classes are a special case and are handled a bit differently from
the rest. The same holds true for the wxNotebook class.
3) Provide the possibility to draw into a client area of a window. This,
too, only holds true for classes that do not display a native GTK widget
as above.
4) Provide the entire mechanism for scrolling widgets. This actual inter-
face for this is usually in wxScrolledWindow, but the GTK implementation
is in this class.
5) A multitude of helper or extra methods for special purposes, such as
Drag'n'Drop, managing validators etc.
6) Display a border (sunken, raised, simple or none).
Normally one might expect, that one wxWidgets window would always correspond
to one GTK widget. Under GTK, there is no such all-round widget that has all
the functionality. Moreover, the GTK defines a client area as a different
widget from the actual widget you are handling. Last but not least some
special classes (e.g. wxFrame) handle different categories of widgets and
still have the possibility to draw something in the client area.
It was therefore required to write a special purpose GTK widget, that would
represent a client area in the sense of wxWidgets capable to do the jobs
2), 3) and 4). I have written this class and it resides in win_gtk.c of
this directory.
All windows must have a widget, with which they interact with other under-
lying GTK widgets. It is this widget, e.g. that has to be resized etc and
the wxWindow class has a member variable called m_widget which holds a
pointer to this widget. When the window class represents a GTK native widget,
this is (in most cases) the only GTK widget the class manages. E.g. the
wxStaticText class handles only a GtkLabel widget a pointer to which you
can find in m_widget (defined in wxWindow)
When the class has a client area for drawing into and for containing children
it has to handle the client area widget (of the type GtkPizza, defined in
win_gtk.c), but there could be any number of widgets, handled by a class
The common rule for all windows is only, that the widget that interacts with
the rest of GTK must be referenced in m_widget and all other widgets must be
children of this widget on the GTK level. The top-most widget, which also
represents the client area, must be in the m_wxwindow field and must be of
the type GtkPizza.
As I said, the window classes that display a GTK native widget only have
one widget, so in the case of e.g. the wxButton class m_widget holds a
pointer to a GtkButton widget. But windows with client areas (for drawing
and children) have a m_widget field that is a pointer to a GtkScrolled-
Window and a m_wxwindow field that is pointer to a GtkPizza and this
one is (in the GTK sense) a child of the GtkScrolledWindow.
If the m_wxwindow field is set, then all input to this widget is inter-
cepted and sent to the wxWidgets class. If not, all input to the widget
that gets pointed to by m_widget gets intercepted and sent to the class.
II)
The design of scrolling in wxWidgets is markedly different from that offered
by the GTK itself and therefore we cannot simply take it as it is. In GTK,
clicking on a scrollbar belonging to scrolled window will inevitably move
the window. In wxWidgets, the scrollbar will only emit an event, send this
to (normally) a wxScrolledWindow and that class will call ScrollWindow()
which actually moves the window and its sub-windows. Note that GtkPizza
memorizes how much it has been scrolled but that wxWidgets forgets this
so that the two coordinates systems have to be kept in synch. This is done
in various places using the pizza->xoffset and pizza->yoffset values.
III)
Singularly the most broken code in GTK is the code that is supposed to
inform subwindows (child windows) about new positions. Very often, duplicate
events are sent without changes in size or position, equally often no
events are sent at all (All this is due to a bug in the GtkContainer code
which got fixed in GTK 1.2.6). For that reason, wxGTK completely ignores
GTK's own system and it simply waits for size events for toplevel windows
and then iterates down the respective size events to all window. This has
the disadvantage that windows might get size events before the GTK widget
actually has the reported size. This doesn't normally pose any problem, but
the OpenGL drawing routines rely on correct behaviour. Therefore, I have
added the m_nativeSizeEvents flag, which is true only for the OpenGL canvas,
i.e. the wxGLCanvas will emit a size event, when (and not before) the X11
window that is used for OpenGL output really has that size (as reported by
GTK).
IV)
If someone at some point of time feels the immense desire to have a look at,
change or attempt to optimise the Refresh() logic, this person will need an
intimate understanding of what "draw" and "expose" events are and what
they are used for, in particular when used in connection with GTK's
own windowless widgets. Beware.
V)
Cursors, too, have been a constant source of pleasure. The main difficulty
is that a GdkWindow inherits a cursor if the programmer sets a new cursor
for the parent. To prevent this from doing too much harm, I use idle time
to set the cursor over and over again, starting from the toplevel windows
and ending with the youngest generation (speaking of parent and child windows).
Also don't forget that cursors (like much else) are connected to GdkWindows,
not GtkWidgets and that the "window" field of a GtkWidget might very well
point to the GdkWindow of the parent widget (-> "window-less widget") and
that the two obviously have very different meanings.
*/
//-----------------------------------------------------------------------------
// data
//-----------------------------------------------------------------------------
extern bool g_blockEventsOnDrag;
extern bool g_blockEventsOnScroll;
extern wxCursor g_globalCursor;
// mouse capture state: the window which has it and if the mouse is currently
// inside it
static wxWindowGTK *g_captureWindow = (wxWindowGTK*) NULL;
static bool g_captureWindowHasMouse = false;
wxWindowGTK *g_focusWindow = (wxWindowGTK*) NULL;
wxWindowGTK *g_focusWindowPending = (wxWindowGTK*) NULL;
// the last window which had the focus - this is normally never NULL (except
// if we never had focus at all) as even when g_focusWindow is NULL it still
// keeps its previous value
wxWindowGTK *g_focusWindowLast = (wxWindowGTK*) NULL;
// If a window get the focus set but has not been realized
// yet, defer setting the focus to idle time.
wxWindowGTK *g_delayedFocus = (wxWindowGTK*) NULL;
// global variables because GTK+ DnD want to have the
// mouse event that caused it
GdkEvent *g_lastMouseEvent = (GdkEvent*) NULL;
int g_lastButtonNumber = 0;
extern bool g_mainThreadLocked;
//-----------------------------------------------------------------------------
// debug
//-----------------------------------------------------------------------------
#ifdef __WXDEBUG__
#if wxUSE_THREADS
# define DEBUG_MAIN_THREAD if (wxThread::IsMain() && g_mainThreadLocked) printf("gui reentrance");
#else
# define DEBUG_MAIN_THREAD
#endif
#else
#define DEBUG_MAIN_THREAD
#endif // Debug
// the trace mask used for the focus debugging messages
#define TRACE_FOCUS _T("focus")
//-----------------------------------------------------------------------------
// missing gdk functions
//-----------------------------------------------------------------------------
void
gdk_window_warp_pointer (GdkWindow *window,
gint x,
gint y)
{
if (!window)
window = gdk_get_default_root_window();
if (!GDK_WINDOW_DESTROYED(window))
{
XWarpPointer (GDK_WINDOW_XDISPLAY(window),
None, /* not source window -> move from anywhere */
GDK_WINDOW_XID(window), /* dest window */
0, 0, 0, 0, /* not source window -> move from anywhere */
x, y );
}
}
//-----------------------------------------------------------------------------
// local code (see below)
//-----------------------------------------------------------------------------
// returns the child of win which currently has focus or NULL if not found
//
// Note: can't be static, needed by textctrl.cpp.
wxWindow *wxFindFocusedChild(wxWindowGTK *win)
{
wxWindowGTK* winFocus = g_focusWindow;
if ( !winFocus )
return (wxWindow *)NULL;
if ( winFocus == win )
return (wxWindow *)win;
for ( wxWindowList::compatibility_iterator node = win->GetChildren().GetFirst();
node;
node = node->GetNext() )
{
wxWindow *child = wxFindFocusedChild(node->GetData());
if ( child )
return child;
}
return (wxWindow *)NULL;
}
static void GetScrollbarWidth(GtkWidget* widget, int& w, int& h)
{
GtkScrolledWindow* scroll_window = GTK_SCROLLED_WINDOW(widget);
GtkScrolledWindowClass* scroll_class = GTK_SCROLLED_WINDOW_CLASS(GTK_OBJECT_GET_CLASS(scroll_window));
GtkRequisition scroll_req;
w = 0;
if (scroll_window->vscrollbar_visible)
{
scroll_req.width = 2;
scroll_req.height = 2;
(* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(scroll_window->vscrollbar) )->size_request )
(scroll_window->vscrollbar, &scroll_req );
w = scroll_req.width +
scroll_class->scrollbar_spacing;
}
h = 0;
if (scroll_window->hscrollbar_visible)
{
scroll_req.width = 2;
scroll_req.height = 2;
(* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(scroll_window->hscrollbar) )->size_request )
(scroll_window->hscrollbar, &scroll_req );
h = scroll_req.height +
scroll_class->scrollbar_spacing;
}
}
static void draw_frame( GtkWidget *widget, wxWindowGTK *win )
{
// wxUniversal widgets draw the borders and scrollbars themselves
#ifndef __WXUNIVERSAL__
if (!win->m_hasVMT)
return;
int dx = 0;
int dy = 0;
if (GTK_WIDGET_NO_WINDOW (widget))
{
dx += widget->allocation.x;
dy += widget->allocation.y;
}
int x = dx;
int y = dy;
int dw = 0;
int dh = 0;
if (win->m_hasScrolling)
{
GetScrollbarWidth(widget, dw, dh);
if (win->GetLayoutDirection() == wxLayout_RightToLeft)
{
// This is actually wrong for old GTK+ version
// which do not display the scrollbar on the
// left side in RTL
x += dw;
}
}
int w = widget->allocation.width-dw;
int h = widget->allocation.height-dh;
if (win->HasFlag(wxRAISED_BORDER))
{
gtk_paint_shadow (widget->style,
widget->window,
GTK_STATE_NORMAL,
GTK_SHADOW_OUT,
NULL, NULL, NULL, // FIXME: No clipping?
x, y, w, h );
return;
}
if (win->HasFlag(wxSUNKEN_BORDER))
{
gtk_paint_shadow (widget->style,
widget->window,
GTK_STATE_NORMAL,
GTK_SHADOW_IN,
NULL, NULL, NULL, // FIXME: No clipping?
x, y, w, h );
return;
}
if (win->HasFlag(wxSIMPLE_BORDER))
{
GdkGC *gc;
gc = gdk_gc_new( widget->window );
gdk_gc_set_foreground( gc, &widget->style->black );
gdk_draw_rectangle( widget->window, gc, FALSE, x, y, w-1, h-1 );
g_object_unref (gc);
return;
}
#endif // __WXUNIVERSAL__
}
//-----------------------------------------------------------------------------
// "expose_event" of m_widget
//-----------------------------------------------------------------------------
extern "C" {
static gboolean
gtk_window_own_expose_callback( GtkWidget *widget,
GdkEventExpose *gdk_event,
wxWindowGTK *win )
{
if (gdk_event->count == 0)
draw_frame(widget, win);
return false;
}
}
//-----------------------------------------------------------------------------
// "size_request" of m_widget
//-----------------------------------------------------------------------------
// make it extern because wxStaticText needs to disconnect this one
extern "C" {
void wxgtk_window_size_request_callback(GtkWidget *widget,
GtkRequisition *requisition,
wxWindow *win)
{
int w, h;
win->GetSize( &w, &h );
if (w < 2)
w = 2;
if (h < 2)
h = 2;
requisition->height = h;
requisition->width = w;
}
}
extern "C" {
static
void wxgtk_combo_size_request_callback(GtkWidget *widget,
GtkRequisition *requisition,
wxComboBox *win)
{
// This callback is actually hooked into the text entry
// of the combo box, not the GtkHBox.
int w, h;
win->GetSize( &w, &h );
if (w < 2)
w = 2;
if (h < 2)
h = 2;
GtkCombo *gcombo = GTK_COMBO(win->m_widget);
GtkRequisition entry_req;
entry_req.width = 2;
entry_req.height = 2;
(* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(gcombo->entry) )->size_request )
(gcombo->entry, &entry_req );
GtkRequisition button_req;
button_req.width = 2;
button_req.height = 2;
(* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(gcombo->button) )->size_request )
(gcombo->button, &button_req );
requisition->width = w - button_req.width;
requisition->height = entry_req.height;
}
}
//-----------------------------------------------------------------------------
// "expose_event" of m_wxwindow
//-----------------------------------------------------------------------------
extern "C" {
static gboolean
gtk_window_expose_callback( GtkWidget *widget,
GdkEventExpose *gdk_event,
wxWindow *win )
{
DEBUG_MAIN_THREAD
// don't need to install idle handler, its done from "event" signal
// This callback gets called in drawing-idle time under
// GTK 2.0, so we don't need to defer anything to idle
// time anymore.
GtkPizza *pizza = GTK_PIZZA( widget );
if (gdk_event->window != pizza->bin_window)
{
// block expose events on GTK_WIDGET(pizza)->window,
// all drawing is done on pizza->bin_window
return true;
}
#if 0
if (win->GetName())
{
wxPrintf( wxT("OnExpose from ") );
if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
wxPrintf( win->GetClassInfo()->GetClassName() );
wxPrintf( wxT(" %d %d %d %d\n"), (int)gdk_event->area.x,
(int)gdk_event->area.y,
(int)gdk_event->area.width,
(int)gdk_event->area.height );
}
gtk_paint_box
(
win->m_wxwindow->style,
pizza->bin_window,
GTK_STATE_NORMAL,
GTK_SHADOW_OUT,
(GdkRectangle*) NULL,
win->m_wxwindow,
(char *)"button", // const_cast
20,20,24,24
);
#endif
win->GetUpdateRegion() = wxRegion( gdk_event->region );
win->GtkSendPaintEvents();
// Let parent window draw window-less widgets
return FALSE;
}
}
//-----------------------------------------------------------------------------
// "key_press_event" from any window
//-----------------------------------------------------------------------------
// These are used when transforming Ctrl-alpha to ascii values 1-26
inline bool wxIsLowerChar(int code)
{
return (code >= 'a' && code <= 'z' );
}
inline bool wxIsUpperChar(int code)
{
return (code >= 'A' && code <= 'Z' );
}
// set WXTRACE to this to see the key event codes on the console
#define TRACE_KEYS _T("keyevent")
// translates an X key symbol to WXK_XXX value
//
// if isChar is true it means that the value returned will be used for EVT_CHAR
// event and then we choose the logical WXK_XXX, i.e. '/' for GDK_KP_Divide,
// for example, while if it is false it means that the value is going to be
// used for KEY_DOWN/UP events and then we translate GDK_KP_Divide to
// WXK_NUMPAD_DIVIDE
static long wxTranslateKeySymToWXKey(KeySym keysym, bool isChar)
{
long key_code;
switch ( keysym )
{
// Shift, Control and Alt don't generate the CHAR events at all
case GDK_Shift_L:
case GDK_Shift_R:
key_code = isChar ? 0 : WXK_SHIFT;
break;
case GDK_Control_L:
case GDK_Control_R:
key_code = isChar ? 0 : WXK_CONTROL;
break;
case GDK_Meta_L:
case GDK_Meta_R:
case GDK_Alt_L:
case GDK_Alt_R:
case GDK_Super_L:
case GDK_Super_R:
key_code = isChar ? 0 : WXK_ALT;
break;
// neither do the toggle modifies
case GDK_Scroll_Lock:
key_code = isChar ? 0 : WXK_SCROLL;
break;
case GDK_Caps_Lock:
key_code = isChar ? 0 : WXK_CAPITAL;
break;
case GDK_Num_Lock:
key_code = isChar ? 0 : WXK_NUMLOCK;
break;
// various other special keys
case GDK_Menu:
key_code = WXK_MENU;
break;
case GDK_Help:
key_code = WXK_HELP;
break;
case GDK_BackSpace:
key_code = WXK_BACK;
break;
case GDK_ISO_Left_Tab:
case GDK_Tab:
key_code = WXK_TAB;
break;
case GDK_Linefeed:
case GDK_Return:
key_code = WXK_RETURN;
break;
case GDK_Clear:
key_code = WXK_CLEAR;
break;
case GDK_Pause:
key_code = WXK_PAUSE;
break;
case GDK_Select:
key_code = WXK_SELECT;
break;
case GDK_Print:
key_code = WXK_PRINT;
break;
case GDK_Execute:
key_code = WXK_EXECUTE;
break;
case GDK_Escape:
key_code = WXK_ESCAPE;
break;
// cursor and other extended keyboard keys
case GDK_Delete:
key_code = WXK_DELETE;
break;
case GDK_Home:
key_code = WXK_HOME;
break;
case GDK_Left:
key_code = WXK_LEFT;
break;
case GDK_Up:
key_code = WXK_UP;
break;
case GDK_Right:
key_code = WXK_RIGHT;
break;
case GDK_Down:
key_code = WXK_DOWN;
break;
case GDK_Prior: // == GDK_Page_Up
key_code = WXK_PAGEUP;
break;
case GDK_Next: // == GDK_Page_Down
key_code = WXK_PAGEDOWN;
break;
case GDK_End:
key_code = WXK_END;
break;
case GDK_Begin:
key_code = WXK_HOME;
break;
case GDK_Insert:
key_code = WXK_INSERT;
break;
// numpad keys
case GDK_KP_0:
case GDK_KP_1:
case GDK_KP_2:
case GDK_KP_3:
case GDK_KP_4:
case GDK_KP_5:
case GDK_KP_6:
case GDK_KP_7:
case GDK_KP_8:
case GDK_KP_9:
key_code = (isChar ? '0' : WXK_NUMPAD0) + keysym - GDK_KP_0;
break;
case GDK_KP_Space:
key_code = isChar ? ' ' : WXK_NUMPAD_SPACE;
break;
case GDK_KP_Tab:
key_code = isChar ? WXK_TAB : WXK_NUMPAD_TAB;
break;
case GDK_KP_Enter:
key_code = isChar ? WXK_RETURN : WXK_NUMPAD_ENTER;
break;
case GDK_KP_F1:
key_code = isChar ? WXK_F1 : WXK_NUMPAD_F1;
break;
case GDK_KP_F2:
key_code = isChar ? WXK_F2 : WXK_NUMPAD_F2;
break;
case GDK_KP_F3:
key_code = isChar ? WXK_F3 : WXK_NUMPAD_F3;
break;
case GDK_KP_F4:
key_code = isChar ? WXK_F4 : WXK_NUMPAD_F4;
break;
case GDK_KP_Home:
key_code = isChar ? WXK_HOME : WXK_NUMPAD_HOME;
break;
case GDK_KP_Left:
key_code = isChar ? WXK_LEFT : WXK_NUMPAD_LEFT;
break;
case GDK_KP_Up:
key_code = isChar ? WXK_UP : WXK_NUMPAD_UP;
break;
case GDK_KP_Right:
key_code = isChar ? WXK_RIGHT : WXK_NUMPAD_RIGHT;
break;
case GDK_KP_Down:
key_code = isChar ? WXK_DOWN : WXK_NUMPAD_DOWN;
break;
case GDK_KP_Prior: // == GDK_KP_Page_Up
key_code = isChar ? WXK_PAGEUP : WXK_NUMPAD_PAGEUP;
break;
case GDK_KP_Next: // == GDK_KP_Page_Down
key_code = isChar ? WXK_PAGEDOWN : WXK_NUMPAD_PAGEDOWN;
break;
case GDK_KP_End:
key_code = isChar ? WXK_END : WXK_NUMPAD_END;
break;
case GDK_KP_Begin:
key_code = isChar ? WXK_HOME : WXK_NUMPAD_BEGIN;
break;
case GDK_KP_Insert:
key_code = isChar ? WXK_INSERT : WXK_NUMPAD_INSERT;
break;
case GDK_KP_Delete:
key_code = isChar ? WXK_DELETE : WXK_NUMPAD_DELETE;
break;
case GDK_KP_Equal:
key_code = isChar ? '=' : WXK_NUMPAD_EQUAL;
break;
case GDK_KP_Multiply:
key_code = isChar ? '*' : WXK_NUMPAD_MULTIPLY;
break;
case GDK_KP_Add:
key_code = isChar ? '+' : WXK_NUMPAD_ADD;
break;
case GDK_KP_Separator:
// FIXME: what is this?
key_code = isChar ? '.' : WXK_NUMPAD_SEPARATOR;
break;
case GDK_KP_Subtract:
key_code = isChar ? '-' : WXK_NUMPAD_SUBTRACT;
break;
case GDK_KP_Decimal:
key_code = isChar ? '.' : WXK_NUMPAD_DECIMAL;
break;
case GDK_KP_Divide:
key_code = isChar ? '/' : WXK_NUMPAD_DIVIDE;
break;
// function keys
case GDK_F1:
case GDK_F2:
case GDK_F3:
case GDK_F4:
case GDK_F5:
case GDK_F6:
case GDK_F7:
case GDK_F8:
case GDK_F9:
case GDK_F10:
case GDK_F11:
case GDK_F12:
key_code = WXK_F1 + keysym - GDK_F1;
break;
default:
key_code = 0;
}
return key_code;
}
static inline bool wxIsAsciiKeysym(KeySym ks)
{
return ks < 256;
}
static void wxFillOtherKeyEventFields(wxKeyEvent& event,
wxWindowGTK *win,
GdkEventKey *gdk_event)
{
int x = 0;
int y = 0;
GdkModifierType state;
if (gdk_event->window)
gdk_window_get_pointer(gdk_event->window, &x, &y, &state);
event.SetTimestamp( gdk_event->time );
event.SetId(win->GetId());
event.m_shiftDown = (gdk_event->state & GDK_SHIFT_MASK) != 0;
event.m_controlDown = (gdk_event->state & GDK_CONTROL_MASK) != 0;
event.m_altDown = (gdk_event->state & GDK_MOD1_MASK) != 0;
event.m_metaDown = (gdk_event->state & GDK_META_MASK) != 0;
event.m_scanCode = gdk_event->keyval;
event.m_rawCode = (wxUint32) gdk_event->keyval;
event.m_rawFlags = 0;
#if wxUSE_UNICODE
event.m_uniChar = gdk_keyval_to_unicode(gdk_event->keyval);
#endif
wxGetMousePosition( &x, &y );
win->ScreenToClient( &x, &y );
event.m_x = x;
event.m_y = y;
event.SetEventObject( win );
}
static bool
wxTranslateGTKKeyEventToWx(wxKeyEvent& event,
wxWindowGTK *win,
GdkEventKey *gdk_event)
{
// VZ: it seems that GDK_KEY_RELEASE event doesn't set event->string
// but only event->keyval which is quite useless to us, so remember
// the last character from GDK_KEY_PRESS and reuse it as last resort
//
// NB: should be MT-safe as we're always called from the main thread only
static struct
{
KeySym keysym;
long keycode;
} s_lastKeyPress = { 0, 0 };
KeySym keysym = gdk_event->keyval;
wxLogTrace(TRACE_KEYS, _T("Key %s event: keysym = %ld"),
event.GetEventType() == wxEVT_KEY_UP ? _T("release")
: _T("press"),
keysym);
long key_code = wxTranslateKeySymToWXKey(keysym, false /* !isChar */);
if ( !key_code )
{
// do we have the translation or is it a plain ASCII character?
if ( (gdk_event->length == 1) || wxIsAsciiKeysym(keysym) )
{
// we should use keysym if it is ASCII as X does some translations
// like "I pressed while Control is down" => "Ctrl-I" == "TAB"
// which we don't want here (but which we do use for OnChar())
if ( !wxIsAsciiKeysym(keysym) )
{
keysym = (KeySym)gdk_event->string[0];
}
// we want to always get the same key code when the same key is
// pressed regardless of the state of the modifiers, i.e. on a
// standard US keyboard pressing '5' or '%' ('5' key with
// Shift) should result in the same key code in OnKeyDown():
// '5' (although OnChar() will get either '5' or '%').
//
// to do it we first translate keysym to keycode (== scan code)
// and then back but always using the lower register
Display *dpy = (Display *)wxGetDisplay();
KeyCode keycode = XKeysymToKeycode(dpy, keysym);
wxLogTrace(TRACE_KEYS, _T("\t-> keycode %d"), keycode);
KeySym keysymNormalized = XKeycodeToKeysym(dpy, keycode, 0);
// use the normalized, i.e. lower register, keysym if we've
// got one
key_code = keysymNormalized ? keysymNormalized : keysym;
// as explained above, we want to have lower register key codes
// normally but for the letter keys we want to have the upper ones
//
// NB: don't use XConvertCase() here, we want to do it for letters
// only
key_code = toupper(key_code);
}
else // non ASCII key, what to do?
{
// by default, ignore it
key_code = 0;
// but if we have cached information from the last KEY_PRESS
if ( gdk_event->type == GDK_KEY_RELEASE )
{
// then reuse it
if ( keysym == s_lastKeyPress.keysym )
{
key_code = s_lastKeyPress.keycode;
}
}
}
if ( gdk_event->type == GDK_KEY_PRESS )
{
// remember it to be reused for KEY_UP event later
s_lastKeyPress.keysym = keysym;
s_lastKeyPress.keycode = key_code;
}
}
wxLogTrace(TRACE_KEYS, _T("\t-> wxKeyCode %ld"), key_code);
// sending unknown key events doesn't really make sense
if ( !key_code )
return false;
// now fill all the other fields
wxFillOtherKeyEventFields(event, win, gdk_event);
event.m_keyCode = key_code;
#if wxUSE_UNICODE
if ( gdk_event->type == GDK_KEY_PRESS || gdk_event->type == GDK_KEY_RELEASE )
{
event.m_uniChar = key_code;
}
#endif
return true;
}
struct wxGtkIMData
{
GtkIMContext *context;
GdkEventKey *lastKeyEvent;
wxGtkIMData()
{
context = gtk_im_multicontext_new();
lastKeyEvent = NULL;
}
~wxGtkIMData()
{
g_object_unref (context);
}
};
extern "C" {
static gboolean
gtk_window_key_press_callback( GtkWidget *widget,
GdkEventKey *gdk_event,
wxWindow *win )
{
DEBUG_MAIN_THREAD
// don't need to install idle handler, its done from "event" signal
if (!win->m_hasVMT)
return FALSE;
if (g_blockEventsOnDrag)
return FALSE;
// GTK+ sends keypress events to the focus widget and then
// to all its parent and grandparent widget. We only want
// the key events from the focus widget.
if (!GTK_WIDGET_HAS_FOCUS(widget))
return FALSE;
wxKeyEvent event( wxEVT_KEY_DOWN );
bool ret = false;
bool return_after_IM = false;
if( wxTranslateGTKKeyEventToWx(event, win, gdk_event) )
{
// Emit KEY_DOWN event
ret = win->GetEventHandler()->ProcessEvent( event );
}
else
{
// Return after IM processing as we cannot do
// anything with it anyhow.
return_after_IM = true;
}
// 2005.01.26 modified by Hong Jen Yee (hzysoft@sina.com.tw):
// When we get a key_press event here, it could be originate
// from the current widget or its child widgets. However, only the widget
// with the INPUT FOCUS can generate the INITIAL key_press event. That is,
// if the CURRENT widget doesn't have the FOCUS at all, this event definitely
// originated from its child widgets and shouldn't be passed to IM context.
// In fact, what a GTK+ IM should do is filtering keyEvents and convert them
// into text input ONLY WHEN THE WIDGET HAS INPUT FOCUS. Besides, when current
// widgets has both IM context and input focus, the event should be filtered
// by gtk_im_context_filter_keypress().
// Then, we should, according to GTK+ 2.0 API doc, return whatever it returns.
if ((!ret) && (win->m_imData != NULL) && ( g_focusWindow == win ))
{
// We should let GTK+ IM filter key event first. According to GTK+ 2.0 API
// docs, if IM filter returns true, no further processing should be done.
// we should send the key_down event anyway.
bool intercepted_by_IM = gtk_im_context_filter_keypress(win->m_imData->context, gdk_event);
win->m_imData->lastKeyEvent = NULL;
if (intercepted_by_IM)
{
wxLogTrace(TRACE_KEYS, _T("Key event intercepted by IM"));
return TRUE;
}
}
if (return_after_IM)
return FALSE;
#if wxUSE_ACCEL
if (!ret)
{
wxWindowGTK *ancestor = win;
while (ancestor)
{
int command = ancestor->GetAcceleratorTable()->GetCommand( event );
if (command != -1)
{
wxCommandEvent menu_event( wxEVT_COMMAND_MENU_SELECTED, command );
ret = ancestor->GetEventHandler()->ProcessEvent( menu_event );
if ( !ret )
{
// if the accelerator wasn't handled as menu event, try
// it as button click (for compatibility with other
// platforms):
wxCommandEvent button_event( wxEVT_COMMAND_BUTTON_CLICKED, command );
ret = ancestor->GetEventHandler()->ProcessEvent( button_event );
}
break;
}
if (ancestor->IsTopLevel())
break;
ancestor = ancestor->GetParent();
}
}
#endif // wxUSE_ACCEL
// Only send wxEVT_CHAR event if not processed yet. Thus, ALT-x
// will only be sent if it is not in an accelerator table.
if (!ret)
{
long key_code;
KeySym keysym = gdk_event->keyval;
// Find key code for EVT_CHAR and EVT_CHAR_HOOK events
key_code = wxTranslateKeySymToWXKey(keysym, true /* isChar */);
if ( !key_code )
{
if ( wxIsAsciiKeysym(keysym) )
{
// ASCII key
key_code = (unsigned char)keysym;
}
// gdk_event->string is actually deprecated
else if ( gdk_event->length == 1 )
{
key_code = (unsigned char)gdk_event->string[0];
}
}
if ( key_code )
{
wxLogTrace(TRACE_KEYS, _T("Char event: %ld"), key_code);
event.m_keyCode = key_code;
// To conform to the docs we need to translate Ctrl-alpha
// characters to values in the range 1-26.
if ( event.ControlDown() &&
( wxIsLowerChar(key_code) || wxIsUpperChar(key_code) ))
{
if ( wxIsLowerChar(key_code) )
event.m_keyCode = key_code - 'a' + 1;
if ( wxIsUpperChar(key_code) )
event.m_keyCode = key_code - 'A' + 1;
#if wxUSE_UNICODE
event.m_uniChar = event.m_keyCode;
#endif
}
// Implement OnCharHook by checking ancestor top level windows
wxWindow *parent = win;
while (parent && !parent->IsTopLevel())
parent = parent->GetParent();
if (parent)
{
event.SetEventType( wxEVT_CHAR_HOOK );
ret = parent->GetEventHandler()->ProcessEvent( event );
}
if (!ret)
{
event.SetEventType(wxEVT_CHAR);
ret = win->GetEventHandler()->ProcessEvent( event );
}
}
}
// win is a control: tab can be propagated up
if ( !ret &&
(gdk_event->keyval == GDK_Tab || gdk_event->keyval == GDK_ISO_Left_Tab)
#if wxUSE_TEXTCTRL
&& !(win->HasFlag(wxTE_PROCESS_TAB) && wxDynamicCast(win, wxTextCtrl))
#endif
)
{
wxWindow * const parent = win->GetParent();
if ( parent && parent->HasFlag(wxTAB_TRAVERSAL) )
{
wxNavigationKeyEvent new_event;
new_event.SetEventObject( parent );
// GDK reports GDK_ISO_Left_Tab for SHIFT-TAB
new_event.SetDirection( (gdk_event->keyval == GDK_Tab) );
// CTRL-TAB changes the (parent) window, i.e. switch notebook page
new_event.SetWindowChange( (gdk_event->state & GDK_CONTROL_MASK) );
new_event.SetCurrentFocus( win );
ret = parent->GetEventHandler()->ProcessEvent( new_event );
}
}
return ret;
}
}
extern "C" {
static void
gtk_wxwindow_commit_cb (GtkIMContext *context,
const gchar *str,
wxWindow *window)
{
wxKeyEvent event( wxEVT_KEY_DOWN );
// take modifiers, cursor position, timestamp etc. from the last
// key_press_event that was fed into Input Method:
if (window->m_imData->lastKeyEvent)
{
wxFillOtherKeyEventFields(event,
window, window->m_imData->lastKeyEvent);
}
else
{
event.SetEventObject( window );
}
const wxWxCharBuffer data(wxGTK_CONV_BACK(str));
if( !data )
return;
bool ret = false;
// Implement OnCharHook by checking ancestor top level windows
wxWindow *parent = window;
while (parent && !parent->IsTopLevel())
parent = parent->GetParent();
for( const wxChar* pstr = data; *pstr; pstr++ )
{
#if wxUSE_UNICODE
event.m_uniChar = *pstr;
// Backward compatible for ISO-8859-1
event.m_keyCode = *pstr < 256 ? event.m_uniChar : 0;
wxLogTrace(TRACE_KEYS, _T("IM sent character '%c'"), event.m_uniChar);
#else
event.m_keyCode = *pstr;
#endif // wxUSE_UNICODE
// To conform to the docs we need to translate Ctrl-alpha
// characters to values in the range 1-26.
if ( event.ControlDown() &&
( wxIsLowerChar(*pstr) || wxIsUpperChar(*pstr) ))
{
if ( wxIsLowerChar(*pstr) )
event.m_keyCode = *pstr - 'a' + 1;
if ( wxIsUpperChar(*pstr) )
event.m_keyCode = *pstr - 'A' + 1;
event.m_keyCode = *pstr - 'a' + 1;
#if wxUSE_UNICODE
event.m_uniChar = event.m_keyCode;
#endif
}
if (parent)
{
event.SetEventType( wxEVT_CHAR_HOOK );
ret = parent->GetEventHandler()->ProcessEvent( event );
}
if (!ret)
{
event.SetEventType(wxEVT_CHAR);
ret = window->GetEventHandler()->ProcessEvent( event );
}
}
}
}
//-----------------------------------------------------------------------------
// "key_release_event" from any window
//-----------------------------------------------------------------------------
extern "C" {
static gboolean
gtk_window_key_release_callback( GtkWidget *widget,
GdkEventKey *gdk_event,
wxWindowGTK *win )
{
DEBUG_MAIN_THREAD
// don't need to install idle handler, its done from "event" signal
if (!win->m_hasVMT)
return FALSE;
if (g_blockEventsOnDrag)
return FALSE;
wxKeyEvent event( wxEVT_KEY_UP );
if ( !wxTranslateGTKKeyEventToWx(event, win, gdk_event) )
{
// unknown key pressed, ignore (the event would be useless anyhow)
return FALSE;
}
return win->GTKProcessEvent(event);
}
}
// ============================================================================
// the mouse events
// ============================================================================
// ----------------------------------------------------------------------------
// mouse event processing helpers
// ----------------------------------------------------------------------------
// init wxMouseEvent with the info from GdkEventXXX struct
template<typename T> void InitMouseEvent(wxWindowGTK *win,
wxMouseEvent& event,
T *gdk_event)
{
event.SetTimestamp( gdk_event->time );
event.m_shiftDown = (gdk_event->state & GDK_SHIFT_MASK);
event.m_controlDown = (gdk_event->state & GDK_CONTROL_MASK);
event.m_altDown = (gdk_event->state & GDK_MOD1_MASK);
event.m_metaDown = (gdk_event->state & GDK_META_MASK);
event.m_leftDown = (gdk_event->state & GDK_BUTTON1_MASK);
event.m_middleDown = (gdk_event->state & GDK_BUTTON2_MASK);
event.m_rightDown = (gdk_event->state & GDK_BUTTON3_MASK);
wxPoint pt = win->GetClientAreaOrigin();
event.m_x = (wxCoord)gdk_event->x - pt.x;
event.m_y = (wxCoord)gdk_event->y - pt.y;
if ((win->m_wxwindow) && (win->GetLayoutDirection() == wxLayout_RightToLeft))
{
// origin in the upper right corner
int window_width = gtk_pizza_get_rtl_offset( GTK_PIZZA(win->m_wxwindow) );
event.m_x = window_width - event.m_x;
}
event.SetEventObject( win );
event.SetId( win->GetId() );
event.SetTimestamp( gdk_event->time );
}
static void AdjustEventButtonState(wxMouseEvent& event)
{
// GDK reports the old state of the button for a button press event, but
// for compatibility with MSW and common sense we want m_leftDown be TRUE
// for a LEFT_DOWN event, not FALSE, so we will invert
// left/right/middleDown for the corresponding click events
if ((event.GetEventType() == wxEVT_LEFT_DOWN) ||
(event.GetEventType() == wxEVT_LEFT_DCLICK) ||
(event.GetEventType() == wxEVT_LEFT_UP))
{
event.m_leftDown = !event.m_leftDown;
return;
}
if ((event.GetEventType() == wxEVT_MIDDLE_DOWN) ||
(event.GetEventType() == wxEVT_MIDDLE_DCLICK) ||
(event.GetEventType() == wxEVT_MIDDLE_UP))
{
event.m_middleDown = !event.m_middleDown;
return;
}
if ((event.GetEventType() == wxEVT_RIGHT_DOWN) ||
(event.GetEventType() == wxEVT_RIGHT_DCLICK) ||
(event.GetEventType() == wxEVT_RIGHT_UP))
{
event.m_rightDown = !event.m_rightDown;
return;
}
}
// find the window to send the mouse event too
static
wxWindowGTK *FindWindowForMouseEvent(wxWindowGTK *win, wxCoord& x, wxCoord& y)
{
wxCoord xx = x;
wxCoord yy = y;
if (win->m_wxwindow)
{
GtkPizza *pizza = GTK_PIZZA(win->m_wxwindow);
xx += gtk_pizza_get_xoffset( pizza );
yy += gtk_pizza_get_yoffset( pizza );
}
wxWindowList::compatibility_iterator node = win->GetChildren().GetFirst();
while (node)
{
wxWindowGTK *child = node->GetData();
node = node->GetNext();
if (!child->IsShown())
continue;
if (child->IsTransparentForMouse())
{
// wxStaticBox is transparent in the box itself
int xx1 = child->m_x;
int yy1 = child->m_y;
int xx2 = child->m_x + child->m_width;
int yy2 = child->m_y + child->m_height;
// left
if (((xx >= xx1) && (xx <= xx1+10) && (yy >= yy1) && (yy <= yy2)) ||
// right
((xx >= xx2-10) && (xx <= xx2) && (yy >= yy1) && (yy <= yy2)) ||
// top
((xx >= xx1) && (xx <= xx2) && (yy >= yy1) && (yy <= yy1+10)) ||
// bottom
((xx >= xx1) && (xx <= xx2) && (yy >= yy2-1) && (yy <= yy2)))
{
win = child;
x -= child->m_x;
y -= child->m_y;
break;
}
}
else
{
if ((child->m_wxwindow == (GtkWidget*) NULL) &&
(child->m_x <= xx) &&
(child->m_y <= yy) &&
(child->m_x+child->m_width >= xx) &&
(child->m_y+child->m_height >= yy))
{
win = child;
x -= child->m_x;
y -= child->m_y;
break;
}
}
}
return win;
}
// ----------------------------------------------------------------------------
// common event handlers helpers
// ----------------------------------------------------------------------------
bool wxWindowGTK::GTKProcessEvent(wxEvent& event) const
{
// nothing special at this level
return GetEventHandler()->ProcessEvent(event);
}
int wxWindowGTK::GTKCallbackCommonPrologue(GdkEventAny *event) const
{
DEBUG_MAIN_THREAD
// don't need to install idle handler, its done from "event" signal
if (!m_hasVMT)
return FALSE;
if (g_blockEventsOnDrag)
return TRUE;
if (g_blockEventsOnScroll)
return TRUE;
if (!GTKIsOwnWindow(event->window))
return FALSE;
return -1;
}
// overloads for all GDK event types we use here: we need to have this as
// GdkEventXXX can't be implicitly cast to GdkEventAny even if it, in fact,
// derives from it in the sense that the structs have the same layout
#define wxDEFINE_COMMON_PROLOGUE_OVERLOAD(T) \
static int wxGtkCallbackCommonPrologue(T *event, wxWindowGTK *win) \
{ \
return win->GTKCallbackCommonPrologue((GdkEventAny *)event); \
}
wxDEFINE_COMMON_PROLOGUE_OVERLOAD(GdkEventButton)
wxDEFINE_COMMON_PROLOGUE_OVERLOAD(GdkEventMotion)
wxDEFINE_COMMON_PROLOGUE_OVERLOAD(GdkEventCrossing)
#undef wxDEFINE_COMMON_PROLOGUE_OVERLOAD
#define wxCOMMON_CALLBACK_PROLOGUE(event, win) \
const int rc = wxGtkCallbackCommonPrologue(event, win); \
if ( rc != -1 ) \
return rc
// send the wxChildFocusEvent and wxFocusEvent, common code of
// gtk_window_focus_in_callback() and SetFocus()
static bool DoSendFocusEvents(wxWindow *win)
{
// Notify the parent keeping track of focus for the kbd navigation
// purposes that we got it.
wxChildFocusEvent eventChildFocus(win);
(void)win->GetEventHandler()->ProcessEvent(eventChildFocus);
wxFocusEvent eventFocus(wxEVT_SET_FOCUS, win->GetId());
eventFocus.SetEventObject(win);
return win->GetEventHandler()->ProcessEvent(eventFocus);
}
// all event handlers must have C linkage as they're called from GTK+ C code
extern "C"
{
//-----------------------------------------------------------------------------
// "button_press_event"
//-----------------------------------------------------------------------------
static gboolean
gtk_window_button_press_callback( GtkWidget *widget,
GdkEventButton *gdk_event,
wxWindowGTK *win )
{
wxCOMMON_CALLBACK_PROLOGUE(gdk_event, win);
g_lastButtonNumber = gdk_event->button;
// GDK sends surplus button down events
// before a double click event. We
// need to filter these out.
if ((gdk_event->type == GDK_BUTTON_PRESS) && (win->m_wxwindow))
{
GdkEvent *peek_event = gdk_event_peek();
if (peek_event)
{
if ((peek_event->type == GDK_2BUTTON_PRESS) ||
(peek_event->type == GDK_3BUTTON_PRESS))
{
gdk_event_free( peek_event );
return TRUE;
}
else
{
gdk_event_free( peek_event );
}
}
}
wxEventType event_type = wxEVT_NULL;
// GdkDisplay is a GTK+ 2.2.0 thing
#if defined(__WXGTK20__) && GTK_CHECK_VERSION(2, 2, 0)
if ( gdk_event->type == GDK_2BUTTON_PRESS &&
!gtk_check_version(2,2,0) &&
gdk_event->button >= 1 && gdk_event->button <= 3 )
{
// Reset GDK internal timestamp variables in order to disable GDK
// triple click events. GDK will then next time believe no button has
// been clicked just before, and send a normal button click event.
GdkDisplay* display = gtk_widget_get_display (widget);
display->button_click_time[1] = 0;
display->button_click_time[0] = 0;
}
#endif // GTK 2+
if (gdk_event->button == 1)
{
// note that GDK generates triple click events which are not supported
// by wxWidgets but still have to be passed to the app as otherwise
// clicks would simply go missing
switch (gdk_event->type)
{
// we shouldn't get triple clicks at all for GTK2 because we
// suppress them artificially using the code above but we still
// should map them to something for GTK1 and not just ignore them
// as this would lose clicks
case GDK_3BUTTON_PRESS: // we could also map this to DCLICK...
case GDK_BUTTON_PRESS:
event_type = wxEVT_LEFT_DOWN;
break;
case GDK_2BUTTON_PRESS:
event_type = wxEVT_LEFT_DCLICK;
break;
default:
// just to silence gcc warnings
;
}
}
else if (gdk_event->button == 2)
{
switch (gdk_event->type)
{
case GDK_3BUTTON_PRESS:
case GDK_BUTTON_PRESS:
event_type = wxEVT_MIDDLE_DOWN;
break;
case GDK_2BUTTON_PRESS:
event_type = wxEVT_MIDDLE_DCLICK;
break;
default:
;
}
}
else if (gdk_event->button == 3)
{
switch (gdk_event->type)
{
case GDK_3BUTTON_PRESS:
case GDK_BUTTON_PRESS:
event_type = wxEVT_RIGHT_DOWN;
break;
case GDK_2BUTTON_PRESS:
event_type = wxEVT_RIGHT_DCLICK;
break;
default:
;
}
}
if ( event_type == wxEVT_NULL )
{
// unknown mouse button or click type
return FALSE;
}
g_lastMouseEvent = (GdkEvent*) gdk_event;
wxMouseEvent event( event_type );
InitMouseEvent( win, event, gdk_event );
AdjustEventButtonState(event);
// wxListBox actually gets mouse events from the item, so we need to give it
// a chance to correct this
win->FixUpMouseEvent(widget, event.m_x, event.m_y);
// find the correct window to send the event to: it may be a different one
// from the one which got it at GTK+ level because some controls don't have
// their own X window and thus cannot get any events.
if ( !g_captureWindow )
win = FindWindowForMouseEvent(win, event.m_x, event.m_y);
// reset the event object and id in case win changed.
event.SetEventObject( win );
event.SetId( win->GetId() );
bool ret = win->GTKProcessEvent( event );
g_lastMouseEvent = NULL;
if ( ret )
return TRUE;
if ((event_type == wxEVT_LEFT_DOWN) &&
(g_focusWindow != win) && win->AcceptsFocus())
{
win->SetFocus();
}
if (event_type == wxEVT_RIGHT_DOWN)
{
// generate a "context menu" event: this is similar to right mouse
// click under many GUIs except that it is generated differently
// (right up under MSW, ctrl-click under Mac, right down here) and
//
// (a) it's a command event and so is propagated to the parent
// (b) under some ports it can be generated from kbd too
// (c) it uses screen coords (because of (a))
wxContextMenuEvent evtCtx(
wxEVT_CONTEXT_MENU,
win->GetId(),
win->ClientToScreen(event.GetPosition()));
evtCtx.SetEventObject(win);
return win->GTKProcessEvent(evtCtx);
}
return FALSE;
}
//-----------------------------------------------------------------------------
// "button_release_event"
//-----------------------------------------------------------------------------
static gboolean
gtk_window_button_release_callback( GtkWidget *widget,
GdkEventButton *gdk_event,
wxWindowGTK *win )
{
wxCOMMON_CALLBACK_PROLOGUE(gdk_event, win);
g_lastButtonNumber = 0;
wxEventType event_type = wxEVT_NULL;
switch (gdk_event->button)
{
case 1:
event_type = wxEVT_LEFT_UP;
break;
case 2:
event_type = wxEVT_MIDDLE_UP;
break;
case 3:
event_type = wxEVT_RIGHT_UP;
break;
default:
// unknown button, don't process
return FALSE;
}
g_lastMouseEvent = (GdkEvent*) gdk_event;
wxMouseEvent event( event_type );
InitMouseEvent( win, event, gdk_event );
AdjustEventButtonState(event);
// same wxListBox hack as above
win->FixUpMouseEvent(widget, event.m_x, event.m_y);
if ( !g_captureWindow )
win = FindWindowForMouseEvent(win, event.m_x, event.m_y);
// reset the event object and id in case win changed.
event.SetEventObject( win );
event.SetId( win->GetId() );
bool ret = win->GTKProcessEvent(event);
g_lastMouseEvent = NULL;
return ret;
}
//-----------------------------------------------------------------------------
// "motion_notify_event"
//-----------------------------------------------------------------------------
static gboolean
gtk_window_motion_notify_callback( GtkWidget *widget,
GdkEventMotion *gdk_event,
wxWindowGTK *win )
{
wxCOMMON_CALLBACK_PROLOGUE(gdk_event, win);
if (gdk_event->is_hint)
{
int x = 0;
int y = 0;
GdkModifierType state;
gdk_window_get_pointer(gdk_event->window, &x, &y, &state);
gdk_event->x = x;
gdk_event->y = y;
}
g_lastMouseEvent = (GdkEvent*) gdk_event;
wxMouseEvent event( wxEVT_MOTION );
InitMouseEvent(win, event, gdk_event);
if ( g_captureWindow )
{
// synthesise a mouse enter or leave event if needed
GdkWindow *winUnderMouse = gdk_window_at_pointer(NULL, NULL);
// This seems to be necessary and actually been added to
// GDK itself in version 2.0.X
gdk_flush();
bool hasMouse = winUnderMouse == gdk_event->window;
if ( hasMouse != g_captureWindowHasMouse )
{
// the mouse changed window
g_captureWindowHasMouse = hasMouse;
wxMouseEvent eventM(g_captureWindowHasMouse ? wxEVT_ENTER_WINDOW
: wxEVT_LEAVE_WINDOW);
InitMouseEvent(win, eventM, gdk_event);
eventM.SetEventObject(win);
win->GTKProcessEvent(eventM);
}
}
else // no capture
{
win = FindWindowForMouseEvent(win, event.m_x, event.m_y);
// reset the event object and id in case win changed.
event.SetEventObject( win );
event.SetId( win->GetId() );
}
if ( !g_captureWindow )
{
wxSetCursorEvent cevent( event.m_x, event.m_y );
if (win->GTKProcessEvent( cevent ))
{
win->SetCursor( cevent.GetCursor() );
}
}
bool ret = win->GTKProcessEvent(event);
g_lastMouseEvent = NULL;
return ret;
}
//-----------------------------------------------------------------------------
// "scroll_event" (mouse wheel event)
//-----------------------------------------------------------------------------
static gboolean
window_scroll_event(GtkWidget*, GdkEventScroll* gdk_event, wxWindow* win)
{
DEBUG_MAIN_THREAD
// don't need to install idle handler, its done from "event" signal
if (gdk_event->direction != GDK_SCROLL_UP &&
gdk_event->direction != GDK_SCROLL_DOWN)
{
return false;
}
wxMouseEvent event(wxEVT_MOUSEWHEEL);
// Can't use InitMouse macro because scroll events don't have button
event.SetTimestamp( gdk_event->time );
event.m_shiftDown = (gdk_event->state & GDK_SHIFT_MASK);
event.m_controlDown = (gdk_event->state & GDK_CONTROL_MASK);
event.m_altDown = (gdk_event->state & GDK_MOD1_MASK);
event.m_metaDown = (gdk_event->state & GDK_META_MASK);
event.m_leftDown = (gdk_event->state & GDK_BUTTON1_MASK);
event.m_middleDown = (gdk_event->state & GDK_BUTTON2_MASK);
event.m_rightDown = (gdk_event->state & GDK_BUTTON3_MASK);
// FIXME: Get these values from GTK or GDK
event.m_linesPerAction = 3;
event.m_wheelDelta = 120;
if (gdk_event->direction == GDK_SCROLL_UP)
event.m_wheelRotation = 120;
else
event.m_wheelRotation = -120;
wxPoint pt = win->GetClientAreaOrigin();
event.m_x = (wxCoord)gdk_event->x - pt.x;
event.m_y = (wxCoord)gdk_event->y - pt.y;
event.SetEventObject( win );
event.SetId( win->GetId() );
event.SetTimestamp( gdk_event->time );
return win->GTKProcessEvent(event);
}
//-----------------------------------------------------------------------------
// "popup-menu"
//-----------------------------------------------------------------------------
static gboolean wxgtk_window_popup_menu_callback(GtkWidget*, wxWindowGTK* win)
{
wxContextMenuEvent event(wxEVT_CONTEXT_MENU, win->GetId(), wxPoint(-1, -1));
event.SetEventObject(win);
return win->GTKProcessEvent(event);
}
//-----------------------------------------------------------------------------
// "focus_in_event"
//-----------------------------------------------------------------------------
static gboolean
gtk_window_focus_in_callback( GtkWidget *widget,
GdkEventFocus *WXUNUSED(event),
wxWindow *win )
{
DEBUG_MAIN_THREAD
// don't need to install idle handler, its done from "event" signal
if (win->m_imData)
gtk_im_context_focus_in(win->m_imData->context);
g_focusWindowLast =
g_focusWindow = win;
g_focusWindowPending = NULL;
wxLogTrace(TRACE_FOCUS,
_T("%s: focus in"), win->GetName().c_str());
#if wxUSE_CARET
// caret needs to be informed about focus change
wxCaret *caret = win->GetCaret();
if ( caret )
{
caret->OnSetFocus();
}
#endif // wxUSE_CARET
gboolean ret = FALSE;
// does the window itself think that it has the focus?
if ( !win->m_hasFocus )
{
// not yet, notify it
win->m_hasFocus = true;
(void)DoSendFocusEvents(win);
ret = TRUE;
}
// Disable default focus handling for custom windows
// since the default GTK+ handler issues a repaint
if (win->m_wxwindow)
return ret;
return FALSE;
}
//-----------------------------------------------------------------------------
// "focus_out_event"
//-----------------------------------------------------------------------------
static gboolean
gtk_window_focus_out_callback( GtkWidget *widget,
GdkEventFocus *gdk_event,
wxWindowGTK *win )
{
DEBUG_MAIN_THREAD
// don't need to install idle handler, its done from "event" signal
if (win->m_imData)
gtk_im_context_focus_out(win->m_imData->context);
wxLogTrace( TRACE_FOCUS,
_T("%s: focus out"), win->GetName().c_str() );
wxWindowGTK *winFocus = wxFindFocusedChild(win);
if ( winFocus )
win = winFocus;
g_focusWindow = (wxWindowGTK *)NULL;
#if wxUSE_CARET
// caret needs to be informed about focus change
wxCaret *caret = win->GetCaret();
if ( caret )
{
caret->OnKillFocus();
}
#endif // wxUSE_CARET
// don't send the window a kill focus event if it thinks that it doesn't
// have focus already
if ( win->m_hasFocus )
{
// the event handler might delete the window when it loses focus, so
// check whether this is a custom window before calling it
const bool has_wxwindow = win->m_wxwindow != NULL;
win->m_hasFocus = false;
wxFocusEvent event( wxEVT_KILL_FOCUS, win->GetId() );
event.SetEventObject( win );
(void)win->GTKProcessEvent( event );
// Disable default focus handling for custom windows
// since the default GTK+ handler issues a repaint
if ( has_wxwindow )
return TRUE;
}
// continue with normal processing
return FALSE;
}
//-----------------------------------------------------------------------------
// "enter_notify_event"
//-----------------------------------------------------------------------------
static gboolean
gtk_window_enter_callback( GtkWidget *widget,
GdkEventCrossing *gdk_event,
wxWindowGTK *win )
{
wxCOMMON_CALLBACK_PROLOGUE(gdk_event, win);
// Event was emitted after a grab
if (gdk_event->mode != GDK_CROSSING_NORMAL) return FALSE;
int x = 0;
int y = 0;
GdkModifierType state = (GdkModifierType)0;
gdk_window_get_pointer( widget->window, &x, &y, &state );
wxMouseEvent event( wxEVT_ENTER_WINDOW );
InitMouseEvent(win, event, gdk_event);
wxPoint pt = win->GetClientAreaOrigin();
event.m_x = x + pt.x;
event.m_y = y + pt.y;
if ( !g_captureWindow )
{
wxSetCursorEvent cevent( event.m_x, event.m_y );
if (win->GTKProcessEvent( cevent ))
{
win->SetCursor( cevent.GetCursor() );
}
}
return win->GTKProcessEvent(event);
}
//-----------------------------------------------------------------------------
// "leave_notify_event"
//-----------------------------------------------------------------------------
static gboolean
gtk_window_leave_callback( GtkWidget *widget,
GdkEventCrossing *gdk_event,
wxWindowGTK *win )
{
wxCOMMON_CALLBACK_PROLOGUE(gdk_event, win);
// Event was emitted after an ungrab
if (gdk_event->mode != GDK_CROSSING_NORMAL) return FALSE;
wxMouseEvent event( wxEVT_LEAVE_WINDOW );
event.SetTimestamp( gdk_event->time );
event.SetEventObject( win );
int x = 0;
int y = 0;
GdkModifierType state = (GdkModifierType)0;
gdk_window_get_pointer( widget->window, &x, &y, &state );
event.m_shiftDown = (state & GDK_SHIFT_MASK) != 0;
event.m_controlDown = (state & GDK_CONTROL_MASK) != 0;
event.m_altDown = (state & GDK_MOD1_MASK) != 0;
event.m_metaDown = (state & GDK_META_MASK) != 0;
event.m_leftDown = (state & GDK_BUTTON1_MASK) != 0;
event.m_middleDown = (state & GDK_BUTTON2_MASK) != 0;
event.m_rightDown = (state & GDK_BUTTON3_MASK) != 0;
wxPoint pt = win->GetClientAreaOrigin();
event.m_x = x + pt.x;
event.m_y = y + pt.y;
return win->GTKProcessEvent(event);
}
//-----------------------------------------------------------------------------
// "value_changed" from scrollbar
//-----------------------------------------------------------------------------
static void
gtk_scrollbar_value_changed(GtkRange* range, wxWindow* win)
{
wxEventType eventType = win->GetScrollEventType(range);
if (eventType != wxEVT_NULL)
{
// Convert scroll event type to scrollwin event type
eventType += wxEVT_SCROLLWIN_TOP - wxEVT_SCROLL_TOP;
// find the scrollbar which generated the event
wxWindowGTK::ScrollDir dir = win->ScrollDirFromRange(range);
// generate the corresponding wx event
const int orient = wxWindow::OrientFromScrollDir(dir);
wxScrollWinEvent event(eventType, win->GetScrollPos(orient), orient);
event.SetEventObject(win);
win->GTKProcessEvent(event);
}
}
//-----------------------------------------------------------------------------
// "button_press_event" from scrollbar
//-----------------------------------------------------------------------------
static gboolean
gtk_scrollbar_button_press_event(GtkRange*, GdkEventButton*, wxWindow* win)
{
DEBUG_MAIN_THREAD
// don't need to install idle handler, its done from "event" signal
g_blockEventsOnScroll = true;
win->m_mouseButtonDown = true;
return false;
}
//-----------------------------------------------------------------------------
// "event_after" from scrollbar
//-----------------------------------------------------------------------------
static void
gtk_scrollbar_event_after(GtkRange* range, GdkEvent* event, wxWindow* win)
{
if (event->type == GDK_BUTTON_RELEASE)
{
g_signal_handlers_block_by_func(range, (void*)gtk_scrollbar_event_after, win);
const int orient = wxWindow::OrientFromScrollDir(
win->ScrollDirFromRange(range));
wxScrollWinEvent event(wxEVT_SCROLLWIN_THUMBRELEASE, win->GetScrollPos(orient), orient);
event.SetEventObject(win);
win->GTKProcessEvent(event);
}
}
//-----------------------------------------------------------------------------
// "button_release_event" from scrollbar
//-----------------------------------------------------------------------------
static gboolean
gtk_scrollbar_button_release_event(GtkRange* range, GdkEventButton*, wxWindow* win)
{
DEBUG_MAIN_THREAD
g_blockEventsOnScroll = false;
win->m_mouseButtonDown = false;
// If thumb tracking
if (win->m_isScrolling)
{
win->m_isScrolling = false;
// Hook up handler to send thumb release event after this emission is finished.
// To allow setting scroll position from event handler, sending event must
// be deferred until after the GtkRange handler for this signal has run
g_signal_handlers_unblock_by_func(range, (void*)gtk_scrollbar_event_after, win);
}
return false;
}
//-----------------------------------------------------------------------------
// "realize" from m_widget
//-----------------------------------------------------------------------------
/* We cannot set colours and fonts before the widget has
been realized, so we do this directly after realization. */
static void
gtk_window_realized_callback( GtkWidget *m_widget, wxWindow *win )
{
DEBUG_MAIN_THREAD
if (g_isIdle)
wxapp_install_idle_handler();
if (win->m_imData)
{
GtkPizza *pizza = GTK_PIZZA( m_widget );
gtk_im_context_set_client_window( win->m_imData->context,
pizza->bin_window );
}
wxWindowCreateEvent event( win );
event.SetEventObject( win );
win->GTKProcessEvent( event );
}
//-----------------------------------------------------------------------------
// "size_allocate"
//-----------------------------------------------------------------------------
static
void gtk_window_size_callback( GtkWidget *WXUNUSED(widget),
GtkAllocation *alloc,
wxWindow *win )
{
if (g_isIdle)
wxapp_install_idle_handler();
int client_width = 0;
int client_height = 0;
win->GetClientSize( &client_width, &client_height );
if ((client_width == win->m_oldClientWidth) && (client_height == win->m_oldClientHeight))
return;
if ( !client_width && !client_height )
{
// the window is currently unmapped, don't generate size events
return;
}
win->m_oldClientWidth = client_width;
win->m_oldClientHeight = client_height;
if (!win->m_nativeSizeEvent)
{
wxSizeEvent event( win->GetSize(), win->GetId() );
event.SetEventObject( win );
win->GTKProcessEvent( event );
}
}
//-----------------------------------------------------------------------------
// "style_set"
//-----------------------------------------------------------------------------
static
void gtk_window_style_set_callback( GtkWidget *widget,
GtkStyle *previous_style,
wxWindow* win )
{
if (win && previous_style)
{
wxSysColourChangedEvent event;
event.SetEventObject(win);
win->GTKProcessEvent( event );
}
}
} // extern "C"
// Connect/disconnect style-set
void wxConnectStyleSet(wxWindow* win)
{
if (win->m_wxwindow)
g_signal_connect (win->m_wxwindow, "style_set",
G_CALLBACK (gtk_window_style_set_callback), win);
}
void wxDisconnectStyleSet(wxWindow* win)
{
if (win->m_wxwindow)
g_signal_handlers_disconnect_by_func (win->m_wxwindow,
(gpointer) gtk_window_style_set_callback,
win);
}
// Helper to suspend colour change event event processing while we change a widget's style
class wxSuspendStyleEvents
{
public:
wxSuspendStyleEvents(wxWindow* win)
{
m_win = win;
#if USE_STYLE_SET_CALLBACK
if (win->IsTopLevel())
wxDisconnectStyleSet(win);
#endif
}
~wxSuspendStyleEvents()
{
#if USE_STYLE_SET_CALLBACK
if (m_win->IsTopLevel())
wxConnectStyleSet(m_win);
#endif
}
wxWindow* m_win;
};
// ----------------------------------------------------------------------------
// this wxWindowBase function is implemented here (in platform-specific file)
// because it is static and so couldn't be made virtual
// ----------------------------------------------------------------------------
wxWindow *wxWindowBase::DoFindFocus()
{
// the cast is necessary when we compile in wxUniversal mode
return (wxWindow *)(g_focusWindowPending ? g_focusWindowPending : g_focusWindow);
}
//-----------------------------------------------------------------------------
// InsertChild for wxWindowGTK.
//-----------------------------------------------------------------------------
/* Callback for wxWindowGTK. This very strange beast has to be used because
* C++ has no virtual methods in a constructor. We have to emulate a
* virtual function here as wxNotebook requires a different way to insert
* a child in it. I had opted for creating a wxNotebookPage window class
* which would have made this superfluous (such in the MDI window system),
* but no-one was listening to me... */
static void wxInsertChildInWindow( wxWindowGTK* parent, wxWindowGTK* child )
{
/* the window might have been scrolled already, do we
have to adapt the position */
GtkPizza *pizza = GTK_PIZZA(parent->m_wxwindow);
child->m_x += gtk_pizza_get_xoffset( pizza );
child->m_y += gtk_pizza_get_yoffset( pizza );
gtk_pizza_put( GTK_PIZZA(parent->m_wxwindow),
GTK_WIDGET(child->m_widget),
child->m_x,
child->m_y,
child->m_width,
child->m_height );
}
//-----------------------------------------------------------------------------
// global functions
//-----------------------------------------------------------------------------
wxWindow *wxGetActiveWindow()
{
return wxWindow::FindFocus();
}
wxMouseState wxGetMouseState()
{
wxMouseState ms;
gint x;
gint y;
GdkModifierType mask;
gdk_window_get_pointer(NULL, &x, &y, &mask);
ms.SetX(x);
ms.SetY(y);
ms.SetLeftDown(mask & GDK_BUTTON1_MASK);
ms.SetMiddleDown(mask & GDK_BUTTON2_MASK);
ms.SetRightDown(mask & GDK_BUTTON3_MASK);
ms.SetControlDown(mask & GDK_CONTROL_MASK);
ms.SetShiftDown(mask & GDK_SHIFT_MASK);
ms.SetAltDown(mask & GDK_MOD1_MASK);
ms.SetMetaDown(mask & GDK_META_MASK);
return ms;
}
//-----------------------------------------------------------------------------
// wxWindowGTK
//-----------------------------------------------------------------------------
// in wxUniv/MSW this class is abstract because it doesn't have DoPopupMenu()
// method
#ifdef __WXUNIVERSAL__
IMPLEMENT_ABSTRACT_CLASS(wxWindowGTK, wxWindowBase)
#else // __WXGTK__
IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase)
#endif // __WXUNIVERSAL__/__WXGTK__
void wxWindowGTK::Init()
{
// GTK specific
m_widget = (GtkWidget *) NULL;
m_wxwindow = (GtkWidget *) NULL;
m_focusWidget = (GtkWidget *) NULL;
// position/size
m_x = 0;
m_y = 0;
m_width = 0;
m_height = 0;
m_sizeSet = false;
m_hasVMT = false;
m_needParent = true;
m_isBeingDeleted = false;
m_showOnIdle= false;
m_noExpose = false;
m_nativeSizeEvent = false;
m_hasScrolling = false;
m_isScrolling = false;
m_mouseButtonDown = false;
m_blockScrollEvent = false;
// initialize scrolling stuff
for ( int dir = 0; dir < ScrollDir_Max; dir++ )
{
m_scrollBar[dir] = NULL;
m_scrollPos[dir] = 0;
m_blockValueChanged[dir] = false;
}
m_oldClientWidth =
m_oldClientHeight = 0;
m_resizing = false;
m_insertCallback = (wxInsertChildFunction) NULL;
m_acceptsFocus = false;
m_hasFocus = false;
m_clipPaintRegion = false;
m_needsStyleChange = false;
m_cursor = *wxSTANDARD_CURSOR;
m_imData = NULL;
m_dirtyTabOrder = false;
}
wxWindowGTK::wxWindowGTK()
{
Init();
}
wxWindowGTK::wxWindowGTK( wxWindow *parent,
wxWindowID id,
const wxPoint &pos,
const wxSize &size,
long style,
const wxString &name )
{
Init();
Create( parent, id, pos, size, style, name );
}
bool wxWindowGTK::Create( wxWindow *parent,
wxWindowID id,
const wxPoint &pos,
const wxSize &size,
long style,
const wxString &name )
{
if (!PreCreation( parent, pos, size ) ||
!CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
{
wxFAIL_MSG( wxT("wxWindowGTK creation failed") );
return false;
}
m_insertCallback = wxInsertChildInWindow;
m_widget = gtk_scrolled_window_new( (GtkAdjustment *) NULL, (GtkAdjustment *) NULL );
GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS );
GtkScrolledWindow *scrolledWindow = GTK_SCROLLED_WINDOW(m_widget);
GtkScrolledWindowClass *scroll_class = GTK_SCROLLED_WINDOW_CLASS( GTK_OBJECT_GET_CLASS(m_widget) );
scroll_class->scrollbar_spacing = 0;
if (HasFlag(wxALWAYS_SHOW_SB))
{
gtk_scrolled_window_set_policy( scrolledWindow, GTK_POLICY_ALWAYS, GTK_POLICY_ALWAYS );
scrolledWindow->hscrollbar_visible = TRUE;
scrolledWindow->vscrollbar_visible = TRUE;
}
else
{
gtk_scrolled_window_set_policy( scrolledWindow, GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC );
}
m_scrollBar[ScrollDir_Horz] = GTK_RANGE(scrolledWindow->hscrollbar);
m_scrollBar[ScrollDir_Vert] = GTK_RANGE(scrolledWindow->vscrollbar);
if (GetLayoutDirection() == wxLayout_RightToLeft)
gtk_range_set_inverted( m_scrollBar[ScrollDir_Horz], TRUE );
m_wxwindow = gtk_pizza_new();
#ifndef __WXUNIVERSAL__
if (HasFlag(wxSIMPLE_BORDER))
gtk_container_set_border_width((GtkContainer*)m_wxwindow, 1);
else if (HasFlag(wxRAISED_BORDER) || HasFlag(wxSUNKEN_BORDER))
gtk_container_set_border_width((GtkContainer*)m_wxwindow, 2);
#endif // __WXUNIVERSAL__
gtk_container_add( GTK_CONTAINER(m_widget), m_wxwindow );
GTK_WIDGET_SET_FLAGS( m_wxwindow, GTK_CAN_FOCUS );
m_acceptsFocus = true;
// connect various scroll-related events
for ( int dir = 0; dir < ScrollDir_Max; dir++ )
{
// these handlers block mouse events to any window during scrolling
// such as motion events and prevent GTK and wxWidgets from fighting
// over where the slider should be
g_signal_connect(m_scrollBar[dir], "button_press_event",
G_CALLBACK(gtk_scrollbar_button_press_event), this);
g_signal_connect(m_scrollBar[dir], "button_release_event",
G_CALLBACK(gtk_scrollbar_button_release_event), this);
gulong handler_id = g_signal_connect(m_scrollBar[dir], "event_after",
G_CALLBACK(gtk_scrollbar_event_after), this);
g_signal_handler_block(m_scrollBar[dir], handler_id);
// these handlers get notified when scrollbar slider moves
g_signal_connect_after(m_scrollBar[dir], "value_changed",
G_CALLBACK(gtk_scrollbar_value_changed), this);
}
gtk_widget_show( m_wxwindow );
if (m_parent)
m_parent->DoAddChild( this );
m_focusWidget = m_wxwindow;
PostCreation();
return true;
}
wxWindowGTK::~wxWindowGTK()
{
SendDestroyEvent();
if (g_focusWindow == this)
g_focusWindow = NULL;
if (g_focusWindowPending == this)
g_focusWindowPending = NULL;
if ( g_delayedFocus == this )
g_delayedFocus = NULL;
m_isBeingDeleted = true;
m_hasVMT = false;
// destroy children before destroying this window itself
DestroyChildren();
// unhook focus handlers to prevent stray events being
// propagated to this (soon to be) dead object
if (m_focusWidget != NULL)
{
g_signal_handlers_disconnect_by_func (m_focusWidget,
(gpointer) gtk_window_focus_in_callback,
this);
g_signal_handlers_disconnect_by_func (m_focusWidget,
(gpointer) gtk_window_focus_out_callback,
this);
}
if (m_widget)
Show( false );
// delete before the widgets to avoid a crash on solaris
delete m_imData;
if (m_wxwindow)
{
gtk_widget_destroy( m_wxwindow );
m_wxwindow = (GtkWidget*) NULL;
}
if (m_widget)
{
gtk_widget_destroy( m_widget );
m_widget = (GtkWidget*) NULL;
}
}
bool wxWindowGTK::PreCreation( wxWindowGTK *parent, const wxPoint &pos, const wxSize &size )
{
wxCHECK_MSG( !m_needParent || parent, false, wxT("Need complete parent.") );
// Use either the given size, or the default if -1 is given.
// See wxWindowBase for these functions.
m_width = WidthDefault(size.x) ;
m_height = HeightDefault(size.y);
m_x = (int)pos.x;
m_y = (int)pos.y;
return true;
}
void wxWindowGTK::PostCreation()
{
wxASSERT_MSG( (m_widget != NULL), wxT("invalid window") );
if (m_wxwindow)
{
if (!m_noExpose)
{
// these get reported to wxWidgets -> wxPaintEvent
g_signal_connect (m_wxwindow, "expose_event",
G_CALLBACK (gtk_window_expose_callback), this);
if (GetLayoutDirection() == wxLayout_LeftToRight)
gtk_widget_set_redraw_on_allocate( GTK_WIDGET(m_wxwindow), HasFlag( wxFULL_REPAINT_ON_RESIZE ) );
}
// Create input method handler
m_imData = new wxGtkIMData;
// Cannot handle drawing preedited text yet
gtk_im_context_set_use_preedit( m_imData->context, FALSE );
g_signal_connect (m_imData->context, "commit",
G_CALLBACK (gtk_wxwindow_commit_cb), this);
// these are called when the "sunken" or "raised" borders are drawn
g_signal_connect (m_widget, "expose_event",
G_CALLBACK (gtk_window_own_expose_callback), this);
}
// focus handling
if (!GTK_IS_WINDOW(m_widget))
{
if (m_focusWidget == NULL)
m_focusWidget = m_widget;
if (m_wxwindow)
{
g_signal_connect (m_focusWidget, "focus_in_event",
G_CALLBACK (gtk_window_focus_in_callback), this);
g_signal_connect (m_focusWidget, "focus_out_event",
G_CALLBACK (gtk_window_focus_out_callback), this);
}
else
{
g_signal_connect_after (m_focusWidget, "focus_in_event",
G_CALLBACK (gtk_window_focus_in_callback), this);
g_signal_connect_after (m_focusWidget, "focus_out_event",
G_CALLBACK (gtk_window_focus_out_callback), this);
}
}
// connect to the various key and mouse handlers
GtkWidget *connect_widget = GetConnectWidget();
ConnectWidget( connect_widget );
/* We cannot set colours, fonts and cursors before the widget has
been realized, so we do this directly after realization */
g_signal_connect (connect_widget, "realize",
G_CALLBACK (gtk_window_realized_callback), this);
if (m_wxwindow)
{
// Catch native resize events
g_signal_connect (m_wxwindow, "size_allocate",
G_CALLBACK (gtk_window_size_callback), this);
}
if (GTK_IS_COMBO(m_widget))
{
GtkCombo *gcombo = GTK_COMBO(m_widget);
g_signal_connect (gcombo->entry, "size_request",
G_CALLBACK (wxgtk_combo_size_request_callback),
this);
}
#ifdef GTK_IS_FILE_CHOOSER_BUTTON
else if (!gtk_check_version(2,6,0) && GTK_IS_FILE_CHOOSER_BUTTON(m_widget))
{
// If we connect to the "size_request" signal of a GtkFileChooserButton
// then that control won't be sized properly when placed inside sizers
// (this can be tested removing this elseif and running XRC or WIDGETS samples)
// FIXME: what should be done here ?
}
#endif
else
{
// This is needed if we want to add our windows into native
// GTK controls, such as the toolbar. With this callback, the
// toolbar gets to know the correct size (the one set by the
// programmer). Sadly, it misbehaves for wxComboBox.
g_signal_connect (m_widget, "size_request",
G_CALLBACK (wxgtk_window_size_request_callback),
this);
}
InheritAttributes();
m_hasVMT = true;
SetLayoutDirection(wxLayout_Default);
// unless the window was created initially hidden (i.e. Hide() had been
// called before Create()), we should show it at GTK+ level as well
if ( IsShown() )
gtk_widget_show( m_widget );
}
void wxWindowGTK::ConnectWidget( GtkWidget *widget )
{
g_signal_connect (widget, "key_press_event",
G_CALLBACK (gtk_window_key_press_callback), this);
g_signal_connect (widget, "key_release_event",
G_CALLBACK (gtk_window_key_release_callback), this);
g_signal_connect (widget, "button_press_event",
G_CALLBACK (gtk_window_button_press_callback), this);
g_signal_connect (widget, "button_release_event",
G_CALLBACK (gtk_window_button_release_callback), this);
g_signal_connect (widget, "motion_notify_event",
G_CALLBACK (gtk_window_motion_notify_callback), this);
g_signal_connect (widget, "scroll_event",
G_CALLBACK (window_scroll_event), this);
g_signal_connect (widget, "popup_menu",
G_CALLBACK (wxgtk_window_popup_menu_callback), this);
g_signal_connect (widget, "enter_notify_event",
G_CALLBACK (gtk_window_enter_callback), this);
g_signal_connect (widget, "leave_notify_event",
G_CALLBACK (gtk_window_leave_callback), this);
#if USE_STYLE_SET_CALLBACK
if (IsTopLevel() && m_wxwindow)
g_signal_connect (m_wxwindow, "style_set",
G_CALLBACK (gtk_window_style_set_callback), this);
#endif
}
bool wxWindowGTK::Destroy()
{
wxASSERT_MSG( (m_widget != NULL), wxT("invalid window") );
m_hasVMT = false;
return wxWindowBase::Destroy();
}
void wxWindowGTK::DoMoveWindow(int x, int y, int width, int height)
{
// inform the parent to perform the move
gtk_pizza_set_size( GTK_PIZZA(m_parent->m_wxwindow), m_widget, x, y, width, height );
}
void wxWindowGTK::DoSetSize( int x, int y, int width, int height, int sizeFlags )
{
wxASSERT_MSG( (m_widget != NULL), wxT("invalid window") );
wxASSERT_MSG( (m_parent != NULL), wxT("wxWindowGTK::SetSize requires parent.\n") );
if (m_resizing) return; /* I don't like recursions */
m_resizing = true;
int currentX, currentY;
GetPosition(¤tX, ¤tY);
if (x == -1 && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
x = currentX;
if (y == -1 && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
y = currentY;
AdjustForParentClientOrigin(x, y, sizeFlags);
// calculate the best size if we should auto size the window
if ( ((sizeFlags & wxSIZE_AUTO_WIDTH) && width == -1) ||
((sizeFlags & wxSIZE_AUTO_HEIGHT) && height == -1) )
{
const wxSize sizeBest = GetBestSize();
if ( (sizeFlags & wxSIZE_AUTO_WIDTH) && width == -1 )
width = sizeBest.x;
if ( (sizeFlags & wxSIZE_AUTO_HEIGHT) && height == -1 )
height = sizeBest.y;
}
if (width != -1)
m_width = width;
if (height != -1)
m_height = height;
int minWidth = GetMinWidth(),
minHeight = GetMinHeight(),
maxWidth = GetMaxWidth(),
maxHeight = GetMaxHeight();
if ((minWidth != -1) && (m_width < minWidth )) m_width = minWidth;
if ((minHeight != -1) && (m_height < minHeight)) m_height = minHeight;
if ((maxWidth != -1) && (m_width > maxWidth )) m_width = maxWidth;
if ((maxHeight != -1) && (m_height > maxHeight)) m_height = maxHeight;
#if wxUSE_TOOLBAR_NATIVE
if (wxDynamicCast(GetParent(), wxToolBar))
{
// don't take the x,y values, they're wrong because toolbar sets them
GtkWidget *widget = GTK_WIDGET(m_widget);
gtk_widget_set_size_request (widget, m_width, m_height);
}
else
#endif
if (m_parent->m_wxwindow == NULL) // i.e. wxNotebook
{
// don't set the size for children of wxNotebook, just take the values.
m_x = x;
m_y = y;
m_width = width;
m_height = height;
}
else
{
GtkPizza *pizza = GTK_PIZZA(m_parent->m_wxwindow);
if ((sizeFlags & wxSIZE_ALLOW_MINUS_ONE) == 0)
{
if (x != -1) m_x = x + gtk_pizza_get_xoffset( pizza );
if (y != -1) m_y = y + gtk_pizza_get_yoffset( pizza );
}
else
{
m_x = x + gtk_pizza_get_xoffset( pizza );
m_y = y + gtk_pizza_get_yoffset( pizza );
}
int left_border = 0;
int right_border = 0;
int top_border = 0;
int bottom_border = 0;
/* the default button has a border around it */
if (GTK_WIDGET_CAN_DEFAULT(m_widget))
{
GtkBorder *default_border = NULL;
gtk_widget_style_get( m_widget, "default_border", &default_border, NULL );
if (default_border)
{
left_border += default_border->left;
right_border += default_border->right;
top_border += default_border->top;
bottom_border += default_border->bottom;
gtk_border_free( default_border );
}
}
DoMoveWindow( m_x - left_border,
m_y - top_border,
m_width+left_border+right_border,
m_height+top_border+bottom_border );
}
if (m_hasScrolling)
{
/* Sometimes the client area changes size without the
whole windows's size changing, but if the whole
windows's size doesn't change, no wxSizeEvent will
normally be sent. Here we add an extra test if
the client test has been changed and this will
be used then. */
GetClientSize( &m_oldClientWidth, &m_oldClientHeight );
}
/*
wxPrintf( "OnSize sent from " );
if (GetClassInfo() && GetClassInfo()->GetClassName())
wxPrintf( GetClassInfo()->GetClassName() );
wxPrintf( " %d %d %d %d\n", (int)m_x, (int)m_y, (int)m_width, (int)m_height );
*/
if (!m_nativeSizeEvent)
{
wxSizeEvent event( wxSize(m_width,m_height), GetId() );
event.SetEventObject( this );
GetEventHandler()->ProcessEvent( event );
}
m_resizing = false;
}
bool wxWindowGTK::GtkShowFromOnIdle()
{
if (IsShown() && m_showOnIdle && !GTK_WIDGET_VISIBLE (m_widget))
{
GtkAllocation alloc;
alloc.x = m_x;
alloc.y = m_y;
alloc.width = m_width;
alloc.height = m_height;
gtk_widget_size_allocate( m_widget, &alloc );
gtk_widget_show( m_widget );
wxShowEvent eventShow(GetId(), true);
eventShow.SetEventObject(this);
GetEventHandler()->ProcessEvent(eventShow);
m_showOnIdle = false;
return true;
}
return false;
}
void wxWindowGTK::OnInternalIdle()
{
// Check if we have to show window now
if (GtkShowFromOnIdle()) return;
if ( m_dirtyTabOrder )
{
m_dirtyTabOrder = false;
RealizeTabOrder();
}
// Update style if the window was not yet realized
// and SetBackgroundStyle(wxBG_STYLE_CUSTOM) was called
if (m_needsStyleChange)
{
SetBackgroundStyle(GetBackgroundStyle());
m_needsStyleChange = false;
}
wxCursor cursor = m_cursor;
if (g_globalCursor.Ok()) cursor = g_globalCursor;
if (cursor.Ok())
{
/* I now set the cursor anew in every OnInternalIdle call
as setting the cursor in a parent window also effects the
windows above so that checking for the current cursor is
not possible. */
if (m_wxwindow)
{
GdkWindow *window = GTK_PIZZA(m_wxwindow)->bin_window;
if (window)
gdk_window_set_cursor( window, cursor.GetCursor() );
if (!g_globalCursor.Ok())
cursor = *wxSTANDARD_CURSOR;
window = m_widget->window;
if ((window) && !(GTK_WIDGET_NO_WINDOW(m_widget)))
gdk_window_set_cursor( window, cursor.GetCursor() );
}
else if ( m_widget )
{
GdkWindow *window = m_widget->window;
if ( window && !GTK_WIDGET_NO_WINDOW(m_widget) )
gdk_window_set_cursor( window, cursor.GetCursor() );
}
}
if (wxUpdateUIEvent::CanUpdate(this) && IsShownOnScreen())
UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
}
void wxWindowGTK::DoGetSize( int *width, int *height ) const
{
wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
if (width) (*width) = m_width;
if (height) (*height) = m_height;
}
void wxWindowGTK::DoSetClientSize( int width, int height )
{
wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
if (m_wxwindow)
{
int dw = 0;
int dh = 0;
if (m_hasScrolling)
{
GetScrollbarWidth(m_widget, dw, dh);
}
const int border = GTK_CONTAINER(m_wxwindow)->border_width;
dw += 2 * border;
dh += 2 * border;
width += dw;
height += dh;
}
SetSize(width, height);
}
void wxWindowGTK::DoGetClientSize( int *width, int *height ) const
{
wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
int w = m_width;
int h = m_height;
if (m_wxwindow)
{
int dw = 0;
int dh = 0;
if (m_hasScrolling)
GetScrollbarWidth(m_widget, dw, dh);
const int border = GTK_CONTAINER(m_wxwindow)->border_width;
dw += 2 * border;
dh += 2 * border;
w -= dw;
h -= dh;
if (w < 0)
w = 0;
if (h < 0)
h = 0;
}
if (width) *width = w;
if (height) *height = h;
}
void wxWindowGTK::DoGetPosition( int *x, int *y ) const
{
wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
int dx = 0;
int dy = 0;
if (!IsTopLevel() && m_parent && m_parent->m_wxwindow)
{
GtkPizza *pizza = GTK_PIZZA(m_parent->m_wxwindow);
dx = gtk_pizza_get_xoffset( pizza );
dy = gtk_pizza_get_yoffset( pizza );
}
if (m_x == -1 && m_y == -1)
{
GdkWindow *source = (GdkWindow *) NULL;
if (m_wxwindow)
source = GTK_PIZZA(m_wxwindow)->bin_window;
else
source = m_widget->window;
if (source)
{
int org_x = 0;
int org_y = 0;
gdk_window_get_origin( source, &org_x, &org_y );
if (GetParent())
GetParent()->ScreenToClient(&org_x, &org_y);
wx_const_cast(wxWindowGTK*, this)->m_x = org_x;
wx_const_cast(wxWindowGTK*, this)->m_y = org_y;
}
}
if (x) (*x) = m_x - dx;
if (y) (*y) = m_y - dy;
}
void wxWindowGTK::DoClientToScreen( int *x, int *y ) const
{
wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
if (!m_widget->window) return;
GdkWindow *source = (GdkWindow *) NULL;
if (m_wxwindow)
source = GTK_PIZZA(m_wxwindow)->bin_window;
else
source = m_widget->window;
int org_x = 0;
int org_y = 0;
gdk_window_get_origin( source, &org_x, &org_y );
if (!m_wxwindow)
{
if (GTK_WIDGET_NO_WINDOW (m_widget))
{
org_x += m_widget->allocation.x;
org_y += m_widget->allocation.y;
}
}
if (x)
{
if (GetLayoutDirection() == wxLayout_RightToLeft)
*x = (GetClientSize().x - *x) + org_x;
else
*x += org_x;
}
if (y) *y += org_y;
}
void wxWindowGTK::DoScreenToClient( int *x, int *y ) const
{
wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
if (!m_widget->window) return;
GdkWindow *source = (GdkWindow *) NULL;
if (m_wxwindow)
source = GTK_PIZZA(m_wxwindow)->bin_window;
else
source = m_widget->window;
int org_x = 0;
int org_y = 0;
gdk_window_get_origin( source, &org_x, &org_y );
if (!m_wxwindow)
{
if (GTK_WIDGET_NO_WINDOW (m_widget))
{
org_x += m_widget->allocation.x;
org_y += m_widget->allocation.y;
}
}
if (x)
{
if (GetLayoutDirection() == wxLayout_RightToLeft)
*x = (GetClientSize().x - *x) - org_x;
else
*x -= org_x;
}
if (y) *y -= org_y;
}
bool wxWindowGTK::Show( bool show )
{
wxCHECK_MSG( (m_widget != NULL), false, wxT("invalid window") );
if (!wxWindowBase::Show(show))
{
// nothing to do
return false;
}
if (show)
{
if (!m_showOnIdle)
{
gtk_widget_show( m_widget );
wxShowEvent eventShow(GetId(), show);
eventShow.SetEventObject(this);
GetEventHandler()->ProcessEvent(eventShow);
}
}
else
{
gtk_widget_hide( m_widget );
wxShowEvent eventShow(GetId(), show);
eventShow.SetEventObject(this);
GetEventHandler()->ProcessEvent(eventShow);
}
return true;
}
static void wxWindowNotifyEnable(wxWindowGTK* win, bool enable)
{
win->OnParentEnable(enable);
// Recurse, so that children have the opportunity to Do The Right Thing
// and reset colours that have been messed up by a parent's (really ancestor's)
// Enable call
for ( wxWindowList::compatibility_iterator node = win->GetChildren().GetFirst();
node;
node = node->GetNext() )
{
wxWindow *child = node->GetData();
if (!child->IsKindOf(CLASSINFO(wxDialog)) && !child->IsKindOf(CLASSINFO(wxFrame)))
wxWindowNotifyEnable(child, enable);
}
}
bool wxWindowGTK::Enable( bool enable )
{
wxCHECK_MSG( (m_widget != NULL), false, wxT("invalid window") );
if (!wxWindowBase::Enable(enable))
{
// nothing to do
return false;
}
gtk_widget_set_sensitive( m_widget, enable );
if ( m_wxwindow )
gtk_widget_set_sensitive( m_wxwindow, enable );
wxWindowNotifyEnable(this, enable);
return true;
}
int wxWindowGTK::GetCharHeight() const
{
wxCHECK_MSG( (m_widget != NULL), 12, wxT("invalid window") );
wxFont font = GetFont();
wxCHECK_MSG( font.Ok(), 12, wxT("invalid font") );
PangoContext *context = NULL;
if (m_widget)
context = gtk_widget_get_pango_context( m_widget );
if (!context)
return 0;
PangoFontDescription *desc = font.GetNativeFontInfo()->description;
PangoLayout *layout = pango_layout_new(context);
pango_layout_set_font_description(layout, desc);
pango_layout_set_text(layout, "H", 1);
PangoLayoutLine *line = (PangoLayoutLine *)pango_layout_get_lines(layout)->data;
PangoRectangle rect;
pango_layout_line_get_extents(line, NULL, &rect);
g_object_unref (layout);
return (int) PANGO_PIXELS(rect.height);
}
int wxWindowGTK::GetCharWidth() const
{
wxCHECK_MSG( (m_widget != NULL), 8, wxT("invalid window") );
wxFont font = GetFont();
wxCHECK_MSG( font.Ok(), 8, wxT("invalid font") );
PangoContext *context = NULL;
if (m_widget)
context = gtk_widget_get_pango_context( m_widget );
if (!context)
return 0;
PangoFontDescription *desc = font.GetNativeFontInfo()->description;
PangoLayout *layout = pango_layout_new(context);
pango_layout_set_font_description(layout, desc);
pango_layout_set_text(layout, "g", 1);
PangoLayoutLine *line = (PangoLayoutLine *)pango_layout_get_lines(layout)->data;
PangoRectangle rect;
pango_layout_line_get_extents(line, NULL, &rect);
g_object_unref (layout);
return (int) PANGO_PIXELS(rect.width);
}
void wxWindowGTK::GetTextExtent( const wxString& string,
int *x,
int *y,
int *descent,
int *externalLeading,
const wxFont *theFont ) const
{
wxFont fontToUse = theFont ? *theFont : GetFont();
wxCHECK_RET( fontToUse.Ok(), wxT("invalid font") );
if (string.empty())
{
if (x) (*x) = 0;
if (y) (*y) = 0;
return;
}
PangoContext *context = NULL;
if (m_widget)
context = gtk_widget_get_pango_context( m_widget );
if (!context)
{
if (x) (*x) = 0;
if (y) (*y) = 0;
return;
}
PangoFontDescription *desc = fontToUse.GetNativeFontInfo()->description;
PangoLayout *layout = pango_layout_new(context);
pango_layout_set_font_description(layout, desc);
{
const wxCharBuffer data = wxGTK_CONV( string );
if ( data )
pango_layout_set_text(layout, data, strlen(data));
}
PangoRectangle rect;
pango_layout_get_extents(layout, NULL, &rect);
if (x) (*x) = (wxCoord) PANGO_PIXELS(rect.width);
if (y) (*y) = (wxCoord) PANGO_PIXELS(rect.height);
if (descent)
{
PangoLayoutIter *iter = pango_layout_get_iter(layout);
int baseline = pango_layout_iter_get_baseline(iter);
pango_layout_iter_free(iter);
*descent = *y - PANGO_PIXELS(baseline);
}
if (externalLeading) (*externalLeading) = 0; // ??
g_object_unref (layout);
}
bool wxWindowGTK::GTKSetDelayedFocusIfNeeded()
{
if ( g_delayedFocus == this )
{
if ( GTK_WIDGET_REALIZED(m_widget) )
{
gtk_widget_grab_focus(m_widget);
g_delayedFocus = NULL;
return true;
}
}
return false;
}
void wxWindowGTK::SetFocus()
{
wxCHECK_RET( m_widget != NULL, wxT("invalid window") );
if ( m_hasFocus )
{
// don't do anything if we already have focus
return;
}
// Setting "physical" focus is not immediate in GTK+ and while
// gtk_widget_is_focus ("determines if the widget is the focus widget
// within its toplevel", i.e. returns true for one widget per TLW, not
// globally) returns true immediately after grabbing focus,
// GTK_WIDGET_HAS_FOCUS (which returns true only for the one widget that
// has focus at the moment) takes affect only after the window is shown
// (if it was hidden at the moment of the call) or at the next event loop
// iteration.
//
// Because we want to FindFocus() call immediately following
// foo->SetFocus() to return foo, we have to keep track of "pending" focus
// ourselves.
g_focusWindowPending = this;
if (m_wxwindow)
{
if (!GTK_WIDGET_HAS_FOCUS (m_wxwindow))
{
gtk_widget_grab_focus (m_wxwindow);
}
}
else if (m_widget)
{
if (GTK_IS_CONTAINER(m_widget))
{
if (IsKindOf(CLASSINFO(wxRadioButton)))
{
gtk_widget_grab_focus (m_widget);
return;
}
gtk_widget_child_focus( m_widget, GTK_DIR_TAB_FORWARD );
}
else
if (GTK_WIDGET_CAN_FOCUS(m_widget) && !GTK_WIDGET_HAS_FOCUS (m_widget) )
{
if (!GTK_WIDGET_REALIZED(m_widget))
{
// we can't set the focus to the widget now so we remember that
// it should be focused and will do it later, during the idle
// time, as soon as we can
wxLogTrace(TRACE_FOCUS,
_T("Delaying setting focus to %s(%s)"),
GetClassInfo()->GetClassName(), GetLabel().c_str());
g_delayedFocus = this;
}
else
{
wxLogTrace(TRACE_FOCUS,
_T("Setting focus to %s(%s)"),
GetClassInfo()->GetClassName(), GetLabel().c_str());
gtk_widget_grab_focus (m_widget);
}
}
else
{
wxLogTrace(TRACE_FOCUS,
_T("Can't set focus to %s(%s)"),
GetClassInfo()->GetClassName(), GetLabel().c_str());
}
}
}
bool wxWindowGTK::AcceptsFocus() const
{
return m_acceptsFocus && wxWindowBase::AcceptsFocus();
}
bool wxWindowGTK::Reparent( wxWindowBase *newParentBase )
{
wxCHECK_MSG( (m_widget != NULL), false, wxT("invalid window") );
wxWindowGTK *oldParent = m_parent,
*newParent = (wxWindowGTK *)newParentBase;
wxASSERT( GTK_IS_WIDGET(m_widget) );
if ( !wxWindowBase::Reparent(newParent) )
return false;
wxASSERT( GTK_IS_WIDGET(m_widget) );
/* prevent GTK from deleting the widget arbitrarily */
gtk_widget_ref( m_widget );
if (oldParent)
{
gtk_container_remove( GTK_CONTAINER(m_widget->parent), m_widget );
}
wxASSERT( GTK_IS_WIDGET(m_widget) );
if (newParent)
{
if (GTK_WIDGET_VISIBLE (newParent->m_widget))
{
m_showOnIdle = true;
gtk_widget_hide( m_widget );
}
/* insert GTK representation */
(*(newParent->m_insertCallback))(newParent, this);
}
/* reverse: prevent GTK from deleting the widget arbitrarily */
gtk_widget_unref( m_widget );
SetLayoutDirection(wxLayout_Default);
return true;
}
void wxWindowGTK::DoAddChild(wxWindowGTK *child)
{
wxASSERT_MSG( (m_widget != NULL), wxT("invalid window") );
wxASSERT_MSG( (child != NULL), wxT("invalid child window") );
wxASSERT_MSG( (m_insertCallback != NULL), wxT("invalid child insertion function") );
/* add to list */
AddChild( child );
/* insert GTK representation */
(*m_insertCallback)(this, child);
}
void wxWindowGTK::AddChild(wxWindowBase *child)
{
wxWindowBase::AddChild(child);
m_dirtyTabOrder = true;
if (g_isIdle)
wxapp_install_idle_handler();
}
void wxWindowGTK::RemoveChild(wxWindowBase *child)
{
wxWindowBase::RemoveChild(child);
m_dirtyTabOrder = true;
if (g_isIdle)
wxapp_install_idle_handler();
}
/* static */
wxLayoutDirection wxWindowGTK::GTKGetLayout(GtkWidget *widget)
{
return gtk_widget_get_direction(GTK_WIDGET(widget)) == GTK_TEXT_DIR_RTL
? wxLayout_RightToLeft
: wxLayout_LeftToRight;
}
/* static */
void wxWindowGTK::GTKSetLayout(GtkWidget *widget, wxLayoutDirection dir)
{
wxASSERT_MSG( dir != wxLayout_Default, _T("invalid layout direction") );
gtk_widget_set_direction(GTK_WIDGET(widget),
dir == wxLayout_RightToLeft ? GTK_TEXT_DIR_RTL
: GTK_TEXT_DIR_LTR);
}
wxLayoutDirection wxWindowGTK::GetLayoutDirection() const
{
return GTKGetLayout(m_widget);
}
void wxWindowGTK::SetLayoutDirection(wxLayoutDirection dir)
{
if ( dir == wxLayout_Default )
{
const wxWindow *const parent = GetParent();
if ( parent )
{
// inherit layout from parent.
dir = parent->GetLayoutDirection();
}
else // no parent, use global default layout
{
dir = wxTheApp->GetLayoutDirection();
}
}
if ( dir == wxLayout_Default )
return;
GTKSetLayout(m_widget, dir);
if (m_wxwindow)
GTKSetLayout(m_wxwindow, dir);
}
wxCoord
wxWindowGTK::AdjustForLayoutDirection(wxCoord x,
wxCoord WXUNUSED(width),
wxCoord WXUNUSED(widthTotal)) const
{
// We now mirrors the coordinates of RTL windows in GtkPizza
return x;
}
void wxWindowGTK::DoMoveInTabOrder(wxWindow *win, MoveKind move)
{
wxWindowBase::DoMoveInTabOrder(win, move);
m_dirtyTabOrder = true;
if (g_isIdle)
wxapp_install_idle_handler();
}
bool wxWindowGTK::GTKWidgetNeedsMnemonic() const
{
// none needed by default
return false;
}
void wxWindowGTK::GTKWidgetDoSetMnemonic(GtkWidget* WXUNUSED(w))
{
// nothing to do by default since none is needed
}
void wxWindowGTK::RealizeTabOrder()
{
if (m_wxwindow)
{
if ( !m_children.empty() )
{
// we don't only construct the correct focus chain but also use
// this opportunity to update the mnemonic widgets for the widgets
// that need them
GList *chain = NULL;
wxWindowGTK* mnemonicWindow = NULL;
for ( wxWindowList::const_iterator i = m_children.begin();
i != m_children.end();
++i )
{
wxWindowGTK *win = *i;
if ( mnemonicWindow )
{
if ( win->AcceptsFocusFromKeyboard() )
{
// wxComboBox et al. needs to focus on on a different
// widget than m_widget, so if the main widget isn't
// focusable try the connect widget
GtkWidget* w = win->m_widget;
if ( !GTK_WIDGET_CAN_FOCUS(w) )
{
w = win->GetConnectWidget();
if ( !GTK_WIDGET_CAN_FOCUS(w) )
w = NULL;
}
if ( w )
{
mnemonicWindow->GTKWidgetDoSetMnemonic(w);
mnemonicWindow = NULL;
}
}
}
else if ( win->GTKWidgetNeedsMnemonic() )
{
mnemonicWindow = win;
}
chain = g_list_prepend(chain, win->m_widget);
}
chain = g_list_reverse(chain);
gtk_container_set_focus_chain(GTK_CONTAINER(m_wxwindow), chain);
g_list_free(chain);
}
else // no children
{
gtk_container_unset_focus_chain(GTK_CONTAINER(m_wxwindow));
}
}
}
void wxWindowGTK::Raise()
{
wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
if (m_wxwindow && m_wxwindow->window)
{
gdk_window_raise( m_wxwindow->window );
}
else if (m_widget->window)
{
gdk_window_raise( m_widget->window );
}
}
void wxWindowGTK::Lower()
{
wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
if (m_wxwindow && m_wxwindow->window)
{
gdk_window_lower( m_wxwindow->window );
}
else if (m_widget->window)
{
gdk_window_lower( m_widget->window );
}
}
bool wxWindowGTK::SetCursor( const wxCursor &cursor )
{
if ( !wxWindowBase::SetCursor(cursor.Ok() ? cursor : *wxSTANDARD_CURSOR) )
return false;
GTKUpdateCursor();
return true;
}
void wxWindowGTK::GTKUpdateCursor()
{
wxCursor cursor(g_globalCursor.Ok() ? g_globalCursor : GetCursor());
if ( cursor.Ok() )
{
wxArrayGdkWindows windowsThis;
GdkWindow * const winThis = GTKGetWindow(windowsThis);
if ( winThis )
{
gdk_window_set_cursor(winThis, cursor.GetCursor());
}
else
{
const size_t count = windowsThis.size();
for ( size_t n = 0; n < count; n++ )
{
GdkWindow *win = windowsThis[n];
if ( !win )
{
wxFAIL_MSG(_T("NULL window returned by GTKGetWindow()?"));
continue;
}
gdk_window_set_cursor(win, cursor.GetCursor());
}
}
}
}
void wxWindowGTK::WarpPointer( int x, int y )
{
wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
// We provide this function ourselves as it is
// missing in GDK (top of this file).
GdkWindow *window = (GdkWindow*) NULL;
if (m_wxwindow)
window = GTK_PIZZA(m_wxwindow)->bin_window;
else
window = GetConnectWidget()->window;
if (window)
gdk_window_warp_pointer( window, x, y );
}
wxWindowGTK::ScrollDir wxWindowGTK::ScrollDirFromRange(GtkRange *range) const
{
// find the scrollbar which generated the event
for ( int dir = 0; dir < ScrollDir_Max; dir++ )
{
if ( range == m_scrollBar[dir] )
return (ScrollDir)dir;
}
wxFAIL_MSG( _T("event from unknown scrollbar received") );
return ScrollDir_Max;
}
bool wxWindowGTK::DoScrollByUnits(ScrollDir dir, ScrollUnit unit, int units)
{
bool changed = false;
GtkRange* range = m_scrollBar[dir];
if ( range && units )
{
GtkAdjustment* adj = range->adjustment;
gdouble inc = unit == ScrollUnit_Line ? adj->step_increment
: adj->page_increment;
const int posOld = int(adj->value + 0.5);
gtk_range_set_value(range, posOld + units*inc);
changed = int(adj->value + 0.5) != posOld;
}
return changed;
}
bool wxWindowGTK::ScrollLines(int lines)
{
return DoScrollByUnits(ScrollDir_Vert, ScrollUnit_Line, lines);
}
bool wxWindowGTK::ScrollPages(int pages)
{
return DoScrollByUnits(ScrollDir_Vert, ScrollUnit_Page, pages);
}
void wxWindowGTK::Refresh( bool eraseBackground, const wxRect *rect )
{
if (!m_widget)
return;
if (!m_widget->window)
return;
if (m_wxwindow)
{
if (!GTK_PIZZA(m_wxwindow)->bin_window) return;
GdkRectangle gdk_rect,
*p;
if (rect)
{
gdk_rect.x = rect->x;
gdk_rect.y = rect->y;
gdk_rect.width = rect->width;
gdk_rect.height = rect->height;
if (GetLayoutDirection() == wxLayout_RightToLeft)
gdk_rect.x = GetClientSize().x - gdk_rect.x - gdk_rect.width;
p = &gdk_rect;
}
else // invalidate everything
{
p = NULL;
}
gdk_window_invalidate_rect( GTK_PIZZA(m_wxwindow)->bin_window, p, TRUE );
}
}
void wxWindowGTK::Update()
{
GtkUpdate();
// when we call Update() we really want to update the window immediately on
// screen, even if it means flushing the entire queue and hence slowing down
// everything -- but it should still be done, it's just that Update() should
// be called very rarely
gdk_flush();
}
void wxWindowGTK::GtkUpdate()
{
if (m_wxwindow && GTK_PIZZA(m_wxwindow)->bin_window)
gdk_window_process_updates( GTK_PIZZA(m_wxwindow)->bin_window, FALSE );
if (m_widget && m_widget->window)
gdk_window_process_updates( m_widget->window, FALSE );
// for consistency with other platforms (and also because it's convenient
// to be able to update an entire TLW by calling Update() only once), we
// should also update all our children here
for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
node;
node = node->GetNext() )
{
node->GetData()->GtkUpdate();
}
}
bool wxWindowGTK::DoIsExposed( int x, int y ) const
{
return m_updateRegion.Contains(x, y) != wxOutRegion;
}
bool wxWindowGTK::DoIsExposed( int x, int y, int w, int h ) const
{
if (GetLayoutDirection() == wxLayout_RightToLeft)
return m_updateRegion.Contains(x-w, y, w, h) != wxOutRegion;
else
return m_updateRegion.Contains(x, y, w, h) != wxOutRegion;
}
void wxWindowGTK::GtkSendPaintEvents()
{
if (!m_wxwindow)
{
m_updateRegion.Clear();
return;
}
// Clip to paint region in wxClientDC
m_clipPaintRegion = true;
m_nativeUpdateRegion = m_updateRegion;
if (GetLayoutDirection() == wxLayout_RightToLeft)
{
// Transform m_updateRegion under RTL
m_updateRegion.Clear();
gint width;
gdk_window_get_geometry( GTK_PIZZA(m_wxwindow)->bin_window,
NULL, NULL, &width, NULL, NULL );
wxRegionIterator upd( m_nativeUpdateRegion );
while (upd)
{
wxRect rect;
rect.x = upd.GetX();
rect.y = upd.GetY();
rect.width = upd.GetWidth();
rect.height = upd.GetHeight();
rect.x = width - rect.x - rect.width;
m_updateRegion.Union( rect );
++upd;
}
}
// widget to draw on
GtkPizza *pizza = GTK_PIZZA (m_wxwindow);
if (GetThemeEnabled() && (GetBackgroundStyle() == wxBG_STYLE_SYSTEM))
{
// find ancestor from which to steal background
wxWindow *parent = wxGetTopLevelParent((wxWindow *)this);
if (!parent)
parent = (wxWindow*)this;
if (GTK_WIDGET_MAPPED(parent->m_widget))
{
wxRegionIterator upd( m_nativeUpdateRegion );
while (upd)
{
GdkRectangle rect;
rect.x = upd.GetX();
rect.y = upd.GetY();
rect.width = upd.GetWidth();
rect.height = upd.GetHeight();
gtk_paint_flat_box( parent->m_widget->style,
pizza->bin_window,
(GtkStateType)GTK_WIDGET_STATE(m_wxwindow),
GTK_SHADOW_NONE,
&rect,
parent->m_widget,
(char *)"base",
0, 0, -1, -1 );
++upd;
}
}
}
else
{
wxWindowDC dc( (wxWindow*)this );
dc.SetClippingRegion( m_updateRegion );
// Work around gtk-qt <= 0.60 bug whereby the window colour
// remains grey
if (GetBackgroundStyle() == wxBG_STYLE_COLOUR && GetBackgroundColour().Ok() && wxSystemOptions::GetOptionInt(wxT("gtk.window.force-background-colour")) == 1)
{
dc.SetBackground(wxBrush(GetBackgroundColour()));
dc.Clear();
}
wxEraseEvent erase_event( GetId(), &dc );
erase_event.SetEventObject( this );
GetEventHandler()->ProcessEvent(erase_event);
}
wxNcPaintEvent nc_paint_event( GetId() );
nc_paint_event.SetEventObject( this );
GetEventHandler()->ProcessEvent( nc_paint_event );
wxPaintEvent paint_event( GetId() );
paint_event.SetEventObject( this );
GetEventHandler()->ProcessEvent( paint_event );
m_clipPaintRegion = false;
m_updateRegion.Clear();
m_nativeUpdateRegion.Clear();
}
void wxWindowGTK::SetDoubleBuffered( bool on )
{
wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
if ( m_wxwindow )
gtk_widget_set_double_buffered( m_wxwindow, on );
}
bool wxWindowGTK::IsDoubleBuffered() const
{
return GTK_WIDGET_DOUBLE_BUFFERED( m_wxwindow );
}
void wxWindowGTK::ClearBackground()
{
wxCHECK_RET( m_widget != NULL, wxT("invalid window") );
}
#if wxUSE_TOOLTIPS
void wxWindowGTK::DoSetToolTip( wxToolTip *tip )
{
wxWindowBase::DoSetToolTip(tip);
if (m_tooltip)
{
m_tooltip->Apply( (wxWindow *)this );
}
else
{
GtkWidget *w = GetConnectWidget();
wxToolTip::Apply(w, wxCharBuffer());
#if GTK_CHECK_VERSION(2, 12, 0)
// Just applying NULL doesn't work on 2.12.0, so also use
// gtk_widget_set_has_tooltip. It is part of the new GtkTooltip API
// but seems also to work with the old GtkTooltips.
if (gtk_check_version(2, 12, 0) == NULL)
gtk_widget_set_has_tooltip(w, FALSE);
#endif
}
}
void wxWindowGTK::ApplyToolTip( GtkTooltips *tips, const wxChar *tip )
{
if (tip)
{
wxString tmp( tip );
gtk_tooltips_set_tip( tips, GetConnectWidget(), wxGTK_CONV(tmp), (gchar*) NULL );
}
else
{
gtk_tooltips_set_tip( tips, GetConnectWidget(), NULL, NULL);
}
}
#endif // wxUSE_TOOLTIPS
bool wxWindowGTK::SetBackgroundColour( const wxColour &colour )
{
wxCHECK_MSG( m_widget != NULL, false, wxT("invalid window") );
if (!wxWindowBase::SetBackgroundColour(colour))
return false;
if (colour.Ok())
{
// We need the pixel value e.g. for background clearing.
m_backgroundColour.CalcPixel(gtk_widget_get_colormap(m_widget));
}
// apply style change (forceStyle=true so that new style is applied
// even if the bg colour changed from valid to wxNullColour)
if (GetBackgroundStyle() != wxBG_STYLE_CUSTOM)
ApplyWidgetStyle(true);
return true;
}
bool wxWindowGTK::SetForegroundColour( const wxColour &colour )
{
wxCHECK_MSG( m_widget != NULL, false, wxT("invalid window") );
if (!wxWindowBase::SetForegroundColour(colour))
{
return false;
}
if (colour.Ok())
{
// We need the pixel value e.g. for background clearing.
m_foregroundColour.CalcPixel(gtk_widget_get_colormap(m_widget));
}
// apply style change (forceStyle=true so that new style is applied
// even if the bg colour changed from valid to wxNullColour):
ApplyWidgetStyle(true);
return true;
}
PangoContext *wxWindowGTK::GtkGetPangoDefaultContext()
{
return gtk_widget_get_pango_context( m_widget );
}
GtkRcStyle *wxWindowGTK::CreateWidgetStyle(bool forceStyle)
{
// do we need to apply any changes at all?
if ( !forceStyle &&
!m_font.Ok() &&
!m_foregroundColour.Ok() && !m_backgroundColour.Ok() )
{
return NULL;
}
GtkRcStyle *style = gtk_rc_style_new();
if ( m_font.Ok() )
{
style->font_desc =
pango_font_description_copy( m_font.GetNativeFontInfo()->description );
}
int flagsNormal = 0,
flagsPrelight = 0,
flagsActive = 0,
flagsInsensitive = 0;
if ( m_foregroundColour.Ok() )
{
const GdkColor *fg = m_foregroundColour.GetColor();
style->fg[GTK_STATE_NORMAL] =
style->text[GTK_STATE_NORMAL] = *fg;
flagsNormal |= GTK_RC_FG | GTK_RC_TEXT;
style->fg[GTK_STATE_PRELIGHT] =
style->text[GTK_STATE_PRELIGHT] = *fg;
flagsPrelight |= GTK_RC_FG | GTK_RC_TEXT;
style->fg[GTK_STATE_ACTIVE] =
style->text[GTK_STATE_ACTIVE] = *fg;
flagsActive |= GTK_RC_FG | GTK_RC_TEXT;
}
if ( m_backgroundColour.Ok() )
{
const GdkColor *bg = m_backgroundColour.GetColor();
style->bg[GTK_STATE_NORMAL] =
style->base[GTK_STATE_NORMAL] = *bg;
flagsNormal |= GTK_RC_BG | GTK_RC_BASE;
style->bg[GTK_STATE_PRELIGHT] =
style->base[GTK_STATE_PRELIGHT] = *bg;
flagsPrelight |= GTK_RC_BG | GTK_RC_BASE;
style->bg[GTK_STATE_ACTIVE] =
style->base[GTK_STATE_ACTIVE] = *bg;
flagsActive |= GTK_RC_BG | GTK_RC_BASE;
style->bg[GTK_STATE_INSENSITIVE] =
style->base[GTK_STATE_INSENSITIVE] = *bg;
flagsInsensitive |= GTK_RC_BG | GTK_RC_BASE;
}
style->color_flags[GTK_STATE_NORMAL] = (GtkRcFlags)flagsNormal;
style->color_flags[GTK_STATE_PRELIGHT] = (GtkRcFlags)flagsPrelight;
style->color_flags[GTK_STATE_ACTIVE] = (GtkRcFlags)flagsActive;
style->color_flags[GTK_STATE_INSENSITIVE] = (GtkRcFlags)flagsInsensitive;
return style;
}
void wxWindowGTK::ApplyWidgetStyle(bool forceStyle)
{
GtkRcStyle *style = CreateWidgetStyle(forceStyle);
if ( style )
{
DoApplyWidgetStyle(style);
gtk_rc_style_unref(style);
}
// Style change may affect GTK+'s size calculation:
InvalidateBestSize();
}
void wxWindowGTK::DoApplyWidgetStyle(GtkRcStyle *style)
{
wxSuspendStyleEvents s((wxWindow *)this);
if (m_wxwindow)
gtk_widget_modify_style(m_wxwindow, style);
else
gtk_widget_modify_style(m_widget, style);
}
bool wxWindowGTK::SetBackgroundStyle(wxBackgroundStyle style)
{
wxWindowBase::SetBackgroundStyle(style);
if (style == wxBG_STYLE_CUSTOM)
{
GdkWindow *window = (GdkWindow*) NULL;
if (m_wxwindow)
window = GTK_PIZZA(m_wxwindow)->bin_window;
else
window = GetConnectWidget()->window;
if (window)
{
// Make sure GDK/X11 doesn't refresh the window
// automatically.
gdk_window_set_back_pixmap( window, None, False );
#ifdef __X__
Display* display = GDK_WINDOW_DISPLAY(window);
XFlush(display);
#endif
m_needsStyleChange = false;
}
else
// Do in OnIdle, because the window is not yet available
m_needsStyleChange = true;
// Don't apply widget style, or we get a grey background
}
else
{
// apply style change (forceStyle=true so that new style is applied
// even if the bg colour changed from valid to wxNullColour):
ApplyWidgetStyle(true);
}
return true;
}
#if wxUSE_DRAG_AND_DROP
void wxWindowGTK::SetDropTarget( wxDropTarget *dropTarget )
{
wxCHECK_RET( m_widget != NULL, wxT("invalid window") );
GtkWidget *dnd_widget = GetConnectWidget();
if (m_dropTarget) m_dropTarget->UnregisterWidget( dnd_widget );
if (m_dropTarget) delete m_dropTarget;
m_dropTarget = dropTarget;
if (m_dropTarget) m_dropTarget->RegisterWidget( dnd_widget );
}
#endif // wxUSE_DRAG_AND_DROP
GtkWidget* wxWindowGTK::GetConnectWidget()
{
GtkWidget *connect_widget = m_widget;
if (m_wxwindow) connect_widget = m_wxwindow;
return connect_widget;
}
bool wxWindowGTK::GTKIsOwnWindow(GdkWindow *window) const
{
wxArrayGdkWindows windowsThis;
GdkWindow * const winThis = GTKGetWindow(windowsThis);
return winThis ? window == winThis
: windowsThis.Index(window) != wxNOT_FOUND;
}
GdkWindow *wxWindowGTK::GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const
{
return m_wxwindow ? GTK_PIZZA(m_wxwindow)->bin_window : m_widget->window;
}
bool wxWindowGTK::SetFont( const wxFont &font )
{
wxCHECK_MSG( m_widget != NULL, false, wxT("invalid window") );
if (!wxWindowBase::SetFont(font))
return false;
// apply style change (forceStyle=true so that new style is applied
// even if the font changed from valid to wxNullFont):
ApplyWidgetStyle(true);
return true;
}
void wxWindowGTK::DoCaptureMouse()
{
wxCHECK_RET( m_widget != NULL, wxT("invalid window") );
GdkWindow *window = (GdkWindow*) NULL;
if (m_wxwindow)
window = GTK_PIZZA(m_wxwindow)->bin_window;
else
window = GetConnectWidget()->window;
wxCHECK_RET( window, _T("CaptureMouse() failed") );
const wxCursor* cursor = &m_cursor;
if (!cursor->Ok())
cursor = wxSTANDARD_CURSOR;
gdk_pointer_grab( window, FALSE,
(GdkEventMask)
(GDK_BUTTON_PRESS_MASK |
GDK_BUTTON_RELEASE_MASK |
GDK_POINTER_MOTION_HINT_MASK |
GDK_POINTER_MOTION_MASK),
(GdkWindow *) NULL,
cursor->GetCursor(),
(guint32)GDK_CURRENT_TIME );
g_captureWindow = this;
g_captureWindowHasMouse = true;
}
void wxWindowGTK::DoReleaseMouse()
{
wxCHECK_RET( m_widget != NULL, wxT("invalid window") );
wxCHECK_RET( g_captureWindow, wxT("can't release mouse - not captured") );
g_captureWindow = (wxWindowGTK*) NULL;
GdkWindow *window = (GdkWindow*) NULL;
if (m_wxwindow)
window = GTK_PIZZA(m_wxwindow)->bin_window;
else
window = GetConnectWidget()->window;
if (!window)
return;
gdk_pointer_ungrab ( (guint32)GDK_CURRENT_TIME );
}
/* static */
wxWindow *wxWindowBase::GetCapture()
{
return (wxWindow *)g_captureWindow;
}
bool wxWindowGTK::IsRetained() const
{
return false;
}
void wxWindowGTK::BlockScrollEvent()
{
wxASSERT(!m_blockScrollEvent);
m_blockScrollEvent = true;
}
void wxWindowGTK::UnblockScrollEvent()
{
wxASSERT(m_blockScrollEvent);
m_blockScrollEvent = false;
}
void wxWindowGTK::SetScrollbar(int orient,
int pos,
int thumbVisible,
int range,
bool WXUNUSED(update))
{
GtkRange * const sb = m_scrollBar[ScrollDirFromOrient(orient)];
wxCHECK_RET( sb, _T("this window is not scrollable") );
if (range > 0)
{
m_hasScrolling = true;
}
else
{
// GtkRange requires upper > lower
range =
thumbVisible = 1;
}
if (pos > range - thumbVisible)
pos = range - thumbVisible;
if (pos < 0)
pos = 0;
GtkAdjustment * const adj = sb->adjustment;
adj->step_increment = 1;
adj->page_increment =
adj->page_size = thumbVisible;
adj->upper = range;
SetScrollPos(orient, pos);
gtk_adjustment_changed(adj);
}
void wxWindowGTK::SetScrollPos(int orient, int pos, bool WXUNUSED(refresh))
{
const int dir = ScrollDirFromOrient(orient);
GtkRange * const sb = m_scrollBar[dir];
wxCHECK_RET( sb, _T("this window is not scrollable") );
// This check is more than an optimization. Without it, the slider
// will not move smoothly while tracking when using wxScrollHelper.
if (GetScrollPos(orient) != pos)
{
GtkAdjustment* adj = sb->adjustment;
const int max = int(adj->upper - adj->page_size);
if (pos > max)
pos = max;
if (pos < 0)
pos = 0;
m_scrollPos[dir] = adj->value = pos;
g_signal_handlers_disconnect_by_func( m_scrollBar[dir],
(gpointer)gtk_scrollbar_value_changed, this);
gtk_adjustment_value_changed(adj);
g_signal_connect_after(m_scrollBar[dir], "value_changed",
G_CALLBACK(gtk_scrollbar_value_changed), this);
}
}
int wxWindowGTK::GetScrollThumb(int orient) const
{
GtkRange * const sb = m_scrollBar[ScrollDirFromOrient(orient)];
wxCHECK_MSG( sb, 0, _T("this window is not scrollable") );
return int(sb->adjustment->page_size);
}
int wxWindowGTK::GetScrollPos( int orient ) const
{
GtkRange * const sb = m_scrollBar[ScrollDirFromOrient(orient)];
wxCHECK_MSG( sb, 0, _T("this window is not scrollable") );
return int(sb->adjustment->value + 0.5);
}
int wxWindowGTK::GetScrollRange( int orient ) const
{
GtkRange * const sb = m_scrollBar[ScrollDirFromOrient(orient)];
wxCHECK_MSG( sb, 0, _T("this window is not scrollable") );
return int(sb->adjustment->upper);
}
// Determine if increment is the same as +/-x, allowing for some small
// difference due to possible inexactness in floating point arithmetic
static inline bool IsScrollIncrement(double increment, double x)
{
wxASSERT(increment > 0);
const double tolerance = 1.0 / 1024;
return fabs(increment - fabs(x)) < tolerance;
}
wxEventType wxWindowGTK::GetScrollEventType(GtkRange* range)
{
DEBUG_MAIN_THREAD
if (g_isIdle)
wxapp_install_idle_handler();
wxASSERT(range == m_scrollBar[0] || range == m_scrollBar[1]);
const int barIndex = range == m_scrollBar[1];
GtkAdjustment* adj = range->adjustment;
const int value = int(adj->value + 0.5);
// save previous position
const double oldPos = m_scrollPos[barIndex];
// update current position
m_scrollPos[barIndex] = adj->value;
// If event should be ignored, or integral position has not changed
if (!m_hasVMT || g_blockEventsOnDrag || value == int(oldPos + 0.5))
{
return wxEVT_NULL;
}
wxEventType eventType = wxEVT_SCROLL_THUMBTRACK;
if (!m_isScrolling)
{
// Difference from last change event
const double diff = adj->value - oldPos;
const bool isDown = diff > 0;
if (IsScrollIncrement(adj->step_increment, diff))
{
eventType = isDown ? wxEVT_SCROLL_LINEDOWN : wxEVT_SCROLL_LINEUP;
}
else if (IsScrollIncrement(adj->page_increment, diff))
{
eventType = isDown ? wxEVT_SCROLL_PAGEDOWN : wxEVT_SCROLL_PAGEUP;
}
else if (m_mouseButtonDown)
{
// Assume track event
m_isScrolling = true;
}
}
return eventType;
}
void wxWindowGTK::ScrollWindow( int dx, int dy, const wxRect* WXUNUSED(rect) )
{
wxCHECK_RET( m_widget != NULL, wxT("invalid window") );
wxCHECK_RET( m_wxwindow != NULL, wxT("window needs client area for scrolling") );
// No scrolling requested.
if ((dx == 0) && (dy == 0)) return;
m_clipPaintRegion = true;
if (GetLayoutDirection() == wxLayout_RightToLeft)
gtk_pizza_scroll( GTK_PIZZA(m_wxwindow), dx, -dy );
else
gtk_pizza_scroll( GTK_PIZZA(m_wxwindow), -dx, -dy );
m_clipPaintRegion = false;
#if wxUSE_CARET
bool restoreCaret = (GetCaret() != NULL && GetCaret()->IsVisible());
if (restoreCaret)
{
wxRect caretRect(GetCaret()->GetPosition(), GetCaret()->GetSize());
if (dx > 0)
caretRect.width += dx;
else
{
caretRect.x += dx; caretRect.width -= dx;
}
if (dy > 0)
caretRect.height += dy;
else
{
caretRect.y += dy; caretRect.height -= dy;
}
RefreshRect(caretRect);
}
#endif // wxUSE_CARET
}
void wxWindowGTK::GtkScrolledWindowSetBorder(GtkWidget* w, int wxstyle)
{
//RN: Note that static controls usually have no border on gtk, so maybe
//it makes sense to treat that as simply no border at the wx level
//as well...
if (!(wxstyle & wxNO_BORDER) && !(wxstyle & wxBORDER_STATIC))
{
GtkShadowType gtkstyle;
if(wxstyle & wxBORDER_RAISED)
gtkstyle = GTK_SHADOW_OUT;
else if (wxstyle & wxBORDER_SUNKEN)
gtkstyle = GTK_SHADOW_IN;
// wxBORDER_DOUBLE is no longer supported since wxBORDER_THEME takes on the same value
#if 0
else if (wxstyle & wxBORDER_DOUBLE)
gtkstyle = GTK_SHADOW_ETCHED_IN;
#endif
else //default
gtkstyle = GTK_SHADOW_IN;
gtk_scrolled_window_set_shadow_type( GTK_SCROLLED_WINDOW(w),
gtkstyle );
}
}
void wxWindowGTK::SetWindowStyleFlag( long style )
{
// Updates the internal variable. NB: Now m_windowStyle bits carry the _new_ style values already
wxWindowBase::SetWindowStyleFlag(style);
}
// Find the wxWindow at the current mouse position, also returning the mouse
// position.
wxWindow* wxFindWindowAtPointer(wxPoint& pt)
{
pt = wxGetMousePosition();
wxWindow* found = wxFindWindowAtPoint(pt);
return found;
}
// Get the current mouse position.
wxPoint wxGetMousePosition()
{
/* This crashes when used within wxHelpContext,
so we have to use the X-specific implementation below.
gint x, y;
GdkModifierType *mask;
(void) gdk_window_get_pointer(NULL, &x, &y, mask);
return wxPoint(x, y);
*/
int x, y;
GdkWindow* windowAtPtr = gdk_window_at_pointer(& x, & y);
Display *display = windowAtPtr ? GDK_WINDOW_XDISPLAY(windowAtPtr) : GDK_DISPLAY();
Window rootWindow = RootWindowOfScreen (DefaultScreenOfDisplay(display));
Window rootReturn, childReturn;
int rootX, rootY, winX, winY;
unsigned int maskReturn;
XQueryPointer (display,
rootWindow,
&rootReturn,
&childReturn,
&rootX, &rootY, &winX, &winY, &maskReturn);
return wxPoint(rootX, rootY);
}
// Needed for implementing e.g. combobox on wxGTK within a modal dialog.
void wxAddGrab(wxWindow* window)
{
gtk_grab_add( (GtkWidget*) window->GetHandle() );
}
void wxRemoveGrab(wxWindow* window)
{
gtk_grab_remove( (GtkWidget*) window->GetHandle() );
}
| [
"RD@c3d73ce0-8a6f-49c7-b76d-6d57e0e08775"
] | RD@c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 |
79b2d2c02cd6a5478a788d4fe91af92f95b51698 | f0da2d7171782433b308348d62a0ce510aa87a66 | /main.cpp | 2b6da7dc8fc825f2393b74f27c4754e6daddef89 | [] | no_license | AhsanSN/Paint-Graphic-Editor | 4f4aa4375659ddd8ec42a4a80fe2b1f6e1f29d0e | 19cc8af22e001b422a343e465ace3a8ee130b33b | refs/heads/master | 2020-03-07T18:55:34.637027 | 2019-06-25T08:43:19 | 2019-06-25T08:43:19 | 127,656,813 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 32,896 | cpp | #include <SDL.h>
#include <stdio.h>
#include <string>
#include <windows.h>
#include <time.h>
#include <cstdlib>
#include <unistd.h>
#include <cmath>
#include <iostream>
#include"Rect.h"
#include"Line.h"
#include"Stack.h"
#include"Stack_redo.h"
#define fps 60
/*
Important notes:
- the whole main program (main.cpp)is divided into three parts. these three parts are 90% same,except the shape that
they are creating.
- a linked list is used to store shapes
- a linked list (stack_redo) is used to store the redo and the undo elements
- you may find me adding and subtracting some constants to variables, such as length of stack. this is to adjust so that the program
can run properly
*/
//Screen dimension constants
const int SCREEN_WIDTH = 640;
const int SCREEN_HEIGHT = 480;
//Key press surfaces constants
enum KeyPressSurfaces
{
KEY_PRESS_SURFACE_DEFAULT,
KEY_PRESS_SURFACE_UP,
KEY_PRESS_SURFACE_DOWN,
KEY_PRESS_SURFACE_LEFT,
KEY_PRESS_SURFACE_RIGHT,
KEY_PRESS_SURFACE_TOTAL
};
//
bool init();
bool loadMedia();
void close();
void redoArrayFunction();
SDL_Window* gWindow = NULL;
SDL_Renderer* gRenderer = NULL;
bool init() //same code as given
{
bool success = true;
if( SDL_Init( SDL_INIT_VIDEO ) < 0 )
{
printf( "SDL could not initialize! SDL Error: %s\n", SDL_GetError() );
success = false;
}
else
{
//Set texture filtering to linear
if( !SDL_SetHint( SDL_HINT_RENDER_SCALE_QUALITY, "0" ) )
{
printf( "Warning: Linear texture filtering not enabled!" );
}
//Create window
gWindow = SDL_CreateWindow( "SDL Tutorial", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, SCREEN_WIDTH, SCREEN_HEIGHT, SDL_WINDOW_SHOWN );
if( gWindow == NULL )
{
printf( "Window could not be created! SDL Error: %s\n", SDL_GetError() );
success = false;
}
else
{
//Create renderer for window
gRenderer = SDL_CreateRenderer( gWindow, -1, SDL_RENDERER_ACCELERATED );
if( gRenderer == NULL )
{
printf( "Renderer could not be created! SDL Error: %s\n", SDL_GetError() );
success = false;
}
else
{
//Initialize renderer color
SDL_SetRenderDrawColor( gRenderer, 0xFF, 0xFF, 0xFF, 0xFF );
}
}
}
return success;
}
bool loadMedia() //same code as given
{
bool success = true;
return success;
}
void close() //same code as given //both stacks have been deallocated int he main function in the end
{
//Destroy window
SDL_DestroyRenderer( gRenderer );
SDL_DestroyWindow( gWindow );
gWindow = NULL;
gRenderer = NULL;
//Quit SDL subsystems
SDL_Quit();
}
int main( int argc, char* args[] )
{
Shapes* swapUpDown[100]; //used to store the shapes that are sent up and down
srand (time(NULL));
Uint32 starting_tick;
Stack stk;
Stack_redo stkRedo;
int shapesInStack=0;
int redoArrayLength=0;
int redoNumber=0;
//Start linePermission SDL and create window
if( !init() )
{
printf( "Failed to initialize!\n" );
}
else
{
if( !loadMedia() ) //Load media
{
printf( "Failed to load media!\n" );
}
else
{
bool quit = false; //Main loop controller
int swapIndex=0; //
int swapInitialIndex=0; // position of last element in swapstack
Shapes* swapIndexShape;
SDL_Event e; //Event handler that takes care of all events
bool mouseClicked = false;
bool allowUp = false;
SDL_Rect fillRect;
bool rectanglePermission=false; //rectangle
bool linePermission = false; //line
bool swapPermission = true;
bool pointPermission = false; //point
//for coordinates
int oldx ;
int oldy ;
int x, y ;
int lineoldx, lineoldy;
int linex, liney;
//creating objects
Shapes* rect = NULL;
Line* line = NULL;
Point* point = NULL;
rectanglePermission = true;
rect = new Rect(fillRect);
line = new Line();
point = new Point();
point->giveCoods(0,0); //creates the first point
stk.Push(point);
stk.Show(gRenderer);
shapesInStack++;
while( !quit )
{
while( SDL_PollEvent( &e ) != 0 )
{
if( e.type == SDL_QUIT )
{
quit = true;
}
else
{
SDL_SetRenderDrawColor( gRenderer, 0xFF, 0xFF, 0xFF, 0xFF );
SDL_RenderClear( gRenderer );
rectanglePermission = true;
while(!quit)
{
starting_tick = SDL_GetTicks(); // used to decrease the frame rate to ensure smooth running of program
//Handle events on queue
while (rectanglePermission ==true) // loop for rectangle. same is done for line and point
{
starting_tick = SDL_GetTicks();
while( SDL_PollEvent( &e ) != 0 )
{
//User requests quit
if( e.type == SDL_QUIT )
{
quit = true;
rectanglePermission = false;
}
if( e.type == SDL_MOUSEMOTION || e.type == SDL_MOUSEBUTTONDOWN || e.type == SDL_MOUSEBUTTONUP )
{
SDL_GetMouseState( &x, &y );
if(e.type == SDL_MOUSEMOTION)
{
if(mouseClicked == true)
fillRect = { oldx, oldy, x - oldx, y - oldy };
rect->inFillrect(&fillRect); //send the coordinates
}
if(e.type == SDL_MOUSEBUTTONDOWN)
{
if (e.button.button == SDL_BUTTON_LEFT)
{
if(mouseClicked == false)
{
mouseClicked = true;
oldx = x;
oldy = y;
}
}
}
if(e.type == SDL_MOUSEBUTTONUP)
{
if (e.button.button == SDL_BUTTON_LEFT) //draws
{
rect = new Rect(fillRect);
mouseClicked = false;
stk.Push(rect);
shapesInStack++;
SDL_SetRenderDrawColor( gRenderer, 0xFF, 0xFF, 0xFF, 0xFF );
SDL_RenderClear( gRenderer );
stk.Show(gRenderer); //draws all the shapes
}
if (e.button.button == SDL_BUTTON_RIGHT) //undo
{
if (shapesInStack > 1)
{
shapesInStack--;
SDL_SetRenderDrawColor( gRenderer, 0xFF, 0xFF, 0xFF, 0xFF );
SDL_RenderClear( gRenderer );
stkRedo.Push_redo(stk.Pop());
redoArrayLength ++;
SDL_SetRenderDrawColor( gRenderer, 0xFF, 0xFF, 0xFF, 0xFF );
SDL_RenderClear( gRenderer );
stk.Show(gRenderer);
}
}
if (e.button.button == SDL_BUTTON_MIDDLE) //redo
{
if (redoNumber-1 <= redoArrayLength+1)
{
(stkRedo.Pop_redo())->draw(gRenderer);
redoNumber = redoNumber+1;
redoArrayLength = redoArrayLength -1;
}
}
}
}
}
SDL_RenderPresent( gRenderer );
switch( e.key.keysym.sym ) // get the keyboard inputs
{
case SDLK_p:
{
rectanglePermission = false;
pointPermission = true;
break;
}
case SDLK_l:
{
rectanglePermission = false;
linePermission = true;
break;
}
case SDLK_DOWN:
{
if (e.type == SDL_KEYUP)
{
allowUp = true;
swapPermission = true;
}
if (e.type == SDL_KEYDOWN)
{
if (swapPermission ==true)
{
if (swapIndex==0)
{
swapInitialIndex=stk.length()-1;
}
if ((stk.length())-2>swapIndex)
{
stk.swap(swapInitialIndex-1,swapInitialIndex);
swapIndex++;
swapInitialIndex--;
}
SDL_SetRenderDrawColor( gRenderer, 0xFF, 0xFF, 0xFF, 0xFF );
SDL_RenderClear( gRenderer );
stk.Show(gRenderer);
swapPermission = false;
break;
}
}
}
case SDLK_UP:
{
if (allowUp == true)
{
if (e.type == SDL_KEYUP)
{
swapPermission = true;
}
if (e.type == SDL_KEYDOWN)
{
if (swapPermission ==true)
{
if (swapIndex==0)
{
swapInitialIndex=stk.length()-1;
}
if ((stk.length()-1)>swapIndex)
{
stk.swap(swapInitialIndex+1,swapInitialIndex);
swapIndex--;
swapInitialIndex++;
}
SDL_SetRenderDrawColor( gRenderer, 0xFF, 0xFF, 0xFF, 0xFF );
SDL_RenderClear( gRenderer );
stk.Show(gRenderer);
swapPermission = false;
break;
}
}
}
}
}
if((500/fps)> SDL_GetTicks() - starting_tick) //decreasing frame rate
{
SDL_Delay(500/fps - (SDL_GetTicks() - starting_tick ));
}
}
while (linePermission ==true)
{
starting_tick = SDL_GetTicks();
while( SDL_PollEvent( &e ) != 0 )
{
//User requests quit
if( e.type == SDL_QUIT )
{
quit = true;
linePermission = false;
}
if( e.type == SDL_MOUSEMOTION || e.type == SDL_MOUSEBUTTONDOWN || e.type == SDL_MOUSEBUTTONUP )
{
SDL_GetMouseState( &linex, &liney );
if(e.type == SDL_MOUSEMOTION)
{
swapPermission = true;
if(mouseClicked == true)
line->giveCoordinates2(linex, liney);
}
if(e.type == SDL_MOUSEBUTTONDOWN)
{
if (e.button.button == SDL_BUTTON_LEFT)
{
if(mouseClicked == false)
{
mouseClicked = true;
lineoldx = linex;
lineoldy = liney;
line->giveCoordinates1(lineoldx,lineoldy);
}
}
}
if(e.type == SDL_MOUSEBUTTONUP)
{
if (e.button.button == SDL_BUTTON_LEFT)
{
mouseClicked = false;
line = new Line();
line->draw(gRenderer);
stk.Push(line);
shapesInStack++;
stk.Show(gRenderer);
}
if (e.button.button == SDL_BUTTON_RIGHT)
{
if (shapesInStack > 1)
{
shapesInStack--;
SDL_SetRenderDrawColor( gRenderer, 0xFF, 0xFF, 0xFF, 0xFF );
SDL_RenderClear(gRenderer );
stkRedo.Push_redo(stk.Pop());
redoArrayLength++;
stk.Show(gRenderer);
}
}
if (e.button.button == SDL_BUTTON_MIDDLE)
{
if (redoNumber-1 <= redoArrayLength+1)
{
(stkRedo.Pop_redo())->draw(gRenderer);
redoNumber = redoNumber+1;
redoArrayLength = redoArrayLength -1;
}
}
}
}
}
SDL_RenderPresent( gRenderer );
switch( e.key.keysym.sym )
{
if (e.type == SDL_KEYDOWN)
{
case SDLK_p:
linePermission = false;
pointPermission = true;
break;
case SDLK_r:
linePermission = false;
rectanglePermission = true;
break;
case SDLK_DOWN:
{
if (e.type == SDL_KEYUP)
{
allowUp = true;
swapPermission = true;
}
if (e.type == SDL_KEYDOWN)
{
if (swapPermission ==true)
{
if (swapIndex==0)
{
swapInitialIndex=stk.length()-1;
}
if ((stk.length())-2>swapIndex)
{
stk.swap(swapInitialIndex-1,swapInitialIndex);
//stk.swap(stk.length()-1,stk.length());
swapIndex++;
swapInitialIndex--;
}
SDL_SetRenderDrawColor( gRenderer, 0xFF, 0xFF, 0xFF, 0xFF );
SDL_RenderClear( gRenderer );
stk.Show(gRenderer);
swapPermission = false;
break;
}
}
}
case SDLK_UP:
{
if (allowUp == true)
{
if (e.type == SDL_KEYUP)
{
swapPermission = true;
}
if (e.type == SDL_KEYDOWN)
{
if (swapPermission ==true)
{
if (swapIndex==0)
{
swapInitialIndex=stk.length()-1;
}
if ((stk.length()-1)>swapIndex)
{
stk.swap(swapInitialIndex+1,swapInitialIndex);
swapIndex--;
swapInitialIndex++;
}
SDL_SetRenderDrawColor( gRenderer, 0xFF, 0xFF, 0xFF, 0xFF );
SDL_RenderClear( gRenderer );
stk.Show(gRenderer);
swapPermission = false;
break;
}
}
}
}
}
}
SDL_RenderPresent( gRenderer ); //tempor
if((500/fps)> SDL_GetTicks() - starting_tick) //decreasing frame rate
{
SDL_Delay(500/fps - (SDL_GetTicks() - starting_tick ));
}
}
while (pointPermission ==true)
{
while( SDL_PollEvent( &e ) != 0 )
{
//User requests quit
if( e.type == SDL_QUIT )
{
quit = true;
pointPermission = false;
}
if( e.type == SDL_MOUSEMOTION || e.type == SDL_MOUSEBUTTONDOWN || e.type == SDL_MOUSEBUTTONUP )
{
SDL_GetMouseState( &x, &y );
if(e.type == SDL_MOUSEBUTTONDOWN)
{
if (e.button.button == SDL_BUTTON_LEFT)
{
if(mouseClicked == false)
{
mouseClicked = true;
oldx = x;
oldy = y;
}
}
}
if(e.type == SDL_MOUSEBUTTONUP)
{
if (e.button.button == SDL_BUTTON_LEFT)
{
mouseClicked = false;
point = new Point();
point->giveCoods(oldx,oldy);
stk.Push(point);
stk.Show(gRenderer);
shapesInStack++;
SDL_SetRenderDrawColor( gRenderer, 0xFF, 0xFF, 0xFF, 0xFF );
point->draw(gRenderer);
}
if (e.button.button == SDL_BUTTON_RIGHT)
{
if (shapesInStack > 1)
{
shapesInStack--;
SDL_SetRenderDrawColor( gRenderer, 0xFF, 0xFF, 0xFF, 0xFF );
SDL_RenderClear( gRenderer );
redoArrayLength++;
stkRedo.Push_redo(stk.Pop());
stk.Show(gRenderer);
}
}
if (e.button.button == SDL_BUTTON_MIDDLE)
{
if (redoNumber-1 <= redoArrayLength+1)
{
(stkRedo.Pop_redo())->draw(gRenderer);
redoNumber = redoNumber+1;
redoArrayLength = redoArrayLength -1;
}
}
}
}
}
SDL_RenderPresent( gRenderer );
switch( e.key.keysym.sym )
{
if (e.type == SDL_KEYDOWN)
{
case SDLK_l:
pointPermission = false;
linePermission = true;
break;
case SDLK_r:
pointPermission = false;
rectanglePermission = true;
break;
case SDLK_DOWN:
{
if (e.type == SDL_KEYUP)
{
allowUp = true;
swapPermission = true;
}
if (e.type == SDL_KEYDOWN)
{
if (swapPermission ==true)
{
if (swapIndex==0)
{
swapInitialIndex=stk.length()-1;
}
if ((stk.length())-2>swapIndex)
{
stk.swap(swapInitialIndex-1,swapInitialIndex);
swapIndex++;
swapInitialIndex--;
}
SDL_SetRenderDrawColor( gRenderer, 0xFF, 0xFF, 0xFF, 0xFF );
SDL_RenderClear( gRenderer );
stk.Show(gRenderer);
swapPermission = false;
break;
}
}
}
case SDLK_UP:
{
if (allowUp == true)
{
if (e.type == SDL_KEYUP)
{
swapPermission = true;
}
if (e.type == SDL_KEYDOWN)
{
if (swapPermission ==true)
{
if (swapIndex==0)
{
swapInitialIndex=stk.length()-1;
}
if ((stk.length()-1)>swapIndex)
{
stk.swap(swapInitialIndex+1,swapInitialIndex);
swapIndex--;
swapInitialIndex++;
}
SDL_SetRenderDrawColor( gRenderer, 0xFF, 0xFF, 0xFF, 0xFF );
SDL_RenderClear( gRenderer );
stk.Show(gRenderer);
swapPermission = false;
break;
}
}
}
}
}
}
if((500/fps)> SDL_GetTicks() - starting_tick) //decreasing frame rate
{
SDL_Delay(500/fps - (SDL_GetTicks() - starting_tick ));
}
}
if((500/fps)> SDL_GetTicks() - starting_tick) //decreasing frame rate
{
SDL_Delay(500/fps - (SDL_GetTicks() - starting_tick ));
}
}
}
}
}
}
}
stk.clearAll();
stk.~Stack(); //destructor /deallocates stack
stkRedo.~Stack_redo();//destructor /deallocates stack
close();
return 0;
}
| [
"sa02908@st.habib.edu.pk"
] | sa02908@st.habib.edu.pk |
bdae8b10336b432a75b0b506447c9d697e8a8314 | ef98d98431ff8a324863cc26302f16ac1f1e9151 | /SINRGE2 Core/sin_kconv.h | 1fc7cd652236ba2da45812f39cae9b10d97a785d | [
"Zlib"
] | permissive | orochi2k/SINRGE2 | 41542dc295a8ef475160a45bfa81d9cf401270ec | 66ca171f21c042ad4c978c2965b06ed918af5f24 | refs/heads/master | 2023-03-18T00:41:19.460037 | 2018-09-01T03:35:23 | 2018-09-01T03:35:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 554 | h | #ifndef __K_CONV_H__
#define __K_CONV_H__
class CAutoBuffer;
namespace Kconv
{
wchar_t * AnsiToUnicode(const char * str, CAutoBuffer * pAutoBuffer = 0);
wchar_t * UTF8ToUnicode(const char * str, CAutoBuffer * pAutoBuffer = 0);
char * UnicodeToAnsi(const wchar_t * str, CAutoBuffer * pAutoBuffer = 0);
char * UnicodeToUTF8(const wchar_t * str, CAutoBuffer * pAutoBuffer = 0);
char * UTF8ToAnsi(const char * str, CAutoBuffer * pAutoBuffer = 0);
char * AnsiToUTF8(const char * str, CAutoBuffer * pAutoBuffer = 0);
};
#endif // __K_CONV_H__
| [
"Gernischt@gmail.com"
] | Gernischt@gmail.com |
2343fb05cff6fb4c450c6e099be8ada33bd4b9d8 | 38d297718d0252a595e2954243c5a7026b54f844 | /proj6/static_lib2/src/sublib2.cpp | 64f22a157cb6383744a065cb459093cc4476791b | [] | no_license | deltavoid/cmake_examples | 16bfdc2791fdde13681e2b754877742fee0ca2b9 | 8dac6cfbf2a07dd4dcbdbb44d504029f64ccbbef | refs/heads/master | 2023-04-07T07:48:24.983060 | 2021-04-20T13:47:35 | 2021-04-20T13:47:35 | 277,831,884 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 131 | cpp | #include <iostream>
#include "sublib2/sublib2.h"
void sublib2::print()
{
std::cout << "Hello sub-library 2!" << std::endl;
}
| [
"zhangqianyu.sys@bytedance.com"
] | zhangqianyu.sys@bytedance.com |
8fd2096354f5669460ad43455052aa9db76d9f87 | c164deecf14db1b3f09e9e89dcaf45c993a35897 | /include/lwiot/ipaddress.h | 39fff4add5764d0bb51cec12012e3ebd3e02191e | [
"Apache-2.0"
] | permissive | michelmegens/lwIoT | 16135aadc53079b03b49cef002daf5df19f94cd2 | 345d7d7705b1c2f639c4b19fe608ae54e3b7cde1 | refs/heads/master | 2021-10-15T23:19:00.065109 | 2018-10-02T13:17:20 | 2018-10-02T13:17:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,077 | h | /*
* IP address object definition.
*
* @author Michel Megens
* @email dev@bietje.net
*/
#pragma once
#include <lwiot/types.h>
#include <lwiot/string.h>
namespace lwiot
{
class IPAddress {
public:
explicit IPAddress();
explicit IPAddress(uint8_t first, uint8_t second, uint8_t third, uint8_t forth);
explicit IPAddress(const uint8_t *address);
IPAddress(uint32_t address);
virtual ~IPAddress() = default;
virtual String toString() const;
static IPAddress fromString(const String& str);
static IPAddress fromString(const char *str);
/* Operators */
operator uint32_t () const;
bool operator ==(const IPAddress& other) const;
bool operator ==(const uint32_t& other) const;
bool operator ==(const uint8_t* other) const;
uint8_t operator [](int idx) const;
uint8_t& operator [](int idx);
IPAddress& operator =(const uint8_t *address);
IPAddress& operator =(uint32_t addr);
IPAddress& operator =(const IPAddress& addr);
private:
union {
uint8_t bytes[4];
uint32_t dword;
} _address;
const uint8_t *raw() const;
};
}
| [
"dev@bietje.net"
] | dev@bietje.net |
620e8d7f0809dd7044efad7772103a50ce5cc41c | 0fba517f10d2179a8aa838b9da9b789d4e203598 | /Codeforces/CF 166/D.cpp | 42df798894fe4eec6de5301cea17d8a7e550d95c | [] | no_license | hdi-superuser/Codes | e7923975b4656a09b211710d659cd2ea7859bcbb | 2ca9d777d6ecce59c0ed26e8db83b475b73b192a | refs/heads/master | 2021-01-21T00:36:34.855984 | 2016-06-15T20:27:28 | 2016-06-15T20:27:28 | 61,238,394 | 0 | 0 | null | 2016-06-15T20:22:04 | 2016-06-15T20:22:04 | null | UTF-8 | C++ | false | false | 1,601 | cpp | #include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <vector>
#include <cstring>
#include <string>
#include <cmath>
#include <ctime>
#include <utility>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <sstream>
#define FOR(a,b,c) for (int a=b,_c=c;a<=_c;a++)
#define FORD(a,b,c) for (int a=b;a>=c;a--)
#define REP(i,a) for(int i=0,_a=(a); i<_a; ++i)
#define REPD(i,a) for(int i=(a)-1; i>=0; --i)
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define sz(a) int(a.size())
#define reset(a,b) memset(a,b,sizeof(a))
#define oo 1000000007
using namespace std;
typedef long long ll;
typedef pair<ll, ll> pll;
const int maxn=1507;
const ll base=73471;
const ll base2=100007;
char s[maxn],buf[30];
int n,k,res,sum[maxn];
ll val[maxn],hashpw[maxn],val2[maxn],hashpw2[maxn];
vector<pll> list;
#include <conio.h>
int main(){
//freopen("test.txt","r",stdin);
scanf("%s",s+1);
n=strlen(s+1);
scanf("%s",buf);
scanf("%d",&k);
hashpw[0]=hashpw2[0]=1; val[0]=val2[0]=0; sum[0]=0;
FOR(i,1,n){
val[i]=val[i-1]*base+s[i];
hashpw[i]=hashpw[i-1]*base;
val2[i]=val2[i-1]*base2+s[i];
hashpw2[i]=hashpw2[i-1]*base2;
sum[i]=sum[i-1]+(buf[s[i]-'a']=='0');
}
FOR(i,1,n) FOR(j,i,n) if(sum[j]-sum[i-1]<=k)
list.pb(pll(val[j]-val[i-1]*hashpw[j-i+1], val2[j]-val2[i-1]*hashpw2[j-i+1]));
sort(list.begin(),list.end());
list.resize(unique(list.begin(),list.end())-list.begin());
printf("%d\n",sz(list));
//getch();
return 0;
}
| [
"yenthanh.t7@gmail.com"
] | yenthanh.t7@gmail.com |
f01765970cd0b13a8a88bafbd4ba60d039e33a89 | 44d4d6c1049685d2ce103edd72e5885f79ea6988 | /练习2/7.cpp | b9cd97c407785405083f04c0d007ece4de676c5f | [] | no_license | ClaraShar/LANQIAO | f269e33570ac7fd60c090158533079eece972281 | 2b09d9ed8058a07eda360ce2bbe4ce6342faef82 | refs/heads/master | 2020-04-08T17:59:41.696027 | 2019-02-26T11:20:25 | 2019-02-26T11:20:25 | 159,307,832 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 717 | cpp | #include <iostream>
#include <string>
#include <map>
#include <queue>
using namespace std;
map<string,queue<string>> m;
map<string,int> death;
void DFS(string s)
{
while(!m[s].empty())
{
string name=m[s].front();
if(death[name]!=1)
cout<<name<<endl;
DFS(name);
m[s].pop();
}
}
int main()
{
int n;
string king,tag,father,son,dead;
cin>>n;
cin>>king;
death[king]=1;
for(int i=0;i<n;++i)
{
cin>>tag;
if(tag=="birth")
{
cin>>father>>son;
m[father].push(son);
}
else if(tag=="death")
{
cin>>dead;
death[dead]=1;
}
}
DFS(king);
cin>>n;
return 0;
}
/*
https://blog.csdn.net/July_xunle/article/details/79822510
*/ | [
"179800587@qq.com"
] | 179800587@qq.com |
63561ba48482888dad5f075b063409f52bd3e352 | 9030ce2789a58888904d0c50c21591632eddffd7 | /SDK/ARKSurvivalEvolved_HoverSkiffHudWidget_functions.cpp | 1686a36aebcd541322c02cd534f34e0f2ec0d879 | [
"MIT"
] | permissive | 2bite/ARK-SDK | 8ce93f504b2e3bd4f8e7ced184980b13f127b7bf | ce1f4906ccf82ed38518558c0163c4f92f5f7b14 | refs/heads/master | 2022-09-19T06:28:20.076298 | 2022-09-03T17:21:00 | 2022-09-03T17:21:00 | 232,411,353 | 14 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 28,114 | cpp | // ARKSurvivalEvolved (332.8) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "ARKSurvivalEvolved_HoverSkiffHudWidget_parameters.hpp"
namespace sdk
{
//---------------------------------------------------------------------------
//Functions
//---------------------------------------------------------------------------
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_RepairPanel_BrushColor_1
// ()
// Parameters:
// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData)
struct FLinearColor UHoverSkiffHudWidget_C::Get_RepairPanel_BrushColor_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_RepairPanel_BrushColor_1");
UHoverSkiffHudWidget_C_Get_RepairPanel_BrushColor_1_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_SkiffModeSubStatusTextBlock_Text_1
// (Exec, Native, Event, NetResponse, Static, NetMulticast, Private, NetServer, HasOutParms, NetClient, BlueprintEvent)
// Parameters:
// struct FText ReturnValue (Parm, OutParm, ReturnParm)
struct FText UHoverSkiffHudWidget_C::STATIC_Get_SkiffModeSubStatusTextBlock_Text_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_SkiffModeSubStatusTextBlock_Text_1");
UHoverSkiffHudWidget_C_Get_SkiffModeSubStatusTextBlock_Text_1_Params params;
auto flags = fn->FunctionFlags;
fn->FunctionFlags |= 0x400;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_RepairLabelTextBlock_Text_1
// (NetRequest, Exec, Native, Private, NetServer, HasOutParms, NetClient, BlueprintEvent)
// Parameters:
// struct FText ReturnValue (Parm, OutParm, ReturnParm)
struct FText UHoverSkiffHudWidget_C::Get_RepairLabelTextBlock_Text_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_RepairLabelTextBlock_Text_1");
UHoverSkiffHudWidget_C_Get_RepairLabelTextBlock_Text_1_Params params;
auto flags = fn->FunctionFlags;
fn->FunctionFlags |= 0x400;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.WidgetBoolToVisibilty
// ()
// Parameters:
// class UObject* TargetWidget (Parm, ZeroConstructor, IsPlainOldData)
// bool IsVisible (Parm, ZeroConstructor, IsPlainOldData)
// bool UseHiddenInsteadOfCollapsed (Parm, ZeroConstructor, IsPlainOldData)
void UHoverSkiffHudWidget_C::WidgetBoolToVisibilty(class UObject* TargetWidget, bool IsVisible, bool UseHiddenInsteadOfCollapsed)
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.WidgetBoolToVisibilty");
UHoverSkiffHudWidget_C_WidgetBoolToVisibilty_Params params;
params.TargetWidget = TargetWidget;
params.IsVisible = IsVisible;
params.UseHiddenInsteadOfCollapsed = UseHiddenInsteadOfCollapsed;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.UpdateRepairProgressBarsPercentAndForegroundColor
// (NetRequest, Native, Event, NetResponse, MulticastDelegate, Public, Protected, HasOutParms, NetClient, BlueprintEvent)
void UHoverSkiffHudWidget_C::UpdateRepairProgressBarsPercentAndForegroundColor()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.UpdateRepairProgressBarsPercentAndForegroundColor");
UHoverSkiffHudWidget_C_UpdateRepairProgressBarsPercentAndForegroundColor_Params params;
auto flags = fn->FunctionFlags;
fn->FunctionFlags |= 0x400;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.UpdateRepairPanelVisibility
// ()
void UHoverSkiffHudWidget_C::UpdateRepairPanelVisibility()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.UpdateRepairPanelVisibility");
UHoverSkiffHudWidget_C_UpdateRepairPanelVisibility_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.UpdateAllFuelGaugesPanelVisibility
// ()
void UHoverSkiffHudWidget_C::UpdateAllFuelGaugesPanelVisibility()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.UpdateAllFuelGaugesPanelVisibility");
UHoverSkiffHudWidget_C_UpdateAllFuelGaugesPanelVisibility_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_AltFuelLabelTextBlock_Text_1
// (Net, NetReliable, Native, Event, Private, NetServer, HasOutParms, NetClient, BlueprintEvent)
// Parameters:
// struct FText ReturnValue (Parm, OutParm, ReturnParm)
struct FText UHoverSkiffHudWidget_C::Get_AltFuelLabelTextBlock_Text_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_AltFuelLabelTextBlock_Text_1");
UHoverSkiffHudWidget_C_Get_AltFuelLabelTextBlock_Text_1_Params params;
auto flags = fn->FunctionFlags;
fn->FunctionFlags |= 0x400;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Update Status Visibilities
// ()
void UHoverSkiffHudWidget_C::Update_Status_Visibilities()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Update Status Visibilities");
UHoverSkiffHudWidget_C_Update_Status_Visibilities_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.UpdateNeedleRotation
// ()
void UHoverSkiffHudWidget_C::UpdateNeedleRotation()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.UpdateNeedleRotation");
UHoverSkiffHudWidget_C_UpdateNeedleRotation_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Update Tractor Beam Crosshair Visuals
// (NetRequest, NetResponse, Static, MulticastDelegate, Public, Protected, HasOutParms, NetClient, BlueprintEvent)
void UHoverSkiffHudWidget_C::STATIC_Update_Tractor_Beam_Crosshair_Visuals()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Update Tractor Beam Crosshair Visuals");
UHoverSkiffHudWidget_C_Update_Tractor_Beam_Crosshair_Visuals_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_FuelUsageNeedleImage_ColorAndOpacity_1
// ()
// Parameters:
// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData)
struct FLinearColor UHoverSkiffHudWidget_C::Get_FuelUsageNeedleImage_ColorAndOpacity_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_FuelUsageNeedleImage_ColorAndOpacity_1");
UHoverSkiffHudWidget_C_Get_FuelUsageNeedleImage_ColorAndOpacity_1_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_FuelReserveNeedleImage_ColorAndOpacity_1
// ()
// Parameters:
// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData)
struct FLinearColor UHoverSkiffHudWidget_C::Get_FuelReserveNeedleImage_ColorAndOpacity_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_FuelReserveNeedleImage_ColorAndOpacity_1");
UHoverSkiffHudWidget_C_Get_FuelReserveNeedleImage_ColorAndOpacity_1_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_FuelTankNeedleImage_ColorAndOpacity_1
// ()
// Parameters:
// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData)
struct FLinearColor UHoverSkiffHudWidget_C::Get_FuelTankNeedleImage_ColorAndOpacity_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_FuelTankNeedleImage_ColorAndOpacity_1");
UHoverSkiffHudWidget_C_Get_FuelTankNeedleImage_ColorAndOpacity_1_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_FuelTankGaugeImage_ColorAndOpacity_1
// ()
// Parameters:
// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData)
struct FLinearColor UHoverSkiffHudWidget_C::Get_FuelTankGaugeImage_ColorAndOpacity_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_FuelTankGaugeImage_ColorAndOpacity_1");
UHoverSkiffHudWidget_C_Get_FuelTankGaugeImage_ColorAndOpacity_1_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_FuelReserveGaugeImage_ColorAndOpacity_1
// ()
// Parameters:
// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData)
struct FLinearColor UHoverSkiffHudWidget_C::Get_FuelReserveGaugeImage_ColorAndOpacity_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_FuelReserveGaugeImage_ColorAndOpacity_1");
UHoverSkiffHudWidget_C_Get_FuelReserveGaugeImage_ColorAndOpacity_1_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.IsExtendedInfoKeyPressed
// ()
// Parameters:
// bool bShowExtendedInfoKey (Parm, OutParm, ZeroConstructor, IsPlainOldData)
void UHoverSkiffHudWidget_C::IsExtendedInfoKeyPressed(bool* bShowExtendedInfoKey)
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.IsExtendedInfoKeyPressed");
UHoverSkiffHudWidget_C_IsExtendedInfoKeyPressed_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
if (bShowExtendedInfoKey != nullptr)
*bShowExtendedInfoKey = params.bShowExtendedInfoKey;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_FuelUsageGaugeImage_ColorAndOpacity_1
// ()
// Parameters:
// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData)
struct FLinearColor UHoverSkiffHudWidget_C::Get_FuelUsageGaugeImage_ColorAndOpacity_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_FuelUsageGaugeImage_ColorAndOpacity_1");
UHoverSkiffHudWidget_C_Get_FuelUsageGaugeImage_ColorAndOpacity_1_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.DimGaugesAndNeedlesOnBool
// ()
// Parameters:
// bool Bool (Parm, ZeroConstructor, IsPlainOldData)
void UHoverSkiffHudWidget_C::DimGaugesAndNeedlesOnBool(bool Bool)
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.DimGaugesAndNeedlesOnBool");
UHoverSkiffHudWidget_C_DimGaugesAndNeedlesOnBool_Params params;
params.Bool = Bool;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.OnShowExtendedInfoKeyPressed
// ()
void UHoverSkiffHudWidget_C::OnShowExtendedInfoKeyPressed()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.OnShowExtendedInfoKeyPressed");
UHoverSkiffHudWidget_C_OnShowExtendedInfoKeyPressed_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_RepairValueTextBlock_Text_1
// (NetRequest, Exec, Event, Static, Private, NetServer, HasOutParms, NetClient, BlueprintEvent)
// Parameters:
// struct FText ReturnValue (Parm, OutParm, ReturnParm)
struct FText UHoverSkiffHudWidget_C::STATIC_Get_RepairValueTextBlock_Text_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_RepairValueTextBlock_Text_1");
UHoverSkiffHudWidget_C_Get_RepairValueTextBlock_Text_1_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_AltFuelValueTextBlock_Text_1
// (Net, NetReliable, NetRequest, Exec, Native, Event, Static, Private, NetServer, HasOutParms, NetClient, BlueprintEvent)
// Parameters:
// struct FText ReturnValue (Parm, OutParm, ReturnParm)
struct FText UHoverSkiffHudWidget_C::STATIC_Get_AltFuelValueTextBlock_Text_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_AltFuelValueTextBlock_Text_1");
UHoverSkiffHudWidget_C_Get_AltFuelValueTextBlock_Text_1_Params params;
auto flags = fn->FunctionFlags;
fn->FunctionFlags |= 0x400;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_AltFuelIcon_Brush_1
// (NetRequest, Exec, Native, NetResponse, NetMulticast, MulticastDelegate, Public, Protected, HasOutParms, NetClient, BlueprintEvent)
// Parameters:
// struct FSlateBrush ReturnValue (Parm, OutParm, ReturnParm)
struct FSlateBrush UHoverSkiffHudWidget_C::Get_AltFuelIcon_Brush_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_AltFuelIcon_Brush_1");
UHoverSkiffHudWidget_C_Get_AltFuelIcon_Brush_1_Params params;
auto flags = fn->FunctionFlags;
fn->FunctionFlags |= 0x400;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_SkiffModeValueTextBlock_Text_1
// (NetRequest, NetResponse, Static, Private, NetServer, HasOutParms, NetClient, BlueprintEvent)
// Parameters:
// struct FText ReturnValue (Parm, OutParm, ReturnParm)
struct FText UHoverSkiffHudWidget_C::STATIC_Get_SkiffModeValueTextBlock_Text_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_SkiffModeValueTextBlock_Text_1");
UHoverSkiffHudWidget_C_Get_SkiffModeValueTextBlock_Text_1_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_AltitudeValueTextBlock_Text_1
// (NetReliable, Event, NetResponse, Static, Private, NetServer, HasOutParms, NetClient, BlueprintEvent)
// Parameters:
// struct FText ReturnValue (Parm, OutParm, ReturnParm)
struct FText UHoverSkiffHudWidget_C::STATIC_Get_AltitudeValueTextBlock_Text_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_AltitudeValueTextBlock_Text_1");
UHoverSkiffHudWidget_C_Get_AltitudeValueTextBlock_Text_1_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_AltitudeLabelTextBlock_Text_1
// (Net, Exec, Native, Event, NetResponse, Static, Private, NetServer, HasOutParms, NetClient, BlueprintEvent)
// Parameters:
// struct FText ReturnValue (Parm, OutParm, ReturnParm)
struct FText UHoverSkiffHudWidget_C::STATIC_Get_AltitudeLabelTextBlock_Text_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_AltitudeLabelTextBlock_Text_1");
UHoverSkiffHudWidget_C_Get_AltitudeLabelTextBlock_Text_1_Params params;
auto flags = fn->FunctionFlags;
fn->FunctionFlags |= 0x400;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get Debug Text 0
// (NetReliable, NetRequest, Exec, Native, Event, NetResponse, Static, Private, NetServer, HasOutParms, NetClient, BlueprintEvent)
// Parameters:
// struct FText ReturnValue (Parm, OutParm, ReturnParm)
struct FText UHoverSkiffHudWidget_C::STATIC_Get_Debug_Text_0()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get Debug Text 0");
UHoverSkiffHudWidget_C_Get_Debug_Text_0_Params params;
auto flags = fn->FunctionFlags;
fn->FunctionFlags |= 0x400;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_FuelReserveTextBlock_Text_1
// (Net, NetReliable, NetMulticast, Private, NetServer, HasOutParms, NetClient, BlueprintEvent)
// Parameters:
// struct FText ReturnValue (Parm, OutParm, ReturnParm)
struct FText UHoverSkiffHudWidget_C::Get_FuelReserveTextBlock_Text_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_FuelReserveTextBlock_Text_1");
UHoverSkiffHudWidget_C_Get_FuelReserveTextBlock_Text_1_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Set Progress Bar Fill And Background Colors
// (NetReliable, Exec, NetResponse, Static, NetMulticast, MulticastDelegate, Public, Protected, HasOutParms, NetClient, BlueprintEvent)
// Parameters:
// class UProgressBar* ProgressBar (Parm, ZeroConstructor, IsPlainOldData)
// struct FLinearColor LinearColor (Parm, ZeroConstructor, IsPlainOldData)
// struct FProgressBarStyle ProgressBarStyle (Parm, OutParm)
void UHoverSkiffHudWidget_C::STATIC_Set_Progress_Bar_Fill_And_Background_Colors(class UProgressBar* ProgressBar, const struct FLinearColor& LinearColor, struct FProgressBarStyle* ProgressBarStyle)
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Set Progress Bar Fill And Background Colors");
UHoverSkiffHudWidget_C_Set_Progress_Bar_Fill_And_Background_Colors_Params params;
params.ProgressBar = ProgressBar;
params.LinearColor = LinearColor;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
if (ProgressBarStyle != nullptr)
*ProgressBarStyle = params.ProgressBarStyle;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_CurrentElementValueTextBlock_Text_1
// (NetReliable, NetRequest, Exec, NetMulticast, Private, NetServer, HasOutParms, NetClient, BlueprintEvent)
// Parameters:
// struct FText ReturnValue (Parm, OutParm, ReturnParm)
struct FText UHoverSkiffHudWidget_C::Get_CurrentElementValueTextBlock_Text_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_CurrentElementValueTextBlock_Text_1");
UHoverSkiffHudWidget_C_Get_CurrentElementValueTextBlock_Text_1_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get Tractor Progress Bar Percent
// ()
// Parameters:
// float ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData)
float UHoverSkiffHudWidget_C::Get_Tractor_Progress_Bar_Percent_()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get Tractor Progress Bar Percent ");
UHoverSkiffHudWidget_C_Get_Tractor_Progress_Bar_Percent__Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_Crosshair_ColorAndOpacity_1
// ()
// Parameters:
// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData)
struct FLinearColor UHoverSkiffHudWidget_C::Get_Crosshair_ColorAndOpacity_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_Crosshair_ColorAndOpacity_1");
UHoverSkiffHudWidget_C_Get_Crosshair_ColorAndOpacity_1_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_CameraLockIcon_ColorAndOpacity_1
// ()
// Parameters:
// struct FLinearColor ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData)
struct FLinearColor UHoverSkiffHudWidget_C::Get_CameraLockIcon_ColorAndOpacity_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_CameraLockIcon_ColorAndOpacity_1");
UHoverSkiffHudWidget_C_Get_CameraLockIcon_ColorAndOpacity_1_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_FuelConsumptionRateValueTextBlock_Text_1
// (Exec, Native, NetMulticast, Private, NetServer, HasOutParms, NetClient, BlueprintEvent)
// Parameters:
// struct FText ReturnValue (Parm, OutParm, ReturnParm)
struct FText UHoverSkiffHudWidget_C::Get_FuelConsumptionRateValueTextBlock_Text_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_FuelConsumptionRateValueTextBlock_Text_1");
UHoverSkiffHudWidget_C_Get_FuelConsumptionRateValueTextBlock_Text_1_Params params;
auto flags = fn->FunctionFlags;
fn->FunctionFlags |= 0x400;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_ElementFuelValueTextBlock_Text_1
// (NetReliable, NetRequest, Native, Static, MulticastDelegate, Protected, NetServer, NetClient, BlueprintEvent)
// Parameters:
// struct FText ReturnValue (Parm, OutParm, ReturnParm)
struct FText UHoverSkiffHudWidget_C::STATIC_Get_ElementFuelValueTextBlock_Text_1()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Get_ElementFuelValueTextBlock_Text_1");
UHoverSkiffHudWidget_C_Get_ElementFuelValueTextBlock_Text_1_Params params;
auto flags = fn->FunctionFlags;
fn->FunctionFlags |= 0x400;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
return params.ReturnValue;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.InitFromSkiff
// ()
// Parameters:
// class ATekHoverSkiff_Character_BP_C* FromSkiff (Parm, ZeroConstructor, IsPlainOldData)
void UHoverSkiffHudWidget_C::InitFromSkiff(class ATekHoverSkiff_Character_BP_C* FromSkiff)
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.InitFromSkiff");
UHoverSkiffHudWidget_C_InitFromSkiff_Params params;
params.FromSkiff = FromSkiff;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.StartClosingWidget
// ()
// Parameters:
// float NewLifeSpan (Parm, ZeroConstructor, IsPlainOldData)
void UHoverSkiffHudWidget_C::StartClosingWidget(float NewLifeSpan)
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.StartClosingWidget");
UHoverSkiffHudWidget_C_StartClosingWidget_Params params;
params.NewLifeSpan = NewLifeSpan;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.DestroySkiffHudWidget
// ()
void UHoverSkiffHudWidget_C::DestroySkiffHudWidget()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.DestroySkiffHudWidget");
UHoverSkiffHudWidget_C_DestroySkiffHudWidget_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.ResetSkiffHudWidget
// ()
void UHoverSkiffHudWidget_C::ResetSkiffHudWidget()
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.ResetSkiffHudWidget");
UHoverSkiffHudWidget_C_ResetSkiffHudWidget_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Tick
// ()
// Parameters:
// struct FGeometry* MyGeometry (Parm, IsPlainOldData)
// float* InDeltaTime (Parm, ZeroConstructor, IsPlainOldData)
void UHoverSkiffHudWidget_C::Tick(struct FGeometry* MyGeometry, float* InDeltaTime)
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.Tick");
UHoverSkiffHudWidget_C_Tick_Params params;
params.MyGeometry = MyGeometry;
params.InDeltaTime = InDeltaTime;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.ExecuteUbergraph_HoverSkiffHudWidget
// ()
// Parameters:
// int EntryPoint (Parm, ZeroConstructor, IsPlainOldData)
void UHoverSkiffHudWidget_C::ExecuteUbergraph_HoverSkiffHudWidget(int EntryPoint)
{
static auto fn = UObject::FindObject<UFunction>("Function HoverSkiffHudWidget.HoverSkiffHudWidget_C.ExecuteUbergraph_HoverSkiffHudWidget");
UHoverSkiffHudWidget_C_ExecuteUbergraph_HoverSkiffHudWidget_Params params;
params.EntryPoint = EntryPoint;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"sergey.2bite@gmail.com"
] | sergey.2bite@gmail.com |
ee409057a329511267903b5149eabec557ecc878 | 1cb28e7f237ff6ca9c3ce7e4cc530185aa98e3de | /DepthSkin.cpp | 57ab1707afb179d3cbb44151601d0c2d44b16295 | [] | no_license | jonathanvdc/computer-graphics | 1aa40c7b90ff7dbe5aa2185953eb67f28daa189c | 62b9f518026b4e75b7fcaac6f7048617369c816f | refs/heads/master | 2021-05-06T04:22:43.616582 | 2017-12-21T10:37:27 | 2017-12-21T10:37:27 | 114,994,232 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 424 | cpp | #include "DepthSkin.h"
#include <memory>
#include "DepthSkinBase.h"
#include "ITexture.h"
#include "ProjectedPolygonTexture.h"
using namespace Engine;
DepthSkin::DepthSkin()
{ }
/// \brief Creates a texture based on the given projected polygon
/// depth texture.
std::shared_ptr<ITexture> DepthSkin::CreateTexture(std::shared_ptr<ProjectedPolygonTexture> DepthTexture) const
{
return DepthTexture;
} | [
"jonathan.vdc@outlook.com"
] | jonathan.vdc@outlook.com |
a3cbf53db181b2f87bded32893d2c93bbb24a633 | c377b266f74f9c835cf3534728e38ab17116c650 | /src/StockAverager.cpp | 2b0f256cd47ca97e8907a29c80b92f20b522dee3 | [
"MIT"
] | permissive | gigs94/qlft | 68abb41cb93938d9b08fa7965e51dcf738bf3106 | 738c35e9dd9230375370bba4f9cf7ccf5f85c7f3 | refs/heads/master | 2021-01-20T17:02:35.867226 | 2016-07-14T22:45:28 | 2016-07-14T22:45:28 | 63,359,371 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 924 | cpp | #include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <unordered_map>
#include <StockAverager.h>
#include <StocksProcessor.h>
int main()
{
std::ifstream infile{"input.csv"};
std::ofstream outfile{"output.csv"};
StocksProcessor processor{};
while (infile)
{
std::string line;
std::string stockName;
long timestamp;
int volume;
int price;
if (!std::getline( infile, line )) break;
std::istringstream ss( line );
std::string d;
if (!getline( ss, d, ',' )) break;
timestamp = std::stol(d);
if (!getline( ss, stockName, ',' )) break;
if (!getline( ss, d, ',' )) break;
volume = std::stoi(d);
if (!getline( ss, d, '\n' )) break;
price = std::stoi(d);
processor.add(timestamp,stockName,volume,price);
};
outfile << processor;
};
| [
"dagregor@us.ibm.com"
] | dagregor@us.ibm.com |
e294a7391cdd3b9404ae9192be99939b65fcd67b | 8d9b42dfc3bdae1bc6e47c07326db3e4e3ab3ccb | /Src/Global/monsters.cpp | c1df0c6e0d0058d36ec4c62647056b153e474197 | [] | no_license | Zacktamondo/HeartOfDarkness-SDL | bfd49a443a0d947b34f8772168710f3ddd7bb763 | 8df295e56bcea14d8923fc68735844b79d40d7cb | refs/heads/master | 2022-11-26T01:50:12.988709 | 2020-08-03T08:17:59 | 2020-08-03T08:17:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 203,072 | cpp | /*
* Heart of Darkness engine rewrite
* Copyright (C) 2009-2011 Gregory Montoir (cyx@users.sourceforge.net)
*/
#include "game.h"
#include "level.h"
#include "resource.h"
#include "util.h"
// (lut[x] & 1) indicates a diagonal direction
static const uint8_t _mstLut1[] = {
// 0
0x08,
0x00, // kDirectionKeyMaskUp
0x02, // kDirectionKeyMaskRight
0x01, // kDirectionKeyMaskUp | kDirectionKeyMaskRight
// 4
0x04, // kDirectionKeyMaskDown
0x00, // kDirectionKeyMaskDown | kDirectionKeyMaskUp
0x03, // kDirectionKeyMaskDown | kDirectionKeyMaskRight
0x01, // kDirectionKeyMaskDown | kDirectionKeyMaskUp | kDirectionKeyMaskRight
// 8
0x06, // kDirectionKeyMaskLeft
0x07, // kDirectionKeyMaskLeft | kDirectionKeyMaskUp
0x02, // kDirectionKeyMaskLeft | kDirectionKeyMaskRight
0x01, // kDirectionKeyMaskLeft | kDirectionKeyMaskUp | kDirectionKeyMaskRight
// 12
0x05, // kDirectionKeyMaskLeft | kDirectionKeyMaskDown
0x07, // kDirectionKeyMaskLeft | kDirectionKeyMaskDown | kDirectionKeyMaskRight
0x03, // kDirectionKeyMaskLeft | kDirectionKeyMaskDown | kDirectionKeyMaskRight
0x01 // kDirectionKeyMaskLeft | kDirectionKeyMaskDown | kDirectionKeyMaskUp | kDirectionKeyMaskRight
};
// indexes _mstLut1
static const uint8_t _mstLut3[8 * 5] = {
0x01, 0x03, 0x09, 0x02, 0x08, 0x03, 0x02, 0x01, 0x06, 0x09, 0x02, 0x06, 0x03, 0x04, 0x01, 0x06,
0x04, 0x02, 0x0C, 0x03, 0x04, 0x0C, 0x06, 0x08, 0x02, 0x0C, 0x08, 0x04, 0x09, 0x06, 0x08, 0x09,
0x0C, 0x01, 0x04, 0x09, 0x01, 0x08, 0x03, 0x0C
};
// monster frames animation (minus #0, #4, #8, #12, #16, #20, eg. every 4th is skipped)
static const uint8_t _mstLut4[] = {
0x01, 0x02, 0x03, 0x05, 0x06, 0x07, 0x09, 0x0A, 0x0B, 0x0D, 0x0E, 0x0F, 0x11, 0x12, 0x13, 0x15,
0x16, 0x17
};
// indexes _mstLut4 clipped to [0,17], repeat the frame preceding the skipped ones
static const uint8_t _mstLut5[] = {
0x00, 0x00, 0x01, 0x02, 0x03, 0x03, 0x04, 0x05, 0x06, 0x06, 0x07, 0x08, 0x09, 0x09, 0x0A, 0x0B,
0x0C, 0x0C, 0x0D, 0x0E, 0x0F, 0x0F, 0x10, 0x11, 0x12, 0x12, 0x13, 0x14, 0x15, 0x15, 0x16, 0x17
};
static const uint8_t _fireflyPosData[] = {
0, 1, 2, 3, 4, 4, 4, 0xFF, 0, 1, 2, 2, 4, 4, 3, 0xFF,
0, 1, 1, 2, 3, 2, 3, 0xFF, 0, 1, 1, 2, 3, 3, 3, 0xFF,
0, 0, 1, 2, 2, 2, 2, 0xFF, 4, 4, 4, 3, 2, 1, 0, 0xFF,
3, 4, 4, 2, 2, 1, 0, 0xFF, 3, 2, 3, 2, 1, 1, 0, 0xFF,
3, 3, 3, 2, 1, 1, 0, 0xFF, 2, 2, 2, 2, 1, 0, 0, 0xFF
};
static const uint8_t kUndefinedMonsterByteCode[] = { 0x12, 0x34 };
static uint8_t mstGetFacingDirectionMask(uint8_t a) {
uint8_t r = 0;
if (a & kDirectionKeyMaskLeft) { // Andy left facing monster
r |= 1;
}
if (a & kDirectionKeyMaskDown) { // Andy below the monster
r |= 2;
}
return r;
}
void Game::mstMonster1ResetData(MonsterObject1 *m) {
m->m46 = 0;
LvlObject *o = m->o16;
if (o) {
o->dataPtr = 0;
}
for (int i = 0; i < kMaxMonsterObjects2; ++i) {
MonsterObject2 *mo = &_monsterObjects2Table[i];
if (mo->monster2Info && mo->monster1 == m) {
mo->monster1 = 0;
}
}
}
void Game::mstMonster2InitFirefly(MonsterObject2 *m) {
LvlObject *o = m->o;
m->x1 = _res->_mstPointOffsets[o->screenNum].xOffset;
m->y1 = _res->_mstPointOffsets[o->screenNum].yOffset;
m->x2 = m->x1 + 255;
m->y2 = m->y1 + 191;
const uint32_t num = _rnd.update();
m->hPosIndex = num % 40;
if (_fireflyPosData[m->hPosIndex] != 0xFF) {
m->hPosIndex &= ~7;
}
m->vPosIndex = m->hPosIndex;
if (num & 0x80) {
m->hPosIndex += 40;
} else {
m->vPosIndex += 40;
}
m->hDir = (num >> 16) & 1;
m->vDir = (num >> 17) & 1;
}
void Game::mstMonster2ResetData(MonsterObject2 *m) {
m->monster2Info = 0;
LvlObject *o = m->o;
if (o) {
o->dataPtr = 0;
}
}
void Game::mstTaskSetMonster2ScreenPosition(Task *t) {
MonsterObject2 *m = t->monster2;
LvlObject *o = m->o;
m->xPos = o->xPos + o->posTable[7].x;
m->yPos = o->yPos + o->posTable[7].y;
m->xMstPos = m->xPos + _res->_mstPointOffsets[o->screenNum].xOffset;
m->yMstPos = m->yPos + _res->_mstPointOffsets[o->screenNum].yOffset;
}
void Game::mstMonster1ResetWalkPath(MonsterObject1 *m) {
_rnd.resetMst(m->rnd_m35);
_rnd.resetMst(m->rnd_m49);
const uint8_t *ptr = m->monsterInfos;
const int num = (~m->flagsA5) & 1;
m->levelPosBounds_x2 = m->walkNode->coords[0][num] - (int32_t)READ_LE_UINT32(ptr + 904);
m->levelPosBounds_x1 = m->walkNode->coords[1][num] + (int32_t)READ_LE_UINT32(ptr + 904);
m->levelPosBounds_y2 = m->walkNode->coords[2][num] - (int32_t)READ_LE_UINT32(ptr + 908);
m->levelPosBounds_y1 = m->walkNode->coords[3][num] + (int32_t)READ_LE_UINT32(ptr + 908);
const uint32_t indexWalkCode = m->walkNode->walkCodeReset[num];
m->walkCode = (indexWalkCode == kNone) ? 0 : &_res->_mstWalkCodeData[indexWalkCode];
}
bool Game::mstUpdateInRange(MstMonsterAction *m) {
if (m->unk4 == 0) {
if (mstHasMonsterInRange(m, 0) && addChasingMonster(m, 0)) {
return true;
}
} else {
int direction = _rnd.update() & 1;
if (mstHasMonsterInRange(m, direction) && addChasingMonster(m, direction)) {
return true;
}
direction ^= 1;
if (mstHasMonsterInRange(m, direction) && addChasingMonster(m, direction)) {
return true;
}
}
return false;
}
bool Game::addChasingMonster(MstMonsterAction *m48, uint8_t direction) {
debug(kDebug_MONSTER, "addChasingMonster %d", direction);
m48->direction = direction;
if (m48->codeData != kNone) {
Task *t = createTask(_res->_mstCodeData + m48->codeData * 4);
if (!t) {
return false;
}
while ((this->*(t->run))(t) == 0);
}
_mstActionNum = m48 - &_res->_mstMonsterActionData[0];
_mstChasingMonstersCount = 0;
for (int i = 0; i < m48->areaCount; ++i) {
MstMonsterAreaAction *unk4 = m48->area[i].data;
const uint8_t num = unk4->monster1Index;
if (num != 0xFF) {
assert(num < kMaxMonsterObjects1);
unk4->direction = direction;
MonsterObject1 *m = &_monsterObjects1Table[num];
m->action = unk4;
m->flags48 |= 0x40;
m->flagsA5 = (m->flagsA5 & ~0x75) | 0xA;
mstMonster1ResetWalkPath(m);
Task *current = _monsterObjects1TasksList;
Task *t = m->task;
assert(t);
while (current) {
Task *next = current->nextPtr;
if (current == t) {
removeTask(&_monsterObjects1TasksList, t);
appendTask(&_monsterObjects1TasksList, t);
break;
}
current = next;
}
const uint32_t codeData = unk4->codeData;
assert(codeData != kNone);
resetTask(t, _res->_mstCodeData + codeData * 4);
++_mstChasingMonstersCount;
}
}
debug(kDebug_MONSTER, "_mstChasingMonstersCount %d", _mstChasingMonstersCount);
return true;
}
void Game::mstMonster1ClearChasingMonster(MonsterObject1 *m) {
m->flags48 &= ~0x50;
m->action->monster1Index = 0xFF;
m->action = 0;
--_mstChasingMonstersCount;
if (_mstChasingMonstersCount <= 0) {
_mstActionNum = -1;
}
}
void Game::mstTaskSetMonster1BehaviorState(Task *t, MonsterObject1 *m, int num) {
MstBehaviorState *behaviorState = &m->m46->data[num];
m->behaviorState = behaviorState;
m->monsterInfos = _res->_mstMonsterInfos + behaviorState->indexMonsterInfo * kMonsterInfoDataSize;
if (behaviorState->indexUnk51 == kNone) {
m->flags48 &= ~4;
}
const uint32_t indexWalkPath = behaviorState->walkPath;
m->walkNode = _res->_mstWalkPathData[indexWalkPath].data;
mstTaskUpdateScreenPosition(t);
if (!mstMonster1UpdateWalkPath(m)) {
mstMonster1ResetWalkPath(m);
}
if (t->run == &Game::mstTask_monsterWait4) {
t->run = &Game::mstTask_main;
}
if ((m->flagsA5 & 8) == 0 && t->run == &Game::mstTask_idle) {
mstTaskSetNextWalkCode(t);
}
}
int Game::mstTaskStopMonsterObject1(Task *t) {
if (_mstActionNum == -1) {
return 0;
}
MonsterObject1 *m = t->monster1;
// bugfix: original code meant to check bit 3 directly ?
// const uint8_t r = (m->flagsA5 == 0) ? 1 : 0;
// if ((r & 8) != 0) {
// return 0;
// }
const MstMonsterAreaAction *m48 = m->action;
if (!m48) {
return 0;
}
const uint32_t codeData = m48->codeData2;
if (codeData != kNone) {
resetTask(t, _res->_mstCodeData + codeData * 4);
mstMonster1ClearChasingMonster(m);
return 0;
}
mstMonster1ClearChasingMonster(m);
if (m->flagsA5 & 0x80) {
m->flagsA5 &= ~8;
const uint32_t codeData = m->behaviorState->codeData;
if (codeData != kNone) {
resetTask(t, _res->_mstCodeData + codeData * 4);
return 0;
}
m->o16->actionKeyMask = 7;
m->o16->directionKeyMask = 0;
t->run = &Game::mstTask_idle;
return 0;
}
m->flagsA5 = (m->flagsA5 & ~9) | 6;
if (m->flagsA6 & 2) {
return 0;
}
return mstTaskInitMonster1Type2(t, 1);
}
void Game::mstMonster1SetScreenPosition(MonsterObject1 *m) {
LvlObject *o = m->o16;
o->xPos = m->xPos - o->posTable[7].x;
o->yPos = m->yPos - o->posTable[7].y;
m->xMstPos = m->xPos + _res->_mstPointOffsets[o->screenNum].xOffset;
m->yMstPos = m->yPos + _res->_mstPointOffsets[o->screenNum].yOffset;
}
bool Game::mstMonster1SetWalkingBounds(MonsterObject1 *m) {
MstBehaviorState *behaviorState = m->behaviorState;
const uint32_t indexWalkPath = behaviorState->walkPath;
MstWalkPath *walkPath = &_res->_mstWalkPathData[indexWalkPath];
MstWalkNode *walkNode = walkPath->data;
int x = m->xMstPos;
int y = m->yMstPos;
if (m->levelPosBounds_x1 >= 0) {
if (x < m->levelPosBounds_x1) {
x = m->levelPosBounds_x1;
} else if (x > m->levelPosBounds_x2) {
x = m->levelPosBounds_x2;
}
if (y < m->levelPosBounds_y1) {
y = m->levelPosBounds_y1;
} else if (y > m->levelPosBounds_y2) {
y = m->levelPosBounds_y2;
}
}
const uint32_t indexWalkBox = walkPath->data[0].walkBox;
const MstWalkBox *m34 = &_res->_mstWalkBoxData[indexWalkBox];
int xWalkBox = (m34->right - m34->left) / 2 + m34->left;
int minDistance = 0x1000000;
int yWalkBox = y;
uint32_t i = 0;
for (; i < walkPath->count; ++i) {
const uint32_t indexWalkBox = walkPath->data[i].walkBox;
const MstWalkBox *m34 = &_res->_mstWalkBoxData[indexWalkBox];
if (!rect_contains(m34->left, m34->top, m34->right, m34->bottom, x, y)) {
// find the closest box
const int d1 = ABS(x - m34->left);
if (d1 < minDistance) {
minDistance = d1;
walkNode = &walkPath->data[i];
xWalkBox = m34->left;
}
const int d2 = ABS(x - m34->right);
if (d2 < minDistance) {
minDistance = d2;
walkNode = &walkPath->data[i];
xWalkBox = m34->right;
}
} else {
// find match, point is in the box
xWalkBox = x;
yWalkBox = y;
walkNode = &walkPath->data[i];
break;
}
}
if (i == walkPath->count) {
// calculate the yPos for the walkBox
const uint32_t indexWalkBox = walkNode->walkBox;
const MstWalkBox *m34 = &_res->_mstWalkBoxData[indexWalkBox];
if (y <= m34->bottom) {
y = (m34->bottom - m34->top) / 2 + m34->top;
}
yWalkBox = y;
}
// find screenNum for level position
int screenNum = -1;
int xLevelPos;
int yLevelPos;
for (int i = 0; i < _res->_mstHdr.screensCount; ++i) {
xLevelPos = _res->_mstPointOffsets[i].xOffset;
yLevelPos = _res->_mstPointOffsets[i].yOffset;
if (rect_contains(xLevelPos, yLevelPos, xLevelPos + 255, yLevelPos + 191, xWalkBox, yWalkBox)) {
screenNum = i;
break;
}
}
if (screenNum == -1) {
screenNum = 0;
xLevelPos = _res->_mstPointOffsets[0].xOffset + 256 / 2;
yLevelPos = _res->_mstPointOffsets[0].yOffset + 192 / 2;
}
LvlObject *o = m->o16;
o->screenNum = screenNum;
m->xPos = xWalkBox - xLevelPos;
m->yPos = yWalkBox - yLevelPos;
mstMonster1SetScreenPosition(m);
m->walkNode = walkNode;
mstMonster1ResetWalkPath(m);
return true;
}
bool Game::mstMonster1UpdateWalkPath(MonsterObject1 *m) {
debug(kDebug_MONSTER, "mstMonster1UpdateWalkPath m %p", m);
const uint8_t screenNum = m->o16->screenNum;
MstBehaviorState *behaviorState = m->behaviorState;
const uint32_t indexWalkPath = behaviorState->walkPath;
MstWalkPath *walkPath = &_res->_mstWalkPathData[indexWalkPath];
// start from screen number
uint32_t indexWalkNode = walkPath->walkNodeData[screenNum];
if (indexWalkNode != kNone) {
MstWalkNode *walkNode = &walkPath->data[indexWalkNode];
uint32_t indexWalkBox = walkNode->walkBox;
const MstWalkBox *m34 = &_res->_mstWalkBoxData[indexWalkBox];
while (m34->left <= m->xMstPos) {
if (m34->right >= m->xMstPos && m34->top <= m->yMstPos && m34->bottom >= m->yMstPos) {
if (m->walkNode == walkNode) {
return false;
}
m->walkNode = walkNode;
mstMonster1ResetWalkPath(m);
return true;
}
indexWalkNode = walkNode->nextWalkNode;
if (indexWalkNode == kNone) {
break;
}
walkNode = &walkPath->data[indexWalkNode];
indexWalkBox = walkNode->walkBox;
m34 = &_res->_mstWalkBoxData[indexWalkBox];
}
}
return mstMonster1SetWalkingBounds(m);
}
uint32_t Game::mstMonster1GetNextWalkCode(MonsterObject1 *m) {
MstWalkCode *walkCode = m->walkCode;
int num = 0;
if (walkCode->indexDataCount != 0) {
num = _rnd.getMstNextNumber(m->rnd_m35);
num = walkCode->indexData[num];
}
const uint32_t codeData = walkCode->codeData[num];
return codeData;
}
int Game::mstTaskSetNextWalkCode(Task *t) {
MonsterObject1 *m = t->monster1;
assert(m);
const uint32_t codeData = mstMonster1GetNextWalkCode(m);
assert(codeData != kNone);
resetTask(t, _res->_mstCodeData + codeData * 4);
const int counter = m->executeCounter;
m->executeCounter = _executeMstLogicCounter;
return m->executeCounter - counter;
}
void Game::mstBoundingBoxClear(MonsterObject1 *m, int dir) {
assert(dir == 0 || dir == 1);
uint8_t num = m->bboxNum[dir];
if (num < _mstBoundingBoxesCount && _mstBoundingBoxesTable[num].monster1Index == m->monster1Index) {
_mstBoundingBoxesTable[num].monster1Index = 0xFF;
int i = num;
for (; i < _mstBoundingBoxesCount; ++i) {
if (_mstBoundingBoxesTable[i].monster1Index != 0xFF) {
break;
}
}
if (i == _mstBoundingBoxesCount) {
_mstBoundingBoxesCount = num;
}
}
m->bboxNum[dir] = 0xFF;
}
int Game::mstBoundingBoxCollides1(int num, int x1, int y1, int x2, int y2) const {
for (int i = 0; i < _mstBoundingBoxesCount; ++i) {
const MstBoundingBox *p = &_mstBoundingBoxesTable[i];
if (p->monster1Index == 0xFF || num == p->monster1Index) {
continue;
}
if (rect_intersects(x1, y1, x2, y2, p->x1, p->y1, p->x2, p->y2)) {
return i + 1;
}
}
return 0;
}
int Game::mstBoundingBoxUpdate(int num, int monster1Index, int x1, int y1, int x2, int y2) {
if (num == 0xFF) {
for (num = 0; num < _mstBoundingBoxesCount; ++num) {
if (_mstBoundingBoxesTable[num].monster1Index == 0xFF) {
break;
}
}
assert(num < kMaxBoundingBoxes);
MstBoundingBox *p = &_mstBoundingBoxesTable[num];
p->x1 = x1;
p->y1 = y1;
p->x2 = x2;
p->y2 = y2;
p->monster1Index = monster1Index;
if (num == _mstBoundingBoxesCount) {
++_mstBoundingBoxesCount;
}
} else if (num < _mstBoundingBoxesCount) {
MstBoundingBox *p = &_mstBoundingBoxesTable[num];
if (p->monster1Index == monster1Index) {
p->x1 = x1;
p->y1 = y1;
p->x2 = x2;
p->y2 = y2;
}
}
return num;
}
int Game::mstBoundingBoxCollides2(int monster1Index, int x1, int y1, int x2, int y2) const {
for (int i = 0; i < _mstBoundingBoxesCount; ++i) {
const MstBoundingBox *p = &_mstBoundingBoxesTable[i];
if (p->monster1Index == 0xFF || p->monster1Index == monster1Index) {
continue;
}
if (p->monster1Index == 0xFE) { // Andy
if (_monsterObjects1Table[monster1Index].monsterInfos[944] != 15) {
continue;
}
}
if (rect_intersects(x1, y1, x2, y2, p->x1, p->y1, p->x2, p->y2)) {
return i + 1;
}
}
return 0;
}
int Game::getMstDistance(int y, const AndyShootData *p) const {
switch (p->directionMask) {
case 0:
if (p->boundingBox.x1 <= _mstTemp_x2 && p->boundingBox.y2 >= _mstTemp_y1 && p->boundingBox.y1 <= _mstTemp_y2) {
const int dx = _mstTemp_x1 - p->boundingBox.x2;
if (dx <= 0) {
return 0;
}
return (p->type == 3) ? 0 : dx / p->width;
}
break;
case 1:
{
const int dx = p->boundingBox.x2 - _mstTemp_x1;
if (dx >= 0) {
const int dy = p->boundingBox.y1 - dx * 2 / 3;
if (dy <= _mstTemp_y2) {
const int dx2 = p->boundingBox.x1 - _mstTemp_x2;
if (dx2 <= 0) {
return (p->boundingBox.y2 >= _mstTemp_y1) ? 0 : -1;
}
const int dy2 = p->boundingBox.y2 + dx2 * 2 / 3;
if (dy2 > _mstTemp_y1) {
return (p->type == 3) ? 0 : dx2 / p->width;
}
}
}
}
break;
case 2: {
const int dx = _mstTemp_x1 - p->boundingBox.x2;
if (dx >= 0) {
const int dy = p->boundingBox.y2 + dx * 2 / 3;
if (dy >= _mstTemp_x1) {
const int dx2 = p->boundingBox.x1 - _mstTemp_x2;
if (dx2 <= 0) {
return (p->boundingBox.y1 <= _mstTemp_y2) ? 0 : -1;
}
const int dy2 = p->boundingBox.y1 + dx2 * 2 / 3;
if (dy2 <= _mstTemp_y2) {
return (p->type == 3) ? 0 : dx2 / p->width;
}
}
}
}
break;
case 3: {
const int dx = _mstTemp_x2 - p->boundingBox.x1;
if (dx >= 0) {
const int dy = p->boundingBox.y1 - dx * 2 / 3;
if (dy <= _mstTemp_y2) {
const int dx2 = _mstTemp_x1 - p->boundingBox.x2;
if (dx2 <= 0) {
return (p->boundingBox.y2 >= _mstTemp_y1) ? 0 : -1;
}
const int dy2 = p->boundingBox.y2 - dx2 * 2 / 3;
if (dy2 >= _mstTemp_y1) {
return (p->type == 3) ? 0 : dx2 / p->width;
}
}
}
}
break;
case 4:
{
const int dx = _mstTemp_x2 - p->boundingBox.x1;
if (dx >= 0) {
const int dy = dx * 2 / 3 + p->boundingBox.y2;
if (dy >= _mstTemp_y1) {
const int dx2 = _mstTemp_x1 - p->boundingBox.x2;
if (dx2 <= 0) {
return (p->boundingBox.y1 <= _mstTemp_y2) ? 0 : -1;
}
const int dy2 = dx2 * 2 / 3 + + p->boundingBox.y1;
if (dy2 <= _mstTemp_y2) {
return (p->type == 3) ? 0 : dx2 / p->width;
}
}
}
}
break;
case 5:
if (p->boundingBox.x2 >= _mstTemp_x1 && p->boundingBox.y2 >= _mstTemp_y1 && p->boundingBox.y1 <= _mstTemp_y2) {
const int dx = p->boundingBox.x1 - _mstTemp_x2;
if (dx <= 0) {
return 0;
}
return (p->type == 3) ? 0 : dx / p->width;
}
break;
case 6:
if (p->boundingBox.y2 >= _mstTemp_y1 && p->boundingBox.x2 >= _mstTemp_x1 && p->boundingBox.x1 <= _mstTemp_x2) {
const int dy = p->boundingBox.y1 - _mstTemp_y2;
if (dy <= 0) {
return 0;
}
return (p->type == 3) ? 0 : dy / p->height;
}
break;
case 7:
if (p->boundingBox.y1 <= _mstTemp_y2 && p->boundingBox.x2 >= _mstTemp_x1 && p->boundingBox.x1 <= _mstTemp_x2) {
const int dy = _mstTemp_y1 - p->boundingBox.y2;
if (dy <= 0) {
return 0;
}
return (p->type == 3) ? 0 : dy / p->height;
}
break;
case 128: // 8
if (p->boundingBox.x1 <= _mstTemp_x2 && y >= _mstTemp_y1 && y - _mstTemp_y2 <= 9) {
const int dx = _mstTemp_x1 - p->boundingBox.x2;
if (dx <= 0) {
return 0;
}
return dx / p->width;
}
break;
case 133: // 9
if (p->boundingBox.x2 >= _mstTemp_x1 && y >= _mstTemp_y1 && y - _mstTemp_y2 <= 9) {
const int dx = _mstTemp_x2 - p->boundingBox.x1;
if (dx <= 0) {
return 0;
}
return dx / p->width;
}
break;
}
return -1;
}
void Game::mstTaskUpdateScreenPosition(Task *t) {
MonsterObject1 *m = t->monster1;
assert(m);
LvlObject *o = m->o20;
if (!o) {
o = m->o16;
}
assert(o);
m->xPos = o->xPos + o->posTable[7].x;
m->yPos = o->yPos + o->posTable[7].y;
m->xMstPos = m->xPos + _res->_mstPointOffsets[o->screenNum].xOffset;
m->yMstPos = m->yPos + _res->_mstPointOffsets[o->screenNum].yOffset;
const uint8_t *ptr = m->monsterInfos;
if (ptr[946] & 4) {
const uint8_t *ptr1 = ptr + (o->flags0 & 0xFF) * 28;
if (ptr1[0xE] != 0) {
_mstTemp_x1 = m->xMstPos + (int8_t)ptr1[0xC];
_mstTemp_y1 = m->yMstPos + (int8_t)ptr1[0xD];
_mstTemp_x2 = _mstTemp_x1 + ptr1[0xE] - 1;
_mstTemp_y2 = _mstTemp_y1 + ptr1[0xF] - 1;
m->bboxNum[0] = mstBoundingBoxUpdate(m->bboxNum[0], m->monster1Index, _mstTemp_x1, _mstTemp_y1, _mstTemp_x2, _mstTemp_y2);
} else {
mstBoundingBoxClear(m, 0);
}
}
m->xDelta = _mstAndyLevelPosX - m->xMstPos;
if (m->xDelta < 0) {
m->xDelta = -m->xDelta;
m->facingDirectionMask = kDirectionKeyMaskLeft;
} else {
m->facingDirectionMask = kDirectionKeyMaskRight;
}
m->yDelta = _mstAndyLevelPosY - m->yMstPos;
if (m->yDelta < 0) {
m->yDelta = -m->yDelta;
m->facingDirectionMask |= kDirectionKeyMaskUp;
} else {
m->facingDirectionMask |= kDirectionKeyMaskDown;
}
m->collideDistance = -1;
m->shootData = 0;
if (_andyShootsCount != 0 && !_specialAnimFlag && (o->flags1 & 6) != 6 && (m->localVars[7] > 0 || m->localVars[7] < -1) && (m->flagsA5 & 0x80) == 0) {
for (int i = 0; i < _andyShootsCount; ++i) {
AndyShootData *p = &_andyShootsTable[i];
if (m->xDelta > 256 || m->yDelta > 192) {
continue;
}
_mstTemp_x1 = o->xPos;
_mstTemp_y1 = o->yPos;
_mstTemp_x2 = o->xPos + o->width - 1;
_mstTemp_y2 = o->yPos + o->height - 1;
const uint8_t _al = p->type;
if (_al == 1 || _al == 2) {
if (p->monsterDistance >= m->xDelta + m->yDelta) {
if (o->screenNum != _currentScreen) {
const int dx = _res->_mstPointOffsets[o->screenNum].xOffset - _res->_mstPointOffsets[_currentScreen].xOffset;
const int dy = _res->_mstPointOffsets[o->screenNum].yOffset - _res->_mstPointOffsets[_currentScreen].yOffset;
_mstTemp_x1 += dx;
_mstTemp_x2 += dx;
_mstTemp_y1 += dy;
_mstTemp_y2 += dy;
}
if (rect_intersects(0, 0, 255, 191, _mstTemp_x1, _mstTemp_y1, _mstTemp_x2, _mstTemp_y2)) {
const uint8_t type = m->monsterInfos[944];
if ((type == 9 && clipLvlObjectsSmall(p->o, o, 132)) || (type != 9 && clipLvlObjectsSmall(p->o, o, 20))) {
p->m = m;
p->monsterDistance = m->xDelta + m->yDelta;
p->clipX = _clipBoxOffsetX;
p->clipY = _clipBoxOffsetY;
}
}
if (o->screenNum != _currentScreen) {
const int dx = _res->_mstPointOffsets[_currentScreen].xOffset - _res->_mstPointOffsets[o->screenNum].xOffset;
const int dy = _res->_mstPointOffsets[_currentScreen].yOffset - _res->_mstPointOffsets[o->screenNum].yOffset;
_mstTemp_x1 += dx;
_mstTemp_x2 += dx;
_mstTemp_y1 += dy;
_mstTemp_y2 += dy;
}
}
} else if (_al == 3 && p->monsterDistance > m->xDelta + m->yDelta) {
if (o->screenNum != _currentScreen) {
const int dx = _res->_mstPointOffsets[o->screenNum].xOffset - _res->_mstPointOffsets[_currentScreen].xOffset;
const int dy = _res->_mstPointOffsets[o->screenNum].yOffset - _res->_mstPointOffsets[_currentScreen].yOffset;
_mstTemp_x1 += dx;
_mstTemp_x2 += dx;
_mstTemp_y1 += dy;
_mstTemp_y2 += dy;
}
if (rect_intersects(0, 0, 255, 191, _mstTemp_x1, _mstTemp_y1, _mstTemp_x2, _mstTemp_y2)) {
if (testPlasmaCannonPointsDirection(_mstTemp_x1, _mstTemp_y1, _mstTemp_x2, _mstTemp_y2)) {
p->monsterDistance = m->xDelta + m->yDelta;
p->m = m;
p->plasmaCannonPointsCount = _plasmaCannonLastIndex1;
}
}
const int dx = _res->_mstPointOffsets[_currentScreen].xOffset - _res->_mstPointOffsets[o->screenNum].xOffset;
const int dy = _res->_mstPointOffsets[_currentScreen].yOffset - _res->_mstPointOffsets[o->screenNum].yOffset;
_mstTemp_x1 += dx;
_mstTemp_x2 += dx;
_mstTemp_y1 += dy;
_mstTemp_y2 += dy;
}
_mstTemp_x1 += _res->_mstPointOffsets[o->screenNum].xOffset;
_mstTemp_y1 += _res->_mstPointOffsets[o->screenNum].yOffset;
_mstTemp_x2 += _res->_mstPointOffsets[o->screenNum].xOffset;
_mstTemp_y2 += _res->_mstPointOffsets[o->screenNum].yOffset;
int res = getMstDistance((m->monsterInfos[946] & 2) != 0 ? p->boundingBox.y2 : m->yMstPos, p);
if (res < 0) {
continue;
}
if (m->collideDistance == -1 || m->collideDistance > res || (m->collideDistance == 0 && res == 0 && (m->shootData->type & 1) == 0 && p->type == 2)) {
m->shootData = p;
m->collideDistance = res;
}
}
}
if (m->facingDirectionMask & kDirectionKeyMaskLeft) {
m->goalPosBounds_x1 = READ_LE_UINT32(ptr + 920);
m->goalPosBounds_x2 = READ_LE_UINT32(ptr + 924);
} else {
m->goalPosBounds_x1 = READ_LE_UINT32(ptr + 912);
m->goalPosBounds_x2 = READ_LE_UINT32(ptr + 916);
}
// m->unk90 =
// m->unk8C =
if (_andyShootsTable[0].type == 3 && m->shootSource != 0 && _andyShootsTable[0].directionMask == m->shootDirection && m->directionKeyMask == _andyObject->directionKeyMask) {
m->flags48 |= 0x80;
} else {
m->shootDirection = -1;
m->flags48 &= ~0x80;
}
}
void Game::shuffleMstMonsterActionIndex(MstMonsterActionIndex *p) {
for (uint32_t i = 0; i < p->dataCount; ++i) {
p->data[i] &= 0x7F;
}
shuffleArray(p->data, p->dataCount);
}
void Game::initMstCode() {
memset(_mstVars, 0, sizeof(_mstVars));
if (_mstDisabled) {
return;
}
// _mstLut initialization
resetMstCode();
}
void Game::resetMstCode() {
if (_mstDisabled) {
return;
}
_mstFlags = 0;
for (int i = 0; i < kMaxMonsterObjects1; ++i) {
mstMonster1ResetData(&_monsterObjects1Table[i]);
}
for (int i = 0; i < kMaxMonsterObjects2; ++i) {
mstMonster2ResetData(&_monsterObjects2Table[i]);
}
clearLvlObjectsList1();
for (int i = 0; i < _res->_mstHdr.screenAreaDataCount; ++i) {
_res->_mstScreenAreaData[i].unk0x1D = 1;
}
_rnd.initMstTable();
_rnd.initTable();
for (int i = 0; i < _res->_mstHdr.movingBoundsDataCount; ++i) {
const int count = _res->_mstMovingBoundsData[i].indexDataCount;
if (count != 0) {
shuffleArray(_res->_mstMovingBoundsData[i].indexData, count);
}
}
for (int i = 0; i < _res->_mstHdr.walkCodeDataCount; ++i) {
const int count = _res->_mstWalkCodeData[i].indexDataCount;
if (count != 0) {
shuffleArray(_res->_mstWalkCodeData[i].indexData, count);
}
}
for (int i = 0; i < _res->_mstHdr.monsterActionIndexDataCount; ++i) {
shuffleMstMonsterActionIndex(&_res->_mstMonsterActionIndexData[i]);
}
_mstOp67_x1 = -256;
_mstOp67_x2 = -256;
memset(_monsterObjects1Table, 0, sizeof(_monsterObjects1Table));
memset(_monsterObjects2Table, 0, sizeof(_monsterObjects2Table));
memset(_mstVars, 0, sizeof(_mstVars));
memset(_tasksTable, 0, sizeof(_tasksTable));
_m43Num3 = _m43Num1 = _m43Num2 = _mstActionNum = -1;
_mstOp54Counter = 0; // bugfix: not reset in the original, causes uninitialized reads at the beginning of 'fort'
_executeMstLogicPrevCounter = _executeMstLogicCounter = 0;
// _mstUnk8 = 0;
_specialAnimFlag = false;
_mstAndyRectNum = 0xFF;
_mstBoundingBoxesCount = 0;
_mstOp67_y1 = 0;
_mstOp67_y2 = 0;
_mstOp67_screenNum = -1;
_mstOp68_x1 = 256;
_mstOp68_x2 = 256;
_mstOp68_y1 = 0;
_mstOp68_y2 = 0;
_mstOp68_screenNum = -1;
_mstLevelGatesMask = 0;
// _mstLevelGatesTestMask = 0xFFFFFFFF;
_mstAndyVarMask = 0;
_tasksList = 0;
_monsterObjects1TasksList = 0;
_monsterObjects2TasksList = 0;
// _mstTasksList3 = 0;
// _mstTasksList4 = 0;
if (_res->_mstTickCodeData != kNone) {
_mstVars[31] = _mstTickDelay = _res->_mstTickDelay;
} else {
_mstVars[31] = -1;
}
_mstVars[30] = 0x20;
for (int i = 0; i < kMaxMonsterObjects1; ++i) {
_monsterObjects1Table[i].monster1Index = i;
}
for (int i = 0; i < kMaxMonsterObjects2; ++i) {
_monsterObjects2Table[i].monster2Index = i;
}
mstUpdateRefPos();
_mstAndyLevelPrevPosX = _mstAndyLevelPosX;
_mstAndyLevelPrevPosY = _mstAndyLevelPosY;
}
void Game::startMstCode() {
mstUpdateRefPos();
_mstAndyLevelPrevPosX = _mstAndyLevelPosX;
_mstAndyLevelPrevPosY = _mstAndyLevelPosY;
int offset = 0;
for (int i = 0; i < _res->_mstHdr.infoMonster1Count; ++i) {
offset += kMonsterInfoDataSize;
const uint32_t unk30 = READ_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x30]); // 900
const uint32_t unk34 = READ_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x34]); // 896
const uint32_t unk20 = _mstAndyLevelPosX - unk30;
const uint32_t unk1C = _mstAndyLevelPosX + unk30;
WRITE_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x20], unk20);
WRITE_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x1C], unk1C);
WRITE_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x24], unk20 - unk34);
WRITE_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x18], unk1C + unk34);
const uint32_t unk10 = _mstAndyLevelPosY - unk30;
const uint32_t unk0C = _mstAndyLevelPosY + unk30;
WRITE_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x10], unk10);
WRITE_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x0C], unk0C);
WRITE_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x14], unk10 - unk34);
WRITE_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x08], unk0C + unk34);
}
if (_level->_checkpoint < _res->_mstHdr.levelCheckpointCodeDataCount) {
const uint32_t codeData = _res->_mstLevelCheckpointCodeData[_level->_checkpoint];
if (codeData != kNone) {
Task *t = createTask(_res->_mstCodeData + codeData * 4);
if (t) {
_runTaskOpcodesCount = 0;
while ((this->*(t->run))(t) == 0);
}
}
}
}
static bool compareOp(int op, int num1, int num2) {
switch (op) {
case 0:
return num1 != num2;
case 1:
return num1 == num2;
case 2:
return num1 >= num2;
case 3:
return num1 > num2;
case 4:
return num1 <= num2;
case 5:
return num1 < num2;
case 6:
return (num1 & num2) == 0;
case 7:
return (num1 | num2) == 0;
case 8:
return (num1 ^ num2) == 0;
default:
error("compareOp unhandled op %d", op);
break;
}
return false;
}
static void arithOp(int op, int *p, int num) {
switch (op) {
case 0:
*p = num;
break;
case 1:
*p += num;
break;
case 2:
*p -= num;
break;
case 3:
*p *= num;
break;
case 4:
if (num != 0) {
*p /= num;
}
break;
case 5:
*p <<= num;
break;
case 6:
*p >>= num;
break;
case 7:
*p &= num;
break;
case 8:
*p |= num;
break;
case 9:
*p ^= num;
break;
default:
error("arithOp unhandled op %d", op);
break;
}
}
void Game::executeMstCode() {
_andyActionKeyMaskAnd = 0xFF;
_andyDirectionKeyMaskAnd = 0xFF;
_andyActionKeyMaskOr = 0;
_andyDirectionKeyMaskOr = 0;
if (_mstDisabled) {
return;
}
++_executeMstLogicCounter;
if (_mstLevelGatesMask != 0) {
_mstHelper1Count = 0;
executeMstCodeHelper1();
_mstLevelGatesMask = 0;
}
for (int i = 0; i < kMaxAndyShoots; ++i) {
_andyShootsTable[i].shootObjectData = 0;
_andyShootsTable[i].m = 0;
_andyShootsTable[i].monsterDistance = 0x1000000;
}
mstUpdateMonster1ObjectsPosition();
if (_mstVars[31] > 0) {
--_mstVars[31];
if (_mstVars[31] == 0) {
uint32_t codeData = _res->_mstTickCodeData;
assert(codeData != kNone);
Task *t = createTask(_res->_mstCodeData + codeData * 4);
if (t) {
t->state = 1;
}
}
}
const MstScreenArea *msac;
while ((msac = _res->findMstCodeForPos(_currentScreen, _mstAndyLevelPosX, _mstAndyLevelPosY)) != 0) {
debug(kDebug_MONSTER, "trigger for %d,%d", _mstAndyLevelPosX, _mstAndyLevelPosY);
_res->flagMstCodeForPos(msac->unk0x1C, 0);
assert(msac->codeData != kNone);
createTask(_res->_mstCodeData + msac->codeData * 4);
}
if (_mstAndyCurrentScreenNum != _currentScreen) {
_mstAndyCurrentScreenNum = _currentScreen;
}
for (Task *t = _tasksList; t; t = t->nextPtr) {
_runTaskOpcodesCount = 0;
while ((this->*(t->run))(t) == 0);
}
for (int i = 0; i < _andyShootsCount; ++i) {
AndyShootData *p = &_andyShootsTable[i];
MonsterObject1 *m = p->m;
if (!m) {
continue;
}
const int energy = m->localVars[7];
ShootLvlObjectData *dat = p->shootObjectData;
if (dat) {
if (energy > 0) {
if (_cheats & kCheatOneHitSpecialPowers) {
m->localVars[7] = 0;
} else if (p->type == 2) {
m->localVars[7] -= 4;
if (m->localVars[7] < 0) {
m->localVars[7] = 0;
}
} else {
--m->localVars[7];
}
dat->unk3 = 0x80;
dat->xPosShoot = p->clipX;
dat->yPosShoot = p->clipY;
dat->o = m->o16;
} else if (energy == -2) {
dat->unk3 = 0x80;
dat->xPosShoot = p->clipX;
dat->yPosShoot = p->clipY;
}
continue;
}
if (energy > 0) {
if (_cheats & kCheatOneHitPlasmaCannon) {
m->localVars[7] = 0;
} else {
m->localVars[7] = energy - 1;
}
_plasmaCannonLastIndex1 = p->plasmaCannonPointsCount;
} else if (energy == -2) {
_plasmaCannonLastIndex1 = p->plasmaCannonPointsCount;
} else {
_plasmaCannonLastIndex1 = 0;
}
}
for (Task *t = _monsterObjects1TasksList; t; t = t->nextPtr) {
_runTaskOpcodesCount = 0;
if (mstUpdateTaskMonsterObject1(t) == 0) {
while ((this->*(t->run))(t) == 0);
}
}
for (Task *t = _monsterObjects2TasksList; t; t = t->nextPtr) {
_runTaskOpcodesCount = 0;
if (mstUpdateTaskMonsterObject2(t) == 0) {
while ((this->*(t->run))(t) == 0);
}
}
}
void Game::mstWalkPathUpdateIndex(MstWalkPath *walkPath, int index) {
uint32_t _walkNodesTable[32];
int _walkNodesFirstIndex, _walkNodesLastIndex;
int32_t buffer[64];
for (uint32_t i = 0; i < walkPath->count; ++i) {
MstWalkNode *walkNode = &walkPath->data[i];
memset(buffer, 0xFF, sizeof(buffer));
memset(walkNode->unk60[index], 0, walkPath->count);
_walkNodesTable[0] = i;
_walkNodesLastIndex = 1;
buffer[i] = 0;
_walkNodesFirstIndex = 0;
while (_walkNodesFirstIndex != _walkNodesLastIndex) {
uint32_t vf = _walkNodesTable[_walkNodesFirstIndex];
++_walkNodesFirstIndex;
if (_walkNodesFirstIndex >= 32) {
_walkNodesFirstIndex = 0;
}
const uint32_t indexWalkBox = walkPath->data[vf].walkBox;
const MstWalkBox *m34 = &_res->_mstWalkBoxData[indexWalkBox];
for (int j = 0; j < 4; ++j) {
const uint32_t indexWalkNode = walkPath->data[vf].neighborWalkNode[j];
if (indexWalkNode == kNone) {
continue;
}
assert(indexWalkNode < walkPath->count);
uint32_t mask;
const uint8_t flags = m34->flags[j];
if (flags & 0x80) {
mask = _mstAndyVarMask & (1 << (flags & 0x7F));
} else {
mask = flags & (1 << index);
}
if (mask != 0) {
continue;
}
int delta;
if (j == 0 || j == 1) {
delta = m34->right - m34->left + buffer[vf];
} else {
delta = m34->bottom - m34->top + buffer[vf];
}
if (delta >= buffer[i]) {
continue;
}
if (buffer[indexWalkNode] == -1) {
_walkNodesTable[_walkNodesLastIndex] = indexWalkNode;
++_walkNodesLastIndex;
if (_walkNodesLastIndex >= 32) {
_walkNodesLastIndex = 0;
}
}
buffer[i] = delta;
uint8_t value;
if (vf == i) {
static const uint8_t directions[] = { 2, 8, 4, 1 };
value = directions[j];
} else {
value = walkNode->unk60[index][vf];
}
walkNode->unk60[index][i] = value;
}
}
}
}
int Game::mstWalkPathUpdateWalkNode(MstWalkPath *walkPath, MstWalkNode *walkNode, int num, int index) {
if (walkNode->coords[num][index] < 0) {
const uint32_t indexWalkBox = walkNode->walkBox;
const MstWalkBox *m34 = &_res->_mstWalkBoxData[indexWalkBox];
uint32_t mask;
const uint8_t flags = m34->flags[num];
if (flags & 0x80) {
mask = _mstAndyVarMask & (1 << (flags & 0x7F));
} else {
mask = flags & (1 << index);
}
if (mask) {
switch (num) { // ((int *)&m34)[num]
case 0:
walkNode->coords[num][index] = m34->right;
break;
case 1:
walkNode->coords[num][index] = m34->left;
break;
case 2:
walkNode->coords[num][index] = m34->bottom;
break;
case 3:
walkNode->coords[num][index] = m34->top;
break;
}
} else {
const uint32_t indexWalkNode = walkNode->neighborWalkNode[num];
assert(indexWalkNode != kNone && indexWalkNode < walkPath->count);
walkNode->coords[num][index] = mstWalkPathUpdateWalkNode(walkPath, &walkPath->data[indexWalkNode], num, index);
}
}
return walkNode->coords[num][index];
}
void Game::executeMstCodeHelper1() {
for (int i = 0; i < _res->_mstHdr.walkPathDataCount; ++i) {
MstWalkPath *walkPath = &_res->_mstWalkPathData[i];
if (walkPath->mask & _mstLevelGatesMask) {
++_mstHelper1Count;
for (uint32_t j = 0; j < walkPath->count; ++j) {
for (int k = 0; k < 2; ++k) {
walkPath->data[j].coords[0][k] = -1;
walkPath->data[j].coords[1][k] = -1;
walkPath->data[j].coords[2][k] = -1;
walkPath->data[j].coords[3][k] = -1;
}
}
for (uint32_t j = 0; j < walkPath->count; ++j) {
MstWalkNode *walkNode = &walkPath->data[j];
for (int k = 0; k < 4; ++k) {
mstWalkPathUpdateWalkNode(walkPath, walkNode, k, 0);
mstWalkPathUpdateWalkNode(walkPath, walkNode, k, 1);
}
}
mstWalkPathUpdateIndex(walkPath, 0);
mstWalkPathUpdateIndex(walkPath, 1);
}
}
if (_mstHelper1Count != 0) {
for (int i = 0; i < kMaxMonsterObjects1; ++i) {
MonsterObject1 *m = &_monsterObjects1Table[i];
if (!m->m46) {
continue;
}
MstWalkNode *walkNode = m->walkNode;
const int num = (~m->flagsA5) & 1;
m->levelPosBounds_x2 = walkNode->coords[0][num] - (int32_t)READ_LE_UINT32(m->monsterInfos + 904);
m->levelPosBounds_x1 = walkNode->coords[1][num] + (int32_t)READ_LE_UINT32(m->monsterInfos + 904);
m->levelPosBounds_y2 = walkNode->coords[2][num] - (int32_t)READ_LE_UINT32(m->monsterInfos + 908);
m->levelPosBounds_y1 = walkNode->coords[3][num] + (int32_t)READ_LE_UINT32(m->monsterInfos + 908);
}
}
}
void Game::mstUpdateMonster1ObjectsPosition() {
mstUpdateRefPos();
mstUpdateMonstersRect();
for (Task *t = _monsterObjects1TasksList; t; t = t->nextPtr) {
mstTaskUpdateScreenPosition(t);
}
}
void Game::mstLvlObjectSetActionDirection(LvlObject *o, const uint8_t *ptr, uint8_t mask1, uint8_t dirMask2) {
o->actionKeyMask = ptr[1];
o->directionKeyMask = mask1 & 15;
MonsterObject1 *m = (MonsterObject1 *)getLvlObjectDataPtr(o, kObjectDataTypeMonster1);
if ((mask1 & 0x10) == 0) {
const int vf = mask1 & 0xE0;
switch (vf) {
case 32:
case 96:
case 160:
case 192:
if (vf == 192) {
o->directionKeyMask |= (m->facingDirectionMask & ~kDirectionKeyMaskVertical);
} else {
o->directionKeyMask |= m->facingDirectionMask;
if (m->monsterInfos[946] & 2) {
if (vf == 160 && (_mstLut1[o->directionKeyMask] & 1) != 0) {
if (m->xDelta >= m->yDelta) {
o->directionKeyMask &= ~kDirectionKeyMaskVertical;
} else {
o->directionKeyMask &= ~kDirectionKeyMaskHorizontal;
}
} else {
if (m->xDelta >= m->yDelta * 2) {
o->directionKeyMask &= ~kDirectionKeyMaskVertical;
} else if (m->yDelta >= m->xDelta * 2) {
o->directionKeyMask &= ~kDirectionKeyMaskHorizontal;
}
}
}
}
break;
case 128:
o->directionKeyMask |= dirMask2;
if ((m->monsterInfos[946] & 2) != 0 && (_mstLut1[o->directionKeyMask] & 1) != 0) {
if (m->xDelta >= m->yDelta) {
o->directionKeyMask &= ~kDirectionKeyMaskVertical;
} else {
o->directionKeyMask &= ~kDirectionKeyMaskHorizontal;
}
}
break;
case 224:
o->directionKeyMask |= m->unkF8;
break;
default:
o->directionKeyMask |= dirMask2;
break;
}
}
o->directionKeyMask &= ptr[2];
if ((mask1 & 0xE0) == 0x40) {
o->directionKeyMask ^= kDirectionKeyMaskHorizontal;
}
}
void Game::mstMonster1UpdateGoalPosition(MonsterObject1 *m) {
int var1C = 0;
int var18 = 0;
debug(kDebug_MONSTER, "mstMonster1UpdateGoalPosition m %p goalScreen %d levelBounds [%d,%d,%d,%d]", m, m->goalScreenNum, m->levelPosBounds_x1, m->levelPosBounds_y1, m->levelPosBounds_x2, m->levelPosBounds_y2);
if (m->goalScreenNum == 0xFD) {
int ve, vf, vg, va;
const MstMovingBounds *m49 = m->m49;
const int xPos_1 = _mstAndyLevelPosX + m49->unk14 - m->goalDistance_x2;
const int xPos_2 = _mstAndyLevelPosX - m49->unk14 + m->goalDistance_x2;
const int yPos_1 = _mstAndyLevelPosY + m49->unk15 - m->goalDistance_y2;
const int yPos_2 = _mstAndyLevelPosY + m49->unk15 + m->goalDistance_y2;
if (m->levelPosBounds_x2 > xPos_1 && m->levelPosBounds_x1 < xPos_2 && m->levelPosBounds_y2 > yPos_1 && m->levelPosBounds_y1 < yPos_2) {
const int xPos_3 = _mstAndyLevelPosX + m49->unk14 + m->goalDistance_x1;
const int xPos_4 = _mstAndyLevelPosX - m49->unk14 - m->goalDistance_x1;
const int yPos_3 = _mstAndyLevelPosY + m49->unk15 + m->goalDistance_y1;
const int yPos_4 = _mstAndyLevelPosY - m49->unk15 - m->goalDistance_y1;
if (m->levelPosBounds_x2 < xPos_3) {
if (m->levelPosBounds_x1 > xPos_4 && m->levelPosBounds_y2 < yPos_3 && m->levelPosBounds_y1 > yPos_4) {
goto l41B2DC;
}
}
var18 = 0;
ve = 0x40000000;
if (m->levelPosBounds_x2 >= _mstAndyLevelPosX + m->goalDistance_x1 + m49->unk14) {
if (m->xMstPos > _mstAndyLevelPosX + m->goalDistance_x2) {
ve = m->xMstPos - m->goalDistance_x1 - _mstAndyLevelPosX;
if (ve >= 0 && ve < m49->unk14) {
ve = 0x40000000;
} else {
var18 = 1;
}
} else if (m->xMstPos >= _mstAndyLevelPosX + m->goalDistance_x1) {
ve = -1;
var18 = 1;
} else {
ve = m->goalDistance_x2 - m->xMstPos + _mstAndyLevelPosX;
if (ve >= 0 && ve < m49->unk14) {
ve = 0x40000000;
} else {
var18 = 1;
}
}
}
vf = 0x40000000;
if (m->levelPosBounds_x1 <= _mstAndyLevelPosX - m->goalDistance_x1 - m49->unk14) {
if (m->xMstPos > _mstAndyLevelPosX - m->goalDistance_x1) {
vf = m->xMstPos - _mstAndyLevelPosX + m->goalDistance_x2;
if (vf >= 0 && vf < m49->unk14) {
vf = 0x40000000;
} else {
var18 |= 2;
}
} else if (m->xMstPos >= _mstAndyLevelPosX - m->goalDistance_x2) {
vf = -1;
var18 |= 2;
} else {
vf = _mstAndyLevelPosX - m->goalDistance_x1 - m->xMstPos;
if (vf >= 0 && vf < m49->unk14) {
vf = 0x40000000;
} else {
var18 |= 2;
}
}
}
vg = 0x40000000;
if (m->levelPosBounds_y2 >= _mstAndyLevelPosY + m->goalDistance_y1 + m49->unk15) {
if (m->yMstPos > _mstAndyLevelPosY + m->goalDistance_y2) {
vg = m->yMstPos - m->goalDistance_y1 - _mstAndyLevelPosY;
if (vg >= 0 && vg < m49->unk15) {
vg = 0x40000000;
} else {
var18 |= 4;
}
} else if (m->yMstPos >= _mstAndyLevelPosY + m->goalDistance_y1) {
vg = -1;
var18 |= 4;
} else {
vg = m->goalDistance_y2 - m->yMstPos + _mstAndyLevelPosY;
if (vg >= 0 && vg < m49->unk15) {
vg = 0x40000000;
} else {
var18 |= 4;
}
}
}
va = 0x40000000;
if (m->levelPosBounds_y1 <= _mstAndyLevelPosY - m->goalDistance_y1 - m49->unk15) {
if (m->yMstPos > _mstAndyLevelPosY - m->goalDistance_y1) {
va = m->yMstPos - _mstAndyLevelPosY + m->goalDistance_y2;
if (va >= 0 && va < m49->unk15) {
va = 0x40000000;
} else {
var18 |= 8;
}
} else if (m->yMstPos >= _mstAndyLevelPosY - m->goalDistance_y2) {
va = -1;
var18 |= 8;
} else {
va = _mstAndyLevelPosY - m->goalDistance_y1 - m->yMstPos;
if (va >= 0 && va < m49->unk15) {
va = 0x40000000;
} else {
var18 |= 8;
}
}
}
if (var18 == 0) {
var18 = 15;
}
} else {
l41B2DC:
ve = ABS(m->xMstPos - _mstAndyLevelPosX + m49->unk14 - m->goalDistance_x2);
vf = ABS(m->xMstPos - _mstAndyLevelPosX - m49->unk14 + m->goalDistance_x2);
vg = ABS(m->yMstPos - _mstAndyLevelPosY + m49->unk15 - m->goalDistance_y2);
va = ABS(m->yMstPos - _mstAndyLevelPosY - m49->unk15 + m->goalDistance_y2);
var18 = 15;
}
if (var18 == m->unkE4) {
var1C = m->unkE5;
} else {
switch (var18 & 3) {
case 0:
var1C = (vg > va) ? 0x21 : 0x20;
break;
case 2:
if (vf <= va && vf <= vg) {
var1C = 0x12;
} else {
var1C = (vg >= va) ? 0x21 : 0x20;
}
break;
case 3:
if (ve > vf) {
if (vf <= va && vf <= vg) {
var1C = 0x12;
} else {
var1C = (vg >= va) ? 0x21 : 0x20;
}
break;
}
// fall-through
case 1:
if (ve <= va && ve <= vg) {
var1C = 0x02;
} else {
var1C = (vg >= va) ? 0x21 : 0x20;
}
break;
}
m->unkE4 = var18;
m->unkE5 = var1C;
}
} else {
var1C = 0;
}
switch (var1C & 0xF0) {
case 0x00:
m->goalPos_x1 = m->goalDistance_x1;
m->goalPos_x2 = m->goalDistance_x2;
break;
case 0x10:
m->goalPos_x1 = -m->goalDistance_x2;
m->goalPos_x2 = -m->goalDistance_x1;
break;
case 0x20:
m->goalPos_x1 = -m->goalDistance_x2;
m->goalPos_x2 = m->goalDistance_x2;
break;
}
switch (var1C & 0xF) {
case 0:
m->goalPos_y1 = m->goalDistance_y1;
m->goalPos_y2 = m->goalDistance_y2;
break;
case 1:
m->goalPos_y1 = -m->goalDistance_y2;
m->goalPos_y2 = -m->goalDistance_y1;
break;
case 2:
m->goalPos_y1 = -m->goalDistance_y2;
m->goalPos_y2 = m->goalDistance_y2;
break;
}
m->goalPos_x1 += _mstAndyLevelPosX;
m->goalPos_x2 += _mstAndyLevelPosX;
m->goalPos_y1 += _mstAndyLevelPosY;
m->goalPos_y2 += _mstAndyLevelPosY;
const uint8_t *ptr = _res->_mstMonsterInfos + m->m49Unk1->offsetMonsterInfo;
if ((ptr[2] & kDirectionKeyMaskVertical) == 0) {
m->goalDistance_y1 = m->goalPos_y1 = m->goalDistance_y2 = m->goalPos_y2 = m->yMstPos;
}
if ((ptr[2] & kDirectionKeyMaskHorizontal) == 0) {
m->goalDistance_x1 = m->goalPos_x1 = m->goalDistance_x2 = m->goalPos_x2 = m->xMstPos;
}
debug(kDebug_MONSTER, "mstMonster1UpdateGoalPosition m %p mask 0x%x goal [%d,%d,%d,%d]", m, var1C, m->goalPos_x1, m->goalPos_y1, m->goalPos_x2, m->goalPos_y2);
}
void Game::mstMonster1MoveTowardsGoal1(MonsterObject1 *m) {
MstWalkNode *walkNode = m->walkNode;
const uint8_t *p = m->monsterInfos;
const uint32_t indexWalkBox = walkNode->walkBox;
const MstWalkBox *m34 = &_res->_mstWalkBoxData[indexWalkBox];
const int w = (int32_t)READ_LE_UINT32(p + 904);
const int h = (int32_t)READ_LE_UINT32(p + 908);
debug(kDebug_MONSTER, "mstMonster1MoveTowardsGoal1 m %p pos %d,%d [%d,%d,%d,%d]", m, m->xMstPos, m->yMstPos, m34->left, m34->top, m34->right, m34->bottom);
if (!rect_contains(m34->left - w, m34->top - h, m34->right + w, m34->bottom + h, m->xMstPos, m->yMstPos)) {
mstMonster1UpdateWalkPath(m);
m->unkC0 = -1;
m->unkBC = -1;
}
m->task->flags &= ~0x80;
if (m->xMstPos < m->goalPos_x1) {
int x = m->goalPos_x2;
_xMstPos1 = x;
if (x > m->levelPosBounds_x2) {
x = m->levelPosBounds_x2;
m->task->flags |= 0x80;
}
m->goalDirectionMask = kDirectionKeyMaskRight;
_xMstPos2 = x - m->xMstPos;
} else if (m->xMstPos > m->goalPos_x2) {
int x = m->goalPos_x1;
_xMstPos1 = x;
if (x < m->levelPosBounds_x1) {
x = m->levelPosBounds_x1;
m->task->flags |= 0x80;
}
m->goalDirectionMask = kDirectionKeyMaskLeft;
_xMstPos2 = m->xMstPos - x;
} else {
_xMstPos1 = m->xMstPos;
m->goalDirectionMask = 0;
_xMstPos2 = 0;
}
if (m->yMstPos < m->goalPos_y1) {
int y = m->goalPos_y2;
_yMstPos1 = y;
if (y > m->levelPosBounds_y2) {
y = m->levelPosBounds_y2;
m->task->flags |= 0x80;
}
_yMstPos2 = y - m->yMstPos;
m->goalDirectionMask |= kDirectionKeyMaskDown;
} else if (m->yMstPos > m->goalPos_y2) {
int y = m->goalPos_y1;
_yMstPos1 = y;
if (y < m->levelPosBounds_y1) {
y = m->levelPosBounds_y1;
m->task->flags |= 0x80;
}
_yMstPos2 = m->yMstPos - y;
m->goalDirectionMask |= kDirectionKeyMaskUp;
} else {
_yMstPos1 = m->yMstPos;
_yMstPos2 = 0;
}
debug(kDebug_MONSTER, "mstMonster1MoveTowardsGoal1 m %p pos %d,%d dist %d,%d direction 0x%x", m, _xMstPos1, _yMstPos1, _xMstPos2, _yMstPos2, m->goalDirectionMask);
if (m->goalDirectionMask == 0) {
return;
}
MstBehaviorState *behaviorState = m->behaviorState;
MstWalkPath *walkPath = &_res->_mstWalkPathData[behaviorState->walkPath];
uint8_t _cl = m->walkBoxNum;
if (m->unkBC != _xMstPos1 || m->unkC0 != _yMstPos1) {
bool inWalkBox = false;
if (_cl < walkPath->count) {
MstWalkNode *walkNode = &walkPath->data[_cl];
const MstWalkBox *m34 = &_res->_mstWalkBoxData[walkNode->walkBox];
if (rect_contains(m34->left, m34->top, m34->right, m34->bottom, _xMstPos1, _yMstPos1)) {
inWalkBox = true;
}
}
if (!inWalkBox) {
const int _al = mstMonster1FindWalkPathRect(m, walkPath, _xMstPos1, _yMstPos1);
if (_al < 0) {
_xMstPos1 = _xMstPos3;
_yMstPos1 = _yMstPos3;
_cl = -1 - _al;
m->goalPos_x1 = m->goalPos_x2 = _xMstPos1;
m->goalPos_y1 = m->goalPos_y2 = _yMstPos1;
_xMstPos2 = ABS(m->xMstPos - _xMstPos1);
_yMstPos2 = ABS(m->yMstPos - _yMstPos1);
if (m->xMstPos < m->goalPos_x1) {
m->goalDirectionMask = kDirectionKeyMaskRight;
} else if (m->xMstPos > m->goalPos_x2) {
m->goalDirectionMask = kDirectionKeyMaskLeft;
}
if (m->yMstPos < m->goalPos_y1) {
m->goalDirectionMask |= kDirectionKeyMaskDown;
} else if (m->yMstPos > m->goalPos_y2) {
m->goalDirectionMask |= kDirectionKeyMaskUp;
}
} else {
_cl = _al;
}
m->walkBoxNum = _cl;
m->unkBC = -1;
m->unkC0 = -1;
}
}
if (_cl >= walkPath->count || m->walkNode == &walkPath->data[_cl]) {
m->targetDirectionMask = 0xFF;
return;
}
const int vf = (~m->flagsA5) & 1;
if (m->unkBC == _xMstPos1 && m->unkC0 == _yMstPos1) {
if (m->targetDirectionMask == 0xFF) {
return;
}
m->goalDirectionMask = m->targetDirectionMask;
} else {
m->unkBC = _xMstPos1;
m->unkC0 = _yMstPos1;
const uint32_t indexWalkPath = m->behaviorState->walkPath;
MstWalkPath *walkPath = &_res->_mstWalkPathData[indexWalkPath];
const MstWalkNode *walkNode = m->walkNode;
const uint8_t dirMask = walkNode->unk60[vf][_cl];
if (dirMask != 0) {
const uint8_t *p = m->monsterInfos;
const int w = (int32_t)READ_LE_UINT32(p + 904);
const int h = (int32_t)READ_LE_UINT32(p + 908);
while (1) {
const int x1 = walkNode->coords[1][vf] + w; // left
const int x2 = walkNode->coords[0][vf] - w; // right
const int y1 = walkNode->coords[3][vf] + h; // top
const int y2 = walkNode->coords[2][vf] - h; // bottom
if (!rect_contains(x1, y1, x2, y2, _xMstPos1, _yMstPos1)) {
break;
}
int var1C;
switch (walkNode->unk60[vf][_cl]) {
case 2:
var1C = 0;
break;
case 4:
var1C = 2;
break;
case 8:
var1C = 1;
break;
default: // 1
var1C = 3;
break;
}
const uint32_t indexWalkNode = walkNode->neighborWalkNode[var1C];
assert(indexWalkNode != kNone && indexWalkNode < walkPath->count);
walkNode = &walkPath->data[indexWalkNode];
if (walkNode == &walkPath->data[_cl]) {
m->targetDirectionMask = 0xFF;
return;
}
}
m->goalDirectionMask = dirMask;
}
m->targetDirectionMask = m->goalDirectionMask;
}
if (m->goalDirectionMask & kDirectionKeyMaskLeft) {
_xMstPos2 = m->xMstPos - m->walkNode->coords[1][vf] - (int32_t)READ_LE_UINT32(m->monsterInfos + 904);
} else if (m->goalDirectionMask & kDirectionKeyMaskRight) {
_xMstPos2 = m->walkNode->coords[0][vf] - (int32_t)READ_LE_UINT32(m->monsterInfos + 904) - m->xMstPos;
} else {
_xMstPos2 = 0;
}
if (m->goalDirectionMask & kDirectionKeyMaskUp) {
_yMstPos2 = m->yMstPos - m->walkNode->coords[3][vf] - (int32_t)READ_LE_UINT32(m->monsterInfos + 908);
} else if (m->goalDirectionMask & kDirectionKeyMaskDown) {
_yMstPos2 = m->walkNode->coords[2][vf] - (int32_t)READ_LE_UINT32(m->monsterInfos + 908) - m->yMstPos;
} else {
_yMstPos2 = 0;
}
debug(kDebug_MONSTER, "mstMonster1MoveTowardsGoal1 m %p dist %d,%d", m, _xMstPos2, _yMstPos2);
}
bool Game::mstMonster1TestGoalDirection(MonsterObject1 *m) {
if (_mstLut1[m->goalDirectionMask] & 1) {
if (_xMstPos2 < m->m49->unk14) {
m->goalDirectionMask &= ~kDirectionKeyMaskHorizontal;
}
if (_yMstPos2 < m->m49->unk15) {
m->goalDirectionMask &= ~kDirectionKeyMaskVertical;
}
}
if (_mstLut1[m->goalDirectionMask] & 1) {
while (--m->indexUnk49Unk1 >= 0) {
m->m49Unk1 = &m->m49->data1[m->indexUnk49Unk1];
if (_xMstPos2 >= m->m49Unk1->unkE && _yMstPos2 >= m->m49Unk1->unkF) {
return true;
}
}
} else {
while (--m->indexUnk49Unk1 >= 0) {
m->m49Unk1 = &m->m49->data1[m->indexUnk49Unk1];
if (((m->goalDirectionMask & kDirectionKeyMaskHorizontal) == 0 || _xMstPos2 >= m->m49Unk1->unkC) && ((m->goalDirectionMask & kDirectionKeyMaskVertical) == 0 || _yMstPos2 >= m->m49Unk1->unkD)) {
return true;
}
}
}
return false;
}
void Game::mstMonster1MoveTowardsGoal2(MonsterObject1 *m) {
if (m->targetLevelPos_x != -1) {
if (m->xMstPos != m->targetLevelPos_x || m->yMstPos != m->targetLevelPos_y) {
_xMstPos2 = m->previousDxPos;
_yMstPos2 = m->previousDyPos;
return;
}
mstBoundingBoxClear(m, 1);
}
mstMonster1MoveTowardsGoal1(m);
if (m->goalDirectionMask == 0) {
return;
}
m->previousDxPos = _xMstPos2;
m->previousDyPos = _yMstPos2;
const MstMovingBoundsUnk1 *m49Unk1 = m->m49Unk1;
uint8_t xDist, yDist;
if (_mstLut1[m->goalDirectionMask] & 1) {
xDist = m49Unk1->unkA;
yDist = m49Unk1->unkB;
} else {
xDist = m49Unk1->unk8;
yDist = m49Unk1->unk9;
}
if (_xMstPos2 < xDist && _yMstPos2 < yDist) {
if ((_xMstPos2 <= 0 && _yMstPos2 <= 0) || !mstMonster1TestGoalDirection(m)) {
return;
}
}
if (_mstLut1[m->goalDirectionMask] & 1) {
if (_xMstPos2 < _yMstPos2) {
if (_xMstPos2 < m->m49Unk1->unkA) {
m->goalDirectionMask &= ~kDirectionKeyMaskHorizontal;
if (m->targetDirectionMask != 0xFF) {
_xMstPos2 = 0;
}
}
} else {
if (_yMstPos2 < m->m49Unk1->unkB) {
m->goalDirectionMask &= ~kDirectionKeyMaskVertical;
if (m->targetDirectionMask != 0xFF) {
_yMstPos2 = 0;
}
}
}
}
int var10 = (~m->flagsA5) & 1;
const uint32_t indexWalkBox = m->walkNode->walkBox;
const MstWalkBox *m34 = &_res->_mstWalkBoxData[indexWalkBox];
int bboxIndex = 0;
int var8 = _mstLut1[m->goalDirectionMask];
for (int var20 = 0; var20 < 5; ++var20) {
const uint8_t *p = _res->_mstMonsterInfos + m->m49Unk1->offsetMonsterInfo;
if (var20 != 0) {
if (p[0xE] == 0 || bboxIndex == 0) {
break;
}
}
const int num = var20 + var8 * 5;
const int dirMask = _mstLut3[num];
if (_mstLut1[dirMask] == m->unkAB) {
continue;
}
int vc, va;
if (_mstLut1[dirMask] & 1) {
vc = (int8_t)p[0xA];
va = (int8_t)p[0xB];
} else {
vc = (int8_t)p[0x8];
va = (int8_t)p[0x9];
}
int xPos = m->xMstPos;
if (dirMask & kDirectionKeyMaskLeft) {
xPos -= vc;
if (xPos < m->levelPosBounds_x1) {
continue;
}
} else if (dirMask & kDirectionKeyMaskRight) {
xPos += vc;
if (xPos > m->levelPosBounds_x2) {
continue;
}
}
int yPos = m->yMstPos;
if (dirMask & kDirectionKeyMaskUp) {
yPos -= va;
if (yPos < m->levelPosBounds_y1) {
continue;
}
} else if (dirMask & kDirectionKeyMaskDown) {
yPos += va;
if (yPos > m->levelPosBounds_y2) {
continue;
}
}
if (var10 == 1 && (m->flagsA5 & 4) == 0 && (m->flags48 & 8) != 0) {
if (!mstSetCurrentPos(m, xPos, yPos)) {
continue;
}
}
const int w = (int32_t)READ_LE_UINT32(m->monsterInfos + 904);
const int h = (int32_t)READ_LE_UINT32(m->monsterInfos + 908);
if (!rect_contains(m34->left - w, m34->top - h, m34->right + w, m34->bottom + h, xPos, yPos)) {
const uint32_t indexWalkPath = m->behaviorState->walkPath;
MstWalkPath *walkPath = &_res->_mstWalkPathData[indexWalkPath];
const int num = mstMonster1FindWalkPathRect(m, walkPath, xPos, yPos);
if (num < 0) {
continue;
}
if (m->walkNode->unk60[var10][num] == 0) {
continue;
}
}
m->targetLevelPos_x = xPos;
m->targetLevelPos_y = yPos;
p = _res->_mstMonsterInfos + m->m49Unk1->offsetMonsterInfo;
if (p[0xE] != 0) {
const int x1 = m->xMstPos + (int8_t)p[0xC];
const int y1 = m->yMstPos + (int8_t)p[0xD];
const int x2 = x1 + p[0xE] - 1;
const int y2 = y1 + p[0xF] - 1;
const int r = mstBoundingBoxCollides2(m->monster1Index, x1, y1, x2, y2);
if (r != 0) {
bboxIndex = r - 1;
const MstBoundingBox *b = &_mstBoundingBoxesTable[bboxIndex];
if (rect_intersects(b->x1, b->y1, b->x2, b->y2, m->goalPos_x1, m->goalPos_y1, m->goalPos_x2, m->goalPos_y2)) {
break;
}
continue;
}
m->bboxNum[1] = mstBoundingBoxUpdate(m->bboxNum[1], m->monster1Index, x1, y1, x2, y2);
} else { // (p[0xE] == 0)
mstBoundingBoxClear(m, 1);
}
m->goalDirectionMask = dirMask;
if (var20 == 0) {
m->unkAB = 0xFF;
} else {
const uint8_t n = _mstLut1[dirMask];
m->unkAB = (n < 4) ? n + 4 : n - 4;
}
return;
}
m->task->flags |= 0x80;
m->goalDirectionMask = 0;
_yMstPos2 = 0;
_xMstPos2 = 0;
}
int Game::mstTaskStopMonster1(Task *t, MonsterObject1 *m) {
if (m->monsterInfos[946] & 4) {
mstBoundingBoxClear(m, 1);
}
if (m->goalScreenNum != 0xFC && (m->flagsA5 & 8) != 0 && (t->flags & 0x20) != 0 && m->action) {
LvlObject *o = m->o16;
const int xPosScreen = _res->_mstPointOffsets[_currentScreen].xOffset;
const int yPosScreen = _res->_mstPointOffsets[_currentScreen].yOffset;
const int xPosObj = o->xPos + _res->_mstPointOffsets[o->screenNum].xOffset;
const int yPosObj = o->yPos + _res->_mstPointOffsets[o->screenNum].yOffset;
// this matches the original code but rect_intersects() could probably be used
if (xPosObj < xPosScreen || xPosObj + o->width - 1 > xPosScreen + 255 || yPosObj < yPosScreen || yPosObj + o->height - 1 > yPosScreen + 191) {
return mstTaskStopMonsterObject1(t);
}
}
mstTaskResetMonster1WalkPath(t);
return 0;
}
int Game::mstTaskUpdatePositionActionDirection(Task *t, MonsterObject1 *m) {
if ((m->monsterInfos[946] & 4) == 0 && (_mstLut1[m->goalDirectionMask] & 1) != 0) {
if (_xMstPos2 < m->m49->unk14) {
m->goalDirectionMask &= ~kDirectionKeyMaskHorizontal;
}
if (_yMstPos2 < m->m49->unk15) {
m->goalDirectionMask &= ~kDirectionKeyMaskVertical;
}
}
const uint8_t *ptr = _res->_mstMonsterInfos + m->m49Unk1->offsetMonsterInfo;
if ((m->monsterInfos[946] & 4) == 0 && (m->flagsA5 & 4) == 0 && (m->flagsA5 & 2) != 0 && (m->flags48 & 8) != 0) {
int vf, ve;
if (_mstLut1[m->goalDirectionMask] & 1) {
vf = (int8_t)ptr[0xA];
ve = (int8_t)ptr[0xB];
} else {
vf = (int8_t)ptr[0x8];
ve = (int8_t)ptr[0x9];
}
int x = m->xMstPos;
int y = m->yMstPos;
if (m->goalDirectionMask & kDirectionKeyMaskLeft) {
x -= vf;
} else if (m->goalDirectionMask & kDirectionKeyMaskRight) {
x += vf;
}
if (m->goalDirectionMask & kDirectionKeyMaskUp) {
y -= ve;
} else if (m->goalDirectionMask & kDirectionKeyMaskDown) {
y += ve;
}
if (!mstSetCurrentPos(m, x, y)) {
_xMstPos2 = ABS(m->xMstPos - _mstCurrentPosX);
_yMstPos2 = ABS(m->yMstPos - _mstCurrentPosY);
}
}
const MstMovingBoundsUnk1 *m49Unk1 = m->m49Unk1;
uint8_t xDist, yDist;
if (_mstLut1[m->goalDirectionMask] & 1) {
xDist = m49Unk1->unkA;
yDist = m49Unk1->unkB;
} else {
xDist = m49Unk1->unk8;
yDist = m49Unk1->unk9;
}
if (m->goalDirectionMask == 0) {
return mstTaskStopMonster1(t, m);
}
if (_xMstPos2 < xDist && _yMstPos2 < yDist) {
if ((_xMstPos2 <= 0 && _yMstPos2 <= 0) || !mstMonster1TestGoalDirection(m)) {
return mstTaskStopMonster1(t, m);
}
}
if ((m->monsterInfos[946] & 4) == 0 && (_mstLut1[m->goalDirectionMask] & 1) != 0) {
if (_xMstPos2 < _yMstPos2) {
if (_xMstPos2 < m->m49Unk1->unkA) {
m->goalDirectionMask &= ~kDirectionKeyMaskHorizontal;
if (m->targetDirectionMask != 0xFF) {
_xMstPos2 = 0;
}
}
} else {
if (_yMstPos2 < m->m49Unk1->unkB) {
m->goalDirectionMask &= ~kDirectionKeyMaskVertical;
if (m->targetDirectionMask != 0xFF) {
_yMstPos2 = 0;
}
}
}
}
ptr = _res->_mstMonsterInfos + m->m49Unk1->offsetMonsterInfo;
mstLvlObjectSetActionDirection(m->o16, ptr, ptr[3], m->goalDirectionMask);
return 1;
}
// ret >0: found a rect matching
// ret <0: return the closest match (setting _xMstPos3 and _yMstPos3)
int Game::mstMonster1FindWalkPathRect(MonsterObject1 *m, MstWalkPath *walkPath, int x, int y) {
_xMstPos3 = x;
_yMstPos3 = y;
const int num = (~m->flagsA5) & 1;
int minDistance = 0x40000000;
int ret = -1;
int currentIndex = -1;
int xDist = 0;
int yDist = 0;
for (uint32_t i = 0; i < walkPath->count; ++i, --currentIndex) {
MstWalkNode *walkNode = &walkPath->data[i];
if (m->walkNode->unk60[num][i] == 0 && m->walkNode != walkNode) {
continue;
}
const uint32_t indexWalkBox = walkNode->walkBox;
const MstWalkBox *m34 = &_res->_mstWalkBoxData[indexWalkBox];
if (rect_contains(m34->left, m34->top, m34->right, m34->bottom, x, y)) {
return i;
}
int dist, curX = x, curY = y;
if (x >= m34->left && x <= m34->right) {
const int dy1 = ABS(y - m34->bottom);
const int dy2 = ABS(y - m34->top);
curY = (dy2 >= dy1) ? m34->bottom : m34->top;
yDist = y - curY;
yDist *= yDist;
dist = yDist;
if (minDistance >= dist) {
minDistance = dist;
_xMstPos3 = curX;
_yMstPos3 = curY;
ret = currentIndex;
}
} else if (y >= m34->top && y <= m34->bottom) {
const int dx1 = ABS(x - m34->right);
const int dx2 = ABS(x - m34->left);
curX = (dx2 >= dx1) ? m34->right : m34->left;
xDist = x - curX;
xDist *= xDist;
dist = xDist;
if (minDistance >= dist) {
minDistance = dist;
_xMstPos3 = curX;
_yMstPos3 = curY;
ret = currentIndex;
}
} else {
curX = m34->left;
xDist = x - curX;
xDist *= xDist;
curY = m34->top;
yDist = y - curY;
yDist *= yDist;
dist = xDist + yDist;
if (minDistance >= dist) {
minDistance = dist;
_xMstPos3 = curX;
_yMstPos3 = curY;
ret = currentIndex;
}
curX = m34->right;
xDist = x - curX;
xDist *= xDist;
dist = xDist + yDist;
if (minDistance >= dist) {
minDistance = dist;
_xMstPos3 = curX;
_yMstPos3 = curY;
ret = currentIndex;
}
curY = m34->bottom;
yDist = y - curY;
yDist *= yDist;
dist = xDist + yDist;
if (minDistance >= dist) {
minDistance = dist;
_xMstPos3 = curX;
_yMstPos3 = curY;
ret = currentIndex;
}
curX = m34->left;
xDist = x - curX;
xDist *= xDist;
dist = xDist + yDist;
if (minDistance >= dist) {
minDistance = dist;
_xMstPos3 = curX;
_yMstPos3 = curY;
ret = currentIndex;
}
}
dist = xDist + yDist;
if (minDistance >= dist) {
minDistance = dist;
_xMstPos3 = curX;
_yMstPos3 = curY;
ret = currentIndex;
}
}
return ret;
}
bool Game::mstTestActionDirection(MonsterObject1 *m, int num) {
LvlObject *o = m->o16;
const uint8_t _al = _res->_mstActionDirectionData[num].unk0;
const uint8_t _bl = _res->_mstActionDirectionData[num].unk2;
const uint8_t *var4 = m->monsterInfos + _al * 28;
const uint8_t _dl = (o->flags1 >> 4) & 3;
uint8_t var8 = ((_dl & 1) != 0) ? 8 : 2;
if (_dl & 2) {
var8 |= 4;
} else {
var8 |= 1;
}
uint8_t directionKeyMask = _bl & 15;
if ((_bl & 0x10) == 0) {
const uint32_t ve = _bl & 0xE0;
switch (ve) {
case 32:
case 96:
case 160:
case 192: // 0
if (ve == 192) {
directionKeyMask |= m->facingDirectionMask & ~kDirectionKeyMaskVertical;
} else {
directionKeyMask |= m->facingDirectionMask;
if (m->monsterInfos[946] & 2) {
if (ve == 160 && (_mstLut1[directionKeyMask] & 1) != 0) {
if (m->xDelta >= m->yDelta) {
directionKeyMask &= ~kDirectionKeyMaskVertical;
} else {
directionKeyMask &= ~kDirectionKeyMaskHorizontal;
}
} else {
if (m->xDelta >= 2 * m->yDelta) {
directionKeyMask &= ~kDirectionKeyMaskVertical;
} else if (m->yDelta >= 2 * m->xDelta) {
directionKeyMask &= ~kDirectionKeyMaskHorizontal;
}
}
}
}
break;
case 128: // 1
directionKeyMask |= var8;
if ((m->monsterInfos[946] & 2) != 0 && (_mstLut1[directionKeyMask] & 1) != 0) {
if (m->xDelta >= m->yDelta) {
directionKeyMask &= ~kDirectionKeyMaskVertical;
} else {
directionKeyMask &= ~kDirectionKeyMaskHorizontal;
}
}
break;
default: // 2
directionKeyMask |= var8;
break;
}
}
directionKeyMask &= var4[2];
if ((_bl & 0xE0) == 0x40) {
directionKeyMask ^= kDirectionKeyMaskHorizontal;
}
return ((var8 & directionKeyMask) != 0) ? 0 : 1;
}
bool Game::lvlObjectCollidesAndy1(LvlObject *o, int flags) const {
int x1, y1, x2, y2;
if (flags != 1 && flags != 0x4000) {
x1 = o->xPos;
y1 = o->yPos;
x2 = x1 + o->width - 1;
y2 = y1 + o->height - 1;
} else {
x1 = o->xPos + o->posTable[0].x;
x2 = o->xPos + o->posTable[1].x;
y1 = o->yPos + o->posTable[0].y;
y2 = o->yPos + o->posTable[1].y;
if (x1 > x2) {
SWAP(x1, x2);
}
if (y1 > y2) {
SWAP(y1, y2);
}
if (flags == 0x4000 && _andyObject->screenNum != o->screenNum) {
const int dx = _res->_mstPointOffsets[o->screenNum].xOffset - _res->_mstPointOffsets[_andyObject->screenNum].xOffset;
x1 += dx;
x2 += dx;
const int dy = _res->_mstPointOffsets[o->screenNum].yOffset - _res->_mstPointOffsets[_andyObject->screenNum].yOffset;
y1 += dy;
y2 += dy;
}
}
const int x = _andyObject->xPos + _andyObject->width / 2;
const int y = _andyObject->yPos + _andyObject->height / 2;
return rect_contains(x1, y1, x2, y2, x, y);
}
bool Game::lvlObjectCollidesAndy2(LvlObject *o, int type) const {
int x1, y1, x2, y2;
if (type != 1 && type != 0x1000) {
x1 = o->xPos;
y1 = o->yPos;
x2 = x1 + o->width - 1;
y2 = y1 + o->height - 1;
} else {
x1 = o->xPos + o->posTable[0].x;
x2 = o->xPos + o->posTable[1].x;
y1 = o->yPos + o->posTable[0].y;
y2 = o->yPos + o->posTable[1].y;
if (x1 > x2) {
SWAP(x1, x2);
}
if (y1 > y2) {
SWAP(y1, y2);
}
if (type == 0x1000 && _andyObject->screenNum != o->screenNum) {
const int dx = _res->_mstPointOffsets[_andyObject->screenNum].xOffset - _res->_mstPointOffsets[o->screenNum].xOffset;
x1 += dx;
x2 += dx;
const int dy = _res->_mstPointOffsets[_andyObject->screenNum].yOffset - _res->_mstPointOffsets[o->screenNum].yOffset;
y1 += dy;
y2 += dy;
}
}
return rect_intersects(x1, y1, x2, y2, _andyObject->xPos, _andyObject->yPos, _andyObject->xPos + _andyObject->width - 1, _andyObject->yPos + _andyObject->height - 1);
}
bool Game::lvlObjectCollidesAndy3(LvlObject *o, int type) const {
int x1, y1, x2, y2;
if (type != 1) {
x1 = o->xPos;
y1 = o->yPos;
x2 = o->xPos + o->width - 1;
y2 = o->yPos + o->height - 1;
} else {
x1 = o->xPos + o->posTable[0].x;
y1 = o->yPos + o->posTable[0].y;
x2 = o->xPos + o->posTable[1].x;
y2 = o->yPos + o->posTable[1].y;
if (x1 > x2) {
SWAP(x1, x2);
}
if (y1 > y2) {
SWAP(y1, y2);
}
}
const int xPos = _andyObject->xPos + _andyObject->posTable[3].x;
const int yPos = _andyObject->yPos + _andyObject->posTable[3].y;
return rect_contains(x1, y1, x2, y2, xPos, yPos);
}
bool Game::lvlObjectCollidesAndy4(LvlObject *o, int type) const {
int x1, y1, x2, y2;
if (type != 1) {
x1 = o->xPos;
y1 = o->yPos;
x2 = o->xPos + o->width - 1;
y2 = o->yPos + o->height - 1;
} else {
x1 = o->xPos + o->posTable[0].x;
y1 = o->yPos + o->posTable[0].y;
x2 = o->xPos + o->posTable[1].x;
y2 = o->yPos + o->posTable[1].y;
if (x1 > x2) {
SWAP(x1, x2);
}
if (y1 > y2) {
SWAP(y1, y2);
}
}
static const uint8_t indexes[] = { 1, 2, 4, 5 };
for (int i = 0; i < 4; ++i) {
const int xPos = _andyObject->xPos + _andyObject->posTable[indexes[i]].x;
const int yPos = _andyObject->yPos + _andyObject->posTable[indexes[i]].y;
if (rect_contains(x1, y1, x2, y2, xPos, yPos)) {
return true;
}
}
return false;
}
bool Game::mstCollidesByFlags(MonsterObject1 *m, uint32_t flags) {
if ((flags & 1) != 0 && (m->o16->flags0 & 0x200) == 0) {
return false;
} else if ((flags & 8) != 0 && (m->flags48 & 0x20) == 0) {
return false;
} else if ((flags & 0x100) != 0 && (_mstFlags & 0x80000000) != 0) {
return false;
} else if ((flags & 0x200) != 0 && (_mstFlags & 0x40000000) != 0) {
return false;
} else if ((flags & 0x40) != 0 && (mstGetFacingDirectionMask(m->facingDirectionMask) & 1) != ((m->o16->flags1 >> 4) & 1) && (m->monsterInfos[946] & 4) == 0) {
return false;
} else if ((flags & 0x80) != 0 && (mstGetFacingDirectionMask(m->facingDirectionMask) & 1) != ((m->o16->flags1 >> 4) & 1) && (m->monsterInfos[946] & 4) != 0) {
return false;
} else if ((flags & 0x400) != 0 && (m->o16->screenNum != _andyObject->screenNum || !lvlObjectCollidesAndy1(m->o16, 0))) {
return false;
} else if ((flags & 0x800) != 0 && (m->o16->screenNum != _andyObject->screenNum || !lvlObjectCollidesAndy1(m->o16, 1))) {
return false;
} else if ((flags & 0x100000) != 0 && (m->o16->screenNum != _andyObject->screenNum || !lvlObjectCollidesAndy3(m->o16, 0))) {
return false;
} else if ((flags & 0x200000) != 0 && (m->o16->screenNum != _andyObject->screenNum || !lvlObjectCollidesAndy3(m->o16, 1))) {
return false;
} else if ((flags & 4) != 0 && (m->o16->screenNum != _andyObject->screenNum || !lvlObjectCollidesAndy2(m->o16, 0))) {
return false;
} else if ((flags & 2) != 0 && (m->o16->screenNum != _andyObject->screenNum || !lvlObjectCollidesAndy2(m->o16, 1))) {
return false;
} else if ((flags & 0x4000) != 0 && !lvlObjectCollidesAndy1(m->o16, 0x4000)) {
return false;
} else if ((flags & 0x1000) != 0 && !lvlObjectCollidesAndy2(m->o16, 0x1000)) {
return false;
} else if ((flags & 0x20) != 0 && (m->o16->flags0 & 0x100) == 0) {
return false;
} else if ((flags & 0x10000) != 0 && (m->o16->screenNum != _andyObject->screenNum || !lvlObjectCollidesAndy4(m->o16, 1))) {
return false;
} else if ((flags & 0x20000) != 0 && (m->o16->screenNum != _andyObject->screenNum || !lvlObjectCollidesAndy4(m->o16, 0))) {
return false;
} else if ((flags & 0x40000) != 0 && (m->o16->screenNum != _andyObject->screenNum || !clipLvlObjectsBoundingBox(_andyObject, m->o16, 36))) {
return false;
} else if ((flags & 0x80000) != 0 && (m->o16->screenNum != _andyObject->screenNum || !clipLvlObjectsBoundingBox(_andyObject, m->o16, 20))) {
return false;
}
return true;
}
bool Game::mstMonster1Collide(MonsterObject1 *m, const uint8_t *p) {
const uint32_t a = READ_LE_UINT32(p + 0x10);
debug(kDebug_MONSTER, "mstMonster1Collide mask 0x%x flagsA6 0x%x", a, m->flagsA6);
if (a == 0 || !mstCollidesByFlags(m, a)) {
return false;
}
if ((a & 0x8000) != 0 && (m->flagsA6 & 4) == 0) {
Task t;
memcpy(&t, _mstCurrentTask, sizeof(Task));
_mstCurrentTask->child = 0;
const uint32_t codeData = READ_LE_UINT32(p + 0x18);
assert(codeData != kNone);
_mstCurrentTask->codeData = _res->_mstCodeData + codeData * 4;
_mstCurrentTask->run = &Game::mstTask_main;
_mstCurrentTask->monster1->flagsA6 |= 4;
Task *currentTask = _mstCurrentTask;
mstTask_main(_mstCurrentTask);
_mstCurrentTask = currentTask;
_mstCurrentTask->monster1->flagsA6 &= ~4;
t.nextPtr = _mstCurrentTask->nextPtr;
t.prevPtr = _mstCurrentTask->prevPtr;
memcpy(_mstCurrentTask, &t, sizeof(Task));
if (_mstCurrentTask->run == &Game::mstTask_idle && (_mstCurrentTask->monster1->flagsA6 & 2) == 0) {
_mstCurrentTask->run = &Game::mstTask_main;
}
return false;
} else {
mstTaskAttack(_mstCurrentTask, READ_LE_UINT32(p + 0x18), 0x10);
return true;
}
}
int Game::mstUpdateTaskMonsterObject1(Task *t) {
debug(kDebug_MONSTER, "mstUpdateTaskMonsterObject1 t %p", t);
_mstCurrentTask = t;
MonsterObject1 *m = t->monster1;
MonsterObject1 *_mstCurrentMonster1 = m;
LvlObject *o = m->o16;
const int num = o->flags0 & 0xFF;
const uint8_t *ptr = m->monsterInfos + num * 28;
int8_t a = ptr[6];
if (a != 0) {
const int num = CLIP(m->lut4Index + a, 0, 17);
o->flags2 = (o->flags2 & ~0x1F) | _mstLut4[num];
} else {
o->flags2 = m->o_flags2;
}
if (num == 0x1F) {
mstRemoveMonsterObject1(_mstCurrentTask, &_monsterObjects1TasksList);
return 1;
}
const uint32_t vf = READ_LE_UINT32(ptr + 20);
if (vf != kNone) {
MstBehavior *m46 = _mstCurrentMonster1->m46;
for (uint32_t i = 0; i < m46->count; ++i) {
if (m46->data[i].indexMonsterInfo == vf) {
mstTaskSetMonster1BehaviorState(_mstCurrentTask, _mstCurrentMonster1, i);
return 0;
}
}
}
if ((m->flagsA5 & 0x80) != 0) {
return 0;
}
if (m->localVars[7] == 0 && !_specialAnimFlag) {
// monster is dead
m->flagsA5 |= 0x80;
if (m->monsterInfos[946] & 4) {
mstBoundingBoxClear(m, 1);
}
if (t->child) {
t->child->codeData = 0;
t->child = 0;
}
if ((m->flagsA5 & 8) != 0 && m->action && _mstActionNum != -1) {
mstTaskStopMonsterObject1(_mstCurrentTask);
return 0;
}
const uint32_t codeData = m->behaviorState->codeData;
if (codeData != kNone) {
resetTask(t, _res->_mstCodeData + codeData * 4);
return 0;
}
o->actionKeyMask = 7;
o->directionKeyMask = 0;
t->run = &Game::mstTask_idle;
return 0;
}
if (t->run == &Game::mstTask_monsterWait4) {
return 0;
}
if (ptr[0] != 0) {
mstMonster1Collide(_mstCurrentMonster1, ptr);
return 0;
}
if ((m->flagsA5 & 0x40) != 0) {
return 0;
}
assert(_mstCurrentMonster1 == m);
int dir = 0;
for (int i = 0; i < _andyShootsCount; ++i) {
AndyShootData *p = &_andyShootsTable[i];
if (p->m && p->m != m) {
continue;
}
if (m->collideDistance < 0) {
continue;
}
if ((m->flags48 & 4) == 0) {
continue;
}
if (m->behaviorState->indexUnk51 == kNone) {
continue;
}
if (_rnd.getNextNumber() > m->behaviorState->unk10) {
continue;
}
m->shootActionIndex = 8;
int var28 = 0;
AndyShootData *var14 = m->shootData;
if (t->run != &Game::mstTask_monsterWait5 && t->run != &Game::mstTask_monsterWait6 && t->run != &Game::mstTask_monsterWait7 && t->run != &Game::mstTask_monsterWait8 && t->run != &Game::mstTask_monsterWait9 && t->run != &Game::mstTask_monsterWait10) {
if (m->monsterInfos[946] & 2) {
_mstCurrentMonster1->goalPos_x1 = _mstCurrentMonster1->goalPos_y1 = INT32_MIN;
_mstCurrentMonster1->goalPos_x2 = _mstCurrentMonster1->goalPos_y2 = INT32_MAX;
switch (var14->directionMask) {
case 0:
var28 = 2;
break;
case 1:
case 133:
var28 = 9;
break;
case 2:
var28 = 12;
break;
case 3:
case 128:
var28 = 3;
break;
case 4:
var28 = 6;
break;
case 5:
var28 = 8;
break;
case 6:
var28 = 1;
break;
case 7:
var28 = 4;
break;
}
_mstCurrentMonster1->shootActionIndex = _mstLut1[var28];
}
} else {
m->shootActionIndex = _mstLut1[m->goalDirectionMask];
var28 = 0;
}
uint32_t var24 = 0;
MstBehaviorState *vg = m->behaviorState;
if (vg->count != 0) {
var24 = _rnd.update() % (vg->count + 1);
}
int var20 = -1;
int indexUnk51;
if ((m->flagsA5 & 8) != 0 && m->action && m->action->indexUnk51 != kNone && m->monsterInfos == &_res->_mstMonsterInfos[m->action->unk0 * 948]) {
indexUnk51 = m->action->indexUnk51;
} else {
indexUnk51 = vg->indexUnk51;
}
int vb = -1;
const MstShootIndex *var18 = &_res->_mstShootIndexData[indexUnk51];
for (; var24 < var18->count; ++var24) {
assert(m->shootActionIndex >= 0 && m->shootActionIndex < 9);
const uint32_t indexUnk50Unk1 = var18->indexUnk50Unk1[var24 * 9 + m->shootActionIndex];
const MstShootAction *m50Unk1 = &_res->_mstShootData[var18->indexUnk50].data[indexUnk50Unk1];
const int32_t hSize = m50Unk1->hSize;
const int32_t vSize = m50Unk1->vSize;
if (hSize != 0 || vSize != 0) {
int dirMask = 0;
int ve = 0;
if ((m50Unk1->unk4 & kDirectionKeyMaskHorizontal) != kDirectionKeyMaskHorizontal && (m->o16->flags1 & 0x10) != 0) {
_mstTemp_x1 = m->xMstPos - hSize;
} else {
_mstTemp_x1 = m->xMstPos + hSize;
}
if (_mstTemp_x1 < m->xMstPos) {
if (_mstTemp_x1 < m->goalPos_x1) {
dirMask = kDirectionKeyMaskLeft;
}
ve = kDirectionKeyMaskLeft;
} else if (_mstTemp_x1 > m->xMstPos) {
if (_mstTemp_x1 > m->goalPos_x2) {
dirMask = kDirectionKeyMaskRight;
}
ve = kDirectionKeyMaskRight;
} else {
ve = 0;
}
_mstTemp_y1 = m->yMstPos + vSize;
if (_mstTemp_y1 < m->yMstPos) {
if (_mstTemp_y1 < m->goalPos_y1 && (m->monsterInfos[946] & 2) != 0) {
dirMask |= kDirectionKeyMaskUp;
}
ve |= kDirectionKeyMaskUp;
} else if (_mstTemp_y1 > m->yMstPos) {
if (_mstTemp_y1 > m->goalPos_y2 && (m->monsterInfos[946] & 2) != 0) {
dirMask |= kDirectionKeyMaskDown;
}
ve |= kDirectionKeyMaskDown;
}
if (var28 == dirMask) {
continue;
}
if (mstMonster1CheckLevelBounds(m, _mstTemp_x1, _mstTemp_y1, ve)) {
continue;
}
}
_mstTemp_x1 = m->xMstPos;
if ((m50Unk1->unk4 & kDirectionKeyMaskHorizontal) != kDirectionKeyMaskHorizontal && (m->o16->flags1 & 0x10) != 0) {
_mstTemp_x1 -= m50Unk1->width;
_mstTemp_x1 -= m50Unk1->xPos;
} else {
_mstTemp_x1 += m50Unk1->xPos;
}
_mstTemp_y1 = m->yMstPos + m50Unk1->yPos;
_mstTemp_x2 = _mstTemp_x1 + m50Unk1->width - 1;
_mstTemp_y2 = _mstTemp_y1 + m50Unk1->height - 1;
if ((m->monsterInfos[946] & 4) != 0 && mstBoundingBoxCollides1(m->monster1Index, _mstTemp_x1, _mstTemp_y1, _mstTemp_x2, _mstTemp_y2) != 0) {
continue;
}
if (m50Unk1->width != 0 && getMstDistance((m->monsterInfos[946] & 2) != 0 ? var14->boundingBox.y2 : m->yMstPos, var14) >= 0) {
continue;
}
if (m->collideDistance >= m50Unk1->unk24) {
MstBehaviorState *behaviorState = m->behaviorState;
vb = var24;
int vf = m50Unk1->unk24;
if (behaviorState->unk18 != 0) {
vf += (_rnd.update() % (behaviorState->unk18 * 2 + 1)) - behaviorState->unk18;
if (vf < 0) {
vf = 0;
}
}
dir = vf;
break;
}
if (var20 == -1) {
dir = m50Unk1->unk24;
var20 = var24;
}
vb = var20;
}
if (vb >= 0) {
const uint32_t indexUnk50Unk1 = var18->indexUnk50Unk1[vb * 9 + m->shootActionIndex];
MstShootAction *m50Unk1 = &_res->_mstShootData[var18->indexUnk50].data[indexUnk50Unk1];
mstTaskAttack(_mstCurrentTask, m50Unk1->codeData, 0x40);
_mstCurrentMonster1->unkF8 = m50Unk1->unk8;
_mstCurrentMonster1->shootSource = dir;
_mstCurrentMonster1->shootDirection = var14->directionMask;
_mstCurrentMonster1->directionKeyMask = _andyObject->directionKeyMask;
return 0;
}
}
if (o->screenNum == _currentScreen && (m->flagsA5 & 0x20) == 0 && (m->flags48 & 0x10) != 0) {
MstBehaviorState *behaviorState = m->behaviorState;
if (behaviorState->attackBox != kNone) {
const MstAttackBox *m47 = &_res->_mstAttackBoxData[behaviorState->attackBox];
if (m47->count > 0) {
const uint8_t dir = (o->flags1 >> 4) & 3;
const uint8_t *p = m47->data;
for (uint32_t i = 0; i < m47->count; ++i) {
int32_t a = READ_LE_UINT32(p); // x1
int32_t b = READ_LE_UINT32(p + 4); // y1
int32_t c = READ_LE_UINT32(p + 8); // x2
int32_t d = READ_LE_UINT32(p + 12); // y2
int x1, x2, y1, y2;
switch (dir) {
case 1:
x1 = m->xMstPos - c;
x2 = m->xMstPos - a;
y1 = m->yMstPos + b;
y2 = m->yMstPos + d;
break;
case 2:
x1 = m->xMstPos + a;
x2 = m->xMstPos + c;
y1 = m->yMstPos - d;
y2 = m->yMstPos - b;
break;
case 3:
x1 = m->xMstPos - c;
x2 = m->xMstPos - a;
y1 = m->yMstPos - d;
y2 = m->yMstPos - b;
break;
default:
x1 = m->xMstPos + a;
x2 = m->xMstPos + c;
y1 = m->yMstPos + b;
y2 = m->yMstPos + d;
break;
}
if (rect_contains(x1, y1, x2, y2, _mstAndyLevelPosX, _mstAndyLevelPosY)) {
mstTaskAttack(_mstCurrentTask, READ_LE_UINT32(p + 16), 0x20);
mstMonster1Collide(_mstCurrentMonster1, ptr);
return 0;
}
p += 20;
}
}
}
}
if (mstMonster1Collide(_mstCurrentMonster1, ptr)) {
return 0;
}
uint8_t _al = _mstCurrentMonster1->flagsA6;
if (_al & 2) {
return 0;
}
uint8_t _dl = _mstCurrentMonster1->flagsA5;
if (_dl & 0x30) {
return 0;
}
dir = _dl & 3;
if (dir == 1) {
MstWalkNode *walkNode = _mstCurrentMonster1->walkNode;
if (walkNode->walkCodeStage2 == kNone) {
return 0;
}
int ve = 0;
if (_mstAndyLevelPosY >= m->yMstPos - walkNode->y1 && _mstAndyLevelPosY < m->yMstPos + walkNode->y2) {
if (walkNode->x1 != -2 || walkNode->x1 != walkNode->x2) {
if (m->xDelta <= walkNode->x1) {
if (_al & 1) {
ve = 1;
} else {
_al = mstGetFacingDirectionMask(_mstCurrentMonster1->facingDirectionMask) & 1;
_dl = (_mstCurrentMonster1->o16->flags1 >> 4) & 1;
if (_dl == _al || (_mstCurrentMonster1->monsterInfos[946] & 4) != 0) {
ve = 1;
} else if (m->xDelta <= walkNode->x2) {
ve = 2;
}
}
}
} else if (o->screenNum == _currentScreen) {
if (_al & 1) {
ve = 1;
} else {
_al = mstGetFacingDirectionMask(_mstCurrentMonster1->facingDirectionMask) & 1;
_dl = (_mstCurrentMonster1->o16->flags1 >> 4) & 1;
if (_al != _dl && (_mstCurrentMonster1->monsterInfos[946] & 4) == 0) {
ve = 2;
} else {
ve = 1;
}
}
}
}
if (ve == 0) {
m->flagsA6 &= ~1;
if ((m->flagsA5 & 4) == 0) {
const uint32_t indexWalkCode = m->walkNode->walkCodeReset[0];
m->walkCode = &_res->_mstWalkCodeData[indexWalkCode];
}
return 0;
} else if (ve == 1) {
m->flagsA6 |= 1;
assert(_mstCurrentMonster1 == m);
if (!mstSetCurrentPos(m, m->xMstPos, m->yMstPos) && (m->monsterInfos[946] & 2) == 0) {
if ((_mstCurrentPosX > m->xMstPos && _mstCurrentPosX > m->walkNode->coords[0][1]) || (_mstCurrentPosX < m->xMstPos && _mstCurrentPosX < m->walkNode->coords[1][1])) {
uint32_t indexWalkCode = m->walkNode->walkCodeStage1;
if (indexWalkCode != kNone) {
m->walkCode = &_res->_mstWalkCodeData[indexWalkCode];
}
if (m->flagsA5 & 4) {
m->flagsA5 &= ~4;
if (!mstMonster1UpdateWalkPath(m)) {
mstMonster1ResetWalkPath(m);
}
indexWalkCode = m->walkNode->walkCodeStage1;
if (indexWalkCode != kNone) {
m->walkCode = &_res->_mstWalkCodeData[indexWalkCode];
}
mstTaskSetNextWalkCode(_mstCurrentTask);
}
return 0;
}
}
if ((m->monsterInfos[946] & 2) == 0) {
MstWalkNode *walkPath = m->walkNode;
int vf = (int32_t)READ_LE_UINT32(m->monsterInfos + 904);
int vb = MAX(m->goalPosBounds_x1, walkPath->coords[1][1] + vf);
int va = MIN(m->goalPosBounds_x2, walkPath->coords[0][1] - vf);
const uint32_t indexUnk36 = walkPath->movingBoundsIndex2;
const uint32_t indexUnk49 = _res->_mstMovingBoundsIndexData[indexUnk36].indexUnk49;
uint8_t _bl = _res->_mstMovingBoundsData[indexUnk49].unk14;
if (ABS(va - vb) <= _bl) {
uint32_t indexWalkCode = walkPath->walkCodeStage1;
if (indexWalkCode != kNone) {
m->walkCode = &_res->_mstWalkCodeData[indexWalkCode];
}
if (m->flagsA5 & 4) {
m->flagsA5 &= ~4;
if (!mstMonster1UpdateWalkPath(m)) {
mstMonster1ResetWalkPath(m);
}
indexWalkCode = m->walkNode->walkCodeStage1;
if (indexWalkCode != kNone) {
m->walkCode = &_res->_mstWalkCodeData[indexWalkCode];
}
mstTaskSetNextWalkCode(_mstCurrentTask);
}
return 0;
}
}
mstTaskInitMonster1Type2(_mstCurrentTask, 0);
return 0;
}
assert(ve == 2);
if (m->flagsA6 & 1) {
return 0;
}
const uint32_t indexWalkCode = m->walkNode->walkCodeStage2;
MstWalkCode *m35 = &_res->_mstWalkCodeData[indexWalkCode];
if (m->walkCode != m35) {
_mstCurrentMonster1->walkCode = m35;
_rnd.resetMst(_mstCurrentMonster1->rnd_m35);
mstTaskSetNextWalkCode(_mstCurrentTask);
return 0;
}
if (m->flagsA5 & 4) {
m->flagsA5 &= ~4;
if (!mstMonster1UpdateWalkPath(_mstCurrentMonster1)) {
mstMonster1ResetWalkPath(_mstCurrentMonster1);
}
const uint32_t indexWalkCode = m->walkNode->walkCodeStage2;
_mstCurrentMonster1->walkCode = &_res->_mstWalkCodeData[indexWalkCode];
mstTaskSetNextWalkCode(_mstCurrentTask);
}
return 0;
} else if (dir != 2) {
return 0;
}
if ((m->flagsA5 & 4) != 0 || (m->flags48 & 8) == 0) {
return 0;
}
if ((m->flagsA5 & 8) == 0 && (m->monsterInfos[946] & 2) == 0) {
const uint8_t _dl = m->facingDirectionMask;
if (_dl & kDirectionKeyMaskRight) {
if ((int32_t)READ_LE_UINT32(m->monsterInfos + 916) <= m->walkNode->coords[1][1] || (int32_t)READ_LE_UINT32(m->monsterInfos + 912) >= m->walkNode->coords[0][1]) {
m->flagsA6 |= 1;
assert(m == _mstCurrentMonster1);
m->flagsA5 = 1;
mstMonster1ResetWalkPath(m);
const uint32_t indexWalkCode = m->walkNode->walkCodeStage1;
if (indexWalkCode != kNone) {
m->walkCode = &_res->_mstWalkCodeData[indexWalkCode];
}
return 0;
}
} else if (_dl & kDirectionKeyMaskLeft) {
if ((int32_t)READ_LE_UINT32(m->monsterInfos + 920) >= m->walkNode->coords[0][1] || (int32_t)READ_LE_UINT32(m->monsterInfos + 924) <= m->walkNode->coords[1][1]) {
m->flagsA6 |= 1;
assert(m == _mstCurrentMonster1);
m->flagsA5 = 1;
mstMonster1ResetWalkPath(m);
const uint32_t indexWalkCode = m->walkNode->walkCodeStage1;
if (indexWalkCode != kNone) {
m->walkCode = &_res->_mstWalkCodeData[indexWalkCode];
}
return 0;
}
}
}
if (!mstSetCurrentPos(m, m->xMstPos, m->yMstPos)) {
mstTaskInitMonster1Type2(t, 1);
}
return 0;
}
int Game::mstUpdateTaskMonsterObject2(Task *t) {
debug(kDebug_MONSTER, "mstUpdateTaskMonsterObject2 t %p", t);
mstTaskSetMonster2ScreenPosition(t);
MonsterObject2 *m = t->monster2;
if (_currentLevel == kLvl_fort && m->monster2Info->type == 27) {
if (_fireflyPosData[m->hPosIndex] == 0xFF) {
uint32_t r = _rnd.update();
uint8_t _dl = (r % 5) << 3;
m->vPosIndex = _dl;
if (m->hPosIndex >= 40) {
m->hPosIndex = _dl;
m->vPosIndex = _dl + 40;
m->hDir = (r >> 16) & 1;
} else {
m->hPosIndex = m->vPosIndex + 40;
m->vDir = (r >> 16) & 1;
}
}
int dx = _fireflyPosData[m->hPosIndex];
if (m->hDir == 0) {
dx = -dx;
}
int dy = _fireflyPosData[m->vPosIndex];
if (m->vDir == 0) {
dy = -dy;
}
++m->vPosIndex;
++m->hPosIndex;
m->o->xPos += dx;
m->o->yPos += dy;
m->xMstPos += dx;
m->yMstPos += dy;
if (m->xMstPos > m->x2) {
m->hDir = 0;
} else if (m->xMstPos < m->x1) {
m->hDir = 1;
}
if (m->yMstPos > m->y2) {
m->vDir = 0;
} else if (m->yMstPos < m->y1) {
m->vDir = 1;
}
}
uint8_t _dl = 0;
for (int i = 0; i < _andyShootsCount; ++i) {
AndyShootData *p = &_andyShootsTable[i];
if (p->type == 2) {
_dl |= 1;
} else if (p->type == 1) {
_dl |= 2;
}
}
LvlObject *o = m->o;
MstInfoMonster2 *monster2Info = m->monster2Info;
const uint8_t _bl = monster2Info->shootMask;
if ((_bl & _dl) != 0) {
for (int i = 0; i < _andyShootsCount; ++i) {
AndyShootData *p = &_andyShootsTable[i];
if (p->type == 2 && (_bl & 1) == 0) {
continue;
} else if (p->type == 1 && (_bl & 2) == 0) {
continue;
}
if (o->screenNum != _currentScreen || p->o->screenNum != _currentScreen) {
continue;
}
if (!clipLvlObjectsBoundingBox(p->o, o, 20)) {
continue;
}
ShootLvlObjectData *s = p->shootObjectData;
s->unk3 = 0x80;
s->xPosShoot = o->xPos + o->width / 2;
s->yPosShoot = o->yPos + o->height / 2;
if (p->type != 2 || (_bl & 4) != 0) {
continue;
}
const uint32_t codeData = monster2Info->codeData2;
if (codeData != kNone) {
resetTask(t, _res->_mstCodeData + codeData * 4);
} else {
o->actionKeyMask = 7;
o->directionKeyMask = 0;
t->run = &Game::mstTask_idle;
}
}
}
if ((m->o->flags0 & 0xFF) == 0x1F) {
mstRemoveMonsterObject2(t, &_monsterObjects2TasksList);
return 1;
}
return 0;
}
void Game::mstUpdateRefPos() {
if (_andyObject) {
_mstAndyScreenPosX = _andyObject->xPos;
_mstAndyScreenPosY = _andyObject->yPos;
_mstAndyLevelPosX = _mstAndyScreenPosX + _res->_mstPointOffsets[_currentScreen].xOffset;
_mstAndyLevelPosY = _mstAndyScreenPosY + _res->_mstPointOffsets[_currentScreen].yOffset;
if (!_specialAnimFlag) {
_mstAndyRectNum = mstBoundingBoxUpdate(_mstAndyRectNum, 0xFE, _mstAndyLevelPosX, _mstAndyLevelPosY, _mstAndyLevelPosX + _andyObject->width - 1, _mstAndyLevelPosY + _andyObject->height - 1) & 0xFF;
}
_mstAndyScreenPosX += _andyObject->posTable[3].x;
_mstAndyScreenPosY += _andyObject->posTable[3].y;
_mstAndyLevelPosX += _andyObject->posTable[3].x;
_mstAndyLevelPosY += _andyObject->posTable[3].y;
} else {
_mstAndyScreenPosX = 128;
_mstAndyScreenPosY = 96;
_mstAndyLevelPosX = _mstAndyScreenPosX + _res->_mstPointOffsets[0].xOffset;
_mstAndyLevelPosY = _mstAndyScreenPosY + _res->_mstPointOffsets[0].yOffset;
}
_andyShootsCount = 0;
_andyShootsTable[0].type = 0;
if (!_lvlObjectsList0) {
if (_plasmaCannonDirection == 0) {
_executeMstLogicPrevCounter = _executeMstLogicCounter;
return;
}
_andyShootsTable[0].width = 512;
_andyShootsTable[0].height = 512;
_andyShootsTable[0].shootObjectData = 0;
_andyShootsTable[0].type = 3;
_andyShootsTable[0].size = 4;
_andyShootsTable[0].xPos = _plasmaCannonPosX[_plasmaCannonFirstIndex] + _res->_mstPointOffsets[_currentScreen].xOffset;
_andyShootsTable[0].yPos = _plasmaCannonPosY[_plasmaCannonFirstIndex] + _res->_mstPointOffsets[_currentScreen].yOffset;
switch (_plasmaCannonDirection - 1) {
case 0:
_andyShootsTable[0].directionMask = 6;
_andyShootsCount = 1;
break;
case 2:
_andyShootsTable[0].directionMask = 3;
_andyShootsCount = 1;
break;
case 1:
_andyShootsTable[0].directionMask = 0;
_andyShootsCount = 1;
break;
case 5:
_andyShootsTable[0].directionMask = 4;
_andyShootsCount = 1;
break;
case 3:
_andyShootsTable[0].directionMask = 7;
_andyShootsCount = 1;
break;
case 11:
_andyShootsTable[0].directionMask = 2;
_andyShootsCount = 1;
break;
case 7:
_andyShootsTable[0].directionMask = 5;
_andyShootsCount = 1;
break;
case 8:
_andyShootsTable[0].directionMask = 1;
_andyShootsCount = 1;
break;
default:
_andyShootsCount = 1;
break;
}
} else {
AndyShootData *p = _andyShootsTable;
for (LvlObject *o = _lvlObjectsList0; o; o = o->nextPtr) {
p->o = o;
if (!o->dataPtr) {
continue;
}
ShootLvlObjectData *ptr = (ShootLvlObjectData *)getLvlObjectDataPtr(o, kObjectDataTypeShoot);
p->shootObjectData = ptr;
if (ptr->unk3 == 0x80) {
continue;
}
if (ptr->dxPos == 0 && ptr->dyPos == 0) {
continue;
}
p->width = ptr->dxPos;
p->height = ptr->dyPos;
p->directionMask = ptr->state;
switch (ptr->type) {
case 0:
p->type = 1;
p->xPos = o->xPos + _res->_mstPointOffsets[o->screenNum].xOffset + o->posTable[7].x;
p->size = 3;
p->yPos = o->yPos + _res->_mstPointOffsets[o->screenNum].yOffset + o->posTable[7].y;
break;
case 5:
p->directionMask |= 0x80;
// fall-through
case 4:
p->type = 2;
p->xPos = o->xPos + _res->_mstPointOffsets[o->screenNum].xOffset + o->posTable[7].x;
p->size = 7;
p->yPos = o->yPos + _res->_mstPointOffsets[o->screenNum].yOffset + o->posTable[7].y;
break;
default:
--p;
--_andyShootsCount;
break;
}
++p;
++_andyShootsCount;
if (_andyShootsCount >= kMaxAndyShoots) {
break;
}
}
if (_andyShootsCount == 0) {
_executeMstLogicPrevCounter = _executeMstLogicCounter;
return;
}
}
for (int i = 0; i < _andyShootsCount; ++i) {
AndyShootData *p = &_andyShootsTable[i];
p->boundingBox.x2 = p->xPos + p->size;
p->boundingBox.x1 = p->xPos - p->size;
p->boundingBox.y2 = p->yPos + p->size;
p->boundingBox.y1 = p->yPos - p->size;
}
}
void Game::mstUpdateMonstersRect() {
const int _mstAndyLevelPosDx = _mstAndyLevelPosX - _mstAndyLevelPrevPosX;
const int _mstAndyLevelPosDy = _mstAndyLevelPosY - _mstAndyLevelPrevPosY;
_mstAndyLevelPrevPosX = _mstAndyLevelPosX;
_mstAndyLevelPrevPosY = _mstAndyLevelPosY;
if (_mstAndyLevelPosDx == 0 && _mstAndyLevelPosDy == 0) {
return;
}
int offset = 0;
for (int i = 0; i < _res->_mstHdr.infoMonster1Count; ++i) {
offset += kMonsterInfoDataSize;
const uint32_t unk30 = READ_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x30]); // 900
const uint32_t unk34 = READ_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x34]); // 896
const uint32_t unk20 = _mstAndyLevelPosX - unk30;
const uint32_t unk1C = _mstAndyLevelPosX + unk30;
WRITE_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x20], unk20);
WRITE_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x1C], unk1C);
WRITE_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x24], unk20 - unk34);
WRITE_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x18], unk1C + unk34);
const uint32_t unk10 = _mstAndyLevelPosY - unk30;
const uint32_t unk0C = _mstAndyLevelPosY + unk30;
WRITE_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x10], unk10);
WRITE_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x0C], unk0C);
WRITE_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x14], unk10 - unk34);
WRITE_LE_UINT32(&_res->_mstMonsterInfos[offset - 0x08], unk0C + unk34);
}
}
void Game::mstRemoveMonsterObject2(Task *t, Task **tasksList) {
MonsterObject2 *m = t->monster2;
m->monster2Info = 0;
LvlObject *o = m->o;
if (o) {
o->dataPtr = 0;
removeLvlObject2(o);
}
removeTask(tasksList, t);
}
void Game::mstRemoveMonsterObject1(Task *t, Task **tasksList) {
MonsterObject1 *m = t->monster1;
if (_mstActionNum != -1) {
if ((m->flagsA5 & 8) != 0 && m->action) {
mstMonster1ClearChasingMonster(m);
}
}
if (m->monsterInfos[946] & 4) {
mstBoundingBoxClear(m, 0);
mstBoundingBoxClear(m, 1);
}
m->m46 = 0;
LvlObject *o = m->o16;
if (o) {
o->dataPtr = 0;
}
for (int i = 0; i < kMaxMonsterObjects2; ++i) {
if (_monsterObjects2Table[i].monster2Info != 0 && _monsterObjects2Table[i].monster1 == m) {
_monsterObjects2Table[i].monster1 = 0;
}
}
removeLvlObject2(o);
removeTask(tasksList, t);
}
void Game::mstTaskAttack(Task *t, uint32_t codeData, uint8_t flags) {
MonsterObject1 *m = t->monster1;
m->flagsA5 = (m->flagsA5 & ~0x70) | flags;
Task *c = t->child;
if (c) {
t->child = 0;
c->codeData = 0;
}
if (m->flagsA5 & 8) {
Task *n = findFreeTask();
if (n) {
memcpy(n, t, sizeof(Task));
t->child = n;
if (t->run != &Game::mstTask_wait2) {
const uint8_t *p = n->codeData - 4;
if ((t->flags & 0x40) != 0 || p[0] == 203 || ((flags & 0x10) != 0 && (t->run == &Game::mstTask_monsterWait1 || t->run == &Game::mstTask_monsterWait2 || t->run == &Game::mstTask_monsterWait3 || t->run == &Game::mstTask_monsterWait4))) {
p += 4;
}
n->codeData = p;
n->run = &Game::mstTask_main;
}
}
}
assert(codeData != kNone);
resetTask(t, _res->_mstCodeData + codeData * 4);
}
int Game::mstTaskSetActionDirection(Task *t, int num, int delay) {
MonsterObject1 *m = t->monster1;
LvlObject *o = m->o16;
uint8_t var4 = _res->_mstActionDirectionData[num].unk0;
uint8_t var8 = _res->_mstActionDirectionData[num].unk2;
const uint8_t *p = m->monsterInfos + var4 * 28;
uint8_t _al = (o->flags1 >> 4) & 3;
uint8_t _cl = ((_al & 1) != 0) ? 8 : 2;
if (_al & 2) {
_cl |= 4;
} else {
_cl |= 1;
}
mstLvlObjectSetActionDirection(o, p, var8, _cl);
const uint8_t am = _res->_mstActionDirectionData[num].unk1;
o->actionKeyMask |= am;
t->flags &= ~0x80;
int vf = (int8_t)p[4];
int ve = (int8_t)p[5];
debug(kDebug_MONSTER, "mstTaskSetActionDirection m %p action 0x%x direction 0x%x (%d,%d)", m, o->actionKeyMask, o->directionKeyMask, vf, ve);
int va = 0;
if (vf != 0 || ve != 0) {
int dirMask = 0;
uint8_t var11 = p[2];
if (((var11 & kDirectionKeyMaskHorizontal) == kDirectionKeyMaskHorizontal && (o->directionKeyMask & 8) != 0) || ((var11 & kDirectionKeyMaskHorizontal) != kDirectionKeyMaskHorizontal && (o->flags1 & 0x10) != 0)) {
vf = m->xMstPos - vf;
} else {
vf = m->xMstPos + vf;
}
if (vf < m->xMstPos) {
dirMask = kDirectionKeyMaskLeft;
} else if (vf > m->xMstPos) {
dirMask = kDirectionKeyMaskRight;
}
if ((var11 & kDirectionKeyMaskVertical) == kDirectionKeyMaskVertical && (o->directionKeyMask & 1) != 0) {
ve = m->yMstPos - ve;
} else {
ve = m->yMstPos + ve;
}
if (ve < m->yMstPos) {
dirMask |= kDirectionKeyMaskUp;
} else if (ve > m->yMstPos) {
dirMask |= kDirectionKeyMaskDown;
}
if (mstMonster1CheckLevelBounds(m, vf, ve, dirMask)) {
t->flags |= 0x80;
return 0;
}
va = dirMask;
}
if ((m->monsterInfos[946] & 4) != 0 && p[0xE] != 0) {
if (va == 0) {
ve = 0;
} else if (_mstLut1[va] & 1) {
ve = (int8_t)p[0xA];
va = (int8_t)p[0xB];
} else {
ve = (int8_t)p[0x8];
va = (int8_t)p[0x9];
}
if (o->directionKeyMask & kDirectionKeyMaskLeft) {
ve = -ve;
} else if ((o->directionKeyMask & kDirectionKeyMaskRight) == 0) {
ve = 0;
}
if (o->directionKeyMask & kDirectionKeyMaskUp) {
va = -va;
} else if ((o->directionKeyMask & kDirectionKeyMaskDown) == 0) {
va = 0;
}
const int x1 = m->xMstPos + (int8_t)p[0xC] + ve;
const int y1 = m->yMstPos + (int8_t)p[0xD] + va;
const int x2 = x1 + p[0xE] - 1;
const int y2 = y1 + p[0xF] - 1;
if ((var8 & 0xE0) != 0x60 && mstBoundingBoxCollides2(m->monster1Index, x1, y1, x2, y2) != 0) {
t->flags |= 0x80;
return 0;
}
m->bboxNum[0] = mstBoundingBoxUpdate(m->bboxNum[0], m->monster1Index, x1, y1, x2, y2);
}
m->o_flags0 = var4;
if (delay == -1) {
const uint32_t offset = m->monsterInfos - _res->_mstMonsterInfos;
assert((offset % kMonsterInfoDataSize) == 0);
t->arg2 = offset / kMonsterInfoDataSize;
t->run = &Game::mstTask_monsterWait4;
debug(kDebug_MONSTER, "mstTaskSetActionDirection arg2 %d", t->arg2);
} else {
t->arg1 = delay;
t->run = &Game::mstTask_monsterWait3;
debug(kDebug_MONSTER, "mstTaskSetActionDirection arg1 %d", t->arg1);
}
return 1;
}
Task *Game::findFreeTask() {
for (int i = 0; i < kMaxTasks; ++i) {
Task *t = &_tasksTable[i];
if (!t->codeData) {
memset(t, 0, sizeof(Task));
return t;
}
}
warning("findFreeTask() no free task");
return 0;
}
Task *Game::createTask(const uint8_t *codeData) {
Task *t = findFreeTask();
if (t) {
resetTask(t, codeData);
t->prevPtr = 0;
t->nextPtr = _tasksList;
if (_tasksList) {
_tasksList->prevPtr = t;
}
_tasksList = t;
return t;
}
return 0;
}
void Game::updateTask(Task *t, int num, const uint8_t *codeData) {
debug(kDebug_MONSTER, "updateTask t %p offset 0x%04x", t, codeData - _res->_mstCodeData);
Task *current = _tasksList;
bool found = false;
while (current) {
Task *nextPtr = current->nextPtr;
if (current->localVars[7] == num) {
found = true;
if (current != t) {
if (!codeData) {
if (current->child) {
current->child->codeData = 0;
current->child = 0;
}
Task *prev = current->prevPtr;
current->codeData = 0;
Task *next = current->nextPtr;
if (next) {
next->prevPtr = prev;
}
if (prev) {
prev->nextPtr = next;
} else {
_tasksList = next;
}
} else {
t->codeData = codeData;
t->run = &Game::mstTask_main;
}
}
}
current = nextPtr;
}
if (found) {
return;
}
if (codeData) {
t = findFreeTask();
if (t) {
resetTask(t, codeData);
t->prevPtr = 0;
t->nextPtr = _tasksList;
if (_tasksList) {
_tasksList->prevPtr = t;
}
_tasksList = t;
t->localVars[7] = num;
}
}
}
void Game::resetTask(Task *t, const uint8_t *codeData) {
debug(kDebug_MONSTER, "resetTask t %p offset 0x%04x monster1 %p monster2 %p", t, codeData - _res->_mstCodeData, t->monster1, t->monster2);
assert(codeData);
t->state |= 2;
t->codeData = codeData;
t->run = &Game::mstTask_main;
t->localVars[7] = 0;
MonsterObject1 *m = t->monster1;
if (m) {
const uint8_t mask = m->flagsA5;
if ((mask & 0x88) == 0 || (mask & 0xF0) == 0) {
if ((mask & 8) != 0) {
t->flags = (t->flags & ~0x40) | 0x20;
m->flags48 &= ~0x1C;
} else if ((mask & 2) != 0) {
m->flags48 |= 8;
const MstBehaviorState *behaviorState = m->behaviorState;
if (behaviorState->indexUnk51 != kNone) {
m->flags48 |= 4;
}
if (behaviorState->attackBox != kNone) {
m->flags48 |= 0x10;
}
}
}
}
}
void Game::removeTask(Task **tasksList, Task *t) {
Task *c = t->child;
if (c) {
c->codeData = 0;
t->child = 0;
}
Task *prev = t->prevPtr;
t->codeData = 0;
Task *next = t->nextPtr;
if (next) {
next->prevPtr = prev;
}
if (prev) {
prev->nextPtr = next;
} else {
*tasksList = next;
}
}
void Game::appendTask(Task **tasksList, Task *t) {
Task *current = *tasksList;
if (!current) {
*tasksList = t;
t->nextPtr = t->prevPtr = 0;
} else {
// go to last element
Task *next = current->nextPtr;
while (next) {
current = next;
next = current->nextPtr;
}
assert(!current->nextPtr);
current->nextPtr = t;
t->nextPtr = 0;
t->prevPtr = current;
}
}
int Game::getTaskVar(Task *t, int index, int type) const {
switch (type) {
case 1:
return index;
case 2:
assert(index < kMaxLocals);
return t->localVars[index];
case 3:
assert(index < kMaxVars);
return _mstVars[index];
case 4:
return getTaskOtherVar(index, t);
case 5:
{
MonsterObject1 *m = 0;
if (t->monster2) {
m = t->monster2->monster1;
} else {
m = t->monster1;
}
if (m) {
assert(index < kMaxLocals);
return m->localVars[index];
}
}
break;
default:
warning("getTaskVar unhandled index %d type %d", index, type);
break;
}
return 0;
}
void Game::setTaskVar(Task *t, int index, int type, int value) {
switch (type) {
case 2:
assert(index < kMaxLocals);
t->localVars[index] = value;
break;
case 3:
assert(index < kMaxVars);
_mstVars[index] = value;
break;
case 5: {
MonsterObject1 *m = 0;
if (t->monster2) {
m = t->monster2->monster1;
} else {
m = t->monster1;
}
if (m) {
assert(index < kMaxLocals);
m->localVars[index] = value;
}
}
break;
default:
warning("setTaskVar unhandled index %d type %d", index, type);
break;
}
}
int Game::getTaskAndyVar(int index, Task *t) const {
if (index & 0x80) {
const int mask = 1 << (index & 0x7F);
return ((mask & _mstAndyVarMask) != 0) ? 1 : 0;
}
switch (index) {
case 0:
return (_andyObject->flags1 >> 4) & 1;
case 1:
return (_andyObject->flags1 >> 5) & 1;
case 2: {
MonsterObject1 *m = t->monster1;
if (m) {
return ((m->o16->flags1 & 0x10) != 0) ? 1 : 0;
} else if (t->monster2) {
return ((t->monster2->o->flags1 & 0x10) != 0) ? 1 : 0;
}
}
break;
case 3: {
MonsterObject1 *m = t->monster1;
if (m) {
return ((m->o16->flags1 & 0x20) != 0) ? 1 : 0;
} else if (t->monster2) {
return ((t->monster2->o->flags1 & 0x20) != 0) ? 1 : 0;
}
}
break;
case 4: {
MonsterObject1 *m = t->monster1;
if (m) {
return ((m->o16->flags0 & 0x200) != 0) ? 1 : 0;
} else if (t->monster2) {
return ((t->monster2->o->flags0 & 0x200) != 0) ? 1 : 0;
}
}
break;
case 5:
return ((_andyObject->flags0 & 0x1F) == 7) ? 1 : 0;
case 6:
return (_andyObject->spriteNum == 0) ? 1 : 0;
case 7:
if ((_andyObject->flags0 & 0x1F) == 7) {
AndyLvlObjectData *andyData = (AndyLvlObjectData *)getLvlObjectDataPtr(_andyObject, kObjectDataTypeAndy);
if (andyData) {
LvlObject *o = andyData->shootLvlObject;
if (o && o->dataPtr) {
ShootLvlObjectData *data = (ShootLvlObjectData *)getLvlObjectDataPtr(o, kObjectDataTypeShoot);
return (data->type == 4) ? 1 : 0;
}
}
}
break;
case 8:
if ((_andyObject->flags0 & 0x1F) == 7) {
AndyLvlObjectData *andyData = (AndyLvlObjectData *)getLvlObjectDataPtr(_andyObject, kObjectDataTypeAndy);
if (andyData) {
LvlObject *o = andyData->shootLvlObject;
if (o && o->dataPtr) {
ShootLvlObjectData *data = (ShootLvlObjectData *)getLvlObjectDataPtr(o, kObjectDataTypeShoot);
return (data->type == 0) ? 1 : 0;
}
}
}
default:
warning("getTaskAndyVar unhandled index %d", index);
break;
}
return 0;
}
int Game::getTaskOtherVar(int index, Task *t) const {
switch (index) {
case 0:
return _mstAndyScreenPosX;
case 1:
return _mstAndyScreenPosY;
case 2:
return _mstAndyLevelPosX;
case 3:
return _mstAndyLevelPosY;
case 4:
return _currentScreen;
case 5:
return _res->_screensState[_currentScreen].s0;
case 6:
return _difficulty;
case 7:
if (t->monster1 && t->monster1->shootData) {
return t->monster1->shootData->type;
}
return _andyShootsTable[0].type;
case 8:
if (t->monster1 && t->monster1->shootData) {
return t->monster1->shootData->directionMask & 0x7F;
}
return _andyShootsTable[0].directionMask & 0x7F;
case 9:
if (t->monster1 && t->monster1->action) {
return t->monster1->action->xPos;
}
break;
case 10:
if (t->monster1 && t->monster1->action) {
return t->monster1->action->yPos;
}
break;
case 11:
if (t->monster1) {
return t->monster1->shootSource;
}
break;
case 12:
if (t->monster1) {
return t->monster1->xPos;
} else if (t->monster2) {
return t->monster2->xPos;
}
break;
case 13:
if (t->monster1) {
return t->monster1->yPos;
} else if (t->monster2) {
return t->monster2->yPos;
}
break;
case 14:
if (t->monster1) {
return t->monster1->o16->screenNum;
} else if (t->monster2) {
return t->monster2->o->screenNum;
}
break;
case 15:
if (t->monster1) {
return t->monster1->xDelta;
} else if (t->monster2) {
return ABS(_mstAndyLevelPosX - t->monster2->xMstPos);
}
break;
case 16:
if (t->monster1) {
return t->monster1->yDelta;
} else if (t->monster2) {
return ABS(_mstAndyLevelPosY - t->monster2->yMstPos);
}
break;
case 17:
if (t->monster1) {
return t->monster1->collideDistance;
}
break;
case 18:
if (t->monster1) {
return ABS(t->monster1->levelPosBounds_x1 - t->monster1->xMstPos);
}
break;
case 19:
if (t->monster1) {
return ABS(t->monster1->levelPosBounds_x2 - t->monster1->xMstPos);
}
break;
case 20:
if (t->monster1) {
return ABS(t->monster1->levelPosBounds_y1 - t->monster1->yMstPos);
}
break;
case 21:
if (t->monster1) {
return ABS(t->monster1->levelPosBounds_y2 - t->monster1->yMstPos);
}
break;
case 22:
return _mstOp54Counter;
case 23:
return _andyObject->actionKeyMask;
case 24:
return _andyObject->directionKeyMask;
case 25:
if (t->monster1) {
return t->monster1->xMstPos;
} else if (t->monster2) {
return t->monster2->xMstPos;
}
break;
case 26:
if (t->monster1) {
return t->monster1->yMstPos;
} else if (t->monster2) {
return t->monster2->yMstPos;
}
break;
case 27:
if (t->monster1) {
return t->monster1->o16->flags0 & 0xFF;
} else if (t->monster2) {
return t->monster2->o->flags0 & 0xFF;
}
break;
case 28:
if (t->monster1) {
return t->monster1->o16->anim;
} else if (t->monster2) {
return t->monster2->o->anim;
}
break;
case 29:
if (t->monster1) {
return t->monster1->o16->frame;
} else if (t->monster2) {
return t->monster2->o->frame;
}
break;
case 30:
return _mstOp56Counter;
case 31:
return _executeMstLogicCounter;
case 32:
return _executeMstLogicCounter - _executeMstLogicPrevCounter;
case 33: {
LvlObject *o = 0;
if (t->monster1) {
o = t->monster1->o16;
} else if (t->monster2) {
o = t->monster2->o;
}
if (o) {
return _res->_screensState[o->screenNum].s0;
}
}
break;
case 34:
return _level->_checkpoint;
case 35:
return _mstAndyCurrentScreenNum;
default:
warning("getTaskOtherVar unhandled index %d", index);
break;
}
return 0;
}
int Game::getTaskFlag(Task *t, int num, int type) const {
switch (type) {
case 1:
return num;
case 2:
return ((t->flags & (1 << num)) != 0) ? 1 : 0;
case 3:
return ((_mstFlags & (1 << num)) != 0) ? 1 : 0;
case 4:
return getTaskAndyVar(num, t);
case 5: {
MonsterObject1 *m = 0;
if (t->monster2) {
m = t->monster2->monster1;
} else {
m = t->monster1;
}
if (m) {
return ((m->flags48 & (1 << num)) != 0) ? 1 : 0;
}
}
default:
warning("getTaskFlag unhandled type %d num %d", type, num);
break;
}
return 0;
}
int Game::mstTask_main(Task *t) {
assert(t->codeData);
const int taskNum = t - _tasksTable;
int ret = 0;
t->state &= ~2;
const uint8_t *p = t->codeData;
do {
assert(p >= _res->_mstCodeData && p < _res->_mstCodeData + _res->_mstHdr.codeSize * 4);
assert(((p - t->codeData) & 3) == 0);
const uint32_t codeOffset = p - _res->_mstCodeData;
debug(kDebug_MONSTER, "executeMstCode task %d %p code %d offset 0x%04x", taskNum, t, p[0], codeOffset);
assert(p[0] <= 242);
switch (p[0]) {
case 0: { // 0
LvlObject *o = 0;
if (t->monster1) {
if ((t->monster1->flagsA6 & 2) == 0) {
o = t->monster1->o16;
}
} else if (t->monster2) {
o = t->monster2->o;
}
if (o) {
o->actionKeyMask = 0;
o->directionKeyMask = 0;
}
}
// fall-through
case 1: { // 1
const int num = READ_LE_UINT16(p + 2);
const int delay = getTaskVar(t, num, p[1]);
t->arg1 = delay;
if (delay > 0) {
if (p[0] == 0) {
t->run = &Game::mstTask_wait2;
ret = 1;
} else {
t->run = &Game::mstTask_wait1;
ret = 1;
}
}
}
break;
case 2: { // 2 - set_var_random_range
const int num = READ_LE_UINT16(p + 2);
MstOp2Data *m = &_res->_mstOp2Data[num];
int a = getTaskVar(t, m->indexVar1, m->maskVars >> 4);
int b = getTaskVar(t, m->indexVar2, m->maskVars & 15);
if (a > b) {
SWAP(a, b);
}
a += _rnd.update() % (b - a + 1);
setTaskVar(t, m->unkA, m->unk9, a);
}
break;
case 3:
case 8: // 3 - set_monster_action_direction_imm
if (t->monster1) {
const int num = READ_LE_UINT16(p + 2);
const int arg = _res->_mstActionDirectionData[num].unk3;
t->codeData = p;
ret = mstTaskSetActionDirection(t, num, (arg == 0xFF) ? -1 : arg);
}
break;
case 4: // 4 - set_monster_action_direction_task_var
if (t->monster1) {
const int num = READ_LE_UINT16(p + 2);
const int arg = _res->_mstActionDirectionData[num].unk3;
t->codeData = p;
assert(arg < kMaxLocals);
ret = mstTaskSetActionDirection(t, num, t->localVars[arg]);
}
break;
case 13: // 8
if (t->monster1) {
const int num = READ_LE_UINT16(p + 2);
if (mstTestActionDirection(t->monster1, num)) {
const int arg = _res->_mstActionDirectionData[num].unk3;
t->codeData = p;
ret = mstTaskSetActionDirection(t, num, (arg == 0xFF) ? -1 : arg);
}
}
break;
case 23: // 13 - set_flag_global
_mstFlags |= (1 << p[1]);
break;
case 24: // 14 - set_flag_task
t->flags |= (1 << p[1]);
break;
case 25: { // 15 - set_flag_mst
MonsterObject1 *m = 0;
if (t->monster2) {
m = t->monster2->monster1;
} else {
m = t->monster1;
}
if (m) {
m->flags48 |= (1 << p[1]);
}
}
break;
case 26: // 16 - clear_flag_global
_mstFlags &= ~(1 << p[1]);
break;
case 27: // 17 - clear_flag_task
t->flags &= ~(1 << p[1]);
break;
case 28: { // 18 - clear_flag_mst
MonsterObject1 *m = 0;
if (t->monster2) {
m = t->monster2->monster1;
} else {
m = t->monster1;
}
if (m) {
m->flags48 &= ~(1 << p[1]);
}
}
break;
case 30: { // 20
t->arg1 = 3;
t->arg2 = p[1];
if (((1 << p[1]) & _mstFlags) == 0) {
LvlObject *o = 0;
if (t->monster1) {
if ((t->monster1->flagsA6 & 2) == 0) {
o = t->monster1->o16;
}
} else if (t->monster2) {
o = t->monster2->o;
}
if (o) {
o->actionKeyMask = 0;
o->directionKeyMask = 0;
}
t->run = &Game::mstTask_wait3;
ret = 1;
}
}
break;
case 32: { // 22
MonsterObject1 *m = 0;
if (t->monster2) {
m = t->monster2->monster1;
} else {
m = t->monster1;
}
if (m) {
t->arg1 = 5;
t->arg2 = p[1];
if (((1 << p[1]) & m->flags48) == 0) {
LvlObject *o = 0;
if (t->monster1) {
if ((t->monster1->flagsA6 & 2) == 0) {
o = t->monster1->o16;
}
} else if (t->monster2) {
o = t->monster2->o;
}
if (o) {
o->actionKeyMask = 0;
o->directionKeyMask = 0;
}
t->run = &Game::mstTask_wait3;
ret = 1;
}
}
}
break;
case 33:
case 229: { // 23 - jmp_imm
const int num = READ_LE_UINT16(p + 2);
p = _res->_mstCodeData + num * 4 - 4;
}
break;
case 34:
// no-op
break;
case 35: { // 24 - enable_trigger
const int num = READ_LE_UINT16(p + 2);
_res->flagMstCodeForPos(num, 1);
}
break;
case 36: { // 25 - disable_trigger
const int num = READ_LE_UINT16(p + 2);
_res->flagMstCodeForPos(num, 0);
}
break;
case 39: // 26 - remove_monsters_screen
if (p[1] < _res->_mstHdr.screensCount) {
mstOp26_removeMstTaskScreen(&_monsterObjects1TasksList, p[1]);
mstOp26_removeMstTaskScreen(&_monsterObjects2TasksList, p[1]);
// mstOp26_removeMstTaskScreen(&_mstTasksList3, p[1]);
// mstOp26_removeMstTaskScreen(&_mstTasksList4, p[1]);
}
break;
case 40: // 27 - remove_monsters_screen_type
if (p[1] < _res->_mstHdr.screensCount) {
mstOp27_removeMstTaskScreenType(&_monsterObjects1TasksList, p[1], p[2]);
mstOp27_removeMstTaskScreenType(&_monsterObjects2TasksList, p[1], p[2]);
// mstOp27_removeMstTaskScreenType(&_mstTasksList3, p[1], p[2]);
// mstOp27_removeMstTaskScreenType(&_mstTasksList4, p[1], p[2]);
}
break;
case 41: { // 28 - increment_task_var
assert(p[1] < kMaxLocals);
++t->localVars[p[1]];
}
break;
case 42: { // 29 - increment_global_var
const int num = p[1];
assert(num < kMaxVars);
++_mstVars[num];
}
break;
case 43: { // 30 - increment_monster_var
MonsterObject1 *m = 0;
if (t->monster2) {
m = t->monster2->monster1;
} else {
m = t->monster1;
}
if (m) {
const int num = p[1];
assert(num < kMaxLocals);
++m->localVars[num];
}
}
break;
case 44: { // 31 - decrement_task_var
const int num = p[1];
assert(num < kMaxLocals);
--t->localVars[num];
}
break;
case 45: { // 32 - decrement_global_var
const int num = p[1];
assert(num < kMaxVars);
--_mstVars[num];
}
break;
case 47:
case 48:
case 49:
case 50:
case 51:
case 52:
case 53:
case 54:
case 55:
case 56: { // 34 - arith_task_var_task_var
assert(p[1] < kMaxLocals);
assert(p[2] < kMaxLocals);
arithOp(p[0] - 47, &t->localVars[p[1]], t->localVars[p[2]]);
}
break;
case 57:
case 58:
case 59:
case 60:
case 61:
case 62:
case 63:
case 64:
case 65:
case 66: { // 35 - arith_global_var_task_var
assert(p[1] < kMaxVars);
assert(p[2] < kMaxLocals);
arithOp(p[0] - 57, &_mstVars[p[1]], t->localVars[p[2]]);
if (p[1] == 31 && _mstVars[31] > 0) {
_mstTickDelay = _mstVars[31];
}
}
break;
case 67:
case 68:
case 69:
case 70:
case 71:
case 72:
case 73:
case 74:
case 75:
case 76: { // 36
MonsterObject1 *m = 0;
if (t->monster2) {
m = t->monster2->monster1;
} else {
m = t->monster1;
}
if (m) {
assert(p[1] < kMaxLocals);
assert(p[2] < kMaxLocals);
arithOp(p[0] - 67, &m->localVars[p[1]], t->localVars[p[2]]);
}
}
break;
case 77:
case 78:
case 79:
case 80:
case 81:
case 82:
case 83:
case 84:
case 85:
case 86: { // 37
MonsterObject1 *m = 0;
if (t->monster2) {
m = t->monster2->monster1;
} else {
m = t->monster1;
}
if (m) {
assert(p[1] < kMaxLocals);
assert(p[2] < kMaxLocals);
arithOp(p[0] - 77, &t->localVars[p[1]], m->localVars[p[2]]);
}
}
break;
case 87:
case 88:
case 89:
case 90:
case 91:
case 92:
case 93:
case 94:
case 95:
case 96: { // 38
MonsterObject1 *m = 0;
if (t->monster2) {
m = t->monster2->monster1;
} else {
m = t->monster1;
}
if (m) {
assert(p[1] < kMaxVars);
assert(p[2] < kMaxLocals);
arithOp(p[0] - 87, &_mstVars[p[1]], m->localVars[p[2]]);
if (p[1] == 31 && _mstVars[31] > 0) {
_mstTickDelay = _mstVars[31];
}
}
}
break;
case 97:
case 98:
case 99:
case 100:
case 101:
case 102:
case 103:
case 104:
case 105:
case 106: { // 39
MonsterObject1 *m = 0;
if (t->monster2) {
m = t->monster2->monster1;
} else {
m = t->monster1;
}
if (m) {
assert(p[1] < kMaxLocals);
assert(p[2] < kMaxLocals);
arithOp(p[0] - 97, &m->localVars[p[1]], m->localVars[p[2]]);
}
}
break;
case 107:
case 108:
case 109:
case 110:
case 111:
case 112:
case 113:
case 114:
case 115:
case 116: { // 40
assert(p[1] < kMaxLocals);
assert(p[2] < kMaxVars);
arithOp(p[0] - 107, &t->localVars[p[1]], _mstVars[p[2]]);
}
break;
case 117:
case 118:
case 119:
case 120:
case 121:
case 122:
case 123:
case 124:
case 125:
case 126: { // 41
assert(p[1] < kMaxVars);
assert(p[2] < kMaxVars);
arithOp(p[0] - 117, &_mstVars[p[1]], _mstVars[p[2]]);
if (p[1] == 31 && _mstVars[31] > 0) {
_mstTickDelay = _mstVars[31];
}
}
break;
case 127:
case 128:
case 129:
case 130:
case 131:
case 132:
case 133:
case 134:
case 135:
case 136: { // 42
MonsterObject1 *m = 0;
if (t->monster2) {
m = t->monster2->monster1;
} else {
m = t->monster1;
}
if (m) {
assert(p[1] < kMaxLocals);
assert(p[2] < kMaxVars);
arithOp(p[0] - 127, &m->localVars[p[1]], _mstVars[p[2]]);
}
}
break;
case 137:
case 138:
case 139:
case 140:
case 141:
case 142:
case 143:
case 144:
case 145:
case 146: { // 43
const int num = p[2];
assert(p[1] < kMaxLocals);
arithOp(p[0] - 137, &t->localVars[p[1]], getTaskOtherVar(num, t));
}
break;
case 147:
case 148:
case 149:
case 150:
case 151:
case 152:
case 153:
case 154:
case 155:
case 156: { // 44
const int num = p[2];
assert(p[1] < kMaxVars);
arithOp(p[0] - 147, &_mstVars[p[1]], getTaskOtherVar(num, t));
if (p[1] == 31 && _mstVars[31] > 0) {
_mstTickDelay = _mstVars[31];
}
}
break;
case 157:
case 158:
case 159:
case 160:
case 161:
case 162:
case 163:
case 164:
case 165:
case 166: { // 45
MonsterObject1 *m = 0;
if (t->monster2) {
m = t->monster2->monster1;
} else {
m = t->monster1;
}
if (m) {
const int num = p[2];
assert(p[1] < kMaxLocals);
arithOp(p[0] - 157, &m->localVars[p[1]], getTaskOtherVar(num, t));
}
}
break;
case 167:
case 168:
case 169:
case 170:
case 171:
case 172:
case 173:
case 174:
case 175:
case 176: { // 46
const int16_t num = READ_LE_UINT16(p + 2);
assert(p[1] < kMaxLocals);
arithOp(p[0] - 167, &t->localVars[p[1]], num);
}
break;
case 177:
case 178:
case 179:
case 180:
case 181:
case 182:
case 183:
case 184:
case 185:
case 186: { // 47
const int16_t num = READ_LE_UINT16(p + 2);
assert(p[1] < kMaxVars);
arithOp(p[0] - 177, &_mstVars[p[1]], num);
if (p[1] == 31 && _mstVars[31] > 0) {
_mstTickDelay = _mstVars[31];
}
}
break;
case 187:
case 188:
case 189:
case 190:
case 191:
case 192:
case 193:
case 194:
case 195:
case 196: { // 48 - arith_monster_var_imm
MonsterObject1 *m = 0;
if (t->monster2) {
m = t->monster2->monster1;
} else {
m = t->monster1;
}
if (m) {
const int16_t num = READ_LE_UINT16(p + 2);
assert(p[1] < kMaxLocals);
arithOp(p[0] - 187, &m->localVars[p[1]], num);
}
}
break;
case 197: // 49
if (t->monster1) {
const int num = READ_LE_UINT16(p + 2);
const MstOp197Data *op197Data = &_res->_mstOp197Data[num];
const uint32_t mask = op197Data->maskVars;
int a = getTaskVar(t, op197Data->unk0, (mask >> 16) & 15); // var1C
int b = getTaskVar(t, op197Data->unk2, (mask >> 12) & 15); // x2
int c = getTaskVar(t, op197Data->unk4, (mask >> 8) & 15); // var14
int d = getTaskVar(t, op197Data->unk6, (mask >> 4) & 15);
int e = getTaskVar(t, op197Data->unkE, mask & 15);
const int screenNum = CLIP(e, -4, _res->_mstHdr.screensCount - 1);
ret = mstOp49_setMovingBounds(a, b, c, d, screenNum, t, num);
}
break;
case 198: { // 50 - call_task
Task *child = findFreeTask();
if (child) {
t->codeData = p + 4;
memcpy(child, t, sizeof(Task));
t->child = child;
const uint16_t num = READ_LE_UINT16(p + 2);
const uint32_t codeData = _res->_mstUnk60[num];
assert(codeData != kNone);
p = _res->_mstCodeData + codeData * 4;
t->codeData = p;
t->state &= ~2;
p -= 4;
}
}
break;
case 199: // 51 - stop_monster
mstTaskStopMonsterObject1(t);
return 0;
case 200: // 52 - stop_monster_action
if (t->monster1 && t->monster1->action) {
mstOp52();
return 1;
}
mstOp52();
break;
case 201: { // 53 - start_monster_action
const int num = READ_LE_UINT16(p + 2);
mstOp53(&_res->_mstMonsterActionData[num]);
}
break;
case 202: // 54 - continue_monster_action
mstOp54();
break;
case 203: // 55 - monster_attack
// _mstCurrentMonster1 = t->monster1;
if (t->monster1) {
const int num = READ_LE_UINT16(p + 2);
if (mstCollidesByFlags(t->monster1, _res->_mstOp240Data[num].flags)) {
t->codeData = p + 4;
mstTaskAttack(t, _res->_mstOp240Data[num].codeData, 0x10);
t->state &= ~2;
p = t->codeData - 4;
}
}
break;
case 204: // 56 - special_action
ret = mstOp56_specialAction(t, p[1], READ_LE_UINT16(p + 2));
break;
case 207:
case 208:
case 209: // 79
break;
case 210: // 57 - add_worm
{
MonsterObject1 *m = t->monster1;
mstOp57_addWormHoleSprite(m->xPos + (int8_t)p[2], m->yPos + (int8_t)p[3], m->o16->screenNum);
}
break;
case 211: // 58 - add_lvl_object
mstOp58_addLvlObject(t, READ_LE_UINT16(p + 2));
break;
case 212: { // 59
LvlObject *o = 0;
if (t->monster2) {
o = t->monster2->o;
} else if (t->monster1) {
o = t->monster1->o16;
} else {
break;
}
assert(o);
int xPos = o->xPos + o->posTable[6].x;
int yPos = o->yPos + o->posTable[6].y;
const uint16_t flags1 = o->flags1;
if (flags1 & 0x10) {
xPos -= (int8_t)p[2];
} else {
xPos += (int8_t)p[2];
}
if (flags1 & 0x20) {
yPos -= (int8_t)p[3];
} else {
yPos += (int8_t)p[3];
}
int dirMask = 0;
if ((t->monster1 && (t->monster1->monsterInfos[944] == 10 || t->monster1->monsterInfos[944] == 25)) || (t->monster2 && (t->monster2->monster2Info->type == 10 || t->monster2->monster2Info->type == 25))) {
int dx = o->posTable[6].x - o->posTable[7].x;
int dy = o->posTable[6].y - o->posTable[7].y;
if (dx >= 8) {
dirMask = 2;
} else if (dx < -8) {
dirMask = 8;
}
if (dy >= 8) {
dirMask |= 4;
} else if (dy < -8) {
dirMask |= 1;
}
} else {
dirMask = ((flags1 & 0x10) != 0) ? 8 : 0;
}
if (p[1] == 255) {
int type = 0;
switch (dirMask) {
case 1:
type = 6;
break;
case 3:
type = 3;
break;
case 4:
type = 7;
break;
case 6:
type = 4;
break;
case 8:
type = 5;
break;
case 9:
type = 1;
break;
case 12:
type = 2;
break;
}
mstOp59_addShootSpecialPowers(xPos, yPos, o->screenNum, type, (o->flags2 + 1) & 0xDFFF);
} else {
int type = 0;
switch (dirMask) {
case 1:
type = 6;
break;
case 3:
type = 3;
break;
case 4:
type = 7;
break;
case 6:
type = 4;
break;
case 8:
type = 5;
break;
case 9:
type = 1;
break;
case 12:
type = 2;
break;
}
mstOp59_addShootFireball(xPos, yPos, o->screenNum, p[1], type, (o->flags2 + 1) & 0xDFFF);
}
}
break;
case 213: { // 60 - monster_set_action_direction
LvlObject *o = 0;
if (t->monster2) {
o = t->monster2->o;
} else if (t->monster1) {
o = t->monster1->o16;
}
if (o) {
o->actionKeyMask = getTaskVar(t, p[2], p[1] >> 4);
o->directionKeyMask = getTaskVar(t, p[3], p[1] & 15);
}
}
break;
case 214: { // 61 - reset_monster_energy
MonsterObject1 *m = t->monster1;
if (m) {
m->flagsA5 &= ~0xC0;
m->localVars[7] = m->behaviorState->energy;
}
}
break;
case 215: { // 62
if (_m43Num3 != -1) {
assert(_m43Num3 < _res->_mstHdr.monsterActionIndexDataCount);
shuffleMstMonsterActionIndex(&_res->_mstMonsterActionIndexData[_m43Num3]);
}
_mstOp54Counter = 0;
}
break;
case 217: { // 64
const int16_t num = READ_LE_UINT16(p + 2);
if (_m43Num3 != num) {
_m43Num3 = num;
assert(num >= 0 && num < _res->_mstHdr.monsterActionIndexDataCount);
shuffleMstMonsterActionIndex(&_res->_mstMonsterActionIndexData[num]);
_mstOp54Counter = 0;
}
}
break;
case 218: { // 65
const int16_t num = READ_LE_UINT16(p + 2);
if (num != _m43Num1) {
_m43Num1 = num;
_m43Num2 = num;
assert(num >= 0 && num < _res->_mstHdr.monsterActionIndexDataCount);
shuffleMstMonsterActionIndex(&_res->_mstMonsterActionIndexData[num]);
}
}
break;
case 220:
case 221:
case 222:
case 223:
case 224:
case 225: { // 67 - add_monster
const int num = READ_LE_UINT16(p + 2);
MstOp223Data *m = &_res->_mstOp223Data[num];
const int mask = m->maskVars; // var8
int a = getTaskVar(t, m->indexVar1, (mask >> 16) & 15); // var1C
int b = getTaskVar(t, m->indexVar2, (mask >> 12) & 15); // var20
int c = getTaskVar(t, m->indexVar3, (mask >> 8) & 15); // var14, vb
int d = getTaskVar(t, m->indexVar4, (mask >> 4) & 15);
int e = getTaskVar(t, m->indexVar5, mask & 15);
if (a > b) {
SWAP(a, b);
}
if (c > d) {
SWAP(c, d);
}
LvlObject *o = 0;
if (t->monster2) {
o = t->monster2->o;
} else if (t->monster1) {
o = t->monster1->o16;
}
if (e <= -2 && o) {
if (o->flags1 & 0x10) {
const int x1 = a;
const int x2 = b;
a = o->xPos - x2;
b = o->xPos - x1;
} else {
a += o->xPos;
b += o->xPos;
}
c += o->yPos;
d += o->yPos;
if (e < -2) {
a += o->posTable[6].x;
b += o->posTable[6].x;
c += o->posTable[6].y;
d += o->posTable[6].y;
} else {
a += o->posTable[7].x;
b += o->posTable[7].x;
c += o->posTable[7].y;
d += o->posTable[7].y;
}
e = o->screenNum;
}
e = CLIP(e, -1, _res->_mstHdr.screensCount - 1);
if (p[0] == 224) {
_mstOp67_type = m->unk8;
_mstOp67_flags1 = m->unk9;
_mstOp67_unk = m->unkC;
_mstOp67_x1 = a;
_mstOp67_x2 = b;
_mstOp67_y1 = c;
_mstOp67_y2 = d;
_mstOp67_screenNum = e;
break;
} else if (p[0] == 225) {
_mstOp68_type = m->unk8;
_mstOp68_arg9 = m->unk9;
_mstOp68_flags1 = m->unkC;
_mstOp68_x1 = a;
_mstOp68_x2 = b;
_mstOp68_y1 = c;
_mstOp68_y2 = d;
_mstOp68_screenNum = e;
break;
} else {
t->flags |= 0x80;
if (p[0] == 222 || p[0] == 220) {
if (e == -1) {
if (a >= -_mstAndyScreenPosX && a <= 255 - _mstAndyScreenPosX) {
break;
}
} else if (e == _currentScreen) {
break;
}
}
}
mstOp67_addMonster(t, a, b, c, d, e, m->unk8, m->unk9, m->unkC, m->unkB, 0, m->unkE);
}
break;
case 226: { // 68 - add_monster_group
const int num = READ_LE_UINT16(p + 2);
const MstOp226Data *m226Data = &_res->_mstOp226Data[num];
int xPos = _res->_mstPointOffsets[_currentScreen].xOffset;
int yPos = _res->_mstPointOffsets[_currentScreen].yOffset;
int countRight = 0; // var1C
int countLeft = 0; // var8
int xOffset = m226Data->unk4 * 256;
for (int i = 0; i < kMaxMonsterObjects1; ++i) {
MonsterObject1 *m = &_monsterObjects1Table[i];
if (!m->m46) {
continue;
}
if (m->monsterInfos[944] != _res->_mstMonsterInfos[m226Data->unk0 * kMonsterInfoDataSize + 944]) {
continue;
}
if (!rect_contains(xPos - xOffset, yPos, xPos + xOffset + 256, yPos + 192, m->xMstPos, m->yMstPos)) {
continue;
}
if (_mstAndyLevelPosX > m->xMstPos) {
++countLeft;
} else {
++countRight;
}
}
t->flags |= 0x80;
const int total = countRight + countLeft;
if (total >= m226Data->unk3) {
break;
}
int vc = m226Data->unk3 - total;
int countType1 = m226Data->unk1;
if (countLeft >= countType1) {
countType1 = 0;
} else {
countType1 -= countLeft;
}
int countType2 = m226Data->unk2;
if (countRight >= countType2) {
countType2 = 0;
} else {
countType2 -= countRight;
}
if (countType1 != 0) {
if (_mstOp67_screenNum < 0) {
if (_mstOp67_x2 >= -_mstAndyScreenPosX && _mstOp67_x1 <= 255 - _mstAndyScreenPosX) {
countType1 = 0;
}
} else if (_mstOp67_screenNum == _currentScreen) {
countType1 = 0;
}
}
if (countType2 != 0) {
if (_mstOp68_screenNum < 0) {
if (_mstOp68_x2 >= -_mstAndyScreenPosX && _mstOp68_x1 <= 255 -_mstAndyScreenPosX) {
countType2 = 0;
}
} else if (_mstOp68_screenNum == _currentScreen) {
countType2 = 0;
}
}
if (countType1 != 0 || countType2 != 0) {
mstOp68_addMonsterGroup(t, _res->_mstMonsterInfos + m226Data->unk0 * kMonsterInfoDataSize, countType1, countType2, vc, m226Data->unk6);
}
}
break;
case 227: { // 69 - compare_vars
const int num = READ_LE_UINT16(p + 2);
assert(num < _res->_mstHdr.op227DataCount);
const MstOp227Data *m = &_res->_mstOp227Data[num];
const int a = getTaskVar(t, m->indexVar1, m->maskVars & 15);
const int b = getTaskVar(t, m->indexVar2, m->maskVars >> 4);
if (compareOp(m->compare, a, b)) {
assert(m->codeData < _res->_mstHdr.codeSize);
p = _res->_mstCodeData + m->codeData * 4 - 4;
}
}
break;
case 228: { // 70 - compare_flags
const int num = READ_LE_UINT16(p + 2);
assert(num < _res->_mstHdr.op227DataCount);
const MstOp227Data *m = &_res->_mstOp227Data[num];
const int a = getTaskFlag(t, m->indexVar1, m->maskVars & 15);
const int b = getTaskFlag(t, m->indexVar2, m->maskVars >> 4);
if (compareOp(m->compare, a, b)) {
assert(m->codeData < _res->_mstHdr.codeSize);
p = _res->_mstCodeData + m->codeData * 4 - 4;
}
}
break;
case 231:
case 232: { // 71 - compare_flags_monster
const int num = READ_LE_UINT16(p + 2);
const MstOp234Data *m = &_res->_mstOp234Data[num];
const int a = getTaskFlag(t, m->indexVar1, m->maskVars & 15);
const int b = getTaskFlag(t, m->indexVar2, m->maskVars >> 4);
if (compareOp(m->compare, a, b)) {
if (p[0] == 231) {
LvlObject *o = 0;
if (t->monster1) {
if ((t->monster1->flagsA6 & 2) == 0) {
o = t->monster1->o16;
}
} else if (t->monster2) {
o = t->monster2->o;
}
if (o) {
o->actionKeyMask = 0;
o->directionKeyMask = 0;
}
t->arg2 = num;
t->run = &Game::mstTask_mstOp231;
ret = 1;
}
} else {
if (p[0] == 232) {
LvlObject *o = 0;
if (t->monster1) {
if ((t->monster1->flagsA6 & 2) == 0) {
o = t->monster1->o16;
}
} else if (t->monster2) {
o = t->monster2->o;
}
if (o) {
o->actionKeyMask = 0;
o->directionKeyMask = 0;
}
t->arg2 = num;
t->run = &Game::mstTask_mstOp232;
ret = 1;
}
}
}
break;
case 233:
case 234: { // 72 - compare_vars_monster
const int num = READ_LE_UINT16(p + 2);
const MstOp234Data *m = &_res->_mstOp234Data[num];
const int a = getTaskVar(t, m->indexVar1, m->maskVars & 15);
const int b = getTaskVar(t, m->indexVar2, m->maskVars >> 4);
if (compareOp(m->compare, a, b)) {
if (p[0] == 233) {
LvlObject *o = 0;
if (t->monster1) {
if ((t->monster1->flagsA6 & 2) == 0) {
o = t->monster1->o16;
}
} else if (t->monster2) {
o = t->monster2->o;
}
if (o) {
o->actionKeyMask = 0;
o->directionKeyMask = 0;
}
t->arg2 = num;
t->run = &Game::mstTask_mstOp233;
ret = 1;
}
} else {
if (p[0] == 234) {
LvlObject *o = 0;
if (t->monster1) {
if ((t->monster1->flagsA6 & 2) == 0) {
o = t->monster1->o16;
}
} else if (t->monster2) {
o = t->monster2->o;
}
if (o) {
o->actionKeyMask = 0;
o->directionKeyMask = 0;
}
t->arg2 = num;
t->run = &Game::mstTask_mstOp234;
ret = 1;
}
}
}
break;
case 237: // 74 - remove_monster_task
if (t->monster1) {
if (!t->monster2) {
mstRemoveMonsterObject1(t, &_monsterObjects1TasksList);
return 1;
}
mstRemoveMonsterObject2(t, &_monsterObjects2TasksList);
return 1;
} else {
if (t->monster2) {
mstRemoveMonsterObject2(t, &_monsterObjects2TasksList);
return 1;
}
}
break;
case 238: { // 75 - jmp
const int i = READ_LE_UINT16(p + 2);
const uint32_t codeData = _res->_mstUnk60[i];
assert(codeData != kNone);
p = _res->_mstCodeData + codeData * 4;
t->codeData = p;
p -= 4;
}
break;
case 239: { // 76 - create_task
const int i = READ_LE_UINT16(p + 2);
const uint32_t codeData = _res->_mstUnk60[i];
assert(codeData != kNone);
createTask(_res->_mstCodeData + codeData * 4);
}
break;
case 240: { // 77 - update_task
const int num = READ_LE_UINT16(p + 2);
MstOp240Data *m = &_res->_mstOp240Data[num];
const uint8_t *codeData = (m->codeData == kNone) ? 0 : (_res->_mstCodeData + m->codeData * 4);
updateTask(t, m->flags, codeData);
}
break;
case 242: // 78 - terminate
debug(kDebug_MONSTER, "child %p monster1 %p monster2 %p", t->child, t->monster1, t->monster2);
if (t->child) {
Task *child = t->child;
child->prevPtr = t->prevPtr;
child->nextPtr = t->nextPtr;
memcpy(t, child, sizeof(Task));
t->child = 0;
t->state &= ~2;
child->codeData = 0;
MonsterObject1 *m = t->monster1;
if (m) {
m->flagsA5 &= ~0x70;
if ((m->flagsA5 & 8) != 0 && !m->action) {
mstTaskResetMonster1Direction(t);
return 1;
}
}
return 0;
} else if (t->monster1) {
MonsterObject1 *m = t->monster1;
if (m->flagsA6 & 4) {
return 1;
}
if ((m->flagsA5 & 0x80) == 0) {
if ((m->flagsA5 & 8) == 0) {
m->flags48 |= 8;
if ((m->flagsA5 & 0x70) != 0) {
m->flagsA5 &= ~0x70;
switch (m->flagsA5 & 7) {
case 1:
case 2: {
const uint32_t codeData = mstMonster1GetNextWalkCode(m);
assert(codeData != kNone);
resetTask(t, _res->_mstCodeData + codeData * 4);
t->state &= ~2;
p = t->codeData - 4;
}
break;
case 5:
return mstTaskInitMonster1Type1(t);
case 6:
return mstTaskInitMonster1Type2(t, 1);
}
} else {
const uint32_t codeData = mstMonster1GetNextWalkCode(m);
assert(codeData != kNone);
resetTask(t, _res->_mstCodeData + codeData * 4);
t->state &= ~2;
const int counter = m->executeCounter;
m->executeCounter = _executeMstLogicCounter;
p = t->codeData - 4;
if (m->executeCounter == counter) {
if ((m->flagsA6 & 2) == 0) {
if (m->o16) {
m->o16->actionKeyMask = 0;
m->o16->directionKeyMask = 0;
}
}
ret = 1;
}
}
} else {
if (m->action) {
mstMonster1ClearChasingMonster(m);
}
m->flagsA5 = (m->flagsA5 & ~0xF) | 6;
return mstTaskInitMonster1Type2(t, 1);
}
} else if ((m->flagsA5 & 8) != 0) {
m->flagsA5 &= ~8;
const uint32_t codeData = m->behaviorState->codeData;
if (codeData != kNone) {
resetTask(t, _res->_mstCodeData + codeData * 4);
return 0;
} else {
m->o16->actionKeyMask = 7;
m->o16->directionKeyMask = 0;
t->run = &Game::mstTask_idle;
return 1;
}
} else {
t->run = &Game::mstTask_idle;
return 1;
}
} else if (t->monster2) {
mstRemoveMonsterObject2(t, &_monsterObjects2TasksList);
ret = 1;
} else {
if ((t->state & 1) != 0 && _mstVars[31] == 0) {
_mstVars[31] = _mstTickDelay;
}
removeTask(&_tasksList, t);
ret = 1;
}
break;
default:
warning("Unhandled opcode %d in mstTask_main", *p);
break;
}
p += 4;
if ((t->state & 2) != 0) {
t->state &= ~2;
p = t->codeData;
}
++_runTaskOpcodesCount;
if (_runTaskOpcodesCount >= 128) { // prevent infinite loop
warning("Stopping task %p, counter %d", t, _runTaskOpcodesCount);
break;
}
} while (ret == 0);
if (t->codeData) {
t->codeData = p;
}
return 1;
}
void Game::mstOp26_removeMstTaskScreen(Task **tasksList, int screenNum) {
Task *current = *tasksList;
while (current) {
MonsterObject1 *m = current->monster1;
Task *next = current->nextPtr;
if (m && m->o16->screenNum == screenNum) {
if (_mstActionNum != -1 && (m->flagsA5 & 8) != 0 && m->action) {
mstMonster1ClearChasingMonster(m);
}
if (m->monsterInfos[946] & 4) {
mstBoundingBoxClear(m, 0);
mstBoundingBoxClear(m, 1);
}
mstMonster1ResetData(m);
removeLvlObject2(m->o16);
removeTask(tasksList, current);
} else {
MonsterObject2 *mo = current->monster2;
if (mo && mo->o->screenNum == screenNum) {
mo->monster2Info = 0;
mo->o->dataPtr = 0;
removeLvlObject2(mo->o);
removeTask(tasksList, current);
}
}
current = next;
}
}
void Game::mstOp27_removeMstTaskScreenType(Task **tasksList, int screenNum, int type) {
Task *current = *tasksList;
while (current) {
MonsterObject1 *m = current->monster1;
Task *next = current->nextPtr;
if (m && m->o16->screenNum == screenNum && (m->monsterInfos[944] & 0x7F) == type) {
if (_mstActionNum != -1 && (m->flagsA5 & 8) != 0 && m->action) {
mstMonster1ClearChasingMonster(m);
}
if (m->monsterInfos[946] & 4) {
mstBoundingBoxClear(m, 0);
mstBoundingBoxClear(m, 1);
}
mstMonster1ResetData(m);
removeLvlObject2(m->o16);
removeTask(tasksList, current);
} else {
MonsterObject2 *mo = current->monster2;
if (mo && mo->o->screenNum == screenNum && (mo->monster2Info->type & 0x7F) == type) {
mo->monster2Info = 0;
mo->o->dataPtr = 0;
removeLvlObject2(mo->o);
removeTask(tasksList, current);
}
}
current = next;
}
}
int Game::mstOp49_setMovingBounds(int a, int b, int c, int d, int screen, Task *t, int num) {
debug(kDebug_MONSTER, "mstOp49 %d %d %d %d %d %d", a, b, c, d, screen, num);
MonsterObject1 *m = t->monster1;
const MstOp197Data *op197Data = &_res->_mstOp197Data[num];
MstMovingBounds *m49 = &_res->_mstMovingBoundsData[op197Data->indexUnk49];
m->m49 = m49;
m->indexUnk49Unk1 = op197Data->unkF;
if (m->indexUnk49Unk1 < 0) {
if (m49->indexDataCount == 0) {
m->indexUnk49Unk1 = 0;
} else {
m->indexUnk49Unk1 = m49->indexData[_rnd.getMstNextNumber(m->rnd_m49)];
}
}
assert((uint32_t)m->indexUnk49Unk1 < m49->count1);
m->m49Unk1 = &m49->data1[m->indexUnk49Unk1];
m->goalScreenNum = screen;
if (a > b) {
m->goalDistance_x1 = b;
m->goalDistance_x2 = a;
} else {
m->goalDistance_x1 = a;
m->goalDistance_x2 = b;
}
if (c > d) {
m->goalDistance_y1 = d;
m->goalDistance_y2 = c;
} else {
m->goalDistance_y1 = c;
m->goalDistance_y2 = d;
}
switch (screen + 4) {
case 1: { // 0xFD
m->unkE4 = 255;
const uint8_t _al = m->monsterInfos[946];
if (_al & 4) {
t->run = &Game::mstTask_monsterWait10;
} else if (_al & 2) {
t->run = &Game::mstTask_monsterWait8;
} else {
t->run = &Game::mstTask_monsterWait6;
}
if (m->goalDistance_x2 <= 0) {
m->goalScreenNum = kNoScreen;
if (m->xMstPos < _mstAndyLevelPosX) {
m->goalDistance_x1 = -m->goalDistance_x2;
m->goalDistance_x2 = -m->goalDistance_x1;
}
}
if ((_al & 2) != 0 && m->goalDistance_y2 <= 0) {
m->goalScreenNum = kNoScreen;
if (m->yMstPos < _mstAndyLevelPosY) {
m->goalDistance_y1 = -m->goalDistance_y2;
m->goalDistance_y2 = -m->goalDistance_y1;
}
}
}
break;
case 0: { // 0xFC
const uint8_t _al = m->unkF8;
if (_al & 8) {
m->goalDistance_x1 = -b;
m->goalDistance_x2 = -a;
} else if (_al & 2) {
m->goalDistance_x1 = a;
m->goalDistance_x2 = b;
} else {
m->goalDistance_x1 = 0;
m->goalDistance_x2 = 0;
}
if (_al & 1) {
m->goalDistance_y1 = -d;
m->goalDistance_y2 = -c;
} else if (_al & 4) {
m->goalDistance_y1 = c;
m->goalDistance_y2 = d;
} else {
m->goalDistance_y1 = 0;
m->goalDistance_y2 = 0;
}
}
// fall-through
case 2: // 0xFE
if (m->monsterInfos[946] & 4) {
t->run = &Game::mstTask_monsterWait9;
} else if (m->monsterInfos[946] & 2) {
t->run = &Game::mstTask_monsterWait7;
} else {
t->run = &Game::mstTask_monsterWait5;
}
m->goalDistance_x1 += m->xMstPos;
m->goalDistance_x2 += m->xMstPos;
m->goalDistance_y1 += m->yMstPos;
m->goalDistance_y2 += m->yMstPos;
break;
case 3: // 0xFF
if (m->monsterInfos[946] & 4) {
t->run = &Game::mstTask_monsterWait10;
} else if (m->monsterInfos[946] & 2) {
t->run = &Game::mstTask_monsterWait8;
} else {
t->run = &Game::mstTask_monsterWait6;
}
break;
default:
if (m->monsterInfos[946] & 4) {
t->run = &Game::mstTask_monsterWait9;
} else if (m->monsterInfos[946] & 2) {
t->run = &Game::mstTask_monsterWait7;
} else {
t->run = &Game::mstTask_monsterWait5;
}
m->goalDistance_x1 += _res->_mstPointOffsets[screen].xOffset;
m->goalDistance_x2 += _res->_mstPointOffsets[screen].xOffset;
m->goalDistance_y1 += _res->_mstPointOffsets[screen].yOffset;
m->goalDistance_y2 += _res->_mstPointOffsets[screen].yOffset;
break;
}
m->goalPos_x1 = m->goalDistance_x1;
m->goalPos_x2 = m->goalDistance_x2;
m->goalPos_y1 = m->goalDistance_y1;
m->goalPos_y2 = m->goalDistance_y2;
m->walkBoxNum = 0xFF;
m->unkC0 = -1;
m->unkBC = -1;
m->targetDirectionMask = 0xFF;
const uint8_t *ptr = _res->_mstMonsterInfos + m->m49Unk1->offsetMonsterInfo;
if ((ptr[2] & kDirectionKeyMaskVertical) == 0) {
m->goalDistance_y1 = m->goalPos_y1 = m->goalDistance_y2 = m->goalPos_y2 = m->yMstPos;
}
if ((ptr[2] & kDirectionKeyMaskHorizontal) == 0) {
m->goalDistance_x1 = m->goalPos_x1 = m->goalDistance_x2 = m->goalPos_x2 = m->xMstPos;
}
if (m->monsterInfos[946] & 4) {
m->unkAB = 0xFF;
m->targetLevelPos_x = -1;
m->targetLevelPos_y = -1;
mstBoundingBoxClear(m, 1);
}
uint8_t _dl = m->goalScreenNum;
if (_dl != 0xFC && (m->flagsA5 & 8) != 0 && (t->flags & 0x20) != 0 && m->action) {
if (t->run != &Game::mstTask_monsterWait6 && t->run != &Game::mstTask_monsterWait8 && t->run != &Game::mstTask_monsterWait10) {
if ((_dl == 0xFE && m->o16->screenNum != _currentScreen) || (_dl != 0xFE && _dl != _currentScreen)) {
if (m->monsterInfos[946] & 4) {
mstBoundingBoxClear(m, 1);
}
return mstTaskStopMonsterObject1(t);
}
} else {
int x1, x2;
const int x = MIN(_mstAndyScreenPosX, 255);
if (_mstAndyScreenPosX < 0) {
x1 = x;
x2 = x + 255;
} else {
x1 = -x;
x2 = 255 - x;
}
const int y = MIN(_mstAndyScreenPosY, 191);
int y1, y2;
if (_mstAndyScreenPosY < 0) {
y1 = y;
y2 = y + 191;
} else {
y1 = -y;
y2 = 191 - y;
}
int vd, vf;
if (_dl == 0xFD && m->xMstPos < _mstAndyLevelPosX) {
vd = -m->goalDistance_x2;
vf = -m->goalDistance_x1;
} else {
vd = m->goalDistance_x1;
vf = m->goalDistance_x2;
}
uint8_t _bl = m->monsterInfos[946] & 2;
int va, vc;
if (_bl != 0 && _dl == 0xFD && m->yMstPos < _mstAndyLevelPosY) {
va = -m->goalDistance_y2;
vc = -m->goalDistance_y1;
} else {
va = m->goalDistance_y1;
vc = m->goalDistance_y2;
}
if (vd < x1 || vf > x2 || (_bl != 0 && (va < y1 || vc > y2))) {
if ((m->monsterInfos[946] & 4) != 0) {
mstBoundingBoxClear(m, 1);
}
return mstTaskStopMonsterObject1(t);
}
}
}
const uint8_t *p = _res->_mstMonsterInfos + m->m49Unk1->offsetMonsterInfo;
if ((m->monsterInfos[946] & 4) != 0 && p[0xE] != 0 && m->bboxNum[0] == 0xFF) {
const int x1 = m->xMstPos + (int8_t)p[0xC];
const int y1 = m->yMstPos + (int8_t)p[0xD];
const int x2 = x1 + p[0xE] - 1;
const int y2 = y1 + p[0xF] - 1;
if (mstBoundingBoxCollides2(m->monster1Index, x1, y1, x2, y2) != 0) {
m->indexUnk49Unk1 = 0;
m->m49Unk1 = &m->m49->data1[0];
m->unkAB = 0xFF;
m->targetLevelPos_x = -1;
m->targetLevelPos_y = -1;
mstBoundingBoxClear(m, 1);
if (p[0xE] != 0) {
t->flags |= 0x80;
mstTaskResetMonster1WalkPath(t);
return 0;
}
} else {
m->bboxNum[0] = mstBoundingBoxUpdate(0xFF, m->monster1Index, x1, y1, x2, y2);
}
}
t->flags &= ~0x80;
if (m->monsterInfos[946] & 2) {
if (t->run == &Game::mstTask_monsterWait10) {
mstMonster1UpdateGoalPosition(m);
mstMonster1MoveTowardsGoal2(m);
} else if (t->run == &Game::mstTask_monsterWait8) {
mstMonster1UpdateGoalPosition(m);
mstMonster1MoveTowardsGoal1(m);
} else if (t->run == &Game::mstTask_monsterWait9) {
mstMonster1MoveTowardsGoal2(m);
} else { // &Game::mstTask_monsterWait7
mstMonster1MoveTowardsGoal1(m);
}
const MstMovingBoundsUnk1 *m49Unk1 = m->m49Unk1;
uint8_t xDist, yDist;
if (_mstLut1[m->goalDirectionMask] & 1) {
xDist = m49Unk1->unkE;
yDist = m49Unk1->unkF;
} else {
xDist = m49Unk1->unkC;
yDist = m49Unk1->unkD;
}
if (_xMstPos2 < xDist && _yMstPos2 < yDist && !mstMonster1TestGoalDirection(m)) {
} else {
if (m->goalDirectionMask) {
return (this->*(t->run))(t);
}
}
} else {
if (t->run == &Game::mstTask_monsterWait6) {
if (m->goalScreenNum == 0xFD && m->xMstPos < _mstAndyLevelPosX) {
m->goalPos_x1 = _mstAndyLevelPosX - m->goalDistance_x2;
m->goalPos_x2 = _mstAndyLevelPosX - m->goalDistance_x1;
} else {
m->goalPos_x1 = _mstAndyLevelPosX + m->goalDistance_x1;
m->goalPos_x2 = _mstAndyLevelPosX + m->goalDistance_x2;
}
}
mstMonster1SetGoalHorizontal(m);
bool flag = false;
while (_xMstPos2 < m->m49Unk1->unkC) {
if (--m->indexUnk49Unk1 >= 0) {
m->m49Unk1 = &m->m49->data1[m->indexUnk49Unk1];
} else {
flag = true;
break;
}
}
if (!flag) {
if (m->goalDirectionMask) {
return (this->*(t->run))(t);
}
}
}
if (m->monsterInfos[946] & 4) {
mstBoundingBoxClear(m, 1);
}
t->flags |= 0x80;
mstTaskResetMonster1WalkPath(t);
return 0;
}
void Game::mstOp52() {
if (_mstActionNum == -1) {
return;
}
MstMonsterAction *m48 = &_res->_mstMonsterActionData[_mstActionNum];
for (int i = 0; i < m48->areaCount; ++i) {
MstMonsterArea *m48Area = &m48->area[i];
const uint8_t num = m48Area->data->monster1Index;
if (num != 0xFF) {
assert(num < kMaxMonsterObjects1);
MonsterObject1 *m = &_monsterObjects1Table[num];
mstMonster1ClearChasingMonster(m);
if ((m->flagsA5 & 0x70) == 0) {
assert(m->task->monster1 == m);
Task *t = m->task;
const int num = m->o16->flags0 & 0xFF;
if (m->monsterInfos[num * 28] != 0) {
if (t->run != &Game::mstTask_monsterWait1 && t->run != &Game::mstTask_monsterWait4 && t->run != &Game::mstTask_monsterWait2 && t->run != &Game::mstTask_monsterWait3 && t->run != &Game::mstTask_monsterWait5 && t->run != &Game::mstTask_monsterWait6 && t->run != &Game::mstTask_monsterWait7 && t->run != &Game::mstTask_monsterWait8 && t->run != &Game::mstTask_monsterWait9 && t->run != &Game::mstTask_monsterWait10) {
m->flagsA5 = (m->flagsA5 & ~0xF) | 6;
mstTaskInitMonster1Type2(m->task, 1);
} else {
m->o16->actionKeyMask = 0;
m->o16->directionKeyMask = 0;
t->run = &Game::mstTask_monsterWait11;
}
} else {
m->flagsA5 = (m->flagsA5 & ~0xF) | 6;
mstTaskInitMonster1Type2(m->task, 1);
}
}
}
}
_mstActionNum = -1;
}
bool Game::mstHasMonsterInRange(const MstMonsterAction *m48, uint8_t flag) {
for (int i = 0; i < 2; ++i) {
for (uint32_t j = 0; j < m48->count[i]; ++j) {
uint32_t a = (i ^ flag); // * 32;
uint32_t n = m48->data1[i][j];
if (_mstCollisionTable[a][n].count < m48->data2[i][j]) {
return false;
}
}
}
uint8_t _op54Data[kMaxMonsterObjects1];
memset(_op54Data, 0, sizeof(_op54Data));
int var24 = 0;
//int var28 = 0;
int vf = 0;
for (int i = 0; i < m48->areaCount; ++i) {
const MstMonsterArea *m12 = &m48->area[i];
assert(m12->count == 1);
MstMonsterAreaAction *m12u4 = m12->data;
if (m12->unk0 != 0) {
uint8_t var1C = m12u4->unk18;
if (var1C != 2) {
vf = var1C;
}
l1:
int var4C = vf;
int var8 = m12u4->xPos;
int vb = var8; // xPos
int var4 = m12u4->yPos;
int vg = var4; // yPos
int va = vf ^ flag;
if (va == 1) {
vb = -vb;
}
debug(kDebug_MONSTER, "mstHasMonsterInRange (unk0!=0) count:%d %d %d [%d,%d] screen:%d", m12->count, vb, vg, _mstPosXmin, _mstPosXmax, m12u4->screenNum);
if (vb >= _mstPosXmin && vb <= _mstPosXmax) {
uint8_t var4D = _res->_mstMonsterInfos[m12u4->unk0 * kMonsterInfoDataSize + 946] & 2;
if (var4D == 0 || (vg >= _mstPosYmin && vg <= _mstPosYmax)) {
MstCollision *varC = &_mstCollisionTable[va][m12u4->unk0];
vb += _mstAndyLevelPosX;
const int xLevelPos = vb;
vg += _mstAndyLevelPosY;
const int yLevelPos = vg;
int minDistY = 0x1000000;
int minDistX = 0x1000000;
int var34 = -1;
int var10 = varC->count;
//MstCollision *var20 = varC;
for (int j = 0; j < var10; ++j) {
MonsterObject1 *m = varC->monster1[j];
if (_op54Data[m->monster1Index] == 0 && (m12u4->screenNum < 0 || m->o16->screenNum == m12u4->screenNum)) {
int ve = yLevelPos - m->yMstPos;
int va = ABS(ve);
int vg = xLevelPos - m->xMstPos;
int vc = ABS(vg);
if (vc > m48->unk0 || va > m48->unk2) {
continue;
}
if ((var8 || var4) && m->monsterInfos[944] != 10 && m->monsterInfos[944] != 16 && m->monsterInfos[944] != 9) {
if (vg <= 0) {
if (m->levelPosBounds_x1 > xLevelPos) {
continue;
}
} else {
if (m->levelPosBounds_x2 < xLevelPos) {
continue;
}
}
if (var4D != 0) { // vertical move
if (ve <= 0) {
if (m->levelPosBounds_y1 > yLevelPos) {
continue;
}
} else {
if (m->levelPosBounds_y2 < yLevelPos) {
continue;
}
}
}
}
if (vc <= minDistX && va <= minDistY) {
minDistY = va;
minDistX = vc;
var34 = j;
}
}
}
if (var34 != -1) {
const uint8_t num = varC->monster1[var34]->monster1Index;
m12u4->monster1Index = num;
_op54Data[num] = 1;
debug(kDebug_MONSTER, "monster %d in range", num);
++var24;
continue;
}
}
}
if (var1C != 2 || var4C == 1) {
return false;
}
vf = 1;
var4C = vf;
goto l1;
}
//++var28;
}
//var28 = vf;
for (int i = vf; i < m48->areaCount; ++i) {
MstMonsterArea *m12 = &m48->area[i];
assert(m12->count == 1);
MstMonsterAreaAction *m12u4 = m12->data;
if (m12->unk0 == 0) {
uint8_t var1C = m12u4->unk18;
m12u4->monster1Index = 0xFF;
int var4C = (var1C == 2) ? 0 : var1C;
int vd = var4C;
l2:
int var4 = m12u4->xPos;
int vb = var4;
int var8 = m12u4->yPos;
int vg = var8;
int va = vd ^ flag;
if (va == 1) {
vb = -vb;
}
debug(kDebug_MONSTER, "mstHasMonsterInRange (unk0==0) count:%d %d %d [%d,%d] screen:%d", m12->count, vb, vg, _mstPosXmin, _mstPosXmax, m12u4->screenNum);
if (vb >= _mstPosXmin && vb <= _mstPosXmax) {
uint8_t var4D = _res->_mstMonsterInfos[m12u4->unk0 * kMonsterInfoDataSize + 946] & 2;
if (var4D == 0 || (vg >= _mstPosYmin && vg <= _mstPosYmax)) {
MstCollision *varC = &_mstCollisionTable[va][m12u4->unk0];
vb += _mstAndyLevelPosX;
const int xLevelPos = vb;
vg += _mstAndyLevelPosY;
const int yLevelPos = vg;
int minDistY = 0x1000000;
int minDistX = 0x1000000;
int var34 = -1;
int var10 = varC->count;
for (int j = 0; j < var10; ++j) {
MonsterObject1 *m = varC->monster1[j];
if (_op54Data[m->monster1Index] == 0 && (m12u4->screenNum < 0 || m->o16->screenNum == m12u4->screenNum)) {
int ve = yLevelPos - m->yMstPos;
int va = ABS(ve);
int vg = xLevelPos - m->xMstPos;
int vc = ABS(vg);
if (vc > m48->unk0 || va > m48->unk2) {
continue;
}
if ((var8 || var4) && m->monsterInfos[944] != 10 && m->monsterInfos[944] != 16 && m->monsterInfos[944] != 9) {
if (vg <= 0) {
if (m->levelPosBounds_x1 > xLevelPos) {
continue;
}
} else {
if (m->levelPosBounds_x2 < xLevelPos) {
continue;
}
}
if (var4D != 0) { // vertical move
if (ve <= 0) {
if (m->levelPosBounds_y1 > yLevelPos) {
continue;
}
} else {
if (m->levelPosBounds_y2 < yLevelPos) {
continue;
}
}
}
}
if (vc <= minDistX && va <= minDistY) {
minDistY = va;
minDistX = vc;
var34 = j;
}
}
}
if (var34 != -1) {
const uint8_t num = varC->monster1[var34]->monster1Index;
m12u4->monster1Index = num;
_op54Data[num] = 1;
debug(kDebug_MONSTER, "monster %d in range", num);
++var24;
continue;
}
}
}
if (var1C == 2 && var4C != 1) {
vd = 1;
var4C = 1;
goto l2;
}
}
//++var28;
}
return var24 != 0;
}
void Game::mstOp53(MstMonsterAction *m) {
if (_mstActionNum != -1) {
return;
}
const int x = MIN(_mstAndyScreenPosX, 255);
if (_mstAndyScreenPosX < 0) {
_mstPosXmin = x;
_mstPosXmax = 255 + x;
} else {
_mstPosXmin = -x;
_mstPosXmax = 255 - x;
}
const int y = MIN(_mstAndyScreenPosY, 191);
if (_mstAndyScreenPosY < 0) {
_mstPosYmin = y;
_mstPosYmax = 191 + y;
} else {
_mstPosYmin = -y;
_mstPosYmax = 191 - y;
}
mstResetCollisionTable();
mstUpdateInRange(m);
}
void Game::mstOp54() {
debug(kDebug_MONSTER, "mstOp54 %d %d %d", _mstActionNum, _m43Num2, _m43Num3);
if (_mstActionNum != -1) {
return;
}
MstMonsterActionIndex *m43 = 0;
if (_mstFlags & 0x20000000) {
if (_m43Num2 == -1) {
return;
}
m43 = &_res->_mstMonsterActionIndexData[_m43Num2];
} else {
if (_m43Num3 == -1) {
return;
}
m43 = &_res->_mstMonsterActionIndexData[_m43Num3];
_m43Num2 = _m43Num1;
}
const int x = MIN(_mstAndyScreenPosX, 255);
if (_mstAndyScreenPosX < 0) {
_mstPosXmin = x;
_mstPosXmax = 255 + x;
} else {
_mstPosXmin = -x;
_mstPosXmax = 255 - x;
}
const int y = MIN(_mstAndyScreenPosY, 191);
if (_mstAndyScreenPosY < 0) {
_mstPosYmin = y;
_mstPosYmax = 191 + y;
} else {
_mstPosYmin = -y;
_mstPosYmax = 191 - y;
}
mstResetCollisionTable();
if (m43->dataCount == 0) {
const uint32_t indexUnk48 = m43->indexUnk48[0];
MstMonsterAction *m48 = &_res->_mstMonsterActionData[indexUnk48];
mstUpdateInRange(m48);
if (_mstActionNum == -1) {
++_mstOp54Counter;
}
if (_mstOp54Counter <= 16) {
return;
}
_mstOp54Counter = 0;
shuffleMstMonsterActionIndex(m43);
} else {
memset(_mstOp54Table, 0, sizeof(_mstOp54Table));
bool var4 = false;
uint32_t i = 0;
for (; i < m43->dataCount; ++i) {
uint8_t num = m43->data[i];
if ((num & 0x80) == 0) {
var4 = true;
if (_mstOp54Table[num] == 0) {
_mstOp54Table[num] = 1;
const uint32_t indexUnk48 = m43->indexUnk48[num];
MstMonsterAction *m48 = &_res->_mstMonsterActionData[indexUnk48];
if (mstUpdateInRange(m48)) {
break;
}
}
}
}
if (_mstActionNum != -1) {
assert(i < m43->dataCount);
m43->data[i] |= 0x80;
} else {
if (var4) {
++_mstOp54Counter;
if (_mstOp54Counter <= 16) {
return;
}
}
_mstOp54Counter = 0;
if (m43->dataCount != 0) {
shuffleMstMonsterActionIndex(m43);
}
}
}
}
static uint8_t getLvlObjectFlag(uint8_t type, const LvlObject *o, const LvlObject *andyObject) {
switch (type) {
case 0:
return 0;
case 1:
return 1;
case 2:
return (o->flags1 >> 4) & 1;
case 3:
return ~(o->flags1 >> 4) & 1;
case 4:
return (andyObject->flags1 >> 4) & 1;
case 5:
return ~(andyObject->flags1 >> 4) & 1;
default:
warning("getLvlObjectFlag unhandled type %d", type);
break;
}
return 0;
}
int Game::mstOp56_specialAction(Task *t, int code, int num) {
assert(num < _res->_mstHdr.op204DataCount);
const MstOp204Data *op204Data = &_res->_mstOp204Data[num];
debug(kDebug_MONSTER, "mstOp56_specialAction code %d", code);
switch (code) {
case 0:
if (!_specialAnimFlag && setAndySpecialAnimation(0x71) != 0) {
_plasmaCannonFlags |= 1;
if (_andyObject->spriteNum == 0) {
_mstCurrentAnim = op204Data->arg0 & 0xFFFF;
} else {
_mstCurrentAnim = op204Data->arg0 >> 16;
}
LvlObject *o = 0;
if (t->monster2) {
o = t->monster2->o;
} else if (t->monster1) {
o = t->monster1->o16;
}
if (op204Data->arg3 != 6 && o) {
LvlObject *tmpObject = t->monster1->o16;
const uint8_t flags = getLvlObjectFlag(op204Data->arg3 & 255, tmpObject, _andyObject);
_specialAnimMask = ((flags & 3) << 4) | (_specialAnimMask & ~0x30);
// _specialAnimScreenNum = tmpObject->screenNum;
_specialAnimLvlObject = tmpObject;
_mstOriginPosX = op204Data->arg1 & 0xFFFF;
_mstOriginPosY = op204Data->arg2 & 0xFFFF;
} else {
_specialAnimMask = merge_bits(_specialAnimMask, _andyObject->flags1, 0x30); // _specialAnimMask ^= (_specialAnimMask ^ _andyObject->flags1) & 0x30;
// _specialAnimScreenNum = _andyObject->screenNum;
_specialAnimLvlObject = _andyObject;
_mstOriginPosX = _andyObject->posTable[3].x - _andyObject->posTable[6].x;
_mstOriginPosY = _andyObject->posTable[3].y - _andyObject->posTable[6].y;
}
_specialAnimFlag = true;
}
if (_mstAndyRectNum != 0xFF) {
_mstBoundingBoxesTable[_mstAndyRectNum].monster1Index = 0xFF;
}
break;
case 1:
if (!_specialAnimFlag) {
break;
}
if (setAndySpecialAnimation(0x61) != 0) {
_plasmaCannonFlags &= ~1;
if (_andyObject->spriteNum == 0) {
_mstCurrentAnim = op204Data->arg0 & 0xFFFF;
} else {
_mstCurrentAnim = op204Data->arg0 >> 16;
}
LvlObject *o = 0;
if (t->monster2) {
o = t->monster2->o;
} else if (t->monster1) {
o = t->monster1->o16;
}
if (op204Data->arg3 != 6 && o) {
LvlObject *tmpObject = t->monster1->o16;
const uint8_t flags = getLvlObjectFlag(op204Data->arg3 & 255, tmpObject, _andyObject);
_specialAnimMask = ((flags & 3) << 4) | (_specialAnimMask & ~0x30);
// _specialAnimScreenNum = tmpObject->screenNum;
_specialAnimLvlObject = tmpObject;
_mstOriginPosX = op204Data->arg1 & 0xFFFF;
_mstOriginPosY = op204Data->arg2 & 0xFFFF;
} else {
_specialAnimMask = merge_bits(_specialAnimMask, _andyObject->flags1, 0x30); // _specialAnimMask ^= (_specialAnimMask ^ _andyObject->flags1) & 0x30;
// _specialAnimScreenNum = _andyObject->screenNum;
_specialAnimLvlObject = _andyObject;
_mstOriginPosX = _andyObject->posTable[3].x - _andyObject->posTable[6].x;
_mstOriginPosY = _andyObject->posTable[3].y - _andyObject->posTable[6].y;
}
_specialAnimFlag = false;
}
_mstAndyRectNum = mstBoundingBoxUpdate(_mstAndyRectNum, 0xFE, _mstAndyLevelPosX, _mstAndyLevelPosY, _mstAndyLevelPosX + _andyObject->width - 1, _mstAndyLevelPosY + _andyObject->height - 1) & 0xFF;
break;
case 2: {
LvlObject *o = t->monster1->o16;
const uint8_t flags = getLvlObjectFlag(op204Data->arg0 & 255, o, _andyObject);
setAndySpecialAnimation(flags | 0x10);
}
break;
case 3:
setAndySpecialAnimation(0x12);
break;
case 4:
setAndySpecialAnimation(0x80);
break;
case 5: // game over, restart level
setAndySpecialAnimation(0xA4);
break;
case 6:
setAndySpecialAnimation(0xA3);
break;
case 7:
setAndySpecialAnimation(0x05);
break;
case 8:
setAndySpecialAnimation(0xA1);
break;
case 9:
setAndySpecialAnimation(0xA2);
break;
case 10:
if (op204Data->arg0 == 1) {
setShakeScreen(2, op204Data->arg1 & 255);
} else if (op204Data->arg0 == 2) {
setShakeScreen(1, op204Data->arg1 & 255);
} else {
setShakeScreen(3, op204Data->arg1 & 255);
}
break;
case 11: {
MonsterObject2 *m = t->monster2;
const int type = op204Data->arg3;
m->x1 = getTaskVar(t, op204Data->arg0, (type >> 0xC) & 15);
m->y1 = getTaskVar(t, op204Data->arg1, (type >> 0x8) & 15);
m->x2 = getTaskVar(t, op204Data->arg2, (type >> 0x4) & 15);
m->y2 = getTaskVar(t, type >> 16 , type & 15);
}
break;
case 12: {
const int type1 = ((op204Data->arg3 >> 4) & 15);
const int hint = getTaskVar(t, op204Data->arg0, type1);
const int type2 = (op204Data->arg3 & 15);
const int pause = getTaskVar(t, op204Data->arg1, type2);
displayHintScreen(hint, pause);
}
break;
case 13:
case 14:
case 22:
case 23:
case 24:
case 25: {
const int mask = op204Data->arg3;
int xPos = getTaskVar(t, op204Data->arg0, (mask >> 8) & 15);
int yPos = getTaskVar(t, op204Data->arg1, (mask >> 4) & 15);
int screenNum = getTaskVar(t, op204Data->arg2, mask & 15);
LvlObject *o = 0;
if (t->monster2) {
o = t->monster2->o;
} else if (t->monster1) {
o = t->monster1->o16;
}
if (screenNum < 0) {
if (screenNum == -2) {
if (!o) {
break;
}
screenNum = o->screenNum;
if (t->monster2) {
xPos += t->monster2->xMstPos;
yPos += t->monster2->yMstPos;
} else if (t->monster1) {
xPos += t->monster1->xMstPos;
yPos += t->monster1->yMstPos;
} else {
break;
}
} else if (screenNum == -1) {
xPos += _mstAndyLevelPosX;
yPos += _mstAndyLevelPosY;
screenNum = _currentScreen;
} else {
if (!o) {
break;
}
xPos += o->posTable[6].x - o->posTable[7].x;
yPos += o->posTable[6].y - o->posTable[7].y;
if (t->monster2) {
xPos += t->monster2->xMstPos;
yPos += t->monster2->yMstPos;
} else {
assert(t->monster1);
xPos += t->monster1->xMstPos;
yPos += t->monster1->yMstPos;
}
}
} else {
if (screenNum >= _res->_mstHdr.screensCount) {
screenNum = _res->_mstHdr.screensCount - 1;
}
xPos += _res->_mstPointOffsets[screenNum].xOffset;
yPos += _res->_mstPointOffsets[screenNum].yOffset;
}
if (code == 13) {
assert(o);
xPos -= _res->_mstPointOffsets[screenNum].xOffset;
xPos -= o->posTable[7].x;
yPos -= _res->_mstPointOffsets[screenNum].yOffset;
yPos -= o->posTable[7].y;
o->screenNum = screenNum;
o->xPos = xPos;
o->yPos = yPos;
setLvlObjectPosInScreenGrid(o, 7);
if (t->monster2) {
mstTaskSetMonster2ScreenPosition(t);
} else {
assert(t->monster1);
mstTaskUpdateScreenPosition(t);
}
} else if (code == 14) {
const int pos = mask >> 16;
assert(pos < 8);
xPos -= _res->_mstPointOffsets[screenNum].xOffset;
xPos -= _andyObject->posTable[pos].x;
yPos -= _res->_mstPointOffsets[screenNum].yOffset;
yPos -= _andyObject->posTable[pos].y;
_andyObject->screenNum = screenNum;
_andyObject->xPos = xPos;
_andyObject->yPos = yPos;
updateLvlObjectScreen(_andyObject);
mstUpdateRefPos();
mstUpdateMonstersRect();
} else if (code == 22) {
updateScreenMaskBuffer(xPos, yPos, 1);
} else if (code == 24) {
updateScreenMaskBuffer(xPos, yPos, 2);
} else if (code == 25) {
updateScreenMaskBuffer(xPos, yPos, 3);
} else {
assert(code == 23);
updateScreenMaskBuffer(xPos, yPos, 0);
}
}
break;
case 15: {
_andyObject->anim = op204Data->arg0;
_andyObject->frame = op204Data->arg1;
LvlObject *o = 0;
if (t->monster2) {
o = t->monster2->o;
} else if (t->monster1) {
o = t->monster1->o16;
} else {
o = _andyObject;
}
const uint8_t flags = getLvlObjectFlag(op204Data->arg2 & 255, o, _andyObject);
_andyObject->flags1 = ((flags & 3) << 4) | (_andyObject->flags1 & ~0x30);
const int x3 = _andyObject->posTable[3].x;
const int y3 = _andyObject->posTable[3].y;
setupLvlObjectBitmap(_andyObject);
_andyObject->xPos += (x3 - _andyObject->posTable[3].x);
_andyObject->yPos += (y3 - _andyObject->posTable[3].y);
updateLvlObjectScreen(o);
mstUpdateRefPos();
mstUpdateMonstersRect();
}
break;
case 16:
case 17: {
LvlObject *o = _andyObject;
if (code == 16) {
if (t->monster2) {
o = t->monster2->o;
} else if (t->monster1) {
o = t->monster1->o16;
}
}
const int pos = op204Data->arg2;
assert(pos < 8);
const int xPos = o->xPos + o->posTable[pos].x;
const int yPos = o->yPos + o->posTable[pos].y;
const int type1 = (op204Data->arg3 >> 4) & 15;
const int index1 = op204Data->arg0;
setTaskVar(t, index1, type1, xPos);
const int type2 = op204Data->arg3 & 15;
const int index2 = op204Data->arg1;
setTaskVar(t, index2, type2, yPos);
}
break;
case 18: {
_mstCurrentActionKeyMask = op204Data->arg0 & 255;
}
break;
case 19: {
_andyActionKeyMaskAnd = op204Data->arg0 & 255;
_andyActionKeyMaskOr = op204Data->arg1 & 255;
_andyDirectionKeyMaskAnd = op204Data->arg2 & 255;
_andyDirectionKeyMaskOr = op204Data->arg3 & 255;
}
break;
case 20: {
_mstCurrentActionKeyMask = 0;
t->monster1->flagsA6 |= 2;
t->run = &Game::mstTask_idle;
t->monster1->o16->actionKeyMask = _mstCurrentActionKeyMask;
t->monster1->o16->directionKeyMask = _andyObject->directionKeyMask;
return 1;
}
break;
case 21: {
t->monster1->flagsA6 &= ~2;
t->monster1->o16->actionKeyMask = 0;
t->monster1->o16->directionKeyMask = 0;
}
break;
case 26: {
int screenNum = op204Data->arg2;
if (screenNum < -1 && !t->monster1) {
break;
}
if (screenNum == -1) {
screenNum = _currentScreen;
} else if (screenNum < -1) {
screenNum = t->monster1->o16->screenNum;
}
if (screenNum >= _res->_mstHdr.screensCount) {
screenNum = _res->_mstHdr.screensCount - 1;
}
const int x = _res->_mstPointOffsets[screenNum].xOffset;
const int y = _res->_mstPointOffsets[screenNum].yOffset;
const int xOffset = op204Data->arg3 * 256;
int count = 0;
for (int i = 0; i < kMaxMonsterObjects1; ++i) {
const MonsterObject1 *m = &_monsterObjects1Table[i];
if (!m->m46) {
continue;
}
if (!rect_contains(x - xOffset, y, x + xOffset + 256, y + 192, m->xMstPos, m->yMstPos)) {
continue;
}
const int num = op204Data->arg1;
switch (op204Data->arg0) {
case 0:
if (m->m46 == &_res->_mstBehaviorData[num]) {
++count;
}
break;
case 1:
if (m->monsterInfos == &_res->_mstMonsterInfos[num * kMonsterInfoDataSize]) {
++count;
}
break;
case 2:
if (m->monsterInfos[944] == num) {
++count;
}
break;
}
}
_mstOp56Counter = count;
}
break;
case 27: {
const int type = op204Data->arg3;
int a = getTaskVar(t, op204Data->arg0, (type >> 0xC) & 15);
int b = getTaskVar(t, op204Data->arg1, (type >> 0x8) & 15);
int c = getTaskVar(t, op204Data->arg2, (type >> 0x4) & 15);
int d = getTaskVar(t, type >> 16, type & 15);
setScreenMaskRect(a - 16, b, a + 16, c, d);
}
break;
case 28:
// no-op
break;
case 29: {
const uint8_t state = op204Data->arg1 & 255;
const uint8_t screen = op204Data->arg0 & 255;
_res->_screensState[screen].s0 = state;
}
break;
case 30:
++_level->_checkpoint;
break;
default:
warning("Unhandled opcode %d in mstOp56_specialAction", code);
break;
}
return 0;
}
static void initWormHoleSprite(WormHoleSprite *s, const uint8_t *p) {
s->screenNum = p[0];
s->initData1 = p[1];
s->xPos = p[2];
s->yPos = p[3];
s->initData4 = READ_LE_UINT32(p + 4);
s->rect1_x1 = p[8];
s->rect1_y1 = p[9];
s->rect1_x2 = p[0xA];
s->rect1_y2 = p[0xB];
s->rect2_x1 = p[0xC];
s->rect2_y1 = p[0xD];
s->rect2_x2 = p[0xE];
s->rect2_y2 = p[0xF];
}
void Game::mstOp57_addWormHoleSprite(int x, int y, int screenNum) {
bool found = false;
int spriteNum = 0;
for (int i = 0; i < 6; ++i) {
if (_wormHoleSpritesTable[i].screenNum == screenNum) {
found = true;
break;
}
if (_wormHoleSpritesTable[i].screenNum == 0xFF) {
break;
}
++spriteNum;
}
if (!found) {
if (spriteNum == 6) {
++_wormHoleSpritesCount;
if (_wormHoleSpritesCount >= spriteNum) {
_wormHoleSpritesCount = 0;
spriteNum = 0;
} else {
spriteNum = _wormHoleSpritesCount - 1;
}
} else {
spriteNum = _wormHoleSpritesCount;
}
switch (_currentLevel) {
case 2:
initWormHoleSprite(&_wormHoleSpritesTable[spriteNum], _pwr1_spritesData + screenNum * 16);
break;
case 3:
initWormHoleSprite(&_wormHoleSpritesTable[spriteNum], _isld_spritesData + screenNum * 16);
break;
case 4:
initWormHoleSprite(&_wormHoleSpritesTable[spriteNum], _lava_spritesData + screenNum * 16);
break;
case 6:
initWormHoleSprite(&_wormHoleSpritesTable[spriteNum], _lar1_spritesData + screenNum * 16);
break;
default:
warning("mstOp57 unhandled level %d", _currentLevel);
return;
}
}
WormHoleSprite *boulderWormSprite = &_wormHoleSpritesTable[spriteNum];
const int dx = x - boulderWormSprite->xPos;
const int dy = y + 15 - boulderWormSprite->yPos;
spriteNum = _rnd._rndSeed & 3;
if (spriteNum == 0) {
spriteNum = 1;
}
static const uint8_t data[32] = {
0x00, 0x00, 0x00, 0x02, 0x02, 0x02, 0x04, 0x04, 0x04, 0x06, 0x06, 0x06, 0x08, 0x08, 0x08, 0x0A,
0x0A, 0x0A, 0x0C, 0x0C, 0x0C, 0x0E, 0x0E, 0x0E, 0x10, 0x10, 0x10, 0x12, 0x12, 0x12, 0x14, 0x14,
};
const int pos = data[(dx >> 3) & 31];
const int num = dy >> 5;
if ((boulderWormSprite->flags[num] & (3 << pos)) == 0) {
if (addLvlObjectToList3(20)) {
LvlObject *o = _lvlObjectsList3;
o->flags0 = _andyObject->flags0;
o->flags1 = _andyObject->flags1;
o->screenNum = screenNum;
o->flags2 = 0x1007;
o->anim = 0;
o->frame = 0;
setupLvlObjectBitmap(o);
setLvlObjectPosRelativeToPoint(o, 7, x, y);
}
boulderWormSprite->flags[num] |= (spriteNum << pos);
}
}
void Game::mstOp58_addLvlObject(Task *t, int num) {
const MstOp211Data *dat = &_res->_mstOp211Data[num];
const int mask = dat->maskVars;
int xPos = getTaskVar(t, dat->indexVar1, (mask >> 8) & 15);
int yPos = getTaskVar(t, dat->indexVar2, (mask >> 4) & 15);
const uint8_t type = getTaskVar(t, dat->indexVar3, mask & 15);
LvlObject *o = 0;
if (t->monster2) {
o = t->monster2->o;
} else if (t->monster1) {
o = t->monster1->o16;
}
uint8_t screen = type;
if (type == 0xFB) { // -5
if (!o) {
return;
}
xPos += o->xPos + o->posTable[6].x;
yPos += o->yPos + o->posTable[6].y;
screen = o->screenNum;
} else if (type == 0xFE) { // -2
if (!o) {
return;
}
xPos += o->xPos + o->posTable[7].x;
yPos += o->yPos + o->posTable[7].y;
screen = o->screenNum;
} else if (type == 0xFF) { // -1
xPos += _mstAndyScreenPosX;
yPos += _mstAndyScreenPosY;
screen = _currentScreen;
}
const uint16_t flags = (dat->unk6 == -1 && o) ? o->flags2 : 0x3001;
o = addLvlObject(2, xPos, yPos, screen, dat->unk8, dat->unk4, dat->unkB, flags, dat->unk9, dat->unkA);
if (o) {
o->dataPtr = 0;
}
}
void Game::mstOp59_addShootSpecialPowers(int x, int y, int screenNum, int state, uint16_t flags) {
LvlObject *o = addLvlObjectToList0(3);
if (o) {
o->dataPtr = _shootLvlObjectDataNextPtr;
if (_shootLvlObjectDataNextPtr) {
_shootLvlObjectDataNextPtr = _shootLvlObjectDataNextPtr->nextPtr;
memset(o->dataPtr, 0, sizeof(ShootLvlObjectData));
}
ShootLvlObjectData *s = (ShootLvlObjectData *)o->dataPtr;
assert(s);
o->callbackFuncPtr = &Game::lvlObjectSpecialPowersCallback;
s->state = state;
s->type = 0;
s->counter = 17;
s->dxPos = (int8_t)_specialPowersDxDyTable[state * 2];
s->dyPos = (int8_t)_specialPowersDxDyTable[state * 2 + 1];
static const uint8_t data[16] = {
0x0D, 0x00, 0x0C, 0x01, 0x0C, 0x03, 0x0C, 0x00, 0x0C, 0x02, 0x0D, 0x01, 0x0B, 0x00, 0x0B, 0x02,
};
assert(state < 8);
o->anim = data[state * 2];
o->flags1 = ((data[state * 2 + 1] & 3) << 4) | (o->flags1 & ~0x0030);
o->frame = 0;
o->flags2 = flags;
o->screenNum = screenNum;
setupLvlObjectBitmap(o);
setLvlObjectPosRelativeToPoint(o, 6, x, y);
}
}
void Game::mstOp59_addShootFireball(int x, int y, int screenNum, int type, int state, uint16_t flags) {
LvlObject *o = addLvlObjectToList2(7);
if (o) {
o->dataPtr = _shootLvlObjectDataNextPtr;
if (_shootLvlObjectDataNextPtr) {
_shootLvlObjectDataNextPtr = _shootLvlObjectDataNextPtr->nextPtr;
memset(o->dataPtr, 0, sizeof(ShootLvlObjectData));
}
ShootLvlObjectData *s = (ShootLvlObjectData *)o->dataPtr;
assert(s);
s->state = state;
static const uint8_t fireballDxDy1[16] = {
0x0A, 0x00, 0xF7, 0xFA, 0xF7, 0x06, 0x09, 0xFA, 0x09, 0x06, 0xF6, 0x00, 0x00, 0xF6, 0x00, 0x0A
};
static const uint8_t fireballDxDy2[16] = {
0x0D, 0x00, 0xF5, 0xF9, 0xF5, 0x07, 0x0B, 0xF9, 0x0B, 0x07, 0xF3, 0x00, 0x00, 0xF3, 0x00, 0x0D
};
static const uint8_t data1[16] = {
0x02, 0x00, 0x01, 0x01, 0x01, 0x03, 0x01, 0x00, 0x01, 0x02, 0x02, 0x01, 0x00, 0x00, 0x00, 0x02
};
static const uint8_t data2[16] = {
0x0D, 0x00, 0x0D, 0x01, 0x0D, 0x03, 0x0D, 0x00, 0x0D, 0x02, 0x0D, 0x01, 0x0D, 0x00, 0x0D, 0x02
};
assert(state < 8);
const uint8_t *anim;
if (type >= 7) {
s->dxPos = (int8_t)fireballDxDy2[state * 2];
s->dyPos = (int8_t)fireballDxDy2[state * 2 + 1];
s->counter = 33;
anim = &data2[state * 2];
} else {
s->dxPos = (int8_t)fireballDxDy1[state * 2];
s->dyPos = (int8_t)fireballDxDy1[state * 2 + 1];
s->counter = 39;
anim = &data1[state * 2];
}
s->type = type;
o->anim = anim[0];
o->screenNum = screenNum;
o->flags1 = ((anim[1] & 3) << 4) | (o->flags1 & ~0x0030);
o->flags2 = flags;
o->frame = 0;
setupLvlObjectBitmap(o);
setLvlObjectPosRelativeToPoint(o, 6, x - s->dxPos, y - s->dyPos);
}
}
void Game::mstTaskResetMonster1WalkPath(Task *t) {
MonsterObject1 *m = t->monster1;
t->run = &Game::mstTask_main;
m->o16->actionKeyMask = 0;
m->o16->directionKeyMask = 0;
if ((m->flagsA5 & 4) != 0 && (m->flagsA5 & 0x28) == 0) {
switch (m->flagsA5 & 7) {
case 5:
m->flagsA5 = (m->flagsA5 & ~6) | 1;
if (!mstMonster1UpdateWalkPath(m)) {
mstMonster1ResetWalkPath(m);
}
mstTaskSetNextWalkCode(t);
break;
case 6:
m->flagsA5 &= ~7;
if (!mstSetCurrentPos(m, m->xMstPos, m->yMstPos)) {
m->flagsA5 |= 1;
if (!mstMonster1UpdateWalkPath(m)) {
mstMonster1ResetWalkPath(m);
}
const uint32_t indexWalkCode = m->walkNode->walkCodeStage1;
if (indexWalkCode != kNone) {
m->walkCode = &_res->_mstWalkCodeData[indexWalkCode];
}
} else {
m->flagsA5 |= 2;
if (!mstMonster1UpdateWalkPath(m)) {
mstMonster1ResetWalkPath(m);
}
}
mstTaskSetNextWalkCode(t);
break;
}
} else {
m->flagsA5 &= ~4;
mstMonster1UpdateWalkPath(m);
}
}
bool Game::mstSetCurrentPos(MonsterObject1 *m, int x, int y) {
_mstCurrentPosX = x;
_mstCurrentPosY = y;
const uint8_t *ptr = m->monsterInfos;
const int32_t a = READ_LE_UINT32(ptr + 900);
int x1 = _mstAndyLevelPosX - a;
int x2 = _mstAndyLevelPosX + a;
if (ptr[946] & 2) { // horizontal and vertical
int y1 = _mstAndyLevelPosY - a;
int y2 = _mstAndyLevelPosY + a;
if (x > x1 && x < x2 && y > y1 && y < y2) {
if (ABS(x - _mstAndyLevelPosX) > ABS(y - _mstAndyLevelPosY)) {
if (x >= _mstAndyLevelPosX) {
_mstCurrentPosX = x2;
} else {
_mstCurrentPosX = x1;
}
} else {
if (y >= _mstAndyLevelPosY) {
_mstCurrentPosY = y2;
} else {
_mstCurrentPosY = y1;
}
}
return false;
}
const int32_t b = READ_LE_UINT32(ptr + 896);
x1 -= b;
x2 += b;
y1 -= b;
y2 += b;
if (x < x1) {
_mstCurrentPosX = x1;
} else if (x > x2) {
_mstCurrentPosX = x2;
}
if (y < y1) {
_mstCurrentPosY = y1;
} else if (y > y2) {
_mstCurrentPosY = y2;
}
return (_mstCurrentPosX == x && _mstCurrentPosY == y);
} // horizontal only
if (x > x1 && x < x2) {
if (x >= _mstAndyLevelPosX) {
_mstCurrentPosX = x2;
} else {
_mstCurrentPosX = x1;
}
return false;
}
const int32_t b = READ_LE_UINT32(ptr + 896);
x1 -= b;
x2 += b;
if (x < x1) {
_mstCurrentPosX = x1;
return false;
} else if (x > x2) {
_mstCurrentPosX = x2;
return false;
}
return true;
}
void Game::mstMonster1SetGoalHorizontal(MonsterObject1 *m) {
Task *t = m->task;
t->flags &= ~0x80;
int x = m->xMstPos;
if (x < m->goalPos_x1) {
_xMstPos1 = x = m->goalPos_x2;
if ((m->flagsA5 & 2) != 0 && (m->flags48 & 8) != 0 && x > m->goalPosBounds_x2) {
t->flags |= 0x80;
x = m->goalPosBounds_x2;
}
if (x > m->levelPosBounds_x2) {
t->flags |= 0x80;
x = m->levelPosBounds_x2;
}
_xMstPos2 = x - m->xMstPos;
m->goalDirectionMask = kDirectionKeyMaskRight;
} else if (x > m->goalPos_x2) {
_xMstPos1 = x = m->goalPos_x1;
if ((m->flagsA5 & 2) != 0 && (m->flags48 & 8) != 0 && x < m->goalPosBounds_x1) {
t->flags |= 0x80;
x = m->goalPosBounds_x1;
}
if (x < m->levelPosBounds_x1) {
t->flags |= 0x80;
x = m->levelPosBounds_x1;
}
_xMstPos2 = m->xMstPos - x;
m->goalDirectionMask = kDirectionKeyMaskLeft;
} else {
_xMstPos1 = x;
_xMstPos2 = 0;
m->goalDirectionMask = 0;
}
}
void Game::mstResetCollisionTable() {
const int count = MIN(_res->_mstHdr.infoMonster1Count, 32);
for (int i = 0; i < 2; ++i) {
for (int j = 0; j < count; ++j) {
_mstCollisionTable[i][j].count = 0;
}
}
for (int i = 0; i < kMaxMonsterObjects1; ++i) {
MonsterObject1 *m = &_monsterObjects1Table[i];
if (!m->m46) {
continue;
}
const uint8_t _bl = m->flagsA5;
if ((_bl & 2) != 0 || ((_bl & 1) != 0 && ((m->walkNode->walkCodeStage1 == kNone && !m->walkCode) || (m->walkNode->walkCodeStage1 != kNone && m->walkCode == &_res->_mstWalkCodeData[m->walkNode->walkCodeStage1])))) {
if ((_bl & 0xB0) != 0) {
continue;
}
const int num = m->o16->flags0 & 0xFF;
if (m->monsterInfos[num * 28] != 0) {
continue;
}
if (m->task->run == &Game::mstTask_monsterWait4) {
continue;
}
uint8_t _al = m->flagsA6;
if (_al & 2) {
continue;
}
assert(m->task->monster1 == m);
if ((_al & 8) == 0 || m->monsterInfos[945] != 0) {
const uint32_t offset = m->monsterInfos - _res->_mstMonsterInfos;
assert(offset % kMonsterInfoDataSize == 0);
const uint32_t num = offset / kMonsterInfoDataSize;
assert(num < 32);
const int dir = (m->xMstPos < _mstAndyLevelPosX) ? 1 : 0;
const int count = _mstCollisionTable[dir][num].count;
_mstCollisionTable[dir][num].monster1[count] = m;
++_mstCollisionTable[dir][num].count;
}
}
}
}
// resume bytecode execution
void Game::mstTaskRestart(Task *t) {
t->run = &Game::mstTask_main;
LvlObject *o = 0;
if (t->monster1) {
o = t->monster1->o16;
} else if (t->monster2) {
o = t->monster2->o;
}
if (o) {
o->actionKeyMask = 0;
o->directionKeyMask = 0;
}
}
bool Game::mstMonster1CheckLevelBounds(MonsterObject1 *m, int x, int y, uint8_t dir) {
if ((m->flagsA5 & 2) != 0 && (m->flags48 & 8) != 0 && !mstSetCurrentPos(m, x, y)) {
return true;
}
if ((dir & kDirectionKeyMaskLeft) != 0 && x < m->levelPosBounds_x1) {
return true;
}
if ((dir & kDirectionKeyMaskRight) != 0 && x > m->levelPosBounds_x2) {
return true;
}
if ((dir & kDirectionKeyMaskUp) != 0 && y < m->levelPosBounds_y1) {
return true;
}
if ((dir & kDirectionKeyMaskDown) != 0 && y > m->levelPosBounds_y2) {
return true;
}
return false;
}
int Game::mstTaskResetMonster1Direction(Task *t) {
MonsterObject1 *m = t->monster1;
m->flagsA5 = (m->flagsA5 & ~0xF) | 6;
return mstTaskInitMonster1Type2(t, 1);
}
int Game::mstTaskInitMonster1Type1(Task *t) {
t->flags &= ~0x80;
MonsterObject1 *m = t->monster1;
m->flagsA5 = (m->flagsA5 & ~2) | 5;
mstMonster1ResetWalkPath(m);
const uint32_t indexWalkBox = m->walkNode->walkBox;
const MstWalkBox *m34 = &_res->_mstWalkBoxData[indexWalkBox];
int y = 0;
int x = 0;
bool flag = false;
if (m->monsterInfos[946] & 2) {
m->unkC0 = -1;
m->unkBC = -1;
m->walkBoxNum = 0xFF;
m->targetDirectionMask = 0xFF;
y = m34->top;
if (m->yMstPos < m34->top || m->yMstPos > m34->bottom) {
flag = true;
}
}
x = m34->left;
if (m->monsterInfos[946] & 4) {
m->unkAB = 0xFF;
m->targetLevelPos_x = -1;
m->targetLevelPos_y = -1;
mstBoundingBoxClear(m, 1);
}
if (!flag && m->xMstPos >= x && m->xMstPos <= m34->right) {
mstTaskResetMonster1WalkPath(t);
return 0;
}
const uint32_t indexUnk36 = m->walkNode->movingBoundsIndex1;
MstMovingBoundsIndex *m36 = &_res->_mstMovingBoundsIndexData[indexUnk36];
MstMovingBounds *m49 = &_res->_mstMovingBoundsData[m36->indexUnk49];
m->m49 = m49;
m->indexUnk49Unk1 = m36->unk4;
if (m->indexUnk49Unk1 < 0) {
if (m49->indexDataCount == 0) {
m->indexUnk49Unk1 = 0;
} else {
m->indexUnk49Unk1 = m49->indexData[_rnd.getMstNextNumber(m->rnd_m49)];
}
}
assert((uint32_t)m->indexUnk49Unk1 < m49->count1);
m->m49Unk1 = &m49->data1[m->indexUnk49Unk1];
int xDelta = (m34->right - x) / 4;
m->goalDistance_x1 = x + xDelta;
m->goalDistance_x2 = m34->right - xDelta;
if (xDelta != 0) {
xDelta = _rnd.update() % xDelta;
}
m->goalDistance_x1 += xDelta;
m->goalDistance_x2 -= xDelta;
m->goalPos_x1 = m->goalDistance_x1;
m->goalPos_x2 = m->goalDistance_x2;
const uint8_t *ptr = _res->_mstMonsterInfos + m->m49Unk1->offsetMonsterInfo;
if ((ptr[2] & kDirectionKeyMaskHorizontal) == 0) {
m->goalDistance_x1 = m->goalPos_x1 = m->goalDistance_x2 = m->goalPos_x2 = m->xMstPos;
}
int vf;
if (m->monsterInfos[946] & 2) {
int yDelta = (m34->bottom - y) / 4;
m->goalDistance_y1 = y + yDelta;
m->goalDistance_y2 = m34->bottom - yDelta;
if (yDelta != 0) {
yDelta = _rnd.update() % yDelta;
}
m->goalDistance_y1 += yDelta;
m->goalDistance_y2 -= yDelta;
m->goalPos_y1 = m->goalDistance_y1;
m->goalPos_y2 = m->goalDistance_y2;
if ((ptr[2] & kDirectionKeyMaskVertical) == 0) {
m->goalDistance_y1 = m->goalPos_y1 = m->goalDistance_y2 = m->goalPos_y2 = m->yMstPos;
}
if (m->monsterInfos[946] & 4) {
mstMonster1MoveTowardsGoal2(m);
} else {
mstMonster1MoveTowardsGoal1(m);
}
vf = 1;
const MstMovingBoundsUnk1 *m49Unk1 = m->m49Unk1;
uint8_t xDist, yDist;
if (_mstLut1[m->goalDirectionMask] & 1) {
xDist = m49Unk1->unkE;
yDist = m49Unk1->unkF;
} else {
xDist = m49Unk1->unkC;
yDist = m49Unk1->unkD;
}
if (_xMstPos2 < xDist && _yMstPos2 < yDist && !mstMonster1TestGoalDirection(m)) {
vf = 0;
}
} else {
mstMonster1SetGoalHorizontal(m);
vf = 1;
while (_xMstPos2 < m->m49Unk1->unkC) {
if (--m->indexUnk49Unk1 >= 0) {
m->m49Unk1 = &m->m49->data1[m->indexUnk49Unk1];
} else {
vf = 0;
break;
}
}
}
if (_xMstPos2 <= 0 && ((m->monsterInfos[946] & 2) == 0 || _yMstPos2 <= 0)) {
if (m->monsterInfos[946] & 4) {
mstBoundingBoxClear(m, 1);
}
mstTaskResetMonster1WalkPath(t);
return 0;
}
if (vf != 0 && ((_xMstPos2 >= m->m49->unk14 || ((m->monsterInfos[946] & 2) != 0 && _yMstPos2 >= m->m49->unk15)))) {
const uint8_t *p = _res->_mstMonsterInfos + m->m49Unk1->offsetMonsterInfo;
if ((m->monsterInfos[946] & 4) != 0 && p[0xE] != 0 && m->bboxNum[0] == 0xFF) {
const int x1 = m->xMstPos + (int8_t)p[0xC];
const int y1 = m->yMstPos + (int8_t)p[0xD];
const int x2 = x1 + p[0xE] - 1;
const int y2 = y1 + p[0xF] - 1;
if (mstBoundingBoxCollides2(m->monster1Index, x1, y1, x2, y2) != 0) {
m->indexUnk49Unk1 = 0;
m->m49Unk1 = &m->m49->data1[0];
m->unkAB = 0xFF;
m->targetLevelPos_x = -1;
m->targetLevelPos_y = -1;
mstBoundingBoxClear(m, 1);
if (p[0xE] != 0) {
t->flags |= 0x80;
mstTaskResetMonster1WalkPath(t);
return 0;
}
} else {
m->bboxNum[0] = mstBoundingBoxUpdate(0xFF, m->monster1Index, x1, y1, x2, y2);
}
}
if (_xMstPos2 >= m36->unk8 || ((m->monsterInfos[946] & 2) != 0 && _yMstPos2 >= m36->unk8)) {
m->indexUnk49Unk1 = m->m49->count1 - 1;
m->m49Unk1 = &m->m49->data1[m->indexUnk49Unk1];
if (m->monsterInfos[946] & 4) {
m->unkAB = 0xFF;
m->targetLevelPos_x = -1;
m->targetLevelPos_y = -1;
mstBoundingBoxClear(m, 1);
}
}
if (m->monsterInfos[946] & 4) {
t->run = &Game::mstTask_monsterWait9;
} else if (m->monsterInfos[946] & 2) {
t->run = &Game::mstTask_monsterWait7;
} else {
t->run = &Game::mstTask_monsterWait5;
}
return (this->*(t->run))(t);
} else if (m->monsterInfos[946] & 4) {
mstBoundingBoxClear(m, 1);
}
t->flags |= 0x80;
mstTaskResetMonster1WalkPath(t);
return -1;
}
int Game::mstTaskInitMonster1Type2(Task *t, int flag) {
debug(kDebug_MONSTER, "mstTaskInitMonster1Type2 t %p flag %d", t, flag);
t->flags &= ~0x80;
MonsterObject1 *m = t->monster1;
m->flagsA5 = (m->flagsA5 & ~1) | 6;
mstMonster1ResetWalkPath(m);
const uint32_t indexUnk36 = m->walkNode->movingBoundsIndex2;
MstMovingBoundsIndex *m36 = &_res->_mstMovingBoundsIndexData[indexUnk36];
MstMovingBounds *m49 = &_res->_mstMovingBoundsData[m36->indexUnk49];
m->m49 = m49;
if (flag != 0) {
m->indexUnk49Unk1 = m49->count1 - 1;
} else {
m->indexUnk49Unk1 = m36->unk4;
}
if (m->indexUnk49Unk1 < 0) {
if (m49->indexDataCount == 0) {
m->indexUnk49Unk1 = 0;
} else {
m->indexUnk49Unk1 = m49->indexData[_rnd.getMstNextNumber(m->rnd_m49)];
}
}
assert((uint32_t)m->indexUnk49Unk1 < m49->count1);
m->m49Unk1 = &m49->data1[m->indexUnk49Unk1];
m->goalScreenNum = 0xFD;
m->unkC0 = -1;
m->unkBC = -1;
m->walkBoxNum = 0xFF;
m->targetDirectionMask = 0xFF;
if (mstSetCurrentPos(m, m->xMstPos, m->yMstPos)) {
mstTaskResetMonster1WalkPath(t);
return 0;
}
int vf;
const uint8_t *p = m->monsterInfos;
if (p[946] & 2) {
m->unkE4 = 255;
if (p[946] & 4) {
m->unkAB = 0xFF;
m->targetLevelPos_x = -1;
m->targetLevelPos_y = -1;
mstBoundingBoxClear(m, 1);
}
m->goalDistance_x1 = READ_LE_UINT32(m->monsterInfos + 900);
m->goalDistance_x2 = m->goalDistance_x1 + READ_LE_UINT32(m->monsterInfos + 896);
m->goalDistance_y1 = READ_LE_UINT32(m->monsterInfos + 900);
m->goalDistance_y2 = m->goalDistance_y1 + READ_LE_UINT32(m->monsterInfos + 896);
m->goalPos_x1 = m->goalDistance_x1;
m->goalPos_x2 = m->goalDistance_x2;
m->goalPos_y1 = m->goalDistance_y1;
m->goalPos_y2 = m->goalDistance_y2;
const uint8_t *ptr1 = _res->_mstMonsterInfos + m->m49Unk1->offsetMonsterInfo;
if ((ptr1[2] & kDirectionKeyMaskVertical) == 0) {
m->goalDistance_y1 = m->goalPos_y1 = m->goalDistance_y2 = m->goalPos_y2 = m->yMstPos;
}
if ((ptr1[2] & kDirectionKeyMaskHorizontal) == 0) {
m->goalDistance_x1 = m->goalPos_x1 = m->goalDistance_x2 = m->goalPos_x2 = m->xMstPos;
}
if (p[946] & 4) {
mstMonster1UpdateGoalPosition(m);
mstMonster1MoveTowardsGoal2(m);
} else {
mstMonster1UpdateGoalPosition(m);
mstMonster1MoveTowardsGoal1(m);
}
vf = 1;
const MstMovingBoundsUnk1 *m49Unk1 = m->m49Unk1;
uint8_t xDist, yDist;
if (_mstLut1[m->goalDirectionMask] & 1) {
xDist = m49Unk1->unkE;
yDist = m49Unk1->unkF;
} else {
xDist = m49Unk1->unkC;
yDist = m49Unk1->unkD;
}
if (_xMstPos2 < xDist && _yMstPos2 < yDist && !mstMonster1TestGoalDirection(m)) {
vf = 0;
}
} else {
int32_t ve = READ_LE_UINT32(p + 900);
int32_t vc = READ_LE_UINT32(p + 896);
int r = vc / 4;
m->goalDistance_x1 = ve + r;
m->goalDistance_x2 = vc + ve - r;
if (r != 0) {
r = _rnd.update() % r;
}
m->goalDistance_x1 += r;
m->goalDistance_x2 -= r;
if (m->goalScreenNum == 0xFD && m->xMstPos < _mstAndyLevelPosX) {
m->goalPos_x1 = _mstAndyLevelPosX - m->goalDistance_x2;
m->goalPos_x2 = _mstAndyLevelPosX - m->goalDistance_x1;
} else {
m->goalPos_x1 = _mstAndyLevelPosX + m->goalDistance_x1;
m->goalPos_x2 = _mstAndyLevelPosX + m->goalDistance_x2;
}
mstMonster1SetGoalHorizontal(m);
vf = 1;
while (_xMstPos2 < m->m49Unk1->unkC) {
if (--m->indexUnk49Unk1 >= 0) {
m->m49Unk1 = &m->m49->data1[m->indexUnk49Unk1];
} else {
vf = 0;
break;
}
}
}
if (_xMstPos2 <= 0 && ((m->monsterInfos[946] & 2) == 0 || _yMstPos2 <= 0)) {
if (m->monsterInfos[946] & 4) {
mstBoundingBoxClear(m, 1);
}
mstTaskResetMonster1WalkPath(t);
return 0;
}
if (vf) {
if (_xMstPos2 >= m->m49->unk14 || ((m->monsterInfos[946] & 2) != 0 && _yMstPos2 >= m->m49->unk15)) {
const uint8_t *p = _res->_mstMonsterInfos + m->m49Unk1->offsetMonsterInfo;
if ((m->monsterInfos[946] & 4) != 0 && p[0xE] != 0 && m->bboxNum[0] == 0xFF) {
const int x1 = m->xMstPos + (int8_t)p[0xC];
const int y1 = m->yMstPos + (int8_t)p[0xD];
const int x2 = x1 + p[0xE] - 1;
const int y2 = y1 + p[0xF] - 1;
if (mstBoundingBoxCollides2(m->monster1Index, x1, y1, x2, y2) != 0) {
m->indexUnk49Unk1 = 0;
m->m49Unk1 = &m->m49->data1[0];
m->unkAB = 0xFF;
m->targetLevelPos_x = -1;
m->targetLevelPos_y = -1;
mstBoundingBoxClear(m, 1);
if (p[0xE] != 0) {
t->flags |= 0x80;
mstTaskResetMonster1WalkPath(t);
return 0;
}
} else {
m->bboxNum[0] = mstBoundingBoxUpdate(0xFF, m->monster1Index, x1, y1, x2, y2);
}
}
if (_xMstPos2 >= m36->unk8 || ((m->monsterInfos[946] & 2) != 0 && _yMstPos2 >= m36->unk8)) {
m->indexUnk49Unk1 = m->m49->count1 - 1;
m->m49Unk1 = &m->m49->data1[m->indexUnk49Unk1];
if (m->monsterInfos[946] & 4) {
m->unkAB = 0xFF;
m->targetLevelPos_x = -1;
m->targetLevelPos_y = -1;
mstBoundingBoxClear(m, 1);
}
}
if (m->monsterInfos[946] & 4) {
t->run = &Game::mstTask_monsterWait10;
} else if (m->monsterInfos[946] & 2) {
t->run = &Game::mstTask_monsterWait8;
} else {
t->run = &Game::mstTask_monsterWait6;
}
return (this->*(t->run))(t);
}
}
if (m->monsterInfos[946] & 4) {
mstBoundingBoxClear(m, 1);
}
t->flags |= 0x80;
mstTaskResetMonster1WalkPath(t);
return -1;
}
void Game::mstOp67_addMonster(Task *currentTask, int x1, int x2, int y1, int y2, int screen, int type, int o_flags1, int o_flags2, int arg1C, int arg20, int arg24) {
debug(kDebug_MONSTER, "mstOp67_addMonster pos %d,%d,%d,%d %d %d 0x%x 0x%x %d %d %d", y1, x1, y2, x2, screen, type, o_flags1, o_flags2, arg1C, arg20, arg24);
if (o_flags2 == 0xFFFF) {
LvlObject *o = 0;
if (currentTask->monster1) {
o = currentTask->monster1->o16;
} else if (currentTask->monster2) {
o = currentTask->monster2->o;
}
o_flags2 = o ? o->flags2 : 0x3001;
}
if (y1 != y2) {
y1 += _rnd.update() % ABS(y2 - y1 + 1);
}
if (x1 != x2) {
x1 += _rnd.update() % ABS(x2 - x1 + 1);
}
int objScreen = (screen < 0) ? _currentScreen : screen;
LvlObject *o = 0;
MonsterObject2 *mo = 0;
MonsterObject1 *m = 0;
if (arg1C != -128) {
if (_mstVars[30] > kMaxMonsterObjects1) {
_mstVars[30] = kMaxMonsterObjects1;
}
int count = 0;
for (int i = 0; i < kMaxMonsterObjects1; ++i) {
if (_monsterObjects1Table[i].m46) {
++count;
}
}
if (count >= _mstVars[30]) {
return;
}
if (arg1C < 0) {
const MstBehaviorIndex *m42 = &_res->_mstBehaviorIndexData[arg24];
if (m42->dataCount == 0) {
arg1C = m42->data[0];
} else {
arg1C = m42->data[_rnd.update() % m42->dataCount];
}
}
for (int i = 0; i < kMaxMonsterObjects1; ++i) {
if (!_monsterObjects1Table[i].m46) {
m = &_monsterObjects1Table[i];
break;
}
}
if (!m) {
warning("mstOp67 unable to find a free MonsterObject1");
return;
}
memset(m->localVars, 0, sizeof(m->localVars));
m->flags48 = 0x1C;
m->flagsA5 = 0;
m->collideDistance = -1;
m->walkCode = 0;
m->flagsA6 = 0;
assert((uint32_t)arg1C < _res->_mstBehaviorIndexData[arg24].count1);
const uint32_t indexBehavior = _res->_mstBehaviorIndexData[arg24].behavior[arg1C];
MstBehavior *m46 = &_res->_mstBehaviorData[indexBehavior];
m->m46 = m46;
assert((uint32_t)arg20 < m46->count);
MstBehaviorState *behaviorState = &m46->data[arg20];
m->behaviorState = behaviorState;
m->monsterInfos = _res->_mstMonsterInfos + behaviorState->indexMonsterInfo * kMonsterInfoDataSize;
m->localVars[7] = behaviorState->energy;
if (behaviorState->indexUnk51 == kNone) {
m->flags48 &= ~4;
}
const uint8_t *ptr = m->monsterInfos;
o = addLvlObject(ptr[945], x1, y1, objScreen, ptr[944], behaviorState->anim, o_flags1, o_flags2, 0, 0);
if (!o) {
mstMonster1ResetData(m);
return;
}
m->o16 = o;
if (_currentLevel == kLvl_lar2 && m->monsterInfos[944] == 26) { // Master of Darkness
m->o20 = addLvlObject(ptr[945], x1, y1, objScreen, ptr[944], behaviorState->anim + 1, o_flags1, 0x3001, 0, 0);
if (!m->o20) {
warning("mstOp67 failed to addLvlObject in kLvl_lar2");
mstMonster1ResetData(m);
return;
}
if (screen < 0) {
m->o20->xPos += _mstAndyScreenPosX;
m->o20->yPos += _mstAndyScreenPosY;
}
m->o20->dataPtr = 0;
setLvlObjectPosRelativeToObject(m->o16, 6, m->o20, 6);
}
m->o_flags2 = o_flags2 & 0xFFFF;
m->lut4Index = _mstLut5[o_flags2 & 0x1F];
o->dataPtr = m;
} else {
for (int i = 0; i < kMaxMonsterObjects2; ++i) {
if (!_monsterObjects2Table[i].monster2Info) {
mo = &_monsterObjects2Table[i];
break;
}
}
if (!mo) {
warning("mstOp67 no free monster2");
return;
}
assert(arg24 >= 0 && arg24 < _res->_mstHdr.infoMonster2Count);
mo->monster2Info = &_res->_mstInfoMonster2Data[arg24];
if (currentTask->monster1) {
mo->monster1 = currentTask->monster1;
} else if (currentTask->monster2) {
mo->monster1 = currentTask->monster2->monster1;
} else {
mo->monster1 = 0;
}
mo->flags24 = 0;
uint8_t _cl = mo->monster2Info->type;
uint16_t anim = mo->monster2Info->anim;
o = addLvlObject((_cl >> 7) & 1, x1, y1, objScreen, (_cl & 0x7F), anim, o_flags1, o_flags2, 0, 0);
if (!o) {
mo->monster2Info = 0;
if (mo->o) {
mo->o->dataPtr = 0;
}
return;
}
mo->o = o;
o->dataPtr = mo;
}
if (screen < 0) {
o->xPos += _mstAndyScreenPosX;
o->yPos += _mstAndyScreenPosY;
}
setLvlObjectPosInScreenGrid(o, 7);
if (mo) {
Task *t = findFreeTask();
if (!t) {
mo->monster2Info = 0;
if (mo->o) {
mo->o->dataPtr = 0;
}
removeLvlObject2(o);
return;
}
resetTask(t, kUndefinedMonsterByteCode);
t->monster2 = mo;
t->monster1 = 0;
mo->task = t;
t->codeData = 0;
appendTask(&_monsterObjects2TasksList, t);
t->codeData = kUndefinedMonsterByteCode;
mstTaskSetMonster2ScreenPosition(t);
const uint32_t codeData = mo->monster2Info->codeData;
assert(codeData != kNone);
resetTask(t, _res->_mstCodeData + codeData * 4);
if (_currentLevel == kLvl_fort && mo->monster2Info->type == 27) {
mstMonster2InitFirefly(mo);
}
} else {
Task *t = findFreeTask();
if (!t) {
mstMonster1ResetData(m);
removeLvlObject2(o);
return;
}
resetTask(t, kUndefinedMonsterByteCode);
t->monster1 = m;
t->monster2 = 0;
m->task = t;
t->codeData = 0;
appendTask(&_monsterObjects1TasksList, t);
t->codeData = kUndefinedMonsterByteCode;
_rnd.resetMst(m->rnd_m35);
_rnd.resetMst(m->rnd_m49);
m->levelPosBounds_x1 = -1;
MstBehaviorState *behaviorState = m->behaviorState;
m->walkNode = _res->_mstWalkPathData[behaviorState->walkPath].data;
if (m->monsterInfos[946] & 4) {
m->bboxNum[0] = 0xFF;
m->bboxNum[1] = 0xFF;
}
mstTaskUpdateScreenPosition(t);
switch (type) {
case 1:
mstTaskInitMonster1Type1(t);
assert(t->run != &Game::mstTask_main || (t->codeData && t->codeData != kUndefinedMonsterByteCode));
break;
case 2:
if (m) {
m->flagsA6 |= 1;
}
mstTaskInitMonster1Type2(t, 0);
assert(t->run != &Game::mstTask_main || (t->codeData && t->codeData != kUndefinedMonsterByteCode));
break;
default:
m->flagsA5 = 1;
if (!mstMonster1UpdateWalkPath(m)) {
mstMonster1ResetWalkPath(m);
}
mstTaskSetNextWalkCode(t);
break;
}
}
currentTask->flags &= ~0x80;
}
void Game::mstOp68_addMonsterGroup(Task *t, const uint8_t *p, int a, int b, int c, int d) {
const MstBehaviorIndex *m42 = &_res->_mstBehaviorIndexData[d];
struct {
int m42Index;
int m46Index;
} data[16];
int count = 0;
for (uint32_t i = 0; i < m42->count1; ++i) {
MstBehavior *m46 = &_res->_mstBehaviorData[m42->behavior[i]];
for (uint32_t j = 0; j < m46->count; ++j) {
MstBehaviorState *behaviorState = &m46->data[j];
uint32_t indexMonsterInfo = p - _res->_mstMonsterInfos;
assert((indexMonsterInfo % kMonsterInfoDataSize) == 0);
indexMonsterInfo /= kMonsterInfoDataSize;
if (behaviorState->indexMonsterInfo == indexMonsterInfo) {
assert(count < 16);
data[count].m42Index = i;
data[count].m46Index = j;
++count;
}
}
}
if (count == 0) {
return;
}
int j = 0;
for (int i = 0; i < a; ++i) {
mstOp67_addMonster(t, _mstOp67_x1, _mstOp67_x2, _mstOp67_y1, _mstOp67_y2, _mstOp67_screenNum, _mstOp67_type, _mstOp67_flags1, _mstOp68_flags1, data[j].m42Index, data[j].m46Index, d);
if (--c == 0) {
return;
}
if (++j >= count) {
j = 0;
}
}
for (int i = 0; i < b; ++i) {
mstOp67_addMonster(t, _mstOp68_x1, _mstOp68_x2, _mstOp68_y1, _mstOp68_y2, _mstOp68_screenNum, _mstOp68_type, _mstOp68_arg9, _mstOp68_flags1, data[j].m42Index, data[j].m46Index, d);
if (--c == 0) {
return;
}
if (++j >= count) {
j = 0;
}
}
}
int Game::mstTask_wait1(Task *t) {
debug(kDebug_MONSTER, "mstTask_wait1 t %p count %d", t, t->arg1);
--t->arg1;
if (t->arg1 == 0) {
t->run = &Game::mstTask_main;
return 0;
}
return 1;
}
int Game::mstTask_wait2(Task *t) {
debug(kDebug_MONSTER, "mstTask_wait2 t %p count %d", t, t->arg1);
--t->arg1;
if (t->arg1 == 0) {
mstTaskRestart(t);
return 0;
}
return 1;
}
int Game::mstTask_wait3(Task *t) {
debug(kDebug_MONSTER, "mstTask_wait3 t %p type %d flag %d", t, t->arg1, t->arg2);
if (getTaskFlag(t, t->arg2, t->arg1) == 0) {
return 1;
}
mstTaskRestart(t);
return 0;
}
int Game::mstTask_idle(Task *t) {
debug(kDebug_MONSTER, "mstTask_idle t %p", t);
return 1;
}
int Game::mstTask_mstOp231(Task *t) {
debug(kDebug_MONSTER, "mstTask_mstOp231 t %p", t);
const MstOp234Data *m = &_res->_mstOp234Data[t->arg2];
const int a = getTaskFlag(t, m->indexVar1, m->maskVars & 15);
const int b = getTaskFlag(t, m->indexVar2, m->maskVars >> 4);
if (!compareOp(m->compare, a, b)) {
mstTaskRestart(t);
return 0;
}
return 1;
}
int Game::mstTask_mstOp232(Task *t) {
warning("mstTask_mstOp232 unimplemented");
t->run = &Game::mstTask_main;
return 0;
}
int Game::mstTask_mstOp233(Task *t) {
debug(kDebug_MONSTER, "mstTask_mstOp233 t %p", t);
const MstOp234Data *m = &_res->_mstOp234Data[t->arg2];
const int a = getTaskVar(t, m->indexVar1, m->maskVars & 15);
const int b = getTaskVar(t, m->indexVar2, m->maskVars >> 4);
if (!compareOp(m->compare, a, b)) {
mstTaskRestart(t);
return 0;
}
return 1;
}
int Game::mstTask_mstOp234(Task *t) {
debug(kDebug_MONSTER, "mstTask_mstOp234 t %p", t);
const MstOp234Data *m = &_res->_mstOp234Data[t->arg2];
const int a = getTaskVar(t, m->indexVar1, m->maskVars & 15);
const int b = getTaskVar(t, m->indexVar2, m->maskVars >> 4);
if (compareOp(m->compare, a, b)) {
mstTaskRestart(t);
return 0;
}
return 1;
}
int Game::mstTask_monsterWait1(Task *t) {
debug(kDebug_MONSTER, "mstTask_monsterWait1 t %p", t);
if (t->arg1 == 0) {
mstMonster1UpdateWalkPath(t->monster1);
mstTaskRestart(t);
return 0;
}
--t->arg1;
return 1;
}
int Game::mstTask_monsterWait2(Task *t) {
debug(kDebug_MONSTER, "mstTask_monsterWait2 t %p", t);
MonsterObject1 *m = t->monster1;
const uint16_t flags0 = m->o16->flags0;
if ((flags0 & 0x100) != 0 && (flags0 & 0xFF) == m->o_flags0) {
mstMonster1UpdateWalkPath(t->monster1);
mstTaskRestart(t);
return 0;
}
return 1;
}
int Game::mstTask_monsterWait3(Task *t) {
debug(kDebug_MONSTER, "mstTask_monsterWait3 t %p", t);
MonsterObject1 *m = t->monster1;
const uint16_t flags0 = m->o16->flags0;
if ((flags0 & 0xFF) == m->o_flags0) {
if (t->arg1 > 0) {
t->run = &Game::mstTask_monsterWait1;
} else {
t->run = &Game::mstTask_monsterWait2;
}
return (this->*(t->run))(t);
}
return 1;
}
int Game::mstTask_monsterWait4(Task *t) {
debug(kDebug_MONSTER, "mstTask_monsterWait4 t %p", t);
MonsterObject1 *m = t->monster1;
const uint32_t offset = m->monsterInfos - _res->_mstMonsterInfos;
assert(offset % kMonsterInfoDataSize == 0);
const uint32_t num = offset / kMonsterInfoDataSize;
if (t->arg2 != num) {
mstMonster1UpdateWalkPath(m);
mstTaskRestart(t);
return 0;
}
return 1;
}
int Game::mstTask_monsterWait5(Task *t) {
debug(kDebug_MONSTER, "mstTask_monsterWait5 t %p", t);
// horizontal move
MonsterObject1 *m = t->monster1;
mstMonster1SetGoalHorizontal(m);
if (_xMstPos2 < m->m49Unk1->unk8) {
if (_xMstPos2 > 0) {
while (--m->indexUnk49Unk1 >= 0) {
m->m49Unk1 = &m->m49->data1[m->indexUnk49Unk1];
if (_xMstPos2 >= m->m49Unk1->unkC) {
goto set_am;
}
}
}
return mstTaskStopMonster1(t, m);
}
set_am:
const uint8_t *ptr = _res->_mstMonsterInfos + m->m49Unk1->offsetMonsterInfo;
mstLvlObjectSetActionDirection(m->o16, ptr, ptr[3], m->goalDirectionMask);
return 1;
}
int Game::mstTask_monsterWait6(Task *t) {
debug(kDebug_MONSTER, "mstTask_monsterWait6 t %p", t);
MonsterObject1 *m = t->monster1;
// horizontal move with goal
if (m->goalScreenNum == 0xFD && m->xMstPos < _mstAndyLevelPosX) {
m->goalPos_x1 = _mstAndyLevelPosX - m->goalDistance_x2;
m->goalPos_x2 = _mstAndyLevelPosX - m->goalDistance_x1;
} else {
m->goalPos_x1 = _mstAndyLevelPosX + m->goalDistance_x1;
m->goalPos_x2 = _mstAndyLevelPosX + m->goalDistance_x2;
}
mstMonster1SetGoalHorizontal(m);
if (_xMstPos2 < m->m49Unk1->unk8) {
if (_xMstPos2 > 0) {
while (--m->indexUnk49Unk1 >= 0) {
m->m49Unk1 = &m->m49->data1[m->indexUnk49Unk1];
if (_xMstPos2 >= m->m49Unk1->unkC) {
goto set_am;
}
}
}
return mstTaskStopMonster1(t, m);
}
set_am:
const uint8_t *ptr = _res->_mstMonsterInfos + m->m49Unk1->offsetMonsterInfo;
mstLvlObjectSetActionDirection(m->o16, ptr, ptr[3], m->goalDirectionMask);
return 1;
}
int Game::mstTask_monsterWait7(Task *t) {
debug(kDebug_MONSTER, "mstTask_monsterWait7 t %p", t);
MonsterObject1 *m = t->monster1;
mstMonster1MoveTowardsGoal1(m);
return mstTaskUpdatePositionActionDirection(t, m);
}
int Game::mstTask_monsterWait8(Task *t) {
debug(kDebug_MONSTER, "mstTask_monsterWait8 t %p", t);
MonsterObject1 *m = t->monster1;
mstMonster1UpdateGoalPosition(m);
mstMonster1MoveTowardsGoal1(m);
return mstTaskUpdatePositionActionDirection(t, m);
}
int Game::mstTask_monsterWait9(Task *t) {
debug(kDebug_MONSTER, "mstTask_monsterWait9 t %p", t);
MonsterObject1 *m = t->monster1;
mstMonster1MoveTowardsGoal2(m);
return mstTaskUpdatePositionActionDirection(t, m);
}
int Game::mstTask_monsterWait10(Task *t) {
debug(kDebug_MONSTER, "mstTask_monsterWait10 t %p", t);
MonsterObject1 *m = t->monster1;
mstMonster1UpdateGoalPosition(m);
mstMonster1MoveTowardsGoal2(m);
return mstTaskUpdatePositionActionDirection(t, m);
}
int Game::mstTask_monsterWait11(Task *t) {
debug(kDebug_MONSTER, "mstTask_monsterWait11 t %p", t);
MonsterObject1 *m = t->monster1;
const int num = m->o16->flags0 & 0xFF;
if (m->monsterInfos[num * 28] == 0) {
mstTaskResetMonster1Direction(t);
}
return 1;
}
| [
"maxim.lopez.02@gmail.com"
] | maxim.lopez.02@gmail.com |
78095d438f3ba8ffccfb37c4fcda643fe886a4a8 | 642630fc1f6747663f08c6357e3b2c3ecaa994a5 | /libraries/SmartRC-CC1101-Driver-Lib/examples/CC1101 default examples/cc1101_Receive/cc1101_Receive.ino | d91f0c585e29034f8bb0faed2b9168e199093e28 | [
"CC-BY-4.0"
] | permissive | whid-injector/EvilCrow-RF | e099644a4248484c8d4276e496f2e4d6f8025e7f | d47ac1204fcd2fea070a1d9e80f12f9e15c3a64a | refs/heads/main | 2023-04-09T16:09:40.864399 | 2021-04-20T09:04:22 | 2021-04-20T09:04:22 | 359,750,025 | 3 | 1 | CC-BY-4.0 | 2021-04-20T08:59:59 | 2021-04-20T08:59:59 | null | UTF-8 | C++ | false | false | 1,548 | ino | // These examples are from the Electronics Cookbook by Simon Monk
//https://github.com/LSatan/SmartRC-CC1101-Driver-Lib
// mod by Little_S@tan
#include <ELECHOUSE_CC1101_SRC_DRV.h>
const int n = 61;
void setup(){
Serial.begin(9600);
Serial.println("Rx");
ELECHOUSE_cc1101.setGDO(6,2); // set lib internal gdo pins (gdo0,gdo2).
ELECHOUSE_cc1101.setCCMode(1); // set config for internal transmission mode.
ELECHOUSE_cc1101.setModulation(0); // set modulation mode. 0 = 2-FSK, 1 = GFSK, 2 = ASK/OOK, 3 = 4-FSK, 4 = MSK.
ELECHOUSE_cc1101.setMHZ(433.92); // Here you can set your basic frequency. The lib calculates the frequency automatically (default = 433.92).The cc1101 can: 300-348 MHZ, 387-464MHZ and 779-928MHZ. Read More info from datasheet.
// ELECHOUSE_cc1101.setPA(10); // set TxPower. The following settings are possible depending on the frequency band. (-30 -20 -15 -10 -6 0 5 7 10 11 12) Default is max!
ELECHOUSE_cc1101.Init(); // must be set to initialize the cc1101!
ELECHOUSE_cc1101.SetRx(); // set Receive on.
}
byte buffer[61] = {0};
void loop(){
if (ELECHOUSE_cc1101.CheckReceiveFlag())
{
Serial.print("Rssi: ");
Serial.println(ELECHOUSE_cc1101.getRssi());
Serial.print("LQI: ");
Serial.println(ELECHOUSE_cc1101.getLqi());
int len = ELECHOUSE_cc1101.ReceiveData(buffer);
buffer[len] = '\0';
Serial.println((char *) buffer);
ELECHOUSE_cc1101.SetRx();
}
}
| [
"jserna@phoenixintelligencesecurity.com"
] | jserna@phoenixintelligencesecurity.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.