diff --git a/README.md b/README.md index b0019ad0e..e70eea688 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,18 @@ # ArcGIS Maps SDK Kotlin Samples -# Overview -ArcGIS Maps SDK for Kotlin v200.0.0 samples. The `main` branch of this repository contains sample app modules for the latest available version of the [ArcGIS Maps SDK Android Kotlin](https://developers.arcgis.com/kotlin/). Samples released under older versions can be found through the [git tags](https://github.com/Esri/arcgis-maps-sdk-kotlin-samples/tags). Please read our [wiki](https://github.com/Esri/arcgis-maps-sdk-kotlin-samples/wiki) for help with working with this repository. +## Overview + +ArcGIS Maps SDK for Kotlin v200.1.0 samples. The `main` branch of this repository contains sample app modules for the latest available version of the [ArcGIS Maps SDK Android Kotlin](https://developers.arcgis.com/kotlin/). Samples released under older versions can be found through the [git tags](https://github.com/Esri/arcgis-maps-sdk-kotlin-samples/tags). Please read our [wiki](https://github.com/Esri/arcgis-maps-sdk-kotlin-samples/wiki) for help with working with this repository. + +## Prerequisites -# Prerequisites * The samples are building with `compileSdkVersion 33` * [Android Studio](http://developer.android.com/sdk/index.html) * [An ArcGIS Developers API key](https://developers.arcgis.com/kotlin/get-started/#3-get-an-api-key) ## Developer Instructions -Please read our [developer instructions wiki page](https://github.com/Esri/arcgis-maps-sdk-kotlin-samples/wiki/dev-instructions) to set up your developer environment with Android Studio. Instructions include forking and cloning the repository for those new to Git. + +Please read our [developer instructions wiki page](https://github.com/Esri/arcgis-maps-sdk-kotlin-samples/wiki/Developer-Instructions) to set up your developer environment with Android Studio. Instructions include forking and cloning the repository for those new to Git. Once the project is cloned to disk you can import into Android Studio: @@ -17,29 +20,40 @@ Once the project is cloned to disk you can import into Android Studio: * Navigate to the **arcgis-maps-sdk-kotlin-samples/** folder and click **OK**. ## Accessing Esri location services + Accessing Esri location services, including basemaps, routing, and geocoding, requires authentication using either an API Key or an ArcGIS identity: - 1. API key: A permanent key that gives your application access to Esri location services. Visit your [ArcGIS Developers Dashboard](https://developers.arcgis.com/dashboard) to create a new API key or access an existing API key. - -The Android samples in this repository have been structured to use an API key, set once, which will run in all samples. Set your API key in the `gradle.properties` file located in the `/.gradle` folder within your home directory (`/Users//.gradle/gradle.properties`). The API_KEY property should contain quotes around the key itself: `API_KEY = "YOUR_API_KEY"` -2. ArcGIS identity: An ArcGIS named user account that is a member of an organization in ArcGIS Online or ArcGIS Enterprise. +### API key + +A permanent key that gives your application access to Esri location services. Visit your [ArcGIS Developers Dashboard](https://developers.arcgis.com/dashboard) to create a new API key or access an existing API key. +The Android samples in this repository have been structured to use an API key, set once, which will run in all samples. +Set your API key in the `gradle.properties` file located in the `/.gradle` folder within your home directory. +The API_KEY property should contain quotes around the key itself: +```gradle +API_KEY = "YOUR_API_KEY" // path: /Users//.gradle/gradle.properties +``` + +### ArcGIS identity + +An ArcGIS named user account that is a member of an organization in ArcGIS Online or ArcGIS Enterprise. ## Run a sample -Once you have set up your developer environment you can run any sample from within Android Studio by selecting the app module from the **Edit Configurations** drop down and clicking the **Run** button from the toolbar. + +Once you have set up your developer environment you can run any sample from within Android Studio by selecting the app module from the **Edit Configurations** drop down and clicking the **Run** button from the toolbar. ### Build/Run sample from Gradle + You can execute all the build tasks using the [Gradle Wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html) command line tool. It's available as a batch file for Windows (gradlew.bat) and a shell script for Linux/Mac (gradlew.sh) and it is accessible from the root of the project. -- Build a debug APK +* Build a debug APK ``` $ ./gradlew assembleDebug ``` -- Run the app +* Install the app on the device -**Device** -``` +```adb adb -d install path/to/sample.apk ``` @@ -53,8 +67,8 @@ Do you have something to [contribute](.github/CONTRIBUTING.md)? Send a pull requ Have a problem running one of the samples in this repo? Does the sample not work on a specific device? Have questions about how the code in this repo is working? Want to request a specific sample? In that case, [submit a new issue](https://github.com/Esri/arcgis-maps-sdk-kotlin-samples/issues). - ## Contributing + Anyone and everyone is welcome to [contribute](.github/CONTRIBUTING.md). We do accept pull requests. 1. Get Involved @@ -65,6 +79,7 @@ Anyone and everyone is welcome to [contribute](.github/CONTRIBUTING.md). We do a Please see our [guidelines for contributing doc](https://github.com/Esri/contributing/blob/master/README.md) ## Licensing + Copyright 2022 Esri 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 diff --git a/add-feature-layers/src/main/AndroidManifest.xml b/add-feature-layers/src/main/AndroidManifest.xml index 3e6fca19e..d2957b0d5 100644 --- a/add-feature-layers/src/main/AndroidManifest.xml +++ b/add-feature-layers/src/main/AndroidManifest.xml @@ -21,8 +21,7 @@ + android:exported="true"> diff --git a/add-feature-layers/src/main/java/com/esri/arcgismaps/sample/addfeaturelayers/MainActivity.kt b/add-feature-layers/src/main/java/com/esri/arcgismaps/sample/addfeaturelayers/MainActivity.kt index 68dda379c..ba3f1c2b6 100644 --- a/add-feature-layers/src/main/java/com/esri/arcgismaps/sample/addfeaturelayers/MainActivity.kt +++ b/add-feature-layers/src/main/java/com/esri/arcgismaps/sample/addfeaturelayers/MainActivity.kt @@ -34,16 +34,13 @@ import com.arcgismaps.mapping.BasemapStyle import com.arcgismaps.mapping.Viewpoint import com.arcgismaps.mapping.layers.FeatureLayer import com.arcgismaps.portal.Portal -import com.arcgismaps.portal.PortalItem +import com.arcgismaps.mapping.PortalItem import com.esri.arcgismaps.sample.addfeaturelayers.databinding.ActivityMainBinding import kotlinx.coroutines.launch import java.io.File - class MainActivity : AppCompatActivity() { - private val TAG = MainActivity::class.java.simpleName - // set up data binding for the activity private val activityMainBinding: ActivityMainBinding by lazy { DataBindingUtil.setContentView(this, R.layout.activity_main) @@ -102,7 +99,7 @@ class MainActivity : AppCompatActivity() { val serviceFeatureTable = ServiceFeatureTable(resources.getString(R.string.sample_service_url)) // create a feature layer with the feature table - val featureLayer = FeatureLayer(serviceFeatureTable) + val featureLayer = FeatureLayer.createWithFeatureTable(serviceFeatureTable) val viewpoint = Viewpoint(41.70, -88.20, 120000.0) // set the feature layer on the map setFeatureLayer(featureLayer, viewpoint) @@ -119,7 +116,7 @@ class MainActivity : AppCompatActivity() { val portalItem = PortalItem(portal, "1759fd3e8a324358a0c58d9a687a8578") portalItem.load().onSuccess { // create the feature layer with the item - val featureLayer = FeatureLayer(portalItem) + val featureLayer = FeatureLayer.createWithItem(portalItem) // set the viewpoint to Portland, Oregon val viewpoint = Viewpoint(45.5266, -122.6219, 2500.0) // set the feature layer on the map @@ -147,7 +144,7 @@ class MainActivity : AppCompatActivity() { return } // create a feature layer with the feature table - val featureLayer = FeatureLayer(geodatabaseFeatureTable) + val featureLayer = FeatureLayer.createWithFeatureTable(geodatabaseFeatureTable) // set the viewpoint to Malibu, California val viewpoint = Viewpoint(34.0772, -118.7989, 600000.0) // set the feature layer on the map @@ -170,7 +167,7 @@ class MainActivity : AppCompatActivity() { // get the first feature table in the geopackage val geoPackageFeatureTable = geoPackage.geoPackageFeatureTables.first() // create a feature layer with the feature table - val featureLayer = FeatureLayer(geoPackageFeatureTable) + val featureLayer = FeatureLayer.createWithFeatureTable(geoPackageFeatureTable) // set the viewpoint to Denver, CO val viewpoint = Viewpoint(39.7294, -104.8319, 500000.0) // set the feature layer on the map @@ -193,7 +190,7 @@ class MainActivity : AppCompatActivity() { val shapeFileTable = ShapefileFeatureTable(file.path) shapeFileTable.load().onSuccess { // create a feature layer for the shapefile feature table - val featureLayer = FeatureLayer(shapeFileTable) + val featureLayer = FeatureLayer.createWithFeatureTable(shapeFileTable) // set the viewpoint to Scotland val viewpoint = Viewpoint(56.641344, -3.889066, 6000000.0) // set the feature layer on the map @@ -205,7 +202,7 @@ class MainActivity : AppCompatActivity() { private fun showError(message: String) { Toast.makeText(this@MainActivity, message, Toast.LENGTH_SHORT).show() - Log.e(TAG, message) + Log.e(localClassName, message) } /** diff --git a/add-feature-layers/src/main/res/values/colors.xml b/add-feature-layers/src/main/res/values/colors.xml deleted file mode 100644 index 8c5a27588..000000000 --- a/add-feature-layers/src/main/res/values/colors.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - #9243cf - #7a2ab7 - #7a2ab7 - diff --git a/add-feature-layers/src/main/res/values/styles.xml b/add-feature-layers/src/main/res/values/styles.xml deleted file mode 100644 index 1c56072bd..000000000 --- a/add-feature-layers/src/main/res/values/styles.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/add-features-with-contingent-values/.gitignore b/add-features-with-contingent-values/.gitignore new file mode 100644 index 000000000..796b96d1c --- /dev/null +++ b/add-features-with-contingent-values/.gitignore @@ -0,0 +1 @@ +/build diff --git a/add-features-with-contingent-values/README.md b/add-features-with-contingent-values/README.md new file mode 100644 index 000000000..4a7c828e0 --- /dev/null +++ b/add-features-with-contingent-values/README.md @@ -0,0 +1,55 @@ +# Add features with contingent values + +Create and add features whose attribute values satisfy a predefined set of contingencies. + +![Add features with contingent values](add-features-with-contingent-values.png) + +## Use case + +Contingent values are a data design feature that allow you to make values in one field dependent on values in another field. Your choice for a value on one field further constrains the domain values that can be placed on another field. In this way, contingent values enforce data integrity by applying additional constraints to reduce the number of valid field inputs. + +For example, a field crew working in a sensitive habitat area may be required to stay a certain distance away from occupied bird nests, but the size of that exclusion area differs depending on the bird's level of protection according to presiding laws. Surveyors can add points of bird nests in the work area and their selection of the size of the exclusion area will be contingent on the values in other attribute fields. + +## How to use the sample + +Tap on the map to add a feature symbolizing a bird's nest. Then choose values describing the nest's status, protection, and buffer size. Notice how different values are available depending on the values of preceding fields. Once the contingent values are validated, tap "Done" to add the feature to the map. + +## How it works + +1. Create and load the `Geodatabase` from the mobile geodatabase location on file. +2. Load the first `GeodatabaseFeatureTable`. +3. Load the `ContingentValuesDefinition` from the feature table. +4. Create a new `FeatureLayer` from the feature table and add it to the map. +5. Create a new `ArcGISFeature` using `GeodatabaseFeatureTable.createFeature()` +6. Get the first field by name using `ArcGISFeatureTable.fields.find{ }`. +7. Then get the `Field.domain` as an `CodedValueDomain`. +8. Get the coded value domain's `codedValues` to get an array of `CodedValue`'s. +9. After selecting a value from the initial coded values for the first field, retrieve the remaining valid contingent values for each field as you select the values for the attributes. + i. Get the `ContingentValueResult`s by using `ArcGISFeatureTable.getContingentValues(ArcGISFeature, "field_name")` with the feature and the target field by name. + ii. Get an array of valid `ContingentValues` from `ContingentValuesResult.contingentValuesByFieldGroup` dictionary with the name of the relevant field group. + iii. Iterate through the array of valid contingent values to create an array of `ContingentCodedValue` names or the minimum and maximum values of a `ContingentRangeValue` depending on the type of `ContingentValue` returned. +10. Validate the feature's contingent values by using `validateContingencyConstraints(feature)` with the current feature. If the resulting array is empty, the selected values are valid. + +## Relevant API + +* ArcGISFeatureTable +* CodedValue +* CodedValueDomain +* ContingencyConstraintViolation +* ContingentCodedValue +* ContingentRangeValue +* ContingentValuesDefinition +* ContingentValuesResult + +## About the data + +This sample uses the [Contingent values birds nests](https://arcgis.com/home/item.html?id=e12b54ea799f4606a2712157cf9f6e41) mobile geodatabase and the [Fillmore topographic map](https://arcgis.com/home/item.html?id=b5106355f1634b8996e634c04b6a930a) vector tile package for the basemap. +The mobile geodatabase contains birds nests in the Fillmore area, defined with contingent values. Each feature contains information about its status, protection, and buffer size. + +## Additional information + +Learn more about contingent values and how to utilize them on the [ArcGIS Pro documentation](https://pro.arcgis.com/en/pro-app/latest/help/data/geodatabases/overview/contingent-values.htm). + +## Tags + +coded values, contingent values, feature table, geodatabase diff --git a/add-features-with-contingent-values/README.metadata.json b/add-features-with-contingent-values/README.metadata.json new file mode 100644 index 000000000..0c87a91c4 --- /dev/null +++ b/add-features-with-contingent-values/README.metadata.json @@ -0,0 +1,42 @@ +{ + "category": "Edit and Manage Data", + "description": "Create and add features whose attribute values satisfy a predefined set of contingencies.", + "formal_name": "AddFeaturesWithContingentValues", + "ignore": false, + "images": [ + "add-features-with-contingent-values.png" + ], + "keywords": [ + "coded values", + "contingent values", + "feature table", + "geodatabase", + "ArcGISFeatureTable", + "CodedValue", + "CodedValueDomain", + "ContingencyConstraintViolation", + "ContingentCodedValue", + "ContingentRangeValue", + "ContingentValuesDefinition", + "ContingentValuesResult" + ], + "language": "kotlin", + "redirect_from": [ + "/android/latest/sample-code/add-features-with-contingent-values.htm" + ], + "relevant_apis": [ + "ArcGISFeatureTable", + "CodedValue", + "CodedValueDomain", + "ContingencyConstraintViolation", + "ContingentCodedValue", + "ContingentRangeValue", + "ContingentValuesDefinition", + "ContingentValuesResult" + ], + "snippets": [ + "src/main/java/com/esri/arcgismaps/sample/addfeatureswithcontingentvalues/MainActivity.kt", + "src/main/java/com/esri/arcgismaps/sample/addfeatureswithcontingentvalues/DownloadActivity.kt" + ], + "title": "Add features with contingent values" +} diff --git a/add-features-with-contingent-values/add-features-with-contingent-values.png b/add-features-with-contingent-values/add-features-with-contingent-values.png new file mode 100644 index 000000000..095140cb8 Binary files /dev/null and b/add-features-with-contingent-values/add-features-with-contingent-values.png differ diff --git a/add-features-with-contingent-values/build.gradle b/add-features-with-contingent-values/build.gradle new file mode 100644 index 000000000..94c465b5f --- /dev/null +++ b/add-features-with-contingent-values/build.gradle @@ -0,0 +1,36 @@ +apply plugin: 'com.android.application' +apply plugin: 'org.jetbrains.kotlin.android' + +android { + compileSdkVersion rootProject.ext.compileSdkVersion + + defaultConfig { + applicationId "com.esri.arcgismaps.sample.addfeatureswithcontingentvalues" + minSdkVersion rootProject.ext.minSdkVersion + targetSdkVersion rootProject.ext.targetSdkVersion + versionCode rootProject.ext.versionCode + versionName rootProject.ext.versionName + buildConfigField("String", "API_KEY", API_KEY) + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } + + buildFeatures { + dataBinding true + } + + namespace 'com.esri.arcgismaps.sample.addfeatureswithcontingentvalues' +} + +dependencies { + // lib dependencies from rootProject build.gradle + implementation "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion" + implementation "com.google.android.material:material:$materialVersion" + implementation project(path: ':samples-lib') + implementation 'androidx.appcompat:appcompat:1.5.1' +} diff --git a/add-features-with-contingent-values/proguard-rules.pro b/add-features-with-contingent-values/proguard-rules.pro new file mode 100644 index 000000000..f1b424510 --- /dev/null +++ b/add-features-with-contingent-values/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile diff --git a/add-features-with-contingent-values/src/main/AndroidManifest.xml b/add-features-with-contingent-values/src/main/AndroidManifest.xml new file mode 100644 index 000000000..c857c45c5 --- /dev/null +++ b/add-features-with-contingent-values/src/main/AndroidManifest.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/add-features-with-contingent-values/src/main/java/com/esri/arcgismaps/sample/addfeatureswithcontingentvalues/DownloadActivity.kt b/add-features-with-contingent-values/src/main/java/com/esri/arcgismaps/sample/addfeatureswithcontingentvalues/DownloadActivity.kt new file mode 100644 index 000000000..30fee2596 --- /dev/null +++ b/add-features-with-contingent-values/src/main/java/com/esri/arcgismaps/sample/addfeatureswithcontingentvalues/DownloadActivity.kt @@ -0,0 +1,22 @@ +package com.esri.arcgismaps.sample.addfeatureswithcontingentvalues + +import android.content.Intent +import android.os.Bundle +import com.esri.arcgismaps.sample.sampleslib.DownloaderActivity + +class DownloadActivity : DownloaderActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + downloadAndStartSample( + Intent(this, MainActivity::class.java), + // get the app name of the sample + getString(R.string.app_name), + listOf( + // Geodatabase containing bird nests defined with contingent values + "https://www.arcgis.com/home/item.html?id=e12b54ea799f4606a2712157cf9f6e41", + // Vector tile package of the Fillmore area + "https://www.arcgis.com/home/item.html?id=b5106355f1634b8996e634c04b6a930a" + ) + ) + } +} diff --git a/add-features-with-contingent-values/src/main/java/com/esri/arcgismaps/sample/addfeatureswithcontingentvalues/MainActivity.kt b/add-features-with-contingent-values/src/main/java/com/esri/arcgismaps/sample/addfeatureswithcontingentvalues/MainActivity.kt new file mode 100644 index 000000000..fbc5fb2dd --- /dev/null +++ b/add-features-with-contingent-values/src/main/java/com/esri/arcgismaps/sample/addfeatureswithcontingentvalues/MainActivity.kt @@ -0,0 +1,465 @@ +/* Copyright 2022 Esri + * + * 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. + * + */ + +package com.esri.arcgismaps.sample.addfeatureswithcontingentvalues + +import android.os.Bundle +import android.util.Log +import android.view.ViewGroup +import android.widget.ArrayAdapter +import android.widget.AutoCompleteTextView +import androidx.appcompat.app.AppCompatActivity +import androidx.databinding.DataBindingUtil +import androidx.lifecycle.lifecycleScope +import com.arcgismaps.ApiKey +import com.arcgismaps.ArcGISEnvironment +import com.arcgismaps.Color +import com.arcgismaps.data.ArcGISFeature +import com.arcgismaps.data.ArcGISFeatureTable +import com.arcgismaps.data.CodedValue +import com.arcgismaps.data.CodedValueDomain +import com.arcgismaps.data.ContingentCodedValue +import com.arcgismaps.data.ContingentRangeValue +import com.arcgismaps.data.Feature +import com.arcgismaps.data.Geodatabase +import com.arcgismaps.data.QueryParameters +import com.arcgismaps.geometry.GeometryEngine +import com.arcgismaps.geometry.Point +import com.arcgismaps.mapping.ArcGISMap +import com.arcgismaps.mapping.Basemap +import com.arcgismaps.mapping.Viewpoint +import com.arcgismaps.mapping.layers.ArcGISVectorTiledLayer +import com.arcgismaps.mapping.layers.FeatureLayer +import com.arcgismaps.mapping.symbology.SimpleFillSymbol +import com.arcgismaps.mapping.symbology.SimpleFillSymbolStyle +import com.arcgismaps.mapping.symbology.SimpleLineSymbol +import com.arcgismaps.mapping.symbology.SimpleLineSymbolStyle +import com.arcgismaps.mapping.symbology.SimpleMarkerSymbol +import com.arcgismaps.mapping.symbology.SimpleMarkerSymbolStyle +import com.arcgismaps.mapping.view.Graphic +import com.arcgismaps.mapping.view.GraphicsOverlay +import com.esri.arcgismaps.sample.addfeatureswithcontingentvalues.databinding.ActivityMainBinding +import com.esri.arcgismaps.sample.addfeatureswithcontingentvalues.databinding.AddFeatureLayoutBinding +import com.google.android.material.bottomsheet.BottomSheetBehavior +import com.google.android.material.bottomsheet.BottomSheetDialog +import com.google.android.material.snackbar.Snackbar +import kotlinx.coroutines.launch +import java.io.File + +class MainActivity : AppCompatActivity() { + + // set up data binding for the activity + private val activityMainBinding: ActivityMainBinding by lazy { + DataBindingUtil.setContentView(this, R.layout.activity_main) + } + + private val bottomSheetBinding by lazy { + AddFeatureLayoutBinding.inflate(layoutInflater) + } + + private val mapView by lazy { + activityMainBinding.mapView + } + + private val provisionPath: String by lazy { + getExternalFilesDir(null)?.path.toString() + File.separator + getString(R.string.app_name) + } + + // mobile database containing offline feature data. geodatabase is closed on app exit + private val geodatabase: Geodatabase by lazy { + Geodatabase("${cacheDir.path}/ContingentValuesBirdNests.geodatabase") + } + + // graphic overlay instance to add the feature graphic to the map + private val graphicsOverlay = GraphicsOverlay() + + // instance of the contingent feature to be added to the map + private var feature: ArcGISFeature? = null + + // instance of the feature table retrieved from the geodatabase, updates when new feature is added + private var featureTable: ArcGISFeatureTable? = null + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + + // authentication with an API key or named user is + // required to access basemaps and other location services + ArcGISEnvironment.apiKey = ApiKey.create(BuildConfig.API_KEY) + lifecycle.addObserver(mapView) + + // use the offline vector tiled layer as a basemap + val fillmoreVectorTiledLayer = ArcGISVectorTiledLayer( + "$provisionPath/FillmoreTopographicMap.vtpk" + ) + + mapView.apply { + // set the basemap layer and the graphic overlay to the MapView + map = ArcGISMap(Basemap(fillmoreVectorTiledLayer)) + graphicsOverlays.add(graphicsOverlay) + } + + // add a listener to the MapView to detect when + // a user has performed a single tap to add a new feature + lifecycleScope.launch { + mapView.onSingleTapConfirmed.collect { + // open a bottom sheet view to add the feature + it.mapPoint?.let { mapPoint -> createBottomSheet(mapPoint) } + } + } + + // create a temporary directory to use the geodatabase file + createGeodatabaseCacheDirectory() + + lifecycleScope.launch { + // retrieve and load the offline mobile geodatabase file from the cache directory + geodatabase.load().getOrElse { + showError("Error loading GeoDatabase: ${it.message}") + } + + // get the first geodatabase feature table + val featureTable = geodatabase.featureTables.firstOrNull() + ?: return@launch showError("No feature table found in geodatabase") + // load the geodatabase feature table + featureTable.load().getOrElse { + return@launch showError(it.message.toString()) + } + + // create and load the feature layer from the feature table + val featureLayer = FeatureLayer.createWithFeatureTable(featureTable) + // add the feature layer to the map + mapView.map?.operationalLayers?.add(featureLayer) + + // set the map's viewpoint to the feature layer's full extent + val extent = featureLayer.fullExtent + ?: return@launch showError("Error retrieving extent of the feature layer") + mapView.setViewpoint(Viewpoint(extent)) + + // keep the instance of the featureTable + this@MainActivity.featureTable = featureTable + + // add buffer graphics for the feature layer + queryFeatures() + } + } + + /** + * Geodatabase creates and uses various temporary files while processing a database, + * which will need to be cleared before looking up the [geodatabase] again. + * A copy of the original geodatabase file is created in the cache folder. + */ + private fun createGeodatabaseCacheDirectory() { + // clear cache directory + File(cacheDir.path).deleteRecursively() + // copy over the original Geodatabase file to be used in the temp cache directory + File("$provisionPath/ContingentValuesBirdNests.geodatabase").copyTo( + File("${cacheDir.path}/ContingentValuesBirdNests.geodatabase") + ) + } + + /** + * Create buffer graphics for the features and adds the graphics to + * the [graphicsOverlay] + */ + private suspend fun queryFeatures() { + // clear the existing graphics + graphicsOverlay.graphics.clear() + + // create buffer graphics for the features + val queryParameters = QueryParameters().apply { + // set the where clause to filter for buffer sizes greater than 0 + whereClause = "BufferSize > 0" + } + + // query the features using the queryParameters on the featureTable + val featureQueryResult = featureTable?.queryFeatures(queryParameters)?.getOrThrow() + // call get on the future to get the result + val featureResultList = featureQueryResult?.toList() + + if (featureResultList != null && featureResultList.isNotEmpty()) { + // create list of graphics for each query result + val graphics = featureResultList.map { createGraphic(it) } + // add the graphics to the graphics overlay + graphicsOverlay.graphics.addAll(graphics) + } else { + showError("No features found with BufferSize > 0") + } + } + + /** + * Create a graphic for the given [feature] and returns a Graphic with the features attributes + */ + private fun createGraphic(feature: Feature): Graphic { + // get the feature's buffer size + val bufferSize = feature.attributes["BufferSize"] as Int + // get a polygon using the feature's buffer size and geometry + val polygon = feature.geometry?.let { GeometryEngine.bufferOrNull(it, bufferSize.toDouble()) } + // create the outline for the buffers + val lineSymbol = SimpleLineSymbol(SimpleLineSymbolStyle.Solid, Color.black, 2f) + // create the buffer symbol + val bufferSymbol = SimpleFillSymbol( + SimpleFillSymbolStyle.ForwardDiagonal, Color.red, lineSymbol + ) + // create an graphic using the geometry and fill symbol + return Graphic(polygon, bufferSymbol) + } + + /** + * Creates a BottomSheetDialog view to handle contingent value interaction. + * Once the contingent values have been set and the apply button is clicked, + * the function will call validateContingency() to add the feature at the [mapPoint]. + */ + private fun createBottomSheet(mapPoint: Point) { + // creates a new BottomSheetDialog + val bottomSheet = BottomSheetDialog(this).apply { + behavior.state = BottomSheetBehavior.STATE_EXPANDED + } + + // set up the first content value attribute + setUpStatusAttributes() + + // clear and set bottom sheet content view to layout, + // to be able to set the content view on each bottom sheet draw + if (bottomSheetBinding.root.parent != null) { + (bottomSheetBinding.root.parent as ViewGroup).removeAllViews() + } + + // reset feature to null since this is a new feature + feature = null + + bottomSheetBinding.apply { + + // reset bottom sheet values, this is needed to showcase contingent values behavior + statusInputLayout.editText?.setText("") + protectionInputLayout.editText?.setText("") + selectedBuffer.text = "" + protectionInputLayout.isEnabled = false + bufferSeekBar.isEnabled = false + bufferSeekBar.value = bufferSeekBar.valueFrom + + // set apply button to validate and apply contingency feature on map + applyTv.setOnClickListener { + // check if the contingent features set is valid and set it to the map if valid + validateContingency(mapPoint) + bottomSheet.dismiss() + } + + // dismiss on cancel clicked + cancelTv.setOnClickListener { bottomSheet.dismiss() } + } + + // set the content view to the root of the binding layout + bottomSheet.setContentView(bottomSheetBinding.root) + // display the bottom sheet view + bottomSheet.show() + } + + /** + * Retrieve the status fields, add the fields to a ContingentValueDomain, and set the values to the spinner + * When status attribute selected, createFeature() is called. + */ + private fun setUpStatusAttributes() { + // get the first field by name + val statusField = featureTable?.fields?.find { field -> field.name == "Status" } + // get the field's domains as coded value domain + val codedValueDomain = statusField?.domain as CodedValueDomain + // get the coded value domain's coded values + val statusCodedValues = codedValueDomain.codedValues + // get the selected index if applicable + val statusNames = statusCodedValues.map { it.name } + // get the items to be added to the spinner adapter + val adapter = ArrayAdapter(bottomSheetBinding.root.context, R.layout.list_item, statusNames) + (bottomSheetBinding.statusInputLayout.editText as AutoCompleteTextView).apply { + setAdapter(adapter) + setOnItemClickListener { _, _, position, _ -> + // get the CodedValue of the item selected, and create a feature needed for feature attributes + createFeature(statusCodedValues[position]) + } + } + } + + /** + * Set up the [feature] using the status attribute's coded value + * by loading the [featureTable]'s Contingent Value Definition. + * This function calls setUpProtectionAttributes() once the [feature] has been set + */ + private fun createFeature(codedValue: CodedValue) { + // get the contingent values definition from the feature table + val contingentValueDefinition = featureTable?.contingentValuesDefinition + if (contingentValueDefinition != null) { + lifecycleScope.launch { + // load the contingent values definition + contingentValueDefinition.load().getOrElse { + showError("Error loading the ContingentValuesDefinition") + } + // create a feature from the feature table and set the initial attribute + feature = featureTable?.createFeature() as ArcGISFeature + feature?.attributes?.set("Status", codedValue.code) + setUpProtectionAttributes() + } + } else { + showError("Error retrieving ContingentValuesDefinition from the FeatureTable") + } + } + + /** + * Retrieve the protection attribute fields, add the fields to a ContingentCodedValue, and set the values to the spinner + * When status attribute selected, showBufferSeekbar() is called. + */ + private fun setUpProtectionAttributes() { + // set the bottom sheet view to enable the Protection attribute, and disable input elsewhere + bottomSheetBinding.apply { + protectionInputLayout.isEnabled = true + bufferSeekBar.isEnabled = false + bufferSeekBar.value = bufferSeekBar.valueFrom + protectionInputLayout.editText?.setText("") + selectedBuffer.text = "" + } + + // get the contingent value results with the feature for the protection field + val contingentValuesResult = feature?.let { + featureTable?.getContingentValuesOrNull(it, "Protection") + } + + // get the list of contingent values by field group + val contingentValues = contingentValuesResult?.byFieldGroup?.get("ProtectionFieldGroup") + + // convert the list of ContingentValues to a list of CodedValue + val protectionCodedValues = + contingentValues?.map { (it as ContingentCodedValue).codedValue } + ?: return showError("Error getting coded values by field group") + + // get the attribute names for each coded value + val protectionNames = protectionCodedValues.map { it.name } + + // set the items to be added to the spinner adapter + val adapter = ArrayAdapter( + bottomSheetBinding.root.context, R.layout.list_item, protectionNames + ) + + // set the choices of protection attribute values + (bottomSheetBinding.protectionInputLayout.editText as AutoCompleteTextView).apply { + setAdapter(adapter) + setOnItemClickListener { _, _, position, _ -> + // set the protection CodedValue of the item selected + feature?.attributes?.set("Protection", protectionCodedValues[position].code) + // enable buffer seekbar + showBufferSeekbar() + } + } + } + + /** + * Retrieve the buffer attribute fields, add the fields + * to a ContingentRangeValue, and set the values to a SeekBar + */ + private fun showBufferSeekbar() { + // set the bottom sheet view to enable the buffer attribute + bottomSheetBinding.apply { + bufferSeekBar.isEnabled = true + selectedBuffer.text = "" + } + + // get the contingent value results using the feature and field + val contingentValueResult = feature?.let { + featureTable?.getContingentValuesOrNull(it, "BufferSize") + } + + // get the contingent rang value of the buffer size field group + val bufferSizeRangeValue = contingentValueResult?.byFieldGroup?.get("BufferSizeFieldGroup") + ?.get(0) as ContingentRangeValue + + // set the minimum and maximum possible buffer sizes + val minValue = bufferSizeRangeValue.minValue as Int + val maxValue = bufferSizeRangeValue.maxValue as Int + + // check if there can be a max value, if not disable SeekBar + // & set value to attribute size to 0 + if (maxValue > 0) { + // get SeekBar instance from the binding layout + bottomSheetBinding.bufferSeekBar.apply { + // set the min, max and current value of the SeekBar + valueFrom = minValue.toFloat() + valueTo = maxValue.toFloat() + value = valueFrom + // set the initial attribute and the text to the min of the ContingentRangeValue + feature?.attributes?.set("BufferSize", value.toInt()) + bottomSheetBinding.selectedBuffer.text = value.toInt().toString() + // set the change listener to update the attribute value and the displayed value to the SeekBar position + addOnChangeListener { _, value, _ -> + feature?.attributes?.set("BufferSize", value.toInt()) + bottomSheetBinding.selectedBuffer.text = value.toInt().toString() + } + } + } else { + // max value is 0, so disable seekbar and update the attribute value accordingly + bottomSheetBinding.apply { + bufferSeekBar.isEnabled = false + selectedBuffer.text = "0" + } + feature?.attributes?.set("BufferSize", 0) + } + } + + /** + * Ensure that the selected values are a valid combination. + * If contingencies are valid, then display [feature] on the [mapPoint] + */ + private fun validateContingency(mapPoint: Point) { + // check if all the features have been set + if (featureTable == null) { + showError("Input all values to add a feature to the map") + return + } + + // validate the feature's contingencies + val contingencyViolations = feature?.let { + featureTable?.validateContingencyConstraints(it) + } ?: return showError("No feature attribute was selected") + + // if there are no contingency violations + if (contingencyViolations.isEmpty()) { + // the feature is valid and ready to add to the feature table + // create a symbol to represent a bird's nest + val symbol = SimpleMarkerSymbol(SimpleMarkerSymbolStyle.Circle, Color.black, 11F) + // add the graphic to the graphics overlay + graphicsOverlay.graphics.add(Graphic(mapPoint, symbol)) + + // set the geometry of the feature to the map point + feature?.geometry = mapPoint + + // create the graphic of the feature + val graphic = feature?.let { createGraphic(it) } + // add the graphic to the graphics overlay + graphic?.let { graphicsOverlay.graphics.add(it) } + + // add the feature to the feature table + lifecycleScope.launch { + feature?.let { featureTable?.addFeature(it) } + feature?.load()?.getOrElse { + return@launch showError(it.message.toString()) + } + } + } else { + showError("Invalid contingent values: " + (contingencyViolations.size) + " violations found.") + } + + } + + private fun showError(message: String) { + Log.e(localClassName, message) + Snackbar.make(mapView, message, Snackbar.LENGTH_SHORT).show() + } +} diff --git a/add-features-with-contingent-values/src/main/res/drawable-v24/ic_launcher_foreground.xml b/add-features-with-contingent-values/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 000000000..c7bd21dbd --- /dev/null +++ b/add-features-with-contingent-values/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + diff --git a/add-features-with-contingent-values/src/main/res/drawable/ic_launcher_background.xml b/add-features-with-contingent-values/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 000000000..6d8cae103 --- /dev/null +++ b/add-features-with-contingent-values/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/add-features-with-contingent-values/src/main/res/layout/activity_main.xml b/add-features-with-contingent-values/src/main/res/layout/activity_main.xml new file mode 100644 index 000000000..b5c4aee8f --- /dev/null +++ b/add-features-with-contingent-values/src/main/res/layout/activity_main.xml @@ -0,0 +1,10 @@ + + + + + + diff --git a/add-features-with-contingent-values/src/main/res/layout/add_feature_layout.xml b/add-features-with-contingent-values/src/main/res/layout/add_feature_layout.xml new file mode 100644 index 000000000..3c2f38684 --- /dev/null +++ b/add-features-with-contingent-values/src/main/res/layout/add_feature_layout.xml @@ -0,0 +1,182 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/add-features-with-contingent-values/src/main/res/layout/list_item.xml b/add-features-with-contingent-values/src/main/res/layout/list_item.xml new file mode 100644 index 000000000..a52f61631 --- /dev/null +++ b/add-features-with-contingent-values/src/main/res/layout/list_item.xml @@ -0,0 +1,8 @@ + diff --git a/add-features-with-contingent-values/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/add-features-with-contingent-values/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 000000000..6b78462d6 --- /dev/null +++ b/add-features-with-contingent-values/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/add-features-with-contingent-values/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/add-features-with-contingent-values/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 000000000..6b78462d6 --- /dev/null +++ b/add-features-with-contingent-values/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/add-features-with-contingent-values/src/main/res/mipmap-hdpi/ic_launcher.png b/add-features-with-contingent-values/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..a2f590828 Binary files /dev/null and b/add-features-with-contingent-values/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/add-features-with-contingent-values/src/main/res/mipmap-hdpi/ic_launcher_round.png b/add-features-with-contingent-values/src/main/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 000000000..1b5239980 Binary files /dev/null and b/add-features-with-contingent-values/src/main/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/add-features-with-contingent-values/src/main/res/mipmap-mdpi/ic_launcher.png b/add-features-with-contingent-values/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..ff10afd6e Binary files /dev/null and b/add-features-with-contingent-values/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/add-features-with-contingent-values/src/main/res/mipmap-mdpi/ic_launcher_round.png b/add-features-with-contingent-values/src/main/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 000000000..115a4c768 Binary files /dev/null and b/add-features-with-contingent-values/src/main/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/add-features-with-contingent-values/src/main/res/mipmap-xhdpi/ic_launcher.png b/add-features-with-contingent-values/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..dcd3cd808 Binary files /dev/null and b/add-features-with-contingent-values/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/add-features-with-contingent-values/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/add-features-with-contingent-values/src/main/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 000000000..459ca609d Binary files /dev/null and b/add-features-with-contingent-values/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/add-features-with-contingent-values/src/main/res/mipmap-xxhdpi/ic_launcher.png b/add-features-with-contingent-values/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..8ca12fe02 Binary files /dev/null and b/add-features-with-contingent-values/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/add-features-with-contingent-values/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/add-features-with-contingent-values/src/main/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 000000000..8e19b410a Binary files /dev/null and b/add-features-with-contingent-values/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/add-features-with-contingent-values/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/add-features-with-contingent-values/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..b824ebdd4 Binary files /dev/null and b/add-features-with-contingent-values/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/add-features-with-contingent-values/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/add-features-with-contingent-values/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 000000000..4c19a13c2 Binary files /dev/null and b/add-features-with-contingent-values/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/add-features-with-contingent-values/src/main/res/values/strings.xml b/add-features-with-contingent-values/src/main/res/values/strings.xml new file mode 100644 index 000000000..cd7f448cd --- /dev/null +++ b/add-features-with-contingent-values/src/main/res/values/strings.xml @@ -0,0 +1,11 @@ + + Add features with contingent values + The options will vary depending on which values are selected + Add Feature + Apply + Cancel + Set the attributes: + Select status attribute + Select protection attribute + Exclusion area buffer size + diff --git a/add-web-tiled-layer/.gitignore b/add-web-tiled-layer/.gitignore new file mode 100644 index 000000000..796b96d1c --- /dev/null +++ b/add-web-tiled-layer/.gitignore @@ -0,0 +1 @@ +/build diff --git a/add-web-tiled-layer/README.md b/add-web-tiled-layer/README.md new file mode 100644 index 000000000..18bbe3bc9 --- /dev/null +++ b/add-web-tiled-layer/README.md @@ -0,0 +1,44 @@ +# Add web tiled layer + +Display a web tiled layer. + +![Image of add web tiled layer](add-web-tiled-layer.png) + +## Use case + +Tiled map services are a set of pre-generated images (e.g. "tiles") arranged in folders for each row, column, and zoom level. As you navigate the map, map tiles are requested for the current extent. `ArcGISTiledLayer` and `WmtsLayer` are types of tiled map services used for specific data types. `WebTiledLayer` is useful for displaying other data sources that contain tiles arranged in a row/column/level directory structure, such as OpenStreetMap. + +## How to use the sample + +Run the sample and a map will appear. As you navigate the map, map tiles will be fetched automatically and displayed on the map. + +## How it works + +1. Create a `WebTiledLayer` from a URL and a list of subdomains using `WebTiledLayer.create(urlTemplate, subDomains)`. +2. Set the `attribution` property on the web tiled layer. Note: this is a necessary step because web tiled services don't have associated service metadata. +3. Create a new `Basemap` from the layer and apply it to the mapView for display. + +## Relevant API + +* Basemap +* WebTiledLayer + +## About the data + +The basemap in this sample is provided by [Stamen Design](http://maps.stamen.com). Stamen publishes tiled services based on OpenStreetMap data with several unique styles applied. + +## Additional information + +Web tiled services use a uniform addressing scheme with pre-rendered tiles. Image tiles are accessed via a URL template string, with parameters for subdomain, level, column, and row. + +* Subdomain is optional and allows ArcGIS Maps SDK to balance requests among multiple servers for enhanced performance. +* Level, row, and column select the tiles to load based on the visible extent of the map. + +For more information about web tiled layers, see the following resources: + +* [Wikipedia: tiled web maps](https://en.wikipedia.org/wiki/Tiled_web_map) +* [ArcGIS Pro: Share a web tile layer](http://pro.arcgis.com/en/pro-app/help/sharing/overview/web-tile-layer.htm) + +## Tags + +layer, OGC, Open Street Map, OpenStreetMap, stamen.com, tiled, tiles diff --git a/add-web-tiled-layer/README.metadata.json b/add-web-tiled-layer/README.metadata.json new file mode 100644 index 000000000..09484b65e --- /dev/null +++ b/add-web-tiled-layer/README.metadata.json @@ -0,0 +1,30 @@ +{ + "category": "Layers", + "description": "Display a web tiled layer.", + "formal_name": "AddWebTiledLayer", + "ignore": false, + "images": [ + "add-web-tiled-layer.png" + ], + "keywords": [ + "OGC", + "Open Street Map", + "OpenStreetMap", + "layer", + "stamen.com", + "tiled", + "tiles", + "Basemap", + "WebTiledLayer" + ], + "language": "kotlin", + "redirect_from": "", + "relevant_apis": [ + "Basemap", + "WebTiledLayer" + ], + "snippets": [ + "src/main/java/com/esri/arcgismaps/sample/addwebtiledlayer/MainActivity.kt" + ], + "title": "Add web tiled layer" +} diff --git a/add-web-tiled-layer/add-web-tiled-layer.png b/add-web-tiled-layer/add-web-tiled-layer.png new file mode 100644 index 000000000..3e33986ed Binary files /dev/null and b/add-web-tiled-layer/add-web-tiled-layer.png differ diff --git a/add-web-tiled-layer/build.gradle b/add-web-tiled-layer/build.gradle new file mode 100644 index 000000000..4b88f51ba --- /dev/null +++ b/add-web-tiled-layer/build.gradle @@ -0,0 +1,35 @@ +apply plugin: 'com.android.application' +apply plugin: 'org.jetbrains.kotlin.android' + +android { + compileSdkVersion rootProject.ext.compileSdkVersion + + defaultConfig { + applicationId "com.esri.arcgismaps.sample.addwebtiledlayer" + minSdkVersion rootProject.ext.minSdkVersion + targetSdkVersion rootProject.ext.targetSdkVersion + versionCode rootProject.ext.versionCode + versionName rootProject.ext.versionName + buildConfigField("String", "API_KEY", API_KEY) + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } + + buildFeatures { + dataBinding true + } + + namespace 'com.esri.arcgismaps.sample.addwebtiledlayer' +} + +dependencies { + // lib dependencies from rootProject build.gradle + implementation "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion" + implementation "com.google.android.material:material:$materialVersion" + implementation project(path: ':samples-lib') +} diff --git a/add-web-tiled-layer/proguard-rules.pro b/add-web-tiled-layer/proguard-rules.pro new file mode 100644 index 000000000..f1b424510 --- /dev/null +++ b/add-web-tiled-layer/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile diff --git a/add-web-tiled-layer/src/main/AndroidManifest.xml b/add-web-tiled-layer/src/main/AndroidManifest.xml new file mode 100644 index 000000000..c6647b46d --- /dev/null +++ b/add-web-tiled-layer/src/main/AndroidManifest.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + diff --git a/add-web-tiled-layer/src/main/java/com/esri/arcgismaps/sample/addwebtiledlayer/MainActivity.kt b/add-web-tiled-layer/src/main/java/com/esri/arcgismaps/sample/addwebtiledlayer/MainActivity.kt new file mode 100644 index 000000000..0a71779d8 --- /dev/null +++ b/add-web-tiled-layer/src/main/java/com/esri/arcgismaps/sample/addwebtiledlayer/MainActivity.kt @@ -0,0 +1,59 @@ +/* Copyright 2023 Esri + * + * 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. + * + */ + +package com.esri.arcgismaps.sample.addwebtiledlayer + +import android.os.Bundle +import androidx.appcompat.app.AppCompatActivity +import androidx.databinding.DataBindingUtil +import com.arcgismaps.mapping.ArcGISMap +import com.arcgismaps.mapping.Basemap +import com.arcgismaps.mapping.layers.WebTiledLayer +import com.esri.arcgismaps.sample.addwebtiledlayer.databinding.ActivityMainBinding + +class MainActivity : AppCompatActivity() { + + // set up data binding for the activity + private val activityMainBinding: ActivityMainBinding by lazy { + DataBindingUtil.setContentView(this, R.layout.activity_main) + } + + private val mapView by lazy { + activityMainBinding.mapView + } + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + lifecycle.addObserver(mapView) + + // list of sub-domains + val subDomains = listOf("a", "b", "c", "d") + + // build the web tiled layer from stamen url and subDomains + val webTiledLayer = + WebTiledLayer.create( + getString(R.string.template_uri_stamen), + subDomains + ).apply { + // set the attribution on the layer + attribution = getString(R.string.stamen_attribution) + } + + // use web tiled layer as Basemap + val map = ArcGISMap(Basemap(webTiledLayer)) + mapView.map = map + } +} diff --git a/add-web-tiled-layer/src/main/res/drawable-v24/ic_launcher_foreground.xml b/add-web-tiled-layer/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 000000000..c7bd21dbd --- /dev/null +++ b/add-web-tiled-layer/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + diff --git a/add-web-tiled-layer/src/main/res/drawable/ic_launcher_background.xml b/add-web-tiled-layer/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 000000000..6d8cae103 --- /dev/null +++ b/add-web-tiled-layer/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/add-web-tiled-layer/src/main/res/layout/activity_main.xml b/add-web-tiled-layer/src/main/res/layout/activity_main.xml new file mode 100644 index 000000000..7bd357b2f --- /dev/null +++ b/add-web-tiled-layer/src/main/res/layout/activity_main.xml @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/add-web-tiled-layer/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/add-web-tiled-layer/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 000000000..6b78462d6 --- /dev/null +++ b/add-web-tiled-layer/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/add-web-tiled-layer/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/add-web-tiled-layer/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 000000000..6b78462d6 --- /dev/null +++ b/add-web-tiled-layer/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/add-web-tiled-layer/src/main/res/mipmap-hdpi/ic_launcher.png b/add-web-tiled-layer/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..a2f590828 Binary files /dev/null and b/add-web-tiled-layer/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/add-web-tiled-layer/src/main/res/mipmap-hdpi/ic_launcher_round.png b/add-web-tiled-layer/src/main/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 000000000..1b5239980 Binary files /dev/null and b/add-web-tiled-layer/src/main/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/add-web-tiled-layer/src/main/res/mipmap-mdpi/ic_launcher.png b/add-web-tiled-layer/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..ff10afd6e Binary files /dev/null and b/add-web-tiled-layer/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/add-web-tiled-layer/src/main/res/mipmap-mdpi/ic_launcher_round.png b/add-web-tiled-layer/src/main/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 000000000..115a4c768 Binary files /dev/null and b/add-web-tiled-layer/src/main/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/add-web-tiled-layer/src/main/res/mipmap-xhdpi/ic_launcher.png b/add-web-tiled-layer/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..dcd3cd808 Binary files /dev/null and b/add-web-tiled-layer/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/add-web-tiled-layer/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/add-web-tiled-layer/src/main/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 000000000..459ca609d Binary files /dev/null and b/add-web-tiled-layer/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/add-web-tiled-layer/src/main/res/mipmap-xxhdpi/ic_launcher.png b/add-web-tiled-layer/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..8ca12fe02 Binary files /dev/null and b/add-web-tiled-layer/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/add-web-tiled-layer/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/add-web-tiled-layer/src/main/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 000000000..8e19b410a Binary files /dev/null and b/add-web-tiled-layer/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/add-web-tiled-layer/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/add-web-tiled-layer/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..b824ebdd4 Binary files /dev/null and b/add-web-tiled-layer/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/add-web-tiled-layer/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/add-web-tiled-layer/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 000000000..4c19a13c2 Binary files /dev/null and b/add-web-tiled-layer/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/add-web-tiled-layer/src/main/res/values/strings.xml b/add-web-tiled-layer/src/main/res/values/strings.xml new file mode 100644 index 000000000..b1a4aae2f --- /dev/null +++ b/add-web-tiled-layer/src/main/res/values/strings.xml @@ -0,0 +1,5 @@ + + Add web tiled layer + https://stamen-tiles-{subdomain}.a.ssl.fastly.net/terrain/{level}/{col}/{row}.png + Map tiles by Stamen Design, under CC BY 3.0. Data by OpenStreetMap, under ODbL. + diff --git a/add-wms-layer/.gitignore b/add-wms-layer/.gitignore new file mode 100644 index 000000000..796b96d1c --- /dev/null +++ b/add-wms-layer/.gitignore @@ -0,0 +1 @@ +/build diff --git a/add-wms-layer/README.md b/add-wms-layer/README.md new file mode 100644 index 000000000..565ee4f3b --- /dev/null +++ b/add-wms-layer/README.md @@ -0,0 +1,33 @@ +# Add WMS layer + +Display a WMS layer using a WMS service URL. + +![Image of WMS layer URL](add-wms-layer.png) + +## Use case + +WMS is an OGC standard for displaying maps from images that are dynamically-generated on a web server. WMS is particularly useful for data that changes frequently, contains cartographically complex detail, or requires an open source data standard. + +## How to use the sample + +The map will load automatically when the sample starts. + +## How it works + +1. Create a `WmsLayer` specifying the URL of the service and the names of layers you want to display. + * **Note**: The name comes from the `Name` property, not the `Title` property. On many services, the title is human-readable while the name is a numeric identifier. +2. Add the layer to the map as an operational layer with `map.operationalLayers.add(wmsLayer)`. + +## Relevant API + +* ArcGISMap +* MapView +* WmsLayer + +## About the data + +This sample uses a [U.S. National Weather Service radar map](https://nowcoast.noaa.gov/arcgis/services/nowcoast/radar_meteo_imagery_nexrad_time/MapServer/WMSServer?request=GetCapabilities&service=WMS). Because WMS services generate map images on-the-fly, this layer is always up-to-date with the latest [NOAA NEXRAD radar](https://www.ncdc.noaa.gov/data-access/radar-data/nexrad) observations. + +## Tags + +OGC, web map service, WMS diff --git a/add-wms-layer/README.metadata.json b/add-wms-layer/README.metadata.json new file mode 100644 index 000000000..a95a739a9 --- /dev/null +++ b/add-wms-layer/README.metadata.json @@ -0,0 +1,28 @@ +{ + "category": "Layers", + "description": "Display a WMS layer using a WMS service URL.", + "formal_name": "AddWmsLayer", + "ignore": false, + "images": [ + "add-wms-layer.png" + ], + "keywords": [ + "OGC", + "WMS", + "web map service", + "ArcGISMap", + "MapView", + "WmsLayer" + ], + "language": "kotlin", + "redirect_from": "/android/latest/sample-code/wms-layer-url.htm", + "relevant_apis": [ + "ArcGISMap", + "MapView", + "WmsLayer" + ], + "snippets": [ + "src/main/java/com/esri/arcgismaps/sample/addwmslayer/MainActivity.kt" + ], + "title": "Add WMS layer" +} diff --git a/add-wms-layer/add-wms-layer.png b/add-wms-layer/add-wms-layer.png new file mode 100644 index 000000000..3f8dc23ca Binary files /dev/null and b/add-wms-layer/add-wms-layer.png differ diff --git a/add-wms-layer/build.gradle b/add-wms-layer/build.gradle new file mode 100644 index 000000000..dd21fbbd6 --- /dev/null +++ b/add-wms-layer/build.gradle @@ -0,0 +1,35 @@ +apply plugin: 'com.android.application' +apply plugin: 'org.jetbrains.kotlin.android' + +android { + compileSdkVersion rootProject.ext.compileSdkVersion + + defaultConfig { + applicationId "com.esri.arcgismaps.sample.addwmslayer" + minSdkVersion rootProject.ext.minSdkVersion + targetSdkVersion rootProject.ext.targetSdkVersion + versionCode rootProject.ext.versionCode + versionName rootProject.ext.versionName + buildConfigField("String", "API_KEY", API_KEY) + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } + + buildFeatures { + dataBinding true + } + + namespace 'com.esri.arcgismaps.sample.addwmslayer' +} + +dependencies { + // lib dependencies from rootProject build.gradle + implementation "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion" + implementation "com.google.android.material:material:$materialVersion" + implementation project(path: ':samples-lib') +} diff --git a/add-wms-layer/proguard-rules.pro b/add-wms-layer/proguard-rules.pro new file mode 100644 index 000000000..f1b424510 --- /dev/null +++ b/add-wms-layer/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile diff --git a/add-wms-layer/src/main/AndroidManifest.xml b/add-wms-layer/src/main/AndroidManifest.xml new file mode 100644 index 000000000..c6647b46d --- /dev/null +++ b/add-wms-layer/src/main/AndroidManifest.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + diff --git a/add-wms-layer/src/main/java/com/esri/arcgismaps/sample/addwmslayer/MainActivity.kt b/add-wms-layer/src/main/java/com/esri/arcgismaps/sample/addwmslayer/MainActivity.kt new file mode 100644 index 000000000..9d5e15822 --- /dev/null +++ b/add-wms-layer/src/main/java/com/esri/arcgismaps/sample/addwmslayer/MainActivity.kt @@ -0,0 +1,86 @@ +/* + * Copyright 2023 Esri + * + * 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. + * + */ + +package com.esri.arcgismaps.sample.addwmslayer + +import android.os.Bundle +import android.util.Log +import androidx.appcompat.app.AppCompatActivity +import androidx.databinding.DataBindingUtil +import androidx.lifecycle.lifecycleScope +import com.arcgismaps.ApiKey +import com.arcgismaps.ArcGISEnvironment +import com.arcgismaps.mapping.ArcGISMap +import com.arcgismaps.mapping.BasemapStyle +import com.arcgismaps.mapping.Viewpoint +import com.arcgismaps.mapping.layers.WmsLayer +import com.esri.arcgismaps.sample.addwmslayer.databinding.ActivityMainBinding +import com.google.android.material.snackbar.Snackbar +import kotlinx.coroutines.launch + +class MainActivity : AppCompatActivity() { + + // set up data binding for the activity + private val activityMainBinding: ActivityMainBinding by lazy { + DataBindingUtil.setContentView(this, R.layout.activity_main) + } + + private val mapView by lazy { + activityMainBinding.mapView + } + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + + // authentication with an API key or named user is + // required to access basemaps and other location services + ArcGISEnvironment.apiKey = ApiKey.create(BuildConfig.API_KEY) + lifecycle.addObserver(mapView) + + // create and add a map with a light gray basemap style + val map = ArcGISMap(BasemapStyle.ArcGISLightGray) + + // apply mapView assignments + mapView.apply { + this.map = map + // set an initial viewpoint to a zoomed out view of North America + setViewpoint(Viewpoint(39.8, -98.6, 10e7)) + } + + lifecycleScope.launch { + // if the map load fails, show an error and return + map.load().onFailure { + return@launch showError("Error loading map") + } + // create a list representing names of layers to load from the WMS service + val wmsLayerNames = listOf("1") + // create a new WmsLayer with the WMS service url and the layers name list + val wmsLayer = WmsLayer(getString(R.string.wms_layer_url), wmsLayerNames) + // add the wmsLayer to the map as an operational layer + map.operationalLayers.add(wmsLayer) + // if loading the layer fails show an error + wmsLayer.load().onFailure { + showError("Error loading WmsLayer") + } + } + } + + private fun showError(message: String) { + Log.e(localClassName, message) + Snackbar.make(mapView, message, Snackbar.LENGTH_SHORT).show() + } +} diff --git a/add-wms-layer/src/main/res/drawable-v24/ic_launcher_foreground.xml b/add-wms-layer/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 000000000..c7bd21dbd --- /dev/null +++ b/add-wms-layer/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + diff --git a/add-wms-layer/src/main/res/drawable/ic_launcher_background.xml b/add-wms-layer/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 000000000..6d8cae103 --- /dev/null +++ b/add-wms-layer/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/add-wms-layer/src/main/res/layout/activity_main.xml b/add-wms-layer/src/main/res/layout/activity_main.xml new file mode 100644 index 000000000..73510f00d --- /dev/null +++ b/add-wms-layer/src/main/res/layout/activity_main.xml @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/add-wms-layer/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/add-wms-layer/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 000000000..6b78462d6 --- /dev/null +++ b/add-wms-layer/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/add-wms-layer/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/add-wms-layer/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 000000000..6b78462d6 --- /dev/null +++ b/add-wms-layer/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/add-wms-layer/src/main/res/mipmap-hdpi/ic_launcher.png b/add-wms-layer/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..a2f590828 Binary files /dev/null and b/add-wms-layer/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/add-wms-layer/src/main/res/mipmap-hdpi/ic_launcher_round.png b/add-wms-layer/src/main/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 000000000..1b5239980 Binary files /dev/null and b/add-wms-layer/src/main/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/add-wms-layer/src/main/res/mipmap-mdpi/ic_launcher.png b/add-wms-layer/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..ff10afd6e Binary files /dev/null and b/add-wms-layer/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/add-wms-layer/src/main/res/mipmap-mdpi/ic_launcher_round.png b/add-wms-layer/src/main/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 000000000..115a4c768 Binary files /dev/null and b/add-wms-layer/src/main/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/add-wms-layer/src/main/res/mipmap-xhdpi/ic_launcher.png b/add-wms-layer/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..dcd3cd808 Binary files /dev/null and b/add-wms-layer/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/add-wms-layer/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/add-wms-layer/src/main/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 000000000..459ca609d Binary files /dev/null and b/add-wms-layer/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/add-wms-layer/src/main/res/mipmap-xxhdpi/ic_launcher.png b/add-wms-layer/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..8ca12fe02 Binary files /dev/null and b/add-wms-layer/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/add-wms-layer/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/add-wms-layer/src/main/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 000000000..8e19b410a Binary files /dev/null and b/add-wms-layer/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/add-wms-layer/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/add-wms-layer/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..b824ebdd4 Binary files /dev/null and b/add-wms-layer/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/add-wms-layer/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/add-wms-layer/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 000000000..4c19a13c2 Binary files /dev/null and b/add-wms-layer/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/add-wms-layer/src/main/res/values/strings.xml b/add-wms-layer/src/main/res/values/strings.xml new file mode 100644 index 000000000..760391fa4 --- /dev/null +++ b/add-wms-layer/src/main/res/values/strings.xml @@ -0,0 +1,4 @@ + + Add WMS layer + https://nowcoast.noaa.gov/arcgis/services/nowcoast/radar_meteo_imagery_nexrad_time/MapServer/WMSServer?request=GetCapabilities&service=WMS + diff --git a/analyze-network-with-subnetwork-trace/.gitignore b/analyze-network-with-subnetwork-trace/.gitignore new file mode 100644 index 000000000..796b96d1c --- /dev/null +++ b/analyze-network-with-subnetwork-trace/.gitignore @@ -0,0 +1 @@ +/build diff --git a/analyze-network-with-subnetwork-trace/README.md b/analyze-network-with-subnetwork-trace/README.md new file mode 100644 index 000000000..410abe007 --- /dev/null +++ b/analyze-network-with-subnetwork-trace/README.md @@ -0,0 +1,69 @@ +# Analyze network with subnetwork trace + +Get a server-defined trace configuration for a given tier and modify its traversability scope, add new condition barriers and control what is included in the subnetwork trace result. + +![Image of analyze network with subnetwork trace](analyze-network-with-subnetwork-trace.png) + +## Use case + +While some traces are built from an ad-hoc group of parameters, many are based on a variation of the trace configuration taken from the subnetwork definition. For example, an electrical trace will be based on the trace configuration of the subnetwork, but may add additional clauses to constrain the trace along a single phase. Similarly, a trace in a gas or electric design application may include features with a status of "In Design" that are normally excluded from trace results. + +## How to use the sample + +The sample loads with a server-defined trace configuration from a tier. Check or uncheck which options to include in the trace - such as containers or barriers. Use the selection boxes to define a new condition network attribute comparison, and then use 'Add' to add the it to the trace configuration. Click 'Trace' to run a subnetwork trace with this modified configuration from a default starting location. + +Example barrier conditions for the default dataset: + +* 'Transformer Load' Equal '15' +* 'Phases Current' DoesNotIncludeTheValues 'A' +* 'Generation KW' LessThan '50' + +## How it works + +1. Create and load a `UtilityNetwork` with a feature service URL, then get an asset type and a tier by their names. +2. Populate the choice list for the comparison source with the non-system defined `UtilityNetworkDefinition.networkAttributes`. Populate the choice list for the comparison operator with the enum values from `UtilityAttributeComparisonOperator`. +3. Create a `UtilityElement` from this asset type to use as the starting location for the trace. +4. Update the selected barrier expression and the checked options in the UI using this tier's `UtilityTraceConfiguration`. +5. When 'Network Attribute' is selected, if its `Domain` is a `CodedValueDomain`, populate the choice list for the comparison value with its `CodedValues`. Otherwise, display a free-form textbox for entering an attribute value. +6. When 'Add Configuration' is clicked, create a new `UtilityNetworkAttributeComparison` using the selected comparison source, operator, and selected or typed value. Use the selected source's `UtilityNetworkAttributeDataType` to convert the comparison value to the correct data type. +7. If the traversability list of `Barriers` is not empty, create a `UtilityTraceOrCondition` with the existing `Barriers` and the new comparison from Step 6. +8. When 'Trace' is clicked, create `UtilityTraceParameters` passing in `UtilityTraceType.Subnetwork` and the default starting location. Set its `UtilityTraceConfiguration` with the modified options, selections, and expression; then run a `UtilityNetwork.trace(...)`. +9. When `Reset` is clicked, set the trace configurations expression back to its original value. +10. Display the count of returned `UtilityElementTraceResult.elements.count()`. + +## Relevant API + +* CodedValueDomain +* UtilityAssetType +* UtilityAttributeComparisonOperator +* UtilityCategory +* UtilityCategoryComparison +* UtilityCategoryComparisonOperator +* UtilityDomainNetwork +* UtilityElement +* UtilityElementTraceResult +* UtilityNetwork +* UtilityNetworkAttribute +* UtilityNetworkAttributeComparison +* UtilityNetworkDefinition +* UtilityTerminal +* UtilityTier +* UtilityTraceAndCondition +* UtilityTraceConfiguration +* UtilityTraceOrCondition +* UtilityTraceParameters +* UtilityTraceResult +* UtilityTraceType +* UtilityTraversability + +## About the data + +The [Naperville electrical](https://sampleserver7.arcgisonline.com/server/rest/services/UtilityNetwork/NapervilleElectric/FeatureServer) network feature service, hosted on ArcGIS Online, contains a utility network used to run the subnetwork-based trace shown in this sample. + +## Additional information + +Using utility network on ArcGIS Enterprise 10.8 requires an ArcGIS Enterprise member account licensed with the [Utility Network user type extension](https://enterprise.arcgis.com/en/portal/latest/administer/windows/license-user-type-extensions.htm#ESRI_SECTION1_41D78AD9691B42E0A8C227C113C0C0BF). Please refer to the [utility network services documentation](https://enterprise.arcgis.com/en/server/latest/publish-services/windows/utility-network-services.htm). + +## Tags + +category comparison, condition barriers, network analysis, network attribute comparison, subnetwork trace, trace configuration, traversability, utility network, validate consistency diff --git a/analyze-network-with-subnetwork-trace/README.metadata.json b/analyze-network-with-subnetwork-trace/README.metadata.json new file mode 100644 index 000000000..69bb10f42 --- /dev/null +++ b/analyze-network-with-subnetwork-trace/README.metadata.json @@ -0,0 +1,72 @@ +{ + "category": "Utility Networks", + "description": "Get a server-defined trace configuration for a given tier and modify its traversability scope, add new condition barriers and control what is included in the subnetwork trace result.", + "formal_name": "AnalyzeNetworkWithSubnetworkTrace", + "ignore": false, + "images": [ + "analyze-network-with-subnetwork-trace.png" + ], + "keywords": [ + "category comparison", + "condition barriers", + "network analysis", + "network attribute comparison", + "subnetwork trace", + "trace configuration", + "traversability", + "utility network", + "validate consistency", + "CodedValueDomain", + "UtilityAssetType", + "UtilityAttributeComparisonOperator", + "UtilityCategory", + "UtilityCategoryComparison", + "UtilityCategoryComparisonOperator", + "UtilityDomainNetwork", + "UtilityElement", + "UtilityElementTraceResult", + "UtilityNetwork", + "UtilityNetworkAttribute", + "UtilityNetworkAttributeComparison", + "UtilityNetworkDefinition", + "UtilityTerminal", + "UtilityTier", + "UtilityTraceAndCondition", + "UtilityTraceConfiguration", + "UtilityTraceOrCondition", + "UtilityTraceParameters", + "UtilityTraceResult", + "UtilityTraceType", + "UtilityTraversability" + ], + "language": "kotlin", + "redirect_from": "", + "relevant_apis": [ + "CodedValueDomain", + "UtilityAssetType", + "UtilityAttributeComparisonOperator", + "UtilityCategory", + "UtilityCategoryComparison", + "UtilityCategoryComparisonOperator", + "UtilityDomainNetwork", + "UtilityElement", + "UtilityElementTraceResult", + "UtilityNetwork", + "UtilityNetworkAttribute", + "UtilityNetworkAttributeComparison", + "UtilityNetworkDefinition", + "UtilityTerminal", + "UtilityTier", + "UtilityTraceAndCondition", + "UtilityTraceConfiguration", + "UtilityTraceOrCondition", + "UtilityTraceParameters", + "UtilityTraceResult", + "UtilityTraceType", + "UtilityTraversability" + ], + "snippets": [ + "src/main/java/com/esri/arcgismaps/sample/analyzenetworkwithsubnetworktrace/MainActivity.kt" + ], + "title": "Analyze network with subnetwork trace" +} diff --git a/analyze-network-with-subnetwork-trace/analyze-network-with-subnetwork-trace.png b/analyze-network-with-subnetwork-trace/analyze-network-with-subnetwork-trace.png new file mode 100644 index 000000000..1d758d0b7 Binary files /dev/null and b/analyze-network-with-subnetwork-trace/analyze-network-with-subnetwork-trace.png differ diff --git a/analyze-network-with-subnetwork-trace/build.gradle b/analyze-network-with-subnetwork-trace/build.gradle new file mode 100644 index 000000000..9efef488e --- /dev/null +++ b/analyze-network-with-subnetwork-trace/build.gradle @@ -0,0 +1,35 @@ +apply plugin: 'com.android.application' +apply plugin: 'org.jetbrains.kotlin.android' + +android { + compileSdkVersion rootProject.ext.compileSdkVersion + + defaultConfig { + applicationId "com.esri.arcgismaps.sample.analyzenetworkwithsubnetworktrace" + minSdkVersion rootProject.ext.minSdkVersion + targetSdkVersion rootProject.ext.targetSdkVersion + versionCode rootProject.ext.versionCode + versionName rootProject.ext.versionName + buildConfigField("String", "API_KEY", API_KEY) + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } + + buildFeatures { + dataBinding true + } + + namespace 'com.esri.arcgismaps.sample.analyzenetworkwithsubnetworktrace' +} + +dependencies { + // lib dependencies from rootProject build.gradle + implementation "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion" + implementation "com.google.android.material:material:$materialVersion" + implementation project(path: ':samples-lib') +} diff --git a/analyze-network-with-subnetwork-trace/proguard-rules.pro b/analyze-network-with-subnetwork-trace/proguard-rules.pro new file mode 100644 index 000000000..f1b424510 --- /dev/null +++ b/analyze-network-with-subnetwork-trace/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile diff --git a/analyze-network-with-subnetwork-trace/src/main/AndroidManifest.xml b/analyze-network-with-subnetwork-trace/src/main/AndroidManifest.xml new file mode 100644 index 000000000..c6647b46d --- /dev/null +++ b/analyze-network-with-subnetwork-trace/src/main/AndroidManifest.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + diff --git a/analyze-network-with-subnetwork-trace/src/main/java/com/esri/arcgismaps/sample/analyzenetworkwithsubnetworktrace/MainActivity.kt b/analyze-network-with-subnetwork-trace/src/main/java/com/esri/arcgismaps/sample/analyzenetworkwithsubnetworktrace/MainActivity.kt new file mode 100644 index 000000000..18521a1e7 --- /dev/null +++ b/analyze-network-with-subnetwork-trace/src/main/java/com/esri/arcgismaps/sample/analyzenetworkwithsubnetworktrace/MainActivity.kt @@ -0,0 +1,519 @@ +/* Copyright 2023 Esri + * + * 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. + * + */ + +package com.esri.arcgismaps.sample.analyzenetworkwithsubnetworktrace + +import android.os.Bundle +import android.text.InputType +import android.util.Log +import android.view.View +import android.widget.AdapterView +import android.widget.ArrayAdapter +import android.widget.AutoCompleteTextView +import android.widget.CheckBox +import android.widget.RelativeLayout +import android.widget.TextView +import android.widget.ToggleButton +import androidx.appcompat.app.AlertDialog +import androidx.appcompat.app.AppCompatActivity +import androidx.databinding.DataBindingUtil +import androidx.lifecycle.lifecycleScope +import com.arcgismaps.ArcGISEnvironment +import com.arcgismaps.Guid +import com.arcgismaps.LoadStatus +import com.arcgismaps.data.CodedValue +import com.arcgismaps.data.CodedValueDomain +import com.arcgismaps.httpcore.authentication.ArcGISAuthenticationChallengeHandler +import com.arcgismaps.httpcore.authentication.ArcGISAuthenticationChallengeResponse +import com.arcgismaps.httpcore.authentication.TokenCredential +import com.arcgismaps.utilitynetworks.UtilityAttributeComparisonOperator +import com.arcgismaps.utilitynetworks.UtilityCategoryComparison +import com.arcgismaps.utilitynetworks.UtilityElement +import com.arcgismaps.utilitynetworks.UtilityElementTraceResult +import com.arcgismaps.utilitynetworks.UtilityNetwork +import com.arcgismaps.utilitynetworks.UtilityNetworkAttribute +import com.arcgismaps.utilitynetworks.UtilityNetworkAttributeComparison +import com.arcgismaps.utilitynetworks.UtilityNetworkAttributeDataType +import com.arcgismaps.utilitynetworks.UtilityTier +import com.arcgismaps.utilitynetworks.UtilityTraceAndCondition +import com.arcgismaps.utilitynetworks.UtilityTraceConditionalExpression +import com.arcgismaps.utilitynetworks.UtilityTraceConfiguration +import com.arcgismaps.utilitynetworks.UtilityTraceOrCondition +import com.arcgismaps.utilitynetworks.UtilityTraceParameters +import com.arcgismaps.utilitynetworks.UtilityTraceType +import com.arcgismaps.utilitynetworks.UtilityTraversability +import com.esri.arcgismaps.sample.analyzenetworkwithsubnetworktrace.databinding.ActivityMainBinding +import com.esri.arcgismaps.sample.analyzenetworkwithsubnetworktrace.databinding.LoadingOptionsDialogBinding +import com.google.android.material.button.MaterialButton +import com.google.android.material.snackbar.Snackbar +import com.google.android.material.textfield.TextInputEditText +import kotlinx.coroutines.launch +import kotlinx.coroutines.runBlocking + +class MainActivity : AppCompatActivity() { + + // set up data binding for the activity + private val activityMainBinding: ActivityMainBinding by lazy { + DataBindingUtil.setContentView(this, R.layout.activity_main) + } + + private val sourceDropdown: AutoCompleteTextView by lazy { + activityMainBinding.sourceDropdown + } + + private val operatorDropdown: AutoCompleteTextView by lazy { + activityMainBinding.operatorDropdown + } + + private val expressionTextView: TextView by lazy { + activityMainBinding.expressionTextView + } + + private val valuesDropdown: AutoCompleteTextView by lazy { + activityMainBinding.valuesDropdown + } + + private val valuesBackgroundView: RelativeLayout by lazy { + activityMainBinding.valuesBackgroundView + } + + private val valueBooleanButton: ToggleButton by lazy { + activityMainBinding.valueBooleanButton + } + + private val valuesEditText: TextInputEditText by lazy { + activityMainBinding.valuesEditText + } + + private val barriersCheckbox: CheckBox by lazy { + activityMainBinding.barriersCheckBox + } + + private val containersCheckbox: CheckBox by lazy { + activityMainBinding.containersCheckbox + } + + private val traceButton: MaterialButton by lazy { + activityMainBinding.traceButton + } + + private val utilityNetwork by lazy { + UtilityNetwork(getString(R.string.utility_network_url)) + } + + private var initialExpression: UtilityTraceConditionalExpression? = null + private var sourceTier: UtilityTier? = null + private var utilityTraceConfiguration: UtilityTraceConfiguration? = null + private var sourcesList: List? = null + private var operatorsList: Array? = null + private var startingLocation: UtilityElement? = null + private var codedValuesList: List? = null + private var sourcePosition: Int = 0 + private var operatorPosition: Int = 0 + private var valuePosition: Int = 0 + private var dialog: AlertDialog? = null + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + + ArcGISEnvironment.applicationContext = this + ArcGISEnvironment.authenticationManager.arcGISAuthenticationChallengeHandler = + getAuthenticationChallengeHandler() + + // create and display the loading dialog + showLoadingDialog(true) + + // load the utility network + lifecycleScope.launch { + utilityNetwork.load().getOrElse { + dialog?.dismiss() + traceButton.isEnabled = false + return@launch showError("Error loading utility network: ${it.message}") + } + + // create a list of utility network attributes whose system is not defined + sourcesList = + utilityNetwork.definition?.networkAttributes?.filter { !it.isSystemDefined } + + sourceDropdown.apply { + // add the list of sources to the drop down view + setAdapter(sourcesList?.let { utilityNetworkAttributes -> + ArrayAdapter( + applicationContext, + R.layout.custom_dropdown_item, + utilityNetworkAttributes.map { it.name }) + }) + + // add an on item selected listener which calls on comparison source changed + onItemClickListener = AdapterView.OnItemClickListener { _, _, position, _ -> + sourcePosition = position + sourcesList?.get(position)?.let { onComparisonSourceChanged(it) } + } + } + + // create a list of utility attribute comparison operators + operatorsList = + UtilityAttributeComparisonOperator::class.sealedSubclasses.mapNotNull { it.objectInstance } + .toTypedArray() + + operatorDropdown.apply { + // add the list of sources to the drop down view + setAdapter(operatorsList?.let { utilityAttributeComparisonOperator -> + ArrayAdapter(applicationContext, + R.layout.custom_dropdown_item, + utilityAttributeComparisonOperator.map { it::class.simpleName }) + }) + + // add an on item selected listener which calls on comparison source changed + onItemClickListener = AdapterView.OnItemClickListener { _, _, position, _ -> + operatorPosition = position + } + } + + // create a default starting location + val networkSource = utilityNetwork.definition?.getNetworkSource("Electric Distribution Device") + + val assetGroup = networkSource?.getAssetGroup("Circuit Breaker") + + val assetType = assetGroup?.getAssetType("Three Phase") + + val globalId = Guid("1CAF7740-0BF4-4113-8DB2-654E18800028") + + if (assetType == null) return@launch + + val terminal = assetType.terminalConfiguration?.terminals?.first { it.name == "Load" } + + // utility element to start the trace from + startingLocation = utilityNetwork.createElementOrNull(assetType, globalId, terminal) + + // get a default trace configuration from a tier to update the UI + val domainNetwork = utilityNetwork.definition?.getDomainNetwork( + "ElectricDistribution" + ) + + // set source utility tier from the utility domain network + sourceTier = domainNetwork?.getTier("Medium Voltage Radial")?.apply { + utilityTraceConfiguration = getDefaultTraceConfiguration() + } + + // set initial barrier condition + val defaultConditionalExpression = sourceTier.let { + utilityTraceConfiguration?.traversability?.barriers as UtilityTraceConditionalExpression + } + // set the text view + expressionTextView.text = expressionToString(defaultConditionalExpression) + // use the initial expression when resetting trace + initialExpression = defaultConditionalExpression + + showLoadingDialog(false) + } + } + + /** + * Returns a [ArcGISAuthenticationChallengeHandler] to access the utility network URL. + */ + private fun getAuthenticationChallengeHandler(): ArcGISAuthenticationChallengeHandler { + return ArcGISAuthenticationChallengeHandler { challenge -> + val result: Result = runBlocking { + TokenCredential.create(challenge.requestUrl, "viewer01", "I68VGU^nMurF", 0) + } + if (result.getOrNull() != null) { + val credential = result.getOrNull() + return@ArcGISAuthenticationChallengeHandler ArcGISAuthenticationChallengeResponse + .ContinueWithCredential(credential!!) + } else { + val ex = result.exceptionOrNull() + return@ArcGISAuthenticationChallengeHandler ArcGISAuthenticationChallengeResponse + .ContinueAndFailWithError(ex!!) + } + } + } + + /** + * When a comparison source [attribute] is chosen check if it's a coded value domain and, if it is, + * present a dropdown of coded value domains. If not, show the correct UI view for the utility + * network attribute data type. + */ + private fun onComparisonSourceChanged(attribute: UtilityNetworkAttribute) { + // if the domain is a coded value domain + if (attribute.domain is CodedValueDomain) { + (attribute.domain as CodedValueDomain).let { codedValueDomain -> + // update the list of coded values + codedValuesList = codedValueDomain.codedValues + // show the values dropdown + setVisible(valuesBackgroundView.id) + // update the values dropdown adapter + valuesDropdown.setAdapter(ArrayAdapter(applicationContext, + R.layout.custom_dropdown_item, + // add the coded values from the coded value domain to the values dropdown + codedValueDomain.codedValues.map { it.name })) + // add an on item selected listener which calls on comparison source changed + valuesDropdown.onItemClickListener = + AdapterView.OnItemClickListener { _, _, position, _ -> + valuePosition = position + } + } + } // if the domain is not a coded value domain + else { + when (attribute.dataType) { + UtilityNetworkAttributeDataType.Boolean -> { + // show true/false toggle button + setVisible(valueBooleanButton.id) + } + UtilityNetworkAttributeDataType.Double, UtilityNetworkAttributeDataType.Float -> { + // show the edit text and only allow numbers (decimals allowed) + valuesEditText.inputType = + InputType.TYPE_CLASS_NUMBER or InputType.TYPE_NUMBER_FLAG_DECIMAL + setVisible(valuesEditText.id) + } + UtilityNetworkAttributeDataType.Integer -> { + // show the edit text only allowing for integer input + valuesEditText.inputType = InputType.TYPE_CLASS_NUMBER + setVisible(valuesEditText.id) + } + else -> { + showError("Unexpected utility network attribute data type.") + } + } + } + } + + /** + * Add a new barrier condition to the trace options when [addConditionButton] is tapped. + */ + fun addBarrierCondition(addConditionButton: View) { + // if source tier doesn't contain a trace configuration, create one + val traceConfiguration = utilityTraceConfiguration ?: UtilityTraceConfiguration().apply { + // if the trace configuration doesn't contain traversability, create one + traversability ?: UtilityTraversability() + } + + // get the currently selected attribute + sourcesList?.get(sourcePosition)?.let { sourceAttribute -> + // if the other value is a coded value domain + val otherValue = if (sourceAttribute.domain is CodedValueDomain) { + codedValuesList?.get(valuePosition)?.code?.let { + convertToDataType(it, sourceAttribute.dataType) + } + } else { + convertToDataType(valuesEditText.text.toString(), sourceAttribute.dataType) + } + + if (otherValue.toString().contains("Error") || otherValue == null) { + return showError(otherValue.toString()) + } + + // get the currently selected attribute operator> + operatorsList?.get(operatorPosition)?.let { comparisonOperator -> + // NOTE: You may also create a UtilityNetworkAttributeComparison + // with another NetworkAttribute + var expression: UtilityTraceConditionalExpression = + UtilityNetworkAttributeComparison( + sourceAttribute, + comparisonOperator, + otherValue + ) + (traceConfiguration.traversability?.barriers as? UtilityTraceConditionalExpression)?.let { otherExpression -> + // NOTE: You may also combine expressions with UtilityTraceAndCondition + expression = UtilityTraceOrCondition(otherExpression, expression) + } + traceConfiguration.traversability?.barriers = expression + expressionTextView.text = expressionToString(expression) + } + } + } + + /** + * Show the UI of the given [id] and hide the others which share the same space. + */ + private fun setVisible(id: Int) { + when (id) { + valuesBackgroundView.id -> { + valuesBackgroundView.visibility = View.VISIBLE + valueBooleanButton.visibility = View.GONE + valuesEditText.visibility = View.GONE + } + valuesEditText.id -> { + valuesEditText.visibility = View.VISIBLE + valueBooleanButton.visibility = View.GONE + valuesBackgroundView.visibility = View.GONE + } + valueBooleanButton.id -> { + valueBooleanButton.visibility = View.VISIBLE + valuesBackgroundView.visibility = View.GONE + valuesEditText.visibility = View.GONE + } + } + } + + /** + * Run the network trace with the parameters and display the result in an alert dialog + * when the [traceButton] is clicked. + */ + fun trace(traceButton: View) { + if (utilityNetwork.loadStatus.value != LoadStatus.Loaded) { + return showError("Utility network is not loaded") + } + + // set the utility trace parameters + val parameters = UtilityTraceParameters( + UtilityTraceType.Subnetwork, + listOf(startingLocation).requireNoNulls() + ).apply { + // set the utility trace configuration options to include + traceConfiguration = utilityTraceConfiguration?.apply { + includeBarriers = barriersCheckbox.isChecked + includeContainers = containersCheckbox.isChecked + } + } + + // launch trace in a coroutine scope + lifecycleScope.launch { + showLoadingDialog(true) + val utilityTraceResults = utilityNetwork.trace(parameters).getOrElse { + return@launch showError(it.message + getString(R.string.example_condition)) + } + // get the UtilityElementTraceResult + val elementTraceResult = utilityTraceResults.first() as UtilityElementTraceResult + + showLoadingDialog(false) + AlertDialog.Builder(this@MainActivity).apply { + // set the result dialog title + setTitle("Trace result") + // show the element result count + setMessage(elementTraceResult.elements.count().toString() + " elements found.") + }.show() + } + } + + /** + * Convert the given [expression] into a string. + */ + private fun expressionToString(expression: UtilityTraceConditionalExpression): String? { + when (expression) { + // when the expression is a category comparison expression + is UtilityCategoryComparison -> { + return expression.category.name + " " + expression.comparisonOperator + } + // when the expression is an utility trace AND condition + is UtilityTraceAndCondition -> { + return expressionToString(expression.leftExpression) + " AND\n" + expressionToString( + expression.rightExpression + ) + } + // when the expression is an utility trace OR condition + is UtilityTraceOrCondition -> { + return expressionToString(expression.leftExpression) + " OR\n" + expressionToString( + expression.rightExpression + ) + } + // when the expression is an attribute comparison expression + is UtilityNetworkAttributeComparison -> { + // the name and comparison operator of the expression + val networkAttributeNameAndOperator = expression.networkAttribute.name + " " + + expression.comparisonOperator::class.simpleName + " " + + // check whether the network attribute has a coded value domain + val codedValueDomain = expression.networkAttribute.domain as? CodedValueDomain + return if (codedValueDomain != null) { + networkAttributeNameAndOperator + + getCodedValueFromExpression(codedValueDomain, expression)?.name + } else { + // if there's no coded value domain + networkAttributeNameAndOperator + + (expression.otherNetworkAttribute?.name ?: expression.value) + } + } + else -> { + return null + } + } + } + + /** + * Convert the given value into the correct Kotlin data type by using the attribute's data type. + * + * @param otherValue which will be converted + * @param dataType to be converted to + */ + private fun convertToDataType( + otherValue: Any, + dataType: UtilityNetworkAttributeDataType, + ): Any { + return try { + when (dataType::class.objectInstance) { + UtilityNetworkAttributeDataType.Boolean -> otherValue.toString().toBoolean() + UtilityNetworkAttributeDataType.Double -> otherValue.toString().toDouble() + UtilityNetworkAttributeDataType.Float -> otherValue.toString().toFloat() + UtilityNetworkAttributeDataType.Integer -> otherValue.toString().toInt() + else -> {} + } + } catch (e: Exception) { + return ("Error converting value to a datatype") + } + } + + /** + * Returns a [CodedValue] found in the [expression] using the + * list of coded values in the [codedValueDomain]. + */ + private fun getCodedValueFromExpression( + codedValueDomain: CodedValueDomain, + expression: UtilityNetworkAttributeComparison, + ): CodedValue? { + // if there's a coded value domain name + return codedValueDomain.codedValues.first { codedValue -> + val code = codedValue.code + val value = expression.value + if (code != null && value != null) { + return@first (convertToDataType(code, + expression.networkAttribute.dataType) == convertToDataType(value, + expression.networkAttribute.dataType)) + } else + return null + } + } + + /** + * Reset the current barrier condition to the initial expression + * "Operational Device Status EQUAL Open" and resets the UI. + */ + fun reset(view: View) { + initialExpression?.let { + utilityTraceConfiguration = sourceTier?.getDefaultTraceConfiguration()?.apply { + traversability?.barriers = it + } + expressionTextView.text = expressionToString(it) + } + } + + private fun showLoadingDialog(isVisible: Boolean) { + if (isVisible) { + dialog = AlertDialog.Builder(this).apply { + setCancelable(false) + setView(LoadingOptionsDialogBinding.inflate(layoutInflater).root) + }.create() + dialog?.show() + } else { + dialog?.dismiss() + } + } + + private fun showError(message: String) { + Log.e(localClassName, message) + Snackbar.make(activityMainBinding.root, message, Snackbar.LENGTH_SHORT).show() + } +} diff --git a/analyze-network-with-subnetwork-trace/src/main/res/drawable-v24/ic_launcher_foreground.xml b/analyze-network-with-subnetwork-trace/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 000000000..c7bd21dbd --- /dev/null +++ b/analyze-network-with-subnetwork-trace/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + diff --git a/analyze-network-with-subnetwork-trace/src/main/res/drawable/border.xml b/analyze-network-with-subnetwork-trace/src/main/res/drawable/border.xml new file mode 100644 index 000000000..f99201980 --- /dev/null +++ b/analyze-network-with-subnetwork-trace/src/main/res/drawable/border.xml @@ -0,0 +1,6 @@ + + + diff --git a/analyze-network-with-subnetwork-trace/src/main/res/drawable/ic_launcher_background.xml b/analyze-network-with-subnetwork-trace/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 000000000..6d8cae103 --- /dev/null +++ b/analyze-network-with-subnetwork-trace/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/analyze-network-with-subnetwork-trace/src/main/res/layout/activity_main.xml b/analyze-network-with-subnetwork-trace/src/main/res/layout/activity_main.xml new file mode 100644 index 000000000..eaa71d28f --- /dev/null +++ b/analyze-network-with-subnetwork-trace/src/main/res/layout/activity_main.xml @@ -0,0 +1,321 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/analyze-network-with-subnetwork-trace/src/main/res/layout/loading_options_dialog.xml b/analyze-network-with-subnetwork-trace/src/main/res/layout/loading_options_dialog.xml new file mode 100644 index 000000000..6c49acdb7 --- /dev/null +++ b/analyze-network-with-subnetwork-trace/src/main/res/layout/loading_options_dialog.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + diff --git a/analyze-network-with-subnetwork-trace/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 000000000..6b78462d6 --- /dev/null +++ b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/analyze-network-with-subnetwork-trace/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 000000000..6b78462d6 --- /dev/null +++ b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/analyze-network-with-subnetwork-trace/src/main/res/mipmap-hdpi/ic_launcher.png b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..a2f590828 Binary files /dev/null and b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/analyze-network-with-subnetwork-trace/src/main/res/mipmap-hdpi/ic_launcher_round.png b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 000000000..1b5239980 Binary files /dev/null and b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/analyze-network-with-subnetwork-trace/src/main/res/mipmap-mdpi/ic_launcher.png b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..ff10afd6e Binary files /dev/null and b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/analyze-network-with-subnetwork-trace/src/main/res/mipmap-mdpi/ic_launcher_round.png b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 000000000..115a4c768 Binary files /dev/null and b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/analyze-network-with-subnetwork-trace/src/main/res/mipmap-xhdpi/ic_launcher.png b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..dcd3cd808 Binary files /dev/null and b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/analyze-network-with-subnetwork-trace/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 000000000..459ca609d Binary files /dev/null and b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/analyze-network-with-subnetwork-trace/src/main/res/mipmap-xxhdpi/ic_launcher.png b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..8ca12fe02 Binary files /dev/null and b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/analyze-network-with-subnetwork-trace/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 000000000..8e19b410a Binary files /dev/null and b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/analyze-network-with-subnetwork-trace/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..b824ebdd4 Binary files /dev/null and b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/analyze-network-with-subnetwork-trace/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 000000000..4c19a13c2 Binary files /dev/null and b/analyze-network-with-subnetwork-trace/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/analyze-network-with-subnetwork-trace/src/main/res/values/strings.xml b/analyze-network-with-subnetwork-trace/src/main/res/values/strings.xml new file mode 100644 index 000000000..494f4ba3e --- /dev/null +++ b/analyze-network-with-subnetwork-trace/src/main/res/values/strings.xml @@ -0,0 +1,20 @@ + + Analyze network with subnetwork trace + Trace options: + Include barriers + Include containers + Define new condition: + Example barrier condition for this data:\n\'Transformer Load\' EQUAL \'15\' + False + True + Add condition + Barrier conditions: + Trace + Reset + https://sampleserver7.arcgisonline.com/server/rest/services/UtilityNetwork/NapervilleElectric/FeatureServer + Select source + Select operator + Select value + Value + Loading subnetwork trace + diff --git a/apply-dictionary-renderer-to-feature-layer/README.md b/apply-dictionary-renderer-to-feature-layer/README.md new file mode 100644 index 000000000..800fc1f32 --- /dev/null +++ b/apply-dictionary-renderer-to-feature-layer/README.md @@ -0,0 +1,38 @@ +# Apply dictionary renderer to feature layer + +Convert features into graphics to show them with mil2525d symbols. + +![Image of apply dictionary renderer to feature layer](apply-dictionary-renderer-to-feature-layer.png) + +## Use case + +A dictionary renderer uses a style file along with a rule engine to display advanced symbology. This is useful for displaying features using precise military symbology. + +## How to use the sample + +Pan and zoom around the map. Observe the displayed military symbology on the map. + +## How it works + +1. Create a `Geodatabase` using `new Geodatabase(geodatabasePath)`. +2. Load the geodatabase using `Geodatabase.load()`. +3. Instantiate a `DictionarySymbolStyle` using `DictionarySymbolStyle.createFromFile(dictionarySymbolStylePath)`. +4. Load the symbol dictionary using `dictionarySymbolStyle.load()`. +5. For each `GeoDatabaseFeatureTable` in the `GeoDatabase`, create a feature layer with it, then add it to the map using `map.operationalLayers.add(featureLayer)`. +6. Create `DictionaryRenderer(dictionarySymbolStyle)` and assign it to the feature layer renderer. +7. Set the viewpoint of the map view to the extent of the feature layer using `mapView.setViewpoint(Viewpoint(featureLayer.fullExtent))`. + +## Relevant API + +* DictionaryRenderer +* DictionarySymbolStyle +* FeatureLayer +* Geodatabase + +## About the data + +The sample uses a [mil2525d stylx file](https://www.arcgis.com/home/item.html?id=c78b149a1d52414682c86a5feeb13d30) and a [mobile geodatabase](https://www.arcgis.com/home/item.html?id=e0d41b4b409a49a5a7ba11939d8535dc) from ArcGIS Online. + +## Tags + +military, symbol diff --git a/apply-dictionary-renderer-to-feature-layer/README.metadata.json b/apply-dictionary-renderer-to-feature-layer/README.metadata.json new file mode 100644 index 000000000..83290b4ae --- /dev/null +++ b/apply-dictionary-renderer-to-feature-layer/README.metadata.json @@ -0,0 +1,30 @@ +{ + "category": "Visualization", + "description": "Convert features into graphics to show them with mil2525d symbols.", + "formal_name": "ApplyDictionaryRendererToFeatureLayer", + "ignore": false, + "images": [ + "apply-dictionary-renderer-to-feature-layer.png" + ], + "keywords": [ + "military", + "symbol", + "DictionaryRenderer", + "DictionarySymbolStyle", + "FeatureLayer", + "Geodatabase" + ], + "language": "kotlin", + "redirect_from": "", + "relevant_apis": [ + "DictionaryRenderer", + "DictionarySymbolStyle", + "FeatureLayer", + "Geodatabase" + ], + "snippets": [ + "src/main/java/com/esri/arcgismaps/sample/applydictionaryrenderertofeaturelayer/MainActivity.kt", + "src/main/java/com/esri/arcgismaps/sample/applydictionaryrenderertofeaturelayer/DownloadActivity.kt" + ], + "title": "Apply dictionary renderer to feature layer" +} diff --git a/apply-dictionary-renderer-to-feature-layer/apply-dictionary-renderer-to-feature-layer.png b/apply-dictionary-renderer-to-feature-layer/apply-dictionary-renderer-to-feature-layer.png new file mode 100644 index 000000000..e4e97cd69 Binary files /dev/null and b/apply-dictionary-renderer-to-feature-layer/apply-dictionary-renderer-to-feature-layer.png differ diff --git a/apply-dictionary-renderer-to-feature-layer/build.gradle b/apply-dictionary-renderer-to-feature-layer/build.gradle new file mode 100644 index 000000000..e411515de --- /dev/null +++ b/apply-dictionary-renderer-to-feature-layer/build.gradle @@ -0,0 +1,35 @@ +apply plugin: 'com.android.application' +apply plugin: 'org.jetbrains.kotlin.android' + +android { + compileSdkVersion rootProject.ext.compileSdkVersion + + defaultConfig { + applicationId "com.esri.arcgismaps.sample.applydictionaryrenderertofeaturelayer" + minSdkVersion rootProject.ext.minSdkVersion + targetSdkVersion rootProject.ext.targetSdkVersion + versionCode rootProject.ext.versionCode + versionName rootProject.ext.versionName + buildConfigField("String", "API_KEY", API_KEY) + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } + + buildFeatures { + dataBinding true + } + + namespace 'com.esri.arcgismaps.sample.applydictionaryrenderertofeaturelayer' +} + +dependencies { + // lib dependencies from rootProject build.gradle + implementation "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion" + implementation "com.google.android.material:material:$materialVersion" + implementation project(path: ':samples-lib') +} diff --git a/apply-dictionary-renderer-to-feature-layer/proguard-rules.pro b/apply-dictionary-renderer-to-feature-layer/proguard-rules.pro new file mode 100644 index 000000000..f1b424510 --- /dev/null +++ b/apply-dictionary-renderer-to-feature-layer/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile diff --git a/apply-dictionary-renderer-to-feature-layer/src/main/AndroidManifest.xml b/apply-dictionary-renderer-to-feature-layer/src/main/AndroidManifest.xml new file mode 100644 index 000000000..264aa518e --- /dev/null +++ b/apply-dictionary-renderer-to-feature-layer/src/main/AndroidManifest.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apply-dictionary-renderer-to-feature-layer/src/main/java/com/esri/arcgismaps/sample/applydictionaryrenderertofeaturelayer/DownloadActivity.kt b/apply-dictionary-renderer-to-feature-layer/src/main/java/com/esri/arcgismaps/sample/applydictionaryrenderertofeaturelayer/DownloadActivity.kt new file mode 100644 index 000000000..cbc6b58ec --- /dev/null +++ b/apply-dictionary-renderer-to-feature-layer/src/main/java/com/esri/arcgismaps/sample/applydictionaryrenderertofeaturelayer/DownloadActivity.kt @@ -0,0 +1,22 @@ +package com.esri.arcgismaps.sample.applydictionaryrenderertofeaturelayer + +import android.content.Intent +import android.os.Bundle +import com.esri.arcgismaps.sample.sampleslib.DownloaderActivity + +class DownloadActivity : DownloaderActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + downloadAndStartSample( + Intent(this, MainActivity::class.java), + // get the app name of the sample + getString(R.string.app_name), + listOf( + // A stylx file that incorporates the MIL-STD-2525D symbol dictionary + "https://www.arcgis.com/home/item.html?id=c78b149a1d52414682c86a5feeb13d30", + // A mobile geodatabase created from the ArcGIS for Defense Military Overlay template + "https://www.arcgis.com/home/item.html?id=e0d41b4b409a49a5a7ba11939d8535dc" + ) + ) + } +} diff --git a/apply-dictionary-renderer-to-feature-layer/src/main/java/com/esri/arcgismaps/sample/applydictionaryrenderertofeaturelayer/MainActivity.kt b/apply-dictionary-renderer-to-feature-layer/src/main/java/com/esri/arcgismaps/sample/applydictionaryrenderertofeaturelayer/MainActivity.kt new file mode 100644 index 000000000..6c0b8d2d4 --- /dev/null +++ b/apply-dictionary-renderer-to-feature-layer/src/main/java/com/esri/arcgismaps/sample/applydictionaryrenderertofeaturelayer/MainActivity.kt @@ -0,0 +1,115 @@ +/* Copyright 2023 Esri + * + * 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. + * + */ + +package com.esri.arcgismaps.sample.applydictionaryrenderertofeaturelayer + +import android.os.Bundle +import android.util.Log +import androidx.appcompat.app.AppCompatActivity +import androidx.databinding.DataBindingUtil +import androidx.lifecycle.lifecycleScope +import com.arcgismaps.ApiKey +import com.arcgismaps.ArcGISEnvironment +import com.arcgismaps.data.Geodatabase +import com.arcgismaps.mapping.ArcGISMap +import com.arcgismaps.mapping.BasemapStyle +import com.arcgismaps.mapping.Viewpoint +import com.arcgismaps.mapping.layers.FeatureLayer +import com.arcgismaps.mapping.symbology.DictionaryRenderer +import com.arcgismaps.mapping.symbology.DictionarySymbolStyle +import com.esri.arcgismaps.sample.applydictionaryrenderertofeaturelayer.databinding.ActivityMainBinding +import com.google.android.material.snackbar.Snackbar +import kotlinx.coroutines.launch +import java.io.File + +class MainActivity : AppCompatActivity() { + + // set up data binding for the activity + private val activityMainBinding: ActivityMainBinding by lazy { + DataBindingUtil.setContentView(this, R.layout.activity_main) + } + + private val mapView by lazy { + activityMainBinding.mapView + } + + private val provisionPath: String by lazy { + getExternalFilesDir(null)?.path.toString() + File.separator + getString(R.string.app_name) + } + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + + // authentication with an API key or named user is + // required to access basemaps and other location services + ArcGISEnvironment.apiKey = ApiKey.create(BuildConfig.API_KEY) + lifecycle.addObserver(mapView) + + // create and add a map with a navigation night basemap style + val map = ArcGISMap(BasemapStyle.ArcGISTopographic) + mapView.map = map + + // locate the .stylx file in the device + val styleFile = File(provisionPath, getString(R.string.mil2525d_stylx)) + // instantiate the dictionarySymbolStyle using the file path + val dictionarySymbolStyle = DictionarySymbolStyle.createFromFile(styleFile.absolutePath) + + // locate the .geodatabase file in the device + val geodatabaseFile = File(provisionPath, getString(R.string.militaryoverlay_geodatabase)) + // instantiate the geodatabase with the file path + val geodatabase = Geodatabase(geodatabaseFile.path) + + lifecycleScope.launch { + // load the dictionary symbol style + dictionarySymbolStyle.load().getOrElse { + return@launch showError("Error loading DictionarySymbolStyle: ${it.message}") + } + + // load the geodatabase + geodatabase.load().getOrElse { + showError("Error loading Geodatabase: ${it.message}") + } + + geodatabase.featureTables.forEach { geodatabaseFeatureTable -> + // load each geodatabaseFeatureTable and create featureLayer from it + geodatabaseFeatureTable.load().getOrElse { + return@launch showError("Error loading GeodatabaseFeatureTable: ${it.message}") + } + val featureLayer = FeatureLayer.createWithFeatureTable(geodatabaseFeatureTable) + featureLayer.load().getOrElse { + return@launch showError("Error loading FeatureLayer: ${it.message}") + } + // add featureLayer to the map's operational layer + mapView.map?.operationalLayers?.add(featureLayer) + + // create dictionaryRenderer using the dictionarySymbolStyle and apply it to the featureLayer's renderer + val dictionaryRenderer = DictionaryRenderer(dictionarySymbolStyle) + featureLayer.renderer = dictionaryRenderer + // get the featureLayer's envelope to set the map viewpoint + val extent = featureLayer.fullExtent + ?: return@launch showError("Error retrieving extent of the feature layer") + mapView.setViewpoint(Viewpoint(extent)) + } + } + } + + private fun showError(message: String) { + Log.e(localClassName, message) + Snackbar.make(mapView, message, Snackbar.LENGTH_SHORT).show() + } +} + + diff --git a/apply-dictionary-renderer-to-feature-layer/src/main/res/drawable-v24/ic_launcher_foreground.xml b/apply-dictionary-renderer-to-feature-layer/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 000000000..c7bd21dbd --- /dev/null +++ b/apply-dictionary-renderer-to-feature-layer/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + diff --git a/apply-dictionary-renderer-to-feature-layer/src/main/res/drawable/ic_launcher_background.xml b/apply-dictionary-renderer-to-feature-layer/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 000000000..6d8cae103 --- /dev/null +++ b/apply-dictionary-renderer-to-feature-layer/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apply-dictionary-renderer-to-feature-layer/src/main/res/layout/activity_main.xml b/apply-dictionary-renderer-to-feature-layer/src/main/res/layout/activity_main.xml new file mode 100644 index 000000000..7bd357b2f --- /dev/null +++ b/apply-dictionary-renderer-to-feature-layer/src/main/res/layout/activity_main.xml @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 000000000..6b78462d6 --- /dev/null +++ b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 000000000..6b78462d6 --- /dev/null +++ b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-hdpi/ic_launcher.png b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..a2f590828 Binary files /dev/null and b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-hdpi/ic_launcher_round.png b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 000000000..1b5239980 Binary files /dev/null and b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-mdpi/ic_launcher.png b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..ff10afd6e Binary files /dev/null and b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-mdpi/ic_launcher_round.png b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 000000000..115a4c768 Binary files /dev/null and b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-xhdpi/ic_launcher.png b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..dcd3cd808 Binary files /dev/null and b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 000000000..459ca609d Binary files /dev/null and b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-xxhdpi/ic_launcher.png b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..8ca12fe02 Binary files /dev/null and b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 000000000..8e19b410a Binary files /dev/null and b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..b824ebdd4 Binary files /dev/null and b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 000000000..4c19a13c2 Binary files /dev/null and b/apply-dictionary-renderer-to-feature-layer/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/apply-dictionary-renderer-to-feature-layer/src/main/res/values/strings.xml b/apply-dictionary-renderer-to-feature-layer/src/main/res/values/strings.xml new file mode 100644 index 000000000..6458b63ef --- /dev/null +++ b/apply-dictionary-renderer-to-feature-layer/src/main/res/values/strings.xml @@ -0,0 +1,5 @@ + + Apply dictionary renderer to feature layer + /militaryoverlay.geodatabase + /mil2525d.stylx + diff --git a/apply-function-to-raster-from-service/.gitignore b/apply-function-to-raster-from-service/.gitignore new file mode 100644 index 000000000..796b96d1c --- /dev/null +++ b/apply-function-to-raster-from-service/.gitignore @@ -0,0 +1 @@ +/build diff --git a/apply-function-to-raster-from-service/README.md b/apply-function-to-raster-from-service/README.md new file mode 100644 index 000000000..fc8dd0395 --- /dev/null +++ b/apply-function-to-raster-from-service/README.md @@ -0,0 +1,44 @@ +# Apply function to raster from service + +Load a raster from a service, then apply a function to it. + +![Image of apply function to raster from service](apply-function-to-raster-from-service.png) + +## Use case + +Raster functions allow processing operations that can be applied to one or more rasters on the fly. Functions can be applied to rasters that come from a service. A land survey agency may apply hillshade and aspect functions to rasters with elevation data in order to better determine the topography of a landscape and to make further planning decisions. + +## How to use the sample + +Tap the "Apply Layer" button to apply the raster function and display the result. Tap "Reset" to apply the image service raster back to the rasterLayer. + +## How it works + +1. Create the `ImageServiceRaster` referring to the image server URL. +2. Create the `RasterFunction` from a JSON string. +3. Get the arguments of the raster function with `rasterFunction.arguments`. +4. Get the names of the raster arguments with `rasterFunctionArguments.rasterNames`. +5. Set the raster argument with `rasterFunctionArguments.setRaster(rasterNames[0], imageServiceRaster)`. +6. Create a new `Raster` referring to the raster function. +7. Create a `RasterLayer` to visualize the computed raster. +8. Display the raster. + +## Relevant API + +* ImageServiceRaster +* Raster +* RasterFunction +* RasterFunctionArguments +* RasterLayer + +## About the data + +The sample applies a hillshade function to a raster produced from the National Land Cover Database, [NLCDLandCover2001](https://sampleserver6.arcgisonline.com/arcgis/rest/services/NLCDLandCover2001/ImageServer). You can learn more about the [hillshade function](http://desktop.arcgis.com/en/arcmap/latest/manage-data/raster-and-images/hillshade-function.htm) in the *ArcMap* documentation. + +## Additional information + +The raster function computation happens locally on the client device. + +## Tags + +function, layer, raster, raster function, service diff --git a/apply-function-to-raster-from-service/README.metadata.json b/apply-function-to-raster-from-service/README.metadata.json new file mode 100644 index 000000000..8024054ed --- /dev/null +++ b/apply-function-to-raster-from-service/README.metadata.json @@ -0,0 +1,34 @@ +{ + "category": "Layers", + "description": "Load a raster from a service, then apply a function to it.", + "formal_name": "ApplyFunctionToRasterFromService", + "ignore": false, + "images": [ + "apply-function-to-raster-from-service.png" + ], + "keywords": [ + "function", + "layer", + "raster", + "raster function", + "service", + "ImageServiceRaster", + "Raster", + "RasterFunction", + "RasterFunctionArguments", + "RasterLayer" + ], + "language": "kotlin", + "redirect_from": "", + "relevant_apis": [ + "ImageServiceRaster", + "Raster", + "RasterFunction", + "RasterFunctionArguments", + "RasterLayer" + ], + "snippets": [ + "src/main/java/com/esri/arcgismaps/sample/applyfunctiontorasterfromservice/MainActivity.kt" + ], + "title": "Apply function to raster from service" +} diff --git a/apply-function-to-raster-from-service/apply-function-to-raster-from-service.png b/apply-function-to-raster-from-service/apply-function-to-raster-from-service.png new file mode 100644 index 000000000..dce506a1a Binary files /dev/null and b/apply-function-to-raster-from-service/apply-function-to-raster-from-service.png differ diff --git a/apply-function-to-raster-from-service/build.gradle b/apply-function-to-raster-from-service/build.gradle new file mode 100644 index 000000000..3e8f7380a --- /dev/null +++ b/apply-function-to-raster-from-service/build.gradle @@ -0,0 +1,35 @@ +apply plugin: 'com.android.application' +apply plugin: 'org.jetbrains.kotlin.android' + +android { + compileSdkVersion rootProject.ext.compileSdkVersion + + defaultConfig { + applicationId "com.esri.arcgismaps.sample.applyfunctiontorasterfromservice" + minSdkVersion rootProject.ext.minSdkVersion + targetSdkVersion rootProject.ext.targetSdkVersion + versionCode rootProject.ext.versionCode + versionName rootProject.ext.versionName + buildConfigField("String", "API_KEY", API_KEY) + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } + + buildFeatures { + dataBinding true + } + + namespace 'com.esri.arcgismaps.sample.applyfunctiontorasterfromservice' +} + +dependencies { + // lib dependencies from rootProject build.gradle + implementation "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion" + implementation "com.google.android.material:material:$materialVersion" + implementation project(path: ':samples-lib') +} diff --git a/apply-function-to-raster-from-service/proguard-rules.pro b/apply-function-to-raster-from-service/proguard-rules.pro new file mode 100644 index 000000000..f1b424510 --- /dev/null +++ b/apply-function-to-raster-from-service/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile diff --git a/apply-function-to-raster-from-service/src/main/AndroidManifest.xml b/apply-function-to-raster-from-service/src/main/AndroidManifest.xml new file mode 100644 index 000000000..c6647b46d --- /dev/null +++ b/apply-function-to-raster-from-service/src/main/AndroidManifest.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + diff --git a/apply-function-to-raster-from-service/src/main/java/com/esri/arcgismaps/sample/applyfunctiontorasterfromservice/MainActivity.kt b/apply-function-to-raster-from-service/src/main/java/com/esri/arcgismaps/sample/applyfunctiontorasterfromservice/MainActivity.kt new file mode 100644 index 000000000..4907d6a9d --- /dev/null +++ b/apply-function-to-raster-from-service/src/main/java/com/esri/arcgismaps/sample/applyfunctiontorasterfromservice/MainActivity.kt @@ -0,0 +1,147 @@ +/* Copyright 2023 Esri + * + * 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. + * + */ + +package com.esri.arcgismaps.sample.applyfunctiontorasterfromservice + +import android.os.Bundle +import android.util.Log +import android.view.View +import androidx.appcompat.app.AppCompatActivity +import androidx.databinding.DataBindingUtil +import androidx.lifecycle.lifecycleScope +import com.arcgismaps.ApiKey +import com.arcgismaps.ArcGISEnvironment +import com.arcgismaps.LoadStatus +import com.arcgismaps.mapping.ArcGISMap +import com.arcgismaps.mapping.BasemapStyle +import com.arcgismaps.mapping.layers.RasterLayer +import com.arcgismaps.raster.ImageServiceRaster +import com.arcgismaps.raster.Raster +import com.arcgismaps.raster.RasterFunction +import com.esri.arcgismaps.sample.applyfunctiontorasterfromservice.databinding.ActivityMainBinding +import com.google.android.material.snackbar.Snackbar +import kotlinx.coroutines.launch + +class MainActivity : AppCompatActivity() { + + private val activityMainBinding: ActivityMainBinding by lazy { + DataBindingUtil.setContentView(this, R.layout.activity_main) + } + + private val mapView by lazy { + activityMainBinding.mapView + } + + private val imageServiceRaster: ImageServiceRaster by lazy { + ImageServiceRaster(getString(R.string.image_service_raster_url)) + } + + private val imageRasterLayer: RasterLayer by lazy { + RasterLayer(imageServiceRaster) + } + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + + // authentication with an API key or named user is + // required to access basemaps and other location services + ArcGISEnvironment.apiKey = ApiKey.create(BuildConfig.API_KEY) + lifecycle.addObserver(mapView) + + // create and add a map with a dark gray basemap style + val map = ArcGISMap(BasemapStyle.ArcGISDarkGray) + mapView.map = map + + // add the imageRasterLayer to the map + addImageRasterLayer() + + activityMainBinding.apply { + rasterButton.setOnClickListener { + // update the raster with simplified hillshade + applyRasterFunction() + resetButton.visibility = View.VISIBLE + rasterButton.visibility = View.GONE + } + resetButton.setOnClickListener { + // reset map to back to the RasterLayer + addImageRasterLayer() + resetButton.visibility = View.GONE + rasterButton.visibility = View.VISIBLE + } + } + } + + /** + * Adds the image raster layer to the map and set's the viewpoint + * to the image server raster's bounding geometry + */ + private fun addImageRasterLayer() { + // clear and add the imageRasterLayer to the map + mapView.map?.operationalLayers?.apply { + clear() + add(imageRasterLayer) + } + + // collect the load status of the RasterLayer + lifecycleScope.launch { + imageRasterLayer.loadStatus.collect { loadStatus -> + if (loadStatus == LoadStatus.Loaded) { + // get the center point of the image service raster + val extentEnvelope = imageServiceRaster.serviceInfo?.fullExtent + ?: return@collect showError("Error retrieving the ArcGISImageServiceInfo") + // set the viewpoint of the map to the envelope + mapView.setViewpointGeometry(extentEnvelope) + } else if (loadStatus is LoadStatus.FailedToLoad) { + showError("Error loading image raster layer: ${loadStatus.error.message}") + } + } + } + } + + /** + * Create a hillshade layer using a custom JSON raster function. + */ + private fun applyRasterFunction() { + // create raster function from json string + val rasterFunction = RasterFunction.fromJsonOrNull(getString(R.string.hillshade_simplified)) + ?: return showError("Error creating a raster function object from JSON") + + // get parameter name value pairs used by hillside + val rasterFunctionArguments = rasterFunction.arguments + ?: return showError("Raster function arguments is null") + + // get a list of raster names associated with the raster function + val rasterNames = rasterFunctionArguments.rasterNames + // check if raster function arguments contains raster variable names + if(rasterNames.isNotEmpty()){ + // using the first raster variable name + rasterFunctionArguments.setRaster(rasterNames[0], imageServiceRaster) + // create raster as raster layer + val hillshadeRaster = Raster.createWithRasterFunction(rasterFunction) + val hillshadeLayer = RasterLayer(hillshadeRaster) + // clear and add the layer to the map + mapView.map?.operationalLayers?.add(hillshadeLayer) + } else{ + showError("Raster function arguments does not contain raster variable names") + } + + } + + private fun showError(message: String) { + Log.e(localClassName, message) + Snackbar.make(mapView, message, Snackbar.LENGTH_SHORT).show() + } +} diff --git a/apply-function-to-raster-from-service/src/main/res/drawable-v24/ic_launcher_foreground.xml b/apply-function-to-raster-from-service/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 000000000..c7bd21dbd --- /dev/null +++ b/apply-function-to-raster-from-service/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + diff --git a/apply-function-to-raster-from-service/src/main/res/drawable/ic_launcher_background.xml b/apply-function-to-raster-from-service/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 000000000..6d8cae103 --- /dev/null +++ b/apply-function-to-raster-from-service/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apply-function-to-raster-from-service/src/main/res/layout/activity_main.xml b/apply-function-to-raster-from-service/src/main/res/layout/activity_main.xml new file mode 100644 index 000000000..94442e56b --- /dev/null +++ b/apply-function-to-raster-from-service/src/main/res/layout/activity_main.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + diff --git a/apply-function-to-raster-from-service/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/apply-function-to-raster-from-service/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 000000000..6b78462d6 --- /dev/null +++ b/apply-function-to-raster-from-service/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/apply-function-to-raster-from-service/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/apply-function-to-raster-from-service/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 000000000..6b78462d6 --- /dev/null +++ b/apply-function-to-raster-from-service/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/apply-function-to-raster-from-service/src/main/res/mipmap-hdpi/ic_launcher.png b/apply-function-to-raster-from-service/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..a2f590828 Binary files /dev/null and b/apply-function-to-raster-from-service/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/apply-function-to-raster-from-service/src/main/res/mipmap-hdpi/ic_launcher_round.png b/apply-function-to-raster-from-service/src/main/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 000000000..1b5239980 Binary files /dev/null and b/apply-function-to-raster-from-service/src/main/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/apply-function-to-raster-from-service/src/main/res/mipmap-mdpi/ic_launcher.png b/apply-function-to-raster-from-service/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..ff10afd6e Binary files /dev/null and b/apply-function-to-raster-from-service/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/apply-function-to-raster-from-service/src/main/res/mipmap-mdpi/ic_launcher_round.png b/apply-function-to-raster-from-service/src/main/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 000000000..115a4c768 Binary files /dev/null and b/apply-function-to-raster-from-service/src/main/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/apply-function-to-raster-from-service/src/main/res/mipmap-xhdpi/ic_launcher.png b/apply-function-to-raster-from-service/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..dcd3cd808 Binary files /dev/null and b/apply-function-to-raster-from-service/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/apply-function-to-raster-from-service/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/apply-function-to-raster-from-service/src/main/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 000000000..459ca609d Binary files /dev/null and b/apply-function-to-raster-from-service/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/apply-function-to-raster-from-service/src/main/res/mipmap-xxhdpi/ic_launcher.png b/apply-function-to-raster-from-service/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..8ca12fe02 Binary files /dev/null and b/apply-function-to-raster-from-service/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/apply-function-to-raster-from-service/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/apply-function-to-raster-from-service/src/main/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 000000000..8e19b410a Binary files /dev/null and b/apply-function-to-raster-from-service/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/apply-function-to-raster-from-service/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/apply-function-to-raster-from-service/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..b824ebdd4 Binary files /dev/null and b/apply-function-to-raster-from-service/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/apply-function-to-raster-from-service/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/apply-function-to-raster-from-service/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 000000000..4c19a13c2 Binary files /dev/null and b/apply-function-to-raster-from-service/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/apply-function-to-raster-from-service/src/main/res/values/strings.xml b/apply-function-to-raster-from-service/src/main/res/values/strings.xml new file mode 100644 index 000000000..772070487 --- /dev/null +++ b/apply-function-to-raster-from-service/src/main/res/values/strings.xml @@ -0,0 +1,22 @@ + + Apply function to raster from service + https://sampleserver6.arcgisonline.com/arcgis/rest/services/NLCDLandCover2001/ImageServer + + { + \"raster_function_arguments\": + { + \"z_factor\":{\"double\":25.0,\"type\":\"Raster_function_variable\"}, + \"slope_type\":{\"raster_slope_type\":\"none\",\"type\":\"Raster_function_variable\"}, + \"azimuth\":{\"double\":315,\"type\":\"Raster_function_variable\"}, + \"altitude\":{\"double\":45,\"type\":\"Raster_function_variable\"}, + \"type\":\"Raster_function_arguments\", + \"raster\":{\"name\":\"raster\",\"is_raster\":true,\"type\":\"Raster_function_variable\"}, + \"nbits\":{\"int\":8,\"type\":\"Raster_function_variable\"} + }, + \"raster_function\":{\"type\":\"Hillshade_function\"}, + \"type\":\"Raster_function_template\" + } + + Apply Layer + Reset + diff --git a/authenticate-with-oauth/.gitignore b/authenticate-with-oauth/.gitignore new file mode 100644 index 000000000..796b96d1c --- /dev/null +++ b/authenticate-with-oauth/.gitignore @@ -0,0 +1 @@ +/build diff --git a/authenticate-with-oauth/README.md b/authenticate-with-oauth/README.md new file mode 100644 index 000000000..191ada1a9 --- /dev/null +++ b/authenticate-with-oauth/README.md @@ -0,0 +1,82 @@ +# Authenticate with OAuth + +Authenticate with ArcGIS Online (or your own portal) using OAuth2 to access secured resources (such as private web maps or layers). Accessing secured items requires logging in to the portal that hosts them (an ArcGIS Online account, for example). + +![Image of authenticate with OAuth](authenticate-with-oauth.png) + +## Use case + +Your app may need to access items that are only shared with authorized users. For example, your organization may host private data layers or feature services that are only accessible to verified users. You may also need to take advantage of premium ArcGIS Online services, such as geocoding or routing services, which require a named user login. + +## How to use the sample + +When you run the sample, the app will load a web map which contains premium content. You will be challenged for an ArcGIS Online login to view the private layers. Enter a user name and password for an ArcGIS Online named user account (such as your ArcGIS for Developers account). If you authenticate successfully, the traffic layer will display, otherwise the map will contain only the public basemap layer. + +## Use of Model View ViewModel (MVVM) + +This sample takes advantage of Android's `ViewModel` to encapsulate launching the OAuth user sign in prompt, establishing the activity result contract, and verifying the OAuth user's credentials. + +1. An Activity which launches a custom tab intent and sets its own result to the redirect URI of the custom tab's result +2. A ViewModel which launches the above activity when prompted, and when it receives the result, passes it through to the `OAuthUserSignIn` object +3. An `ArcGISAuthenticationChallengeHandler` which prompts the ViewModel to start the sign in process with a URL if it is valid. + +![Image of a flowchart explaining the OAuth sample](oauth-sample-flowchart.png) + +## How it works + +1. Create an `OAuthConfiguration` specifying the portal URL, client ID, and redirect URI. +2. Create an `OAuthUserSignInActivity` that will launch the sign in page in a Custom Tab and receive & process the redirect intent when completing the Custom Tab prompt. +3. Set up `ViewModel` responsible for launching an OAuth user sign in prompt and retrieving the authorized redirect URI +4. Crete an `ArcGISAuthenticationChallengeHandler` that checks if the `ArcGISAuthenticationChallenge.requestUrl` matches the `OAuthUserConfiguration's` with `canBeUserdForUrl()`. If the challenge matches, then create a `OAuthUserCredential` by invoking the `OAuthUserSignInViewModel.promptForOAuthUserSignIn` +5. Set the `AuthenticationManager`'s `arcGISAuthenticationChallengeHandler` to the `ArcGISAuthenticationChallengeHandler` created above. +6. Load a map with premium content requiring authentication to automatically invoke the `ArcGISAuthenticationHandler`. + +#### Setting up the Manifest.xml: + +1. Set the launch mode for the `OAuthUserSignInActivity` to route it's intent instance through a call to its `onNewIntent()` method, rather than creating a new instance of the activity. To find out more on setting the launch configuration of an activity, visit the [Android docs](https://developer.android.com/guide/topics/manifest/activity-element) + + ```xml + ` categories tags to be able to launch a custom browser tab. + + ```xml + + + ``` + +3. Set the `data` tag to be able to use the redirect URI to navigate back to the app after prompting for OAuth credentials. To learn more on setting up the data specification to an intent filter, visit the [Android docs](https://developer.android.com/guide/topics/manifest/data-element). + + ```xml + + ``` + +## Relevant API + +* ArcGISAuthenticationChallengeHandler +* ArcGISAuthenticationChallengeResponse +* AuthenticationManager +* OAuthUserConfiguration +* OAuthUserCredential +* OAuthUserSignIn +* PortalItem + +## Additional information + +The sample uses an `ActivityResultContract` to get the response from the OAuth user sign in page. This allows for developers to natively navigate back their apps as you can register a callback for an activity result. [Android Documentation](https://developer.android.com/training/basics/intents/result) + +The workflow presented in this sample works for all SAML based enterprise (IWA, PKI, Okta, etc.) & social (facebook, google, etc.) identity providers for ArcGIS Online or Portal. For more information, see the topic [Set up enterprise logins](https://doc.arcgis.com/en/arcgis-online/administer/enterprise-logins.htm). + +For additional information on using Oauth in your app, see the topic [Authenticate with the API](https://developers.arcgis.com/documentation/core-concepts/security-and-authentication/mobile-and-native-user-logins/) in *Mobile and Native Named User Login*. + +For more information on how OAuth works visit [OAuth 2.0 with ArcGIS](https://developers.arcgis.com/documentation/mapping-apis-and-services/security/oauth-2.0/) + +## Tags + +authentication, cloud, credential, OAuth, portal, security diff --git a/authenticate-with-oauth/README.metadata.json b/authenticate-with-oauth/README.metadata.json new file mode 100644 index 000000000..b26cf92aa --- /dev/null +++ b/authenticate-with-oauth/README.metadata.json @@ -0,0 +1,42 @@ +{ + "category": "Cloud and Portal", + "description": "Authenticate with ArcGIS Online (or your own portal) using OAuth2 to access secured resources (such as private web maps or layers). Accessing secured items requires logging in to the portal that hosts them (an ArcGIS Online account, for example).", + "formal_name": "AuthenticateWithOauth", + "ignore": false, + "images": [ + "authenticate-with-oauth.png", + "oauth-sample-flowchart.png" + ], + "keywords": [ + "OAuth", + "authentication", + "cloud", + "credential", + "portal", + "security", + "ArcGISAuthenticationChallengeHandler", + "ArcGISAuthenticationChallengeResponse", + "AuthenticationManager", + "OAuthUserConfiguration", + "OAuthUserCredential", + "OAuthUserSignIn", + "PortalItem" + ], + "language": "kotlin", + "redirect_from": "", + "relevant_apis": [ + "ArcGISAuthenticationChallengeHandler", + "ArcGISAuthenticationChallengeResponse", + "AuthenticationManager", + "OAuthUserConfiguration", + "OAuthUserCredential", + "OAuthUserSignIn", + "PortalItem" + ], + "snippets": [ + "src/main/java/com/esri/arcgismaps/sample/authenticatewithoauth/MainActivity.kt", + "src/main/java/com/esri/arcgismaps/sample/authenticatewithoauth/OAuthUserSignInActivity.kt", + "src/main/java/com/esri/arcgismaps/sample/authenticatewithoauth/OAuthUserSignInViewModel.kt" + ], + "title": "Authenticate with OAuth" +} diff --git a/authenticate-with-oauth/authenticate-with-oauth.png b/authenticate-with-oauth/authenticate-with-oauth.png new file mode 100644 index 000000000..7158c1675 Binary files /dev/null and b/authenticate-with-oauth/authenticate-with-oauth.png differ diff --git a/authenticate-with-oauth/build.gradle b/authenticate-with-oauth/build.gradle new file mode 100644 index 000000000..b5ddc96f8 --- /dev/null +++ b/authenticate-with-oauth/build.gradle @@ -0,0 +1,40 @@ +apply plugin: 'com.android.application' +apply plugin: 'org.jetbrains.kotlin.android' + +android { + compileSdkVersion rootProject.ext.compileSdkVersion + + defaultConfig { + applicationId "com.esri.arcgismaps.sample.authenticatewithoauth" + minSdkVersion rootProject.ext.minSdkVersion + targetSdkVersion rootProject.ext.targetSdkVersion + versionCode rootProject.ext.versionCode + versionName rootProject.ext.versionName + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } + + buildFeatures { + dataBinding true + } + + namespace 'com.esri.arcgismaps.sample.authenticatewithoauth' +} + +dependencies { + // lib dependencies from rootProject build.gradle + implementation "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion" + implementation "com.google.android.material:material:$materialVersion" + implementation "androidx.activity:activity-ktx:$ktxActivityExt" + implementation "androidx.fragment:fragment-ktx:$ktxFragmentsExt" + implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$ktxLifecycle" + implementation "androidx.lifecycle:lifecycle-livedata-ktx:$ktxLifecycle" + implementation "androidx.lifecycle:lifecycle-runtime-ktx:$ktxLifecycle" + implementation "androidx.browser:browser:$androidBrowserVersion" + implementation project(path: ':samples-lib') +} diff --git a/authenticate-with-oauth/oauth-sample-flowchart.png b/authenticate-with-oauth/oauth-sample-flowchart.png new file mode 100644 index 000000000..9afa1a8ce Binary files /dev/null and b/authenticate-with-oauth/oauth-sample-flowchart.png differ diff --git a/authenticate-with-oauth/proguard-rules.pro b/authenticate-with-oauth/proguard-rules.pro new file mode 100644 index 000000000..f1b424510 --- /dev/null +++ b/authenticate-with-oauth/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile diff --git a/authenticate-with-oauth/src/main/AndroidManifest.xml b/authenticate-with-oauth/src/main/AndroidManifest.xml new file mode 100644 index 000000000..67a55000e --- /dev/null +++ b/authenticate-with-oauth/src/main/AndroidManifest.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/authenticate-with-oauth/src/main/java/com/esri/arcgismaps/sample/authenticatewithoauth/MainActivity.kt b/authenticate-with-oauth/src/main/java/com/esri/arcgismaps/sample/authenticatewithoauth/MainActivity.kt new file mode 100644 index 000000000..804ff32be --- /dev/null +++ b/authenticate-with-oauth/src/main/java/com/esri/arcgismaps/sample/authenticatewithoauth/MainActivity.kt @@ -0,0 +1,119 @@ +/* Copyright 2023 Esri + * + * 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. + * + */ + +package com.esri.arcgismaps.sample.authenticatewithoauth + +import android.os.Bundle +import android.view.View +import androidx.appcompat.app.AlertDialog +import androidx.appcompat.app.AppCompatActivity +import androidx.databinding.DataBindingUtil +import androidx.lifecycle.ViewModelProvider +import androidx.lifecycle.lifecycleScope +import com.arcgismaps.ArcGISEnvironment +import com.arcgismaps.httpcore.authentication.ArcGISAuthenticationChallengeHandler +import com.arcgismaps.httpcore.authentication.ArcGISAuthenticationChallengeResponse +import com.arcgismaps.httpcore.authentication.OAuthUserConfiguration +import com.arcgismaps.httpcore.authentication.OAuthUserCredential +import com.arcgismaps.mapping.ArcGISMap +import com.arcgismaps.mapping.PortalItem +import com.arcgismaps.portal.Portal +import com.esri.arcgismaps.sample.authenticatewithoauth.databinding.ActivityMainBinding +import kotlinx.coroutines.launch + +class MainActivity : AppCompatActivity() { + + // set up data binding for the activity + private val activityMainBinding: ActivityMainBinding by lazy { + DataBindingUtil.setContentView(this, R.layout.activity_main) + } + + private val mapView by lazy { + activityMainBinding.mapView + } + + // to view the traffic layer in the portal, you must enter valid ArcGIS Online credentials. + private val portal by lazy { + Portal(getString(R.string.auth_portal_url), Portal.Connection.Authenticated) + } + + private val oAuthConfiguration by lazy { + OAuthUserConfiguration( + portalUrl = portal.url, + clientId = getString(R.string.oauth_client_id), + redirectUrl = getString(R.string.oauth_redirect_uri) + ) + } + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + + // initialize the OAuth sign in view model to receive + // the result from the activity result contract + val oAuthUserSignInViewModel = ViewModelProvider( + owner = this, + factory = OAuthUserSignInViewModel.getFactory { activityResultRegistry } + )[OAuthUserSignInViewModel::class.java] + + lifecycle.addObserver(oAuthUserSignInViewModel) + lifecycle.addObserver(mapView) + + setUpArcGISAuthenticationChallengeHandler(oAuthUserSignInViewModel) + + // check if the portal can be loaded + lifecycleScope.launch { + portal.load().onSuccess { + AlertDialog.Builder(this@MainActivity).setMessage( + "Portal succeeded to load, portal user: ${portal.user?.username}" + ).create().show() + // authentication complete, display PortalItem + mapView.apply { + visibility = View.VISIBLE + map = ArcGISMap(PortalItem(portal.url)) + } + }.onFailure { throwable -> + // authentication failed, display error message + activityMainBinding.authFailedMessage.apply { + visibility = View.VISIBLE + text = String.format("Portal failed to load, ${throwable.message}") + } + } + } + } + + /** + * Sets up the [ArcGISAuthenticationChallengeHandler] to create an + * [OAuthUserCredential] by launching a browser page to perform a OAuth user + * login prompt using [oAuthUserSignInViewModel] + */ + private fun setUpArcGISAuthenticationChallengeHandler(oAuthUserSignInViewModel: OAuthUserSignInViewModel) { + ArcGISEnvironment.authenticationManager.arcGISAuthenticationChallengeHandler = + ArcGISAuthenticationChallengeHandler { challenge -> + if (oAuthConfiguration.canBeUsedForUrl(challenge.requestUrl)) { + val oAuthUserCredential = + OAuthUserCredential.create(oAuthConfiguration) { oAuthUserSignIn -> + oAuthUserSignInViewModel.promptForOAuthUserSignIn(oAuthUserSignIn) + }.getOrThrow() + + ArcGISAuthenticationChallengeResponse.ContinueWithCredential(oAuthUserCredential) + } else { + ArcGISAuthenticationChallengeResponse.ContinueAndFailWithError( + UnsupportedOperationException() + ) + } + } + } +} diff --git a/authenticate-with-oauth/src/main/java/com/esri/arcgismaps/sample/authenticatewithoauth/OAuthUserSignInActivity.kt b/authenticate-with-oauth/src/main/java/com/esri/arcgismaps/sample/authenticatewithoauth/OAuthUserSignInActivity.kt new file mode 100644 index 000000000..29db40fe2 --- /dev/null +++ b/authenticate-with-oauth/src/main/java/com/esri/arcgismaps/sample/authenticatewithoauth/OAuthUserSignInActivity.kt @@ -0,0 +1,138 @@ +/* Copyright 2023 Esri + * + * 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. + * + */ + +package com.esri.arcgismaps.sample.authenticatewithoauth + +import android.content.Context +import android.content.Intent +import android.net.Uri +import android.os.Bundle +import androidx.activity.result.contract.ActivityResultContract +import androidx.appcompat.app.AppCompatActivity +import androidx.browser.customtabs.CustomTabsIntent +import androidx.lifecycle.Lifecycle +import com.arcgismaps.httpcore.authentication.OAuthUserSignIn + +private const val AUTHORIZE_URL_KEY = "KEY_INTENT_EXTRA_AUTHORIZE_URL" +private const val CUSTOM_TABS_WAS_LAUNCHED_KEY = "KEY_INTENT_EXTRA_CUSTOM_TABS_WAS_LAUNCHED" +private const val OAUTH_RESPONSE_URI_KEY = "KEY_INTENT_EXTRA_OAUTH_RESPONSE_URI" +private const val REDIRECT_URL_KEY = "KEY_INTENT_EXTRA_REDIRECT_URL" + +private const val RESULT_CODE_SUCCESS = 1 +private const val RESULT_CODE_CANCELED = 2 + +/** + * An activity that is responsible for launching a CustomTabs activity and to receive and process + * the redirect intent as a result of a user completing the CustomTabs prompt. + */ +class OAuthUserSignInActivity : AppCompatActivity() { + + private var customTabsWasLaunched = false + private lateinit var redirectUrl: String + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + // redirect URL should be a valid string since we are adding it in the ActivityResultContract + redirectUrl = intent.getStringExtra(REDIRECT_URL_KEY).toString() + + if (savedInstanceState != null) { + customTabsWasLaunched = savedInstanceState.getBoolean( + CUSTOM_TABS_WAS_LAUNCHED_KEY + ) + } + + if (!customTabsWasLaunched) { + val authorizeUrl = intent.getStringExtra(AUTHORIZE_URL_KEY) + authorizeUrl?.let { + launchCustomTabs(it) + } + } + } + + override fun onSaveInstanceState(outState: Bundle) { + super.onSaveInstanceState(outState) + outState.putBoolean(CUSTOM_TABS_WAS_LAUNCHED_KEY, customTabsWasLaunched) + } + + override fun onNewIntent(customTabsIntent: Intent) { + super.onNewIntent(customTabsIntent) + // get the OAuth authorized URI returned from the custom tab + customTabsIntent.data?.let { uri -> + // the authorization code to generate the OAuth token, for example + // in this sample app: "my-ags-app://auth?code=" + val authorizationCode = uri.toString() + // check if the URI matches with the OAuthUserConfiguration's redirectUrl + if (authorizationCode.startsWith(redirectUrl)) { + val intent = Intent().apply { + putExtra(OAUTH_RESPONSE_URI_KEY, authorizationCode) + } + setResult(RESULT_CODE_SUCCESS, intent) + } else { + // the uri likely contains an error, for example if the user hits the cancel button + // on the custom tab prompt + setResult(RESULT_CODE_CANCELED, Intent()) + } + finish() + } + } + + override fun onWindowFocusChanged(hasFocus: Boolean) { + super.onWindowFocusChanged(hasFocus) + if (hasFocus && lifecycle.currentState == Lifecycle.State.RESUMED) { + // if we got here the user must have pressed the back button or the x button while the + // custom tab was visible - finish by cancelling OAuth sign in + setResult(RESULT_CODE_CANCELED, Intent()) + finish() + } + } + + /** + * Launches the custom tabs activity with the provided [authorizeUrl]. + */ + private fun launchCustomTabs(authorizeUrl: String) { + customTabsWasLaunched = true + val intent = CustomTabsIntent.Builder().build().apply { + intent.data = Uri.parse(authorizeUrl) + } + startActivity(intent.intent) + } + + /** + * An ActivityResultContract that takes a [OAuthUserSignIn] as input and returns a nullable + * string as output. The output string represents a redirect URI as the result of an OAuth user + * sign in prompt, or null if OAuth user sign in failed. This contract can be used to launch the + * [OAuthUserSignInActivity] for a result. + * See [Getting a result from an activity](https://developer.android.com/training/basics/intents/result) + * for more details. + */ + class Contract : ActivityResultContract() { + override fun createIntent(context: Context, input: OAuthUserSignIn) = + run { + Intent(context, OAuthUserSignInActivity::class.java).apply { + putExtra(AUTHORIZE_URL_KEY, input.authorizeUrl) + putExtra(REDIRECT_URL_KEY, input.oAuthUserConfiguration.redirectUrl) + } + } + + override fun parseResult(resultCode: Int, intent: Intent?): String? { + return if (resultCode == RESULT_CODE_SUCCESS) { + intent?.getStringExtra(OAUTH_RESPONSE_URI_KEY) + } else { + null + } + } + } +} diff --git a/authenticate-with-oauth/src/main/java/com/esri/arcgismaps/sample/authenticatewithoauth/OAuthUserSignInViewModel.kt b/authenticate-with-oauth/src/main/java/com/esri/arcgismaps/sample/authenticatewithoauth/OAuthUserSignInViewModel.kt new file mode 100644 index 000000000..bd31e1e8a --- /dev/null +++ b/authenticate-with-oauth/src/main/java/com/esri/arcgismaps/sample/authenticatewithoauth/OAuthUserSignInViewModel.kt @@ -0,0 +1,82 @@ +/* Copyright 2023 Esri + * + * 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. + * + */ + +package com.esri.arcgismaps.sample.authenticatewithoauth + +import androidx.activity.result.ActivityResultLauncher +import androidx.activity.result.ActivityResultRegistry +import androidx.lifecycle.DefaultLifecycleObserver +import androidx.lifecycle.LifecycleOwner +import androidx.lifecycle.ViewModel +import androidx.lifecycle.ViewModelProvider +import androidx.lifecycle.viewmodel.initializer +import androidx.lifecycle.viewmodel.viewModelFactory +import com.arcgismaps.httpcore.authentication.OAuthUserSignIn + +private const val ACTIVITY_RESULT_REGISTRY_KEY = "KEY_ACTIVITY_RESULT_REGISTRY" + +/** + * A ViewModel responsible for launching an OAuth user sign in prompt and managing the + * [OAuthUserSignIn] object associated with the OAuth prompt. + * Uses [OAuthUserSignInActivity.Contract] to launch an `OAuthUserSignInActivity` and to receive + * the result of the prompt. The result is used to complete the associated `OAuthUserSignIn`. + */ +class OAuthUserSignInViewModel( + private val getRegistry : () -> ActivityResultRegistry +) : ViewModel(), DefaultLifecycleObserver { + + private lateinit var oAuthLauncher : ActivityResultLauncher + + private var pendingSignIn: OAuthUserSignIn? = null + + override fun onCreate(owner: LifecycleOwner) { + super.onCreate(owner) + + oAuthLauncher = getRegistry().register( + ACTIVITY_RESULT_REGISTRY_KEY, + owner, + OAuthUserSignInActivity.Contract() + ) { redirectUri -> + complete(redirectUri) + } + } + + fun promptForOAuthUserSignIn(oAuthUserSignIn: OAuthUserSignIn) { + pendingSignIn = oAuthUserSignIn + oAuthLauncher.launch(pendingSignIn) + } + + private fun complete(redirectUri: String?) { + pendingSignIn?.let { pendingSignIn -> + redirectUri?.let { redirectUri -> + pendingSignIn.complete(redirectUri) + } ?: pendingSignIn.cancel() + } ?: throw IllegalStateException("OAuthUserSignIn not available for completion") + } + + companion object { + /** + * Gets the view model factory for this [OAuthUserSignInViewModel]. + */ + fun getFactory( + getRegistry : () -> ActivityResultRegistry + ) : ViewModelProvider.Factory = viewModelFactory { + initializer { + OAuthUserSignInViewModel(getRegistry) + } + } + } +} diff --git a/authenticate-with-oauth/src/main/res/drawable-v24/ic_launcher_foreground.xml b/authenticate-with-oauth/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 000000000..c7bd21dbd --- /dev/null +++ b/authenticate-with-oauth/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + diff --git a/authenticate-with-oauth/src/main/res/drawable/ic_launcher_background.xml b/authenticate-with-oauth/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 000000000..6d8cae103 --- /dev/null +++ b/authenticate-with-oauth/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/authenticate-with-oauth/src/main/res/layout/activity_main.xml b/authenticate-with-oauth/src/main/res/layout/activity_main.xml new file mode 100644 index 000000000..43b272e43 --- /dev/null +++ b/authenticate-with-oauth/src/main/res/layout/activity_main.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + diff --git a/authenticate-with-oauth/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/authenticate-with-oauth/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 000000000..6b78462d6 --- /dev/null +++ b/authenticate-with-oauth/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/authenticate-with-oauth/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/authenticate-with-oauth/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 000000000..6b78462d6 --- /dev/null +++ b/authenticate-with-oauth/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/authenticate-with-oauth/src/main/res/mipmap-hdpi/ic_launcher.png b/authenticate-with-oauth/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..a2f590828 Binary files /dev/null and b/authenticate-with-oauth/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/authenticate-with-oauth/src/main/res/mipmap-hdpi/ic_launcher_round.png b/authenticate-with-oauth/src/main/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 000000000..1b5239980 Binary files /dev/null and b/authenticate-with-oauth/src/main/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/authenticate-with-oauth/src/main/res/mipmap-mdpi/ic_launcher.png b/authenticate-with-oauth/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..ff10afd6e Binary files /dev/null and b/authenticate-with-oauth/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/authenticate-with-oauth/src/main/res/mipmap-mdpi/ic_launcher_round.png b/authenticate-with-oauth/src/main/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 000000000..115a4c768 Binary files /dev/null and b/authenticate-with-oauth/src/main/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/authenticate-with-oauth/src/main/res/mipmap-xhdpi/ic_launcher.png b/authenticate-with-oauth/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..dcd3cd808 Binary files /dev/null and b/authenticate-with-oauth/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/authenticate-with-oauth/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/authenticate-with-oauth/src/main/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 000000000..459ca609d Binary files /dev/null and b/authenticate-with-oauth/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/authenticate-with-oauth/src/main/res/mipmap-xxhdpi/ic_launcher.png b/authenticate-with-oauth/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..8ca12fe02 Binary files /dev/null and b/authenticate-with-oauth/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/authenticate-with-oauth/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/authenticate-with-oauth/src/main/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 000000000..8e19b410a Binary files /dev/null and b/authenticate-with-oauth/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/authenticate-with-oauth/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/authenticate-with-oauth/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..b824ebdd4 Binary files /dev/null and b/authenticate-with-oauth/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/authenticate-with-oauth/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/authenticate-with-oauth/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 000000000..4c19a13c2 Binary files /dev/null and b/authenticate-with-oauth/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/authenticate-with-oauth/src/main/res/values/strings.xml b/authenticate-with-oauth/src/main/res/values/strings.xml new file mode 100644 index 000000000..31d2b074a --- /dev/null +++ b/authenticate-with-oauth/src/main/res/values/strings.xml @@ -0,0 +1,6 @@ + + Authenticate with OAuth + https://www.arcgis.com/home/item.html?id=e5039444ef3c48b8a8fdc9227f9be7c1 + lgAdHkYZYlwwfAhC + my-ags-app://auth + diff --git a/browse-building-floors/.gitignore b/browse-building-floors/.gitignore new file mode 100644 index 000000000..796b96d1c --- /dev/null +++ b/browse-building-floors/.gitignore @@ -0,0 +1 @@ +/build diff --git a/browse-building-floors/README.md b/browse-building-floors/README.md new file mode 100644 index 000000000..637d65f79 --- /dev/null +++ b/browse-building-floors/README.md @@ -0,0 +1,43 @@ +# Browse building floors + +Display and browse through building floors from a floor-aware web map. + +![BrowseBuildingFloorsApp](browse-building-floors.png) + +## Use case + +Having map data to aid indoor navigation in buildings with multiple floors such as airports, museums, or offices can be incredibly useful. For example, you may wish to browse through all available floor maps for an office in order to find the location of an upcoming meeting in advance. + +## How to use the sample + +Use the spinner to browse different floor levels in the facility. Only the selected floor will be displayed. + +## How it works + +1. Create a `PortalItem` using the `itemId` of the floor-aware web map. +2. Set the `MapView` to display the `PortalItem`. +3. Wait for the map to load and retrieve the map's floor manager from `MapView.Map.FloorManager`. +4. Wait for the floor manager to load using `FloorManager.load()` to retrieve the floor-aware data. +5. Set all floors to not visible `FloorManager.levels[floor-number].isVisible = false`. +6. Set only the selected floor to visible using `FloorManager.levels[floor-number].isVisible = true`. +* **Note:** Manually set the default floor level to the first floor using `floorLevel.verticalOrder`. + +```kotlin +floorManager.levels.first { floorLevel -> floorLevel.verticalOrder == 0 } +``` + +## Relevant API + +* FloorManager + +## About the data + +This sample uses a [floor-aware web map](https://www.arcgis.com/home/item.html?id=f133a698536f44c8884ad81f80b6cfc7) that displays the floors of Building L on the Esri Redlands campus. + +## Additional information + +The API also supports browsing different sites and facilities in addition to building floors. + +## Tags + +building, facility, floor, floor-aware, floors, ground floor, indoor, level, site, story diff --git a/browse-building-floors/README.metadata.json b/browse-building-floors/README.metadata.json new file mode 100644 index 000000000..e807fdac4 --- /dev/null +++ b/browse-building-floors/README.metadata.json @@ -0,0 +1,31 @@ +{ + "category": "MapViews, SceneViews and UI", + "description": "Display and browse through building floors from a floor-aware web map.", + "formal_name": "BrowseBuildingFloors", + "ignore": false, + "images": [ + "browse-building-floors.png" + ], + "keywords": [ + "building", + "facility", + "floor", + "floor-aware", + "floors", + "ground floor", + "indoor", + "level", + "site", + "story", + "FloorManager" + ], + "language": "kotlin", + "redirect_from": "", + "relevant_apis": [ + "FloorManager" + ], + "snippets": [ + "src/main/java/com/esri/arcgismaps/sample/browsebuildingfloors/MainActivity.kt" + ], + "title": "Browse building floors" +} diff --git a/browse-building-floors/browse-building-floors.png b/browse-building-floors/browse-building-floors.png new file mode 100644 index 000000000..f9e811607 Binary files /dev/null and b/browse-building-floors/browse-building-floors.png differ diff --git a/browse-building-floors/build.gradle b/browse-building-floors/build.gradle new file mode 100644 index 000000000..a52508f3d --- /dev/null +++ b/browse-building-floors/build.gradle @@ -0,0 +1,35 @@ +apply plugin: 'com.android.application' +apply plugin: 'org.jetbrains.kotlin.android' + +android { + compileSdkVersion rootProject.ext.compileSdkVersion + + defaultConfig { + applicationId "com.esri.arcgismaps.sample.browsebuildingfloors" + minSdkVersion rootProject.ext.minSdkVersion + targetSdkVersion rootProject.ext.targetSdkVersion + versionCode rootProject.ext.versionCode + versionName rootProject.ext.versionName + buildConfigField("String", "API_KEY", API_KEY) + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } + + buildFeatures { + dataBinding true + } + + namespace 'com.esri.arcgismaps.sample.browsebuildingfloors' +} + +dependencies { + // lib dependencies from rootProject build.gradle + implementation "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion" + implementation "com.google.android.material:material:$materialVersion" + implementation project(path: ':samples-lib') +} diff --git a/browse-building-floors/proguard-rules.pro b/browse-building-floors/proguard-rules.pro new file mode 100644 index 000000000..f1b424510 --- /dev/null +++ b/browse-building-floors/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile diff --git a/browse-building-floors/src/main/AndroidManifest.xml b/browse-building-floors/src/main/AndroidManifest.xml new file mode 100644 index 000000000..c6647b46d --- /dev/null +++ b/browse-building-floors/src/main/AndroidManifest.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + diff --git a/browse-building-floors/src/main/java/com/esri/arcgismaps/sample/browsebuildingfloors/MainActivity.kt b/browse-building-floors/src/main/java/com/esri/arcgismaps/sample/browsebuildingfloors/MainActivity.kt new file mode 100644 index 000000000..66f296731 --- /dev/null +++ b/browse-building-floors/src/main/java/com/esri/arcgismaps/sample/browsebuildingfloors/MainActivity.kt @@ -0,0 +1,186 @@ +/* Copyright 2023 Esri + * + * 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. + * + */ + +package com.esri.arcgismaps.sample.browsebuildingfloors + +import android.content.Context +import android.os.Bundle +import android.util.Log +import android.view.LayoutInflater +import android.view.View +import android.view.ViewGroup +import android.widget.AdapterView +import android.widget.ArrayAdapter +import android.widget.TextView +import androidx.annotation.LayoutRes +import androidx.appcompat.app.AppCompatActivity +import androidx.databinding.DataBindingUtil +import androidx.lifecycle.lifecycleScope +import com.arcgismaps.ApiKey +import com.arcgismaps.ArcGISEnvironment +import com.arcgismaps.mapping.ArcGISMap +import com.arcgismaps.mapping.PortalItem +import com.arcgismaps.mapping.floor.FloorLevel +import com.arcgismaps.mapping.floor.FloorManager +import com.arcgismaps.portal.Portal +import com.esri.arcgismaps.sample.browsebuildingfloors.databinding.ActivityMainBinding +import com.google.android.material.snackbar.Snackbar +import kotlinx.coroutines.launch + +class MainActivity : AppCompatActivity() { + + // set up data binding for the activity + private val activityMainBinding: ActivityMainBinding by lazy { + DataBindingUtil.setContentView(this, R.layout.activity_main) + } + + private val mapView by lazy { + activityMainBinding.mapView + } + + private val currentFloorTV by lazy { + activityMainBinding.selectedFloorTV + } + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + + // authentication with an API key or named user is + // required to access basemaps and other location services + ArcGISEnvironment.apiKey = ApiKey.create(BuildConfig.API_KEY) + lifecycle.addObserver(mapView) + + // load the portal and create a map from the portal item + val portalItem = PortalItem( + Portal("https://www.arcgis.com/"), + "f133a698536f44c8884ad81f80b6cfc7" + ) + + // set the map to be displayed in the layout's MapView + val map = ArcGISMap(portalItem) + mapView.map = map + + lifecycleScope.launch { + //load the portal item on the map + map.load().getOrElse { + showError("Error loading map" + it.message.toString()) + return@launch + } + + // load the web map's floor manager + val floorManager = + map.floorManager ?: return@launch showError("Map is not floor-aware") + floorManager.load().getOrElse { + showError("Error loading floor manager" + it.message.toString()) + return@launch + } + + // set up dropdown and initial floor level to ground floor + initializeFloorDropdown(floorManager) + } + } + + /** + * Set and update the floor dropdown. Shows the currently selected floor + * and hides the other floors using [floorManager]. + */ + private fun initializeFloorDropdown(floorManager: FloorManager) { + // enable the dropdown view + activityMainBinding.dropdownMenu.isEnabled = true + + // Select the ground floor using `verticalOrder`. + // The floor at index 0 might not have a vertical order of 0 if, + // for example, the building starts with basements. + // To select the ground floor, we can search for a level with a + // `verticalOrder` of 0. You can also use level ID, number or name + // to locate a floor. + val firstFloorIndex = floorManager.levels.indexOf( + floorManager.levels.first { it.verticalOrder == 0 } + ) + + currentFloorTV.apply { + // set the displayed floor to the first floor + setSelection(firstFloorIndex) + + // set the name of the first floor + setText(floorManager.levels[firstFloorIndex].longName) + + // set the dropdown adapter for the floor selection + setAdapter( + FloorsAdapter( + this@MainActivity, + android.R.layout.simple_list_item_1, + floorManager.levels + ) + ) + + // handle on dropdown item selected + onItemClickListener = + AdapterView.OnItemClickListener { _, _, position, _ -> + // set all the floors to invisible to reset the floorManager + floorManager.levels.forEach { floorLevel -> + floorLevel.isVisible = false + } + + // set the currently selected floor to be visible + floorManager.levels[position].isVisible = true + + // set the floor name + currentFloorTV.setText(floorManager.levels[position].longName) + } + } + } + + /** + * Adapter to display a list [floorLevels] + */ + private class FloorsAdapter( + context: Context, + @LayoutRes private val layoutResourceId: Int, + private val floorLevels: List + ) : ArrayAdapter(context, layoutResourceId, floorLevels) { + + private val mLayoutInflater: LayoutInflater = + context.getSystemService(Context.LAYOUT_INFLATER_SERVICE) as LayoutInflater + + override fun getCount(): Int { + return floorLevels.size + } + + override fun getItem(position: Int): FloorLevel { + return floorLevels[position] + } + + override fun getItemId(position: Int): Long { + return position.toLong() + } + + override fun getView(position: Int, convertView: View?, parent: ViewGroup): View { + // bind the view to the layout inflater + val view = convertView ?: mLayoutInflater.inflate(layoutResourceId, parent, false) + val dropdownItemTV = view.findViewById(android.R.id.text1) + + // bind the long name of the floor to it's respective text view + dropdownItemTV.text = floorLevels[position].longName + return view + } + } + + private fun showError(message: String) { + Log.e(localClassName, message) + Snackbar.make(mapView, message, Snackbar.LENGTH_SHORT).show() + } +} diff --git a/browse-building-floors/src/main/res/drawable-v24/ic_launcher_foreground.xml b/browse-building-floors/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 000000000..c7bd21dbd --- /dev/null +++ b/browse-building-floors/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + diff --git a/browse-building-floors/src/main/res/drawable/ic_launcher_background.xml b/browse-building-floors/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 000000000..6d8cae103 --- /dev/null +++ b/browse-building-floors/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/browse-building-floors/src/main/res/layout/activity_main.xml b/browse-building-floors/src/main/res/layout/activity_main.xml new file mode 100644 index 000000000..8998b980a --- /dev/null +++ b/browse-building-floors/src/main/res/layout/activity_main.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + diff --git a/browse-building-floors/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/browse-building-floors/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 000000000..6b78462d6 --- /dev/null +++ b/browse-building-floors/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/browse-building-floors/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/browse-building-floors/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 000000000..6b78462d6 --- /dev/null +++ b/browse-building-floors/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/browse-building-floors/src/main/res/mipmap-hdpi/ic_launcher.png b/browse-building-floors/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..a2f590828 Binary files /dev/null and b/browse-building-floors/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/browse-building-floors/src/main/res/mipmap-hdpi/ic_launcher_round.png b/browse-building-floors/src/main/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 000000000..1b5239980 Binary files /dev/null and b/browse-building-floors/src/main/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/browse-building-floors/src/main/res/mipmap-mdpi/ic_launcher.png b/browse-building-floors/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..ff10afd6e Binary files /dev/null and b/browse-building-floors/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/browse-building-floors/src/main/res/mipmap-mdpi/ic_launcher_round.png b/browse-building-floors/src/main/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 000000000..115a4c768 Binary files /dev/null and b/browse-building-floors/src/main/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/browse-building-floors/src/main/res/mipmap-xhdpi/ic_launcher.png b/browse-building-floors/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..dcd3cd808 Binary files /dev/null and b/browse-building-floors/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/browse-building-floors/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/browse-building-floors/src/main/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 000000000..459ca609d Binary files /dev/null and b/browse-building-floors/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/browse-building-floors/src/main/res/mipmap-xxhdpi/ic_launcher.png b/browse-building-floors/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..8ca12fe02 Binary files /dev/null and b/browse-building-floors/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/browse-building-floors/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/browse-building-floors/src/main/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 000000000..8e19b410a Binary files /dev/null and b/browse-building-floors/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/browse-building-floors/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/browse-building-floors/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..b824ebdd4 Binary files /dev/null and b/browse-building-floors/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/browse-building-floors/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/browse-building-floors/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 000000000..4c19a13c2 Binary files /dev/null and b/browse-building-floors/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/browse-building-floors/src/main/res/values/strings.xml b/browse-building-floors/src/main/res/values/strings.xml new file mode 100644 index 000000000..70d0c6f2f --- /dev/null +++ b/browse-building-floors/src/main/res/values/strings.xml @@ -0,0 +1,4 @@ + + Browse building floors + Select the floor to display + diff --git a/change-camera-controller/.gitignore b/change-camera-controller/.gitignore new file mode 100644 index 000000000..796b96d1c --- /dev/null +++ b/change-camera-controller/.gitignore @@ -0,0 +1 @@ +/build diff --git a/change-camera-controller/README.md b/change-camera-controller/README.md new file mode 100644 index 000000000..c41951392 --- /dev/null +++ b/change-camera-controller/README.md @@ -0,0 +1,32 @@ +# Change camera controller + +Control the behavior of the camera in a scene. + +![Image of change camera controller](change-camera-controller.png) + +## Use case + +The globe camera controller (the default camera controller in all new scenes) allows a user to explore the scene freely by zooming in/out and panning around the globe. The orbit camera controllers fix the camera to look at a target location or geoelement. A primary use case is for following moving objects like cars and planes. + +## How to use the sample + +The application loads with the default globe camera controller. To rotate and fix the scene around the plane, exit globe mode by choosing the "Orbit camera around plane" option (i.e. camera will now be fixed to the plane). Choose the "Orbit camera around location" option to rotate and center the scene around the location of the Upheaval Dome crater structure, or choose the "Free pan round the globe" option to return to default free navigation. + +## How it works + +1. Create an instance of a class extending `CameraController`: `GlobeCameraController`, `OrbitLocationCameraController`, `OrbitGeoElementCameraController`. +2. Set the scene view's camera controller with `sceneView.cameraController = cameraController`. + +## Relevant API + +* ArcGISScene +* Camera +* GlobeCameraController +* ModelSceneSymbol +* OrbitGeoElementCameraController +* OrbitLocationCameraController +* SceneView + +## Tags + +3D, camera, camera controller diff --git a/change-camera-controller/README.metadata.json b/change-camera-controller/README.metadata.json new file mode 100644 index 000000000..28cad430c --- /dev/null +++ b/change-camera-controller/README.metadata.json @@ -0,0 +1,38 @@ +{ + "category": "MapViews, SceneViews and UI", + "description": "Control the behavior of the camera in a scene.", + "formal_name": "ChangeCameraController", + "ignore": false, + "images": [ + "change-camera-controller.png" + ], + "keywords": [ + "3D", + "camera", + "camera controller", + "ArcGISScene", + "Camera", + "GlobeCameraController", + "ModelSceneSymbol", + "OrbitGeoElementCameraController", + "OrbitLocationCameraController", + "SceneView" + ], + "language": "kotlin", + "redirect_from": [ + "/android/latest/sample-code/choose-camera-controller.htm" + ], + "relevant_apis": [ + "ArcGISScene", + "Camera", + "GlobeCameraController", + "ModelSceneSymbol", + "OrbitGeoElementCameraController", + "OrbitLocationCameraController", + "SceneView" + ], + "snippets": [ + "src/main/java/com/esri/arcgismaps/sample/changecameracontroller/MainActivity.kt" + ], + "title": "Change camera controller" +} diff --git a/change-camera-controller/build.gradle b/change-camera-controller/build.gradle new file mode 100644 index 000000000..6432073d1 --- /dev/null +++ b/change-camera-controller/build.gradle @@ -0,0 +1,35 @@ +apply plugin: 'com.android.application' +apply plugin: 'org.jetbrains.kotlin.android' + +android { + compileSdkVersion rootProject.ext.compileSdkVersion + + defaultConfig { + applicationId "com.esri.arcgismaps.sample.changecameracontroller" + minSdkVersion rootProject.ext.minSdkVersion + targetSdkVersion rootProject.ext.targetSdkVersion + versionCode rootProject.ext.versionCode + versionName rootProject.ext.versionName + buildConfigField("String", "API_KEY", API_KEY) + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } + + buildFeatures { + dataBinding true + } + + namespace 'com.esri.arcgismaps.sample.changecameracontroller' +} + +dependencies { + // lib dependencies from rootProject build.gradle + implementation "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion" + implementation "com.google.android.material:material:$materialVersion" + implementation project(path: ':samples-lib') +} diff --git a/change-camera-controller/change-camera-controller.png b/change-camera-controller/change-camera-controller.png new file mode 100644 index 000000000..b49f1beee Binary files /dev/null and b/change-camera-controller/change-camera-controller.png differ diff --git a/change-camera-controller/proguard-rules.pro b/change-camera-controller/proguard-rules.pro new file mode 100644 index 000000000..f1b424510 --- /dev/null +++ b/change-camera-controller/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile diff --git a/change-camera-controller/src/debug/res/drawable-anydpi/ic_camera.xml b/change-camera-controller/src/debug/res/drawable-anydpi/ic_camera.xml new file mode 100644 index 000000000..7e148d9a9 --- /dev/null +++ b/change-camera-controller/src/debug/res/drawable-anydpi/ic_camera.xml @@ -0,0 +1,18 @@ + + + + + + diff --git a/change-camera-controller/src/debug/res/drawable-hdpi/ic_camera.png b/change-camera-controller/src/debug/res/drawable-hdpi/ic_camera.png new file mode 100644 index 000000000..f3390cbb3 Binary files /dev/null and b/change-camera-controller/src/debug/res/drawable-hdpi/ic_camera.png differ diff --git a/change-camera-controller/src/debug/res/drawable-mdpi/ic_camera.png b/change-camera-controller/src/debug/res/drawable-mdpi/ic_camera.png new file mode 100644 index 000000000..06e108d20 Binary files /dev/null and b/change-camera-controller/src/debug/res/drawable-mdpi/ic_camera.png differ diff --git a/change-camera-controller/src/debug/res/drawable-xhdpi/ic_camera.png b/change-camera-controller/src/debug/res/drawable-xhdpi/ic_camera.png new file mode 100644 index 000000000..1f1a52cf8 Binary files /dev/null and b/change-camera-controller/src/debug/res/drawable-xhdpi/ic_camera.png differ diff --git a/change-camera-controller/src/debug/res/drawable-xxhdpi/ic_camera.png b/change-camera-controller/src/debug/res/drawable-xxhdpi/ic_camera.png new file mode 100644 index 000000000..40ca082ca Binary files /dev/null and b/change-camera-controller/src/debug/res/drawable-xxhdpi/ic_camera.png differ diff --git a/change-camera-controller/src/main/AndroidManifest.xml b/change-camera-controller/src/main/AndroidManifest.xml new file mode 100644 index 000000000..1bf01ae77 --- /dev/null +++ b/change-camera-controller/src/main/AndroidManifest.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + diff --git a/change-camera-controller/src/main/assets/Bristol.dae b/change-camera-controller/src/main/assets/Bristol.dae new file mode 100644 index 000000000..a6e2fcc11 --- /dev/null +++ b/change-camera-controller/src/main/assets/Bristol.dae @@ -0,0 +1,348 @@ + + + + + Blender User + Blender 2.77.0 commit date:2016-04-05, commit time:18:12, hash:abf6f08 + + 2016-09-28T12:53:46 + 2016-09-28T12:53:46 + + Z_UP + + + + + + + 49.13434 + 1.777778 + 0.1 + 100 + + + + + + 0 + 0 + 0 + + + + + + + + + 1 1 1 + 1 + 0 + 0.00111109 + + + + + 0.000999987 + 1 + 0.1 + 0.1 + 1 + 1 + 1 + 2 + 0 + 1 + 1 + 1 + 1 + 1 + 0 + 2880 + 2 + 30.002 + 1.000799 + 0.04999995 + 29.99998 + 1 + 2 + 0 + 0 + 1 + 1 + 1 + 1 + 8192 + 1 + 1 + 0 + 1 + 1 + 1 + 3 + 0 + 0 + 0 + 0 + 0 + 1 + 1 + 1 + 3 + 0.15 + 75 + 1 + 1 + 0 + 1 + 1 + 0 + + + + + + + logo.jpg + + + Bristol.png + + + + + + + + Bristol_png + + + + + Bristol_png-surface + + + + + + 0 0 0 1 + + + 0 0 0 1 + + + + + + 0.5 0.5 0.5 1 + + + 50 + + + 1 + + + + + + + + + + + + + + + + 0 1 0 -0.1950903 0.9807853 0 -0.3826835 0.9238795 0 -0.5555703 0.8314696 0 -0.7071068 0.7071068 0 -0.8314697 0.5555702 0 -0.9238795 0.3826834 0 -0.9807853 0.1950903 0 -1 0 0 -0.9807853 -0.1950902 0 -0.9238796 -0.3826833 0 -0.8314697 -0.5555702 0 -0.7071068 -0.7071068 0 -0.5555702 -0.8314697 0 -0.3826833 -0.9238796 0 -0.1950901 -0.9807853 0 3.25841e-7 -1 0 0.1950907 -0.9807852 0 0.3826839 -0.9238793 0 0.5555707 -0.8314693 0 0.7071073 -0.7071064 0 0.83147 -0.5555697 0 0.9238799 -0.3826827 0 0.9807854 -0.1950894 0 1 9.65599e-7 0 0.9807851 0.1950913 0 0.9238791 0.3826845 0 0.8314689 0.5555713 0 0.7071059 0.7071077 0 0.5555691 0.8314704 0 0.3826821 0.9238801 0 0.1950888 0.9807856 0 + + + + + + + + + + + + + + + + + + + + + + + +

0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 0

+
+
+
+ + + + 0 1 0 -0.1950903 0.9807853 0 -0.3826835 0.9238795 0 -0.5555703 0.8314696 0 -0.7071068 0.7071068 0 -0.8314697 0.5555702 0 -0.9238795 0.3826834 0 -0.9807853 0.1950903 0 -1 0 0 -0.9807853 -0.1950902 0 -0.9238796 -0.3826833 0 -0.8314697 -0.5555702 0 -0.7071068 -0.7071068 0 -0.5555702 -0.8314697 0 -0.4842861 -0.890012 0 -0.1950901 -0.8791825 0 0.01016056 -0.8679164 0 0.205251 -0.8791824 0 0.4707397 -0.8679978 0 0.5555707 -0.8314693 0 0.7071073 -0.7071064 0 0.83147 -0.5555697 0 0.9238799 -0.3826827 0 0.9807854 -0.1950894 0 1 9.65599e-7 0 0.9807851 0.1950913 0 0.9238791 0.3826845 0 0.8314689 0.5555713 0 0.7071059 0.7071077 0 0.5555691 0.8314704 0 0.3826821 0.9238801 0 0.1950888 0.9807856 0 + + + + + + + + + + + + + + + + + + + + + + + +

0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 0

+
+
+
+ + + + 0.0182181 1.455453 0 -0.2497446 1.454456 0 -0.4555559 1.361114 0 -0.6466608 1.159395 0 -0.7799792 0.9439421 0 -0.8679059 0.7377513 0 -0.9603157 0.5466464 0 -0.9807853 0.1950903 0 -1 0 0 -0.9807853 -0.1950902 0 -0.9603158 -0.4009014 0 -0.886124 -0.5920064 0 -0.7617611 -0.8528516 0 -0.6466608 -1.050087 0 -0.4737738 -1.215369 0 -0.1950901 -1.308711 0 3.25841e-7 -1.371649 0 0.2825376 -1.308711 0 0.4919925 -1.18622 0 0.6648794 -1.050086 0 0.8164159 -0.816415 0 0.9225606 -0.5920059 0 0.9603161 -0.3826827 0 0.9807854 -0.1950894 0 1 9.65599e-7 0 0.9807851 0.1950913 0 0.9603153 0.5648655 0 0.9225595 0.7924066 0 0.7981964 0.9985974 0 0.6830959 1.159396 0 0.4919908 1.324678 0 0.2861794 1.436238 0 + + + + + + + + + + + + + + + + + + + + + + + +

0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 0

+
+
+
+ + + + 7.65253e-4 2.077414 -1.661739 7.65253e-4 2.077414 2.361259 7.65253e-4 4.077414 -1.661739 7.65253e-4 4.077414 2.361259 0.7971408 2.077414 -1.429864 0.729655 2.077414 2.201897 0.7971408 4.077414 -1.429864 0.729655 4.077414 2.201897 1.264021 4.077414 1.816975 1.264021 2.077414 1.816975 1.794284 4.077414 0.9088178 1.794284 2.077414 0.9088178 1.466477 4.077414 1.495698 1.466477 2.077414 1.495698 1.363551 4.077414 -1.006792 1.363551 2.077414 -1.006792 1.685532 4.077414 -0.5328862 1.685532 2.077414 -0.5328862 1.912067 4.077414 0.1800808 1.912067 2.077414 0.1800808 -0.001630246 8.438134 -1.182334 7.65253e-4 8.446125 2.209421 0.729655 8.446125 2.050059 1.284305 8.446125 -0.8802602 0.7971408 8.446125 -1.176801 1.134114 8.446125 1.816975 1.440495 8.446125 1.495698 1.690358 8.446125 0.9088178 1.607588 8.446125 -0.3557419 1.757481 8.446125 0.1800808 1.912067 6.446125 0.1800808 7.65253e-4 -5.7515 -0.9456787 7.65253e-4 -5.7515 1.782639 0.2788411 -5.7515 -0.8884533 0.2556232 -5.7515 1.746015 0.539821 -5.7515 1.553966 0.9086055 -5.7515 0.7510125 0.7948791 -5.7515 1.267757 0.4718848 -5.7515 -0.7273538 7.65253e-4 -5.7515 -0.9400065 0.7619307 -5.7515 -0.375081 0.9181253 -5.7515 0.1800808 0.04586732 0.6092184 -1.182334 7.65253e-4 -9.66766 1.221253 0.005914688 -9.659189 -0.3399642 0.05698782 -9.66766 1.220681 7.65253e-4 -9.66766 1.026646 0.04673659 -9.66766 1.047819 0.04946255 -9.66766 0.4979389 7.65253e-4 -9.66766 0.4672349 7.65253e-4 -9.66766 0.7674878 0.04407781 -9.66766 0.7736606 0.07296055 -9.66766 -0.3543546 7.65253e-4 -9.66766 -0.3503636 7.65253e-4 -9.66766 -0.03502738 0.0515381 -9.66766 0.002210021 7.65253e-4 -9.66766 0.2455512 0.04706811 -9.66766 0.2674487 3.075886 1.815352 1.350284 3.075886 7.87344 1.279214 3.075886 7.696595 1.729506 3.075886 6.783989 1.778969 3.075886 4.167768 1.696529 3.075886 1.962404 1.478064 3.075886 4.825945 1.725384 3.075886 3.42715 1.651188 3.075886 6.125812 1.783092 3.075886 5.181892 1.408427 3.075886 6.747123 1.362904 3.075886 3.454453 1.358534 3.075886 5.983591 1.395207 3.075886 8.177339 1.322153 3.075886 8.015848 1.267287 9.18866 1.815352 1.350292 9.18866 1.860597 1.270483 9.18866 8.252239 1.498683 9.18866 7.87344 1.279222 9.18866 7.696595 1.729514 9.18866 6.783989 1.778977 9.18866 8.032125 1.663563 9.18866 4.167768 1.696538 9.18866 2.587606 1.572878 9.18866 5.401682 1.754247 9.18866 1.962404 1.478073 9.18866 4.825945 1.725392 9.18866 3.42715 1.651196 9.18866 6.125812 1.7831 9.18866 5.181892 1.408436 9.18866 6.747123 1.362912 9.18866 3.454453 1.358543 9.18866 7.386614 1.330609 9.18866 4.30386 1.383489 9.18866 5.983591 1.395215 9.18866 2.557338 1.29543 9.18866 8.177339 1.322161 9.18866 8.262496 1.415193 9.18866 8.015848 1.267296 10.68566 1.7963 1.354367 10.68566 1.84023 1.276877 10.68566 8.046175 1.498447 10.68566 7.678381 1.285362 10.68566 7.506674 1.722571 10.68566 6.620582 1.770597 10.68566 7.832455 1.658536 10.68566 4.08037 1.690553 10.68566 2.546117 1.570486 10.68566 5.278436 1.746585 10.68566 1.939079 1.478435 10.68566 4.719425 1.718569 10.68566 3.36127 1.646529 10.68566 5.981526 1.7746 10.68566 5.065031 1.410821 10.68566 6.584787 1.36662 10.68566 3.387779 1.362378 10.68566 7.205699 1.335256 10.68566 4.212509 1.386599 10.68566 5.843438 1.397985 10.68566 2.516728 1.301099 10.68566 7.973451 1.327053 10.68566 8.056134 1.417382 10.68566 7.816651 1.273782 12.23257 1.750489 1.360293 12.23257 1.792506 1.286176 12.23257 7.728265 1.4981 12.23257 7.376484 1.294292 12.23257 7.212253 1.712467 12.23257 6.364737 1.758402 12.23257 7.523849 1.651219 12.23257 3.935118 1.681843 12.23257 2.467662 1.567003 12.23257 5.081024 1.735435 12.23257 1.887052 1.478959 12.23257 4.546351 1.708639 12.23257 3.247325 1.639735 12.23257 5.753505 1.762231 12.23257 4.87691 1.414289 12.23257 6.330502 1.372013 12.23257 3.272681 1.367955 12.23257 6.924381 1.342014 12.23257 4.061504 1.391121 12.23257 5.621428 1.402012 12.23257 2.439552 1.309344 12.23257 7.658707 1.334168 12.23257 7.73779 1.420565 12.23257 7.508734 1.283216 13.60483 1.752411 1.369981 13.60483 1.791302 1.30138 13.60483 7.285345 1.497533 13.60483 6.959743 1.308891 13.60483 6.807733 1.695947 13.60483 6.023286 1.738464 13.60483 7.096142 1.639258 13.60483 3.774469 1.667602 13.60483 2.416215 1.561308 13.60483 4.835102 1.717207 13.60483 1.878812 1.479817 13.60483 4.340217 1.692404 13.60483 3.137859 1.628628 13.60483 5.457539 1.742008 13.60483 4.646177 1.419959 13.60483 5.991598 1.380828 13.60483 3.161328 1.377073 13.60483 6.541284 1.353062 13.60483 3.89145 1.398515 13.60483 5.335291 1.408595 13.60483 2.390197 1.322823 13.60483 7.220963 1.3458 13.60483 7.294162 1.425767 13.60483 7.08215 1.29864 15.10183 1.807108 1.38747 15.10183 1.840355 1.328827 15.10183 6.536963 1.496509 15.10183 6.258621 1.335248 15.10183 6.128674 1.666124 15.10183 5.458087 1.70247 15.10183 6.375222 1.617663 15.10183 3.535675 1.641893 15.10183 2.374564 1.551027 15.4536 4.442361 1.684298 15.10183 1.915163 1.481364 15.10183 4.019306 1.663096 15.10183 2.991466 1.608576 15.10183 4.974455 1.7055 15.10183 4.280858 1.430195 15.10183 5.430998 1.396744 15.10183 3.011528 1.393533 15.10183 5.900899 1.373007 15.10183 3.635676 1.411863 15.10183 4.86995 1.42048 15.10183 2.352323 1.347158 15.10183 6.481926 1.3668 15.10183 6.5445 1.43516 15.10183 6.363262 1.326484 15.90024 2.002141 1.403638 15.90024 2.03017 1.354198 15.90024 5.98963 1.495563 15.90024 5.754974 1.359612 15.90024 5.645423 1.638556 15.90024 5.080087 1.669198 15.90024 5.853275 1.597701 15.90024 3.459403 1.618128 15.90024 2.480533 1.541524 15.90024 4.223783 1.653878 15.90024 2.093237 1.482795 15.90024 3.867128 1.636003 15.90024 3.00061 1.590041 15.90024 4.672363 1.671751 15.90024 4.087628 1.439656 15.90024 5.05725 1.411456 15.90024 3.017523 1.408749 15.90024 5.453399 1.391445 15.90024 3.543709 1.424202 15.90024 4.58426 1.431467 15.90024 2.461783 1.369652 15.90024 5.943232 1.386211 15.90024 5.995984 1.443842 15.90024 5.843192 1.352224 16.27449 2.201132 1.415151 16.27449 2.225445 1.372266 16.27449 5.659973 1.494889 16.27449 5.456427 1.376962 16.27449 5.3614 1.618925 16.27449 4.871014 1.645504 16.27449 5.541696 1.583486 16.27449 3.465195 1.601205 16.27449 2.6161 1.534757 16.27449 4.128236 1.632215 16.27449 2.28015 1.483813 16.27449 3.818865 1.61671 16.27449 3.067227 1.576841 16.27449 4.517344 1.647719 16.27449 4.010132 1.446394 16.27449 4.851204 1.421932 16.27449 3.081898 1.419584 16.27449 5.194833 1.404574 16.27449 3.538324 1.432989 16.27449 4.440923 1.43929 16.27449 2.599836 1.385671 16.27449 5.619726 1.400035 16.27449 5.665484 1.450025 16.27449 5.532948 1.370553 16.64874 2.49665 1.430383 16.64874 2.516046 1.39617 16.64874 5.256057 1.493997 16.64874 5.093672 1.399917 16.64874 5.01786 1.592951 16.64874 4.626638 1.614155 16.64874 5.161697 1.564678 16.64874 3.505099 1.578814 16.64874 2.827705 1.525803 16.64874 4.034062 1.603553 16.64874 2.559689 1.485161 16.64874 3.787251 1.591184 16.64874 3.187607 1.559377 16.64874 4.344487 1.615922 16.64874 3.939841 1.455309 16.64874 4.610835 1.435793 16.64874 3.199311 1.43392 16.64874 4.884976 1.421946 16.64874 3.563441 1.444614 16.64874 4.283519 1.449641 16.64874 2.81473 1.406865 16.64874 5.223948 1.418324 16.64874 5.260454 1.458206 16.64874 5.154719 1.394804 16.86532 2.796837 1.443341 16.86532 2.812051 1.416505 16.86532 4.961261 1.493238 16.86532 4.833889 1.419444 16.86532 4.774424 1.570856 16.86532 4.467557 1.587488 16.86532 4.887247 1.548679 16.86532 3.587845 1.559767 16.86532 3.05651 1.518186 16.86532 4.002752 1.579172 16.86532 2.846284 1.486308 16.86532 3.809159 1.56947 16.86532 3.338809 1.544521 16.86532 4.246243 1.588874 16.86532 3.928847 1.462892 16.86532 4.455161 1.447585 16.86532 3.34799 1.446116 16.86532 4.670192 1.436723 16.86532 3.633606 1.454504 16.86532 4.198421 1.458447 16.86532 3.046332 1.424894 16.86532 4.936075 1.433882 16.86532 4.96471 1.465164 16.86532 4.881773 1.415433 17.0458 3.151654 1.457013 17.0458 3.162455 1.437961 17.0458 4.688305 1.492438 17.0458 4.597876 1.440047 17.0458 4.555658 1.547543 17.0458 4.337795 1.559351 17.0458 4.635757 1.531799 17.0458 3.713236 1.539671 17.0458 3.33601 1.51015 17.0458 4.007803 1.553447 17.0458 3.186759 1.487518 17.0458 3.87036 1.546559 17.0458 3.536431 1.528847 17.0458 4.180672 1.560335 17.0458 3.955334 1.470893 17.0458 4.328995 1.460026 17.0458 3.542949 1.458983 17.0458 4.481658 1.452314 17.0458 3.745725 1.464938 17.0458 4.14672 1.467737 17.0458 3.328784 1.443916 17.0458 4.670424 1.450297 17.0458 4.690753 1.472507 17.0458 4.631872 1.4372 3.075886 1.860597 1.270475 3.075886 8.252239 1.498675 3.075886 8.032125 1.663554 3.075886 2.587606 1.572869 3.075886 5.401682 1.754238 3.075886 7.386614 1.330601 3.075886 4.30386 1.38348 3.075886 2.557338 1.295422 3.075886 8.262496 1.415185 1.175227 1.815352 1.350281 1.175227 1.860597 1.270473 1.175227 8.252239 1.498672 1.175227 7.87344 1.279211 1.175227 7.696595 1.729503 1.175227 6.783989 1.778966 1.175227 8.032125 1.663552 1.175227 4.167768 1.696527 1.175227 2.587606 1.572867 1.175227 5.401682 1.754236 1.175227 1.962404 1.478062 1.175227 4.825945 1.725381 1.175227 3.42715 1.651185 1.175227 6.125812 1.783089 1.175227 5.181892 1.408425 1.175227 6.747123 1.362901 1.175227 3.454453 1.358532 1.175227 7.386614 1.330598 1.175227 4.30386 1.383478 1.175227 5.983591 1.395205 1.175227 2.557338 1.295419 1.175227 8.177339 1.32215 1.175227 8.262496 1.415182 1.175227 8.015848 1.267285 0.04392349 -9.543302 3.413522 0.04392349 -9.866368 -0.1747962 0.04392349 -10.5486 3.389759 0.04392349 -9.524352 -0.2444324 0.04392349 -11.31656 1.126341 1.747096 -11.38703 0.4812694 4.832757 -11.38703 0.4812694 0.2381117 -6.792389 0.4812694 3.340754 -6.780356 0.4812694 1.050291 -11.16528 0.4812694 1.351097 -11.36138 0.4812694 0.1278158 -9.635597 0.4812694 5.699081 -10.41326 0.4812694 4.435692 -7.45976 0.4812694 5.410307 -11.12876 0.4812694 4.207078 -7.174203 0.4812694 5.626887 -10.84321 0.4812694 5.602823 -10.06754 0.4812694 5.121531 -11.33009 0.4812694 3.834078 -6.856956 0.4812694 1.747096 -11.38703 0.5293985 4.832757 -11.38703 0.5293985 0.2381117 -6.792389 0.5293985 3.340754 -6.780356 0.5293985 1.050291 -11.16528 0.5293985 1.351097 -11.36138 0.5293985 0.1278158 -9.635597 0.5293985 5.699081 -10.41326 0.5293985 4.435692 -7.45976 0.5293985 5.410307 -11.12876 0.5293985 4.207078 -7.174203 0.5293985 5.626887 -10.84321 0.5293985 5.602823 -10.06754 0.5293985 5.121531 -11.33009 0.5293985 3.834078 -6.856956 0.5293985 0.5044059 10.66582 0.3892216 -0.00608772 10.66582 0.01967358 0.04392349 -6.73979 1.476333 0.04392349 -8.601373 3.168341 0.4608477 10.66582 0.2335138 -0.00608772 10.66582 0.1777615 0.4849002 10.66582 0.6009892 0.3232583 10.66582 0.8648954 0.3669032 10.66582 0.0810914 -0.006783902 10.66349 -0.006689906 0.04392445 -6.887365 2.115145 0.04392349 -10.91408 3.23349 0.04392349 -10.22282 -0.06184363 0.04392349 -10.11092 3.488273 -0.00608772 10.66582 0.3231324 0.4122914 10.66582 0.7715339 0.2057242 10.66582 0.9326285 -0.00608772 10.66582 0.9789385 0.04392349 -7.558372 2.80765 0.04392445 -7.186737 2.549278 0.04392349 -11.47087 1.600262 0.04392349 -10.57928 0.1521799 0.04392349 -11.54848 2.374839 0.04392349 -11.11893 0.753492 0.04392349 -10.87798 0.4383973 0.04392349 -11.41402 2.675495 1.500074 9.368682 0.8595764 1.00516 9.368682 1.667603 1.138791 9.368682 -0.7322445 0.6452946 9.368682 1.874988 0.04392349 -9.499986 1.100926 0.04392349 -11.17849 3.019467 0.04392349 -11.53855 2.045305 -0.005361855 9.361571 -1.115473 -0.003230512 9.368682 2.01678 0.7053397 9.368682 -0.9960899 1.277761 9.368682 1.381749 1.42643 9.368682 -0.2655578 1.559797 9.368682 0.2111872 -0.007337391 9.733935 -0.9932189 -0.005370438 9.740497 1.89732 0.5931082 9.740497 1.76647 1.048522 9.740497 -0.6395638 0.6485196 9.740497 -0.8830485 0.9252026 9.740497 1.575088 1.176767 9.740497 1.311294 1.381925 9.740497 0.8294169 1.313964 9.740497 -0.2088911 1.437038 9.740497 0.2310637 -0.007677614 10.25367 -0.5910951 -0.006249487 10.25844 1.507647 0.4282898 10.25844 1.412641 0.7589533 10.25844 -0.3343157 0.4685226 10.25844 -0.5111035 0.6694146 10.25844 1.273684 0.8520687 10.25844 1.08215 1.001028 10.25844 0.7322719 0.9516837 10.25844 -0.02161586 1.041045 10.25844 0.2978237 -0.007695019 10.58895 -0.1950691 -0.006796896 10.59194 1.124701 0.2664583 10.59194 1.064957 0.4743924 10.59194 -0.03359627 0.2917582 10.59194 -0.1447674 0.4180869 10.59194 0.9775759 0.5329468 10.59194 0.8571318 0.6266184 10.59194 0.637115 0.5955886 10.59194 0.1630413 0.6517823 10.59194 0.3639172 1.235177 10.02128 0.2650266 1.129274 10.02128 -0.1135461 1.187753 10.02128 0.7798979 1.011219 10.02128 1.194544 0.7947525 10.02128 1.421534 0.5566722 10.02128 -0.6936455 0.9008663 10.02128 -0.4841316 0.5089918 10.02128 1.586214 -0.005987465 10.02128 1.698807 -0.007679998 10.01563 -0.7884448 0.815975 10.47523 0.33614 0.7458693 10.47523 0.08553326 0.7845812 10.47523 0.6769735 0.6677194 10.47523 0.9514598 0.5244236 10.47523 1.101722 0.3668197 10.47523 -0.2984797 0.5946686 10.47523 -0.1597859 0.3352563 10.47523 1.210737 -0.005648553 10.47523 1.285271 -0.006769001 10.47149 -0.3612347 -0.00608772 10.66582 0.6674315 -0.00608772 10.66582 0.8517213 -0.006783902 10.66349 -0.04407334 0.2253353 10.66582 -0.00508213 -0.00608772 10.66582 0.7595764 2.723107 8.87696 -3.241123 2.723107 8.80734 -3.011615 2.723107 8.694282 -2.800099 2.723107 7.438351 -2.279875 2.723107 7.208843 -2.349496 2.723107 6.997326 -2.462554 2.723107 6.477102 -3.241124 2.723107 6.997327 -4.497056 2.723107 7.208843 -4.610112 2.723107 8.145222 -4.610111 2.723107 8.876961 -3.718483 2.723107 8.467442 -3.818261 2.723107 8.004431 -4.281274 2.723107 7.843939 -4.329959 2.723107 7.510125 -4.329959 2.723107 7.349633 -4.281274 2.723107 6.965681 -3.966173 2.723107 6.837936 -3.323958 2.723107 6.88662 -3.163465 2.723107 6.965681 -3.015555 2.723107 7.510125 -2.651769 2.723107 7.677031 -2.63533 2.723107 7.843938 -2.651769 2.723107 8.00443 -2.700454 2.723107 8.15234 -2.779514 2.723107 8.388381 -3.015555 2.723107 8.532566 -3.490864 2.723107 8.516126 -3.323957 2.418482 8.900468 -3.479804 2.418482 8.87696 -3.241123 2.418482 8.80734 -3.011615 2.418482 8.694282 -2.800099 2.418482 8.542133 -2.614704 2.418482 8.356737 -2.462554 2.418482 8.145221 -2.349496 2.418482 7.915712 -2.279875 2.418482 7.677031 -2.256367 2.418482 7.438351 -2.279875 2.418482 7.208843 -2.349496 2.418482 6.997326 -2.462554 2.418482 6.811931 -2.614704 2.418482 6.65978 -2.800099 2.418482 6.546723 -3.011615 2.418482 6.477102 -3.241124 2.418482 6.453594 -3.479805 2.418482 6.477102 -3.718486 2.418482 6.546723 -3.947993 2.418482 6.659781 -4.15951 2.418482 6.811932 -4.344905 2.418483 6.997327 -4.497056 2.418482 7.208843 -4.610112 2.418483 7.438352 -4.679732 2.418483 7.677032 -4.703241 2.418483 7.915713 -4.679732 2.418483 8.145222 -4.610111 2.418483 8.356738 -4.497054 2.418482 8.542133 -4.344904 2.418482 8.694283 -4.159508 2.418482 8.807341 -3.947991 2.418482 8.876961 -3.718483 2.807164 7.69467 -3.454572 2.807164 7.693748 -3.445221 2.807164 7.691021 -3.43623 2.807164 7.686592 -3.427943 2.807164 7.680631 -3.42068 2.807164 7.673367 -3.414719 2.807164 7.665081 -3.41029 2.807164 7.65609 -3.407562 2.807164 7.646739 -3.406641 2.807164 7.637388 -3.407562 2.807164 7.628397 -3.41029 2.807164 7.62011 -3.414719 2.807164 7.612846 -3.42068 2.807164 7.606886 -3.427943 2.807164 7.602457 -3.43623 2.807164 7.599729 -3.445221 2.807164 7.598808 -3.454572 2.807164 7.599729 -3.463923 2.807164 7.602457 -3.472914 2.807164 7.606886 -3.481201 2.807164 7.612846 -3.488464 2.807164 7.62011 -3.494425 2.807164 7.628397 -3.498854 2.807164 7.637388 -3.501582 2.807164 7.646739 -3.502503 2.807164 7.65609 -3.501582 2.807164 7.665081 -3.498854 2.807164 7.673367 -3.494425 2.807164 7.680631 -3.488464 2.807164 7.686592 -3.481201 2.807164 7.691021 -3.472914 2.807164 7.693748 -3.463923 0.01626253 7.700796 -3.454086 0.01626253 7.699807 -3.444054 0.01626253 7.696881 -3.434407 0.01626253 7.692129 -3.425517 0.01626253 7.685735 -3.417725 0.01626253 7.677942 -3.411329 0.01626253 7.669052 -3.406577 0.01626253 7.659406 -3.403651 0.01650065 7.649373 -3.402663 0.01650065 7.639341 -3.403651 0.01650065 7.629695 -3.406577 0.01650065 7.620804 -3.411329 0.01650065 7.613011 -3.417725 0.01650065 7.606617 -3.425517 0.01650065 7.601865 -3.434407 0.01650065 7.598939 -3.444054 0.01650065 7.597951 -3.454086 0.01650065 7.598939 -3.464118 0.01650065 7.601865 -3.473765 0.01650065 7.606617 -3.482655 0.01650065 7.613011 -3.490447 0.01650065 7.620804 -3.496842 0.01650065 7.629695 -3.501594 0.01650065 7.639341 -3.50452 0.01650065 7.649373 -3.505509 0.01494002 7.659406 -3.50452 0.01626253 7.669052 -3.501594 0.01626253 7.677942 -3.496842 0.01626253 7.685735 -3.490447 0.01626253 7.692129 -3.482655 0.01626253 7.696881 -3.473764 0.01626253 7.699807 -3.464118 1.481891 8.57553 -0.670629 1.478589 8.57526 -0.6718574 1.475414 8.57431 -0.6730824 1.472488 8.572714 -0.6742566 1.469923 8.570537 -0.6753347 1.467818 8.567859 -0.6762755 1.466254 8.564785 -0.677043 1.465291 8.561433 -0.6776075 1.464966 8.557931 -0.6779475 1.465291 8.554414 -0.6780496 1.466254 8.551017 -0.6779101 1.467818 8.547872 -0.6775346 1.469923 8.545098 -0.6769369 1.472488 8.542801 -0.6761406 1.475414 8.541071 -0.6751759 1.478589 8.539975 -0.6740799 1.481891 8.539553 -0.672895 1.485193 8.539823 -0.6716666 1.488368 8.540773 -0.6704416 1.491294 8.542368 -0.6692677 1.493859 8.544547 -0.6681893 1.495963 8.547224 -0.6672485 1.497527 8.550298 -0.666481 1.498491 8.553649 -0.6659165 1.498816 8.557152 -0.6655767 1.498491 8.560668 -0.6654744 1.497527 8.564065 -0.6656139 1.495963 8.567212 -0.6659896 1.493859 8.569986 -0.6665871 1.491294 8.572281 -0.6673837 1.488368 8.574011 -0.6683483 1.485193 8.575108 -0.6694443 2.173424 7.67391 -3.445515 2.170122 7.67364 -3.446744 2.166947 7.67269 -3.447969 2.164021 7.671095 -3.449143 2.161456 7.668918 -3.450221 2.159351 7.66624 -3.451162 2.157787 7.663166 -3.45193 2.156824 7.659814 -3.452494 2.156499 7.656312 -3.452834 2.156824 7.652795 -3.452936 2.157787 7.649398 -3.452797 2.159351 7.646253 -3.452421 2.161456 7.643478 -3.451823 2.164021 7.641182 -3.451027 2.166947 7.639452 -3.450062 2.170122 7.638355 -3.448967 2.173424 7.637934 -3.447781 2.176726 7.638204 -3.446553 2.179901 7.639153 -3.445328 2.182827 7.640749 -3.444154 2.185392 7.642927 -3.443076 2.187497 7.645604 -3.442135 2.189061 7.648679 -3.441368 2.190024 7.65203 -3.440803 2.190349 7.655533 -3.440463 2.190024 7.659049 -3.440361 2.189061 7.662446 -3.4405 2.187497 7.665592 -3.440876 2.185392 7.668366 -3.441474 2.182827 7.670662 -3.44227 2.179901 7.672392 -3.443235 2.176726 7.673489 -3.444331 1.481891 5.870671 -0.6706293 1.478589 5.870401 -0.6718576 1.475414 5.869451 -0.6730831 1.472488 5.867856 -0.674257 1.469923 5.865679 -0.6753352 1.467818 5.863001 -0.676276 1.466254 5.859927 -0.6770437 1.465291 5.856575 -0.6776083 1.464966 5.853073 -0.6779478 1.465291 5.849556 -0.6780498 1.466254 5.846159 -0.6779106 1.467818 5.843014 -0.6775348 1.469923 5.84024 -0.6769374 1.472488 5.837943 -0.676141 1.475414 5.836213 -0.6751764 1.478589 5.835116 -0.6740806 1.481891 5.834695 -0.6728952 1.485193 5.834965 -0.6716669 1.488368 5.835915 -0.6704424 1.491294 5.83751 -0.6692684 1.493859 5.839688 -0.6681898 1.495964 5.842365 -0.667249 1.497528 5.84544 -0.6664817 1.498491 5.848791 -0.6659172 1.498816 5.852294 -0.6655772 1.498491 5.85581 -0.6654747 1.497528 5.859207 -0.6656144 1.495964 5.862353 -0.6659901 1.493859 5.865128 -0.6665876 1.491294 5.867423 -0.6673839 1.488368 5.869153 -0.668349 1.485193 5.87025 -0.6694448 2.723107 8.516126 -3.657769 2.723107 8.388382 -3.966172 2.723107 8.281986 -4.095818 2.723107 8.152341 -4.202214 2.723107 7.677031 -4.346398 2.723107 7.201722 -4.202215 2.723107 7.072078 -4.095818 2.723107 6.88662 -3.818263 2.723107 6.837936 -3.657771 2.723107 6.821497 -3.490864 2.723107 7.072077 -2.88591 2.723107 7.201722 -2.779514 2.723107 7.349633 -2.700454 2.723107 8.281986 -2.88591 2.723107 8.467441 -3.163465 2.723107 8.900468 -3.479804 2.723107 8.542133 -2.614704 2.723107 8.356737 -2.462554 2.723107 8.145221 -2.349496 2.723107 7.915712 -2.279875 2.723107 7.677031 -2.256367 2.723107 6.811931 -2.614704 2.723107 6.65978 -2.800099 2.723107 6.546723 -3.011615 2.723107 6.453594 -3.479805 2.723107 6.477102 -3.718486 2.723107 6.546723 -3.947993 2.723107 6.659781 -4.15951 2.723107 6.811932 -4.344905 2.723107 7.438352 -4.679732 2.723107 7.677032 -4.703241 2.723107 7.915713 -4.679732 2.723107 8.356738 -4.497054 2.723107 8.542133 -4.344904 2.723107 8.694283 -4.159508 2.723107 8.807341 -3.947991 2.358147 7.750181 -3.439012 2.358147 7.748004 -3.416904 2.358147 7.741555 -3.395646 2.358147 7.731083 -3.376054 2.358147 7.71699 -3.358882 2.358147 7.699819 -3.344789 2.358147 7.680226 -3.334316 2.358147 7.658968 -3.327868 2.358147 7.63686 -3.32569 2.358147 7.614752 -3.327868 2.358147 7.593494 -3.334316 2.358147 7.573902 -3.344789 2.358147 7.556729 -3.358882 2.358147 7.542637 -3.376054 2.358147 7.532165 -3.395646 2.358147 7.525716 -3.416904 2.358147 7.523539 -3.439012 2.358147 7.525716 -3.46112 2.358147 7.532165 -3.482378 2.358147 7.542637 -3.50197 2.358147 7.55673 -3.519142 2.358147 7.573902 -3.533235 2.358147 7.593494 -3.543707 2.358147 7.614753 -3.550156 2.358147 7.63686 -3.552333 2.358147 7.658968 -3.550156 2.358147 7.680226 -3.543707 2.358147 7.699819 -3.533235 2.358147 7.71699 -3.519142 2.358147 7.731083 -3.50197 2.358147 7.741555 -3.482378 2.358147 7.748004 -3.461119 2.411445 8.514581 -3.645463 2.411445 8.46626 -3.804756 2.411445 8.387791 -3.951562 2.411445 8.282189 -4.080239 2.411445 8.153513 -4.185841 2.411445 8.006708 -4.26431 2.411445 7.847414 -4.312632 2.411445 7.681754 -4.328948 2.411445 7.516095 -4.312632 2.411445 7.356801 -4.264311 2.411445 7.209995 -4.185842 2.411445 7.081319 -4.08024 2.411445 6.975718 -3.951564 2.411445 6.897247 -3.804758 2.411445 6.848927 -3.645465 2.411445 6.832611 -3.479806 2.411445 6.848927 -3.314146 2.411445 6.897247 -3.154853 2.411445 6.975717 -3.008047 2.411445 7.081319 -2.87937 2.411445 7.209995 -2.773769 2.411445 7.356801 -2.695299 2.411445 7.516094 -2.646978 2.411445 7.681753 -2.630662 2.411445 7.847413 -2.646978 2.411445 8.006707 -2.695299 2.411445 8.153512 -2.773769 2.411445 8.282189 -2.87937 2.411445 8.38779 -3.008047 2.411445 8.466259 -3.154852 2.411445 8.51458 -3.314146 2.411445 8.530897 -3.479805 2.808414 7.636826 -3.406973 2.808414 7.681227 -3.420441 2.808414 7.691895 -3.474074 2.808414 7.687347 -3.482582 2.808414 7.665261 -3.500708 2.808414 7.619086 -3.49616 2.808414 7.605508 -3.482582 2.808414 7.605508 -3.427899 2.808414 7.636826 -3.503508 2.808414 7.611629 -3.49004 2.808414 7.597214 -3.45524 2.808414 7.673769 -3.49616 2.808414 7.681227 -3.49004 2.808414 7.691895 -3.436407 2.808414 7.687347 -3.427899 2.808414 7.656029 -3.406973 2.808414 7.627595 -3.409773 2.808414 7.611629 -3.420441 2.808414 7.600961 -3.436407 2.808414 7.627595 -3.500708 2.808414 7.646428 -3.504454 2.808414 7.695641 -3.45524 2.808414 7.694695 -3.445639 2.808414 7.600961 -3.474074 2.808414 7.656029 -3.503508 2.808414 7.673769 -3.414321 2.808414 7.646428 -3.406027 2.808414 7.59816 -3.445639 2.808414 7.59816 -3.464842 2.808414 7.694695 -3.464842 2.808414 7.665261 -3.409773 2.808414 7.619086 -3.414321 0.09845119 10.12659 5.056169 -0.7921347 10.12659 4.968455 -1.648496 10.12659 4.70868 -2.437722 10.12659 4.28683 -3.129486 10.12659 3.719115 -3.697201 10.12659 3.027351 -4.119052 10.12659 2.238125 -4.378826 10.12659 1.381764 -4.466541 10.12659 0.4911777 -4.378826 10.12659 -0.3994075 -4.119052 10.12659 -1.255768 -3.697201 10.12659 -2.044996 -3.129486 10.12659 -2.736759 -2.437722 10.12659 -3.304475 -1.648495 10.12659 -3.726326 -0.7921337 10.12659 -3.986099 0.09845262 10.12659 -4.073813 0.9890389 10.12659 -3.986099 1.8454 10.12659 -3.726324 2.634627 10.12659 -3.304473 3.32639 10.12659 -2.736757 3.894105 10.12659 -2.044994 4.315955 10.12659 -1.255766 4.575729 10.12659 -0.3994042 4.663444 10.12659 0.4911818 4.575727 10.12659 1.381768 4.315952 10.12659 2.23813 3.894101 10.12659 3.027356 3.326384 10.12659 3.719118 2.63462 10.12659 4.286834 1.845392 10.12659 4.708683 0.98903 10.12659 4.968456 0.1105111 10.00309 4.821404 -0.7375653 10.00309 4.737875 -1.553051 10.00309 4.4905 -2.304606 10.00309 4.088786 -2.96335 10.00309 3.548169 -3.503968 10.00309 2.889424 -3.905682 10.00308 2.137869 -4.153057 10.00308 1.322383 -4.236586 10.00308 0.4743077 -4.153057 10.00308 -0.3737683 -3.905682 10.00308 -1.189253 -3.503968 10.00308 -1.940809 -2.96335 10.00308 -2.599554 -2.304606 10.00307 -3.140171 -1.55305 10.00307 -3.541886 -0.7375642 10.00307 -3.789261 0.1105125 10.00307 -3.872788 0.9585893 10.00307 -3.789261 1.774075 10.00307 -3.541885 2.52563 10.00307 -3.140169 3.184374 10.00308 -2.599551 3.724992 10.00308 -1.940807 4.126706 10.00308 -1.189251 4.37408 10.00308 -0.3737652 4.457608 10.00308 0.4743115 4.374078 10.00308 1.322388 4.126702 10.00308 2.137873 3.724987 10.00309 2.889429 3.184369 10.00309 3.548172 2.525624 10.00309 4.088789 1.774067 10.00309 4.490503 0.958581 10.00309 4.737877 0.06686282 9.885383 4.661141 -0.749948 9.885383 4.580691 -1.535369 9.885383 4.342436 -2.259217 9.885383 3.955532 -2.893675 9.885383 3.434846 -3.414362 9.885383 2.800387 -3.801266 9.885383 2.076539 -4.039522 9.885383 1.291118 -4.11997 9.885383 0.4743077 -4.039522 9.885383 -0.3425024 -3.801266 9.885383 -1.127923 -3.414362 9.885383 -1.851772 -2.893675 9.885383 -2.48623 -2.259217 9.885383 -3.006917 -1.535368 9.885383 -3.393821 -0.7499468 9.885383 -3.632076 0.06686413 9.885383 -3.712525 0.883675 9.885383 -3.632076 1.669096 9.885383 -3.393821 2.392944 9.885383 -3.006915 3.027402 9.885383 -2.486228 3.548089 9.885383 -1.85177 3.934993 9.885383 -1.127921 4.173248 9.885383 -0.3424995 4.253696 9.885383 0.4743114 4.173246 9.885383 1.291122 3.93499 9.885383 2.076543 3.548084 9.885383 2.800391 3.027397 9.885383 3.434849 2.392938 9.885383 3.955535 1.669088 9.885383 4.342439 0.883667 9.885383 4.580693 0.1126733 10.00147 4.13084 -0.6058446 10.00147 4.060072 -1.296751 10.00147 3.850488 -1.933493 10.00147 3.510142 -2.491602 10.00147 3.052114 -2.94963 10.00147 2.494005 -3.289976 10.00147 1.857262 -3.49956 10.00147 1.166357 -3.570328 10.00147 0.4478383 -3.49956 10.00147 -0.2706791 -3.289976 10.00147 -0.9615848 -2.94963 10.00147 -1.598328 -2.491602 10.00147 -2.156437 -1.933492 10.00147 -2.614466 -1.29675 10.00147 -2.954812 -0.6058439 10.00147 -3.164396 0.1126746 10.00147 -3.235163 0.8311929 10.00147 -3.164395 1.522099 10.00147 -2.95481 2.158841 10.00147 -2.614464 2.71695 10.00147 -2.156435 3.174979 10.00147 -1.598325 3.515325 10.00147 -0.9615829 3.724908 10.00147 -0.2706765 3.795675 10.00147 0.4478417 3.724906 10.00147 1.16636 3.515321 10.00147 1.857266 3.174975 10.00147 2.494009 2.716946 10.00147 3.052117 2.158835 10.00147 3.510145 1.522092 10.00147 3.85049 0.8311859 10.00147 4.060074 -1.708834 10.00131 3.134961 -2.906143 10.00131 -0.8120363 -2.201452 10.00131 -1.86668 -1.146809 10.00131 -2.57137 -0.5369766 10.00131 -2.756361 0.09722816 10.00131 -2.818825 1.90329 10.00131 -2.270961 2.80019 10.00131 -1.37406 3.348051 10.00131 0.4320024 1.903284 10.00131 3.134964 1.341259 10.00131 3.435372 0.7314266 10.00131 3.620361 0.09680771 10.09659 3.172986 -0.4259529 10.09659 3.121498 -0.9286244 10.09659 2.969014 -1.391889 10.09659 2.721394 -1.797943 10.09659 2.388154 -2.131184 10.09659 1.982099 -2.378804 10.09659 1.518834 -2.531287 10.09659 1.016163 -2.582775 10.09659 0.493402 -2.531287 10.09659 -0.02935826 -2.378804 10.09659 -0.5320296 -2.131184 10.09659 -0.9952946 -1.797943 10.09659 -1.401349 -1.391888 10.09659 -1.73459 -0.9286239 10.09659 -1.98221 -0.4259524 10.09659 -2.134694 0.09680867 10.09659 -2.186181 0.6195695 10.09659 -2.134693 1.122241 10.09659 -1.982209 1.585506 10.09659 -1.734589 1.99156 10.09659 -1.401348 2.324801 10.09659 -0.9952932 2.572421 10.09659 -0.5320282 2.724904 10.09659 -0.02935636 2.776391 10.09659 0.4934044 2.724903 10.09659 1.016165 2.572418 10.09659 1.518837 2.324798 10.09659 1.982101 1.991557 10.09659 2.388155 1.585501 10.09659 2.721396 1.122236 10.09659 2.969016 0.6195645 10.09659 3.121499 -0.007880032 -9.543302 3.413522 -0.007880032 -9.866368 -0.1747962 -0.007880032 -10.5486 3.389759 -0.007880032 -9.524352 -0.2444324 -0.007880032 -11.31656 1.126341 -0.007880032 -6.73979 1.476333 -0.007880032 -8.601373 3.168341 -0.007879078 -6.887365 2.115145 -0.007880032 -10.91408 3.23349 -0.007880032 -10.22282 -0.06184363 -0.007880032 -10.11092 3.488273 -0.007880032 -7.558372 2.80765 -0.007879078 -7.186737 2.549278 -0.007880032 -11.47087 1.600262 -0.007880032 -10.57928 0.1521799 -0.007880032 -11.54848 2.374839 -0.007880032 -11.11893 0.753492 -0.007880032 -10.87798 0.4383973 -0.007880032 -11.41402 2.675495 -0.007880032 -9.499986 1.100926 -0.007880032 -11.17849 3.019467 -0.007880032 -11.53855 2.045305 -0.009413421 7.589376 1.967214 0.9191966 7.11431 1.967214 -0.009413421 7.228652 2.662206 0.9191966 6.753585 2.486932 0.09845119 10.19368 5.056169 -0.7921347 10.19368 4.968455 -1.648496 10.19368 4.70868 -2.437722 10.19368 4.28683 -3.129486 10.19368 3.719115 -3.697201 10.19368 3.027351 -4.119052 10.19368 2.238125 -4.378826 10.19368 1.381764 -4.466541 10.19368 0.4911777 -4.378826 10.19368 -0.3994075 -4.119052 10.19368 -1.255768 -3.697201 10.19368 -2.044996 -3.129486 10.19368 -2.736759 -2.437722 10.19368 -3.304475 -1.648495 10.19368 -3.726326 -0.7921337 10.19368 -3.986099 0.09845262 10.19368 -4.073813 0.9890389 10.19368 -3.986099 1.8454 10.19368 -3.726324 2.634627 10.19368 -3.304473 3.32639 10.19368 -2.736757 3.894105 10.19368 -2.044994 4.315955 10.19368 -1.255766 4.575729 10.19368 -0.3994042 4.663444 10.19368 0.4911818 4.575727 10.19368 1.381768 4.315952 10.19368 2.23813 3.894101 10.19368 3.027356 3.326384 10.19368 3.719118 2.63462 10.19368 4.286834 1.845392 10.19368 4.708683 0.98903 10.19368 4.968456 0.04995918 10.13115 3.172986 -0.4728014 10.13115 3.121498 -0.9754729 10.13115 2.969014 -1.438737 10.13115 2.721394 -1.844792 10.13115 2.388154 -2.178032 10.13115 1.982099 -2.425652 10.13115 1.518834 -2.578136 10.13115 1.016163 -2.629624 10.13115 0.493402 -2.578136 10.13115 -0.02935826 -2.425652 10.13115 -0.5320296 -2.178032 10.13115 -0.9952946 -1.844792 10.13115 -1.401349 -1.438737 10.13115 -1.73459 -0.9754725 10.13115 -1.98221 -0.4728009 10.13115 -2.134694 0.04996013 10.13115 -2.186181 0.572721 10.13115 -2.134693 1.075392 10.13115 -1.982209 1.538657 10.13115 -1.734589 1.944712 10.13115 -1.401348 2.277952 10.13115 -0.9952932 2.525572 10.13115 -0.5320282 2.678055 10.13115 -0.02935636 2.729542 10.13115 0.4934044 2.678054 10.13115 1.016165 2.52557 10.13115 1.518837 2.277949 10.13115 1.982101 1.944708 10.13115 2.388155 1.538653 10.13115 2.721396 1.075388 10.13115 2.969016 0.572716 10.13115 3.121499 0.09722703 10.00131 3.682824 -0.5369772 10.00131 3.62036 -1.14681 10.00131 3.435369 -2.201452 10.00131 2.73068 -2.605734 10.00131 2.238061 -2.906143 10.00131 1.676036 -3.091133 10.00131 1.066204 -3.153598 10.00131 0.4319996 -3.091133 10.00131 -0.2022042 -2.605734 10.00131 -1.374061 -1.708834 10.00131 -2.270962 0.7314327 10.00131 -2.756361 1.341265 10.00131 -2.571369 2.395908 10.00131 -1.866678 3.100598 10.00131 -0.8120346 3.285588 10.00131 -0.2022018 3.285587 10.00131 1.066207 3.100595 10.00131 1.67604 2.800186 10.00131 2.238064 2.395904 10.00131 2.730682 0.0413087 10.04809 3.668967 -0.5928955 10.04809 3.606503 -1.202728 10.04809 3.421512 -1.764753 10.04809 3.121104 -2.257371 10.04809 2.716823 -2.661652 10.04809 2.224204 -2.962061 10.04809 1.662179 -3.147051 10.04809 1.052347 -3.209516 10.04809 0.4181426 -3.147051 10.04809 -0.2160612 -2.962061 10.04809 -0.8258932 -2.661652 10.04809 -1.387918 -2.257371 10.04809 -1.880537 -1.764752 10.04809 -2.284819 -1.202727 10.04809 -2.585227 -0.5928949 10.04809 -2.770218 0.04130983 10.04809 -2.832681 0.6755144 10.04809 -2.770218 1.285347 10.04809 -2.585226 1.847371 10.04809 -2.284818 2.33999 10.04809 -1.880535 2.744272 10.04809 -1.387917 3.04468 10.04809 -0.8258916 3.22967 10.04809 -0.2160588 3.292133 10.04809 0.4181455 3.229669 10.04809 1.05235 3.044677 10.04809 1.662183 2.744268 10.04809 2.224207 2.339986 10.04809 2.716825 1.847366 10.04809 3.121107 1.285341 10.04809 3.421515 0.6755083 10.04809 3.606504 0.08017927 10.03097 4.116983 -0.6383387 10.03097 4.046215 -1.329245 10.03097 3.836631 -1.965987 10.03097 3.496285 -2.524096 10.03097 3.038257 -2.982124 10.03097 2.480148 -3.32247 10.03097 1.843405 -3.532054 10.03097 1.1525 -3.602823 10.03097 0.4339814 -3.532054 10.03097 -0.2845361 -3.32247 10.03097 -0.9754418 -2.982124 10.03097 -1.612185 -2.524096 10.03097 -2.170294 -1.965986 10.03097 -2.628323 -1.329244 10.03097 -2.968669 -0.638338 10.03097 -3.178252 0.08018058 10.03097 -3.24902 0.7986988 10.03097 -3.178252 1.489604 10.03097 -2.968667 2.126347 10.03097 -2.628321 2.684456 10.03097 -2.170292 3.142485 10.03097 -1.612182 3.482831 10.03097 -0.9754399 3.692414 10.03097 -0.2845335 3.763181 10.03097 0.4339847 3.692412 10.03097 1.152503 3.482827 10.03097 1.843409 3.142481 10.03097 2.480152 2.684452 10.03097 3.03826 2.126341 10.03097 3.496288 1.489598 10.03097 3.836633 0.7986919 10.03097 4.046217 0.04608088 9.906245 4.647284 -0.77073 9.906245 4.566834 -1.556151 9.906245 4.328579 -2.279999 9.906245 3.941675 -2.914457 9.906245 3.420989 -3.435144 9.906245 2.78653 -3.822048 9.906245 2.062682 -4.060304 9.906245 1.277261 -4.140752 9.906245 0.4604507 -4.060304 9.906245 -0.3563593 -3.822048 9.906245 -1.14178 -3.435144 9.906245 -1.865629 -2.914457 9.906245 -2.500087 -2.279999 9.906245 -3.020774 -1.55615 9.906245 -3.407678 -0.7707288 9.906245 -3.645933 0.04608219 9.906245 -3.726382 0.8628931 9.906245 -3.645933 1.648314 9.906245 -3.407678 2.372162 9.906245 -3.020772 3.00662 9.906245 -2.500085 3.527307 9.906245 -1.865627 3.914211 9.906245 -1.141778 4.152466 9.906245 -0.3563565 4.232914 9.906245 0.4604544 4.152464 9.906245 1.277265 3.914208 9.906245 2.062686 3.527302 9.906245 2.786534 3.006615 9.906245 3.420992 2.372156 9.906245 3.941678 1.648306 9.906245 4.328582 0.8628851 9.906245 4.566836 1.93773 5.852405 1.772196 1.920265 5.031543 1.735688 1.089886 4.594916 1.931322 1.054956 6.358893 1.918703 0.5135374 4.315474 2.240869 0.4087467 6.673264 2.181837 1.037277 7.108005 1.816975 1.242944 4.786238 1.816975 1.928141 5.401682 1.754237 7.65253e-4 4.245615 2.355413 7.65253e-4 6.725661 2.269217 0.729655 6.517147 2.117102 0.729655 4.420259 2.189981 1.057591 6.132842 1.731171 0.4113818 6.447214 1.994305 1.204316 5.947842 1.629443 0.003400266 6.49961 2.081685 0.73229 6.291096 1.92957 1.089886 4.786771 0.5185715 0.5135374 4.507329 0.4495849 1.037277 7.29986 0.4042239 1.242944 4.978093 0.4042239 7.65253e-4 4.437469 0.4897735 0.729655 4.612114 0.4527725 0.002946376 7.250426 2.675138 0.002946376 7.61115 1.980146 0.9315564 7.136084 1.980146 0.9315564 6.77536 2.499864 0.729655 4.612114 0.4527725 7.65253e-4 4.437469 0.4897735 0.5135374 4.507329 0.4495849 1.089886 4.786771 0.5185715 0.7299695 7.356295 0.5270099 0.001079678 7.45803 0.5640108 0.5138519 7.414651 0.5238222 1.090201 7.259502 0.5928089 0.7291337 7.253229 1.979068 0.5130161 7.311585 2.011758 1.089365 7.156435 1.422992 -7.65253e-4 2.077414 -1.661739 -7.65253e-4 2.077414 2.361259 -7.65253e-4 4.077414 -1.661739 -7.65253e-4 4.077414 2.361259 -0.7971408 2.077414 -1.429864 -0.729655 2.077414 2.201897 -0.7971408 4.077414 -1.429864 -0.729655 4.077414 2.201897 -1.264021 4.077414 1.816975 -1.264021 2.077414 1.816975 -1.794284 4.077414 0.9088178 -1.794284 2.077414 0.9088178 -1.466477 4.077414 1.495698 -1.466477 2.077414 1.495698 -1.363551 4.077414 -1.006792 -1.363551 2.077414 -1.006792 -1.685532 4.077414 -0.5328862 -1.685532 2.077414 -0.5328862 -1.912067 4.077414 0.1800808 -1.912067 2.077414 0.1800808 0.001630246 8.438134 -1.182334 -7.65253e-4 8.446125 2.209421 -0.729655 8.446125 2.050059 -1.284305 8.446125 -0.8802602 -0.7971408 8.446125 -1.176801 -1.134114 8.446125 1.816975 -1.440495 8.446125 1.495698 -1.690358 8.446125 0.9088178 -1.607588 8.446125 -0.3557419 -1.757481 8.446125 0.1800808 -1.912067 6.446125 0.1800808 -7.65253e-4 -5.7515 -0.9456787 -7.65253e-4 -5.7515 1.782639 -0.2788411 -5.7515 -0.8884533 -0.2556232 -5.7515 1.746015 -0.539821 -5.7515 1.553966 -0.9086055 -5.7515 0.7510125 -0.7948791 -5.7515 1.267757 -0.4718848 -5.7515 -0.7273538 -7.65253e-4 -5.7515 -0.9400065 -0.7619307 -5.7515 -0.375081 -0.9181253 -5.7515 0.1800808 -0.04586732 0.6092184 -1.182334 -7.65253e-4 -9.66766 1.221253 -0.005914688 -9.659189 -0.3399642 -0.05698782 -9.66766 1.220681 -7.65253e-4 -9.66766 1.026646 -0.04673659 -9.66766 1.047819 -0.04946255 -9.66766 0.4979389 -7.65253e-4 -9.66766 0.4672349 -7.65253e-4 -9.66766 0.7674878 -0.04407781 -9.66766 0.7736606 -0.07296055 -9.66766 -0.3543546 -7.65253e-4 -9.66766 -0.3503636 -7.65253e-4 -9.66766 -0.03502738 -0.0515381 -9.66766 0.002210021 -7.65253e-4 -9.66766 0.2455512 -0.04706811 -9.66766 0.2674487 -3.075886 1.815352 1.350284 -3.075886 7.87344 1.279214 -3.075886 7.696595 1.729506 -3.075886 6.783989 1.778969 -3.075886 4.167768 1.696529 -3.075886 1.962404 1.478064 -3.075886 4.825945 1.725384 -3.075886 3.42715 1.651188 -3.075886 6.125812 1.783092 -3.075886 5.181892 1.408427 -3.075886 6.747123 1.362904 -3.075886 3.454453 1.358534 -3.075886 5.983591 1.395207 -3.075886 8.177339 1.322153 -3.075886 8.015848 1.267287 -9.18866 1.815352 1.350292 -9.18866 1.860597 1.270483 -9.18866 8.252239 1.498683 -9.18866 7.87344 1.279222 -9.18866 7.696595 1.729514 -9.18866 6.783989 1.778977 -9.18866 8.032125 1.663563 -9.18866 4.167768 1.696538 -9.18866 2.587606 1.572878 -9.18866 5.401682 1.754247 -9.18866 1.962404 1.478073 -9.18866 4.825945 1.725392 -9.18866 3.42715 1.651196 -9.18866 6.125812 1.7831 -9.18866 5.181892 1.408436 -9.18866 6.747123 1.362912 -9.18866 3.454453 1.358543 -9.18866 7.386614 1.330609 -9.18866 4.30386 1.383489 -9.18866 5.983591 1.395215 -9.18866 2.557338 1.29543 -9.18866 8.177339 1.322161 -9.18866 8.262496 1.415193 -9.18866 8.015848 1.267296 -10.68566 1.7963 1.354367 -10.68566 1.84023 1.276877 -10.68566 8.046175 1.498447 -10.68566 7.678381 1.285362 -10.68566 7.506674 1.722571 -10.68566 6.620582 1.770597 -10.68566 7.832455 1.658536 -10.68566 4.08037 1.690553 -10.68566 2.546117 1.570486 -10.68566 5.278436 1.746585 -10.68566 1.939079 1.478435 -10.68566 4.719425 1.718569 -10.68566 3.36127 1.646529 -10.68566 5.981526 1.7746 -10.68566 5.065031 1.410821 -10.68566 6.584787 1.36662 -10.68566 3.387779 1.362378 -10.68566 7.205699 1.335256 -10.68566 4.212509 1.386599 -10.68566 5.843438 1.397985 -10.68566 2.516728 1.301099 -10.68566 7.973451 1.327053 -10.68566 8.056134 1.417382 -10.68566 7.816651 1.273782 -12.23257 1.750489 1.360293 -12.23257 1.792506 1.286176 -12.23257 7.728265 1.4981 -12.23257 7.376484 1.294292 -12.23257 7.212253 1.712467 -12.23257 6.364737 1.758402 -12.23257 7.523849 1.651219 -12.23257 3.935118 1.681843 -12.23257 2.467662 1.567003 -12.23257 5.081024 1.735435 -12.23257 1.887052 1.478959 -12.23257 4.546351 1.708639 -12.23257 3.247325 1.639735 -12.23257 5.753505 1.762231 -12.23257 4.87691 1.414289 -12.23257 6.330502 1.372013 -12.23257 3.272681 1.367955 -12.23257 6.924381 1.342014 -12.23257 4.061504 1.391121 -12.23257 5.621428 1.402012 -12.23257 2.439552 1.309344 -12.23257 7.658707 1.334168 -12.23257 7.73779 1.420565 -12.23257 7.508734 1.283216 -13.60483 1.752411 1.369981 -13.60483 1.791302 1.30138 -13.60483 7.285345 1.497533 -13.60483 6.959743 1.308891 -13.60483 6.807733 1.695947 -13.60483 6.023286 1.738464 -13.60483 7.096142 1.639258 -13.60483 3.774469 1.667602 -13.60483 2.416215 1.561308 -13.60483 4.835102 1.717207 -13.60483 1.878812 1.479817 -13.60483 4.340217 1.692404 -13.60483 3.137859 1.628628 -13.60483 5.457539 1.742008 -13.60483 4.646177 1.419959 -13.60483 5.991598 1.380828 -13.60483 3.161328 1.377073 -13.60483 6.541284 1.353062 -13.60483 3.89145 1.398515 -13.60483 5.335291 1.408595 -13.60483 2.390197 1.322823 -13.60483 7.220963 1.3458 -13.60483 7.294162 1.425767 -13.60483 7.08215 1.29864 -15.10183 1.807108 1.38747 -15.10183 1.840355 1.328827 -15.10183 6.536963 1.496509 -15.10183 6.258621 1.335248 -15.10183 6.128674 1.666124 -15.10183 5.458087 1.70247 -15.10183 6.375222 1.617663 -15.10183 3.535675 1.641893 -15.10183 2.374564 1.551027 -15.4536 4.442361 1.684298 -15.10183 1.915163 1.481364 -15.10183 4.019306 1.663096 -15.10183 2.991466 1.608576 -15.10183 4.974455 1.7055 -15.10183 4.280858 1.430195 -15.10183 5.430998 1.396744 -15.10183 3.011528 1.393533 -15.10183 5.900899 1.373007 -15.10183 3.635676 1.411863 -15.10183 4.86995 1.42048 -15.10183 2.352323 1.347158 -15.10183 6.481926 1.3668 -15.10183 6.5445 1.43516 -15.10183 6.363262 1.326484 -15.90024 2.002141 1.403638 -15.90024 2.03017 1.354198 -15.90024 5.98963 1.495563 -15.90024 5.754974 1.359612 -15.90024 5.645423 1.638556 -15.90024 5.080087 1.669198 -15.90024 5.853275 1.597701 -15.90024 3.459403 1.618128 -15.90024 2.480533 1.541524 -15.90024 4.223783 1.653878 -15.90024 2.093237 1.482795 -15.90024 3.867128 1.636003 -15.90024 3.00061 1.590041 -15.90024 4.672363 1.671751 -15.90024 4.087628 1.439656 -15.90024 5.05725 1.411456 -15.90024 3.017523 1.408749 -15.90024 5.453399 1.391445 -15.90024 3.543709 1.424202 -15.90024 4.58426 1.431467 -15.90024 2.461783 1.369652 -15.90024 5.943232 1.386211 -15.90024 5.995984 1.443842 -15.90024 5.843192 1.352224 -16.27449 2.201132 1.415151 -16.27449 2.225445 1.372266 -16.27449 5.659973 1.494889 -16.27449 5.456427 1.376962 -16.27449 5.3614 1.618925 -16.27449 4.871014 1.645504 -16.27449 5.541696 1.583486 -16.27449 3.465195 1.601205 -16.27449 2.6161 1.534757 -16.27449 4.128236 1.632215 -16.27449 2.28015 1.483813 -16.27449 3.818865 1.61671 -16.27449 3.067227 1.576841 -16.27449 4.517344 1.647719 -16.27449 4.010132 1.446394 -16.27449 4.851204 1.421932 -16.27449 3.081898 1.419584 -16.27449 5.194833 1.404574 -16.27449 3.538324 1.432989 -16.27449 4.440923 1.43929 -16.27449 2.599836 1.385671 -16.27449 5.619726 1.400035 -16.27449 5.665484 1.450025 -16.27449 5.532948 1.370553 -16.64874 2.49665 1.430383 -16.64874 2.516046 1.39617 -16.64874 5.256057 1.493997 -16.64874 5.093672 1.399917 -16.64874 5.01786 1.592951 -16.64874 4.626638 1.614155 -16.64874 5.161697 1.564678 -16.64874 3.505099 1.578814 -16.64874 2.827705 1.525803 -16.64874 4.034062 1.603553 -16.64874 2.559689 1.485161 -16.64874 3.787251 1.591184 -16.64874 3.187607 1.559377 -16.64874 4.344487 1.615922 -16.64874 3.939841 1.455309 -16.64874 4.610835 1.435793 -16.64874 3.199311 1.43392 -16.64874 4.884976 1.421946 -16.64874 3.563441 1.444614 -16.64874 4.283519 1.449641 -16.64874 2.81473 1.406865 -16.64874 5.223948 1.418324 -16.64874 5.260454 1.458206 -16.64874 5.154719 1.394804 -16.86532 2.796837 1.443341 -16.86532 2.812051 1.416505 -16.86532 4.961261 1.493238 -16.86532 4.833889 1.419444 -16.86532 4.774424 1.570856 -16.86532 4.467557 1.587488 -16.86532 4.887247 1.548679 -16.86532 3.587845 1.559767 -16.86532 3.05651 1.518186 -16.86532 4.002752 1.579172 -16.86532 2.846284 1.486308 -16.86532 3.809159 1.56947 -16.86532 3.338809 1.544521 -16.86532 4.246243 1.588874 -16.86532 3.928847 1.462892 -16.86532 4.455161 1.447585 -16.86532 3.34799 1.446116 -16.86532 4.670192 1.436723 -16.86532 3.633606 1.454504 -16.86532 4.198421 1.458447 -16.86532 3.046332 1.424894 -16.86532 4.936075 1.433882 -16.86532 4.96471 1.465164 -16.86532 4.881773 1.415433 -17.0458 3.151654 1.457013 -17.0458 3.162455 1.437961 -17.0458 4.688305 1.492438 -17.0458 4.597876 1.440047 -17.0458 4.555658 1.547543 -17.0458 4.337795 1.559351 -17.0458 4.635757 1.531799 -17.0458 3.713236 1.539671 -17.0458 3.33601 1.51015 -17.0458 4.007803 1.553447 -17.0458 3.186759 1.487518 -17.0458 3.87036 1.546559 -17.0458 3.536431 1.528847 -17.0458 4.180672 1.560335 -17.0458 3.955334 1.470893 -17.0458 4.328995 1.460026 -17.0458 3.542949 1.458983 -17.0458 4.481658 1.452314 -17.0458 3.745725 1.464938 -17.0458 4.14672 1.467737 -17.0458 3.328784 1.443916 -17.0458 4.670424 1.450297 -17.0458 4.690753 1.472507 -17.0458 4.631872 1.4372 -3.075886 1.860597 1.270475 -3.075886 8.252239 1.498675 -3.075886 8.032125 1.663554 -3.075886 2.587606 1.572869 -3.075886 5.401682 1.754238 -3.075886 7.386614 1.330601 -3.075886 4.30386 1.38348 -3.075886 2.557338 1.295422 -3.075886 8.262496 1.415185 -1.175227 1.815352 1.350281 -1.175227 1.860597 1.270473 -1.175227 8.252239 1.498672 -1.175227 7.87344 1.279211 -1.175227 7.696595 1.729503 -1.175227 6.783989 1.778966 -1.175227 8.032125 1.663552 -1.175227 4.167768 1.696527 -1.175227 2.587606 1.572867 -1.175227 5.401682 1.754236 -1.175227 1.962404 1.478062 -1.175227 4.825945 1.725381 -1.175227 3.42715 1.651185 -1.175227 6.125812 1.783089 -1.175227 5.181892 1.408425 -1.175227 6.747123 1.362901 -1.175227 3.454453 1.358532 -1.175227 7.386614 1.330598 -1.175227 4.30386 1.383478 -1.175227 5.983591 1.395205 -1.175227 2.557338 1.295419 -1.175227 8.177339 1.32215 -1.175227 8.262496 1.415182 -1.175227 8.015848 1.267285 -0.04392349 -9.543302 3.413522 -0.04392349 -9.866368 -0.1747962 -0.04392349 -10.5486 3.389759 -0.04392349 -9.524352 -0.2444324 -0.04392349 -11.31656 1.126341 -1.747096 -11.38703 0.4812694 -4.832757 -11.38703 0.4812694 -0.2381117 -6.792389 0.4812694 -3.340754 -6.780356 0.4812694 -1.050291 -11.16528 0.4812694 -1.351097 -11.36138 0.4812694 -0.1278158 -9.635597 0.4812694 -5.699081 -10.41326 0.4812694 -4.435692 -7.45976 0.4812694 -5.410307 -11.12876 0.4812694 -4.207078 -7.174203 0.4812694 -5.626887 -10.84321 0.4812694 -5.602823 -10.06754 0.4812694 -5.121531 -11.33009 0.4812694 -3.834078 -6.856956 0.4812694 -1.747096 -11.38703 0.5293985 -4.832757 -11.38703 0.5293985 -0.2381117 -6.792389 0.5293985 -3.340754 -6.780356 0.5293985 -1.050291 -11.16528 0.5293985 -1.351097 -11.36138 0.5293985 -0.1278158 -9.635597 0.5293985 -5.699081 -10.41326 0.5293985 -4.435692 -7.45976 0.5293985 -5.410307 -11.12876 0.5293985 -4.207078 -7.174203 0.5293985 -5.626887 -10.84321 0.5293985 -5.602823 -10.06754 0.5293985 -5.121531 -11.33009 0.5293985 -3.834078 -6.856956 0.5293985 -0.5044059 10.66582 0.3892216 0.00608772 10.66582 0.01967358 -0.04392349 -6.73979 1.476333 -0.04392349 -8.601373 3.168341 -0.4608477 10.66582 0.2335138 0.00608772 10.66582 0.1777615 -0.4849002 10.66582 0.6009892 -0.3232583 10.66582 0.8648954 -0.3669032 10.66582 0.0810914 0.006783902 10.66349 -0.006689906 -0.04392445 -6.887365 2.115145 -0.04392349 -10.91408 3.23349 -0.04392349 -10.22282 -0.06184363 -0.04392349 -10.11092 3.488273 0.00608772 10.66582 0.3231324 -0.4122914 10.66582 0.7715339 -0.2057242 10.66582 0.9326285 0.00608772 10.66582 0.9789385 -0.04392349 -7.558372 2.80765 -0.04392445 -7.186737 2.549278 -0.04392349 -11.47087 1.600262 -0.04392349 -10.57928 0.1521799 -0.04392349 -11.54848 2.374839 -0.04392349 -11.11893 0.753492 -0.04392349 -10.87798 0.4383973 -0.04392349 -11.41402 2.675495 -1.500074 9.368682 0.8595764 -1.00516 9.368682 1.667603 -1.138791 9.368682 -0.7322445 -0.6452946 9.368682 1.874988 -0.04392349 -9.499986 1.100926 -0.04392349 -11.17849 3.019467 -0.04392349 -11.53855 2.045305 0.005361855 9.361571 -1.115473 0.003230512 9.368682 2.01678 -0.7053397 9.368682 -0.9960899 -1.277761 9.368682 1.381749 -1.42643 9.368682 -0.2655578 -1.559797 9.368682 0.2111872 0.007337391 9.733935 -0.9932189 0.005370438 9.740497 1.89732 -0.5931082 9.740497 1.76647 -1.048522 9.740497 -0.6395638 -0.6485196 9.740497 -0.8830485 -0.9252026 9.740497 1.575088 -1.176767 9.740497 1.311294 -1.381925 9.740497 0.8294169 -1.313964 9.740497 -0.2088911 -1.437038 9.740497 0.2310637 0.007677614 10.25367 -0.5910951 0.006249487 10.25844 1.507647 -0.4282898 10.25844 1.412641 -0.7589533 10.25844 -0.3343157 -0.4685226 10.25844 -0.5111035 -0.6694146 10.25844 1.273684 -0.8520687 10.25844 1.08215 -1.001028 10.25844 0.7322719 -0.9516837 10.25844 -0.02161586 -1.041045 10.25844 0.2978237 0.007695019 10.58895 -0.1950691 0.006796896 10.59194 1.124701 -0.2664583 10.59194 1.064957 -0.4743924 10.59194 -0.03359627 -0.2917582 10.59194 -0.1447674 -0.4180869 10.59194 0.9775759 -0.5329468 10.59194 0.8571318 -0.6266184 10.59194 0.637115 -0.5955886 10.59194 0.1630413 -0.6517823 10.59194 0.3639172 -1.235177 10.02128 0.2650266 -1.129274 10.02128 -0.1135461 -1.187753 10.02128 0.7798979 -1.011219 10.02128 1.194544 -0.7947525 10.02128 1.421534 -0.5566722 10.02128 -0.6936455 -0.9008663 10.02128 -0.4841316 -0.5089918 10.02128 1.586214 0.005987465 10.02128 1.698807 0.007679998 10.01563 -0.7884448 -0.815975 10.47523 0.33614 -0.7458693 10.47523 0.08553326 -0.7845812 10.47523 0.6769735 -0.6677194 10.47523 0.9514598 -0.5244236 10.47523 1.101722 -0.3668197 10.47523 -0.2984797 -0.5946686 10.47523 -0.1597859 -0.3352563 10.47523 1.210737 0.005648553 10.47523 1.285271 0.006769001 10.47149 -0.3612347 0.00608772 10.66582 0.6674315 0.00608772 10.66582 0.8517213 0.006783902 10.66349 -0.04407334 -0.2253353 10.66582 -0.00508213 0.00608772 10.66582 0.7595764 -2.723107 8.87696 -3.241123 -2.723107 8.80734 -3.011615 -2.723107 8.694282 -2.800099 -2.723107 7.438351 -2.279875 -2.723107 7.208843 -2.349496 -2.723107 6.997326 -2.462554 -2.723107 6.477102 -3.241124 -2.723107 6.997327 -4.497056 -2.723107 7.208843 -4.610112 -2.723107 8.145222 -4.610111 -2.723107 8.876961 -3.718483 -2.723107 8.467442 -3.818261 -2.723107 8.004431 -4.281274 -2.723107 7.843939 -4.329959 -2.723107 7.510125 -4.329959 -2.723107 7.349633 -4.281274 -2.723107 6.965681 -3.966173 -2.723107 6.837936 -3.323958 -2.723107 6.88662 -3.163465 -2.723107 6.965681 -3.015555 -2.723107 7.510125 -2.651769 -2.723107 7.677031 -2.63533 -2.723107 7.843938 -2.651769 -2.723107 8.00443 -2.700454 -2.723107 8.15234 -2.779514 -2.723107 8.388381 -3.015555 -2.723107 8.532566 -3.490864 -2.723107 8.516126 -3.323957 -2.418482 8.900468 -3.479804 -2.418482 8.87696 -3.241123 -2.418482 8.80734 -3.011615 -2.418482 8.694282 -2.800099 -2.418482 8.542133 -2.614704 -2.418482 8.356737 -2.462554 -2.418482 8.145221 -2.349496 -2.418482 7.915712 -2.279875 -2.418482 7.677031 -2.256367 -2.418482 7.438351 -2.279875 -2.418482 7.208843 -2.349496 -2.418482 6.997326 -2.462554 -2.418482 6.811931 -2.614704 -2.418482 6.65978 -2.800099 -2.418482 6.546723 -3.011615 -2.418482 6.477102 -3.241124 -2.418482 6.453594 -3.479805 -2.418482 6.477102 -3.718486 -2.418482 6.546723 -3.947993 -2.418482 6.659781 -4.15951 -2.418482 6.811932 -4.344905 -2.418483 6.997327 -4.497056 -2.418482 7.208843 -4.610112 -2.418483 7.438352 -4.679732 -2.418483 7.677032 -4.703241 -2.418483 7.915713 -4.679732 -2.418483 8.145222 -4.610111 -2.418483 8.356738 -4.497054 -2.418482 8.542133 -4.344904 -2.418482 8.694283 -4.159508 -2.418482 8.807341 -3.947991 -2.418482 8.876961 -3.718483 -2.807164 7.69467 -3.454572 -2.807164 7.693748 -3.445221 -2.807164 7.691021 -3.43623 -2.807164 7.686592 -3.427943 -2.807164 7.680631 -3.42068 -2.807164 7.673367 -3.414719 -2.807164 7.665081 -3.41029 -2.807164 7.65609 -3.407562 -2.807164 7.646739 -3.406641 -2.807164 7.637388 -3.407562 -2.807164 7.628397 -3.41029 -2.807164 7.62011 -3.414719 -2.807164 7.612846 -3.42068 -2.807164 7.606886 -3.427943 -2.807164 7.602457 -3.43623 -2.807164 7.599729 -3.445221 -2.807164 7.598808 -3.454572 -2.807164 7.599729 -3.463923 -2.807164 7.602457 -3.472914 -2.807164 7.606886 -3.481201 -2.807164 7.612846 -3.488464 -2.807164 7.62011 -3.494425 -2.807164 7.628397 -3.498854 -2.807164 7.637388 -3.501582 -2.807164 7.646739 -3.502503 -2.807164 7.65609 -3.501582 -2.807164 7.665081 -3.498854 -2.807164 7.673367 -3.494425 -2.807164 7.680631 -3.488464 -2.807164 7.686592 -3.481201 -2.807164 7.691021 -3.472914 -2.807164 7.693748 -3.463923 -0.01626253 7.700796 -3.454086 -0.01626253 7.699807 -3.444054 -0.01626253 7.696881 -3.434407 -0.01626253 7.692129 -3.425517 -0.01626253 7.685735 -3.417725 -0.01626253 7.677942 -3.411329 -0.01626253 7.669052 -3.406577 -0.01626253 7.659406 -3.403651 -0.01650065 7.649373 -3.402663 -0.01650065 7.639341 -3.403651 -0.01650065 7.629695 -3.406577 -0.01650065 7.620804 -3.411329 -0.01650065 7.613011 -3.417725 -0.01650065 7.606617 -3.425517 -0.01650065 7.601865 -3.434407 -0.01650065 7.598939 -3.444054 -0.01650065 7.597951 -3.454086 -0.01650065 7.598939 -3.464118 -0.01650065 7.601865 -3.473765 -0.01650065 7.606617 -3.482655 -0.01650065 7.613011 -3.490447 -0.01650065 7.620804 -3.496842 -0.01650065 7.629695 -3.501594 -0.01650065 7.639341 -3.50452 -0.01650065 7.649373 -3.505509 -0.01494002 7.659406 -3.50452 -0.01626253 7.669052 -3.501594 -0.01626253 7.677942 -3.496842 -0.01626253 7.685735 -3.490447 -0.01626253 7.692129 -3.482655 -0.01626253 7.696881 -3.473764 -0.01626253 7.699807 -3.464118 -1.481891 8.57553 -0.670629 -1.478589 8.57526 -0.6718574 -1.475414 8.57431 -0.6730824 -1.472488 8.572714 -0.6742566 -1.469923 8.570537 -0.6753347 -1.467818 8.567859 -0.6762755 -1.466254 8.564785 -0.677043 -1.465291 8.561433 -0.6776075 -1.464966 8.557931 -0.6779475 -1.465291 8.554414 -0.6780496 -1.466254 8.551017 -0.6779101 -1.467818 8.547872 -0.6775346 -1.469923 8.545098 -0.6769369 -1.472488 8.542801 -0.6761406 -1.475414 8.541071 -0.6751759 -1.478589 8.539975 -0.6740799 -1.481891 8.539553 -0.672895 -1.485193 8.539823 -0.6716666 -1.488368 8.540773 -0.6704416 -1.491294 8.542368 -0.6692677 -1.493859 8.544547 -0.6681893 -1.495963 8.547224 -0.6672485 -1.497527 8.550298 -0.666481 -1.498491 8.553649 -0.6659165 -1.498816 8.557152 -0.6655767 -1.498491 8.560668 -0.6654744 -1.497527 8.564065 -0.6656139 -1.495963 8.567212 -0.6659896 -1.493859 8.569986 -0.6665871 -1.491294 8.572281 -0.6673837 -1.488368 8.574011 -0.6683483 -1.485193 8.575108 -0.6694443 -2.173424 7.67391 -3.445515 -2.170122 7.67364 -3.446744 -2.166947 7.67269 -3.447969 -2.164021 7.671095 -3.449143 -2.161456 7.668918 -3.450221 -2.159351 7.66624 -3.451162 -2.157787 7.663166 -3.45193 -2.156824 7.659814 -3.452494 -2.156499 7.656312 -3.452834 -2.156824 7.652795 -3.452936 -2.157787 7.649398 -3.452797 -2.159351 7.646253 -3.452421 -2.161456 7.643478 -3.451823 -2.164021 7.641182 -3.451027 -2.166947 7.639452 -3.450062 -2.170122 7.638355 -3.448967 -2.173424 7.637934 -3.447781 -2.176726 7.638204 -3.446553 -2.179901 7.639153 -3.445328 -2.182827 7.640749 -3.444154 -2.185392 7.642927 -3.443076 -2.187497 7.645604 -3.442135 -2.189061 7.648679 -3.441368 -2.190024 7.65203 -3.440803 -2.190349 7.655533 -3.440463 -2.190024 7.659049 -3.440361 -2.189061 7.662446 -3.4405 -2.187497 7.665592 -3.440876 -2.185392 7.668366 -3.441474 -2.182827 7.670662 -3.44227 -2.179901 7.672392 -3.443235 -2.176726 7.673489 -3.444331 -1.481891 5.870671 -0.6706293 -1.478589 5.870401 -0.6718576 -1.475414 5.869451 -0.6730831 -1.472488 5.867856 -0.674257 -1.469923 5.865679 -0.6753352 -1.467818 5.863001 -0.676276 -1.466254 5.859927 -0.6770437 -1.465291 5.856575 -0.6776083 -1.464966 5.853073 -0.6779478 -1.465291 5.849556 -0.6780498 -1.466254 5.846159 -0.6779106 -1.467818 5.843014 -0.6775348 -1.469923 5.84024 -0.6769374 -1.472488 5.837943 -0.676141 -1.475414 5.836213 -0.6751764 -1.478589 5.835116 -0.6740806 -1.481891 5.834695 -0.6728952 -1.485193 5.834965 -0.6716669 -1.488368 5.835915 -0.6704424 -1.491294 5.83751 -0.6692684 -1.493859 5.839688 -0.6681898 -1.495964 5.842365 -0.667249 -1.497528 5.84544 -0.6664817 -1.498491 5.848791 -0.6659172 -1.498816 5.852294 -0.6655772 -1.498491 5.85581 -0.6654747 -1.497528 5.859207 -0.6656144 -1.495964 5.862353 -0.6659901 -1.493859 5.865128 -0.6665876 -1.491294 5.867423 -0.6673839 -1.488368 5.869153 -0.668349 -1.485193 5.87025 -0.6694448 -2.723107 8.516126 -3.657769 -2.723107 8.388382 -3.966172 -2.723107 8.281986 -4.095818 -2.723107 8.152341 -4.202214 -2.723107 7.677031 -4.346398 -2.723107 7.201722 -4.202215 -2.723107 7.072078 -4.095818 -2.723107 6.88662 -3.818263 -2.723107 6.837936 -3.657771 -2.723107 6.821497 -3.490864 -2.723107 7.072077 -2.88591 -2.723107 7.201722 -2.779514 -2.723107 7.349633 -2.700454 -2.723107 8.281986 -2.88591 -2.723107 8.467441 -3.163465 -2.723107 8.900468 -3.479804 -2.723107 8.542133 -2.614704 -2.723107 8.356737 -2.462554 -2.723107 8.145221 -2.349496 -2.723107 7.915712 -2.279875 -2.723107 7.677031 -2.256367 -2.723107 6.811931 -2.614704 -2.723107 6.65978 -2.800099 -2.723107 6.546723 -3.011615 -2.723107 6.453594 -3.479805 -2.723107 6.477102 -3.718486 -2.723107 6.546723 -3.947993 -2.723107 6.659781 -4.15951 -2.723107 6.811932 -4.344905 -2.723107 7.438352 -4.679732 -2.723107 7.677032 -4.703241 -2.723107 7.915713 -4.679732 -2.723107 8.356738 -4.497054 -2.723107 8.542133 -4.344904 -2.723107 8.694283 -4.159508 -2.723107 8.807341 -3.947991 -2.358147 7.750181 -3.439012 -2.358147 7.748004 -3.416904 -2.358147 7.741555 -3.395646 -2.358147 7.731083 -3.376054 -2.358147 7.71699 -3.358882 -2.358147 7.699819 -3.344789 -2.358147 7.680226 -3.334316 -2.358147 7.658968 -3.327868 -2.358147 7.63686 -3.32569 -2.358147 7.614752 -3.327868 -2.358147 7.593494 -3.334316 -2.358147 7.573902 -3.344789 -2.358147 7.556729 -3.358882 -2.358147 7.542637 -3.376054 -2.358147 7.532165 -3.395646 -2.358147 7.525716 -3.416904 -2.358147 7.523539 -3.439012 -2.358147 7.525716 -3.46112 -2.358147 7.532165 -3.482378 -2.358147 7.542637 -3.50197 -2.358147 7.55673 -3.519142 -2.358147 7.573902 -3.533235 -2.358147 7.593494 -3.543707 -2.358147 7.614753 -3.550156 -2.358147 7.63686 -3.552333 -2.358147 7.658968 -3.550156 -2.358147 7.680226 -3.543707 -2.358147 7.699819 -3.533235 -2.358147 7.71699 -3.519142 -2.358147 7.731083 -3.50197 -2.358147 7.741555 -3.482378 -2.358147 7.748004 -3.461119 -2.411445 8.514581 -3.645463 -2.411445 8.46626 -3.804756 -2.411445 8.387791 -3.951562 -2.411445 8.282189 -4.080239 -2.411445 8.153513 -4.185841 -2.411445 8.006708 -4.26431 -2.411445 7.847414 -4.312632 -2.411445 7.681754 -4.328948 -2.411445 7.516095 -4.312632 -2.411445 7.356801 -4.264311 -2.411445 7.209995 -4.185842 -2.411445 7.081319 -4.08024 -2.411445 6.975718 -3.951564 -2.411445 6.897247 -3.804758 -2.411445 6.848927 -3.645465 -2.411445 6.832611 -3.479806 -2.411445 6.848927 -3.314146 -2.411445 6.897247 -3.154853 -2.411445 6.975717 -3.008047 -2.411445 7.081319 -2.87937 -2.411445 7.209995 -2.773769 -2.411445 7.356801 -2.695299 -2.411445 7.516094 -2.646978 -2.411445 7.681753 -2.630662 -2.411445 7.847413 -2.646978 -2.411445 8.006707 -2.695299 -2.411445 8.153512 -2.773769 -2.411445 8.282189 -2.87937 -2.411445 8.38779 -3.008047 -2.411445 8.466259 -3.154852 -2.411445 8.51458 -3.314146 -2.411445 8.530897 -3.479805 -2.808414 7.636826 -3.406973 -2.808414 7.681227 -3.420441 -2.808414 7.691895 -3.474074 -2.808414 7.687347 -3.482582 -2.808414 7.665261 -3.500708 -2.808414 7.619086 -3.49616 -2.808414 7.605508 -3.482582 -2.808414 7.605508 -3.427899 -2.808414 7.636826 -3.503508 -2.808414 7.611629 -3.49004 -2.808414 7.597214 -3.45524 -2.808414 7.673769 -3.49616 -2.808414 7.681227 -3.49004 -2.808414 7.691895 -3.436407 -2.808414 7.687347 -3.427899 -2.808414 7.656029 -3.406973 -2.808414 7.627595 -3.409773 -2.808414 7.611629 -3.420441 -2.808414 7.600961 -3.436407 -2.808414 7.627595 -3.500708 -2.808414 7.646428 -3.504454 -2.808414 7.695641 -3.45524 -2.808414 7.694695 -3.445639 -2.808414 7.600961 -3.474074 -2.808414 7.656029 -3.503508 -2.808414 7.673769 -3.414321 -2.808414 7.646428 -3.406027 -2.808414 7.59816 -3.445639 -2.808414 7.59816 -3.464842 -2.808414 7.694695 -3.464842 -2.808414 7.665261 -3.409773 -2.808414 7.619086 -3.414321 -0.09845119 10.12659 5.056169 0.7921347 10.12659 4.968455 1.648496 10.12659 4.70868 2.437722 10.12659 4.28683 3.129486 10.12659 3.719115 3.697201 10.12659 3.027351 4.119052 10.12659 2.238125 4.378826 10.12659 1.381764 4.466541 10.12659 0.4911777 4.378826 10.12659 -0.3994075 4.119052 10.12659 -1.255768 3.697201 10.12659 -2.044996 3.129486 10.12659 -2.736759 2.437722 10.12659 -3.304475 1.648495 10.12659 -3.726326 0.7921337 10.12659 -3.986099 -0.09845262 10.12659 -4.073813 -0.9890389 10.12659 -3.986099 -1.8454 10.12659 -3.726324 -2.634627 10.12659 -3.304473 -3.32639 10.12659 -2.736757 -3.894105 10.12659 -2.044994 -4.315955 10.12659 -1.255766 -4.575729 10.12659 -0.3994042 -4.663444 10.12659 0.4911818 -4.575727 10.12659 1.381768 -4.315952 10.12659 2.23813 -3.894101 10.12659 3.027356 -3.326384 10.12659 3.719118 -2.63462 10.12659 4.286834 -1.845392 10.12659 4.708683 -0.98903 10.12659 4.968456 -0.1105111 10.00309 4.821404 0.7375653 10.00309 4.737875 1.553051 10.00309 4.4905 2.304606 10.00309 4.088786 2.96335 10.00309 3.548169 3.503968 10.00309 2.889424 3.905682 10.00308 2.137869 4.153057 10.00308 1.322383 4.236586 10.00308 0.4743077 4.153057 10.00308 -0.3737683 3.905682 10.00308 -1.189253 3.503968 10.00308 -1.940809 2.96335 10.00308 -2.599554 2.304606 10.00307 -3.140171 1.55305 10.00307 -3.541886 0.7375642 10.00307 -3.789261 -0.1105125 10.00307 -3.872788 -0.9585893 10.00307 -3.789261 -1.774075 10.00307 -3.541885 -2.52563 10.00307 -3.140169 -3.184374 10.00308 -2.599551 -3.724992 10.00308 -1.940807 -4.126706 10.00308 -1.189251 -4.37408 10.00308 -0.3737652 -4.457608 10.00308 0.4743115 -4.374078 10.00308 1.322388 -4.126702 10.00308 2.137873 -3.724987 10.00309 2.889429 -3.184369 10.00309 3.548172 -2.525624 10.00309 4.088789 -1.774067 10.00309 4.490503 -0.958581 10.00309 4.737877 -0.06686282 9.885383 4.661141 0.749948 9.885383 4.580691 1.535369 9.885383 4.342436 2.259217 9.885383 3.955532 2.893675 9.885383 3.434846 3.414362 9.885383 2.800387 3.801266 9.885383 2.076539 4.039522 9.885383 1.291118 4.11997 9.885383 0.4743077 4.039522 9.885383 -0.3425024 3.801266 9.885383 -1.127923 3.414362 9.885383 -1.851772 2.893675 9.885383 -2.48623 2.259217 9.885383 -3.006917 1.535368 9.885383 -3.393821 0.7499468 9.885383 -3.632076 -0.06686413 9.885383 -3.712525 -0.883675 9.885383 -3.632076 -1.669096 9.885383 -3.393821 -2.392944 9.885383 -3.006915 -3.027402 9.885383 -2.486228 -3.548089 9.885383 -1.85177 -3.934993 9.885383 -1.127921 -4.173248 9.885383 -0.3424995 -4.253696 9.885383 0.4743114 -4.173246 9.885383 1.291122 -3.93499 9.885383 2.076543 -3.548084 9.885383 2.800391 -3.027397 9.885383 3.434849 -2.392938 9.885383 3.955535 -1.669088 9.885383 4.342439 -0.883667 9.885383 4.580693 -0.1126733 10.00147 4.13084 0.6058446 10.00147 4.060072 1.296751 10.00147 3.850488 1.933493 10.00147 3.510142 2.491602 10.00147 3.052114 2.94963 10.00147 2.494005 3.289976 10.00147 1.857262 3.49956 10.00147 1.166357 3.570328 10.00147 0.4478383 3.49956 10.00147 -0.2706791 3.289976 10.00147 -0.9615848 2.94963 10.00147 -1.598328 2.491602 10.00147 -2.156437 1.933492 10.00147 -2.614466 1.29675 10.00147 -2.954812 0.6058439 10.00147 -3.164396 -0.1126746 10.00147 -3.235163 -0.8311929 10.00147 -3.164395 -1.522099 10.00147 -2.95481 -2.158841 10.00147 -2.614464 -2.71695 10.00147 -2.156435 -3.174979 10.00147 -1.598325 -3.515325 10.00147 -0.9615829 -3.724908 10.00147 -0.2706765 -3.795675 10.00147 0.4478417 -3.724906 10.00147 1.16636 -3.515321 10.00147 1.857266 -3.174975 10.00147 2.494009 -2.716946 10.00147 3.052117 -2.158835 10.00147 3.510145 -1.522092 10.00147 3.85049 -0.8311859 10.00147 4.060074 1.708834 10.00131 3.134961 2.906143 10.00131 -0.8120363 2.201452 10.00131 -1.86668 1.146809 10.00131 -2.57137 0.5369766 10.00131 -2.756361 -0.09722816 10.00131 -2.818825 -1.90329 10.00131 -2.270961 -2.80019 10.00131 -1.37406 -3.348051 10.00131 0.4320024 -1.903284 10.00131 3.134964 -1.341259 10.00131 3.435372 -0.7314266 10.00131 3.620361 -0.09680771 10.09659 3.172986 0.4259529 10.09659 3.121498 0.9286244 10.09659 2.969014 1.391889 10.09659 2.721394 1.797943 10.09659 2.388154 2.131184 10.09659 1.982099 2.378804 10.09659 1.518834 2.531287 10.09659 1.016163 2.582775 10.09659 0.493402 2.531287 10.09659 -0.02935826 2.378804 10.09659 -0.5320296 2.131184 10.09659 -0.9952946 1.797943 10.09659 -1.401349 1.391888 10.09659 -1.73459 0.9286239 10.09659 -1.98221 0.4259524 10.09659 -2.134694 -0.09680867 10.09659 -2.186181 -0.6195695 10.09659 -2.134693 -1.122241 10.09659 -1.982209 -1.585506 10.09659 -1.734589 -1.99156 10.09659 -1.401348 -2.324801 10.09659 -0.9952932 -2.572421 10.09659 -0.5320282 -2.724904 10.09659 -0.02935636 -2.776391 10.09659 0.4934044 -2.724903 10.09659 1.016165 -2.572418 10.09659 1.518837 -2.324798 10.09659 1.982101 -1.991557 10.09659 2.388155 -1.585501 10.09659 2.721396 -1.122236 10.09659 2.969016 -0.6195645 10.09659 3.121499 0.007880032 -9.543302 3.413522 0.007880032 -9.866368 -0.1747962 0.007880032 -10.5486 3.389759 0.007880032 -9.524352 -0.2444324 0.007880032 -11.31656 1.126341 0.007880032 -6.73979 1.476333 0.007880032 -8.601373 3.168341 0.007879078 -6.887365 2.115145 0.007880032 -10.91408 3.23349 0.007880032 -10.22282 -0.06184363 0.007880032 -10.11092 3.488273 0.007880032 -7.558372 2.80765 0.007879078 -7.186737 2.549278 0.007880032 -11.47087 1.600262 0.007880032 -10.57928 0.1521799 0.007880032 -11.54848 2.374839 0.007880032 -11.11893 0.753492 0.007880032 -10.87798 0.4383973 0.007880032 -11.41402 2.675495 0.007880032 -9.499986 1.100926 0.007880032 -11.17849 3.019467 0.007880032 -11.53855 2.045305 0.009413421 7.589376 1.967214 -0.9191966 7.11431 1.967214 0.009413421 7.228652 2.662206 -0.9191966 6.753585 2.486932 -0.09845119 10.19368 5.056169 0.7921347 10.19368 4.968455 1.648496 10.19368 4.70868 2.437722 10.19368 4.28683 3.129486 10.19368 3.719115 3.697201 10.19368 3.027351 4.119052 10.19368 2.238125 4.378826 10.19368 1.381764 4.466541 10.19368 0.4911777 4.378826 10.19368 -0.3994075 4.119052 10.19368 -1.255768 3.697201 10.19368 -2.044996 3.129486 10.19368 -2.736759 2.437722 10.19368 -3.304475 1.648495 10.19368 -3.726326 0.7921337 10.19368 -3.986099 -0.09845262 10.19368 -4.073813 -0.9890389 10.19368 -3.986099 -1.8454 10.19368 -3.726324 -2.634627 10.19368 -3.304473 -3.32639 10.19368 -2.736757 -3.894105 10.19368 -2.044994 -4.315955 10.19368 -1.255766 -4.575729 10.19368 -0.3994042 -4.663444 10.19368 0.4911818 -4.575727 10.19368 1.381768 -4.315952 10.19368 2.23813 -3.894101 10.19368 3.027356 -3.326384 10.19368 3.719118 -2.63462 10.19368 4.286834 -1.845392 10.19368 4.708683 -0.98903 10.19368 4.968456 -0.04995918 10.13115 3.172986 0.4728014 10.13115 3.121498 0.9754729 10.13115 2.969014 1.438737 10.13115 2.721394 1.844792 10.13115 2.388154 2.178032 10.13115 1.982099 2.425652 10.13115 1.518834 2.578136 10.13115 1.016163 2.629624 10.13115 0.493402 2.578136 10.13115 -0.02935826 2.425652 10.13115 -0.5320296 2.178032 10.13115 -0.9952946 1.844792 10.13115 -1.401349 1.438737 10.13115 -1.73459 0.9754725 10.13115 -1.98221 0.4728009 10.13115 -2.134694 -0.04996013 10.13115 -2.186181 -0.572721 10.13115 -2.134693 -1.075392 10.13115 -1.982209 -1.538657 10.13115 -1.734589 -1.944712 10.13115 -1.401348 -2.277952 10.13115 -0.9952932 -2.525572 10.13115 -0.5320282 -2.678055 10.13115 -0.02935636 -2.729542 10.13115 0.4934044 -2.678054 10.13115 1.016165 -2.52557 10.13115 1.518837 -2.277949 10.13115 1.982101 -1.944708 10.13115 2.388155 -1.538653 10.13115 2.721396 -1.075388 10.13115 2.969016 -0.572716 10.13115 3.121499 -0.09722703 10.00131 3.682824 0.5369772 10.00131 3.62036 1.14681 10.00131 3.435369 2.201452 10.00131 2.73068 2.605734 10.00131 2.238061 2.906143 10.00131 1.676036 3.091133 10.00131 1.066204 3.153598 10.00131 0.4319996 3.091133 10.00131 -0.2022042 2.605734 10.00131 -1.374061 1.708834 10.00131 -2.270962 -0.7314327 10.00131 -2.756361 -1.341265 10.00131 -2.571369 -2.395908 10.00131 -1.866678 -3.100598 10.00131 -0.8120346 -3.285588 10.00131 -0.2022018 -3.285587 10.00131 1.066207 -3.100595 10.00131 1.67604 -2.800186 10.00131 2.238064 -2.395904 10.00131 2.730682 -0.0413087 10.04809 3.668967 0.5928955 10.04809 3.606503 1.202728 10.04809 3.421512 1.764753 10.04809 3.121104 2.257371 10.04809 2.716823 2.661652 10.04809 2.224204 2.962061 10.04809 1.662179 3.147051 10.04809 1.052347 3.209516 10.04809 0.4181426 3.147051 10.04809 -0.2160612 2.962061 10.04809 -0.8258932 2.661652 10.04809 -1.387918 2.257371 10.04809 -1.880537 1.764752 10.04809 -2.284819 1.202727 10.04809 -2.585227 0.5928949 10.04809 -2.770218 -0.04130983 10.04809 -2.832681 -0.6755144 10.04809 -2.770218 -1.285347 10.04809 -2.585226 -1.847371 10.04809 -2.284818 -2.33999 10.04809 -1.880535 -2.744272 10.04809 -1.387917 -3.04468 10.04809 -0.8258916 -3.22967 10.04809 -0.2160588 -3.292133 10.04809 0.4181455 -3.229669 10.04809 1.05235 -3.044677 10.04809 1.662183 -2.744268 10.04809 2.224207 -2.339986 10.04809 2.716825 -1.847366 10.04809 3.121107 -1.285341 10.04809 3.421515 -0.6755083 10.04809 3.606504 -0.08017927 10.03097 4.116983 0.6383387 10.03097 4.046215 1.329245 10.03097 3.836631 1.965987 10.03097 3.496285 2.524096 10.03097 3.038257 2.982124 10.03097 2.480148 3.32247 10.03097 1.843405 3.532054 10.03097 1.1525 3.602823 10.03097 0.4339814 3.532054 10.03097 -0.2845361 3.32247 10.03097 -0.9754418 2.982124 10.03097 -1.612185 2.524096 10.03097 -2.170294 1.965986 10.03097 -2.628323 1.329244 10.03097 -2.968669 0.638338 10.03097 -3.178252 -0.08018058 10.03097 -3.24902 -0.7986988 10.03097 -3.178252 -1.489604 10.03097 -2.968667 -2.126347 10.03097 -2.628321 -2.684456 10.03097 -2.170292 -3.142485 10.03097 -1.612182 -3.482831 10.03097 -0.9754399 -3.692414 10.03097 -0.2845335 -3.763181 10.03097 0.4339847 -3.692412 10.03097 1.152503 -3.482827 10.03097 1.843409 -3.142481 10.03097 2.480152 -2.684452 10.03097 3.03826 -2.126341 10.03097 3.496288 -1.489598 10.03097 3.836633 -0.7986919 10.03097 4.046217 -0.04608088 9.906245 4.647284 0.77073 9.906245 4.566834 1.556151 9.906245 4.328579 2.279999 9.906245 3.941675 2.914457 9.906245 3.420989 3.435144 9.906245 2.78653 3.822048 9.906245 2.062682 4.060304 9.906245 1.277261 4.140752 9.906245 0.4604507 4.060304 9.906245 -0.3563593 3.822048 9.906245 -1.14178 3.435144 9.906245 -1.865629 2.914457 9.906245 -2.500087 2.279999 9.906245 -3.020774 1.55615 9.906245 -3.407678 0.7707288 9.906245 -3.645933 -0.04608219 9.906245 -3.726382 -0.8628931 9.906245 -3.645933 -1.648314 9.906245 -3.407678 -2.372162 9.906245 -3.020772 -3.00662 9.906245 -2.500085 -3.527307 9.906245 -1.865627 -3.914211 9.906245 -1.141778 -4.152466 9.906245 -0.3563565 -4.232914 9.906245 0.4604544 -4.152464 9.906245 1.277265 -3.914208 9.906245 2.062686 -3.527302 9.906245 2.786534 -3.006615 9.906245 3.420992 -2.372156 9.906245 3.941678 -1.648306 9.906245 4.328582 -0.8628851 9.906245 4.566836 -1.93773 5.852405 1.772196 -1.920265 5.031543 1.735688 -1.089886 4.594916 1.931322 -1.054956 6.358893 1.918703 -0.5135374 4.315474 2.240869 -0.4087467 6.673264 2.181837 -1.037277 7.108005 1.816975 -1.242944 4.786238 1.816975 -1.928141 5.401682 1.754237 -7.65253e-4 4.245615 2.355413 -7.65253e-4 6.725661 2.269217 -0.729655 6.517147 2.117102 -0.729655 4.420259 2.189981 -1.057591 6.132842 1.731171 -0.4113818 6.447214 1.994305 -1.204316 5.947842 1.629443 -0.003400266 6.49961 2.081685 -0.73229 6.291096 1.92957 -1.089886 4.786771 0.5185715 -0.5135374 4.507329 0.4495849 -1.037277 7.29986 0.4042239 -1.242944 4.978093 0.4042239 -7.65253e-4 4.437469 0.4897735 -0.729655 4.612114 0.4527725 -0.002946376 7.250426 2.675138 -0.002946376 7.61115 1.980146 -0.9315564 7.136084 1.980146 -0.9315564 6.77536 2.499864 -0.729655 4.612114 0.4527725 -7.65253e-4 4.437469 0.4897735 -0.5135374 4.507329 0.4495849 -1.089886 4.786771 0.5185715 -0.7299695 7.356295 0.5270099 -0.001079678 7.45803 0.5640108 -0.5138519 7.414651 0.5238222 -1.090201 7.259502 0.5928089 -0.7291337 7.253229 1.979068 0 7.354963 2.134173 -0.5130161 7.311585 2.011758 -1.089365 7.156435 1.422992 + + + + + + + + + + 0.9200694 0.005471765 0.3917173 0.5984278 0 -0.8011767 0.2795533 0 -0.9601303 0.213591 0 0.9769232 0.5844831 0 0.811406 0.006335735 0.05782818 -0.9983065 0.8730421 0 0.4876449 0.8460305 0 0.5331347 0.2007629 -0.0892288 -0.9755678 0.9795257 -0.1243584 0.1583178 0.8271498 0 -0.5619816 0 0 1 0.5196515 0.03415191 -0.8536955 0.9530487 0 -0.3028174 0.213073 -0.06964987 0.9745506 0.955879 -0.1181889 -0.2689363 0.9871889 0 0.1595563 0.2134663 0.03395318 0.9763603 0 1 0 0.5785496 0.01447963 0.8155187 0.8507288 0.03643935 -0.5243403 0.6156937 0.003661632 0.7879771 0.9624695 0.03405684 -0.2692445 0.9955056 0.02368158 0.09169447 0 -1 -6.8421e-6 -0.0545842 -0.1486664 -0.9873799 0.9763343 -0.2154244 0.01906776 0.7646257 -0.1378526 -0.6295588 0.9760468 -0.2173247 -0.01014029 0.9913639 -0.1172243 -0.05879032 0.8679393 -0.107961 0.4847946 0.58256 -0.08105778 0.8087358 0.6378208 -0.09508073 -0.7642933 0.7673161 -0.1099427 -0.6317742 0.8427665 -0.08775854 0.5310775 0 -1 3.06461e-6 0 -1 -6.22154e-7 0 -1 2.96904e-6 0 -1 3.15343e-6 0 -1 0 0 -1 -3.00676e-6 0.6333987 -0.1507724 -0.7589953 0.1408709 -0.1386438 0.9802721 0.9438027 -0.1967886 -0.2655385 0.9822906 -0.1871216 -0.009525954 0.006281077 0.006263613 0.9999607 -1.02607e-6 -0.6559123 0.754837 1.378e-6 -0.04226988 -0.9991062 -1.38771e-6 -0.09288376 0.9956769 1.36466e-6 -0.0834552 -0.9965115 6.64288e-7 -0.8699308 -0.493174 1.38781e-6 0.07017731 -0.9975346 -1.34549e-6 -0.03981405 0.9992071 1.35448e-6 -0.1049727 -0.9944752 1.3401e-6 -0.05044901 -0.9987267 -1.32612e-6 -0.1499255 0.9886973 -1.66632e-7 0.9925364 0.1219497 1.37696e-6 0.02935576 -0.9995691 -1.3532e-6 -0.05005431 0.9987466 -1.36874e-6 0.1928691 0.9812246 1.36204e-6 -0.01648807 -0.9998642 -1.36669e-6 -0.0611068 0.9981312 -1.36563e-6 0.0541206 0.9985345 1.37062e-6 0.03578186 -0.9993597 -1.36294e-6 0.006263732 0.9999804 -1.09911e-6 0.5995208 0.8003593 1.28634e-6 0.3216837 -0.9468473 1.37651e-6 0.02840113 -0.9995967 -1.36166e-6 -0.04379773 0.9990404 9.27756e-7 0.7376363 -0.6751982 -0.01474398 -0.1049616 -0.9943671 0.08237034 0.5974851 0.7976382 0.04685515 0.32133 -0.9458075 0.003809809 0.02840095 -0.9995894 0.00143671 -0.04379767 0.9990395 0.1021348 0.7337883 -0.6716572 -0.01040202 -0.6558769 0.7547963 -0.002108573 -0.0422697 -0.9991041 -9.83132e-4 -0.09288364 0.9956765 -0.006786823 -0.08345234 -0.9964888 -0.009728908 -0.8698894 -0.493151 0.005680978 0.07017618 -0.9975185 0.001835882 -0.03981399 0.9992055 -0.009598731 -0.1049678 -0.9944293 -0.002996563 -0.05044901 -0.9987222 -0.002575278 -0.149925 0.988694 0.1353846 0.9833986 0.120823 0.003868401 0.02935546 -0.9995616 9.90321e-4 -0.05005437 0.998746 0.02900713 0.1927876 0.9808117 3.06248e-4 -0.01648807 -0.9998641 4.22895e-4 -0.06110686 0.9981312 0.01149618 0.05411702 0.9984685 0.004754781 0.0357815 -0.9993484 0.1902938 0.5885643 0.7857356 -0.004811465 -0.05044829 -0.9987152 -0.005377352 -0.1499236 0.9886831 0.1998896 0.9725071 0.1194751 0.005787909 0.02935534 -0.9995523 8.11092e-4 -0.05005419 0.9987462 0.04307788 0.1926901 0.9803137 2.36379e-4 -0.01648825 -0.9998641 -1.17234e-4 -0.06110686 0.9981313 0.01682102 0.05411291 0.9983932 0.007111549 0.03578096 -0.9993343 0.008919239 0.006263434 0.9999406 0.1224595 0.5950059 0.7943372 0.06963741 0.3209015 -0.9445491 0.005694746 0.02840071 -0.9995805 0.001513123 -0.04379773 0.9990394 0.1514235 0.7291335 -0.6674094 -0.02231079 -0.6557508 0.7546479 -0.003465652 -0.04226946 -0.9991003 -0.002468764 -0.0928834 0.995674 -0.01053386 -0.08344972 -0.9964564 -0.02386647 -0.8696823 -0.4930347 0.008817553 0.07017451 -0.9974958 0.002121269 -0.03981393 0.9992049 -0.008274137 -0.05044746 -0.9986925 0.1099708 0.3197319 -0.9411047 0.008905172 0.02839994 -0.9995571 0.005239725 -0.04379707 0.9990267 0.2343159 0.7171006 -0.6564015 -0.004409909 -0.655907 0.7548289 -0.004020571 -0.0422697 -0.9990981 6.49523e-4 -0.09288394 0.9956768 -0.01474159 -0.08344608 -0.9964033 0.004700303 -0.8699204 -0.49317 0.01232135 0.07017177 -0.9974588 0.006137907 -0.03981328 0.9991884 -0.02129405 -0.1049489 -0.9942496 -0.006042957 -0.05044811 -0.9987084 -0.00151807 -0.1499253 0.9886962 0.305128 0.9452034 0.1161351 0.009023308 0.02935451 -0.9995284 0.004296541 -0.05005407 0.9987373 0.06850588 0.1924167 0.9789192 0.001358747 -0.01648789 -0.9998632 0.003203988 -0.06110644 0.9981262 0.02796345 0.05409932 0.998144 0.01110273 0.03577965 -0.999298 0.01608532 0.006263017 0.9998511 0.3808881 0.5543265 0.7400314 0.002618432 -0.1499249 0.988694 0.4445404 0.8890743 0.1092281 0.01392704 0.02935284 -0.9994721 0.006070196 -0.0550875 0.9984631 0.106427 0.1917734 0.9756518 0.002812743 -0.01648807 -0.9998601 0.007393777 -0.06110513 0.998104 0.04439824 0.05406707 0.9975498 0.01714766 0.03577661 -0.9992127 0.02639919 0.006261706 0.9996319 0.2875742 0.5741927 0.7665533 0.1695957 0.3170213 -0.9331318 0.01376408 0.02839845 -0.999502 0.0101698 -0.04379558 0.9989888 0.3499972 0.6909874 -0.6324859 0.015145 -0.6558376 0.7547501 -0.00520718 -0.04226917 -0.9990927 0.004253506 -0.09288287 0.9956681 -0.02153599 -0.08343559 -0.9962804 0.03752052 -0.8693168 -0.492829 0.0179879 0.07016605 -0.9973732 0.01151925 -0.03981155 0.9991409 -0.03163915 -0.1049203 -0.9939772 0.07199895 -0.1495368 0.9861313 0.2334318 0.3127938 -0.9206898 0.01871657 0.02839595 -0.9994215 0.025545 -0.04378378 0.9987145 0.4572198 0.6560128 -0.6004976 0.1434412 -0.6491292 0.7470315 -0.001376986 -0.04227 -0.9991053 0.02417272 -0.09285682 0.9953861 -0.02223032 -0.08343559 -0.9962652 0.2171803 -0.8491625 -0.4814102 0.01848089 0.07016509 -0.9973642 0.03623622 -0.0158587 0.9992174 -0.03584742 -0.1049049 -0.9938361 -0.005212962 -0.05044835 -0.9987131 0.03165161 -0.1498506 0.9882019 0.5626293 0.82054 0.100809 0.01882576 0.02935069 -0.999392 0.04348611 -0.05000716 0.9978018 0.1489394 0.1907181 0.9702802 0.007858693 -0.01648747 -0.9998333 0.02386587 -0.06108921 0.997847 0.0670849 0.05399882 0.996285 0.0232445 0.03577238 -0.9990897 0.04459428 0.006257355 0.9989857 0.3604762 0.3000557 -0.8831894 0.6582928 0.7471469 0.09177196 0.02388375 0.02934747 -0.9992839 0.04498666 -0.05000412 0.9977353 0.1940797 0.1892019 0.9625673 0.01458483 -0.01648622 -0.9997577 0.04603111 -0.06104266 0.9970732 0.09304618 0.05388516 0.9942027 0.02956283 0.03576594 -0.998923 0.06665986 0.006249487 0.9977563 0.46797 0.5298227 0.7073134 0.2987475 0.3069969 -0.9036055 0.02387011 0.02839285 -0.9993119 0.04580503 -0.04375165 0.9979919 0.5523293 0.614914 -0.5628617 0.3095412 -0.6236966 0.7177652 0.004695832 -0.04226964 -0.9990952 0.05158138 -0.09276068 0.9943515 -0.02037048 -0.08343839 -0.9963048 0.4310553 -0.784955 -0.4450135 0.01680755 0.07016718 -0.9973937 0.0476191 -0.03976833 0.9980737 -0.03760856 -0.1048992 -0.9937716 1.83303e-4 -0.05044955 -0.9987267 0.1896542 -0.1472048 0.9707533 0.02913147 0.02838861 -0.9991725 0.06430768 -0.04370737 0.9969726 0.6308569 0.572331 -0.5238863 0.437982 -0.5896528 0.6785878 0.009855449 -0.04226762 -0.9990577 0.07611697 -0.09261459 0.9927884 -0.01976627 -0.08344095 -0.9963167 0.5772843 -0.7103332 -0.402703 0.01619267 0.07016795 -0.9974039 0.06635785 -0.03972631 0.9970048 -0.04071718 -0.1048854 -0.9936504 0.004588246 -0.05044877 -0.9987162 0.1077911 -0.1490519 0.9829368 0.7310764 0.677204 0.08319932 0.02906745 0.02934342 -0.9991468 0.06376081 -0.04995286 0.9967142 0.2380918 0.1873231 0.9530071 0.02071541 -0.01648467 -0.9996496 0.06608659 -0.06097322 0.9959492 0.1181457 0.05374109 0.991541 0.03602468 0.03575873 -0.9987109 0.08751451 0.006239712 0.9961438 0.5443635 0.5029038 0.6713839 0.04011523 0.02837759 -0.9987921 0.8038542 0.5903885 0.07252502 0.03610777 0.02933669 -0.9989173 0.1046204 -0.04978001 0.9932656 0.3020839 0.183859 0.9353829 0.03415125 -0.0164783 -0.9992808 0.1104464 -0.06073313 0.9920248 0.1605886 0.05341768 0.985575 0.04488223 0.03574591 -0.9983526 0.1266983 0.006213366 0.9919219 0.6335435 0.4638544 0.6192429 0.4440621 0.288228 -0.848371 0.03641694 0.02838259 -0.9989336 0.1040269 -0.04355889 0.9936202 0.7171288 0.5140901 -0.4705716 0.6537573 -0.4963327 0.5711876 0.02400434 -0.04225808 -0.9988183 0.1319783 -0.09206998 0.9869676 -0.01025569 -0.08345013 -0.9964593 0.7772332 -0.5473681 -0.3103173 0.007992625 0.07017564 -0.9975026 0.1061264 -0.03958898 0.9935643 -0.03622543 -0.1049053 -0.9938223 0.01810824 -0.05044084 -0.9985629 1 1.49336e-5 0 0.1402702 -0.04336589 0.9891632 0.7537941 0.4847038 -0.4436854 0.7765002 -0.4133036 0.4756338 0.0392909 -0.0422374 -0.9983348 0.1849297 -0.09128218 0.9785033 0.004619956 -0.08344995 -0.9965013 0.8679497 -0.4320527 -0.2449366 -0.004688262 0.07017564 -0.9975237 0.1420767 -0.03940898 0.9890709 -0.02373975 -0.1049432 -0.9941949 0.03355973 -0.05042058 -0.9981641 0.2662332 -0.1445159 0.9530137 0.8323312 0.5501437 0.06757795 0.03952217 0.0293321 -0.9987881 0.1422928 -0.04954344 0.9885839 0.3391523 0.1814337 0.9230696 0.04669702 -0.01647037 -0.9987733 0.1518143 -0.06040102 0.9865618 0.1909963 0.05312401 0.9801522 0.04927116 0.0357384 -0.9981458 0.1583728 0.006183743 0.9873601 0.6731427 0.4433517 0.5918769 0.4883395 0.2807241 -0.8262678 1.28527e-6 0.02840113 -0.9995967 -1.33283e-6 -0.04379767 0.9990405 9.3243e-7 0.7376341 -0.6752008 -9.65848e-7 -0.6559124 0.754837 1.31314e-6 -0.04226994 -0.9991062 -1.19015e-6 -0.09288376 0.995677 1.20695e-6 -0.08345466 -0.9965116 6.83659e-7 -0.8699299 -0.4931756 1.39481e-6 0.07017725 -0.9975346 -1.38153e-6 -0.03981453 0.9992071 1.15311e-6 -0.1049727 -0.9944752 1.27339e-6 -0.05044913 -0.9987267 -1.19023e-6 -0.1499255 0.9886974 -1.51454e-7 0.9925366 0.1219476 1.32854e-6 0.02935576 -0.9995691 -1.12102e-6 -0.05005091 0.9987468 -1.28393e-6 0.1928689 0.9812246 1.25157e-6 -0.01648807 -0.9998641 -1.35245e-6 -0.06110662 0.9981313 -1.37251e-6 0.0541206 0.9985345 1.43938e-6 0.03578191 -0.9993596 -1.33408e-6 0.006263732 0.9999805 -1.14029e-6 0.5995219 0.8003584 1.28708e-6 0.3216835 -0.9468473 0 0 -1 0 0 1 0.9127544 0.4085088 0 0.5719133 -0.8203142 0 0.1534351 0.9881588 0 0.780646 0.6249735 0 -0.003878116 0.9999926 0 0.796756 -0.6043013 0 -0.8563386 -0.5164148 0 0.9633563 0.2682249 0 -0.5461241 -0.8377043 0 0.1934601 -0.9811082 0 -0.9992485 0.03876364 0 0.6478812 0.7617415 0 0.9861934 -0.1655979 0 -0.06463515 -0.9979091 0 -0.009359419 0.9961145 -0.08756965 0.9578804 -0.2871675 0 -0.0100038 0.99995 0 0.9414281 0.2106078 -0.2633585 0.5079108 0.2139852 -0.8344083 1 0 0 0.2092442 0.2007468 0.9570359 0.9003186 0.2061562 0.3833093 0.8316809 0.2134223 -0.5125993 0.9744727 0.205783 0.0897572 0.488642 0.2055885 0.8479165 0.707821 0.2082288 0.675004 0.004868626 0.1926918 -0.9812473 0.9138768 0.3153915 -0.2556508 0.2037175 0.3005381 0.9317597 0.687771 0.3110989 0.6558876 0.4924061 0.3211867 -0.8089348 0.947341 0.308109 0.08725905 0.1545481 0.3089293 -0.9384443 0.8066042 0.3197488 -0.4971424 0.4751428 0.3073264 0.8244937 0.8752509 0.3083503 0.3726341 0.4079325 0.5766414 0.7078671 0.6849219 0.5938672 -0.422142 0.1757085 0.5685662 0.8036535 0.1288918 0.5831843 -0.8020493 0.8139401 0.5760912 0.07497048 0.4167062 0.5980919 -0.6845744 0.5890644 0.5808879 0.5617585 0.7797036 0.5869299 -0.2181187 0.7518651 0.5763965 0.3201032 0.3960304 0.6479762 -0.650605 0.1220117 0.6334691 -0.7640878 0.6515643 0.643576 -0.4015893 0.3891268 0.6266071 0.6752362 0.7173838 0.6261608 0.3054232 0.7766512 0.6258559 0.07153671 0.7426473 0.6366436 -0.2077497 0.1677904 0.6187741 0.7674406 0.561603 0.6306893 0.5355681 0.3493382 0.7144896 0.6061909 0.5819822 0.7298151 -0.3587015 0.1509176 0.7076417 0.690266 0.1076886 0.7214376 -0.6840548 0.697951 0.7132545 0.06428521 0.3529597 0.7342994 -0.5798482 0.5037408 0.7179655 0.480386 0.6650077 0.7232957 -0.1860328 0.6445873 0.7135786 0.2744318 0.5401372 0.8095478 0.2299659 0.5547862 0.8173896 -0.1551989 0.127374 0.8027298 0.5825812 0.4219505 0.8124296 0.402388 0.2939124 0.8249124 -0.4828408 0.08838522 0.8136236 -0.5746344 0.5845776 0.8095492 0.0538454 0.4845453 0.8222099 -0.2986416 0.2934731 0.8090401 0.5092422 0.06530964 0.8945981 -0.4420734 0.4534531 0.890301 0.04176735 0.2250624 0.9014644 -0.3697418 0.3260406 0.8927615 0.3109254 0.4283729 0.8956208 -0.1198342 0.4187288 0.8904418 0.1782684 0.2266945 0.8909913 0.3933752 0.3727588 0.8990374 -0.2297452 0.09844368 0.8874558 0.4502566 0 0.7730159 -0.6343867 0 -0.9951847 0.09801745 0 0.881922 0.4713957 0 0.8819223 -0.471395 0 -0.9951847 -0.09801745 0 0.7730104 0.6343935 0 0.9569417 -0.2902801 0 -0.9569396 -0.290287 0 0.6343914 0.7730122 0 0.9951846 -0.09801828 0 -0.8819196 -0.4714 0 0.4713984 0.8819205 0 -0.7730107 -0.634393 0 0.2902861 0.95694 0 -0.6343948 -0.7730093 0 0.09801805 0.9951847 0 -0.4713914 -0.8819241 0 -0.09801805 0.9951847 0 -0.2902832 -0.9569408 0 -0.2902843 0.9569405 0 -0.09802114 -0.9951844 0 -0.4713929 0.8819234 0 0.09802114 -0.9951844 0 -0.6343914 0.7730122 0 0.2902883 -0.9569392 0 -0.7730104 0.6343935 0 0.4713971 -0.8819212 0 -0.8819209 0.4713975 0 0.9951847 0.09801763 0 0.6343906 -0.7730127 0 -0.9569417 0.2902806 0 0.9569399 0.2902861 6.46614e-4 -0.4713608 -0.8819403 0.001325905 -0.09804087 0.9951816 8.04442e-4 -0.290331 -0.9569261 0.001137733 -0.290226 0.9569575 9.79404e-4 -0.09805768 -0.9951803 9.53997e-4 -0.4713871 0.881926 0.001163601 0.09821951 -0.9951642 7.8099e-4 -0.6344057 0.773 0.001352131 0.2902951 -0.9569363 6.25988e-4 -0.7730746 0.6343149 0.001536548 0.4713916 -0.8819227 4.94991e-4 -0.8819343 0.4713722 0.002201259 0.9951678 0.09816467 0.001709461 0.6343849 -0.7730154 3.9224e-4 -0.9569116 0.2903791 0.002198934 0.9569163 0.2903558 0.001864194 0.7730613 -0.6343288 3.22809e-4 -0.9951953 0.09791028 0.002159535 0.8819491 0.4713399 0.001995444 0.8819055 -0.471422 2.88441e-4 -0.995181 -0.09805434 0.002085149 0.7729569 0.6344552 0.002097725 0.9569709 -0.2901764 2.91529e-4 -0.9569701 -0.2901866 0.001978695 0.6343657 0.7730307 0.002167403 0.9951674 -0.09816926 3.30652e-4 -0.8818801 -0.4714739 0.001843988 0.4714783 0.8818758 4.05095e-4 -0.773036 -0.6343621 0.001685798 0.2902485 0.9569499 5.1167e-4 -0.6343534 -0.7730431 0.001511096 0.09805506 0.9951799 0.88929 0.451121 0.07518678 -0.5371212 -0.832369 0.1366112 0.03412997 0.9529845 -0.3010908 0.7964324 0.6047242 0.002028644 -0.3805549 -0.9031742 0.1986312 -0.1473078 0.929305 -0.3386632 0.6771336 0.7325953 -0.06924164 -0.2116632 -0.9437611 0.2539958 -0.3286232 0.8711289 -0.3648855 0.5371407 0.8323603 -0.1365887 -0.03413313 -0.9530051 0.3010254 -0.5017472 0.7781369 -0.3778262 0.3805184 0.9031798 -0.1986761 0.1474062 -0.929267 0.3387245 -0.6598055 0.6507144 -0.3758023 0.2115883 0.9438046 -0.2538965 0.3285916 -0.8711282 0.3649157 -0.7930532 0.4929807 -0.3578222 0.5018472 -0.7780247 0.3779246 -0.8935009 0.3113026 -0.3236463 0.6596834 -0.6508156 0.3758419 -0.954425 0.1153346 -0.2752651 0.7931687 -0.4928389 0.3577617 -0.9729487 -0.08373606 -0.2153117 0.893446 -0.3112485 0.3238496 -0.9500265 -0.2752587 -0.1472495 0.9544225 -0.1153477 0.2752681 -0.889292 -0.451147 -0.07500797 0.972983 0.08372223 0.2151623 -0.7964397 -0.6047148 -0.001960158 0.9499697 0.2754305 0.1472946 -0.6772592 -0.7324824 0.06920802 -0.8957633 0.4400845 0.06272149 0.9538296 0.07972872 0.2895729 -0.9572674 0.2841231 -0.0539754 0.8806681 0.2657405 0.3921809 -0.9788371 0.1078663 -0.173905 0.7643728 0.4367568 0.4743183 -0.9538488 -0.07978475 -0.2894942 0.6157815 0.5817354 0.5314104 -0.8806642 -0.2657555 -0.3921793 0.4473988 0.6948373 0.5630592 -0.7644679 -0.4366707 -0.4742444 0.2700584 0.7751794 0.5711089 0.2484842 -0.8393139 -0.4835368 -0.6157813 -0.5816772 -0.5314745 0.09197092 0.8243418 0.5585714 0.4060028 -0.8092269 -0.4246335 -0.4472053 -0.6949707 -0.5630482 -0.08191776 0.8448854 0.5286381 0.553036 -0.7548651 -0.3526045 -0.2699989 -0.7752476 -0.5710446 -0.2484961 0.8393088 0.4835397 0.6865321 -0.6758514 -0.2681393 -0.09193164 -0.8243451 -0.5585731 -0.4058899 0.8092225 0.4247499 0.8029134 -0.5710532 -0.1709632 0.0817753 -0.8448769 -0.5286737 -0.5530427 0.7547975 0.3527385 0.8957242 -0.4401455 -0.06284981 -0.6866611 0.6757591 0.2680413 0.9572774 -0.2840964 0.05393832 -0.8028175 0.5711516 0.1710853 0.9788348 -0.107796 0.1739615 1 0 1.12155e-6 1 0 -9.14842e-7 1 1.39002e-6 0 1 -1.33204e-6 4.05339e-7 1 1.35356e-6 1.04046e-6 1 -6.97361e-7 0 1 0 4.91885e-7 1 -6.98984e-7 0 1 1.74955e-7 0 1 0 6.05636e-7 1 0 0 1 2.63588e-6 6.29134e-7 1 1.39797e-6 0 1 1.41351e-6 6.29135e-7 1 0 6.05636e-7 1 -4.72744e-7 5.59386e-7 1 0 4.91882e-7 1 9.79261e-7 0 1 6.88586e-7 0 1 9.52424e-7 4.05335e-7 1 -9.84696e-7 0 1 0 0 1 -3.38388e-7 1.04046e-6 1 6.7288e-7 -9.14843e-7 1 -1.32233e-6 5.5939e-7 -0.9971234 -0.07253146 -0.0220021 -0.9973401 0.04623621 0.05634748 -0.9976794 0.0677604 -0.00667715 -0.9972093 -0.06584125 -0.0351932 -0.9972519 0.03492927 0.06533396 -0.9972973 -0.0567944 -0.04660981 -0.997165 0.02183037 0.07200938 -0.9973836 -0.04586118 -0.05588257 -0.9970814 0.00748378 0.07597798 -0.997465 -0.03354322 -0.06275755 -0.9970065 -0.007579028 0.07694536 -0.997539 -0.02035486 -0.06709539 -0.9969443 -0.02267843 0.0747509 -0.9976037 -0.006780982 -0.06885617 -0.9968984 -0.03710538 0.0694043 -0.9976574 0.006704509 -0.0680803 -0.9968726 -0.05012857 0.06109106 -0.9976992 0.01968169 -0.06487607 -0.9968667 -0.06114631 0.05018013 -0.9977287 0.03175491 -0.05940788 -0.996883 -0.06957799 0.03719002 -0.9976313 0.06845837 0.00673902 -0.9977452 0.04257792 -0.05188363 -0.9969198 -0.07505124 0.02276653 -0.9975715 0.0666508 0.02022349 -0.997748 0.05185306 -0.0425474 -0.9969744 -0.0773561 0.007618546 -0.9975022 0.06229752 0.03329384 -0.9977381 0.05928385 -0.03169047 -0.9970437 -0.07646769 -0.007531523 -0.9974241 0.05544841 0.04550415 -0.9977151 0.06465309 -0.01961058 -0.9998245 -0.01188766 0.01448571 -0.9998211 0.00185436 -0.01882302 -0.9998236 -0.008852422 0.01656055 -0.9998221 -0.00184977 -0.01877641 -0.9998229 -0.005464553 0.01801031 -0.9998229 -0.00546348 -0.01801097 -0.999822 -0.001848101 0.0187757 -0.9998238 -0.008849442 -0.01656061 -0.9998211 0.001854062 0.01882243 -0.9998245 -0.0118885 -0.01448625 -0.9998202 0.005504846 0.01814335 -0.999825 -0.01446056 -0.01186752 -0.9998195 0.008957564 0.01675945 -0.9998255 -0.01647663 -0.008806347 -0.999817 0.01903951 -0.001875102 -0.9998187 0.01208168 0.01472055 -0.9998258 -0.01785999 -0.005417644 -0.9998172 0.01829844 -0.005550801 -0.9998181 0.0147466 0.01210212 -0.9998261 -0.01856422 -0.001828372 -0.9998176 0.0168482 -0.009005427 -0.9998175 0.01684772 0.009005367 -0.999826 -0.01856607 0.001828432 -0.9998181 0.01474648 -0.01210218 -0.9998172 0.01829814 0.005550861 -0.9998258 -0.01786029 0.005417764 -0.9998187 0.01208031 -0.01472085 -0.999817 0.01903915 0.001874983 -0.9998255 -0.01647526 0.008806288 -0.9998194 0.008958637 -0.01676011 -0.999825 -0.01445913 0.0118674 -0.9998202 0.005504548 -0.01814383 0.9958447 -0.008927404 -0.09062951 0.9950542 -0.0468254 0.08760488 0.9958972 0.00887078 -0.09005624 0.9950416 -0.06309723 0.07688468 0.9959362 0.02614265 -0.0861836 0.9958579 0.09048557 -0.00891304 -0.9950495 0.07682067 -0.0630486 0.9959608 0.04232627 -0.07918733 0.9957957 0.09116196 0.008979558 -0.9950777 0.08739292 -0.04672342 0.9959703 0.05689573 -0.06932783 0.9957225 0.08841675 0.02681994 -0.9951253 0.09437698 -0.02861326 0.9959642 0.06937927 -0.05693787 0.9956403 0.08226197 0.04397004 -0.9951887 0.09750545 -0.009608149 0.9959433 0.07935893 -0.04241758 0.9955522 0.07282686 0.05976772 -0.9952642 0.09673893 0.009532094 0.9959075 0.08648669 -0.02623564 0.9954609 0.06037533 0.07356995 -0.9953493 0.092184 0.02796232 0.9953698 0.04531073 0.08477026 -0.9954397 0.0841273 0.04497402 0.9952831 0.02816224 0.09283596 -0.9955312 0.07299661 0.05991005 0.9952046 0.009587705 0.09734451 -0.9956202 0.05930954 0.07226932 0.9951381 -0.009653925 0.09801584 -0.9957045 0.04365253 0.08165198 0.9950871 -0.02873682 0.09474104 -0.9957799 0.02661991 0.08782845 0 -0.8251026 0.564983 0 -0.6291583 0.7772773 0 -0.912868 0.4082549 0 0.2519028 0.9677526 0 -0.950864 -0.3096089 0 -0.3020747 -0.9532843 0 -0.7943671 -0.6074379 0 -0.9998362 0.01810735 0 0.130564 0.99144 0 -0.8835538 -0.4683297 0 -0.1347666 0.9908775 0 -0.2195907 0.9755921 0 -0.1995111 -0.9798956 0 0.9743386 0.2250874 0 -0.9995468 -0.03010463 0 0.3268293 0.9450835 0 -0.393142 0.9194778 0 0.8232392 0.5676947 0 0.5708323 0.8210667 0 -0.5147599 -0.8573344 0 -0.9886327 -0.1503514 0 -0.6918565 -0.7220351 0.413444 0.8081566 0.4194603 0.7730059 0 -0.6343989 -0.9951848 0 0.09801745 0.8819259 0 -0.4713883 -0.9951847 0 -0.09801757 0.9569407 0 -0.2902836 -0.9569406 0 -0.2902839 0.9951847 0 -0.09801745 -0.8819259 0 -0.4713883 0.9951846 0 0.09801942 -0.7730056 0 -0.6343994 0.9569385 0 0.2902908 -0.6343964 0 -0.7730079 0.8819189 0 0.4714015 -0.4714 0 -0.8819196 -0.09801763 0 0.9951848 0.7730131 0 0.6343901 -0.2902832 0 -0.9569409 -0.290285 0 0.9569404 0.6343964 0 0.7730079 -0.09801858 0 -0.9951846 -0.4713988 0 0.8819202 0.4713915 0 0.8819241 0.09801554 0 -0.9951849 -0.6343961 0 0.7730082 0.2902832 0 0.9569409 0.290284 0 -0.9569405 -0.7730059 0 0.6343989 0.09801357 0 0.9951851 0.4713934 0 -0.8819231 -0.8819254 0 0.4713891 0.6343964 0 -0.7730079 -0.9569406 0 0.2902838 -0.5926381 -0.8033509 0.05837428 0.5658428 0.7670425 -0.3024362 -0.5926316 -0.8033564 -0.05836594 0.584253 0.7919851 -0.1772236 -0.5842514 -0.7919862 -0.1772233 0.5926308 0.8033568 -0.05836772 -0.5658465 -0.7670392 -0.3024382 0.5926381 0.8033509 0.05837428 -0.5336812 -0.7234382 -0.4379744 0.5842467 0.7919874 0.1772338 -0.4810026 -0.6520262 -0.5860873 0.5658447 0.767029 0.3024671 -0.3972311 -0.5384708 -0.7431399 -0.09716093 -0.1317074 0.9865155 0.5336716 0.7234305 0.4379987 -0.2701276 -0.3661745 -0.8904759 -0.2701283 -0.3661751 0.8904755 0.4809856 0.6520082 0.5861213 -0.09716987 -0.1317193 -0.9865131 -0.3972255 -0.5384643 0.7431475 0.3972255 0.5384643 0.7431475 0.09716624 0.1317162 -0.9865139 -0.4809964 -0.6520236 0.5860953 0.2701263 0.366174 0.8904765 0.270132 0.3661811 -0.8904719 -0.5336738 -0.7234282 0.4380001 0.09715855 0.1317051 0.9865161 0.397231 0.5384726 -0.7431385 -0.5658408 -0.7670326 0.3024652 0.4810029 0.6520262 -0.5860872 -0.5842493 -0.7919836 0.1772427 0.5336831 0.723436 -0.4379758 0.6496419 0.7575432 -0.0639835 -0.5663286 -0.7665778 -0.3027054 0.6313202 0.7730257 0.06217896 -0.516926 -0.7435243 -0.424216 0.6037301 0.7758694 0.18313 -0.4514572 -0.7025582 -0.5500894 0.566323 0.766582 0.3027053 -0.3636821 -0.636237 -0.6803955 -0.09651041 0.1748805 0.9798483 0.5169272 0.7435272 0.4242095 -0.2455645 -0.5332955 -0.8095024 -0.2897046 -0.06340253 0.9550138 0.4514563 0.7025568 0.5500921 -0.0906291 -0.3808842 -0.9201705 -0.451251 -0.2893102 0.8441991 0.3636813 0.6362341 0.6803986 0.09650677 -0.1748766 -0.9798493 -0.5607078 -0.4678306 0.6831848 0.2455626 0.5332925 0.809505 0.2897061 0.06340241 -0.9550133 -0.6225578 -0.5927983 0.5108934 0.09063136 0.3808871 0.9201691 0.4512413 0.2893059 -0.8442058 -0.6508072 -0.6748641 0.3478627 0.5607033 0.4678308 -0.6831883 -0.657384 -0.7266908 0.199416 0.6225547 0.5927957 -0.5109001 -0.6496388 -0.7575455 0.06398576 0.6508056 0.6748676 -0.3478589 -0.6313223 -0.7730236 -0.06218427 0.6573816 0.7266941 -0.1994124 -0.6037251 -0.7758718 -0.1831363 -0.6763412 -0.4842282 0.5550546 0.08495956 0.4987448 0.8625749 0.4688245 0.1044014 -0.8770998 -0.7055566 -0.5999838 0.3771066 0.6014316 0.3182141 -0.7328164 -0.7050715 -0.6761182 0.2138652 0.6763355 0.4842225 -0.5550666 -0.6863058 -0.7241648 0.06760048 0.7055559 0.5999866 -0.3771036 -0.6555675 -0.7523708 -0.06457287 0.7050744 0.6761157 -0.2138639 -0.6155461 -0.7656612 -0.1867245 0.6863007 0.7241704 -0.06759226 -0.5666117 -0.766315 -0.3028408 0.6555619 0.7523761 0.06456667 -0.5073884 -0.7544255 -0.4164123 0.6155399 0.7656671 0.1867204 -0.4349441 -0.7279879 -0.5299597 0.5665999 0.7663253 0.3028367 -0.3446002 -0.6823629 -0.6446949 -0.09224408 0.338299 0.9365067 0.5073863 0.7544344 0.4163987 -0.2300946 -0.6097054 -0.7584958 -0.2878856 0.1286716 0.9489814 0.4349472 0.7279922 0.5299512 -0.08495986 -0.4987414 -0.8625769 -0.4688496 -0.1044088 0.8770855 0.344603 0.6823684 0.6446877 0.09224253 -0.3382934 -0.936509 -0.6014415 -0.3182067 0.7328115 0.2300974 0.6097124 0.7584893 0.2878816 -0.1286683 -0.948983 0.7300903 0.6795572 -0.07190352 -0.5669083 -0.7660189 -0.3030349 0.684105 0.726265 0.06737703 -0.496957 -0.7659588 -0.4078491 0.6291427 0.7535012 0.1908285 -0.4172241 -0.7533165 -0.5083684 0.5669184 0.7660194 0.3030147 -0.3242254 -0.7259017 -0.6065845 -0.08539003 0.490801 0.8670773 0.4969627 0.7659565 0.4078465 -0.2131196 -0.6789662 -0.702556 -0.274279 0.3273442 0.9042217 0.4172088 0.7532927 0.5084161 -0.07808691 -0.6044061 -0.7928403 -0.468226 0.1154242 0.8760376 0.3242205 0.7258865 0.6066053 0.08539938 -0.4908643 -0.8670405 -0.629952 -0.1176803 0.7676665 0.2131131 0.6789444 0.7025791 0.2743014 -0.3273735 -0.9042043 -0.7298873 -0.3292403 0.5990538 0.07809078 0.6044467 0.792809 0.4682688 -0.1154272 -0.8760143 -0.7676881 -0.4921991 0.4103599 0.6299995 0.1176972 -0.7676249 -0.7616981 -0.6053301 0.2310664 0.7299034 0.3292534 -0.5990269 -0.7301105 -0.6795348 0.07191199 0.7676988 0.4922096 -0.4103273 -0.6841211 -0.7262488 -0.06738704 0.7617136 0.6053134 -0.2310585 -0.629127 -0.7535135 -0.1908317 0.4989821 -0.03611052 0.8658596 -3.33077e-6 -0.05005443 0.9987465 0.2134684 0.03393357 0.9763605 -2.15729e-6 -0.03981411 0.9992071 0.1578683 -0.629392 0.7608832 0.08272606 -0.6357265 0.7674687 -0.1541978 -0.6319131 0.7595452 0.9245141 0.07262974 0.374164 -0.1119646 0.9884992 0.1016532 -0.4156661 0.904345 0.09685939 -0.9960281 -0.08823025 -0.01198184 -0.751212 0.6540573 0.0888226 -0.3738666 0.9218776 0.1018111 -0.4134438 -0.8081567 -0.4194604 0.07813388 0.4759179 -0.8760122 -0.2091593 -0.4088392 0.8883147 -0.8982489 0.3610429 0.2505935 0.8983997 -0.3898009 -0.20232 -0.1671057 -0.02664333 0.985579 -0.002368628 -0.02552592 0.9996714 0.08142888 -0.02449679 0.9963781 -0.3532931 -0.9331507 -0.06643778 -0.2694946 -0.9606896 -0.06669616 -0.09952282 -0.9928941 -0.06524282 -0.8728539 0.02076393 0.4875397 -0.5984278 0 -0.8011767 -0.2795533 0 -0.9601303 -0.213591 0 0.9769232 -0.5844831 0 0.811406 -0.2780046 0.1051218 -0.9548105 -0.8730421 0 0.4876449 -0.8460305 0 0.5331347 -0.2785511 -0.08460104 -0.9566881 -0.9795257 -0.1243584 0.1583178 -0.8271498 0 -0.5619816 -1 0 0 -0.5977846 0.0463593 -0.8003152 -0.9530487 0 -0.3028174 -0.213073 -0.06964987 0.9745506 -0.9461479 -0.1201208 -0.3006247 -0.9871889 0 0.1595563 -0.2134777 0.03393477 0.9763584 -0.5785498 0.01447963 0.8155186 -0.8267453 0.03126555 -0.561707 -0.6156934 0.003661632 0.7879773 -0.9526404 0.02926999 -0.3026877 -0.9865871 0.03491026 0.1594591 0 -1 -1.36842e-5 -0.4080419 -0.1276675 -0.9039927 -0.954935 -0.209595 0.2101644 -0.7646257 -0.1378525 -0.6295588 -0.9764205 -0.2152631 0.01628094 -0.5545315 -0.138207 0.8206057 -0.8679393 -0.107961 0.4847946 -0.58256 -0.08105778 0.8087358 -0.5956465 -0.09630405 -0.7974528 -0.8222874 -0.1082689 -0.5586782 -0.8427665 -0.08775854 0.5310775 0 -1 4.75046e-6 0 -1 -5.34535e-6 -0.6333988 -0.1507725 -0.7589952 -0.1408709 -0.1386438 0.9802721 -0.9438027 -0.1967886 -0.2655387 -0.7347596 -0.1771425 0.6547893 -0.006280958 0.006263613 0.9999607 1.02607e-6 -0.6559132 0.7548364 -1.378e-6 -0.04226994 -0.9991063 1.38771e-6 -0.09288376 0.9956769 -1.36464e-6 -0.08345377 -0.9965117 -6.64288e-7 -0.8699309 -0.4931738 -1.38781e-6 0.07017731 -0.9975346 1.34549e-6 -0.03981405 0.9992071 -1.35448e-6 -0.1049727 -0.9944752 -1.37056e-6 -0.05044913 -0.9987267 1.35696e-6 -0.1499255 0.9886974 1.66632e-7 0.9925364 0.1219497 -1.37696e-6 0.02935576 -0.9995691 1.3532e-6 -0.05005431 0.9987466 1.36874e-6 0.1928691 0.9812246 -1.36204e-6 -0.01648807 -0.9998642 1.36669e-6 -0.0611068 0.9981312 1.36563e-6 0.0541206 0.9985345 -1.37062e-6 0.03578186 -0.9993597 1.36294e-6 0.006263732 0.9999804 1.09911e-6 0.5995207 0.8003593 -1.28634e-6 0.3216837 -0.9468473 -1.37651e-6 0.02840113 -0.9995967 1.36166e-6 -0.04379773 0.9990404 -9.27756e-7 0.7376364 -0.6751982 0.01474392 -0.104961 -0.9943671 -0.08237034 0.5974853 0.7976381 -0.04685491 0.3213288 -0.9458079 -0.003809988 0.02840089 -0.9995895 -0.00143665 -0.04379767 0.9990395 -0.1021326 0.7337669 -0.6716808 0.01040202 -0.6558769 0.7547963 0.00210905 -0.04226988 -0.9991041 9.83133e-4 -0.09288364 0.9956766 0.00678718 -0.08345293 -0.9964887 0.009728729 -0.8698893 -0.4931511 -0.005681037 0.07017624 -0.9975185 -0.001835882 -0.03981399 0.9992055 0.009598731 -0.1049678 -0.9944293 0.002996861 -0.05044883 -0.9987222 0.002575218 -0.1499249 0.988694 -0.1353849 0.9833986 0.120823 -0.003867983 0.02935552 -0.9995616 -9.90182e-4 -0.05005431 0.998746 -0.02900713 0.1927875 0.9808118 -3.06239e-4 -0.01648807 -0.9998641 -4.22841e-4 -0.0611068 0.9981312 -0.01149612 0.05411702 0.9984685 -0.00475502 0.0357815 -0.9993484 -0.190294 0.5885643 0.7857355 0.004811406 -0.05044859 -0.9987151 0.005377292 -0.1499235 0.9886831 -0.1998897 0.9725071 0.1194751 -0.005787789 0.02935516 -0.9995524 -8.11092e-4 -0.05005413 0.9987462 -0.04307788 0.19269 0.9803137 -2.36383e-4 -0.01648813 -0.9998641 1.17234e-4 -0.0611068 0.9981313 -0.01682102 0.05411297 0.9983932 -0.007111549 0.03578096 -0.9993344 -0.008919179 0.006263434 0.9999406 -0.1224595 0.5950059 0.7943372 -0.06963783 0.3209029 -0.9445486 -0.005694866 0.02840065 -0.9995804 -0.001513123 -0.04379773 0.9990394 -0.1514236 0.7291301 -0.6674131 0.02231079 -0.6557506 0.7546479 0.003465831 -0.04226964 -0.9991002 0.002468764 -0.0928834 0.995674 0.01053386 -0.08344995 -0.9964563 0.02386647 -0.8696801 -0.4930385 -0.008817672 0.07017457 -0.9974958 -0.00212115 -0.03981399 0.9992049 0.008274137 -0.05044734 -0.9986925 -0.1099702 0.3197333 -0.9411044 -0.008905053 0.0284 -0.999557 -0.005239784 -0.04379713 0.9990267 -0.234314 0.7170957 -0.6564074 0.004410088 -0.6559087 0.7548274 0.00402075 -0.04226952 -0.9990983 -6.4944e-4 -0.09288394 0.9956768 0.01474082 -0.08344578 -0.9964033 -0.004700422 -0.8699213 -0.4931682 -0.01232177 0.07017195 -0.9974588 -0.006138026 -0.03981328 0.9991884 0.02129411 -0.1049491 -0.9942497 0.006043016 -0.05044788 -0.9987084 0.001518189 -0.1499252 0.9886962 -0.305128 0.9452035 0.1161351 -0.00902307 0.02935463 -0.9995284 -0.004296541 -0.05005407 0.9987373 -0.06850588 0.1924169 0.9789192 -0.001358687 -0.01648825 -0.9998632 -0.003203868 -0.0611065 0.9981262 -0.02796345 0.05409926 0.998144 -0.01110279 0.03577977 -0.999298 -0.0160855 0.006263017 0.9998511 -0.380888 0.5543267 0.7400313 -0.002618432 -0.1499249 0.988694 -0.44454 0.8890745 0.1092282 -0.01392692 0.0293529 -0.9994721 -0.008823275 -0.0500524 0.9987077 -0.106427 0.1917734 0.9756518 -0.002812802 -0.01648783 -0.9998601 -0.007393836 -0.06110513 0.998104 -0.04439824 0.05406713 0.9975498 -0.01714766 0.03577661 -0.9992127 -0.02639919 0.006261765 0.9996319 -0.2875744 0.5741928 0.7665531 -0.1695961 0.3170236 -0.9331309 -0.01376396 0.02839845 -0.999502 -0.0101698 -0.04379558 0.9989888 -0.3499922 0.6909797 -0.6324971 -0.01514488 -0.6558387 0.7547492 0.00520724 -0.04226934 -0.9990928 -0.004253447 -0.09288287 0.9956679 0.021537 -0.08343482 -0.9962805 -0.03752052 -0.8693168 -0.492829 -0.01798796 0.07016575 -0.9973732 -0.01151937 -0.03981149 0.9991409 0.03163915 -0.1049202 -0.9939773 -0.07199835 -0.1495363 0.9861315 -0.2334362 0.3128001 -0.9206866 -0.01871657 0.02839607 -0.9994215 -0.025545 -0.04378378 0.9987145 -0.4572257 0.6560167 -0.6004889 -0.1434416 -0.6491301 0.7470306 0.001377284 -0.04226982 -0.9991054 -0.02417236 -0.09285628 0.9953861 0.02223014 -0.0834341 -0.9962654 -0.217181 -0.8491621 -0.4814106 -0.01848083 0.07016509 -0.9973642 -0.03623622 -0.01585853 0.9992175 0.03584766 -0.104905 -0.9938361 0.005213201 -0.05044859 -0.9987131 -0.03165155 -0.14985 0.988202 -0.5626286 0.8205404 0.1008089 -0.01882582 0.02935045 -0.999392 -0.02099347 -0.06744766 0.997502 -0.1489394 0.1907181 0.9702802 -0.007858633 -0.01648759 -0.9998333 -0.02386587 -0.06108921 0.997847 -0.06708508 0.05399882 0.996285 -0.0232445 0.03577238 -0.9990897 -0.04459428 0.006257534 0.9989857 -0.3604694 0.3000546 -0.8831927 -0.658292 0.7471477 0.09177201 -0.02388399 0.02934747 -0.9992839 -0.0449869 -0.05000364 0.9977355 -0.1940798 0.1892015 0.9625674 -0.01458501 -0.01648598 -0.9997577 -0.04603105 -0.06104135 0.9970733 -0.09304594 0.05388516 0.9942027 -0.02956241 0.03576594 -0.998923 -0.06665986 0.006249487 0.9977563 -0.4679694 0.5298227 0.7073137 -0.2987416 0.3069887 -0.9036103 -0.02387022 0.02839291 -0.9993119 -0.04580533 -0.04375165 0.9979918 -0.5523296 0.6149148 -0.5628604 -0.3095426 -0.6236938 0.717767 -0.004696965 -0.04226934 -0.9990952 -0.05158072 -0.09275949 0.9943517 0.02037352 -0.08343487 -0.996305 -0.4310539 -0.7849559 -0.4450134 -0.01680755 0.07016688 -0.9973937 -0.0476191 -0.03976833 0.9980737 0.03761005 -0.1048981 -0.9937716 -1.82691e-4 -0.05044877 -0.9987266 -0.1896536 -0.1472049 0.9707534 -0.0291329 0.02838903 -0.9991723 -0.06430739 -0.04370731 0.9969726 -0.6308524 0.5723377 -0.5238845 -0.4379848 -0.589654 0.678585 -0.009855091 -0.04226785 -0.9990578 -0.07611638 -0.09261429 0.9927884 0.01977002 -0.08343696 -0.9963169 -0.5772836 -0.7103337 -0.4027032 -0.01619267 0.07016831 -0.9974038 -0.06635743 -0.03972631 0.9970048 0.04071694 -0.1048856 -0.9936504 -0.004588067 -0.05044883 -0.9987161 -0.1077918 -0.1490528 0.9829365 -0.7310757 0.6772047 0.08319914 -0.02906727 0.02934342 -0.9991468 -0.06376057 -0.04995238 0.9967144 -0.2380918 0.1873223 0.9530072 -0.02071553 -0.01648432 -0.9996495 -0.06608724 -0.06097275 0.9959493 -0.1181464 0.05374109 0.991541 -0.0360251 0.03575873 -0.9987109 -0.08751451 0.006239593 0.9961438 -0.5443633 0.5029035 0.6713842 -0.04011523 0.02837759 -0.9987921 -0.8038549 0.5903877 0.07252508 -0.03610777 0.02933669 -0.9989173 -0.1046204 -0.04977941 0.9932657 -0.3020839 0.183859 0.9353829 -0.0341528 -0.01647895 -0.9992808 -0.1104464 -0.06073307 0.9920248 -0.1605879 0.05341768 0.985575 -0.04488223 0.03574633 -0.9983526 -0.1266983 0.006213188 0.9919219 -0.6335441 0.463854 0.6192426 -0.4440492 0.2882331 -0.8483762 -0.03641676 0.02838259 -0.9989336 -0.1040251 -0.04356133 0.9936203 -0.7171231 0.5140904 -0.4705801 -0.6537607 -0.4963288 0.5711871 -0.02400392 -0.0422576 -0.9988184 -0.1319774 -0.09207165 0.9869675 0.0102598 -0.08344852 -0.9964593 -0.7772339 -0.5473673 -0.3103169 -0.00799334 0.07017564 -0.9975026 -0.1061268 -0.03958898 0.9935642 0.03622514 -0.1049023 -0.9938226 -0.01810824 -0.0504409 -0.9985629 -0.1402702 -0.04336351 0.9891633 -0.753793 0.4847124 -0.443678 -0.7764969 -0.4133052 0.4756381 -0.03929084 -0.0422368 -0.9983348 -0.1849311 -0.09128075 0.9785031 -0.00462532 -0.0834552 -0.9965009 -0.8679499 -0.4320532 -0.2449353 0.004688262 0.07017564 -0.9975237 -0.142076 -0.03940898 0.989071 0.02373796 -0.1049425 -0.994195 -0.03356063 -0.05042064 -0.9981641 -0.2662333 -0.1445114 0.9530144 -0.8323312 0.5501437 0.06757795 -0.03952217 0.02933269 -0.9987881 -0.1422914 -0.04954534 0.9885841 -0.3391535 0.1814336 0.9230692 -0.04669594 -0.01646941 -0.9987735 -0.1518141 -0.06039643 0.9865621 -0.1909963 0.05312401 0.9801522 -0.04927116 0.0357384 -0.9981458 -0.1583728 0.00618416 0.9873601 -0.673143 0.4433524 0.591876 -0.4883417 0.2807193 -0.8262682 -1.28527e-6 0.02840113 -0.9995967 1.33283e-6 -0.04379767 0.9990405 -9.3243e-7 0.7376341 -0.6752008 1.04634e-6 -0.6559132 0.7548364 -1.31314e-6 -0.04226994 -0.9991062 1.33892e-6 -0.0928837 0.9956771 -1.42639e-6 -0.08345466 -0.9965116 -6.83659e-7 -0.8699294 -0.4931762 -1.39481e-6 0.07017725 -0.9975346 1.15621e-6 -0.03981411 0.9992071 -1.40935e-6 -0.1049726 -0.9944752 -1.37134e-6 -0.05044907 -0.9987267 1.3886e-6 -0.1499256 0.9886973 1.74754e-7 0.9925366 0.1219472 -1.32854e-6 0.02935576 -0.9995691 3.57895e-7 -0.05005443 0.9987465 1.28393e-6 0.1928689 0.9812246 -1.40802e-6 -0.01648807 -0.9998641 1.35245e-6 -0.0611068 0.9981313 1.37251e-6 0.0541206 0.9985345 -1.43938e-6 0.03578191 -0.9993596 1.33408e-6 0.006263732 0.9999805 1.14029e-6 0.5995218 0.8003584 -1.28708e-6 0.3216835 -0.9468473 0 0 1 -0.9127544 0.4085088 0 -0.5719133 -0.8203142 0 -0.1534351 0.9881588 0 -0.780646 0.6249735 0 0.003878116 0.9999926 0 -0.796756 -0.6043013 0 0.8563386 -0.5164148 0 -0.9633563 0.2682249 0 0.5461241 -0.8377043 0 -0.1934601 -0.9811082 0 0.9992485 0.03876364 0 -0.6478812 0.7617415 0 -0.9861934 -0.1655979 0 0.06463515 -0.9979091 0 0 1 2.03367e-5 -0.9578804 -0.2871675 0 0.0100038 0.99995 0 -0.941428 0.2106077 -0.2633587 -0.507911 0.2139852 -0.8344081 -1 0 0 -0.2092427 0.2007466 0.9570363 -0.9003186 0.2061561 0.3833093 -0.83168 0.2134217 -0.512601 -0.9744728 0.2057824 0.08975726 -0.4886419 0.2055885 0.8479165 -0.707821 0.2082287 0.675004 -0.004868566 0.1926918 -0.9812473 -0.9138768 0.3153917 -0.2556507 -0.203718 0.3005383 0.9317595 -0.6877725 0.3110998 0.6558856 -0.4924061 0.3211867 -0.8089348 -0.9473412 0.3081085 0.08725821 -0.1545483 0.3089295 -0.9384442 -0.8066034 0.3197482 -0.497144 -0.4751431 0.3073274 0.8244932 -0.8752507 0.3083502 0.3726345 -0.4079337 0.5766422 0.7078658 -0.6849194 0.5938658 -0.4221481 -0.1757081 0.5685649 0.8036546 -0.1288917 0.5831841 -0.8020495 -0.8139398 0.5760913 0.07497143 -0.4167062 0.5980919 -0.6845744 -0.5890661 0.5808898 0.5617547 -0.7797041 0.58693 -0.2181165 -0.7518653 0.5763968 0.3201019 -0.3960304 0.6479762 -0.650605 -0.1220118 0.6334694 -0.7640875 -0.6515654 0.6435768 -0.4015863 -0.3891291 0.6266106 0.6752317 -0.7173837 0.6261608 0.3054232 -0.7766516 0.6258555 0.07153552 -0.7426471 0.6366434 -0.2077513 -0.1677916 0.6187769 0.7674381 -0.5616046 0.6306914 0.535564 -0.3493403 0.7144926 0.6061862 -0.5819826 0.7298154 -0.3587003 -0.1509174 0.7076411 0.6902667 -0.1076885 0.7214376 -0.6840548 -0.6979509 0.7132543 0.0642876 -0.3529597 0.7342994 -0.5798482 -0.5037403 0.717965 0.4803873 -0.665008 0.7232955 -0.1860326 -0.6445874 0.7135785 0.2744318 -0.5401372 0.8095478 0.2299659 -0.5547862 0.8173903 -0.1551943 -0.1273739 0.8027278 0.5825839 -0.4219514 0.8124306 0.402385 -0.2939118 0.8249107 -0.4828441 -0.08838522 0.8136236 -0.5746344 -0.5845773 0.8095495 0.05384248 -0.4845445 0.8222082 -0.2986479 -0.2934715 0.8090372 0.5092479 -0.0653097 0.894599 -0.4420715 -0.4534527 0.8903012 0.04176592 -0.2250624 0.9014644 -0.3697418 -0.3260407 0.8927617 0.3109244 -0.4283726 0.8956208 -0.1198347 -0.4187291 0.8904423 0.1782654 -0.2266947 0.890993 0.3933714 -0.3727592 0.8990371 -0.2297452 -0.0984435 0.8874542 0.45026 0 1 3.61603e-6 0 1 -7.00233e-6 0 -0.9951847 0.09801727 0 -0.4713938 -0.8819228 0 -0.881922 0.4713954 0 0.634396 -0.7730084 0 -0.9569391 0.2902891 0 0.9569403 0.2902852 -6.46561e-4 -0.4713478 -0.8819472 -0.001325964 -0.09804087 0.9951816 -8.04134e-4 -0.2902726 -0.9569438 -0.001137793 -0.290226 0.9569575 -9.79285e-4 -0.09799069 -0.9951869 -9.54015e-4 -0.4713871 0.881926 -0.001164555 0.09800481 -0.9951853 -7.81026e-4 -0.6344057 0.773 -0.001352131 0.2902951 -0.9569363 -6.25984e-4 -0.7730745 0.6343149 -0.001536548 0.4714391 -0.8818974 -4.94991e-4 -0.8819343 0.4713722 -0.002201616 0.9951795 0.09804582 -0.001709342 0.6343963 -0.7730062 -3.92257e-4 -0.9569116 0.2903791 -0.002198934 0.9569163 0.2903558 -0.001864314 0.7729369 -0.6344803 -3.22809e-4 -0.9951953 0.09791028 -0.002159535 0.8819491 0.4713399 -0.001995205 0.8819607 -0.4713189 -2.88441e-4 -0.995181 -0.09805434 -0.002085149 0.7729569 0.6344552 -0.002097606 0.9569165 -0.2903558 -2.91036e-4 -0.9569159 -0.290365 -0.001978576 0.6343657 0.7730307 -0.002167224 0.9951796 -0.09804582 -3.30787e-4 -0.8819344 -0.4713723 -0.001843988 0.4714783 0.8818758 -4.04975e-4 -0.7730542 -0.6343399 -0.001685917 0.2902485 0.9569499 -5.1191e-4 -0.6344362 -0.7729751 -0.001511156 0.09805506 0.9951799 -0.889309 0.451088 0.07516086 0.537165 -0.8323426 0.1366006 -0.03415393 0.9529522 -0.3011903 -0.796439 0.6047155 0.002048075 0.3805252 -0.9031959 0.1985896 0.1473308 0.9293179 -0.3386178 -0.6771442 0.7325866 -0.06922888 0.2116626 -0.9437679 0.2539707 0.3285538 0.8711209 -0.3649668 -0.5371359 0.8323619 -0.1365978 0.03413289 -0.9530066 0.3010209 0.5016885 0.7781445 -0.3778885 -0.3805347 0.9031774 -0.1986561 -0.1474032 -0.9292851 0.3386763 0.6598081 0.6506793 -0.3758589 -0.2115604 0.9438052 -0.2539176 -0.3285798 -0.8711209 0.3649436 0.7930901 0.4928885 -0.3578677 -0.5018643 -0.7780081 0.3779363 0.8934767 0.3111579 -0.3238523 -0.6597092 -0.6508041 0.3758162 0.954384 0.1152785 -0.2754305 -0.793173 -0.492837 0.3577547 0.9729502 -0.0837906 -0.2152833 -0.893436 -0.3112812 0.3238462 0.9499922 -0.275349 -0.1473017 -0.9544253 -0.1153692 0.2752501 0.8892425 -0.4512274 -0.07511103 -0.9729824 0.08376717 0.215147 0.7963795 -0.6047939 -0.002028524 -0.9499729 0.2754179 0.1472982 0.6773473 -0.7323978 0.06924021 0.8957656 0.4400842 0.06268972 -0.9538612 0.07977432 0.2894564 0.9572565 0.2841582 -0.0539847 -0.8806847 0.2657341 0.3921477 0.9788386 0.1078316 -0.173918 -0.7643624 0.4368044 0.4742913 0.953842 -0.07979351 -0.2895144 -0.6157813 0.5816772 0.5314745 0.8806806 -0.2657145 -0.3921704 -0.4473769 0.6948537 0.5630562 0.7644636 -0.4366927 -0.4742311 -0.2700378 0.7752387 0.5710381 -0.2484763 -0.8393235 -0.4835243 0.6157836 -0.5816656 -0.5314844 -0.09193783 0.8243187 0.5586109 -0.4059637 -0.8092107 -0.4247018 0.4471943 -0.6949705 -0.5630571 0.08193004 0.8448888 0.5286306 -0.55311 -0.7547281 -0.3527814 0.2699781 -0.7752416 -0.5710625 0.2484563 0.8393546 0.4834804 -0.6864944 -0.6758774 -0.2681702 0.09194833 -0.8243273 -0.5585966 0.4058779 0.809221 0.4247642 -0.802892 -0.5710554 -0.1710565 -0.08179259 -0.8448901 -0.5286499 0.5530717 0.7547867 0.3527163 -0.8957631 -0.4400829 -0.06273353 0.6866466 0.6757875 0.268007 -0.9572812 -0.2840616 0.05405217 0.8028212 0.5711547 0.1710572 -0.9788582 -0.1077227 0.1738746 -1 0 1.12155e-6 -1 -6.72879e-7 -9.14843e-7 -1 1.39002e-6 0 -1 -1.33204e-6 4.05339e-7 -1 6.76777e-7 1.04046e-6 -1 -1.39472e-6 0 -1 -6.63292e-7 4.91885e-7 -1 -1.39797e-6 0 -1 6.59712e-7 6.05636e-7 -1 6.25475e-7 0 -1 1.48268e-6 6.29134e-7 -1 -1.49936e-6 0 -1 -2.63588e-6 6.29133e-7 -1 -4.98622e-7 0 -1 0 6.05637e-7 -1 -9.93882e-7 0 -1 1.32234e-6 5.59389e-7 -1 0 0 -1 0 4.91892e-7 -1 -6.84783e-7 0 -1 1.33204e-6 4.05337e-7 -1 0 1.12155e-6 -1 9.67808e-7 0 -1 0 1.87382e-7 -1 4.72742e-7 5.5939e-7 0.9971234 -0.07253205 -0.02200216 0.9973397 0.0462433 0.0563482 0.9976793 0.067761 -0.006673634 0.9972093 -0.06584066 -0.03519314 0.9972522 0.03492289 0.06533461 0.9972974 -0.05679392 -0.04660981 0.9971647 0.02184367 0.07200962 0.9973836 -0.0458607 -0.05588257 0.9970815 0.007484257 0.07597756 0.997465 -0.03354394 -0.06275755 0.9970067 -0.007579565 0.07694464 0.997539 -0.02035415 -0.06709545 0.9969444 -0.02267354 0.07475179 0.9976035 -0.006781399 -0.06885617 0.9968984 -0.03709912 0.0694065 0.9976574 0.006704986 -0.0680803 0.996872 -0.05013805 0.06109398 0.9976992 0.01968157 -0.06487607 0.9968667 -0.06114637 0.05018013 0.9977286 0.03175425 -0.05940794 0.996883 -0.06957805 0.03719002 0.9976313 0.06845867 0.006743192 0.997745 0.04257887 -0.05188369 0.9969198 -0.0750516 0.02276659 0.9975717 0.06664806 0.02021735 0.9977483 0.05184751 -0.04254943 0.9969744 -0.07735621 0.007618486 0.9975022 0.06229662 0.03329807 0.9977383 0.05928212 -0.03168678 0.9970436 -0.07646757 -0.007531523 0.9974238 0.05545097 0.04550665 0.9977152 0.06465208 -0.01961195 0.9998245 -0.01188701 0.01448571 0.9998211 0.001854062 -0.01882314 0.9998236 -0.008852422 0.01656055 0.9998221 -0.001849472 -0.01877641 0.9998229 -0.005464553 0.01801031 0.9998229 -0.005461871 -0.01801085 0.999822 -0.00184828 0.0187757 0.9998237 -0.008853852 -0.01656073 0.9998212 0.00185424 0.01882249 0.9998245 -0.01188635 -0.01448643 0.9998202 0.005504906 0.01814335 0.999825 -0.0144605 -0.0118674 0.9998195 0.008957564 0.01675945 0.9998255 -0.01647531 -0.008806407 0.999817 0.01903933 -0.001875162 0.9998187 0.01208096 0.01472055 0.9998258 -0.01786035 -0.005417764 0.9998172 0.01829814 -0.005550622 0.9998181 0.0147466 0.01210212 0.999826 -0.01856571 -0.001828432 0.9998175 0.01684772 -0.009005367 0.9998175 0.01684772 0.009005367 0.999826 -0.01856654 0.001828432 0.9998181 0.01474654 -0.01210206 0.9998172 0.01829814 0.005550861 0.9998258 -0.01785963 0.005417764 0.9998187 0.01208037 -0.01472157 0.999817 0.01903951 0.001874983 0.9998255 -0.01647526 0.008806288 0.9998194 0.008957624 -0.0167604 0.999825 -0.01445978 0.01186734 0.9998203 0.005503535 -0.01814401 -0.9958447 -0.008926391 -0.09062951 -0.9950542 -0.04682487 0.08760493 -0.9958972 0.008869826 -0.09005624 -0.9950416 -0.0630964 0.07688468 -0.9959362 0.02614396 -0.0861836 -0.9958579 0.09048587 -0.00891304 -0.9950495 -0.0768224 0.06304681 -0.9959607 0.04232704 -0.07918739 0.9957958 -0.09116029 -0.008982241 -0.9950779 -0.0873956 0.046714 -0.9959701 0.05689609 -0.06932783 0.9957224 -0.08841794 -0.02681994 -0.9951249 -0.09437662 0.02862769 0.9959637 -0.06937325 0.05695426 0.9956403 -0.08226329 -0.04396742 -0.9951881 -0.09751111 0.00960499 0.995944 -0.07935965 0.04239922 0.995552 -0.07282656 -0.05977052 -0.9952642 -0.09673923 -0.009528934 0.9959083 -0.08647465 0.02624756 0.9954604 -0.06037962 -0.07357323 -0.9953495 -0.09218174 -0.02796322 0.9953704 -0.04529243 -0.08477312 -0.9954398 -0.08412909 -0.044968 0.9952824 -0.0281971 -0.09283274 -0.9955313 -0.07299774 -0.05990743 0.9952045 -0.00958687 -0.09734529 -0.9956206 -0.05930835 -0.0722652 0.9951384 0.009653925 -0.09801191 -0.9957043 -0.04364687 -0.08165818 0.9950875 0.02871596 -0.0947442 -0.9957798 -0.02664166 -0.08782351 0 0.9743386 0.2250874 0 0.5708322 0.8210668 -0.4134439 0.8081567 0.4194604 -0.7730059 0 -0.6343989 0.9951848 0 0.09801745 0.9951847 0 -0.09801757 -0.9569407 0 -0.2902836 0.9569406 0 -0.2902839 -0.9951847 0 -0.09801745 -0.9951846 0 0.09801942 0.7730056 0 -0.6343994 -0.9569385 0 0.2902908 -0.8819189 0 0.4714015 0.4714 0 -0.8819196 0.09801763 0 0.9951848 -0.7730131 0 0.6343901 0.2902832 0 -0.9569409 0.290285 0 0.9569404 -0.6343964 0 0.7730079 0.09801858 0 -0.9951846 0.4713988 0 0.8819202 -0.4713915 0 0.8819241 -0.09801554 0 -0.9951849 0.6343961 0 0.7730082 -0.2902832 0 0.9569409 -0.290284 0 -0.9569405 0.7730059 0 0.6343989 -0.09801357 0 0.9951851 -0.4713934 0 -0.8819231 0.8819254 0 0.4713891 0.9569406 0 0.2902838 0.5926309 -0.8033568 0.05836576 -0.5658435 0.7670435 -0.3024324 0.5926304 -0.8033572 -0.05836582 -0.5842522 0.7919866 -0.1772193 0.5842518 -0.7919869 -0.1772194 -0.5926308 0.8033569 -0.05836576 0.5658472 -0.7670401 -0.3024344 -0.5926308 0.8033569 0.05836576 0.5336822 -0.7234396 -0.4379708 -0.5842517 0.7919861 0.1772232 0.4809984 -0.6520205 -0.5860971 -0.5658425 0.7670429 0.3024364 0.3972261 -0.5384641 -0.7431473 0.09716981 -0.1317205 0.986513 -0.5336846 0.7234444 0.43796 0.2701276 -0.3661745 -0.8904759 0.2701275 -0.3661752 0.8904757 -0.4810077 0.6520341 0.5860744 0.09717017 -0.1317197 -0.986513 0.3972304 -0.5384709 0.74314 -0.3972304 0.5384709 0.74314 -0.09716433 0.1317136 -0.9865145 0.4810026 -0.6520262 0.5860873 -0.2701308 0.3661786 0.8904733 -0.2701275 0.3661752 -0.8904757 0.5336816 -0.723438 0.4379743 -0.09716624 0.1317144 0.9865141 -0.3972261 0.538466 -0.743146 0.5658463 -0.7670392 0.3024383 -0.4809986 0.6520205 -0.586097 0.5842514 -0.7919864 0.1772233 -0.5336842 0.7234374 -0.4379721 -0.649644 0.7575413 -0.06398367 0.5663278 -0.7665774 -0.3027076 -0.6313204 0.7730255 0.06217896 0.5169277 -0.7435269 -0.4242094 -0.6037251 0.775872 0.1831359 0.4514569 -0.7025566 -0.5500919 -0.5663287 0.7665755 0.3027108 0.3636813 -0.6362357 -0.680397 0.09650814 0.1748763 0.9798493 -0.5169155 0.7435145 0.4242457 0.2455638 -0.5332941 -0.8095036 0.2896937 -0.06339901 0.9550173 -0.4514521 0.7025524 0.5501011 0.09063035 -0.3808894 -0.9201682 0.4512259 -0.2892968 0.8442172 -0.3636743 0.6362239 0.6804118 -0.09650641 -0.1748759 -0.9798495 0.560684 -0.4678134 0.683216 -0.2455555 0.5332806 0.8095149 -0.289705 0.06340253 -0.9550137 0.6225455 -0.5927845 0.5109244 -0.09062671 0.3808757 0.9201743 -0.4512399 0.2893044 -0.8442071 0.6508102 -0.6748588 0.3478675 -0.5607078 0.4678331 -0.6831831 0.6573814 -0.7266927 0.1994178 -0.6225581 0.5927982 -0.5108932 0.6496354 -0.7575485 0.0639854 -0.6508047 0.6748673 -0.3478613 0.6313231 -0.7730233 -0.06217932 -0.6573817 0.7266932 -0.1994152 0.6037238 -0.7758725 -0.1831384 0.6763321 -0.4842249 0.5550686 -0.08495509 0.4987188 0.8625904 -0.4688324 0.1044047 -0.8770952 0.7055521 -0.5999668 0.377142 -0.6014403 0.318216 -0.7328084 0.7050663 -0.6761184 0.2138819 -0.6763415 0.484228 -0.5550544 0.6863103 -0.7241612 0.06759315 -0.7055532 0.5999893 -0.3771044 0.6555628 -0.7523754 -0.06456685 -0.7050718 0.676118 -0.2138651 0.6155368 -0.7656725 -0.186709 -0.6862984 0.7241725 -0.06759202 0.5666129 -0.7663132 -0.3028433 -0.6555609 0.7523771 0.06456476 0.50739 -0.7544308 -0.4164009 -0.61554 0.7656667 0.1867223 0.434948 -0.7279919 -0.529951 -0.566601 0.7663121 0.302868 0.3446029 -0.6823704 -0.6446857 0.09223842 0.3382782 0.9365147 -0.5073873 0.7544245 0.4164158 0.2300974 -0.6097124 -0.7584893 0.2878673 0.1286638 0.948988 -0.4349285 0.7279627 0.5300072 0.08496111 -0.4987487 -0.8625725 0.4688041 -0.1043912 0.8771119 -0.3445921 0.6823456 0.6447176 -0.09224408 -0.3382991 -0.9365068 0.6013885 -0.3182031 0.7328565 -0.2300878 0.6096865 0.7585132 -0.2878869 -0.1286702 -0.9489811 -0.7300907 0.6795566 -0.07190483 0.5669125 -0.7660322 -0.3029934 -0.6841029 0.726267 0.0673756 0.4969564 -0.7659637 -0.4078408 -0.6291443 0.7534977 0.190837 0.4172251 -0.7533206 -0.5083616 -0.5669189 0.7660157 0.3030229 0.3242269 -0.7259056 -0.606579 0.08539986 0.4908618 0.8670419 -0.496949 0.7659671 0.4078433 0.2131195 -0.6789652 -0.702557 0.2742908 0.3273627 0.9042114 -0.4172239 0.7533165 0.5083684 0.07808709 -0.6044074 -0.7928392 0.4682681 0.1154255 0.8760148 -0.3242324 0.7259178 0.6065615 -0.0854029 -0.4908843 -0.8670289 0.6299989 -0.1176931 0.7676262 -0.2131227 0.678982 0.7025399 -0.274304 -0.3273784 -0.9042017 0.7299063 -0.3292444 0.5990284 -0.07808953 0.6044256 0.7928252 -0.4682737 -0.1154285 -0.8760114 0.767703 -0.4922006 0.4103301 -0.630005 0.1177039 -0.7676194 0.7617154 -0.6053111 0.2310591 -0.7299097 0.3292509 -0.5990206 0.7300906 -0.6795569 0.07190364 -0.7677036 0.4922086 -0.4103193 0.6841061 -0.7262643 -0.06737238 -0.7617124 0.605319 -0.2310484 0.6291433 -0.753496 -0.1908469 -0.6723645 0.02571135 0.7397736 3.33077e-6 -0.05005443 0.9987465 -0.2134663 0.03393411 0.9763609 2.04943e-6 -0.03981411 0.9992071 -0.1578677 -0.6293895 0.7608854 -0.08272802 -0.6357288 0.7674667 0.1541993 -0.6319168 0.7595418 -0.9245141 0.07262974 0.3741641 0.1119646 0.9884992 0.1016532 0.4156661 0.9043451 0.09685939 0.9960281 -0.08823025 -0.01198184 0.7512121 0.6540574 0.0888226 0.3738666 0.9218776 0.1018111 0.4134439 -0.8081566 -0.4194604 -0.07813441 0.4759243 -0.8760086 0.2091603 -0.4088417 0.8883134 0.8982464 0.3610485 0.2505944 -0.8983989 -0.3898028 -0.2023203 0.1671056 -0.02664333 0.985579 0.002368628 -0.02552592 0.9996714 -0.08142882 -0.02449679 0.9963781 0.2371318 -0.964047 -0.1199247 0.2591295 -0.9634082 -0.06853127 0.0894531 -0.9936068 -0.06887477 0.8728539 0.02076393 0.4875397 0.5984277 0 -0.8011768 0.2795536 0 -0.9601301 0.2135916 0 0.9769231 0.584483 0 0.8114061 0.2780046 0.1051218 -0.9548105 0.8730421 0 0.4876449 0.8460307 0 0.5331343 0.2785511 -0.08460104 -0.9566881 0.9934881 -0.1127263 0.01656544 0.8271496 0 -0.5619819 0.5977846 0.0463593 -0.8003152 0.9530486 0 -0.3028175 0.1418641 -0.07296144 0.9871937 0.9461479 -0.1201208 -0.3006247 0.9871889 0 0.1595564 0.2134777 0.03393477 0.9763584 0.2134508 0.03393459 0.9763643 0 1 -1.99881e-5 0.5842515 0.02818995 0.811083 0.5843847 0.01737731 0.8112907 0.8267453 0.03126555 -0.561707 0.8457628 0.0251494 0.532966 0.8915166 0.07897233 0.4460512 0.7226935 -0.05230015 0.6891872 0.9526404 0.02926999 -0.3026877 0.9865871 0.03491026 0.1594591 0.4080419 -0.1276675 -0.9039927 0.954935 -0.209595 0.2101644 0.9832081 -0.1726632 0.05907094 0.9764205 -0.2152631 0.01628094 0.5545315 -0.138207 0.8206057 0.9726929 -0.08967453 0.2140726 0.5580239 -0.08187311 0.8257762 0.5956465 -0.09630405 -0.7974528 0.8222874 -0.1082689 -0.5586782 0.7434667 -0.09103119 0.6625487 -0.2178455 -0.07052475 -0.973432 0.01006668 -0.1418935 0.9898307 0.9760905 -0.2167412 0.01645022 0.7347596 -0.1771425 0.6547893 0.006281256 0.006263554 0.9999607 -1.02607e-6 -0.6559132 0.7548364 1.378e-6 -0.04226994 -0.9991063 -1.34145e-6 -0.09288376 0.995677 1.36464e-6 -0.08345377 -0.9965117 6.77573e-7 -0.8699308 -0.493174 1.34445e-6 0.07017725 -0.9975346 -1.39931e-6 -0.03981405 0.9992071 1.35447e-6 -0.1049725 -0.9944751 1.37056e-6 -0.05044913 -0.9987267 -1.35696e-6 -0.1499255 0.9886974 1.37696e-6 0.02935576 -0.9995691 -1.3532e-6 -0.05005449 0.9987466 -1.31171e-6 0.1928684 0.9812247 1.36204e-6 -0.01648813 -0.9998641 -1.36669e-6 -0.0611068 0.9981312 -1.32295e-6 0.05412054 0.9985345 1.34265e-6 0.03578191 -0.9993597 -1.36295e-6 0.006263732 0.9999805 -1.09911e-6 0.5995209 0.8003591 1.28634e-6 0.3216837 -0.9468473 1.37651e-6 0.02840113 -0.9995967 -1.36166e-6 -0.04379767 0.9990404 9.27749e-7 0.7376314 -0.6752036 -0.01474392 -0.104961 -0.9943671 0.08237016 0.5974802 0.797642 0.04685491 0.3213288 -0.9458079 0.003809988 0.02840089 -0.9995895 0.001436829 -0.04379773 0.9990394 0.1021326 0.7337669 -0.6716808 -0.0104019 -0.6558787 0.7547947 -0.00210905 -0.04226988 -0.9991041 -9.83371e-4 -0.09288364 0.9956765 -0.00678718 -0.08345293 -0.9964887 -0.009728729 -0.8698893 -0.4931511 0.005681037 0.07017624 -0.9975185 0.001835823 -0.03981399 0.9992055 -0.009598731 -0.1049678 -0.9944293 -0.002996861 -0.05044883 -0.9987222 -0.002575397 -0.1499251 0.988694 0.1353845 0.983397 0.1208368 0.003867983 0.02935552 -0.9995616 9.90361e-4 -0.05005419 0.998746 0.02900725 0.1927878 0.9808117 3.06239e-4 -0.01648807 -0.9998641 4.22671e-4 -0.0611068 0.9981312 0.0114963 0.0541169 0.9984685 0.00475502 0.0357815 -0.9993484 0.1902936 0.5885629 0.7857366 -0.004811406 -0.05044859 -0.9987151 -0.00537759 -0.149923 0.9886831 0.1998899 0.9725077 0.1194697 0.005787789 0.02935516 -0.9995524 8.11304e-4 -0.0500546 0.9987462 0.04307818 0.1926901 0.9803136 2.36383e-4 -0.01648813 -0.9998641 -1.17203e-4 -0.0611068 0.9981312 0.01682078 0.05411267 0.9983932 0.007111549 0.03578096 -0.9993344 0.008919239 0.006263613 0.9999407 0.1224598 0.5950056 0.7943375 0.06963783 0.3209029 -0.9445486 0.005694866 0.02840065 -0.9995804 0.001513242 -0.04379767 0.9990393 0.1514236 0.7291301 -0.6674131 -0.02231055 -0.6557513 0.7546473 -0.003465831 -0.04226964 -0.9991002 -0.002468764 -0.0928834 0.995674 -0.01053386 -0.08344995 -0.9964563 -0.02386647 -0.8696801 -0.4930385 0.008817672 0.07017457 -0.9974958 0.002121269 -0.03981393 0.9992049 -0.008274137 -0.05044734 -0.9986925 0.1099702 0.3197333 -0.9411044 0.008905053 0.0284 -0.999557 0.005240142 -0.04379719 0.9990268 0.234314 0.7170957 -0.6564074 -0.004410088 -0.6559087 0.7548274 -0.00402075 -0.04226952 -0.9990983 6.49395e-4 -0.09288346 0.9956768 -0.01474082 -0.08344578 -0.9964033 0.004700422 -0.8699213 -0.4931682 0.01232177 0.07017195 -0.9974588 0.006138145 -0.03981339 0.9991883 -0.02129411 -0.1049491 -0.9942497 -0.006043016 -0.05044788 -0.9987084 -0.001517653 -0.1499252 0.9886962 0.3051302 0.9452049 0.1161181 0.00902307 0.02935463 -0.9995284 0.004296779 -0.05005383 0.9987373 0.06850552 0.1924158 0.9789195 0.001358687 -0.01648825 -0.9998632 0.003204286 -0.06110638 0.9981262 0.02796363 0.05409926 0.9981439 0.01110279 0.03577977 -0.999298 0.01608544 0.006263077 0.9998511 0.3808864 0.5543249 0.7400334 0.002618491 -0.149925 0.9886939 0.4445412 0.8890752 0.1092172 0.01392692 0.0293529 -0.9994721 0.008823275 -0.0500524 0.9987077 0.106427 0.1917732 0.9756518 0.002812802 -0.01648783 -0.9998601 0.007393658 -0.06110501 0.998104 0.04439812 0.05406731 0.9975498 0.01714771 0.03577685 -0.9992127 0.02639925 0.006261348 0.9996319 0.2875756 0.5741962 0.7665501 0.1695961 0.3170236 -0.9331309 0.01376396 0.02839845 -0.999502 0.01016974 -0.0437957 0.9989888 0.3499922 0.6909797 -0.6324971 0.01514488 -0.6558387 0.7547492 -0.00520724 -0.04226934 -0.9990928 0.004253327 -0.09288287 0.9956681 -0.021537 -0.08343482 -0.9962805 0.03752076 -0.8693132 -0.4928354 0.01798796 0.07016575 -0.9973732 0.01085448 -0.03264611 0.9994081 -0.03163915 -0.1049202 -0.9939773 0.07199835 -0.1495363 0.9861315 0.2334362 0.3128001 -0.9206866 0.01871657 0.02839607 -0.9994215 0.02554488 -0.04378348 0.9987145 0.4572257 0.6560167 -0.6004889 0.1434416 -0.6491301 0.7470306 -0.001377284 -0.04226982 -0.9991054 0.02417236 -0.09285628 0.9953861 -0.02223014 -0.0834341 -0.9962654 0.2171812 -0.8491626 -0.4814096 0.01848059 0.07016521 -0.9973642 0.04851448 -0.03976714 0.9980306 -0.03584766 -0.104905 -0.9938361 -0.005213201 -0.05044859 -0.9987131 0.03165155 -0.14985 0.988202 0.5626289 0.8205418 0.100797 0.01882582 0.02935045 -0.999392 0.02099347 -0.06744766 0.997502 0.148938 0.1907178 0.9702805 0.007858633 -0.01648759 -0.9998333 0.02386534 -0.06108933 0.997847 0.06708484 0.05399876 0.996285 0.02324455 0.0357722 -0.9990896 0.0445944 0.006256937 0.9989856 0.3604694 0.3000546 -0.8831927 0.6582856 0.7471482 0.09181338 0.02388364 0.02934741 -0.999284 0.04498606 -0.050004 0.9977355 0.1940808 0.1892027 0.9625669 0.01458501 -0.01648598 -0.9997577 0.04603105 -0.06104135 0.9970733 0.09304648 0.05388611 0.9942025 0.02956193 0.03576642 -0.9989229 0.06665837 0.006249964 0.9977563 0.4679644 0.5298241 0.707316 0.2987416 0.3069887 -0.9036103 0.02387022 0.02839291 -0.9993119 0.04580521 -0.04375183 0.9979918 0.5523296 0.6149148 -0.5628604 0.3095426 -0.6236938 0.717767 0.004696965 -0.04226934 -0.9990952 0.05158072 -0.09275949 0.9943517 -0.02037352 -0.08343487 -0.996305 0.4310539 -0.7849567 -0.4450119 0.01680678 0.07016783 -0.9973936 0.04761826 -0.03976905 0.9980736 -0.03761005 -0.1048981 -0.9937716 1.82691e-4 -0.05044877 -0.9987266 0.1896536 -0.1472049 0.9707534 0.0291329 0.02838903 -0.9991723 0.06430739 -0.04370731 0.9969726 0.6308524 0.5723377 -0.5238845 0.4379848 -0.589654 0.678585 0.009855091 -0.04226785 -0.9990578 0.07611638 -0.09261429 0.9927884 -0.01977002 -0.08343696 -0.9963169 0.5772837 -0.7103308 -0.4027081 0.01619219 0.07016772 -0.9974038 0.06635743 -0.03972607 0.9970048 -0.04071694 -0.1048856 -0.9936504 0.004588067 -0.05044883 -0.9987161 0.1077918 -0.1490528 0.9829365 0.7310787 0.677205 0.08317029 0.02906709 0.0293433 -0.9991468 0.06376135 -0.04995262 0.9967143 0.238089 0.187321 0.9530082 0.02071553 -0.01648432 -0.9996495 0.06608724 -0.06097275 0.9959493 0.1181462 0.05374252 0.9915409 0.03602403 0.03575885 -0.9987111 0.0875138 0.006239175 0.9961438 0.5443701 0.5029053 0.6713774 0.04011559 0.02837884 -0.9987921 0.8038514 0.5903889 0.0725528 0.03610795 0.02933615 -0.9989173 0.1046196 -0.04978018 0.9932658 0.3020816 0.1838569 0.935384 0.0341528 -0.01647895 -0.9992808 0.1104464 -0.06073307 0.9920248 0.1605892 0.05341833 0.9855748 0.04488152 0.03574573 -0.9983526 0.1266992 0.006212592 0.9919218 0.633544 0.4638555 0.6192416 0.4440492 0.2882331 -0.8483762 0.03641843 0.02838212 -0.9989336 0.1040251 -0.04356133 0.9936203 0.7171231 0.5140904 -0.4705801 0.6537607 -0.4963288 0.5711871 0.02400392 -0.0422576 -0.9988184 0.1319774 -0.09207165 0.9869675 -0.0102598 -0.08344852 -0.9964593 0.7772369 -0.5473677 -0.3103085 0.007991969 0.07017517 -0.9975028 0.1061258 -0.03958868 0.9935644 -0.03622514 -0.1049023 -0.9938226 0.01810824 -0.0504409 -0.9985629 1 -2.45236e-5 0 1 8.44017e-6 0 1 -1.51152e-5 0 1 -1.10273e-5 0 1 -1.29701e-4 0 1 6.62997e-5 0 1 -9.70923e-7 0 1 -4.79798e-6 0 1 -2.17039e-5 0 1 1.56533e-5 0 1 1.18363e-5 0 0.1402702 -0.04336351 0.9891633 0.753793 0.4847124 -0.443678 0.7764969 -0.4133052 0.4756381 0.03929084 -0.0422368 -0.9983348 0.1849311 -0.09128075 0.9785031 0.00462532 -0.0834552 -0.9965009 0.8679423 -0.4320652 -0.2449408 -0.004691541 0.07017821 -0.9975235 0.1420781 -0.03941148 0.9890706 -0.02373796 -0.1049425 -0.994195 0.03356063 -0.05042064 -0.9981641 0.2662333 -0.1445114 0.9530144 0.8323217 0.5501574 0.0675835 0.03952181 0.02933305 -0.9987881 0.1422914 -0.04954534 0.9885841 0.3391577 0.1814392 0.9230666 0.04669594 -0.01646941 -0.9987735 0.1518141 -0.06039643 0.9865621 0.1909966 0.05312538 0.9801521 0.04927229 0.03573834 -0.9981458 0.1583725 0.006183445 0.9873602 0.6731331 0.4433616 0.5918804 0.4883417 0.2807193 -0.8262682 1.28526e-6 0.02840107 -0.9995967 -1.33283e-6 -0.04379773 0.9990405 8.08106e-7 0.7376343 -0.6752005 -1.04634e-6 -0.6559132 0.7548364 -1.33892e-6 -0.0928837 0.9956771 1.42639e-6 -0.08345466 -0.9965116 6.4093e-7 -0.869929 -0.4931769 1.25533e-6 0.07017725 -0.9975346 -1.15621e-6 -0.03981411 0.9992071 1.40935e-6 -0.1049726 -0.9944752 1.37134e-6 -0.05044907 -0.9987267 -1.3886e-6 -0.1499256 0.9886973 -1.74754e-7 0.9925366 0.1219472 1.32854e-6 0.02935576 -0.9995691 -3.57895e-7 -0.05005443 0.9987465 -1.37105e-6 -0.0500608 0.9987463 -1.28393e-6 0.192868 0.9812248 1.40802e-6 -0.01648807 -0.9998641 -1.35245e-6 -0.0611068 0.9981313 -1.37251e-6 0.05412054 0.9985345 1.1695e-6 0.03578186 -0.9993597 -1.02626e-6 0.5995202 0.8003598 1.19514e-6 0.3216835 -0.9468473 0 0 -1 3.5738e-7 0 -1 0 0 -1 2.13049e-7 0 1 4.11055e-7 0 1 -1.38401e-7 0 1 -2.1167e-7 0 1 0 0 1 0 0 1 0.9127542 0.4085094 0 0.571914 -0.8203136 0 0.1534348 0.9881589 0 0.7806438 0.6249764 0 -0.003878116 0.9999926 0 0.7967543 -0.6043034 0 0.9633556 0.2682277 0 -0.5461251 -0.8377037 0 0.1934596 -0.9811083 0 -0.9992485 0.03876358 0 0.64788 0.7617425 0 0.9861939 -0.1655952 0 -0.06463521 -0.997909 0 0.941428 0.2106077 -0.2633587 0.507911 0.2139855 -0.834408 1 0 0 1 0 0 1 0 0 1 0 0 1 1.96645e-7 -1.44741e-6 1 0 0 1 0 0 1 0 0 1 -4.90117e-6 -3.39929e-6 1 -6.55345e-7 7.43702e-7 1 0 0 0.2092427 0.2007466 0.9570363 0.9003193 0.2061561 0.3833079 0.83168 0.2134217 -0.512601 0.9744728 0.2057824 0.08975726 0.4886419 0.2055885 0.8479165 0.707821 0.2082287 0.675004 0.1645308 0.07189226 -0.9837485 0.9138768 0.3153917 -0.2556507 0.203718 0.3005383 0.9317595 0.6877725 0.3110998 0.6558856 0.4924053 0.3211857 -0.8089356 0.9473412 0.3081085 0.08725821 0.1545476 0.3089287 -0.9384446 0.8066034 0.3197482 -0.497144 0.4751431 0.3073274 0.8244932 0.8752505 0.3083488 0.3726361 0.4079337 0.5766422 0.7078658 0.6849194 0.5938658 -0.4221481 0.1757081 0.5685649 0.8036546 0.1288926 0.5831904 -0.8020448 0.8139398 0.5760913 0.07497143 0.4167058 0.5980917 -0.6845749 0.5890661 0.5808898 0.5617547 0.7797041 0.58693 -0.2181165 0.7518646 0.5763958 0.3201054 0.3960291 0.647973 -0.6506089 0.1220118 0.6334689 -0.764088 0.6515654 0.6435768 -0.4015863 0.3891291 0.6266106 0.6752317 0.7173832 0.6261605 0.3054249 0.7766516 0.6258555 0.07153552 0.7426471 0.6366434 -0.2077513 0.1677916 0.6187769 0.7674381 0.5616046 0.6306914 0.535564 0.3493403 0.7144926 0.6061862 0.5819826 0.7298154 -0.3587003 0.1509172 0.7076414 0.6902664 0.1076872 0.7214381 -0.6840545 0.6979509 0.7132543 0.0642876 0.3529584 0.7342974 -0.5798515 0.5037403 0.717965 0.4803873 0.665008 0.7232955 -0.1860326 0.644587 0.7135783 0.2744333 0.5401384 0.8095493 0.2299581 0.5547862 0.8173903 -0.1551943 0.1273739 0.8027278 0.5825839 0.4219514 0.8124306 0.402385 0.2939122 0.8249115 -0.4828425 0.08838772 0.8136126 -0.5746497 0.5845773 0.8095495 0.05384248 0.4845445 0.8222082 -0.2986479 0.2934715 0.8090372 0.5092479 0.0653091 0.8946051 -0.4420596 0.4534527 0.8903012 0.04176592 0.2250621 0.9014651 -0.3697402 0.3260407 0.8927617 0.3109244 0.4283726 0.8956208 -0.1198347 0.4187282 0.8904395 0.1782817 0.2266947 0.890993 0.3933714 0.3727592 0.8990371 -0.2297452 0.09844273 0.8874526 0.4502632 0 1 8.71771e-6 0 0.7730091 -0.6343949 0 0.8819199 -0.4713994 0 0.7730113 0.6343922 0 0.9569398 -0.2902866 0 -0.9569405 -0.290284 0 0.6343923 0.7730113 0 0.9951853 -0.09801167 0 -0.8819205 -0.4713982 0 0.2902832 0.9569408 0 -0.6343955 -0.7730087 0 0.09801822 0.9951847 0 -0.09801888 0.9951847 0 -0.2902822 -0.9569412 0 -0.2902868 0.9569398 0 -0.09802103 -0.9951844 0 -0.4713956 0.8819219 0 0.09802168 -0.9951843 0 -0.6343955 0.7730087 0 0.2902843 -0.9569405 0 -0.7730113 0.6343922 0 0.4713965 -0.8819215 0 -0.8819223 0.471395 0 0.9569417 0.2902806 6.46561e-4 -0.4713478 -0.8819472 0.001326084 -0.09801077 0.9951846 8.04134e-4 -0.2902726 -0.9569438 0.00113815 -0.2902876 0.9569388 9.79285e-4 -0.09799069 -0.9951869 9.53943e-4 -0.4713975 0.8819205 0.001164555 0.09800481 -0.9951853 7.8112e-4 -0.6343816 0.7730198 0.001351594 0.290119 -0.9569897 6.25983e-4 -0.773036 0.6343621 0.001536548 0.4714391 -0.8818974 4.94853e-4 -0.8818799 0.4714738 0.002201616 0.9951795 0.09804582 0.001709342 0.6343963 -0.7730062 3.92652e-4 -0.9569661 0.2901996 0.002198934 0.9569707 0.2901763 0.001864314 0.7729369 -0.6344803 3.2258e-4 -0.9951826 0.09803891 0.002159595 0.8818947 0.4714415 0.001995205 0.8819607 -0.4713189 2.88681e-4 -0.9951953 -0.09790921 0.00208503 0.7730609 0.6343284 0.002097606 0.9569165 -0.2903558 2.91036e-4 -0.9569159 -0.290365 0.001978576 0.6344128 0.7729919 0.002167224 0.9951796 -0.09804582 3.30787e-4 -0.8819344 -0.4713723 0.001843869 0.4714281 0.8819026 4.04975e-4 -0.7730542 -0.6343399 0.001685798 0.2902347 0.9569541 5.1191e-4 -0.6344362 -0.7729751 0.001511156 0.09803259 0.9951822 0.8893298 0.451074 0.07500022 -0.537165 -0.8323426 0.1366006 0.03415393 0.9529522 -0.3011903 0.7964499 0.6047016 0.001925289 -0.3805252 -0.9031959 0.1985896 -0.1473308 0.9293179 -0.3386178 0.6771847 0.7325428 -0.06929731 -0.2116358 -0.943797 0.2538847 -0.3285538 0.8711209 -0.3649668 0.5371835 0.8323358 -0.136569 -0.03412234 -0.9529481 0.3012069 -0.5016885 0.7781445 -0.3778885 0.380543 0.9031741 -0.1986549 0.1473913 -0.9292722 0.3387166 -0.6598081 0.6506793 -0.3758589 0.2115604 0.9438052 -0.2539176 0.3285609 -0.8711307 0.3649373 -0.7930901 0.4928885 -0.3578677 0.5018917 -0.7780519 0.3778095 -0.8934767 0.3111579 -0.3238523 0.6596686 -0.6508071 0.3758824 -0.954384 0.1152785 -0.2754305 0.7932042 -0.4927489 0.3578069 -0.9729502 -0.0837906 -0.2152833 0.8934588 -0.3112952 0.3237697 -0.9499922 -0.275349 -0.1473017 0.954391 -0.1153155 0.2753913 -0.8892425 -0.4512274 -0.07511103 0.9729369 0.08372801 0.2153682 -0.7963795 -0.6047939 -0.002028524 0.9500134 0.275287 0.1472808 -0.6773473 -0.7323978 0.06924021 -0.895807 0.4399949 0.06272423 0.9538612 0.07977432 0.2894564 -0.9572668 0.2841558 -0.05381405 0.8806847 0.2657341 0.3921477 -0.9788503 0.1077294 -0.173915 0.7643624 0.4368044 0.4742913 -0.9538331 -0.07980334 -0.289541 0.6157813 0.5816772 0.5314745 -0.8806078 -0.265847 -0.3922442 0.4473769 0.6948537 0.5630562 -0.76445 -0.4366837 -0.4742611 0.2700378 0.7752387 0.5710381 0.2484966 -0.8393273 -0.483507 -0.615803 -0.581684 -0.5314419 0.09193783 0.8243187 0.5586109 0.4059637 -0.8092107 -0.4247018 -0.4471845 -0.6949743 -0.5630603 -0.08193004 0.8448888 0.5286306 0.55311 -0.7547281 -0.3527814 -0.2700014 -0.7752245 -0.5710746 -0.2484563 0.8393546 0.4834804 0.6864944 -0.6758774 -0.2681702 -0.09194648 -0.8243175 -0.5586113 -0.4058861 0.8092493 0.4247024 0.802892 -0.5710554 -0.1710565 0.08176094 -0.8448754 -0.5286784 -0.5530876 0.7548181 0.3526244 0.8957631 -0.4400829 -0.06273353 -0.6866403 0.6757837 0.268033 0.9572812 -0.2840616 0.05405217 -0.8028511 0.5711116 0.1710603 0.9788582 -0.1077227 0.1738746 1 4.81119e-7 1.87387e-7 1 -1.98777e-6 0 1 -9.52424e-7 4.05335e-7 1 -8.46831e-7 0 1 0 4.91887e-7 1 1.99914e-6 0 1 0 6.05636e-7 1 6.25475e-7 0 1 -1.41353e-6 6.29134e-7 1 -1.49936e-6 0 1 -2.63588e-6 6.29133e-7 1 -4.98622e-7 0 1 0 6.05637e-7 1 -9.93882e-7 0 1 1.32234e-6 5.59389e-7 1 0 0 1 0 4.91892e-7 1 -6.84783e-7 0 1 1.33204e-6 4.05337e-7 1 0 1.12155e-6 1 9.67808e-7 0 1 0 1.87382e-7 1 4.72742e-7 5.5939e-7 -0.9971236 -0.07252901 -0.02200448 -0.9973397 0.0462433 0.0563482 -0.9976793 0.067761 -0.006673634 -0.9972094 -0.06584089 -0.03519177 -0.9972522 0.03492289 0.06533461 -0.9972969 -0.05679976 -0.04661375 -0.9971647 0.02184367 0.07200962 -0.9973834 -0.0458678 -0.05588078 -0.9970815 0.007484257 0.07597756 -0.997465 -0.03354394 -0.06275779 -0.9970067 -0.007579565 0.07694464 -0.997539 -0.0203548 -0.06709551 -0.9969444 -0.02267354 0.07475179 -0.9976035 -0.006782591 -0.06885612 -0.9968984 -0.03709912 0.0694065 -0.9976574 0.00670588 -0.06808066 -0.996872 -0.05013805 0.06109398 -0.9976993 0.01968157 -0.06487637 -0.9968667 -0.06114476 0.05018293 -0.9977288 0.03174692 -0.05941021 -0.9968829 -0.06957995 0.03719377 -0.9976313 0.06845867 0.006743192 -0.9977446 0.04258757 -0.05188447 -0.9969194 -0.07505506 0.02276962 -0.9975717 0.06664806 0.02021735 -0.9977483 0.05184751 -0.04254943 -0.9969745 -0.07735615 0.007618844 -0.9975022 0.06229662 0.03329807 -0.9977383 0.05928212 -0.03168678 -0.9970437 -0.07646626 -0.007527053 -0.9974238 0.05545097 0.04550665 -0.9977152 0.06465208 -0.01961195 -0.9998244 -0.01188939 0.01448571 -0.9998211 0.001854062 -0.01882314 -0.9998237 -0.008850336 0.01656055 -0.9998221 -0.001849472 -0.01877641 -0.9998229 -0.005463004 0.01801037 -0.9998229 -0.005461871 -0.01801085 -0.999822 -0.001850306 0.01877564 -0.9998237 -0.008853852 -0.01656073 -0.9998212 0.001852989 0.01882237 -0.9998245 -0.01188635 -0.01448643 -0.9998202 0.005503356 0.01814335 -0.999825 -0.0144605 -0.0118674 -0.9998194 0.008958637 0.01675969 -0.9998255 -0.01647531 -0.008806407 -0.999817 0.01903933 -0.001875162 -0.9998188 0.01208019 0.01472067 -0.9998258 -0.01786035 -0.005417764 -0.9998172 0.01829814 -0.005550622 -0.9998181 0.01474654 0.01210212 -0.999826 -0.01856571 -0.001828432 -0.9998175 0.01684772 -0.009005367 -0.9998175 0.01684814 0.009005188 -0.9998261 -0.01856422 0.001828372 -0.9998181 0.01474654 -0.01210206 -0.9998172 0.01829844 0.005550801 -0.9998258 -0.01785993 0.005417644 -0.9998187 0.01208037 -0.01472157 -0.9998171 0.01903855 0.00187534 -0.9998255 -0.01647561 0.008806288 -0.9998194 0.008957624 -0.0167604 -0.999825 -0.01446133 0.0118674 -0.9998203 0.005503535 -0.01814401 -0.9958451 0.00891745 0.09062612 -0.9950554 0.04681015 -0.08759951 -0.9958974 -0.008860051 0.09005576 -0.9950411 0.0630998 -0.07688778 -0.9959353 -0.02614426 0.08619523 -0.9958578 -0.09048646 0.008916199 0.9950495 -0.0768224 0.06304681 -0.9959597 -0.04234582 0.07919037 -0.9957958 -0.09116029 -0.008982241 0.9950779 -0.0873956 0.046714 -0.9959707 -0.05689924 0.06931835 -0.9957224 -0.08841794 -0.02681994 0.9951249 -0.09437662 0.02862769 -0.9959637 -0.06937325 0.05695426 -0.9956403 -0.08226329 -0.04396742 0.9951881 -0.09751111 0.00960499 -0.995944 -0.07935965 0.04239922 -0.995552 -0.07282656 -0.05977052 0.9952642 -0.09673923 -0.009528934 -0.9959083 -0.08647465 0.02624756 -0.9954604 -0.06037962 -0.07357323 0.9953495 -0.09218174 -0.02796322 -0.9953704 -0.04529243 -0.08477312 0.9954398 -0.08412909 -0.044968 -0.9952824 -0.0281971 -0.09283274 0.9955313 -0.07299774 -0.05990743 -0.9952045 -0.00958687 -0.09734529 0.9956206 -0.05930835 -0.0722652 -0.9951384 0.009653925 -0.09801191 0.9957043 -0.04364687 -0.08165818 -0.9950875 0.02871596 -0.0947442 0.9957798 -0.02664166 -0.08782351 0 -0.8251052 0.5649792 0 -0.6291615 0.7772747 0 -0.912868 0.4082549 0 0.251903 0.9677526 0 -0.9508627 -0.3096132 0 -0.3020728 -0.9532849 0 -0.9998362 0.01810818 0 -0.1347665 0.9908775 0 -0.1995124 -0.9798954 0 -0.9995467 -0.03011161 0 0.3268293 0.9450835 0 0.5708322 0.8210667 0 -0.9886335 -0.1503464 0 -0.6918593 -0.7220324 0.4668425 0.7264956 0.5042443 0.7730137 0 -0.6343894 0.8819192 0 -0.4714006 0.995185 0 -0.09801548 -0.8819192 0 -0.4714006 0.9951848 0 0.09801745 -0.7730133 0 -0.6343899 0.9569407 0 0.2902836 -0.6343886 0 -0.7730144 0.8819255 0 0.4713889 -0.4713938 0 -0.8819229 -0.09801554 0 0.9951849 0.7730128 0 0.6343904 -0.2902823 0 -0.9569411 -0.290284 0 0.9569405 0.6343889 0 0.7730141 -0.4713923 0 0.8819237 0.4714055 0 0.8819167 -0.6343886 0 0.7730144 0.2902823 0 0.9569411 0.290285 0 -0.9569404 -0.7730139 0 0.6343892 0.09801667 0 0.9951848 0.471407 0 -0.8819158 0.6343961 0 -0.7730082 -0.5926309 -0.8033568 0.05836576 0.5658415 0.7670322 -0.302465 -0.5926376 -0.8033512 -0.05837434 0.5842505 0.7919844 -0.1772348 -0.5842456 -0.7919865 -0.1772416 0.5926381 0.8033511 -0.05837041 -0.5658414 -0.7670323 -0.302465 0.5926308 0.8033569 0.05836576 -0.5336738 -0.7234282 -0.4380001 0.5842517 0.7919861 0.1772232 -0.4809969 -0.6520234 -0.5860952 0.5658425 0.7670429 0.3024364 -0.3972263 -0.5384641 -0.7431471 -0.09716981 -0.1317205 0.986513 0.5336846 0.7234444 0.43796 -0.2701269 -0.3661739 -0.8904764 -0.2701275 -0.3661752 0.8904757 0.4810077 0.6520341 0.5860744 -0.09715938 -0.1317063 -0.9865159 -0.3972304 -0.5384709 0.74314 0.3972304 0.5384709 0.74314 0.09716099 0.1317068 -0.9865157 -0.4810026 -0.6520262 0.5860873 0.2701308 0.3661786 0.8904733 0.2701283 0.3661751 -0.8904755 -0.5336816 -0.723438 0.4379743 0.09716624 0.1317144 0.9865141 0.3972267 0.538464 -0.7431471 -0.5658463 -0.7670392 0.3024383 0.480997 0.6520233 -0.5860951 -0.5842514 -0.7919864 0.1772233 0.5336722 0.7234302 -0.4379986 0.6496337 0.7575502 -0.06398266 -0.5663216 -0.7665793 -0.3027145 0.6313204 0.7730253 0.06218147 -0.5169162 -0.7435158 -0.4242427 0.6037251 0.775872 0.1831359 -0.4514501 -0.7025493 -0.5501068 0.5663287 0.7665755 0.3027108 -0.3636813 -0.6362349 -0.6803978 -0.09650814 0.1748763 0.9798493 0.5169155 0.7435145 0.4242457 -0.2455576 -0.5332825 -0.809513 -0.2896937 -0.06339901 0.9550173 0.4514521 0.7025524 0.5501011 -0.09062874 -0.3808791 -0.9201725 -0.4512259 -0.2892968 0.8442172 0.3636743 0.6362239 0.6804118 0.09650641 -0.174876 -0.9798495 -0.560684 -0.4678134 0.683216 0.2455555 0.5332806 0.8095149 0.2896962 0.06340157 -0.9550165 -0.6225455 -0.5927845 0.5109244 0.09062671 0.3808757 0.9201743 0.4512394 0.2893078 -0.8442061 -0.6508102 -0.6748588 0.3478675 0.5606849 0.4678178 -0.6832123 -0.6573814 -0.7266927 0.1994178 0.6225414 0.5927827 -0.5109314 -0.6496354 -0.7575485 0.0639854 0.65081 0.6748547 -0.3478758 -0.6313231 -0.7730233 -0.06217932 0.6573868 0.7266881 -0.1994167 -0.6037308 -0.7758664 -0.1831405 -0.6763321 -0.4842249 0.5550686 0.08495509 0.4987188 0.8625904 0.4688138 0.1043951 -0.8771062 -0.7055521 -0.5999668 0.377142 0.6013838 0.3181865 -0.7328677 -0.7050663 -0.6761184 0.2138819 0.6763237 0.484225 -0.5550789 -0.6863103 -0.7241612 0.06759315 0.7055588 0.5999583 -0.3771432 -0.6555628 -0.7523754 -0.06456685 0.7050614 0.6761246 -0.2138785 -0.6155368 -0.7656725 -0.186709 0.6863136 0.7241576 -0.06759738 -0.5665923 -0.7663213 -0.302861 0.6555606 0.7523767 0.06457209 -0.5073809 -0.7544248 -0.4164229 0.6155332 0.7656726 0.1867203 -0.4349263 -0.7279565 -0.5300173 0.566601 0.7663121 0.302868 -0.3445962 -0.6823539 -0.6447067 -0.09223842 0.3382782 0.9365147 0.5073873 0.7544245 0.4164158 -0.230085 -0.6096796 -0.7585194 -0.2878673 0.1286638 0.948988 0.4349285 0.7279627 0.5300072 -0.08495545 -0.4987154 -0.8625924 -0.4688041 -0.1043912 0.8771119 0.3445921 0.6823456 0.6447176 0.09223318 -0.3382591 -0.9365223 -0.6013885 -0.3182031 0.7328565 0.2300878 0.6096865 0.7585132 0.2878627 -0.1286593 -0.94899 0.7301108 0.6795344 -0.07191193 -0.5669125 -0.7660322 -0.3029934 0.6841218 0.7262487 0.06738227 -0.4969557 -0.7659452 -0.4078763 0.6291337 0.7535029 0.190852 -0.4172093 -0.7532926 -0.5084159 0.5669032 0.7660307 0.3030146 -0.3242211 -0.7258843 -0.6066075 -0.08539986 0.4908618 0.8670419 0.496949 0.7659671 0.4078433 -0.2131124 -0.6789472 -0.7025766 -0.2742908 0.3273627 0.9042114 0.4172239 0.7533165 0.5083684 -0.07808643 -0.6044076 -0.7928392 -0.4682681 0.1154255 0.8760148 0.3242324 0.7259178 0.6065615 0.08539646 -0.4908427 -0.8670531 -0.6299989 -0.1176931 0.7676262 0.2131227 0.678982 0.7025399 0.2742787 -0.3273472 -0.9042207 -0.7299063 -0.3292444 0.5990284 0.07808953 0.6044256 0.7928252 0.4682277 -0.1154173 -0.8760376 -0.767703 -0.4922006 0.4103301 0.6299517 0.1176938 -0.7676646 -0.7617154 -0.6053111 0.2310591 0.7298932 0.329217 -0.5990594 -0.7300906 -0.6795569 0.07190364 0.7676883 0.4921988 -0.4103596 -0.6841061 -0.7262643 -0.06737238 0.7616944 0.6053268 -0.2310873 -0.6291433 -0.753496 -0.1908469 0.6723645 0.02571135 0.7397736 0.5600699 0.1244433 0.8190455 -1.70889e-6 -0.05005091 0.9987468 0.2134711 0.03393417 0.97636 0.213467 0.03393411 0.9763608 -1.05301e-6 -0.03981453 0.9992071 -1.2607e-6 -0.03981286 0.9992072 0.1578677 -0.6293895 0.7608854 0.08272802 -0.6357288 0.7674667 -0.1541993 -0.6319168 0.7595418 -0.2650877 -0.6174739 0.7405771 -0.1261027 0.9863759 0.1056452 -0.4353199 0.8948354 0.09882444 -0.9960281 -0.08823025 -0.01198184 -0.7512118 0.6540578 0.0888226 -0.450793 0.8845097 0.1201187 -0.4668427 -0.7264955 -0.5042443 0.07812649 0.4759239 -0.8760097 -0.2091684 -0.4088656 0.8883004 -0.8982464 0.3610485 0.2505944 0.8983989 -0.3898028 -0.2023203 -0.18726 -0.02945423 0.9818688 -0.02204012 -0.02703362 0.9993916 0.07596927 -0.02546072 0.9967851 -0.2371318 -0.964047 -0.1199247 -0.2591295 -0.9634082 -0.06853127 -0.0894531 -0.9936068 -0.06887477 -0.9200694 0.005471765 0.3917173 -0.5984277 0 -0.8011768 -0.2795536 0 -0.9601301 -0.2135916 0 0.9769231 -0.584483 0 0.8114061 -0.006335735 0.05782818 -0.9983065 -0.8730421 0 0.4876449 -0.8460307 0 0.5331343 -0.2007629 -0.0892288 -0.9755678 -0.9934881 -0.1127263 0.01656544 -0.8271496 0 -0.5619819 -0.5196515 0.03415191 -0.8536955 -0.9530486 0 -0.3028175 -0.1418641 -0.07296144 0.9871937 -0.955879 -0.1181889 -0.2689363 -0.9871889 0 0.1595564 -0.2134663 0.03395318 0.9763603 -0.2134504 0.03393459 0.9763644 0 1 2.97094e-6 0 1 -4.53204e-6 0 1 -9.99405e-6 -0.5842515 0.02818989 0.811083 -0.5843843 0.01737731 0.811291 -0.8507288 0.03643935 -0.5243403 -0.8457629 0.0251494 0.5329659 -0.8915163 0.07897239 0.4460517 -0.7226935 -0.05230015 0.6891872 -0.9624695 0.03405684 -0.2692445 -0.9955056 0.02368158 0.09169447 0.0545842 -0.1486664 -0.9873799 -0.9763343 -0.2154244 0.01906776 -0.9832081 -0.1726632 0.05907058 -0.9760468 -0.2173247 -0.01014029 -0.9913639 -0.1172243 -0.05879032 -0.9726929 -0.08967453 0.2140727 -0.5580239 -0.08187311 0.8257762 -0.6378208 -0.09508073 -0.7642933 -0.7673161 -0.1099427 -0.6317742 -0.7434667 -0.09103119 0.6625486 0.2178457 -0.07052469 -0.9734319 -0.01006668 -0.1418935 0.9898307 -0.9760905 -0.2167412 0.01645016 -0.9822906 -0.1871216 -0.009525954 -0.006281256 0.006263554 0.9999607 1.02607e-6 -0.6559123 0.754837 -1.378e-6 -0.04226988 -0.9991062 1.34145e-6 -0.09288376 0.995677 -1.36466e-6 -0.0834552 -0.9965115 -6.77573e-7 -0.8699308 -0.493174 -1.34445e-6 0.07017725 -0.9975346 1.39931e-6 -0.03981405 0.9992071 -1.35447e-6 -0.1049725 -0.9944751 -1.3401e-6 -0.05044901 -0.9987267 1.32612e-6 -0.1499255 0.9886973 -1.37696e-6 0.02935576 -0.9995691 1.3532e-6 -0.05005449 0.9987466 1.31171e-6 0.1928684 0.9812247 -1.36204e-6 -0.01648813 -0.9998641 1.36669e-6 -0.0611068 0.9981312 1.32295e-6 0.05412054 0.9985345 -1.34265e-6 0.03578191 -0.9993597 1.36295e-6 0.006263732 0.9999805 1.09911e-6 0.5995208 0.8003593 -1.28634e-6 0.3216837 -0.9468473 -1.37651e-6 0.02840113 -0.9995967 1.36166e-6 -0.04379767 0.9990404 -9.27749e-7 0.7376314 -0.6752036 0.01474398 -0.1049616 -0.9943671 -0.08237016 0.5974803 0.7976419 -0.04685515 0.32133 -0.9458075 -0.003809809 0.02840095 -0.9995894 -0.001436889 -0.04379767 0.9990394 -0.1021348 0.7337883 -0.6716572 0.01040196 -0.6558787 0.7547946 0.002108573 -0.0422697 -0.9991041 9.83431e-4 -0.09288364 0.9956765 0.006786823 -0.08345234 -0.9964888 0.009728908 -0.8698894 -0.493151 -0.005680978 0.07017618 -0.9975185 -0.001835823 -0.03981399 0.9992055 0.009598731 -0.1049678 -0.9944293 0.002996563 -0.05044901 -0.9987222 0.002575397 -0.1499251 0.988694 -0.1353845 0.983397 0.1208368 -0.003868401 0.02935546 -0.9995616 -9.90325e-4 -0.05005419 0.998746 -0.02900737 0.1927877 0.9808117 -3.06248e-4 -0.01648807 -0.9998641 -4.22671e-4 -0.0611068 0.9981312 -0.01149618 0.05411696 0.9984685 -0.004754781 0.0357815 -0.9993484 -0.1902936 0.588563 0.7857367 0.004811465 -0.05044829 -0.9987152 0.00537759 -0.1499229 0.9886831 -0.1998899 0.9725076 0.1194697 -0.005787909 0.02935534 -0.9995523 -8.11304e-4 -0.0500546 0.9987462 -0.04307818 0.1926902 0.9803136 -2.36379e-4 -0.01648825 -0.9998641 1.17259e-4 -0.0611068 0.9981312 -0.01682072 0.05411273 0.9983932 -0.007111549 0.03578096 -0.9993343 -0.008919239 0.006263613 0.9999407 -0.1224598 0.5950056 0.7943376 -0.06963741 0.3209015 -0.9445491 -0.005694746 0.02840071 -0.9995805 -0.001513063 -0.04379773 0.9990393 -0.1514235 0.7291335 -0.6674094 0.02231055 -0.6557512 0.7546474 0.003465652 -0.04226946 -0.9991003 0.002468824 -0.0928834 0.995674 0.01053386 -0.08344972 -0.9964564 0.02386647 -0.8696823 -0.4930347 -0.008817553 0.07017451 -0.9974958 -0.00212115 -0.03981393 0.9992049 0.008274137 -0.05044746 -0.9986925 -0.1099708 0.3197319 -0.9411047 -0.008905172 0.02839994 -0.9995571 -0.005240142 -0.04379719 0.9990268 -0.2343159 0.7171006 -0.6564015 0.004409909 -0.655907 0.7548289 0.004020571 -0.0422697 -0.9990981 -6.49455e-4 -0.09288352 0.9956768 0.01474159 -0.08344608 -0.9964033 -0.004700303 -0.8699204 -0.49317 -0.01232135 0.07017177 -0.9974588 -0.006138145 -0.03981345 0.9991883 0.02129405 -0.1049489 -0.9942496 0.006042957 -0.05044811 -0.9987084 0.001517713 -0.1499254 0.9886962 -0.3051304 0.9452049 0.1161181 -0.009023308 0.02935451 -0.9995284 -0.004296898 -0.05005383 0.9987373 -0.06850552 0.192416 0.9789193 -0.001358747 -0.01648789 -0.9998632 -0.003204345 -0.06110644 0.9981262 -0.02796351 0.05409926 0.998144 -0.01110273 0.03577965 -0.999298 -0.01608544 0.006263077 0.9998511 -0.3808863 0.5543255 0.740033 -0.002618491 -0.149925 0.9886939 -0.4445412 0.8890753 0.1092173 -0.01392704 0.02935284 -0.9994721 -0.006070196 -0.0550875 0.9984631 -0.1064271 0.1917734 0.9756517 -0.002812743 -0.01648807 -0.9998601 -0.007393598 -0.06110495 0.998104 -0.04439812 0.05406731 0.9975498 -0.01714771 0.03577685 -0.9992127 -0.02639925 0.006261229 0.9996319 -0.2875756 0.5741962 0.7665501 -0.1695957 0.3170213 -0.9331318 -0.01376408 0.02839845 -0.999502 -0.0101698 -0.0437957 0.9989888 -0.3499972 0.6909874 -0.6324859 -0.015145 -0.6558376 0.7547501 0.00520718 -0.04226917 -0.9990927 -0.004253387 -0.09288287 0.9956681 0.02153599 -0.08343559 -0.9962804 -0.03752076 -0.8693132 -0.4928354 -0.0179879 0.07016605 -0.9973732 -0.01085466 -0.03264611 0.999408 0.03163915 -0.1049203 -0.9939772 -0.07199895 -0.1495368 0.9861313 -0.2334318 0.3127938 -0.9206898 -0.01871657 0.02839595 -0.9994215 -0.02554488 -0.04378348 0.9987145 -0.4572198 0.6560128 -0.6004976 -0.1434412 -0.6491292 0.7470315 0.001376986 -0.04227 -0.9991053 -0.02417272 -0.09285682 0.9953861 0.02223032 -0.08343559 -0.9962652 -0.2171818 -0.8491626 -0.4814095 -0.01848065 0.07016521 -0.9973642 -0.04851418 -0.03976714 0.9980306 0.03584742 -0.1049049 -0.9938361 0.005212962 -0.05044835 -0.9987131 -0.03165161 -0.1498506 0.9882019 -0.5626289 0.8205418 0.1007969 -0.01882576 0.02935069 -0.999392 -0.04348611 -0.05000716 0.9978018 -0.1489384 0.1907177 0.9702805 -0.007858693 -0.01648747 -0.9998333 -0.02386552 -0.06108933 0.997847 -0.06708484 0.05399876 0.996285 -0.02324467 0.0357722 -0.9990896 -0.0445944 0.006257176 0.9989856 -0.3604762 0.3000557 -0.8831894 -0.6582852 0.7471486 0.0918135 -0.02388346 0.02934741 -0.999284 -0.04498642 -0.05000424 0.9977353 -0.1940799 0.1892035 0.9625669 -0.01458483 -0.01648622 -0.9997577 -0.04603111 -0.06104266 0.9970732 -0.09304684 0.05388611 0.9942025 -0.02956193 0.03576642 -0.9989229 -0.06665885 0.006249845 0.9977563 -0.4679643 0.529825 0.7073153 -0.2987475 0.3069969 -0.9036055 -0.02387011 0.02839285 -0.9993119 -0.04580509 -0.04375183 0.9979918 -0.5523293 0.614914 -0.5628617 -0.3095412 -0.6236966 0.7177652 -0.004695832 -0.04226964 -0.9990952 -0.05158138 -0.09276068 0.9943515 0.02037048 -0.08343839 -0.9963048 -0.4310542 -0.7849566 -0.4450118 -0.01680701 0.07016801 -0.9973936 -0.04761803 -0.03976905 0.9980736 0.03760856 -0.1048992 -0.9937716 -1.83303e-4 -0.05044955 -0.9987267 -0.1896542 -0.1472048 0.9707533 -0.02913147 0.02838861 -0.9991725 -0.06430768 -0.04370737 0.9969726 -0.6308569 0.572331 -0.5238863 -0.437982 -0.5896528 0.6785878 -0.009855449 -0.04226762 -0.9990577 -0.07611697 -0.09261459 0.9927884 0.01976627 -0.08344095 -0.9963167 -0.5772846 -0.7103302 -0.4027078 -0.01619237 0.07016772 -0.9974038 -0.06635767 -0.03972607 0.9970048 0.04071718 -0.1048854 -0.9936504 -0.004588246 -0.05044877 -0.9987162 -0.1077911 -0.1490519 0.9829368 -0.7310796 0.677204 0.08317035 -0.02906686 0.0293433 -0.9991468 -0.06376159 -0.04995262 0.9967143 -0.2380885 0.187321 0.9530083 -0.02071541 -0.01648467 -0.9996496 -0.06608659 -0.06097322 0.9959492 -0.1181462 0.05374252 0.9915409 -0.03602403 0.03575885 -0.9987111 -0.0875138 0.006239056 0.9961438 -0.5443701 0.502906 0.6713768 -0.04011476 0.02837848 -0.9987921 -0.8038517 0.5903885 0.07255285 -0.03610771 0.02933615 -0.9989173 -0.1046198 -0.04978018 0.9932656 -0.3020816 0.1838569 0.935384 -0.03415125 -0.0164783 -0.9992808 -0.1104464 -0.06073313 0.9920248 -0.1605892 0.05341833 0.9855748 -0.04488152 0.03574573 -0.9983526 -0.1266986 0.006213009 0.9919218 -0.6335433 0.4638559 0.619242 -0.4440621 0.288228 -0.848371 -0.03641813 0.02838212 -0.9989336 -0.1040269 -0.04355889 0.9936202 -0.7171288 0.5140901 -0.4705716 -0.6537573 -0.4963327 0.5711876 -0.02400434 -0.04225808 -0.9988183 -0.1319783 -0.09206998 0.9869676 0.01025569 -0.08345013 -0.9964593 -0.7772367 -0.5473681 -0.3103086 -0.007992446 0.07017517 -0.9975028 -0.1061258 -0.03958868 0.9935644 0.03622543 -0.1049053 -0.9938223 -0.01810824 -0.05044084 -0.9985629 -1 -2.45236e-5 0 -1 -2.17039e-5 0 -1 -1.29702e-4 0 -1 6.62997e-5 0 -1 -4.08506e-5 0 -1 8.8668e-6 0 -1 -9.70923e-7 0 -1 4.9774e-6 0 -1 -1.10273e-5 0 -1 1.45677e-5 0 -1 1.56533e-5 0 -1 -1.51152e-5 0 -0.1402702 -0.04336589 0.9891632 -0.7537941 0.4847038 -0.4436854 -0.7765002 -0.4133036 0.4756338 -0.0392909 -0.0422374 -0.9983348 -0.1849297 -0.09128218 0.9785033 -0.004619956 -0.08344995 -0.9965013 -0.8679404 -0.4320679 -0.2449423 0.004691541 0.07017743 -0.9975235 -0.1420785 -0.03941196 0.9890705 0.02373975 -0.1049432 -0.9941949 -0.03355973 -0.05042058 -0.9981641 -0.2662332 -0.1445159 0.9530137 -0.8323243 0.5501534 0.06758356 -0.03952097 0.02933311 -0.9987881 -0.1422928 -0.04954344 0.9885839 -0.3391569 0.1814393 0.9230669 -0.04669702 -0.01647037 -0.9987733 -0.1518143 -0.06040102 0.9865618 -0.1909966 0.05312538 0.9801521 -0.04927229 0.03573834 -0.9981458 -0.1583725 0.006184339 0.9873601 -0.6731331 0.4433616 0.5918804 -0.4883395 0.2807241 -0.8262678 -1.28526e-6 0.02840107 -0.9995967 1.33283e-6 -0.04379773 0.9990405 -8.08106e-7 0.7376341 -0.6752008 9.65848e-7 -0.6559124 0.754837 1.19015e-6 -0.09288376 0.995677 -1.20695e-6 -0.08345466 -0.9965116 -6.4093e-7 -0.8699287 -0.4931776 -1.25533e-6 0.07017725 -0.9975346 1.38153e-6 -0.03981453 0.9992071 -1.15311e-6 -0.1049727 -0.9944752 -1.27339e-6 -0.05044913 -0.9987267 1.19023e-6 -0.1499255 0.9886974 1.51454e-7 0.9925366 0.1219476 -1.32854e-6 0.02935576 -0.9995691 1.37105e-6 -0.0500608 0.9987463 1.12102e-6 -0.05005091 0.9987468 1.28393e-6 0.192868 0.9812248 -1.25157e-6 -0.01648807 -0.9998641 1.35245e-6 -0.06110662 0.9981313 1.37251e-6 0.05412054 0.9985345 -1.1695e-6 0.03578186 -0.9993597 1.02626e-6 0.5995201 0.8003598 -1.19514e-6 0.3216835 -0.9468473 -3.57376e-7 0 -1 -4.11055e-7 0 -1 1.89405e-7 0 -1 -2.13049e-7 0 1 0 0 1 1.38401e-7 0 1 0 0 1 0 0 1 0 0 1 -0.9127542 0.4085094 0 -0.571914 -0.8203136 0 -0.1534348 0.9881589 0 -0.7806438 0.6249764 0 0.003878116 0.9999926 0 -0.7967543 -0.6043034 0 -0.9633556 0.2682277 0 0.5461251 -0.8377037 0 -0.1934596 -0.9811083 0 0.9992485 0.03876358 0 -0.64788 0.7617425 0 -0.9861939 -0.1655952 0 0.06463521 -0.997909 0 0.009359419 0.9961145 -0.08756965 -0.9414281 0.2106078 -0.2633585 -0.5079109 0.2139854 -0.8344081 -1 0 0 -1 -4.879e-6 -3.3993e-6 -1 1.96645e-7 -1.44741e-6 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -6.55345e-7 7.43702e-7 -1 0 0 -0.2092442 0.2007468 0.9570359 -0.9003193 0.206156 0.3833079 -0.8316809 0.2134223 -0.5125993 -0.9744727 0.205783 0.0897572 -0.488642 0.2055885 0.8479165 -0.707821 0.2082288 0.675004 -0.1645309 0.07189226 -0.9837485 -0.9138768 0.3153915 -0.2556508 -0.2037175 0.3005381 0.9317597 -0.687771 0.3110989 0.6558876 -0.4924058 0.321186 -0.8089352 -0.947341 0.308109 0.08725905 -0.1545479 0.3089291 -0.9384443 -0.8066042 0.3197488 -0.4971424 -0.4751428 0.3073264 0.8244937 -0.8752505 0.3083486 0.3726361 -0.4079325 0.5766414 0.7078671 -0.6849219 0.5938672 -0.422142 -0.1757085 0.5685662 0.8036535 -0.1288926 0.5831904 -0.8020446 -0.8139401 0.5760912 0.07497048 -0.4167056 0.5980913 -0.6845753 -0.5890644 0.5808879 0.5617585 -0.7797036 0.5869299 -0.2181187 -0.7518646 0.5763958 0.3201054 -0.3960294 0.6479734 -0.6506083 -0.1220121 0.6334699 -0.7640872 -0.6515643 0.643576 -0.4015893 -0.3891268 0.6266071 0.6752362 -0.7173833 0.6261604 0.305425 -0.7766512 0.6258559 0.07153671 -0.7426473 0.6366436 -0.2077497 -0.1677904 0.6187741 0.7674406 -0.561603 0.6306893 0.5355681 -0.3493382 0.7144896 0.6061909 -0.5819822 0.7298151 -0.3587015 -0.1509174 0.707642 0.6902658 -0.1076873 0.7214385 -0.6840541 -0.697951 0.7132545 0.06428521 -0.3529589 0.7342986 -0.5798496 -0.5037408 0.7179655 0.480386 -0.6650077 0.7232957 -0.1860328 -0.644587 0.7135783 0.2744333 -0.5401386 0.8095497 0.2299556 -0.5547862 0.8173896 -0.1551989 -0.127374 0.8027298 0.5825812 -0.4219505 0.8124296 0.402388 -0.2939122 0.8249115 -0.4828425 -0.08838784 0.8136138 -0.5746478 -0.5845776 0.8095492 0.0538454 -0.4845453 0.8222099 -0.2986416 -0.2934731 0.8090401 0.5092422 -0.06530904 0.8946046 -0.4420606 -0.4534531 0.890301 0.04176735 -0.2250625 0.9014666 -0.3697366 -0.3260406 0.8927615 0.3109254 -0.4283729 0.8956208 -0.1198342 -0.4187279 0.8904388 0.1782855 -0.2266945 0.8909913 0.3933752 -0.3727588 0.8990374 -0.2297452 -0.09844261 0.8874514 0.4502659 0 1 6.53828e-6 0 -0.6343953 -0.773009 0 -0.2902828 -0.956941 -6.46614e-4 -0.4713608 -0.8819403 -0.001326024 -0.09801077 0.9951846 -8.04442e-4 -0.290331 -0.9569261 -0.001138269 -0.2902876 0.9569388 -9.79404e-4 -0.09805768 -0.9951803 -9.5401e-4 -0.4713975 0.8819205 -0.001163601 0.09821951 -0.9951642 -7.81137e-4 -0.6343816 0.7730198 -0.001351594 0.290127 -0.9569872 -6.26016e-4 -0.773036 0.6343621 -0.001536548 0.4713916 -0.8819227 -4.94849e-4 -0.88188 0.4714738 -0.002201259 0.9951678 0.09816467 -0.001709461 0.6343849 -0.7730154 -3.92652e-4 -0.9569661 0.2901996 -0.002198934 0.9569707 0.2901763 -0.001864194 0.7730613 -0.6343288 -3.2258e-4 -0.9951826 0.09803891 -0.002159595 0.8818947 0.4714415 -0.001995444 0.8819055 -0.471422 -2.88681e-4 -0.9951953 -0.09790921 -0.002085208 0.7730609 0.6343284 -0.002097725 0.9569709 -0.2901764 -2.91529e-4 -0.9569701 -0.2901866 -0.001978576 0.6344128 0.7729919 -0.002167403 0.9951674 -0.09816926 -3.30652e-4 -0.8818801 -0.4714739 -0.001843929 0.4714282 0.8819026 -4.05095e-4 -0.773036 -0.6343621 -0.001685798 0.2902347 0.9569541 -5.1167e-4 -0.6343534 -0.7730431 -0.001511156 0.09803861 0.9951815 -0.889345 0.4510435 0.07500243 0.5371212 -0.832369 0.1366112 -0.03412997 0.9529845 -0.3010908 -0.7964325 0.6047244 0.001936435 0.3805549 -0.9031742 0.1986312 0.1473078 0.929305 -0.3386632 -0.6772074 0.7325175 -0.06934267 0.211625 -0.9437916 0.2539139 0.3286232 0.8711289 -0.3648855 -0.537181 0.8323324 -0.136599 0.03413128 -0.952953 0.3011905 0.5017472 0.7781369 -0.3778262 -0.3805376 0.903172 -0.1986744 -0.1473837 -0.9292702 0.3387257 0.6598055 0.6507144 -0.3758023 -0.2115883 0.9438046 -0.2538965 -0.3285442 -0.8711572 0.3648889 0.7930532 0.4929807 -0.3578222 -0.5019198 -0.7780429 0.3777906 0.8935009 0.3113026 -0.3236463 -0.6596698 -0.6508258 0.3758478 0.954425 0.1153346 -0.2752651 -0.7932153 -0.4927564 0.3577718 0.9729487 -0.08373606 -0.2153117 -0.8934742 -0.3112583 0.3237629 0.9500265 -0.2752587 -0.1472495 -0.9543907 -0.1153526 0.2753766 0.889292 -0.451147 -0.07500797 -0.9729427 0.08371877 0.2153454 0.7964397 -0.6047148 -0.001960158 -0.9500014 0.2753242 0.1472885 0.6772592 -0.7324824 0.06920802 0.8957972 0.440015 0.06272387 -0.9538296 0.07972872 0.2895729 0.9572765 0.2841258 -0.05379891 -0.8806681 0.2657405 0.3921809 0.9788562 0.1076877 -0.1739084 -0.7643728 0.4367568 0.4743183 0.9538236 -0.0797826 -0.2895781 -0.6157815 0.5817354 0.5314104 0.8806009 -0.2658418 -0.3922631 -0.4473988 0.6948373 0.5630592 0.7644236 -0.43671 -0.4742794 -0.2700584 0.7751794 0.5711089 -0.2484938 -0.8393463 -0.4834756 0.6158103 -0.5817046 -0.5314109 -0.09197092 0.8243418 0.5585714 -0.4060028 -0.8092269 -0.4246335 0.4471912 -0.6949681 -0.5630625 0.08191776 0.8448854 0.5286381 -0.553036 -0.7548651 -0.3526045 0.2699989 -0.7752476 -0.5710446 0.2484961 0.8393088 0.4835397 -0.6865321 -0.6758514 -0.2681393 0.09194409 -0.8242924 -0.5586487 0.405897 0.809237 0.4247156 -0.8029134 -0.5710532 -0.1709632 -0.0817753 -0.8448769 -0.5286737 0.5530799 0.7548226 0.3526267 -0.8957242 -0.4401455 -0.06284981 0.6866231 0.6758037 0.2680264 -0.9572774 -0.2840964 0.05393832 0.8028323 0.5711323 0.1710796 -0.9788348 -0.107796 0.1739615 -1 9.62239e-7 1.87387e-7 -1 -9.93886e-7 0 -1 0 4.05336e-7 -1 -9.67809e-7 0 -1 0 4.91888e-7 -1 1.49936e-6 0 -1 -6.25472e-7 0 -1 0 6.05636e-7 -1 0 6.29134e-7 -1 1.39797e-6 0 -1 1.41351e-6 6.29135e-7 -1 0 6.05636e-7 -1 -4.72744e-7 5.59386e-7 -1 0 4.91882e-7 -1 9.79261e-7 0 -1 6.88586e-7 0 -1 9.52424e-7 4.05335e-7 -1 -9.84696e-7 0 -1 0 0 -1 -3.38388e-7 1.04046e-6 -1 6.7288e-7 -9.14843e-7 -1 -1.32233e-6 5.5939e-7 0.9971235 -0.07253074 -0.02200454 0.9973401 0.04623621 0.05634748 0.9976794 0.0677604 -0.00667715 0.9972092 -0.06584322 -0.03519153 0.9972519 0.03492927 0.06533396 0.9972971 -0.05679607 -0.04661375 0.997165 0.02183037 0.07200938 0.9973834 -0.04586887 -0.05588042 0.9970814 0.00748378 0.07597798 0.9974649 -0.03354448 -0.06275796 0.9970065 -0.007579028 0.07694536 0.9975389 -0.02035903 -0.06709533 0.9969443 -0.02267843 0.0747509 0.9976036 -0.006785273 -0.06885617 0.9968984 -0.03710538 0.0694043 0.9976574 0.006708502 -0.0680806 0.9968726 -0.05012857 0.06109106 0.9976991 0.01968568 -0.06487619 0.9968664 -0.06114929 0.05018258 0.9977285 0.03175336 -0.05941039 0.9968826 -0.06958204 0.03719383 0.9976313 0.06845837 0.00673902 0.9977446 0.04258859 -0.05188417 0.9969193 -0.07505637 0.02276957 0.9975715 0.0666508 0.02022349 0.997748 0.05185306 -0.0425474 0.9969744 -0.07735693 0.007618844 0.9975022 0.06229752 0.03329384 0.9977381 0.05928385 -0.03169047 0.9970438 -0.07646626 -0.007527053 0.9974241 0.05544841 0.04550415 0.9977151 0.06465309 -0.01961058 0.9998244 -0.01188939 0.01448571 0.9998211 0.00185436 -0.01882302 0.9998237 -0.008850812 0.01656055 0.9998221 -0.00184977 -0.01877641 0.9998229 -0.005463957 0.01801037 0.9998229 -0.00546348 -0.01801097 0.9998221 -0.001850664 0.01877564 0.9998238 -0.008849442 -0.01656061 0.9998212 0.001853346 0.01882237 0.9998245 -0.0118885 -0.01448625 0.9998202 0.00550431 0.01814335 0.999825 -0.01446056 -0.01186752 0.9998195 0.008959114 0.01675963 0.9998255 -0.01647663 -0.008806347 0.999817 0.01903951 -0.001875102 0.9998188 0.01208019 0.01472067 0.9998258 -0.01785999 -0.005417644 0.9998172 0.01829844 -0.005550801 0.9998181 0.01474559 0.01210212 0.9998261 -0.01856422 -0.001828372 0.9998176 0.0168482 -0.009005427 0.9998175 0.01684814 0.009005188 0.9998261 -0.01856422 0.001828372 0.9998181 0.01474648 -0.01210218 0.9998172 0.01829838 0.005550742 0.9998258 -0.01785999 0.005417644 0.9998187 0.01208031 -0.01472085 0.999817 0.01903879 0.00187534 0.9998255 -0.01647561 0.008806288 0.9998194 0.008958637 -0.01676011 0.999825 -0.01446133 0.0118674 0.9998202 0.005504548 -0.01814383 0.995845 0.008926391 0.09062576 0.9950548 0.04682165 -0.08760005 0.9958973 -0.008868992 0.09005576 0.995041 0.06310129 -0.07688844 0.9959357 -0.02612483 0.08619505 0.9958581 -0.09048402 0.00891602 0.9950495 0.07682067 -0.0630486 0.9959604 -0.0423299 0.07919096 -0.9957957 0.09116196 0.008979558 0.9950777 0.08739292 -0.04672342 0.995972 -0.05687767 0.06931728 -0.9957225 0.08841675 0.02681994 0.9951253 0.09437698 -0.02861326 -0.9959642 0.06937927 -0.05693787 -0.9956403 0.08226197 0.04397004 0.9951887 0.09750545 -0.009608149 -0.9959433 0.07935893 -0.04241758 -0.9955522 0.07282686 0.05976772 0.9952642 0.09673893 0.009532094 -0.9959075 0.08648669 -0.02623564 -0.9954609 0.06037533 0.07356995 0.9953493 0.092184 0.02796232 -0.9953698 0.04531073 0.08477026 0.9954397 0.0841273 0.04497402 -0.9952831 0.02816224 0.09283596 0.9955312 0.07299661 0.05991005 -0.9952046 0.009587705 0.09734451 0.9956202 0.05930954 0.07226932 -0.9951381 -0.009653925 0.09801584 0.9957045 0.04365253 0.08165198 -0.9950871 -0.02873682 0.09474104 0.9957799 0.02661991 0.08782845 0 0.5708321 0.8210668 -0.4668427 0.7264955 0.5042442 -0.7730137 0 -0.6343894 -0.995185 0 -0.09801548 -0.9951848 0 0.09801745 0.7730133 0 -0.6343899 -0.9569407 0 0.2902836 0.6343886 0 -0.7730144 -0.8819255 0 0.4713889 0.4713938 0 -0.8819229 0.09801554 0 0.9951849 -0.7730128 0 0.6343904 0.2902823 0 -0.9569411 0.290284 0 0.9569405 -0.6343889 0 0.7730141 0.4713923 0 0.8819237 -0.4714055 0 0.8819167 0.6343886 0 0.7730144 -0.2902823 0 0.9569411 -0.290285 0 -0.9569404 0.7730139 0 0.6343892 -0.09801667 0 0.9951848 -0.471407 0 -0.8819158 -0.6343961 0 -0.7730082 0.5926381 -0.8033509 0.05837428 -0.5658422 0.7670332 -0.3024612 0.5926376 -0.8033512 -0.05837434 -0.5842509 0.7919849 -0.177231 0.5842449 -0.791988 -0.1772373 -0.592637 0.8033522 -0.05836832 0.5658422 -0.7670333 -0.3024612 -0.5926381 0.8033509 0.05837428 0.5336748 -0.7234296 -0.4379964 -0.5842467 0.7919874 0.1772338 0.4809926 -0.6520177 -0.586105 -0.5658447 0.767029 0.3024671 0.3972215 -0.5384575 -0.7431546 0.09716093 -0.1317074 0.9865155 -0.5336716 0.7234305 0.4379987 0.2701226 -0.366168 -0.8904802 0.2701283 -0.3661751 0.8904755 -0.4809856 0.6520082 0.5861213 0.09715938 -0.1317063 -0.9865159 0.3972255 -0.5384643 0.7431475 -0.3972255 0.5384643 0.7431475 -0.09716129 0.1317073 -0.9865155 0.4809964 -0.6520236 0.5860953 -0.2701263 0.366174 0.8904765 -0.2701238 0.3661691 -0.8904793 0.5336738 -0.7234282 0.4380001 -0.09715855 0.1317051 0.9865161 -0.3972218 0.5384573 -0.7431545 0.5658408 -0.7670326 0.3024652 -0.4809929 0.6520176 -0.5861049 0.5842493 -0.7919836 0.1772427 -0.5336733 0.7234317 -0.4379949 -0.6496316 0.7575521 -0.06398248 0.5663202 -0.7665798 -0.3027163 -0.6313224 0.7730236 0.06218171 0.5169177 -0.7435186 -0.4242359 -0.6037301 0.7758694 0.18313 0.4514521 -0.7025527 -0.5501007 -0.566323 0.766582 0.3027053 0.3636805 -0.6362338 -0.6803994 0.09651041 0.1748805 0.9798483 -0.5169272 0.7435272 0.4242095 0.245557 -0.5332812 -0.8095141 0.2897046 -0.06340253 0.9550138 -0.4514563 0.7025568 0.5500921 0.09062844 -0.3808779 -0.9201731 0.451251 -0.2893102 0.8441991 -0.3636813 0.6362341 0.6803986 -0.09650492 -0.1748733 -0.9798501 0.5607078 -0.4678306 0.6831848 -0.2455626 0.5332925 0.809505 -0.289695 0.0634014 -0.9550168 0.6225578 -0.5927983 0.5108934 -0.09063136 0.3808871 0.9201691 -0.451238 0.2893064 -0.8442074 0.6508072 -0.6748641 0.3478627 -0.5606837 0.4678162 -0.6832144 0.657384 -0.7266908 0.199416 -0.6225451 0.5927847 -0.5109247 0.6496388 -0.7575455 0.06398576 -0.6508097 0.6748536 -0.3478785 0.6313223 -0.7730236 -0.06218427 -0.6573862 0.726688 -0.1994193 0.6037301 -0.7758664 -0.1831429 0.6763412 -0.4842282 0.5550546 -0.08495956 0.4987448 0.8625749 -0.4688218 0.1043988 -0.8771016 0.7055566 -0.5999838 0.3771066 -0.6013917 0.3181921 -0.7328587 0.7050715 -0.6761182 0.2138652 -0.6763309 0.4842278 -0.5550677 0.6863058 -0.7241648 0.06760048 -0.7055577 0.5999584 -0.3771449 0.6555675 -0.7523708 -0.06457287 -0.7050589 0.6761268 -0.2138798 0.6155461 -0.7656612 -0.1867245 -0.6863113 0.7241598 -0.06759715 0.5665918 -0.7663211 -0.3028626 -0.6555585 0.7523788 0.06457006 0.5073848 -0.7544273 -0.4164133 -0.6155325 0.7656737 0.1867182 0.4349285 -0.7279631 -0.5300065 -0.5665999 0.7663253 0.3028367 0.344599 -0.682361 -0.6446977 0.09224408 0.338299 0.9365067 -0.5073863 0.7544344 0.4163987 0.2300877 -0.6096868 -0.7585129 0.2878856 0.1286716 0.9489814 -0.4349472 0.7279922 0.5299512 0.0849567 -0.4987227 -0.8625881 0.4688496 -0.1044088 0.8770855 -0.344603 0.6823684 0.6446877 -0.09223479 -0.338265 -0.93652 0.6014415 -0.3182067 0.7328115 -0.2300974 0.6097124 0.7584893 -0.287868 -0.1286611 -0.9489881 -0.7301077 0.6795376 -0.07191288 0.5669083 -0.7660189 -0.3030349 -0.6841223 0.7262483 0.06738108 0.4969547 -0.7659505 -0.4078677 -0.6291307 0.7535034 0.1908591 0.417212 -0.7532943 -0.5084112 -0.5669042 0.7660267 0.3030229 0.3242222 -0.7258892 -0.6066012 0.08539003 0.490801 0.8670773 -0.4969627 0.7659565 0.4078465 0.2131137 -0.6789517 -0.7025719 0.274279 0.3273442 0.9042217 -0.4172088 0.7532927 0.5084161 0.07808631 -0.6044069 -0.7928397 0.468226 0.1154242 0.8760376 -0.3242205 0.7258865 0.6066053 -0.08539307 -0.4908233 -0.8670644 0.629952 -0.1176803 0.7676665 -0.2131131 0.6789444 0.7025791 -0.2742784 -0.3273463 -0.9042212 0.7298873 -0.3292403 0.5990538 -0.07809078 0.6044467 0.792809 -0.4682325 -0.1154202 -0.8760346 0.7676881 -0.4921991 0.4103599 -0.6299576 0.1176949 -0.7676597 0.7616981 -0.6053301 0.2310664 -0.7299001 0.3292124 -0.5990535 0.7301105 -0.6795348 0.07191199 -0.7676935 0.4921972 -0.4103518 0.6841211 -0.7262488 -0.06738704 -0.7616978 0.6053256 -0.2310786 0.629127 -0.7535135 -0.1908317 -0.5600699 0.1244433 0.8190455 -0.4989822 -0.03611052 0.8658597 1.70889e-6 -0.05005091 0.9987468 -0.2134713 0.03393417 0.9763599 -0.2134684 0.03393357 0.9763604 1.05301e-6 -0.03981453 0.9992071 1.26071e-6 -0.03981292 0.9992071 -0.1578683 -0.629392 0.7608832 -0.08272606 -0.6357265 0.7674687 0.1541978 -0.6319131 0.7595452 0.2650878 -0.6174745 0.7405766 0.1261027 0.9863759 0.1056452 0.4353198 0.8948354 0.09882438 0.7512117 0.6540578 0.08882254 0.4507929 0.8845097 0.1201187 0.4668426 -0.7264955 -0.5042443 -0.07812583 0.4759232 -0.87601 0.2091662 -0.4088618 0.8883027 0.8982489 0.3610429 0.2505935 -0.8983997 -0.3898009 -0.20232 0.18726 -0.02945429 0.9818688 0.02204018 -0.02703362 0.9993916 -0.07596921 -0.02546072 0.9967851 0.3532931 -0.9331507 -0.06643778 0.2694946 -0.9606896 -0.06669616 0.09952282 -0.9928941 -0.06524282 + + + + + + + + + + 0.6531364 0.5635884 0.8626548 0.5069259 0.8686568 0.5336232 0.556344 0.4239198 0.6535561 0.3880699 0.6541674 0.4229533 0.6529921 0.3461704 0.5546024 0.3928153 0.5512403 0.3503141 0.6483201 0.6108653 0.5479813 0.6385751 0.5517166 0.6035249 0.5517166 0.6035249 0.6530017 0.5805271 0.6483201 0.6108653 0.6535561 0.3880699 0.8743396 0.3574385 0.8636608 0.398573 0.5552145 0.5548504 0.6546559 0.5282083 0.6531364 0.5635884 0.5541248 0.5729305 0.6531364 0.5635884 0.6530017 0.5805271 0.5512403 0.3503141 0.1730712 0.426249 0.1683168 0.4110411 0.5564474 0.522998 0.177792 0.4883763 0.5567003 0.4877705 0.5568822 0.451668 0.6541674 0.4229533 0.6547825 0.4511064 0.148948 0.9471256 0.2503393 0.9441768 0.3361462 0.9483042 0.6541674 0.4229533 0.8636608 0.398573 0.8596535 0.4252876 0.5567003 0.4877705 0.6547825 0.4511064 0.6560637 0.4881866 0.5479813 0.6385751 0.1754053 0.5711627 0.5517166 0.6035249 0.5568822 0.451668 0.177792 0.4883763 0.1745944 0.4626297 0.5564474 0.522998 0.6561391 0.4902923 0.6546559 0.5282083 0.6483201 0.6108653 0.6577621 0.6243964 0.639718 0.6470116 0.97444 0.4972798 0.9912025 0.4933273 0.9908143 0.4981514 0.9707986 0.4926913 0.9914468 0.4885908 0.9912025 0.4933273 0.9795455 0.5010895 0.9908143 0.4981514 0.9899644 0.5051178 0.6530017 0.5805271 0.6820717 0.5926666 0.6649716 0.614026 0.6547825 0.4511064 0.8596535 0.4252876 0.8581563 0.4523132 0.8686568 0.5336232 0.7722382 0.5678026 0.6531364 0.5635884 0.6560637 0.4881866 0.8581563 0.4523132 0.8585725 0.4762175 0.6546559 0.5282083 0.8585725 0.4762175 0.8626548 0.5069259 0.1680174 0.4112057 0.1730712 0.426249 0.1697487 0.4390952 0.1680174 0.4112057 0.01662915 0.4804876 0.01403492 0.4784209 0.1790028 0.5138934 0.01397126 0.5278831 0.01300972 0.5162876 0.1745944 0.4626297 0.01662915 0.4804876 0.1699688 0.4393597 0.177792 0.4883763 0.01300972 0.5162876 0.01229774 0.5065664 0.177432 0.553937 0.01930904 0.5465725 0.01630258 0.5397558 0.5552145 0.5548504 0.1790028 0.5138934 0.5564474 0.522998 0.5517166 0.6035249 0.177432 0.553937 0.5541248 0.5729305 0.5546024 0.3928153 0.1699688 0.4393597 0.1730712 0.426249 0.556344 0.4239198 0.1745944 0.4626297 0.1699688 0.4393597 0.5541248 0.5729305 0.1789126 0.5372074 0.5552145 0.5548504 0.01724529 0.5487961 0.01630258 0.5397558 0.01930904 0.5465725 0.0120638 0.527875 0.01300972 0.5162876 0.01397126 0.5278831 0.01399111 0.5393839 0.01397126 0.5278831 0.01630258 0.5397558 0.01026308 0.4927836 0.01662915 0.4804876 0.01260221 0.4949758 0.0102632 0.50568 0.01260221 0.4949758 0.01229774 0.5065664 0.01084822 0.5151596 0.01229774 0.5065664 0.01300972 0.5162876 0.6206431 0.9550523 0.4300317 0.9517207 0.6205192 0.9429313 0.173199 0.5839684 0.01930904 0.5465725 0.1754053 0.5711627 0.177792 0.4883763 0.01260221 0.4949758 0.1745944 0.4626297 0.1789126 0.5372074 0.01630258 0.5397558 0.01397126 0.5278831 0.5152055 0.5296933 0.5760958 0.5632359 0.5109899 0.5585479 0.2369227 0.3087689 0.5479997 0.3173283 0.546833 0.3275742 0.2303735 0.7402053 0.5098255 0.6939517 0.5145981 0.7277278 0.2354209 0.3407912 0.5356044 0.4027788 0.2335628 0.3833078 0.2285937 0.6487354 0.5036193 0.6394343 0.5041279 0.6455245 0.24009 0.9457212 0.5446727 0.9335208 0.2403485 0.9507217 0.2354717 0.8651248 0.5396856 0.8921468 0.2379413 0.9103828 0.2299307 0.4815641 0.5152055 0.5296933 0.2291154 0.5171447 0.2285937 0.6487354 0.5063592 0.6663102 0.2288333 0.6721715 0.2293981 0.7030594 0.5063592 0.6663102 0.5098255 0.6939517 0.2354209 0.3407912 0.546833 0.3275742 0.542326 0.360331 0.2285236 0.6280187 0.5028672 0.6229928 0.502817 0.6268721 0.233464 0.8228092 0.5330715 0.8468595 0.2354717 0.8651248 0.2308319 0.4531627 0.5203692 0.4970974 0.2299307 0.4815641 0.2284328 0.5940981 0.5037891 0.6114428 0.2284345 0.6104223 0.2303735 0.7402053 0.5201215 0.7642341 0.2316977 0.7794356 0.2335628 0.3833078 0.5296682 0.4390284 0.2320424 0.4204401 0.2285827 0.5492796 0.5053121 0.5969718 0.2284328 0.5940981 0.2379413 0.9103828 0.5441406 0.9283163 0.24009 0.9457212 0.2291154 0.5171447 0.5109899 0.5585479 0.2285827 0.5492796 0.2284345 0.6104223 0.5028672 0.6229928 0.2285104 0.6235675 0.2285245 0.6339659 0.5036193 0.6394343 0.2285454 0.6420097 0.2316977 0.7794356 0.5266514 0.805521 0.233464 0.8228092 0.2320424 0.4204401 0.5245687 0.4703484 0.2308319 0.4531627 0.2285236 0.6280187 0.5030781 0.6322181 0.2285245 0.6339659 0.5705382 0.6638805 0.629958 0.6430914 0.6349242 0.6605187 0.5037891 0.6114428 0.5646025 0.6240611 0.5028672 0.6229928 0.5036193 0.6394343 0.5650305 0.6323222 0.5660887 0.6389567 0.5266514 0.805521 0.5901259 0.756286 0.5993129 0.7958352 0.5296682 0.4390284 0.5955088 0.4795127 0.5245687 0.4703484 0.5030781 0.6322181 0.564502 0.6273804 0.5650305 0.6323222 0.5479997 0.3173283 0.6281796 0.3396387 0.546833 0.3275742 0.5145981 0.7277278 0.5755953 0.6897885 0.5823335 0.721643 0.542326 0.360331 0.6112405 0.4142656 0.5356044 0.4027788 0.5041279 0.6455245 0.5660887 0.6389567 0.5670697 0.6445165 0.5446727 0.9335208 0.6269769 0.9166149 0.6279997 0.9215504 0.5396856 0.8921468 0.6086885 0.8358669 0.618907 0.8803544 0.5203692 0.4970974 0.5821651 0.5359948 0.5152055 0.5296933 0.5063592 0.6663102 0.5670697 0.6445165 0.5705382 0.6638805 0.5098255 0.6939517 0.5705382 0.6638805 0.5755953 0.6897885 0.546833 0.3275742 0.6209464 0.3724616 0.542326 0.360331 0.5028672 0.6229928 0.564502 0.6273804 0.502817 0.6268721 0.5330715 0.8468595 0.5993129 0.7958352 0.6086885 0.8358669 0.5245687 0.4703484 0.5893883 0.5049954 0.5203692 0.4970974 0.5053121 0.5969718 0.5661835 0.6132879 0.5037891 0.6114428 0.5201215 0.7642341 0.5823335 0.721643 0.5901259 0.756286 0.5356044 0.4027788 0.6027898 0.4494376 0.5296682 0.4390284 0.5109899 0.5585479 0.5687085 0.5999123 0.5053121 0.5969718 0.5441406 0.9283163 0.618907 0.8803544 0.6269769 0.9166149 0.6285991 0.6148702 0.6808626 0.6250714 0.6264361 0.6245889 0.5755953 0.6897885 0.6349242 0.6605187 0.6420199 0.6840136 0.6281796 0.3396387 0.7035222 0.3910645 0.6209464 0.3724616 0.5646025 0.6240611 0.6263175 0.6276257 0.564502 0.6273804 0.6086885 0.8358669 0.6742479 0.7821628 0.6869252 0.8198322 0.5955088 0.4795127 0.6604322 0.5160483 0.5893883 0.5049954 0.5687085 0.5999123 0.6285991 0.6148702 0.5661835 0.6132879 0.5901259 0.756286 0.6512889 0.7131845 0.6618532 0.7452317 0.6112405 0.4142656 0.6785389 0.4641168 0.6027898 0.4494376 0.5760958 0.5632359 0.6320347 0.6028356 0.5687085 0.5999123 0.6269769 0.9166149 0.70094 0.8618867 0.7122339 0.8961319 0.5821651 0.5359948 0.6423438 0.5696527 0.5760958 0.5632359 0.5661835 0.6132879 0.6264361 0.6245889 0.5646025 0.6240611 0.5660887 0.6389567 0.6270776 0.6321141 0.62858 0.6380859 0.5993129 0.7958352 0.6618532 0.7452317 0.6742479 0.7821628 0.6027898 0.4494376 0.6686962 0.4923179 0.5955088 0.4795127 0.5650305 0.6323222 0.6263175 0.6276257 0.6270776 0.6321141 0.6303423 0.32922 0.7138883 0.3596765 0.6281796 0.3396387 0.5823335 0.721643 0.6420199 0.6840136 0.6512889 0.7131845 0.6209464 0.3724616 0.6900388 0.4308682 0.6112405 0.4142656 0.5670697 0.6445165 0.62858 0.6380859 0.629958 0.6430914 0.6279997 0.9215504 0.7122339 0.8961319 0.7137407 0.9007724 0.618907 0.8803544 0.6869252 0.8198322 0.70094 0.8618867 0.5893883 0.5049954 0.6506163 0.544691 0.5821651 0.5359948 0.7009629 0.677293 0.7574059 0.6517485 0.7681326 0.6685156 0.62858 0.6380859 0.6817225 0.6318454 0.6837254 0.6370727 0.6742479 0.7821628 0.7254635 0.7318496 0.7404776 0.7651742 0.6785389 0.4641168 0.7337887 0.5081862 0.6686962 0.4923179 0.6270776 0.6321141 0.6807066 0.6278356 0.6817225 0.6318454 0.7138883 0.3596765 0.7923817 0.3785947 0.7884187 0.3876177 0.6512889 0.7131845 0.7009629 0.677293 0.7124912 0.7031672 0.7035222 0.3910645 0.7596521 0.4524368 0.6900388 0.4308682 0.629958 0.6430914 0.6837254 0.6370727 0.6855557 0.6414337 0.7137407 0.9007724 0.7855432 0.8685076 0.7874224 0.8726216 0.70094 0.8618867 0.7556468 0.7993251 0.7722319 0.837484 0.6604322 0.5160483 0.7115265 0.5549183 0.6506163 0.544691 0.6349242 0.6605187 0.6855557 0.6414337 0.6919848 0.6566432 0.6420199 0.6840136 0.6919848 0.6566432 0.7009629 0.677293 0.7138883 0.3596765 0.7758762 0.416172 0.7035222 0.3910645 0.6264361 0.6245889 0.6807066 0.6278356 0.6263175 0.6276257 0.6869252 0.8198322 0.7404776 0.7651742 0.7556468 0.7993251 0.6686962 0.4923179 0.723655 0.5292608 0.6604322 0.5160483 0.6320347 0.6028356 0.6837071 0.6164961 0.6285991 0.6148702 0.6618532 0.7452317 0.7124912 0.7031672 0.7254635 0.7318496 0.6900388 0.4308682 0.745752 0.4826791 0.6785389 0.4641168 0.6423438 0.5696527 0.688192 0.6060244 0.6320347 0.6028356 0.7122339 0.8961319 0.7722319 0.837484 0.7855432 0.8685076 0.6506163 0.544691 0.7011952 0.5769879 0.6423438 0.5696527 0.7476614 0.618817 0.7816302 0.6265625 0.7443473 0.6259066 0.7884187 0.3876177 0.8530395 0.452704 0.7758762 0.416172 0.6808626 0.6250714 0.7441639 0.6282911 0.6807066 0.6278356 0.7556468 0.7993251 0.8140372 0.7416239 0.8304924 0.7705262 0.723655 0.5292608 0.8067346 0.5307473 0.8095325 0.557992 0.688192 0.6060244 0.7476614 0.618817 0.6837071 0.6164961 0.7254635 0.7318496 0.7818868 0.689704 0.7970507 0.7135489 0.7596521 0.4524368 0.8203188 0.5090262 0.745752 0.4826791 0.7011952 0.5769879 0.7528941 0.6103845 0.688192 0.6060244 0.7722319 0.837484 0.8611589 0.8284375 0.7855432 0.8685076 0.7115265 0.5549183 0.7684758 0.5872982 0.7011952 0.5769879 0.6837071 0.6164961 0.7443473 0.6259066 0.6808626 0.6250714 0.6837254 0.6370727 0.7453382 0.6316655 0.7476608 0.6359265 0.7404776 0.7651742 0.7970507 0.7135489 0.8140372 0.7416239 0.745752 0.4826791 0.8067346 0.5307473 0.7337887 0.5081862 0.6817225 0.6318454 0.7441639 0.6282911 0.7453382 0.6316655 0.7884187 0.3876177 0.8703426 0.4213144 0.8660867 0.4287611 0.7124912 0.7031672 0.7681326 0.6685156 0.7818868 0.689704 0.7758762 0.416172 0.8356993 0.4833077 0.7596521 0.4524368 0.6855557 0.6414337 0.7476608 0.6359265 0.7497861 0.6394436 0.7855432 0.8685076 0.8632562 0.8317398 0.7874224 0.8726216 0.7722319 0.837484 0.8304924 0.7705262 0.8476905 0.8025527 0.723655 0.5292608 0.7805581 0.5695555 0.7115265 0.5549183 0.6919848 0.6566432 0.7497861 0.6394436 0.7574059 0.6517485 0.8904061 0.4816924 0.9161407 0.4830207 0.9050598 0.500363 0.7476608 0.6359265 0.7826532 0.6314325 0.785081 0.6348727 0.8140372 0.7416239 0.8364853 0.6988331 0.8530581 0.7230539 0.8203188 0.5090262 0.8465479 0.5480648 0.8067346 0.5307473 0.7453382 0.6316655 0.7814345 0.6286082 0.7826532 0.6314325 0.8660867 0.4287611 0.9067576 0.4555719 0.9025097 0.4616062 0.7818868 0.689704 0.8067584 0.6610275 0.8211099 0.6785511 0.8356993 0.4833077 0.8904061 0.4816924 0.8741207 0.5076777 0.7497861 0.6394436 0.785081 0.6348727 0.7873182 0.637678 0.8611589 0.8284375 0.8985914 0.7994356 0.8632562 0.8317398 0.8304924 0.7705262 0.8842995 0.7752431 0.8476905 0.8025527 0.8095325 0.557992 0.8200444 0.5808126 0.7805581 0.5695555 0.7574059 0.6517485 0.7873182 0.637678 0.7954043 0.6475017 0.7681326 0.6685156 0.7954043 0.6475017 0.8067584 0.6610275 0.8530395 0.452704 0.9025097 0.4616062 0.8904061 0.4816924 0.7443473 0.6259066 0.7814345 0.6286082 0.7441639 0.6282911 0.8304924 0.7705262 0.8530581 0.7230539 0.8684162 0.747914 0.8095325 0.557992 0.8465479 0.5480648 0.8347832 0.5631853 0.7528941 0.6103845 0.7850945 0.6207603 0.7476614 0.618817 0.7970507 0.7135489 0.8211099 0.6785511 0.8364853 0.6988331 0.8356993 0.4833077 0.859689 0.5296044 0.8203188 0.5090262 0.7684758 0.5872982 0.7906075 0.6140412 0.7528941 0.6103845 0.8476905 0.8025527 0.8963755 0.796915 0.8611589 0.8284375 0.7805581 0.5695555 0.8071536 0.5955768 0.7684758 0.5872982 0.8049729 0.6343111 0.8258772 0.6313243 0.8282347 0.6336689 0.7816302 0.6265625 0.8012461 0.6288709 0.7814345 0.6286082 0.8530581 0.7230539 0.8847085 0.7336806 0.8684162 0.747914 0.8465479 0.5480648 0.8538028 0.5722982 0.8347832 0.5631853 0.7906075 0.6140412 0.805006 0.6219556 0.7850945 0.6207603 0.8364853 0.6988331 0.8405956 0.6719166 0.8552662 0.6900395 0.859689 0.5296044 0.8903973 0.5229539 0.8771013 0.5422658 0.8071536 0.5955768 0.8106023 0.6163823 0.7906075 0.6140412 0.8842995 0.7752431 0.9098811 0.7764207 0.8963755 0.796915 0.8200444 0.5808126 0.826936 0.6007063 0.8071536 0.5955768 0.7850945 0.6207603 0.8014517 0.6270068 0.7816302 0.6265625 0.785081 0.6348727 0.8024937 0.631387 0.8049729 0.6343111 0.8530581 0.7230539 0.8552662 0.6900395 0.8706353 0.7116931 0.859689 0.5296044 0.8649128 0.5587291 0.8465479 0.5480648 0.7826532 0.6314325 0.8012461 0.6288709 0.8024937 0.631387 0.9025097 0.4616062 0.9203028 0.4780804 0.9161407 0.4830207 0.8211099 0.6785511 0.826591 0.656505 0.8405956 0.6719166 0.8741207 0.5076777 0.9050598 0.500363 0.8903973 0.5229539 0.7873182 0.637678 0.8049729 0.6343111 0.8072586 0.6366462 0.8963755 0.796915 0.912118 0.7783198 0.8985914 0.7994356 0.8684162 0.747914 0.8988994 0.757548 0.8842995 0.7752431 0.8347832 0.5631853 0.8396217 0.5879644 0.8200444 0.5808126 0.7954043 0.6475017 0.8072586 0.6366462 0.8153412 0.6448922 0.8067584 0.6610275 0.8153412 0.6448922 0.826591 0.656505 0.9171018 0.5232292 0.9278575 0.5312015 0.9207887 0.5420252 0.8706353 0.7116931 0.8747048 0.6799671 0.8878297 0.6981192 0.8649128 0.5587291 0.8939833 0.557415 0.8834775 0.5711014 0.8024937 0.631387 0.8247043 0.6292147 0.8258772 0.6313243 0.9161407 0.4830207 0.9297252 0.5060009 0.9260777 0.5095645 0.8405956 0.6719166 0.8489336 0.6515038 0.8617997 0.6645651 0.8903973 0.5229539 0.9171018 0.5232292 0.9051113 0.5414977 0.8072586 0.6366462 0.8282347 0.6336689 0.8304261 0.6355069 0.9098811 0.7764207 0.9219391 0.751936 0.912118 0.7783198 0.8847085 0.7336806 0.911245 0.7357646 0.8988994 0.757548 0.8538028 0.5722982 0.8611442 0.5959931 0.8396217 0.5879644 0.8153412 0.6448922 0.8304261 0.6355069 0.838261 0.6420603 0.826591 0.656505 0.838261 0.6420603 0.8489336 0.6515038 0.9050598 0.500363 0.9260777 0.5095645 0.9171018 0.5232292 0.8014517 0.6270068 0.8247043 0.6292147 0.8012461 0.6288709 0.8706353 0.7116931 0.8996817 0.7163037 0.8847085 0.7336806 0.8649128 0.5587291 0.873826 0.5825887 0.8538028 0.5722982 0.8106023 0.6163823 0.8282955 0.6235371 0.805006 0.6219556 0.8552662 0.6900395 0.8617997 0.6645651 0.8747048 0.6799671 0.8771013 0.5422658 0.9051113 0.5414977 0.8939833 0.557415 0.826936 0.6007063 0.8336538 0.6192075 0.8106023 0.6163823 0.8988994 0.757548 0.9199493 0.7507271 0.9098811 0.7764207 0.8396217 0.5879644 0.8494055 0.6067183 0.826936 0.6007063 0.805006 0.6219556 0.8249085 0.6276165 0.8014517 0.6270068 0.8853815 0.6724119 0.9013847 0.6747295 0.896254 0.6870832 0.8249085 0.6276165 0.8420202 0.629665 0.8247043 0.6292147 0.8878297 0.6981192 0.9060036 0.7017676 0.8996817 0.7163037 0.8834775 0.5711014 0.8852134 0.590109 0.873826 0.5825887 0.8336538 0.6192075 0.84538 0.6247705 0.8282955 0.6235371 0.8747048 0.6799671 0.8747498 0.6596148 0.8853815 0.6724119 0.8939833 0.557415 0.9110733 0.5567442 0.9018809 0.5695976 0.8494055 0.6067183 0.8503218 0.6212418 0.8336538 0.6192075 0.911245 0.7357646 0.9223589 0.729505 0.9199493 0.7507271 0.8611442 0.5959931 0.8644867 0.6106236 0.8494055 0.6067183 0.8282955 0.6235371 0.8422215 0.6282473 0.8249085 0.6276165 0.8282347 0.6336689 0.8431182 0.6315206 0.8453115 0.6334908 0.8747048 0.6799671 0.896254 0.6870832 0.8878297 0.6981192 0.8834775 0.5711014 0.9018809 0.5695976 0.8931748 0.5807078 0.8258772 0.6313243 0.8420202 0.629665 0.8431182 0.6315206 0.9260777 0.5095645 0.9309486 0.5286216 0.9278575 0.5312015 0.8617997 0.6645651 0.8638183 0.6484339 0.8747498 0.6596148 0.9051113 0.5414977 0.9207887 0.5420252 0.9110733 0.5567442 0.8304261 0.6355069 0.8453115 0.6334908 0.8473338 0.6349824 0.9199493 0.7507271 0.9240576 0.7302467 0.9219391 0.751936 0.8996817 0.7163037 0.9154401 0.717501 0.911245 0.7357646 0.873826 0.5825887 0.8746129 0.6013239 0.8611442 0.5959931 0.838261 0.6420603 0.8473338 0.6349824 0.8543557 0.6403279 0.8489336 0.6515038 0.8543557 0.6403279 0.8638183 0.6484339 0.2769798 0.7781081 0.2771136 0.7870262 0.2733655 0.7805515 0.8931748 0.5807078 0.9063975 0.5831888 0.8998464 0.5913115 0.8431182 0.6315206 0.8599644 0.6302089 0.8608408 0.6316726 0.9278575 0.5312015 0.9286382 0.5531527 0.926348 0.5549724 0.8747498 0.6596148 0.8773723 0.645697 0.8854659 0.6544736 0.9110733 0.5567442 0.9210036 0.5630499 0.913434 0.5738427 0.8473338 0.6349824 0.8626139 0.6332113 0.8642359 0.634346 0.9223589 0.729505 0.9226989 0.7062947 0.9240576 0.7302467 0.9060036 0.7017676 0.9161896 0.6968507 0.9154401 0.717501 0.8852134 0.590109 0.8860395 0.6067162 0.8746129 0.6013239 0.8543557 0.6403279 0.8642359 0.634346 0.8700534 0.638886 0.8638183 0.6484339 0.8700534 0.638886 0.8773723 0.645697 0.9207887 0.5420252 0.926348 0.5549724 0.9210036 0.5630499 0.8422215 0.6282473 0.8599644 0.6302089 0.8420202 0.629665 0.896254 0.6870832 0.9088175 0.6853606 0.9060036 0.7017676 0.8852134 0.590109 0.8998464 0.5913115 0.8938632 0.5981914 0.8503218 0.6212418 0.8628509 0.6262562 0.84538 0.6247705 0.8853815 0.6724119 0.8854659 0.6544736 0.8932514 0.6640359 0.9018809 0.5695976 0.913434 0.5738427 0.9063975 0.5831888 0.8644867 0.6106236 0.8670379 0.6233845 0.8503218 0.6212418 0.9154401 0.717501 0.9214439 0.7058168 0.9223589 0.729505 0.8746129 0.6013239 0.8784199 0.6141132 0.8644867 0.6106236 0.84538 0.6247705 0.8601356 0.6290962 0.8422215 0.6282473 0.8453115 0.6334908 0.8608408 0.6316726 0.8626139 0.6332113 0.233464 0.8228092 0.1377868 0.7820034 0.2316977 0.7794356 0.2308319 0.4531627 0.1367812 0.4175281 0.2320424 0.4204401 0.2285245 0.6339659 0.1358677 0.6282985 0.2285236 0.6280187 0.2374122 0.2988828 0.1404718 0.3048759 0.1408707 0.2949819 0.2293981 0.7030594 0.1371511 0.7423503 0.1366766 0.704823 0.2354209 0.3407912 0.1378105 0.3799416 0.1392361 0.3370439 0.2285454 0.6420097 0.1360921 0.6497167 0.1360201 0.6427589 0.2403485 0.9507217 0.1416744 0.9501446 0.24009 0.9457212 0.2379413 0.9103828 0.1396141 0.8685798 0.2354717 0.8651248 0.2299307 0.4815641 0.1731829 0.5028699 0.1731097 0.4804183 0.2285937 0.6487354 0.1363383 0.6735585 0.1360921 0.6497167 0.2288333 0.6721715 0.1366766 0.704823 0.1363383 0.6735585 0.2369227 0.3087689 0.1392361 0.3370439 0.1404718 0.3048759 0.2285104 0.6235675 0.1358677 0.6282985 0.1358359 0.624195 0.2354717 0.8651248 0.1386373 0.825818 0.233464 0.8228092 0.2299307 0.4815641 0.1731097 0.4804183 0.17309 0.4619555 0.2284345 0.6104223 0.1356446 0.5940594 0.2284328 0.5940981 0.2303735 0.7402053 0.1377868 0.7820034 0.1371511 0.7423503 0.2335628 0.3833078 0.1367812 0.4175281 0.1378105 0.3799416 0.2284328 0.5940981 0.1351657 0.5487405 0.2285827 0.5492796 0.24009 0.9457212 0.1407231 0.914308 0.2379413 0.9103828 0.2285827 0.5492796 0.1351676 0.515966 0.2291154 0.5171447 0.2285104 0.6235675 0.1357532 0.6107777 0.2284345 0.6104223 0.2285454 0.6420097 0.1359279 0.6344485 0.2285245 0.6339659 0.02588838 0.844361 0.1551972 0.938517 0.003518402 0.8826887 0.7923828 0.8192851 0.7626375 0.7682989 0.9643244 0.6940898 0.6583597 0.6970967 0.6600477 0.8183878 0.6579413 0.8184055 0.6950956 0.8399001 0.6931331 0.6961325 0.6952261 0.6961309 0.6963759 0.8669822 0.693278 0.8533946 0.695371 0.853393 0.2558505 0.8848558 0.2579889 0.9080355 0.2558825 0.908034 0.6585184 0.6838306 0.6604661 0.697079 0.6583597 0.6970967 0.2561908 0.7406592 0.257957 0.8848572 0.2558505 0.8848558 0.6581786 0.8545438 0.6606248 0.8678693 0.6585184 0.867887 0.6163359 0.8677276 0.6118072 0.7962626 0.6139062 0.7962982 0.6579413 0.8184055 0.6600577 0.8344801 0.6579513 0.8344978 0.6953725 0.6776974 0.6942828 0.6638146 0.6963759 0.663813 0.695371 0.853393 0.6930025 0.8399018 0.6950956 0.8399001 0.6139062 0.7962982 0.614237 0.663813 0.6163359 0.6638485 0.2558825 0.908034 0.2582973 0.9263893 0.2561908 0.9263878 0.6579513 0.8344978 0.6602851 0.8545261 0.6581786 0.8545438 0.6952261 0.6961309 0.6932794 0.677699 0.6953725 0.6776974 0.9874882 0.4538208 0.9757063 0.45554 0.987092 0.4524903 0.9867047 0.4505587 0.9874882 0.4538208 0.987092 0.4524903 0.9757063 0.45554 0.9867047 0.4505587 0.987092 0.4524903 0.8585725 0.4762175 0.897334 0.4546869 0.8970386 0.4745695 0.8636608 0.398573 0.9003226 0.4320119 0.8596535 0.4252876 0.2656434 0.5610329 0.4154978 0.3940798 0.2914016 0.588609 0.8944323 0.6066849 0.920661 0.554041 0.9395388 0.581806 0.8626548 0.5069259 0.9059399 0.5222441 0.8686568 0.5336232 0.8581563 0.4523132 0.9003226 0.4320119 0.897334 0.4546869 0.8626548 0.5069259 0.8970386 0.4745695 0.9003757 0.5001153 0.8805591 0.571722 0.9120905 0.5375958 0.920661 0.554041 0.873887 0.551836 0.9059399 0.5222441 0.9120905 0.5375958 0.8743396 0.3574385 0.9074974 0.4101014 0.8636608 0.398573 0.8970386 0.4745695 0.9129918 0.4564357 0.9123613 0.4742276 0.9395388 0.581806 0.9360038 0.5445396 0.9558929 0.5678101 0.9120905 0.5375958 0.9207324 0.5169644 0.9270427 0.5304426 0.9074974 0.4101014 0.9163352 0.4362275 0.9003226 0.4320119 0.9003757 0.5001153 0.9123613 0.4742276 0.9154823 0.4971482 0.9247682 0.3762443 0.9245172 0.4174126 0.9074974 0.4101014 0.897334 0.4546869 0.9163352 0.4362275 0.9129918 0.4564357 0.920661 0.554041 0.9270427 0.5304426 0.9360038 0.5445396 0.9003757 0.5001153 0.9207324 0.5169644 0.9059399 0.5222441 0.9360038 0.5445396 0.9398477 0.5233412 0.9486487 0.5351277 0.9129918 0.4564357 0.930506 0.4410229 0.9267853 0.4586524 0.9558929 0.5678101 0.9486487 0.5351277 0.967787 0.5533432 0.943646 0.3887552 0.9389113 0.4250671 0.9245172 0.4174126 0.9154823 0.4971482 0.9258565 0.4742667 0.9285818 0.4944155 0.9245172 0.4174126 0.930506 0.4410229 0.9163352 0.4362275 0.9270427 0.5304426 0.9337252 0.5117198 0.9398477 0.5233412 0.9123613 0.4742276 0.9267853 0.4586524 0.9258565 0.4742667 0.9154823 0.4971482 0.9337252 0.5117198 0.9207324 0.5169644 0.9389113 0.4250671 0.9429721 0.4461265 0.930506 0.4410229 0.9581419 0.4023213 0.9511964 0.433147 0.9389113 0.4250671 0.9267853 0.4586524 0.9429721 0.4461265 0.9391612 0.4610766 0.9486487 0.5351277 0.9509921 0.516209 0.9592858 0.5257169 0.9285818 0.4944155 0.9452273 0.5065341 0.9337252 0.5117198 0.9285818 0.4944155 0.938061 0.4744551 0.9404478 0.491774 0.9258565 0.4742667 0.9391612 0.4610766 0.938061 0.4744551 0.967787 0.5533432 0.9592858 0.5257169 0.9767808 0.539466 0.9398477 0.5233412 0.9452273 0.5065341 0.9509921 0.516209 0.9592858 0.5257169 0.9619955 0.5080591 0.9691756 0.5149924 0.9391612 0.4610766 0.9555766 0.4523215 0.9519541 0.4641374 0.9592858 0.5257169 0.9845647 0.5242224 0.9767808 0.539466 0.9694855 0.4158091 0.9630079 0.4426397 0.9511964 0.433147 0.9404478 0.491774 0.9507972 0.4748749 0.9527744 0.4888386 0.9511964 0.433147 0.9555766 0.4523215 0.9429721 0.4461265 0.9509921 0.516209 0.9569473 0.5006054 0.9619955 0.5080591 0.938061 0.4744551 0.9519541 0.4641374 0.9507972 0.4748749 0.9404478 0.491774 0.9569473 0.5006054 0.9452273 0.5065341 0.9527744 0.4888386 0.9645399 0.4964289 0.9569473 0.5006054 0.9507972 0.4748749 0.9603683 0.4664532 0.9592519 0.4752833 0.9845647 0.5242224 0.9751518 0.5076202 0.9879617 0.5138362 0.9619955 0.5080591 0.9645399 0.4964289 0.9689295 0.50235 0.9630079 0.4426397 0.9636632 0.4568855 0.9555766 0.4523215 0.9790436 0.4311568 0.9701914 0.4494495 0.9630079 0.4426397 0.9527744 0.4888386 0.9592519 0.4752833 0.9609215 0.4868039 0.9519541 0.4641374 0.9636632 0.4568855 0.9603683 0.4664532 0.9691756 0.5149924 0.9689295 0.50235 0.9751518 0.5076202 0.9838376 0.4415767 0.9757063 0.45554 0.9701914 0.4494495 0.9609215 0.4868039 0.9664047 0.4757362 0.9678095 0.4849984 0.9701914 0.4494495 0.9702662 0.4611129 0.9636632 0.4568855 0.9689295 0.50235 0.9707986 0.4926913 0.97444 0.4972798 0.9592519 0.4752833 0.9674201 0.4686492 0.9664047 0.4757362 0.9609215 0.4868039 0.9707986 0.4926913 0.9645399 0.4964289 0.9751518 0.5076202 0.97444 0.4972798 0.9795455 0.5010895 0.9603683 0.4664532 0.9702662 0.4611129 0.9674201 0.4686492 0.9751518 0.5076202 0.9899644 0.5051178 0.9879617 0.5138362 0.9893612 0.462207 0.9702662 0.4611129 0.9874882 0.4538208 0.99054 0.4697757 0.9674201 0.4686492 0.9893612 0.462207 0.9678095 0.4849984 0.99054 0.4697757 0.9914468 0.4885908 0.5977541 0.952257 0.589398 0.9456781 0.5977541 0.9456781 0.5156968 0.9736644 0.5062412 0.9662199 0.5156968 0.9662199 0.5156149 0.9244672 0.5061593 0.9319117 0.5061593 0.9244672 0.5701326 0.9719454 0.5617766 0.9653665 0.5701326 0.9653665 0.5258188 0.9855695 0.4608404 0.9344109 0.5258188 0.9344109 0.5509875 0.9796545 0.54939 0.9783968 0.5509875 0.9783968 0.5179467 0.9606046 0.5084912 0.95316 0.5179467 0.95316 0.5179468 0.9484865 0.5084913 0.941042 0.5179468 0.941042 0.5926019 0.9728353 0.5842458 0.9662564 0.5926019 0.9662564 0.5274854 0.9589092 0.462507 0.907751 0.5274854 0.907751 0.6012385 0.9659759 0.5928824 0.959397 0.6012385 0.959397 0.6063907 0.952257 0.5980346 0.9456781 0.6063907 0.9456781 0.5489609 0.9795514 0.5473635 0.9782937 0.5489609 0.9782937 0.6012385 0.9796947 0.5928824 0.9731158 0.6012385 0.9731158 0.5509875 0.9783432 0.54939 0.9770854 0.5509875 0.9770854 0.5805088 0.9796947 0.5721527 0.9731158 0.5805088 0.9731158 0.5927309 0.9346294 0.5993098 0.9429855 0.5927309 0.9429855 0.5462648 0.978946 0.5446673 0.9776883 0.5462648 0.9776883 0.6043589 0.9343489 0.5960028 0.9277701 0.6043589 0.9277701 0.6079465 0.9167691 0.5995904 0.9101903 0.6079465 0.9101903 0.6012697 0.9591164 0.5929136 0.9525375 0.6012697 0.9525375 0.5805088 0.9728353 0.5721527 0.9662564 0.5805088 0.9662564 0.5156149 0.9198021 0.5061592 0.9123575 0.5156149 0.9123575 0.6043589 0.9274895 0.5960028 0.9209106 0.6043589 0.9209106 0.5891454 0.9796947 0.5807893 0.9731158 0.5891454 0.9731158 0.5701326 0.9788048 0.5617766 0.9722259 0.5701326 0.9722259 0.6079464 0.9412083 0.5995903 0.9346294 0.6079464 0.9346294 0.5459013 0.9772611 0.4809229 0.9261025 0.5459014 0.9261025 0.5563337 0.9144109 0.6074922 0.9793892 0.5563337 0.9793892 0.5442346 0.9776883 0.5426371 0.978946 0.5426371 0.9776883 0.5156149 0.9322292 0.5061593 0.9396737 0.5061593 0.9322292 0.6012385 0.9728353 0.5928824 0.9662564 0.6012385 0.9662564 0.2590004 0.8706523 0.2586398 0.7407479 0.2590302 0.740738 0.2631813 0.870624 0.2635124 0.7406704 0.2635907 0.8706256 0.2593946 0.8706465 0.2590302 0.740738 0.2594531 0.7407319 0.2635907 0.8706256 0.2639347 0.7406755 0.2639844 0.8706303 0.2598043 0.8706446 0.2594531 0.7407319 0.2598925 0.7407298 0.2639844 0.8706303 0.264324 0.7406837 0.2643471 0.870638 0.2602134 0.8706465 0.2598925 0.7407298 0.2603315 0.7406592 0.2643471 0.870638 0.2646651 0.7406948 0.2646651 0.8706483 0.2602134 0.8706465 0.2607532 0.7407269 0.2606065 0.8706522 0.2710107 0.7406592 0.2707041 0.8706881 0.270725 0.7406634 0.2609683 0.8706614 0.2607532 0.7407269 0.2611414 0.7407368 0.270725 0.7406634 0.2703415 0.8706915 0.2703869 0.7406666 0.2659698 0.7407031 0.2662732 0.8704683 0.265833 0.8704656 0.261285 0.8706738 0.2611414 0.7407368 0.2614812 0.7407501 0.2703869 0.7406666 0.2699368 0.8706938 0.2700097 0.7406687 0.2659698 0.7407031 0.2654076 0.8704567 0.2655733 0.7406948 0.2675366 0.7406786 0.267848 0.8704186 0.267514 0.8704394 0.2700097 0.7406687 0.2695055 0.8706947 0.2696077 0.7406696 0.2655733 0.7406948 0.2650133 0.8704419 0.2652058 0.740681 0.2671788 0.7406932 0.267514 0.8704394 0.2671301 0.8704549 0.2696077 0.7406696 0.2690642 0.8706943 0.2691963 0.7406693 0.2652058 0.740681 0.2646651 0.8704218 0.2648813 0.7406623 0.2667883 0.7407023 0.2671301 0.8704549 0.2667111 0.8704647 0.2687915 0.7406677 0.2690642 0.8706943 0.2686299 0.8706926 0.2616975 0.8706482 0.2618224 0.7406725 0.2620155 0.8706378 0.2663801 0.7407056 0.2667111 0.8704647 0.2662732 0.8704683 0.2684088 0.740665 0.2686299 0.8706926 0.2682192 0.8706897 0.2620155 0.8706378 0.2622116 0.7406643 0.2623783 0.8706302 0.2680628 0.7406612 0.2682192 0.8706897 0.267848 0.8706856 0.2623783 0.8706302 0.2626339 0.7406592 0.262772 0.8706255 0.2586367 0.8706614 0.2582973 0.7407612 0.2586398 0.7407479 0.262772 0.8706255 0.2630732 0.7406687 0.2631813 0.870624 0.9175053 0.6257243 0.9176406 0.4890893 0.9176406 0.6257543 0.9186189 0.4887531 0.9187546 0.6162914 0.9186189 0.6162725 0.9142014 0.6216791 0.914049 0.4887328 0.9142014 0.4887183 0.9176406 0.6257543 0.9177632 0.4891047 0.9177632 0.6257697 0.9184717 0.4887346 0.9186189 0.6162725 0.9184717 0.6162539 0.9143462 0.6216635 0.9142014 0.4887183 0.9143462 0.4887027 0.9134808 0.6217293 0.9136053 0.4887636 0.9136053 0.6217244 0.9184717 0.4887346 0.9183185 0.6162363 0.9183185 0.488717 0.9144779 0.6216472 0.9143462 0.4887027 0.9144779 0.4886865 0.9136053 0.6217244 0.9137451 0.4887559 0.9137452 0.6217166 0.9183185 0.488717 0.9181654 0.6162207 0.9181654 0.4887013 0.9145914 0.621631 0.9144779 0.4886865 0.9145914 0.4886702 0.9137452 0.6217166 0.913895 0.4887455 0.913895 0.6217062 0.9181654 0.4887013 0.9180181 0.6162073 0.9180181 0.4886879 0.9166232 0.4887416 0.9167246 0.6268434 0.9166232 0.6269147 0.914049 0.6216935 0.913895 0.4887455 0.914049 0.4887328 0.9180181 0.4886879 0.9178823 0.6161968 0.9178823 0.4886775 0.9165036 0.4888131 0.9166232 0.6269147 0.9165036 0.6269862 0.9178823 0.4886775 0.9177632 0.6161895 0.9177632 0.4886702 0.9163702 0.4888818 0.9165036 0.6269862 0.9163702 0.627055 0.9167246 0.6253352 0.9168246 0.4887479 0.9168246 0.625413 0.9162284 0.4889453 0.9163702 0.627055 0.9162284 0.6271184 0.9168246 0.625413 0.9169432 0.4888242 0.9169433 0.6254892 0.9160833 0.4890009 0.9162284 0.6271184 0.9160833 0.6271741 0.9169433 0.6254892 0.9170758 0.4888961 0.9170758 0.6255611 0.9159409 0.4890467 0.9160833 0.6271741 0.9159409 0.6272199 0.9170758 0.6255611 0.9172173 0.4889608 0.9172173 0.6256258 0.9158064 0.4890808 0.9159409 0.6272199 0.9158064 0.627254 0.9172173 0.6256258 0.9173623 0.4890159 0.9173624 0.6256809 0.9156851 0.489102 0.9158064 0.627254 0.915685 0.6272751 0.9173624 0.6256809 0.9175053 0.4890593 0.9175053 0.6257243 0.9187546 0.4887722 0.9188734 0.61631 0.9187546 0.6162914 0.5476138 0.9636787 0.5477419 0.8076063 0.5477419 0.963731 0.9191029 0.4889771 0.9192348 0.6438156 0.9191029 0.6439003 0.5477419 0.963731 0.5478768 0.8076714 0.5478768 0.9637961 0.9189809 0.4890675 0.9191029 0.6439003 0.9189808 0.6439906 0.5478768 0.9637961 0.5480133 0.807747 0.5480134 0.9638717 0.9188735 0.4891601 0.9189808 0.6439906 0.9188734 0.6440832 0.5480134 0.9638717 0.5481462 0.80783 0.5481463 0.9639548 0.915581 0.4886795 0.915685 0.6227177 0.9155809 0.622727 0.5481463 0.9639548 0.5482704 0.8079174 0.5482704 0.9640421 0.9154571 0.4886934 0.9155809 0.622727 0.9154571 0.6227409 0.5482704 0.9640421 0.548381 0.8080058 0.548381 0.9641305 0.915318 0.4887113 0.9154571 0.6227409 0.915318 0.6227589 0.9129268 0.4887247 0.9127739 0.6307765 0.9127739 0.4887069 0.548381 0.9641305 0.5484739 0.8080916 0.5484739 0.9642163 0.9151692 0.4887326 0.915318 0.6227589 0.9151692 0.6227802 0.9126268 0.4886915 0.9127739 0.6307765 0.9126268 0.630761 0.9134808 0.4888061 0.9133622 0.6308555 0.9133622 0.4887859 0.9150163 0.4887565 0.9151692 0.6227802 0.9150163 0.622804 0.9124911 0.4886791 0.9126268 0.630761 0.9124911 0.6307486 0.9133622 0.4887859 0.9132267 0.6308345 0.9132267 0.488765 0.9148652 0.4887821 0.9150163 0.622804 0.9148652 0.6228295 0.9123721 0.4886702 0.9124911 0.6307486 0.9123721 0.6307398 0.9132267 0.488765 0.9130797 0.630814 0.9130797 0.4887443 0.9148652 0.4887821 0.9147217 0.6228556 0.9147217 0.4888082 0.9196382 0.4887035 0.919758 0.6435934 0.9196381 0.6436267 0.9130797 0.4887443 0.9129269 0.6307944 0.9129268 0.4887247 0.9147217 0.4888082 0.9145914 0.6228814 0.9145914 0.4888339 0.9195077 0.488753 0.9196381 0.6436267 0.9195076 0.6436762 0.5473972 0.9636204 0.5474974 0.8075167 0.5474974 0.9636414 0.9193714 0.4888168 0.9195076 0.6436762 0.9193714 0.6437399 0.5474974 0.9636414 0.5476137 0.807554 0.5476138 0.9636787 0.9192348 0.4888925 0.9193714 0.6437399 0.9192348 0.6438156 0.5721527 0.9525375 0.5823391 0.9578597 0.5721527 0.9591164 0.4859229 0.9789646 0.5647062 0.9377559 0.5647062 0.9889143 0.5912688 0.9444382 0.5858716 0.9346294 0.5924504 0.9346294 0.457507 0.9310572 0.5371016 0.9727001 0.457507 0.9822158 0.5825288 0.9646848 0.5926019 0.959397 0.5926019 0.9659758 0.5045606 0.9355291 0.4983973 0.9244672 0.5058419 0.9244672 0.5559263 0.956293 0.5613235 0.9460152 0.5625053 0.956293 0.5069548 0.9520782 0.5007293 0.941042 0.5081738 0.941042 0.5484264 0.9782401 0.5473635 0.9763778 0.5486212 0.9763778 0.4774433 0.964746 0.4836688 0.9530528 0.4848878 0.964746 0.5993098 0.9101903 0.5937499 0.9199316 0.592731 0.9101903 0.577758 0.9831431 0.5869541 0.9660324 0.5886393 0.9831431 0.5081737 0.95316 0.5019482 0.9641963 0.5007292 0.9531601 0.5999847 0.9831432 0.5907886 0.9660324 0.5983978 0.9660324 0.5058417 0.9123575 0.4996784 0.9234195 0.4983972 0.9123575 0.4848878 0.9527353 0.4786623 0.941042 0.4838681 0.941042 0.5924505 0.9101903 0.5870532 0.919999 0.5858716 0.9101903 0.5787315 0.9310925 0.5732849 0.9207817 0.5778854 0.9207817 0.5059238 0.9662199 0.4945925 0.9722034 0.4945925 0.9669975 0.5858716 0.9277701 0.5957223 0.9331252 0.5858716 0.9343489 0.4903178 0.9359384 0.4842103 0.9243083 0.4894162 0.9243083 0.6032537 0.9360708 0.5258404 0.9772798 0.5258404 0.9415054 0.5446673 0.9763769 0.5465599 0.9773944 0.5446673 0.9776346 0.6171845 0.9377493 0.5375896 0.9793919 0.5375896 0.9436174 0.5445298 0.9763768 0.5426371 0.9773944 0.5426371 0.9765148 0.465923 0.9310959 0.5433364 0.9723047 0.465923 0.9822543 0.5513373 0.9744628 0.54939 0.9754802 0.54939 0.9746007 0.5957223 0.9209106 0.5858716 0.9262658 0.5858716 0.9216653 0.5826196 0.9525375 0.5926331 0.9578253 0.5826196 0.9591164 0.54939 0.9757741 0.5513157 0.976785 0.54939 0.9770318 0.4591737 0.9377307 0.5379567 0.9789397 0.4591737 0.9888892 0.5721527 0.9205011 0.5775995 0.9101903 0.5787317 0.9205011 0.3641014 0.9388478 0.3783847 0.9397063 0.3641014 0.942229 0.3952795 0.9782117 0.3944672 0.960618 0.3950018 0.960618 0.4158538 0.9316737 0.3999539 0.9328547 0.3999539 0.9324033 0.330567 0.9552873 0.3477454 0.9561825 0.330567 0.9592928 0.4284902 0.9356052 0.4277688 0.9209917 0.4282201 0.9209917 0.330567 0.9510357 0.3480222 0.9518616 0.330567 0.9550412 0.3994889 0.9554247 0.3985376 0.9383817 0.3990722 0.9383817 0.3952373 0.9383817 0.3944251 0.9561221 0.3912319 0.9383817 0.3529465 0.9861254 0.3518479 0.9693269 0.3523824 0.9693269 0.4321178 0.9093218 0.4298412 0.9573268 0.4214488 0.9093218 0.3995311 0.9772053 0.3982399 0.960618 0.3987745 0.960618 0.3910279 0.960618 0.3900766 0.9789092 0.3870224 0.960618 0.4320792 0.9348508 0.4307951 0.9209917 0.4312463 0.9209917 0.3909858 0.9383817 0.3898871 0.9569175 0.3869803 0.9383817 0.4320792 0.9488149 0.4305766 0.9350585 0.4310278 0.9350585 0.4213123 0.9209919 0.4202216 0.9368172 0.4179311 0.9209917 0.4037404 0.9546086 0.4016827 0.9383817 0.4022174 0.9383817 0.3867763 0.960618 0.3852551 0.9795348 0.3827709 0.960618 0.3824083 0.9424402 0.3960948 0.9442943 0.3824083 0.9458213 0.3867342 0.9383817 0.3849542 0.9574201 0.3827288 0.9383817 0.3641014 0.9424367 0.3778236 0.944052 0.3641014 0.945818 0.3798393 0.9352589 0.3641014 0.9362611 0.3641014 0.9358097 0.3825248 0.960618 0.3804672 0.9797254 0.3785194 0.960618 0.3319606 0.9496228 0.4448992 0.9609792 0.3319606 0.9772872 0.3979523 0.9352622 0.3824083 0.9361209 0.3824083 0.9356696 0.417144 0.917217 0.4010028 0.9190712 0.4010028 0.91862 0.3999539 0.9388516 0.4138816 0.9400326 0.3999539 0.9422329 0.41528 0.9352627 0.3999539 0.9360182 0.3999539 0.9355669 0.380207 0.9316698 0.3641014 0.9332852 0.3641014 0.932834 0.3824083 0.9388511 0.3964979 0.9398533 0.3824083 0.9422324 0.3484457 0.9467841 0.330567 0.9476101 0.330567 0.9470756 0.3984324 0.9316733 0.3824083 0.9330613 0.3824083 0.93261 0.5721527 0.9416748 0.5776252 0.931373 0.5787317 0.9416748 0.4827252 0.9736644 0.494275 0.9675045 0.494275 0.9726715 0.54939 0.9744091 0.5504334 0.9724437 0.5506477 0.9744091 0.5466224 0.9737542 0.5446663 0.9747949 0.5446663 0.9739219 0.4852052 0.9526488 0.4913707 0.941042 0.4926497 0.9526488 0.4852052 0.9530528 0.4913707 0.9646595 0.4862037 0.9646595 0.5445933 0.9750119 0.5426371 0.9739712 0.5445933 0.9737542 0.4828733 0.9123575 0.4890496 0.9239909 0.4838826 0.9239908 0.5473635 0.9737551 0.5493147 0.9747958 0.5473635 0.9750127 0.5721527 0.9419553 0.5776252 0.952257 0.5730591 0.952257 0.5652933 0.9582266 0.5707419 0.9480446 0.5718722 0.9582266 0.5473635 0.9737014 0.5493363 0.9726518 0.5493363 0.9735248 0.5790122 0.9203488 0.5844704 0.9101903 0.585591 0.9203488 0.4707143 0.9736644 0.4824078 0.9674278 0.4824078 0.9725947 0.5004118 0.9641963 0.4941203 0.9527779 0.4992873 0.9527779 0.4906352 0.9238288 0.4968277 0.9123575 0.4980797 0.9238288 0.5559263 0.9457347 0.5662698 0.9401998 0.5662698 0.9447659 0.5822483 0.959397 0.5721527 0.9649319 0.5721527 0.9603658 0.5445718 0.9763233 0.5426371 0.9752736 0.5445718 0.9750655 0.577294 0.9831485 0.5680983 0.9660324 0.5756505 0.9660324 0.5891174 0.9456781 0.5790122 0.9511896 0.5790122 0.9466235 0.5492954 0.9763242 0.5473635 0.9752705 0.5492954 0.9750664 0.5659487 0.9660324 0.5567528 0.9831485 0.5550674 0.9660324 0.5465599 0.9750655 0.5446254 0.9761152 0.5446254 0.9752422 0.5718722 0.9650859 0.5617766 0.9595511 0.5718722 0.9585071 0.4173517 0.9157266 0.425011 0.9198252 0.4173517 0.9205982 0.4906352 0.9244672 0.4968277 0.9359385 0.4916608 0.9359384 0.5004118 0.941042 0.4941204 0.9524604 0.4929672 0.941042 0.5426371 0.9724428 0.5446127 0.9734965 0.5426371 0.9737006 0.5790122 0.9315164 0.5844704 0.9416748 0.5799042 0.9416748 0.5446663 0.9724428 0.5466392 0.9734925 0.5446663 0.9737006 0.579012 0.9209106 0.5844606 0.9310925 0.5798946 0.9310925 0.3585218 0.9605042 0.3574571 0.9383817 0.361418 0.9383817 0.3743062 0.9810571 0.3746625 0.9606407 0.3782733 0.9808086 0.3501704 0.9690406 0.348941 0.9467841 0.3529006 0.9467841 0.3785185 0.9588151 0.3788747 0.9384068 0.3824827 0.9585244 0.3546708 0.9607385 0.3532525 0.9383817 0.357211 0.9383817 0.3443563 0.9692882 0.3221757 0.968901 0.3442289 0.9653297 0.4005025 0.9243471 0.4176757 0.9229283 0.4177234 0.9232267 0.3279874 0.9608015 0.3263632 0.9383817 0.3303208 0.9383817 0.3441922 0.973495 0.3221743 0.9731107 0.3440889 0.9695343 0.3112422 0.9890088 0.4325686 0.980265 0.4328608 0.9823761 0.3239997 0.9608246 0.3221598 0.9383817 0.326117 0.9383817 0.3440069 0.9777038 0.3221732 0.9773228 0.3439214 0.9737412 0.3824083 0.9314655 0.3997104 0.9303887 0.3997461 0.9306901 0.34467 0.9650835 0.3221814 0.964691 0.3444445 0.9611322 0.382375 0.917228 0.3641121 0.9169092 0.382312 0.9138812 0.3641014 0.9314622 0.3815128 0.9305307 0.3815433 0.9308342 0.3530064 0.9423356 0.3305863 0.9419443 0.3528169 0.9383817 0.3822005 0.9207839 0.364112 0.9204682 0.3821404 0.9174357 0.3824083 0.9279029 0.3999534 0.9270916 0.3999798 0.9273976 0.3529006 0.9465381 0.3305845 0.9461485 0.3527442 0.9425818 0.3658725 0.9596162 0.3662429 0.9383946 0.3698405 0.9595405 0.3641014 0.9279003 0.3817998 0.9271798 0.381823 0.9274886 0.3658741 0.9816555 0.366241 0.9606315 0.3698435 0.9815672 0.3824083 0.9243422 0.4002736 0.9236791 0.4002947 0.9239909 0.3700866 0.9592388 0.3704504 0.9383963 0.374057 0.9591302 0.3641014 0.9243407 0.3821408 0.9237002 0.382161 0.924015 0.3830463 0.9207026 0.383351 0.9032414 0.3863983 0.9205879 0.3532525 0.9610313 0.3540275 0.9826079 0.353651 0.9826324 0.3700895 0.9811939 0.3704484 0.9606361 0.37406 0.9810248 0.3616641 0.960618 0.3624973 0.9823939 0.3621174 0.9824203 0.3743031 0.958869 0.3746603 0.9384021 0.3782724 0.9586618 0.3616641 0.9383817 0.362595 0.9603421 0.3622119 0.9603719 0.2809705 0.8766004 0.283049 0.8619428 0.2832384 0.8765972 0.9302765 0.619465 0.9329412 0.6071568 0.932543 0.6194756 0.2807812 0.8619459 0.2829275 0.8487498 0.283049 0.8619428 0.92994 0.7272309 0.9319884 0.683348 0.9322064 0.7272414 0.2806077 0.8124834 0.2829096 0.7897146 0.2828755 0.8124803 0.2646651 0.9030587 0.2669717 0.8864613 0.2669306 0.9030985 0.2807155 0.7713971 0.2830912 0.7555136 0.2829833 0.771394 0.8976266 0.7354083 0.8998945 0.7975535 0.8976266 0.7975489 0.929722 0.6833375 0.9319756 0.6568979 0.9319884 0.683348 0.2806418 0.7897176 0.2829833 0.771394 0.2829096 0.7897146 0.7972665 0.6908412 0.799533 0.8194481 0.7972666 0.8194604 0.9297091 0.6568872 0.9322193 0.6365044 0.9319756 0.6568979 0.2647062 0.8864214 0.2670865 0.8705082 0.2669717 0.8864613 0.8525084 0.7992648 0.8498945 0.7693973 0.8521564 0.7693334 0.2806596 0.848753 0.2828911 0.8334437 0.2829275 0.8487498 0.9303262 0.775835 0.9322064 0.7272414 0.9325926 0.7758455 0.9299529 0.6364938 0.932543 0.6194756 0.9322193 0.6365044 0.8498945 0.7693973 0.8525083 0.7487416 0.8521564 0.7693334 0.9306748 0.7931545 0.9325926 0.7758455 0.9329412 0.793165 0.2648211 0.9197227 0.2669306 0.9030985 0.2670865 0.9197626 0.2806233 0.8334468 0.2828755 0.8124803 0.2828911 0.8334437 0.2808234 0.7555167 0.2832384 0.7406592 0.2830912 0.7555136 0.6361745 0.9607675 0.675549 0.9825493 0.6361745 0.9909986 0.9614877 0.9742437 0.9584529 0.9426952 0.96139 0.9426955 0.9644337 0.8697639 0.9614877 0.828777 0.9644248 0.8287776 0.96139 0.9426955 0.9583803 0.9064334 0.9613174 0.9064337 0.9644248 0.8287776 0.9614965 0.7870797 0.9644336 0.7870804 0.9613174 0.9064337 0.9583356 0.8668513 0.9612727 0.8668516 0.9644336 0.7870804 0.9615231 0.7462738 0.9644601 0.7462745 0.9612727 0.8668516 0.9583206 0.8254702 0.9612576 0.8254705 0.9644601 0.7462745 0.961566 0.7079274 0.9645031 0.707928 0.9612576 0.8254705 0.9583356 0.7838802 0.9612727 0.7838805 0.9645031 0.707928 0.9616239 0.673514 0.9645609 0.6735147 0.9612727 0.7838805 0.9583804 0.7436797 0.9613174 0.7436801 0.9583206 0.9740431 0.9552606 0.9430195 0.9581978 0.9430201 0.9613174 0.7436801 0.9584529 0.7064136 0.96139 0.706414 0.9581978 0.9430201 0.9551694 0.9071564 0.9581065 0.9071571 0.9645609 0.8261353 0.9674981 0.8674542 0.9645611 0.8674541 0.96139 0.706414 0.9585506 0.673514 0.9614877 0.6735143 0.9581065 0.9071571 0.9551132 0.8678315 0.9580503 0.8678321 0.9645611 0.8674541 0.9674986 0.9068819 0.9645615 0.9068819 0.9645632 0.6735141 0.9674993 0.7067077 0.9645622 0.7067077 0.9580503 0.8678321 0.9550943 0.8265559 0.9580313 0.8265566 0.9645615 0.9068819 0.9674993 0.9429033 0.9645622 0.9429033 0.9645622 0.7067077 0.9674986 0.7441876 0.9645615 0.7441876 0.9580313 0.8265566 0.9551132 0.7849159 0.9580503 0.7849165 0.9645622 0.9429033 0.9675002 0.9741343 0.9645631 0.9741343 0.9645615 0.7441876 0.9674982 0.7845135 0.9645611 0.7845135 0.9580503 0.7849165 0.9551694 0.7445116 0.9581065 0.7445123 0.9645609 0.9732019 0.961566 0.94339 0.9645031 0.9433907 0.9645611 0.7845135 0.967498 0.8261352 0.9645609 0.8261353 0.9581065 0.7445123 0.9552607 0.7068958 0.9581977 0.7068965 0.9645031 0.9433907 0.9615231 0.9084633 0.9644601 0.908464 0.9581977 0.7068965 0.9553834 0.673514 0.9583206 0.6735147 0.9644601 0.908464 0.9614966 0.8697632 0.9644337 0.8697639 0.8592342 0.1032225 0.8594591 0.1272338 0.8572051 0.1030331 0.2214092 0.7750749 0.2127435 0.7965986 0.2105935 0.7966352 0.8592342 0.1032225 0.8594591 0.07884043 0.8614882 0.07902985 0.2105935 0.7966352 0.2060833 0.8200021 0.2039333 0.8200387 0.8614882 0.07902985 0.8661344 0.0555855 0.8681634 0.05577498 0.2039333 0.8200387 0.2038344 0.8443496 0.2016844 0.8443862 0.8681634 0.05577498 0.8769744 0.03416192 0.8790035 0.03435134 0.2039333 0.8687421 0.2038344 0.8443496 0.2060833 0.8687054 0.8790035 0.03435134 0.8915627 0.01539295 0.8935917 0.01558244 0.2105935 0.8921701 0.2060833 0.8687054 0.2127435 0.8921335 0.8935917 0.01558244 0.9093384 0 0.9113675 1.89454e-4 0.2214092 0.9137701 0.2127435 0.8921335 0.2235592 0.9137336 0.5471988 0.9460967 0.5456321 0.9272262 0.5471452 0.9250457 0.2769255 0.9067323 0.2784385 0.8846603 0.2784386 0.9089139 0.2359646 0.9327121 0.2235592 0.9137336 0.2381147 0.9326754 0.5471452 0.9250457 0.5455992 0.904143 0.5471122 0.9019625 0.2769258 0.9298759 0.2784386 0.9089139 0.2784389 0.9320574 0.2537005 0.9482679 0.2381147 0.9326754 0.2558505 0.9482313 0.5471122 0.9019625 0.545588 0.8799149 0.547101 0.8777344 0.2769261 0.9510199 0.2784389 0.9320574 0.2784392 0.9532015 0.2769257 0.8343767 0.2784392 0.814558 0.2784389 0.8365582 0.547101 0.8777344 0.5455992 0.8554728 0.5471122 0.8532923 0.8935917 0.1909843 0.9093384 0.2062507 0.8915627 0.1907948 0.2769255 0.8580474 0.2784389 0.8365582 0.2784386 0.8602289 0.5471122 0.8532923 0.5456321 0.8317561 0.5471451 0.8295756 0.8790035 0.1721637 0.8915627 0.1907948 0.8769744 0.1719743 0.2769254 0.8824788 0.2784386 0.8602289 0.2784385 0.8846603 0.5471451 0.8295756 0.5456857 0.8096762 0.5471988 0.8074957 0.8681634 0.1507017 0.8769744 0.1719743 0.8661344 0.1505123 0.2537004 0.7406959 0.2381146 0.75615 0.2359646 0.7561865 0.8614882 0.1274231 0.8661344 0.1505123 0.8594591 0.1272338 0.2359646 0.7561865 0.2235592 0.7750383 0.2214092 0.7750749 0.8087788 0.07347148 0.8059837 0.1021603 0.8033493 0.1025838 0.8059085 0.3363816 0.8087913 0.3073294 0.8113505 0.3074353 0.8033493 0.1025838 0.8059836 0.1318507 0.8033493 0.1322742 0.8113505 0.3074353 0.8194664 0.2800492 0.8220255 0.2801552 0.8087788 0.1614015 0.8059836 0.1318507 0.8114132 0.1609781 0.8220255 0.2801552 0.8349641 0.2554833 0.8375232 0.2555893 0.8194292 0.1888465 0.8114132 0.1609781 0.8220636 0.188423 0.8375232 0.2555893 0.854689 0.2345759 0.8572481 0.2346819 0.2710107 0.85513 0.2730588 0.8282859 0.2730589 0.85771 0.8348913 0.2135545 0.8220636 0.188423 0.8375257 0.213131 0.2806077 0.9070408 0.2784933 0.8816703 0.280542 0.8790369 0.2710109 0.8832074 0.2730589 0.85771 0.2730591 0.8857873 0.8545708 0.2345759 0.8375257 0.213131 0.8572051 0.2341524 0.280542 0.8790369 0.2784529 0.8522771 0.2805017 0.8496437 0.2710113 0.908859 0.2730591 0.8857873 0.2730595 0.9114389 0.2710113 0.7673495 0.2730602 0.7432392 0.2730595 0.7699294 0.2805017 0.8496437 0.2784392 0.8226245 0.280488 0.819991 0.2710119 0.9310991 0.2730595 0.9114389 0.2730601 0.933679 0.2710109 0.7960664 0.2730595 0.7699294 0.2730591 0.7986462 0.280488 0.819991 0.2784529 0.7938517 0.2805016 0.7912182 0.2730602 0.9065597 0.2751132 0.885752 0.2751132 0.9069812 0.2710107 0.825706 0.2730591 0.7986462 0.2730588 0.8282859 0.2805016 0.7912182 0.2784933 0.7670647 0.2805421 0.7644312 0.8375233 0.4465197 0.854689 0.4672253 0.8349641 0.4464137 0.2805421 0.7644312 0.278559 0.7432928 0.2806077 0.7406592 0.8220255 0.4220293 0.8349641 0.4464137 0.8194664 0.4219232 0.8545708 4.23524e-4 0.8375257 0.02096706 0.8348913 0.02139055 0.8113505 0.394801 0.8194664 0.4219232 0.8087913 0.394695 0.8348913 0.02139055 0.8220636 0.04563236 0.8194292 0.04605579 0.8059084 0.3658813 0.8087913 0.394695 0.8033493 0.3657753 0.8194292 0.04605579 0.8114132 0.07304793 0.8087788 0.07347148 0.8059084 0.3658813 0.8033493 0.3362755 0.8059085 0.3363816 0.5405828 0.9153235 0.5393056 0.9388614 0.5392886 0.9148099 0.5442954 0.8736105 0.5455875 0.8415195 0.5455871 0.8750996 0.5441751 0.8647762 0.5429278 0.8359704 0.5442209 0.834428 0.5405828 0.8871449 0.5392886 0.9148099 0.5392885 0.8866313 0.5442209 0.834428 0.5430021 0.8090381 0.5442954 0.8074957 0.5405999 0.8559219 0.5392885 0.8866313 0.5393056 0.8554083 0.2595998 0.9253826 0.2582973 0.9005327 0.2595848 0.8999297 0.9687434 0.4233147 0.9846959 0.4510394 0.9671499 0.4233166 0.2595848 0.8999297 0.2583122 0.8712768 0.2595998 0.8706738 0.9566575 0.3924747 0.9671499 0.4233166 0.9550639 0.3924766 0.5326568 0.740493 0.5142937 0.7664907 0.5126571 0.7665041 0.9504962 0.3597028 0.9550639 0.3924766 0.9489026 0.3597047 0.5126571 0.7665041 0.4994326 0.7961646 0.4977959 0.796178 0.9504962 0.3597028 0.9489026 0.3262602 0.9504961 0.3262583 0.4977959 0.796178 0.4902811 0.8283611 0.4886445 0.8283745 0.9504961 0.3262583 0.9550639 0.2934284 0.9566575 0.2934266 0.4886445 0.8283745 0.487191 0.8618428 0.4855544 0.8618562 0.9566575 0.2934266 0.9671499 0.2624711 0.9687435 0.2624691 0.4886445 0.8953365 0.487191 0.8618428 0.4902811 0.8953231 0.9687435 0.2624691 0.9846959 0.2345777 0.9862895 0.2345759 0.5442954 0.9069462 0.5455871 0.8750996 0.5455869 0.9084354 0.4977959 0.9275286 0.4902811 0.8953231 0.4994325 0.9275152 0.5442954 0.9959967 0.5429277 0.9658122 0.5442209 0.9642697 0.5442954 0.9387563 0.5455869 0.9084354 0.5455871 0.9402454 0.5126571 0.9571956 0.4994325 0.9275152 0.5142937 0.9571823 0.5442209 0.9642697 0.5428819 0.9325113 0.5441751 0.9309689 0.5442958 0.9678181 0.5455871 0.9402454 0.5455874 0.9693073 0.5326568 0.9831973 0.5142937 0.9571823 0.5342934 0.983184 0.5441751 0.9309689 0.5428664 0.8989165 0.5441597 0.897374 0.5442963 0.9930149 0.5455874 0.9693073 0.545588 0.9945041 0.5442958 0.8400303 0.545588 0.8089849 0.5455875 0.8415195 0.5441597 0.897374 0.5428819 0.8663186 0.5441751 0.8647762 0.947751 0.2346798 0.9289909 0.2663898 0.9278393 0.2664937 0.90981 0.8159787 0.9156636 0.8532882 0.9086668 0.816005 0.9278393 0.2664937 0.9152755 0.3017329 0.9141238 0.3018369 0.90981 0.8159787 0.9086668 0.7779446 0.9098099 0.7779182 0.9141238 0.3018369 0.9082834 0.3392471 0.9071318 0.339351 0.9098099 0.7779182 0.9156635 0.7405698 0.9168066 0.7405434 0.9071318 0.339351 0.9082834 0.3774906 0.9071318 0.3775945 0.9168066 0.7405434 0.9293881 0.7053169 0.9305313 0.7052904 0.9489026 0.5640947 0.9498161 0.5271424 0.9498161 0.5650385 0.9141238 0.4150978 0.9082834 0.3774906 0.9152755 0.4149938 0.9305313 0.7052904 0.9493132 0.6735404 0.9504563 0.673514 0.9489027 0.6002563 0.9498161 0.5650385 0.9498162 0.6012001 0.9278393 0.4504194 0.9152755 0.4149938 0.9289909 0.4503155 0.9123721 0.6668908 0.9113872 0.630032 0.9123021 0.6290345 0.9489032 0.6332938 0.9498162 0.6012001 0.9498166 0.6342376 0.947751 0.4822022 0.9289909 0.4503155 0.9489026 0.4820983 0.9123021 0.6290345 0.9113515 0.5918413 0.9122664 0.5908439 0.9489039 0.6619375 0.9498166 0.6342376 0.9498172 0.6628813 0.9489032 0.4880248 0.9498172 0.4519832 0.9498165 0.4889685 0.9122664 0.5908439 0.9113515 0.5547841 0.9122664 0.5537866 0.9206822 0.5943491 0.9197945 0.6211307 0.9197673 0.5937889 0.9489027 0.5261986 0.9498165 0.4889685 0.9498161 0.5271424 0.9122664 0.5537866 0.9113872 0.5202842 0.9123021 0.5192869 0.920673 0.5623156 0.9197673 0.5937889 0.919758 0.5617554 0.9123021 0.5192869 0.9114573 0.4896677 0.9123721 0.4886702 0.9206823 0.5268214 0.919758 0.5617554 0.9197673 0.5262612 0.9108682 0.6585407 0.9099256 0.6302244 0.9108365 0.6296058 0.9207094 0.4892304 0.9197673 0.5262612 0.9197945 0.4886702 0.9108365 0.6296058 0.9099255 0.5969663 0.9108365 0.5963478 0.9305312 0.8883352 0.9493131 0.9198772 0.9293881 0.8883616 0.9108365 0.5963478 0.9099572 0.5606632 0.9108682 0.5600447 0.9168067 0.8532618 0.9293881 0.8883616 0.9156636 0.8532882 0.7722382 0.5678026 0.873887 0.551836 0.8805591 0.571722 0.17309 0.4619555 0.1355179 0.4797325 0.1360509 0.4507352 0.8029331 0.6049637 0.8805591 0.571722 0.8944323 0.6066849 0.1731829 0.5028699 0.1351676 0.515966 0.1355179 0.4797325 0.7483311 0.9897073 0.737068 0.9784786 0.756959 0.9784786 0.7112524 0.9864936 0.7013329 0.9670798 0.7198802 0.9752649 0.7284401 0.9897073 0.7198802 0.9752649 0.737068 0.9784786 0.7483311 0.9897073 0.7688308 0.9749153 0.7602031 0.9861441 0.486325 0.951332 0.5354048 0.9875002 0.4795056 0.9672033 0.4909818 0.9446336 0.5424318 0.9732373 0.486325 0.951332 0.5602677 0.9147769 0.5555992 0.9509568 0.5111388 0.9235911 0.5111388 0.9235911 0.5494288 0.9543667 0.5020272 0.9308372 0.5020272 0.9308372 0.5457772 0.9655593 0.4909818 0.9446336 0.6712204 0.9235783 0.6347839 0.946887 0.6329307 0.9178864 7.82205e-4 0.9828956 0.6259124 0.966235 0.6265464 0.9828953 0.6172661 0.9831919 7.9101e-4 0.999852 1.48153e-4 0.9831922 0.6585263 0.001208007 0.6418873 0.3744357 0.6418876 1.48153e-4 0.6249392 0.4634081 0.641591 0.001004457 0.6415887 0.4642642 0.5424318 0.9732373 0.5354048 0.9875002 0.5354048 0.9875002 0.5457772 0.9655593 0.5424318 0.9732373 0.5424318 0.9732373 0.5494288 0.9543667 0.5457772 0.9655593 0.5457772 0.9655593 0.5494288 0.9543667 0.5457772 0.9655593 0.5457772 0.9655593 0.5457772 0.9655593 0.5424318 0.9732373 0.5424318 0.9732373 0.5424318 0.9732373 0.5354048 0.9875002 0.5354048 0.9875002 0.5457772 0.9655593 0.5494288 0.9543667 0.5457772 0.9655593 0.5424318 0.9732373 0.5457772 0.9655593 0.5424318 0.9732373 0.5354048 0.9875002 0.5424318 0.9732373 0.5354048 0.9875002 0.6531364 0.5635884 0.8626548 0.5069259 0.6546559 0.5282083 0.6535561 0.3880699 0.556344 0.4239198 0.6541674 0.4229533 0.5546024 0.3928153 0.6529921 0.3461704 0.5512403 0.3503141 0.5479813 0.6385751 0.6483201 0.6108653 0.5517166 0.6035249 0.6530017 0.5805271 0.5517166 0.6035249 0.6483201 0.6108653 0.6535561 0.3880699 0.8743396 0.3574385 0.6529921 0.3461704 0.6546559 0.5282083 0.5552145 0.5548504 0.6531364 0.5635884 0.6531364 0.5635884 0.5541248 0.5729305 0.6530017 0.5805271 0.5512403 0.3503141 0.1730712 0.426249 0.5546024 0.3928153 0.177792 0.4883763 0.5564474 0.522998 0.5567003 0.4877705 0.6541674 0.4229533 0.5568822 0.451668 0.6547825 0.4511064 0.148948 0.9471256 0.2503393 0.9441768 0.04752069 0.9483043 0.6541674 0.4229533 0.8636608 0.398573 0.6535561 0.3880699 0.6547825 0.4511064 0.5567003 0.4877705 0.6560637 0.4881866 0.1754053 0.5711627 0.5479813 0.6385751 0.5517166 0.6035249 0.5568822 0.451668 0.177792 0.4883763 0.5567003 0.4877705 0.6561391 0.4902923 0.5564474 0.522998 0.6546559 0.5282083 0.6472044 0.6489678 0.6577621 0.6243964 0.639718 0.6470116 0.9912025 0.4933273 0.97444 0.4972798 0.9908143 0.4981514 0.9914468 0.4885908 0.9707986 0.4926913 0.9912025 0.4933273 0.9908143 0.4981514 0.9795455 0.5010895 0.9899644 0.5051178 0.6649716 0.614026 0.6820717 0.5926666 0.6530017 0.5805271 0.6547825 0.4511064 0.8596535 0.4252876 0.6541674 0.4229533 0.7722382 0.5678026 0.8686568 0.5336232 0.6531364 0.5635884 0.6560637 0.4881866 0.8581563 0.4523132 0.6547825 0.4511064 0.6546559 0.5282083 0.8585725 0.4762175 0.6561391 0.4902923 0.1730712 0.426249 0.1680174 0.4112057 0.1697487 0.4390952 0.1680174 0.4112057 0.01662915 0.4804876 0.1697487 0.4390952 0.1790028 0.5138934 0.01397126 0.5278831 0.1789126 0.5372074 0.01662915 0.4804876 0.1745944 0.4626297 0.1699688 0.4393597 0.177792 0.4883763 0.01300972 0.5162876 0.1790028 0.5138934 0.177432 0.553937 0.01930904 0.5465725 0.1754053 0.5711627 0.1790028 0.5138934 0.5552145 0.5548504 0.5564474 0.522998 0.177432 0.553937 0.5517166 0.6035249 0.5541248 0.5729305 0.5546024 0.3928153 0.1699688 0.4393597 0.556344 0.4239198 0.556344 0.4239198 0.1745944 0.4626297 0.5568822 0.451668 0.1789126 0.5372074 0.5541248 0.5729305 0.5552145 0.5548504 0.01630258 0.5397558 0.01724529 0.5487961 0.01930904 0.5465725 0.01300972 0.5162876 0.0120638 0.527875 0.01397126 0.5278831 0.01397126 0.5278831 0.01399111 0.5393839 0.01630258 0.5397558 0.01662915 0.4804876 0.01026308 0.4927836 0.01260221 0.4949758 0.01260221 0.4949758 0.0102632 0.50568 0.01229774 0.5065664 0.01229774 0.5065664 0.01084822 0.5151596 0.01300972 0.5162876 0.4300317 0.9517207 0.6206431 0.9550523 0.6205192 0.9429313 0.01930904 0.5465725 0.173199 0.5839684 0.1754053 0.5711627 0.01260221 0.4949758 0.177792 0.4883763 0.1745944 0.4626297 0.1789126 0.5372074 0.01630258 0.5397558 0.177432 0.553937 0.5760958 0.5632359 0.5152055 0.5296933 0.5109899 0.5585479 0.2369227 0.3087689 0.5479997 0.3173283 0.2374122 0.2988828 0.2303735 0.7402053 0.5098255 0.6939517 0.2293981 0.7030594 0.5356044 0.4027788 0.2354209 0.3407912 0.2335628 0.3833078 0.2285937 0.6487354 0.5036193 0.6394343 0.2285454 0.6420097 0.5446727 0.9335208 0.24009 0.9457212 0.2403485 0.9507217 0.5396856 0.8921468 0.2354717 0.8651248 0.2379413 0.9103828 0.5152055 0.5296933 0.2299307 0.4815641 0.2291154 0.5171447 0.5063592 0.6663102 0.2285937 0.6487354 0.2288333 0.6721715 0.2293981 0.7030594 0.5063592 0.6663102 0.2288333 0.6721715 0.2354209 0.3407912 0.546833 0.3275742 0.2369227 0.3087689 0.2285236 0.6280187 0.5028672 0.6229928 0.2285104 0.6235675 0.5330715 0.8468595 0.233464 0.8228092 0.2354717 0.8651248 0.5203692 0.4970974 0.2308319 0.4531627 0.2299307 0.4815641 0.5037891 0.6114428 0.2284328 0.5940981 0.2284345 0.6104223 0.5201215 0.7642341 0.2303735 0.7402053 0.2316977 0.7794356 0.5296682 0.4390284 0.2335628 0.3833078 0.2320424 0.4204401 0.5053121 0.5969718 0.2285827 0.5492796 0.2284328 0.5940981 0.5441406 0.9283163 0.2379413 0.9103828 0.24009 0.9457212 0.5109899 0.5585479 0.2291154 0.5171447 0.2285827 0.5492796 0.5028672 0.6229928 0.2284345 0.6104223 0.2285104 0.6235675 0.5036193 0.6394343 0.2285245 0.6339659 0.2285454 0.6420097 0.5266514 0.805521 0.2316977 0.7794356 0.233464 0.8228092 0.5245687 0.4703484 0.2320424 0.4204401 0.2308319 0.4531627 0.5030781 0.6322181 0.2285236 0.6280187 0.2285245 0.6339659 0.5705382 0.6638805 0.629958 0.6430914 0.5670697 0.6445165 0.5646025 0.6240611 0.5037891 0.6114428 0.5028672 0.6229928 0.5036193 0.6394343 0.5650305 0.6323222 0.5030781 0.6322181 0.5266514 0.805521 0.5901259 0.756286 0.5201215 0.7642341 0.5955088 0.4795127 0.5296682 0.4390284 0.5245687 0.4703484 0.5030781 0.6322181 0.564502 0.6273804 0.502817 0.6268721 0.6281796 0.3396387 0.5479997 0.3173283 0.546833 0.3275742 0.5145981 0.7277278 0.5755953 0.6897885 0.5098255 0.6939517 0.6112405 0.4142656 0.542326 0.360331 0.5356044 0.4027788 0.5041279 0.6455245 0.5660887 0.6389567 0.5036193 0.6394343 0.5446727 0.9335208 0.6269769 0.9166149 0.5441406 0.9283163 0.5396856 0.8921468 0.6086885 0.8358669 0.5330715 0.8468595 0.5821651 0.5359948 0.5203692 0.4970974 0.5152055 0.5296933 0.5063592 0.6663102 0.5670697 0.6445165 0.5041279 0.6455245 0.5098255 0.6939517 0.5705382 0.6638805 0.5063592 0.6663102 0.6209464 0.3724616 0.546833 0.3275742 0.542326 0.360331 0.564502 0.6273804 0.5028672 0.6229928 0.502817 0.6268721 0.5330715 0.8468595 0.5993129 0.7958352 0.5266514 0.805521 0.5893883 0.5049954 0.5245687 0.4703484 0.5203692 0.4970974 0.5661835 0.6132879 0.5053121 0.5969718 0.5037891 0.6114428 0.5201215 0.7642341 0.5823335 0.721643 0.5145981 0.7277278 0.6027898 0.4494376 0.5356044 0.4027788 0.5296682 0.4390284 0.5687085 0.5999123 0.5109899 0.5585479 0.5053121 0.5969718 0.5441406 0.9283163 0.618907 0.8803544 0.5396856 0.8921468 0.6808626 0.6250714 0.6285991 0.6148702 0.6264361 0.6245889 0.5755953 0.6897885 0.6349242 0.6605187 0.5705382 0.6638805 0.7035222 0.3910645 0.6281796 0.3396387 0.6209464 0.3724616 0.6263175 0.6276257 0.5646025 0.6240611 0.564502 0.6273804 0.6086885 0.8358669 0.6742479 0.7821628 0.5993129 0.7958352 0.6604322 0.5160483 0.5955088 0.4795127 0.5893883 0.5049954 0.6285991 0.6148702 0.5687085 0.5999123 0.5661835 0.6132879 0.5901259 0.756286 0.6512889 0.7131845 0.5823335 0.721643 0.6785389 0.4641168 0.6112405 0.4142656 0.6027898 0.4494376 0.6320347 0.6028356 0.5760958 0.5632359 0.5687085 0.5999123 0.6269769 0.9166149 0.70094 0.8618867 0.618907 0.8803544 0.6423438 0.5696527 0.5821651 0.5359948 0.5760958 0.5632359 0.6264361 0.6245889 0.5661835 0.6132879 0.5646025 0.6240611 0.5660887 0.6389567 0.6270776 0.6321141 0.5650305 0.6323222 0.5993129 0.7958352 0.6618532 0.7452317 0.5901259 0.756286 0.6686962 0.4923179 0.6027898 0.4494376 0.5955088 0.4795127 0.5650305 0.6323222 0.6263175 0.6276257 0.564502 0.6273804 0.7138883 0.3596765 0.6303423 0.32922 0.6281796 0.3396387 0.5823335 0.721643 0.6420199 0.6840136 0.5755953 0.6897885 0.6900388 0.4308682 0.6209464 0.3724616 0.6112405 0.4142656 0.5670697 0.6445165 0.62858 0.6380859 0.5660887 0.6389567 0.6279997 0.9215504 0.7122339 0.8961319 0.6269769 0.9166149 0.618907 0.8803544 0.6869252 0.8198322 0.6086885 0.8358669 0.6506163 0.544691 0.5893883 0.5049954 0.5821651 0.5359948 0.7009629 0.677293 0.7574059 0.6517485 0.6919848 0.6566432 0.62858 0.6380859 0.6817225 0.6318454 0.6270776 0.6321141 0.6742479 0.7821628 0.7254635 0.7318496 0.6618532 0.7452317 0.7337887 0.5081862 0.6785389 0.4641168 0.6686962 0.4923179 0.6270776 0.6321141 0.6807066 0.6278356 0.6263175 0.6276257 0.7138883 0.3596765 0.7923817 0.3785947 0.7170543 0.3497207 0.6512889 0.7131845 0.7009629 0.677293 0.6420199 0.6840136 0.7596521 0.4524368 0.7035222 0.3910645 0.6900388 0.4308682 0.629958 0.6430914 0.6837254 0.6370727 0.62858 0.6380859 0.7137407 0.9007724 0.7855432 0.8685076 0.7122339 0.8961319 0.70094 0.8618867 0.7556468 0.7993251 0.6869252 0.8198322 0.7115265 0.5549183 0.6604322 0.5160483 0.6506163 0.544691 0.6349242 0.6605187 0.6855557 0.6414337 0.629958 0.6430914 0.6420199 0.6840136 0.6919848 0.6566432 0.6349242 0.6605187 0.7758762 0.416172 0.7138883 0.3596765 0.7035222 0.3910645 0.6807066 0.6278356 0.6264361 0.6245889 0.6263175 0.6276257 0.6869252 0.8198322 0.7404776 0.7651742 0.6742479 0.7821628 0.723655 0.5292608 0.6686962 0.4923179 0.6604322 0.5160483 0.6837071 0.6164961 0.6320347 0.6028356 0.6285991 0.6148702 0.6618532 0.7452317 0.7124912 0.7031672 0.6512889 0.7131845 0.745752 0.4826791 0.6900388 0.4308682 0.6785389 0.4641168 0.688192 0.6060244 0.6423438 0.5696527 0.6320347 0.6028356 0.7122339 0.8961319 0.7722319 0.837484 0.70094 0.8618867 0.7011952 0.5769879 0.6506163 0.544691 0.6423438 0.5696527 0.7816302 0.6265625 0.7476614 0.618817 0.7443473 0.6259066 0.8530395 0.452704 0.7884187 0.3876177 0.7758762 0.416172 0.7441639 0.6282911 0.6808626 0.6250714 0.6807066 0.6278356 0.7556468 0.7993251 0.8140372 0.7416239 0.7404776 0.7651742 0.723655 0.5292608 0.8067346 0.5307473 0.7337887 0.5081862 0.7476614 0.618817 0.688192 0.6060244 0.6837071 0.6164961 0.7254635 0.7318496 0.7818868 0.689704 0.7124912 0.7031672 0.8203188 0.5090262 0.7596521 0.4524368 0.745752 0.4826791 0.7528941 0.6103845 0.7011952 0.5769879 0.688192 0.6060244 0.8611589 0.8284375 0.7722319 0.837484 0.7855432 0.8685076 0.7684758 0.5872982 0.7115265 0.5549183 0.7011952 0.5769879 0.7443473 0.6259066 0.6837071 0.6164961 0.6808626 0.6250714 0.6837254 0.6370727 0.7453382 0.6316655 0.6817225 0.6318454 0.7404776 0.7651742 0.7970507 0.7135489 0.7254635 0.7318496 0.8067346 0.5307473 0.745752 0.4826791 0.7337887 0.5081862 0.6817225 0.6318454 0.7441639 0.6282911 0.6807066 0.6278356 0.7884187 0.3876177 0.8703426 0.4213144 0.7923817 0.3785947 0.7124912 0.7031672 0.7681326 0.6685156 0.7009629 0.677293 0.8356993 0.4833077 0.7758762 0.416172 0.7596521 0.4524368 0.6855557 0.6414337 0.7476608 0.6359265 0.6837254 0.6370727 0.8632562 0.8317398 0.7855432 0.8685076 0.7874224 0.8726216 0.7722319 0.837484 0.8304924 0.7705262 0.7556468 0.7993251 0.7805581 0.5695555 0.723655 0.5292608 0.7115265 0.5549183 0.6919848 0.6566432 0.7497861 0.6394436 0.6855557 0.6414337 0.8904061 0.4816924 0.9161407 0.4830207 0.9025097 0.4616062 0.7476608 0.6359265 0.7826532 0.6314325 0.7453382 0.6316655 0.8140372 0.7416239 0.8364853 0.6988331 0.7970507 0.7135489 0.8465479 0.5480648 0.8203188 0.5090262 0.8067346 0.5307473 0.7453382 0.6316655 0.7814345 0.6286082 0.7441639 0.6282911 0.8660867 0.4287611 0.9067576 0.4555719 0.8703426 0.4213144 0.7818868 0.689704 0.8067584 0.6610275 0.7681326 0.6685156 0.8356993 0.4833077 0.8904061 0.4816924 0.8530395 0.452704 0.7497861 0.6394436 0.785081 0.6348727 0.7476608 0.6359265 0.8985914 0.7994356 0.8611589 0.8284375 0.8632562 0.8317398 0.8842995 0.7752431 0.8304924 0.7705262 0.8476905 0.8025527 0.8200444 0.5808126 0.8095325 0.557992 0.7805581 0.5695555 0.7574059 0.6517485 0.7873182 0.637678 0.7497861 0.6394436 0.7681326 0.6685156 0.7954043 0.6475017 0.7574059 0.6517485 0.8530395 0.452704 0.9025097 0.4616062 0.8660867 0.4287611 0.7814345 0.6286082 0.7443473 0.6259066 0.7441639 0.6282911 0.8304924 0.7705262 0.8530581 0.7230539 0.8140372 0.7416239 0.8095325 0.557992 0.8465479 0.5480648 0.8067346 0.5307473 0.7850945 0.6207603 0.7528941 0.6103845 0.7476614 0.618817 0.7970507 0.7135489 0.8211099 0.6785511 0.7818868 0.689704 0.859689 0.5296044 0.8356993 0.4833077 0.8203188 0.5090262 0.7906075 0.6140412 0.7684758 0.5872982 0.7528941 0.6103845 0.8963755 0.796915 0.8476905 0.8025527 0.8611589 0.8284375 0.8071536 0.5955768 0.7805581 0.5695555 0.7684758 0.5872982 0.8049729 0.6343111 0.8258772 0.6313243 0.8024937 0.631387 0.8012461 0.6288709 0.7816302 0.6265625 0.7814345 0.6286082 0.8847085 0.7336806 0.8530581 0.7230539 0.8684162 0.747914 0.8538028 0.5722982 0.8465479 0.5480648 0.8347832 0.5631853 0.805006 0.6219556 0.7906075 0.6140412 0.7850945 0.6207603 0.8364853 0.6988331 0.8405956 0.6719166 0.8211099 0.6785511 0.859689 0.5296044 0.8903973 0.5229539 0.8741207 0.5076777 0.8106023 0.6163823 0.8071536 0.5955768 0.7906075 0.6140412 0.9098811 0.7764207 0.8842995 0.7752431 0.8963755 0.796915 0.826936 0.6007063 0.8200444 0.5808126 0.8071536 0.5955768 0.8014517 0.6270068 0.7850945 0.6207603 0.7816302 0.6265625 0.785081 0.6348727 0.8024937 0.631387 0.7826532 0.6314325 0.8530581 0.7230539 0.8552662 0.6900395 0.8364853 0.6988331 0.8649128 0.5587291 0.859689 0.5296044 0.8465479 0.5480648 0.7826532 0.6314325 0.8012461 0.6288709 0.7814345 0.6286082 0.9025097 0.4616062 0.9203028 0.4780804 0.9067576 0.4555719 0.8211099 0.6785511 0.826591 0.656505 0.8067584 0.6610275 0.8741207 0.5076777 0.9050598 0.500363 0.8904061 0.4816924 0.7873182 0.637678 0.8049729 0.6343111 0.785081 0.6348727 0.912118 0.7783198 0.8963755 0.796915 0.8985914 0.7994356 0.8988994 0.757548 0.8684162 0.747914 0.8842995 0.7752431 0.8396217 0.5879644 0.8347832 0.5631853 0.8200444 0.5808126 0.7954043 0.6475017 0.8072586 0.6366462 0.7873182 0.637678 0.8067584 0.6610275 0.8153412 0.6448922 0.7954043 0.6475017 0.9171018 0.5232292 0.9278575 0.5312015 0.9260777 0.5095645 0.8706353 0.7116931 0.8747048 0.6799671 0.8552662 0.6900395 0.8649128 0.5587291 0.8939833 0.557415 0.8771013 0.5422658 0.8024937 0.631387 0.8247043 0.6292147 0.8012461 0.6288709 0.9161407 0.4830207 0.9297252 0.5060009 0.9203028 0.4780804 0.8405956 0.6719166 0.8489336 0.6515038 0.826591 0.656505 0.8903973 0.5229539 0.9171018 0.5232292 0.9050598 0.500363 0.8072586 0.6366462 0.8282347 0.6336689 0.8049729 0.6343111 0.9219391 0.751936 0.9098811 0.7764207 0.912118 0.7783198 0.911245 0.7357646 0.8847085 0.7336806 0.8988994 0.757548 0.8611442 0.5959931 0.8538028 0.5722982 0.8396217 0.5879644 0.8153412 0.6448922 0.8304261 0.6355069 0.8072586 0.6366462 0.826591 0.656505 0.838261 0.6420603 0.8153412 0.6448922 0.9050598 0.500363 0.9260777 0.5095645 0.9161407 0.4830207 0.8247043 0.6292147 0.8014517 0.6270068 0.8012461 0.6288709 0.8996817 0.7163037 0.8706353 0.7116931 0.8847085 0.7336806 0.873826 0.5825887 0.8649128 0.5587291 0.8538028 0.5722982 0.8282955 0.6235371 0.8106023 0.6163823 0.805006 0.6219556 0.8552662 0.6900395 0.8617997 0.6645651 0.8405956 0.6719166 0.8771013 0.5422658 0.9051113 0.5414977 0.8903973 0.5229539 0.8336538 0.6192075 0.826936 0.6007063 0.8106023 0.6163823 0.9199493 0.7507271 0.8988994 0.757548 0.9098811 0.7764207 0.8494055 0.6067183 0.8396217 0.5879644 0.826936 0.6007063 0.8249085 0.6276165 0.805006 0.6219556 0.8014517 0.6270068 0.9013847 0.6747295 0.8853815 0.6724119 0.896254 0.6870832 0.8420202 0.629665 0.8249085 0.6276165 0.8247043 0.6292147 0.9060036 0.7017676 0.8878297 0.6981192 0.8996817 0.7163037 0.8852134 0.590109 0.8834775 0.5711014 0.873826 0.5825887 0.84538 0.6247705 0.8336538 0.6192075 0.8282955 0.6235371 0.8747048 0.6799671 0.8747498 0.6596148 0.8617997 0.6645651 0.8939833 0.557415 0.9110733 0.5567442 0.9051113 0.5414977 0.8503218 0.6212418 0.8494055 0.6067183 0.8336538 0.6192075 0.9223589 0.729505 0.911245 0.7357646 0.9199493 0.7507271 0.8644867 0.6106236 0.8611442 0.5959931 0.8494055 0.6067183 0.8422215 0.6282473 0.8282955 0.6235371 0.8249085 0.6276165 0.8282347 0.6336689 0.8431182 0.6315206 0.8258772 0.6313243 0.896254 0.6870832 0.8747048 0.6799671 0.8878297 0.6981192 0.8834775 0.5711014 0.9018809 0.5695976 0.8939833 0.557415 0.8258772 0.6313243 0.8420202 0.629665 0.8247043 0.6292147 0.9260777 0.5095645 0.9309486 0.5286216 0.9297252 0.5060009 0.8617997 0.6645651 0.8638183 0.6484339 0.8489336 0.6515038 0.9051113 0.5414977 0.9207887 0.5420252 0.9171018 0.5232292 0.8304261 0.6355069 0.8453115 0.6334908 0.8282347 0.6336689 0.9240576 0.7302467 0.9199493 0.7507271 0.9219391 0.751936 0.9154401 0.717501 0.8996817 0.7163037 0.911245 0.7357646 0.8746129 0.6013239 0.873826 0.5825887 0.8611442 0.5959931 0.838261 0.6420603 0.8473338 0.6349824 0.8304261 0.6355069 0.8489336 0.6515038 0.8543557 0.6403279 0.838261 0.6420603 0.2774471 0.7955199 0.2771136 0.7870262 0.2730602 0.7886065 0.8931748 0.5807078 0.9063975 0.5831888 0.9018809 0.5695976 0.8431182 0.6315206 0.8599644 0.6302089 0.8420202 0.629665 0.9278575 0.5312015 0.9286382 0.5531527 0.9309486 0.5286216 0.8747498 0.6596148 0.8773723 0.645697 0.8638183 0.6484339 0.9110733 0.5567442 0.9210036 0.5630499 0.9207887 0.5420252 0.8473338 0.6349824 0.8626139 0.6332113 0.8453115 0.6334908 0.9226989 0.7062947 0.9223589 0.729505 0.9240576 0.7302467 0.9161896 0.6968507 0.9060036 0.7017676 0.9154401 0.717501 0.8860395 0.6067162 0.8852134 0.590109 0.8746129 0.6013239 0.8543557 0.6403279 0.8642359 0.634346 0.8473338 0.6349824 0.8638183 0.6484339 0.8700534 0.638886 0.8543557 0.6403279 0.9207887 0.5420252 0.926348 0.5549724 0.9278575 0.5312015 0.8599644 0.6302089 0.8422215 0.6282473 0.8420202 0.629665 0.9088175 0.6853606 0.896254 0.6870832 0.9060036 0.7017676 0.8852134 0.590109 0.8998464 0.5913115 0.8931748 0.5807078 0.8628509 0.6262562 0.8503218 0.6212418 0.84538 0.6247705 0.8853815 0.6724119 0.8854659 0.6544736 0.8747498 0.6596148 0.9018809 0.5695976 0.913434 0.5738427 0.9110733 0.5567442 0.8670379 0.6233845 0.8644867 0.6106236 0.8503218 0.6212418 0.9214439 0.7058168 0.9154401 0.717501 0.9223589 0.729505 0.8784199 0.6141132 0.8746129 0.6013239 0.8644867 0.6106236 0.8601356 0.6290962 0.84538 0.6247705 0.8422215 0.6282473 0.8453115 0.6334908 0.8608408 0.6316726 0.8431182 0.6315206 0.1377868 0.7820034 0.233464 0.8228092 0.2316977 0.7794356 0.1367812 0.4175281 0.2308319 0.4531627 0.2320424 0.4204401 0.1358677 0.6282985 0.2285245 0.6339659 0.2285236 0.6280187 0.2374122 0.2988828 0.1404718 0.3048759 0.2369227 0.3087689 0.2293981 0.7030594 0.1371511 0.7423503 0.2303735 0.7402053 0.2354209 0.3407912 0.1378105 0.3799416 0.2335628 0.3833078 0.2285454 0.6420097 0.1360921 0.6497167 0.2285937 0.6487354 0.1416744 0.9501446 0.2403485 0.9507217 0.24009 0.9457212 0.1396141 0.8685798 0.2379413 0.9103828 0.2354717 0.8651248 0.2299307 0.4815641 0.1731829 0.5028699 0.2291154 0.5171447 0.2285937 0.6487354 0.1363383 0.6735585 0.2288333 0.6721715 0.2288333 0.6721715 0.1366766 0.704823 0.2293981 0.7030594 0.2369227 0.3087689 0.1392361 0.3370439 0.2354209 0.3407912 0.2285104 0.6235675 0.1358677 0.6282985 0.2285236 0.6280187 0.1386373 0.825818 0.2354717 0.8651248 0.233464 0.8228092 0.2308319 0.4531627 0.17309 0.4619555 0.2299307 0.4815641 0.1356446 0.5940594 0.2284345 0.6104223 0.2284328 0.5940981 0.2303735 0.7402053 0.1377868 0.7820034 0.2316977 0.7794356 0.2335628 0.3833078 0.1367812 0.4175281 0.2320424 0.4204401 0.1351657 0.5487405 0.2284328 0.5940981 0.2285827 0.5492796 0.1407231 0.914308 0.24009 0.9457212 0.2379413 0.9103828 0.1351676 0.515966 0.2285827 0.5492796 0.2291154 0.5171447 0.1357532 0.6107777 0.2285104 0.6235675 0.2284345 0.6104223 0.1359279 0.6344485 0.2285454 0.6420097 0.2285245 0.6339659 0.02588838 0.844361 0.003518402 0.8826887 0.1551972 0.938517 0.7923828 0.8192851 0.9643244 0.6940898 0.7626375 0.7682989 0.6600477 0.8183878 0.6583597 0.6970967 0.6579413 0.8184055 0.6931331 0.6961325 0.6950956 0.8399001 0.6952261 0.6961309 0.693278 0.8533946 0.6963759 0.8669822 0.695371 0.853393 0.2579889 0.9080355 0.2558505 0.8848558 0.2558825 0.908034 0.6604661 0.697079 0.6585184 0.6838306 0.6583597 0.6970967 0.257957 0.8848572 0.2561908 0.7406592 0.2558505 0.8848558 0.6606248 0.8678693 0.6581786 0.8545438 0.6585184 0.867887 0.6118072 0.7962626 0.6163359 0.8677276 0.6139062 0.7962982 0.6600577 0.8344801 0.6579413 0.8184055 0.6579513 0.8344978 0.6942828 0.6638146 0.6953725 0.6776974 0.6963759 0.663813 0.6930025 0.8399018 0.695371 0.853393 0.6950956 0.8399001 0.614237 0.663813 0.6139062 0.7962982 0.6163359 0.6638485 0.2582973 0.9263893 0.2558825 0.908034 0.2561908 0.9263878 0.6602851 0.8545261 0.6579513 0.8344978 0.6581786 0.8545438 0.6932794 0.677699 0.6952261 0.6961309 0.6953725 0.6776974 0.9874882 0.4538208 0.9757063 0.45554 0.9702662 0.4611129 0.9867047 0.4505587 0.987092 0.4524903 0.9874882 0.4538208 0.9757063 0.45554 0.987092 0.4524903 0.9867047 0.4505587 0.8585725 0.4762175 0.897334 0.4546869 0.8581563 0.4523132 0.9003226 0.4320119 0.8636608 0.398573 0.8596535 0.4252876 0.2658939 0.3850209 0.2532826 0.4210759 0.4154978 0.3940798 0.8944323 0.6066849 0.920661 0.554041 0.8805591 0.571722 0.9059399 0.5222441 0.8626548 0.5069259 0.8686568 0.5336232 0.8581563 0.4523132 0.9003226 0.4320119 0.8596535 0.4252876 0.8626548 0.5069259 0.8970386 0.4745695 0.8585725 0.4762175 0.8805591 0.571722 0.9120905 0.5375958 0.873887 0.551836 0.873887 0.551836 0.9059399 0.5222441 0.8686568 0.5336232 0.9074974 0.4101014 0.8743396 0.3574385 0.8636608 0.398573 0.8970386 0.4745695 0.9129918 0.4564357 0.897334 0.4546869 0.9395388 0.581806 0.9360038 0.5445396 0.920661 0.554041 0.9120905 0.5375958 0.9207324 0.5169644 0.9059399 0.5222441 0.9163352 0.4362275 0.9074974 0.4101014 0.9003226 0.4320119 0.9003757 0.5001153 0.9123613 0.4742276 0.8970386 0.4745695 0.9245172 0.4174126 0.9247682 0.3762443 0.9074974 0.4101014 0.897334 0.4546869 0.9163352 0.4362275 0.9003226 0.4320119 0.920661 0.554041 0.9270427 0.5304426 0.9120905 0.5375958 0.9207324 0.5169644 0.9003757 0.5001153 0.9059399 0.5222441 0.9360038 0.5445396 0.9398477 0.5233412 0.9270427 0.5304426 0.9129918 0.4564357 0.930506 0.4410229 0.9163352 0.4362275 0.9558929 0.5678101 0.9486487 0.5351277 0.9360038 0.5445396 0.9389113 0.4250671 0.943646 0.3887552 0.9245172 0.4174126 0.9154823 0.4971482 0.9258565 0.4742667 0.9123613 0.4742276 0.930506 0.4410229 0.9245172 0.4174126 0.9163352 0.4362275 0.9270427 0.5304426 0.9337252 0.5117198 0.9207324 0.5169644 0.9123613 0.4742276 0.9267853 0.4586524 0.9129918 0.4564357 0.9337252 0.5117198 0.9154823 0.4971482 0.9207324 0.5169644 0.9429721 0.4461265 0.9389113 0.4250671 0.930506 0.4410229 0.9511964 0.433147 0.9581419 0.4023213 0.9389113 0.4250671 0.9267853 0.4586524 0.9429721 0.4461265 0.930506 0.4410229 0.9486487 0.5351277 0.9509921 0.516209 0.9398477 0.5233412 0.9452273 0.5065341 0.9285818 0.4944155 0.9337252 0.5117198 0.9285818 0.4944155 0.938061 0.4744551 0.9258565 0.4742667 0.9258565 0.4742667 0.9391612 0.4610766 0.9267853 0.4586524 0.967787 0.5533432 0.9592858 0.5257169 0.9486487 0.5351277 0.9398477 0.5233412 0.9452273 0.5065341 0.9337252 0.5117198 0.9592858 0.5257169 0.9619955 0.5080591 0.9509921 0.516209 0.9391612 0.4610766 0.9555766 0.4523215 0.9429721 0.4461265 0.9845647 0.5242224 0.9592858 0.5257169 0.9767808 0.539466 0.9630079 0.4426397 0.9694855 0.4158091 0.9511964 0.433147 0.9404478 0.491774 0.9507972 0.4748749 0.938061 0.4744551 0.9555766 0.4523215 0.9511964 0.433147 0.9429721 0.4461265 0.9509921 0.516209 0.9569473 0.5006054 0.9452273 0.5065341 0.938061 0.4744551 0.9519541 0.4641374 0.9391612 0.4610766 0.9569473 0.5006054 0.9404478 0.491774 0.9452273 0.5065341 0.9645399 0.4964289 0.9527744 0.4888386 0.9569473 0.5006054 0.9507972 0.4748749 0.9603683 0.4664532 0.9519541 0.4641374 0.9845647 0.5242224 0.9751518 0.5076202 0.9691756 0.5149924 0.9619955 0.5080591 0.9645399 0.4964289 0.9569473 0.5006054 0.9636632 0.4568855 0.9630079 0.4426397 0.9555766 0.4523215 0.9701914 0.4494495 0.9790436 0.4311568 0.9630079 0.4426397 0.9527744 0.4888386 0.9592519 0.4752833 0.9507972 0.4748749 0.9519541 0.4641374 0.9636632 0.4568855 0.9555766 0.4523215 0.9691756 0.5149924 0.9689295 0.50235 0.9619955 0.5080591 0.9757063 0.45554 0.9838376 0.4415767 0.9701914 0.4494495 0.9609215 0.4868039 0.9664047 0.4757362 0.9592519 0.4752833 0.9702662 0.4611129 0.9701914 0.4494495 0.9636632 0.4568855 0.9689295 0.50235 0.9707986 0.4926913 0.9645399 0.4964289 0.9592519 0.4752833 0.9674201 0.4686492 0.9603683 0.4664532 0.9707986 0.4926913 0.9609215 0.4868039 0.9645399 0.4964289 0.9751518 0.5076202 0.97444 0.4972798 0.9689295 0.50235 0.9603683 0.4664532 0.9702662 0.4611129 0.9636632 0.4568855 0.9899644 0.5051178 0.9751518 0.5076202 0.9879617 0.5138362 0.9893612 0.462207 0.9702662 0.4611129 0.9674201 0.4686492 0.99054 0.4697757 0.9674201 0.4686492 0.9664047 0.4757362 0.99054 0.4697757 0.9678095 0.4849984 0.9914468 0.4885908 0.589398 0.9456781 0.5977541 0.952257 0.5977541 0.9456781 0.5062412 0.9662199 0.5156968 0.9736644 0.5156968 0.9662199 0.5156149 0.9244672 0.5061593 0.9319117 0.5156149 0.9319117 0.5617766 0.9653665 0.5701326 0.9719454 0.5701326 0.9653665 0.4608404 0.9344109 0.5258188 0.9855695 0.5258188 0.9344109 0.54939 0.9783968 0.5509875 0.9796545 0.5509875 0.9783968 0.5084912 0.95316 0.5179467 0.9606046 0.5179467 0.95316 0.5084913 0.941042 0.5179468 0.9484865 0.5179468 0.941042 0.5842458 0.9662564 0.5926019 0.9728353 0.5926019 0.9662564 0.462507 0.907751 0.5274854 0.9589092 0.5274854 0.907751 0.5928824 0.959397 0.6012385 0.9659759 0.6012385 0.959397 0.5980346 0.9456781 0.6063907 0.952257 0.6063907 0.9456781 0.5473635 0.9782937 0.5489609 0.9795514 0.5489609 0.9782937 0.5928824 0.9731158 0.6012385 0.9796947 0.6012385 0.9731158 0.54939 0.9770854 0.5509875 0.9783432 0.5509875 0.9770854 0.5721527 0.9731158 0.5805088 0.9796947 0.5805088 0.9731158 0.5927309 0.9346294 0.5993098 0.9429855 0.5993098 0.9346294 0.5446673 0.9776883 0.5462648 0.978946 0.5462648 0.9776883 0.5960028 0.9277701 0.6043589 0.9343489 0.6043589 0.9277701 0.5995904 0.9101903 0.6079465 0.9167691 0.6079465 0.9101903 0.5929136 0.9525375 0.6012697 0.9591164 0.6012697 0.9525375 0.5721527 0.9662564 0.5805088 0.9728353 0.5805088 0.9662564 0.5061592 0.9123575 0.5156149 0.9198021 0.5156149 0.9123575 0.5960028 0.9209106 0.6043589 0.9274895 0.6043589 0.9209106 0.5807893 0.9731158 0.5891454 0.9796947 0.5891454 0.9731158 0.5617766 0.9722259 0.5701326 0.9788048 0.5701326 0.9722259 0.5995903 0.9346294 0.6079464 0.9412083 0.6079464 0.9346294 0.4809229 0.9261025 0.5459013 0.9772611 0.5459014 0.9261025 0.5563337 0.9144109 0.6074922 0.9793892 0.6074922 0.9144109 0.5442346 0.9776883 0.5426371 0.978946 0.5442346 0.978946 0.5156149 0.9322292 0.5061593 0.9396737 0.5156149 0.9396737 0.5928824 0.9662564 0.6012385 0.9728353 0.6012385 0.9662564 0.2590004 0.8706523 0.2586398 0.7407479 0.2586367 0.8706614 0.2635124 0.7406704 0.2631813 0.870624 0.2635907 0.8706256 0.2593946 0.8706465 0.2590302 0.740738 0.2590004 0.8706523 0.2639347 0.7406755 0.2635907 0.8706256 0.2639844 0.8706303 0.2598043 0.8706446 0.2594531 0.7407319 0.2593946 0.8706465 0.264324 0.7406837 0.2639844 0.8706303 0.2643471 0.870638 0.2602134 0.8706465 0.2598925 0.7407298 0.2598043 0.8706446 0.2646651 0.7406948 0.2643471 0.870638 0.2646651 0.8706483 0.2607532 0.7407269 0.2602134 0.8706465 0.2606065 0.8706522 0.2707041 0.8706881 0.2710107 0.7406592 0.270725 0.7406634 0.2609683 0.8706614 0.2607532 0.7407269 0.2606065 0.8706522 0.2703415 0.8706915 0.270725 0.7406634 0.2703869 0.7406666 0.2659698 0.7407031 0.2662732 0.8704683 0.2663801 0.7407056 0.261285 0.8706738 0.2611414 0.7407368 0.2609683 0.8706614 0.2699368 0.8706938 0.2703869 0.7406666 0.2700097 0.7406687 0.2654076 0.8704567 0.2659698 0.7407031 0.2655733 0.7406948 0.2675366 0.7406786 0.267848 0.8704186 0.267848 0.7406592 0.2695055 0.8706947 0.2700097 0.7406687 0.2696077 0.7406696 0.2650133 0.8704419 0.2655733 0.7406948 0.2652058 0.740681 0.2671788 0.7406932 0.267514 0.8704394 0.2675366 0.7406786 0.2690642 0.8706943 0.2696077 0.7406696 0.2691963 0.7406693 0.2646651 0.8704218 0.2652058 0.740681 0.2648813 0.7406623 0.2667883 0.7407023 0.2671301 0.8704549 0.2671788 0.7406932 0.2687915 0.7406677 0.2690642 0.8706943 0.2691963 0.7406693 0.2618224 0.7406725 0.2616975 0.8706482 0.2620155 0.8706378 0.2663801 0.7407056 0.2667111 0.8704647 0.2667883 0.7407023 0.2684088 0.740665 0.2686299 0.8706926 0.2687915 0.7406677 0.2622116 0.7406643 0.2620155 0.8706378 0.2623783 0.8706302 0.2680628 0.7406612 0.2682192 0.8706897 0.2684088 0.740665 0.2626339 0.7406592 0.2623783 0.8706302 0.262772 0.8706255 0.2586367 0.8706614 0.2582973 0.7407612 0.2583173 0.8706738 0.2630732 0.7406687 0.262772 0.8706255 0.2631813 0.870624 0.9176406 0.4890893 0.9175053 0.6257243 0.9176406 0.6257543 0.9186189 0.4887531 0.9187546 0.6162914 0.9187546 0.4887722 0.9142014 0.6216791 0.914049 0.4887328 0.914049 0.6216935 0.9177632 0.4891047 0.9176406 0.6257543 0.9177632 0.6257697 0.9184717 0.4887346 0.9186189 0.6162725 0.9186189 0.4887531 0.9143462 0.6216635 0.9142014 0.4887183 0.9142014 0.6216791 0.9136053 0.4887636 0.9134808 0.6217293 0.9136053 0.6217244 0.9183185 0.6162363 0.9184717 0.4887346 0.9183185 0.488717 0.9144779 0.6216472 0.9143462 0.4887027 0.9143462 0.6216635 0.9137451 0.4887559 0.9136053 0.6217244 0.9137452 0.6217166 0.9181654 0.6162207 0.9183185 0.488717 0.9181654 0.4887013 0.9145914 0.621631 0.9144779 0.4886865 0.9144779 0.6216472 0.913895 0.4887455 0.9137452 0.6217166 0.913895 0.6217062 0.9180181 0.6162073 0.9181654 0.4887013 0.9180181 0.4886879 0.9166232 0.4887416 0.9167246 0.6268434 0.9167246 0.4886702 0.914049 0.6216935 0.913895 0.4887455 0.913895 0.6217062 0.9178823 0.6161968 0.9180181 0.4886879 0.9178823 0.4886775 0.9165036 0.4888131 0.9166232 0.6269147 0.9166232 0.4887416 0.9177632 0.6161895 0.9178823 0.4886775 0.9177632 0.4886702 0.9163702 0.4888818 0.9165036 0.6269862 0.9165036 0.4888131 0.9168246 0.4887479 0.9167246 0.6253352 0.9168246 0.625413 0.9162284 0.4889453 0.9163702 0.627055 0.9163702 0.4888818 0.9169432 0.4888242 0.9168246 0.625413 0.9169433 0.6254892 0.9160833 0.4890009 0.9162284 0.6271184 0.9162284 0.4889453 0.9170758 0.4888961 0.9169433 0.6254892 0.9170758 0.6255611 0.9159409 0.4890467 0.9160833 0.6271741 0.9160833 0.4890009 0.9172173 0.4889608 0.9170758 0.6255611 0.9172173 0.6256258 0.9158064 0.4890808 0.9159409 0.6272199 0.9159409 0.4890467 0.9173623 0.4890159 0.9172173 0.6256258 0.9173624 0.6256809 0.9156851 0.489102 0.9158064 0.627254 0.9158064 0.4890808 0.9175053 0.4890593 0.9173624 0.6256809 0.9175053 0.6257243 0.9187546 0.4887722 0.9188734 0.61631 0.9188734 0.4887908 0.5477419 0.8076063 0.5476138 0.9636787 0.5477419 0.963731 0.9191029 0.4889771 0.9192348 0.6438156 0.9192348 0.4888925 0.5478768 0.8076714 0.5477419 0.963731 0.5478768 0.9637961 0.9189809 0.4890675 0.9191029 0.6439003 0.9191029 0.4889771 0.5480133 0.807747 0.5478768 0.9637961 0.5480134 0.9638717 0.9188735 0.4891601 0.9189808 0.6439906 0.9189809 0.4890675 0.5481462 0.80783 0.5480134 0.9638717 0.5481463 0.9639548 0.915581 0.4886795 0.915685 0.6227177 0.915685 0.4886702 0.5482704 0.8079174 0.5481463 0.9639548 0.5482704 0.9640421 0.9154571 0.4886934 0.9155809 0.622727 0.915581 0.4886795 0.548381 0.8080058 0.5482704 0.9640421 0.548381 0.9641305 0.915318 0.4887113 0.9154571 0.6227409 0.9154571 0.4886934 0.9127739 0.6307765 0.9129268 0.4887247 0.9127739 0.4887069 0.5484739 0.8080916 0.548381 0.9641305 0.5484739 0.9642163 0.9151692 0.4887326 0.915318 0.6227589 0.915318 0.4887113 0.9126268 0.4886915 0.9127739 0.6307765 0.9127739 0.4887069 0.9133622 0.6308555 0.9134808 0.4888061 0.9133622 0.4887859 0.9150163 0.4887565 0.9151692 0.6227802 0.9151692 0.4887326 0.9124911 0.4886791 0.9126268 0.630761 0.9126268 0.4886915 0.9132267 0.6308345 0.9133622 0.4887859 0.9132267 0.488765 0.9148652 0.4887821 0.9150163 0.622804 0.9150163 0.4887565 0.9123721 0.4886702 0.9124911 0.6307486 0.9124911 0.4886791 0.9130797 0.630814 0.9132267 0.488765 0.9130797 0.4887443 0.9147217 0.6228556 0.9148652 0.4887821 0.9147217 0.4888082 0.9196382 0.4887035 0.919758 0.6435934 0.919758 0.4886702 0.9129269 0.6307944 0.9130797 0.4887443 0.9129268 0.4887247 0.9145914 0.6228814 0.9147217 0.4888082 0.9145914 0.4888339 0.9195077 0.488753 0.9196381 0.6436267 0.9196382 0.4887035 0.5474974 0.8075167 0.5473972 0.9636204 0.5474974 0.9636414 0.9193714 0.4888168 0.9195076 0.6436762 0.9195077 0.488753 0.5476137 0.807554 0.5474974 0.9636414 0.5476138 0.9636787 0.9192348 0.4888925 0.9193714 0.6437399 0.9193714 0.4888168 0.5823391 0.9578597 0.5721527 0.9525375 0.5721527 0.9591164 0.5647062 0.9377559 0.4859229 0.9789646 0.5647062 0.9889143 0.5858716 0.9346294 0.5912688 0.9444382 0.5924504 0.9346294 0.5371016 0.9727001 0.457507 0.9310572 0.457507 0.9822158 0.5926019 0.959397 0.5825288 0.9646848 0.5926019 0.9659758 0.4983973 0.9244672 0.5045606 0.9355291 0.5058419 0.9244672 0.5613235 0.9460152 0.5559263 0.956293 0.5625053 0.956293 0.5007293 0.941042 0.5069548 0.9520782 0.5081738 0.941042 0.5473635 0.9763778 0.5484264 0.9782401 0.5486212 0.9763778 0.4836688 0.9530528 0.4774433 0.964746 0.4848878 0.964746 0.5993098 0.9101903 0.5937499 0.9199316 0.5983504 0.9199316 0.5869541 0.9660324 0.577758 0.9831431 0.5886393 0.9831431 0.5081737 0.95316 0.5019482 0.9641963 0.507154 0.9641963 0.5999847 0.9831432 0.5907886 0.9660324 0.5891034 0.9831432 0.5058417 0.9123575 0.4996784 0.9234195 0.5048844 0.9234195 0.4848878 0.9527353 0.4786623 0.941042 0.4774433 0.9527353 0.5924505 0.9101903 0.5870532 0.919999 0.5916537 0.919999 0.5787315 0.9310925 0.5732849 0.9207817 0.5721527 0.9310925 0.5059238 0.9662199 0.4945925 0.9722034 0.5059238 0.9736643 0.5858716 0.9277701 0.5957223 0.9331252 0.5957223 0.9285247 0.4903178 0.9359384 0.4842103 0.9243083 0.4828733 0.9359384 0.6032537 0.9360708 0.5258404 0.9772798 0.6032539 0.9872294 0.5446673 0.9763769 0.5465599 0.9773944 0.5465599 0.9765149 0.6171845 0.9377493 0.5375896 0.9793919 0.6171845 0.9889076 0.5445298 0.9763768 0.5426371 0.9773944 0.5445298 0.9776346 0.465923 0.9310959 0.5433364 0.9723047 0.5433363 0.9365304 0.5513373 0.9744628 0.54939 0.9754802 0.5513373 0.9757205 0.5957223 0.9209106 0.5858716 0.9262658 0.5957223 0.9274895 0.5826196 0.9525375 0.5926331 0.9578253 0.5926331 0.9532248 0.54939 0.9757741 0.5513157 0.976785 0.5513157 0.9759055 0.4591737 0.9377307 0.5379567 0.9789397 0.5379568 0.9431651 0.5721527 0.9205011 0.5775995 0.9101903 0.572999 0.9101903 0.3783847 0.9397063 0.3641014 0.9388478 0.3641014 0.942229 0.3952795 0.9782117 0.3944672 0.960618 0.391274 0.9782118 0.4158538 0.9316737 0.3999539 0.9328547 0.4158538 0.9350549 0.3477454 0.9561825 0.330567 0.9552873 0.330567 0.9592928 0.4284902 0.9356052 0.4277688 0.9209917 0.425109 0.9356052 0.3480222 0.9518616 0.330567 0.9510357 0.330567 0.9550412 0.3994889 0.9554247 0.3985376 0.9383817 0.3954834 0.9554247 0.3944251 0.9561221 0.3952373 0.9383817 0.3912319 0.9383817 0.3529465 0.9861254 0.3518479 0.9693269 0.348941 0.9861253 0.4298412 0.9573268 0.4321178 0.9093218 0.4214488 0.9093218 0.3995311 0.9772053 0.3982399 0.960618 0.3955256 0.9772053 0.3900766 0.9789092 0.3910279 0.960618 0.3870224 0.960618 0.4320792 0.9348508 0.4307951 0.9209917 0.428698 0.9348508 0.3898871 0.9569175 0.3909858 0.9383817 0.3869803 0.9383817 0.4320792 0.9488149 0.4305766 0.9350585 0.428698 0.9488149 0.4202216 0.9368172 0.4213123 0.9209919 0.4179311 0.9209917 0.4037404 0.9546086 0.4016827 0.9383817 0.399735 0.9546086 0.3852551 0.9795348 0.3867763 0.960618 0.3827709 0.960618 0.3960948 0.9442943 0.3824083 0.9424402 0.3824083 0.9458213 0.3849542 0.9574201 0.3867342 0.9383817 0.3827288 0.9383817 0.3778236 0.944052 0.3641014 0.9424367 0.3641014 0.945818 0.3798393 0.9352589 0.3641014 0.9362611 0.3798393 0.93864 0.3804672 0.9797254 0.3825248 0.960618 0.3785194 0.960618 0.4448992 0.9609792 0.3319606 0.9496228 0.3319606 0.9772872 0.3979523 0.9352622 0.3824083 0.9361209 0.3979523 0.9386435 0.417144 0.917217 0.4010028 0.9190712 0.417144 0.9205982 0.4138816 0.9400326 0.3999539 0.9388516 0.3999539 0.9422329 0.41528 0.9352627 0.3999539 0.9360182 0.41528 0.9386438 0.380207 0.9316698 0.3641014 0.9332852 0.380207 0.9350511 0.3964979 0.9398533 0.3824083 0.9388511 0.3824083 0.9422324 0.3484457 0.9467841 0.330567 0.9476101 0.3484457 0.9507896 0.3984324 0.9316733 0.3824083 0.9330613 0.3984324 0.9350544 0.5776252 0.931373 0.5721527 0.9416748 0.5787317 0.9416748 0.4827252 0.9736644 0.494275 0.9675045 0.4827252 0.9662199 0.5504334 0.9724437 0.54939 0.9744091 0.5506477 0.9744091 0.5466224 0.9737542 0.5446663 0.9747949 0.5466224 0.9750119 0.4913707 0.941042 0.4852052 0.9526488 0.4926497 0.9526488 0.4852052 0.9530528 0.4913707 0.9646595 0.4926497 0.9530528 0.5426371 0.9739712 0.5445933 0.9750119 0.5445933 0.9737542 0.4828733 0.9123575 0.4890496 0.9239909 0.4903178 0.9123575 0.5493147 0.9747958 0.5473635 0.9737551 0.5473635 0.9750127 0.5721527 0.9419553 0.5776252 0.952257 0.5787317 0.9419553 0.5707419 0.9480446 0.5652933 0.9582266 0.5718722 0.9582266 0.5473635 0.9737014 0.5493363 0.9726518 0.5473635 0.9724437 0.5844704 0.9101903 0.5790122 0.9203488 0.585591 0.9203488 0.4707143 0.9736644 0.4824078 0.9674278 0.4707143 0.9662199 0.5004118 0.9641963 0.4941203 0.9527779 0.4929672 0.9641963 0.4968277 0.9123575 0.4906352 0.9238288 0.4980797 0.9238288 0.5559263 0.9457347 0.5662698 0.9401998 0.5559263 0.9391558 0.5822483 0.959397 0.5721527 0.9649319 0.5822483 0.9659758 0.5426371 0.9752736 0.5445718 0.9763233 0.5445718 0.9750655 0.577294 0.9831485 0.5680983 0.9660324 0.5664127 0.9831485 0.5891174 0.9456781 0.5790122 0.9511896 0.5891174 0.952257 0.5473635 0.9752705 0.5492954 0.9763242 0.5492954 0.9750664 0.5567528 0.9831485 0.5659487 0.9660324 0.5550674 0.9660324 0.5465599 0.9750655 0.5446254 0.9761152 0.5465599 0.9763233 0.5617766 0.9595511 0.5718722 0.9650859 0.5718722 0.9585071 0.425011 0.9198252 0.4173517 0.9157266 0.4173517 0.9205982 0.4906352 0.9244672 0.4968277 0.9359385 0.4980798 0.9244672 0.4941204 0.9524604 0.5004118 0.941042 0.4929672 0.941042 0.5446127 0.9734965 0.5426371 0.9724428 0.5426371 0.9737006 0.5790122 0.9315164 0.5844704 0.9416748 0.585591 0.9315164 0.5466392 0.9734925 0.5446663 0.9724428 0.5446663 0.9737006 0.579012 0.9209106 0.5844606 0.9310925 0.585591 0.9209106 0.3574571 0.9383817 0.3585218 0.9605042 0.361418 0.9383817 0.3746625 0.9606407 0.3743062 0.9810571 0.3782733 0.9808086 0.348941 0.9467841 0.3501704 0.9690406 0.3529006 0.9467841 0.3788747 0.9384068 0.3785185 0.9588151 0.3824827 0.9585244 0.3532525 0.9383817 0.3546708 0.9607385 0.357211 0.9383817 0.3221757 0.968901 0.3443563 0.9692882 0.3442289 0.9653297 0.4005025 0.9243471 0.4176757 0.9229283 0.4005025 0.9209917 0.3263632 0.9383817 0.3279874 0.9608015 0.3303208 0.9383817 0.3441922 0.973495 0.3221743 0.9731107 0.3221598 0.973495 0.3112422 0.9890088 0.4325686 0.980265 0.3112422 0.9653713 0.3221598 0.9383817 0.3239997 0.9608246 0.326117 0.9383817 0.3440069 0.9777038 0.3221732 0.9773228 0.3221598 0.9777038 0.3824083 0.9314655 0.3997104 0.9303887 0.3824083 0.9281107 0.34467 0.9650835 0.3221814 0.964691 0.3221598 0.9650835 0.382375 0.917228 0.3641121 0.9169092 0.3641014 0.917228 0.3641014 0.9314622 0.3815128 0.9305307 0.3641014 0.9281081 0.3530064 0.9423356 0.3305863 0.9419443 0.330567 0.9423356 0.3822005 0.9207839 0.364112 0.9204682 0.3641014 0.9207839 0.3824083 0.9279029 0.3999534 0.9270916 0.3824083 0.9245499 0.3529006 0.9465381 0.3305845 0.9461485 0.330567 0.9465381 0.3658725 0.9596162 0.3662429 0.9383946 0.3658725 0.9383817 0.3641014 0.9279003 0.3817998 0.9271798 0.3641014 0.9245485 0.3658741 0.9816555 0.366241 0.9606315 0.3658741 0.960618 0.3824083 0.9243422 0.4002736 0.9236791 0.3824083 0.9209917 0.3700866 0.9592388 0.3704504 0.9383963 0.3700866 0.9383817 0.3641014 0.9243407 0.3821408 0.9237002 0.3641014 0.9209917 0.3830463 0.9207026 0.383351 0.9032414 0.3830463 0.9032277 0.3532525 0.9610313 0.3540275 0.9826079 0.3572182 0.9610313 0.3700895 0.9811939 0.3704484 0.9606361 0.3700895 0.960618 0.3616641 0.960618 0.3624973 0.9823939 0.365628 0.960618 0.3743031 0.958869 0.3746603 0.9384021 0.3743031 0.9383817 0.3616641 0.9383817 0.362595 0.9603421 0.3656264 0.9383817 0.283049 0.8619428 0.2809705 0.8766004 0.2832384 0.8765972 0.9329412 0.6071568 0.9302765 0.619465 0.932543 0.6194756 0.2829275 0.8487498 0.2807812 0.8619459 0.283049 0.8619428 0.9319884 0.683348 0.92994 0.7272309 0.9322064 0.7272414 0.2829096 0.7897146 0.2806077 0.8124834 0.2828755 0.8124803 0.2669717 0.8864613 0.2646651 0.9030587 0.2669306 0.9030985 0.2830912 0.7555136 0.2807155 0.7713971 0.2829833 0.771394 0.8998945 0.7975535 0.8976266 0.7354083 0.8976266 0.7975489 0.9319756 0.6568979 0.929722 0.6833375 0.9319884 0.683348 0.2829833 0.771394 0.2806418 0.7897176 0.2829096 0.7897146 0.799533 0.8194481 0.7972665 0.6908412 0.7972666 0.8194604 0.9322193 0.6365044 0.9297091 0.6568872 0.9319756 0.6568979 0.2670865 0.8705082 0.2647062 0.8864214 0.2669717 0.8864613 0.8525084 0.7992648 0.8498945 0.7693973 0.8502464 0.7993287 0.2828911 0.8334437 0.2806596 0.848753 0.2829275 0.8487498 0.9322064 0.7272414 0.9303262 0.775835 0.9325926 0.7758455 0.932543 0.6194756 0.9299529 0.6364938 0.9322193 0.6365044 0.8525083 0.7487416 0.8498945 0.7693973 0.8521564 0.7693334 0.9325926 0.7758455 0.9306748 0.7931545 0.9329412 0.793165 0.2669306 0.9030985 0.2648211 0.9197227 0.2670865 0.9197626 0.2828755 0.8124803 0.2806233 0.8334468 0.2828911 0.8334437 0.2832384 0.7406592 0.2808234 0.7555167 0.2830912 0.7555136 0.675549 0.9825493 0.6361745 0.9607675 0.6361745 0.9909986 0.9584529 0.9426952 0.9614877 0.9742437 0.96139 0.9426955 0.9614877 0.828777 0.9644337 0.8697639 0.9644248 0.8287776 0.9583803 0.9064334 0.96139 0.9426955 0.9613174 0.9064337 0.9614965 0.7870797 0.9644248 0.8287776 0.9644336 0.7870804 0.9583356 0.8668513 0.9613174 0.9064337 0.9612727 0.8668516 0.9615231 0.7462738 0.9644336 0.7870804 0.9644601 0.7462745 0.9583206 0.8254702 0.9612727 0.8668516 0.9612576 0.8254705 0.961566 0.7079274 0.9644601 0.7462745 0.9645031 0.707928 0.9583356 0.7838802 0.9612576 0.8254705 0.9612727 0.7838805 0.9616239 0.673514 0.9645031 0.707928 0.9645609 0.6735147 0.9583804 0.7436797 0.9612727 0.7838805 0.9613174 0.7436801 0.9552606 0.9430195 0.9583206 0.9740431 0.9581978 0.9430201 0.9584529 0.7064136 0.9613174 0.7436801 0.96139 0.706414 0.9551694 0.9071564 0.9581978 0.9430201 0.9581065 0.9071571 0.9674981 0.8674542 0.9645609 0.8261353 0.9645611 0.8674541 0.9585506 0.673514 0.96139 0.706414 0.9614877 0.6735143 0.9551132 0.8678315 0.9581065 0.9071571 0.9580503 0.8678321 0.9674986 0.9068819 0.9645611 0.8674541 0.9645615 0.9068819 0.9674993 0.7067077 0.9645632 0.6735141 0.9645622 0.7067077 0.9550943 0.8265559 0.9580503 0.8678321 0.9580313 0.8265566 0.9674993 0.9429033 0.9645615 0.9068819 0.9645622 0.9429033 0.9674986 0.7441876 0.9645622 0.7067077 0.9645615 0.7441876 0.9551132 0.7849159 0.9580313 0.8265566 0.9580503 0.7849165 0.9675002 0.9741343 0.9645622 0.9429033 0.9645631 0.9741343 0.9674982 0.7845135 0.9645615 0.7441876 0.9645611 0.7845135 0.9551694 0.7445116 0.9580503 0.7849165 0.9581065 0.7445123 0.961566 0.94339 0.9645609 0.9732019 0.9645031 0.9433907 0.967498 0.8261352 0.9645611 0.7845135 0.9645609 0.8261353 0.9552607 0.7068958 0.9581065 0.7445123 0.9581977 0.7068965 0.9615231 0.9084633 0.9645031 0.9433907 0.9644601 0.908464 0.9553834 0.673514 0.9581977 0.7068965 0.9583206 0.6735147 0.9614966 0.8697632 0.9644601 0.908464 0.9644337 0.8697639 0.8592342 0.1032225 0.8594591 0.1272338 0.8614882 0.1274231 0.2127435 0.7965986 0.2214092 0.7750749 0.2105935 0.7966352 0.8594591 0.07884043 0.8592342 0.1032225 0.8614882 0.07902985 0.2060833 0.8200021 0.2105935 0.7966352 0.2039333 0.8200387 0.8661344 0.0555855 0.8614882 0.07902985 0.8681634 0.05577498 0.2038344 0.8443496 0.2039333 0.8200387 0.2016844 0.8443862 0.8769744 0.03416192 0.8681634 0.05577498 0.8790035 0.03435134 0.2039333 0.8687421 0.2038344 0.8443496 0.2016844 0.8443862 0.8915627 0.01539295 0.8790035 0.03435134 0.8935917 0.01558244 0.2105935 0.8921701 0.2060833 0.8687054 0.2039333 0.8687421 0.9093384 0 0.8935917 0.01558244 0.9113675 1.89454e-4 0.2214092 0.9137701 0.2127435 0.8921335 0.2105935 0.8921701 0.5456321 0.9272262 0.5471988 0.9460967 0.5471452 0.9250457 0.2769255 0.9067323 0.2784385 0.8846603 0.2769254 0.8824788 0.2359646 0.9327121 0.2235592 0.9137336 0.2214092 0.9137701 0.5455992 0.904143 0.5471452 0.9250457 0.5471122 0.9019625 0.2769258 0.9298759 0.2784386 0.9089139 0.2769255 0.9067323 0.2537005 0.9482679 0.2381147 0.9326754 0.2359646 0.9327121 0.545588 0.8799149 0.5471122 0.9019625 0.547101 0.8777344 0.2769261 0.9510199 0.2784389 0.9320574 0.2769258 0.9298759 0.2769257 0.8343767 0.2784392 0.814558 0.2769261 0.8123766 0.5455992 0.8554728 0.547101 0.8777344 0.5471122 0.8532923 0.8935917 0.1909843 0.9093384 0.2062507 0.9113675 0.2064402 0.2769255 0.8580474 0.2784389 0.8365582 0.2769257 0.8343767 0.5456321 0.8317561 0.5471122 0.8532923 0.5471451 0.8295756 0.8790035 0.1721637 0.8915627 0.1907948 0.8935917 0.1909843 0.2769254 0.8824788 0.2784386 0.8602289 0.2769255 0.8580474 0.5456857 0.8096762 0.5471451 0.8295756 0.5471988 0.8074957 0.8681634 0.1507017 0.8769744 0.1719743 0.8790035 0.1721637 0.2381146 0.75615 0.2537004 0.7406959 0.2359646 0.7561865 0.8614882 0.1274231 0.8661344 0.1505123 0.8681634 0.1507017 0.2235592 0.7750383 0.2359646 0.7561865 0.2214092 0.7750749 0.8059837 0.1021603 0.8087788 0.07347148 0.8033493 0.1025838 0.8087913 0.3073294 0.8059085 0.3363816 0.8113505 0.3074353 0.8059836 0.1318507 0.8033493 0.1025838 0.8033493 0.1322742 0.8194664 0.2800492 0.8113505 0.3074353 0.8220255 0.2801552 0.8087788 0.1614015 0.8059836 0.1318507 0.8033493 0.1322742 0.8349641 0.2554833 0.8220255 0.2801552 0.8375232 0.2555893 0.8194292 0.1888465 0.8114132 0.1609781 0.8087788 0.1614015 0.854689 0.2345759 0.8375232 0.2555893 0.8572481 0.2346819 0.2710107 0.85513 0.2730588 0.8282859 0.2710107 0.825706 0.8348913 0.2135545 0.8220636 0.188423 0.8194292 0.1888465 0.2784933 0.8816703 0.2806077 0.9070408 0.280542 0.8790369 0.2710109 0.8832074 0.2730589 0.85771 0.2710107 0.85513 0.8545708 0.2345759 0.8375257 0.213131 0.8348913 0.2135545 0.2784529 0.8522771 0.280542 0.8790369 0.2805017 0.8496437 0.2710113 0.908859 0.2730591 0.8857873 0.2710109 0.8832074 0.2710113 0.7673495 0.2730602 0.7432392 0.2710118 0.7406592 0.2784392 0.8226245 0.2805017 0.8496437 0.280488 0.819991 0.2710119 0.9310991 0.2730595 0.9114389 0.2710113 0.908859 0.2710109 0.7960664 0.2730595 0.7699294 0.2710113 0.7673495 0.2784529 0.7938517 0.280488 0.819991 0.2805016 0.7912182 0.2730602 0.9065597 0.2751132 0.885752 0.2730602 0.8853304 0.2710107 0.825706 0.2730591 0.7986462 0.2710109 0.7960664 0.2784933 0.7670647 0.2805016 0.7912182 0.2805421 0.7644312 0.8375233 0.4465197 0.854689 0.4672253 0.8572481 0.4673313 0.278559 0.7432928 0.2805421 0.7644312 0.2806077 0.7406592 0.8220255 0.4220293 0.8349641 0.4464137 0.8375233 0.4465197 0.8375257 0.02096706 0.8545708 4.23524e-4 0.8348913 0.02139055 0.8113505 0.394801 0.8194664 0.4219232 0.8220255 0.4220293 0.8220636 0.04563236 0.8348913 0.02139055 0.8194292 0.04605579 0.8059084 0.3658813 0.8087913 0.394695 0.8113505 0.394801 0.8114132 0.07304793 0.8194292 0.04605579 0.8087788 0.07347148 0.8033493 0.3362755 0.8059084 0.3658813 0.8059085 0.3363816 0.5405828 0.9153235 0.5393056 0.9388614 0.5405999 0.939375 0.5442954 0.8736105 0.5455875 0.8415195 0.5442958 0.8400303 0.5429278 0.8359704 0.5441751 0.8647762 0.5442209 0.834428 0.5405828 0.8871449 0.5392886 0.9148099 0.5405828 0.9153235 0.5430021 0.8090381 0.5442209 0.834428 0.5442954 0.8074957 0.5405999 0.8559219 0.5392885 0.8866313 0.5405828 0.8871449 0.2582973 0.9005327 0.2595998 0.9253826 0.2595848 0.8999297 0.9687434 0.4233147 0.9846959 0.4510394 0.9862895 0.4510376 0.2583122 0.8712768 0.2595848 0.8999297 0.2595998 0.8706738 0.9566575 0.3924747 0.9671499 0.4233166 0.9687434 0.4233147 0.5142937 0.7664907 0.5326568 0.740493 0.5126571 0.7665041 0.9504962 0.3597028 0.9550639 0.3924766 0.9566575 0.3924747 0.4994326 0.7961646 0.5126571 0.7665041 0.4977959 0.796178 0.9489026 0.3262602 0.9504962 0.3597028 0.9504961 0.3262583 0.4902811 0.8283611 0.4977959 0.796178 0.4886445 0.8283745 0.9550639 0.2934284 0.9504961 0.3262583 0.9566575 0.2934266 0.487191 0.8618428 0.4886445 0.8283745 0.4855544 0.8618562 0.9671499 0.2624711 0.9566575 0.2934266 0.9687435 0.2624691 0.4886445 0.8953365 0.487191 0.8618428 0.4855544 0.8618562 0.9846959 0.2345777 0.9687435 0.2624691 0.9862895 0.2345759 0.5442954 0.9069462 0.5455871 0.8750996 0.5442954 0.8736105 0.4977959 0.9275286 0.4902811 0.8953231 0.4886445 0.8953365 0.5429277 0.9658122 0.5442954 0.9959967 0.5442209 0.9642697 0.5442954 0.9387563 0.5455869 0.9084354 0.5442954 0.9069462 0.5126571 0.9571956 0.4994325 0.9275152 0.4977959 0.9275286 0.5428819 0.9325113 0.5442209 0.9642697 0.5441751 0.9309689 0.5442958 0.9678181 0.5455871 0.9402454 0.5442954 0.9387563 0.5326568 0.9831973 0.5142937 0.9571823 0.5126571 0.9571956 0.5428664 0.8989165 0.5441751 0.9309689 0.5441597 0.897374 0.5442963 0.9930149 0.5455874 0.9693073 0.5442958 0.9678181 0.5442958 0.8400303 0.545588 0.8089849 0.5442964 0.8074957 0.5428819 0.8663186 0.5441597 0.897374 0.5441751 0.8647762 0.9289909 0.2663898 0.947751 0.2346798 0.9278393 0.2664937 0.90981 0.8159787 0.9156636 0.8532882 0.9168067 0.8532618 0.9152755 0.3017329 0.9278393 0.2664937 0.9141238 0.3018369 0.9086668 0.7779446 0.90981 0.8159787 0.9098099 0.7779182 0.9082834 0.3392471 0.9141238 0.3018369 0.9071318 0.339351 0.9156635 0.7405698 0.9098099 0.7779182 0.9168066 0.7405434 0.9082834 0.3774906 0.9071318 0.339351 0.9071318 0.3775945 0.9293881 0.7053169 0.9168066 0.7405434 0.9305313 0.7052904 0.9489026 0.5640947 0.9498161 0.5271424 0.9489027 0.5261986 0.9141238 0.4150978 0.9082834 0.3774906 0.9071318 0.3775945 0.9493132 0.6735404 0.9305313 0.7052904 0.9504563 0.673514 0.9489027 0.6002563 0.9498161 0.5650385 0.9489026 0.5640947 0.9278393 0.4504194 0.9152755 0.4149938 0.9141238 0.4150978 0.9113872 0.630032 0.9123721 0.6668908 0.9123021 0.6290345 0.9489032 0.6332938 0.9498162 0.6012001 0.9489027 0.6002563 0.947751 0.4822022 0.9289909 0.4503155 0.9278393 0.4504194 0.9113515 0.5918413 0.9123021 0.6290345 0.9122664 0.5908439 0.9489039 0.6619375 0.9498166 0.6342376 0.9489032 0.6332938 0.9489032 0.4880248 0.9498172 0.4519832 0.9489039 0.4510394 0.9113515 0.5547841 0.9122664 0.5908439 0.9122664 0.5537866 0.9206822 0.5943491 0.9197945 0.6211307 0.9207094 0.6216908 0.9489027 0.5261986 0.9498165 0.4889685 0.9489032 0.4880248 0.9113872 0.5202842 0.9122664 0.5537866 0.9123021 0.5192869 0.920673 0.5623156 0.9197673 0.5937889 0.9206822 0.5943491 0.9114573 0.4896677 0.9123021 0.5192869 0.9123721 0.4886702 0.9206823 0.5268214 0.919758 0.5617554 0.920673 0.5623156 0.9099256 0.6302244 0.9108682 0.6585407 0.9108365 0.6296058 0.9207094 0.4892304 0.9197673 0.5262612 0.9206823 0.5268214 0.9099255 0.5969663 0.9108365 0.6296058 0.9108365 0.5963478 0.9305312 0.8883352 0.9493131 0.9198772 0.9504563 0.9198508 0.9099572 0.5606632 0.9108365 0.5963478 0.9108682 0.5600447 0.9168067 0.8532618 0.9293881 0.8883616 0.9305312 0.8883352 0.8805591 0.571722 0.7722382 0.5678026 0.7924652 0.5910286 0.1355179 0.4797325 0.17309 0.4619555 0.1360509 0.4507352 0.8805591 0.571722 0.7924652 0.5910286 0.8029331 0.6049637 0.1355179 0.4797325 0.1351676 0.515966 0.1731829 0.5028699 0.7483311 0.9897073 0.737068 0.9784786 0.7284401 0.9897073 0.7112524 0.9864936 0.7013329 0.9670798 0.6927051 0.9783085 0.7284401 0.9897073 0.7198802 0.9752649 0.7112524 0.9864936 0.7688308 0.9749153 0.7483311 0.9897073 0.7602031 0.9861441 0.5354048 0.9875002 0.486325 0.951332 0.4795056 0.9672033 0.5424318 0.9732373 0.4909818 0.9446336 0.486325 0.951332 0.5555992 0.9509568 0.5602677 0.9147769 0.5111388 0.9235911 0.5494288 0.9543667 0.5111388 0.9235911 0.5020272 0.9308372 0.5457772 0.9655593 0.5020272 0.9308372 0.4909818 0.9446336 0.6347839 0.946887 0.6712204 0.9235783 0.6329307 0.9178864 0.6259124 0.966235 7.82205e-4 0.9828956 0.6265464 0.9828953 7.9101e-4 0.999852 0.6172661 0.9831919 1.48153e-4 0.9831922 0.6585263 0.001208007 0.6418873 0.3744357 0.6585263 0.3754956 0.6249392 0.4634081 0.641591 0.001004457 0.6249395 1.48153e-4 0.5354048 0.9875002 0.5424318 0.9732373 0.5354048 0.9875002 0.5424318 0.9732373 0.5457772 0.9655593 0.5424318 0.9732373 0.5457772 0.9655593 0.5494288 0.9543667 0.5457772 0.9655593 0.5457772 0.9655593 0.5494288 0.9543667 0.5457772 0.9655593 0.5424318 0.9732373 0.5457772 0.9655593 0.5424318 0.9732373 0.5354048 0.9875002 0.5424318 0.9732373 0.5354048 0.9875002 0.5457772 0.9655593 0.5494288 0.9543667 0.5494288 0.9543667 0.5424318 0.9732373 0.5457772 0.9655593 0.5457772 0.9655593 0.5354048 0.9875002 0.5424318 0.9732373 0.5424318 0.9732373 0.6531364 0.5635884 0.6546559 0.5282083 0.8626548 0.5069259 0.556344 0.4239198 0.5546024 0.3928153 0.6535561 0.3880699 0.6529921 0.3461704 0.6535561 0.3880699 0.5546024 0.3928153 0.6483201 0.6108653 0.639718 0.6470116 0.5479813 0.6385751 0.5517166 0.6035249 0.5541248 0.5729305 0.6530017 0.5805271 0.6535561 0.3880699 0.6529921 0.3461704 0.8743396 0.3574385 0.5552145 0.5548504 0.5564474 0.522998 0.6546559 0.5282083 0.5541248 0.5729305 0.5552145 0.5548504 0.6531364 0.5635884 0.5512403 0.3503141 0.5546024 0.3928153 0.1730712 0.426249 0.5564474 0.522998 0.1790028 0.5138934 0.177792 0.4883763 0.5568822 0.451668 0.556344 0.4239198 0.6541674 0.4229533 0.148948 0.9471256 0.04752069 0.9483043 0.2503393 0.9441768 0.6541674 0.4229533 0.6535561 0.3880699 0.8636608 0.398573 0.5567003 0.4877705 0.5568822 0.451668 0.6547825 0.4511064 0.5479813 0.6385751 0.173199 0.5839684 0.1754053 0.5711627 0.5568822 0.451668 0.5567003 0.4877705 0.177792 0.4883763 0.5564474 0.522998 0.5567003 0.4877705 0.6561391 0.4902923 0.6472044 0.6489678 0.639718 0.6470116 0.6577621 0.6243964 0.6483201 0.6108653 0.6649716 0.614026 0.6577621 0.6243964 0.97444 0.4972798 0.9707986 0.4926913 0.9912025 0.4933273 0.9707986 0.4926913 0.9678095 0.4849984 0.9914468 0.4885908 0.9795455 0.5010895 0.97444 0.4972798 0.9908143 0.4981514 0.6649716 0.614026 0.6483201 0.6108653 0.6530017 0.5805271 0.6530017 0.5805271 0.696178 0.5814486 0.6820717 0.5926666 0.6547825 0.4511064 0.6541674 0.4229533 0.8596535 0.4252876 0.696178 0.5814486 0.6530017 0.5805271 0.6531364 0.5635884 0.6531364 0.5635884 0.7722382 0.5678026 0.696178 0.5814486 0.873887 0.551836 0.7722382 0.5678026 0.8686568 0.5336232 0.6560637 0.4881866 0.6547825 0.4511064 0.8581563 0.4523132 0.6546559 0.5282083 0.6561391 0.4902923 0.8585725 0.4762175 0.1680174 0.4112057 0.1683168 0.4110411 0.1730712 0.426249 0.1680174 0.4112057 0.1697487 0.4390952 0.01662915 0.4804876 0.1790028 0.5138934 0.1789126 0.5372074 0.01397126 0.5278831 0.1745944 0.4626297 0.01260221 0.4949758 0.01662915 0.4804876 0.177792 0.4883763 0.1790028 0.5138934 0.01300972 0.5162876 0.177432 0.553937 0.1754053 0.5711627 0.01930904 0.5465725 0.5552145 0.5548504 0.1789126 0.5372074 0.1790028 0.5138934 0.5517166 0.6035249 0.1754053 0.5711627 0.177432 0.553937 0.5546024 0.3928153 0.556344 0.4239198 0.1699688 0.4393597 0.556344 0.4239198 0.5568822 0.451668 0.1745944 0.4626297 0.5541248 0.5729305 0.177432 0.553937 0.1789126 0.5372074 0.01724529 0.5487961 0.01399111 0.5393839 0.01630258 0.5397558 0.0120638 0.527875 0.01084822 0.5151596 0.01300972 0.5162876 0.01399111 0.5393839 0.0120638 0.527875 0.01397126 0.5278831 0.01026308 0.4927836 0.01403492 0.4784209 0.01662915 0.4804876 0.0102632 0.50568 0.01026308 0.4927836 0.01260221 0.4949758 0.01084822 0.5151596 0.0102632 0.50568 0.01229774 0.5065664 0.6206431 0.9550523 0.4300187 0.9550521 0.4300317 0.9517207 0.173199 0.5839684 0.01724529 0.5487961 0.01930904 0.5465725 0.177792 0.4883763 0.01229774 0.5065664 0.01260221 0.4949758 0.1789126 0.5372074 0.177432 0.553937 0.01630258 0.5397558 0.5152055 0.5296933 0.5821651 0.5359948 0.5760958 0.5632359 0.2369227 0.3087689 0.2374122 0.2988828 0.5479997 0.3173283 0.2303735 0.7402053 0.2293981 0.7030594 0.5098255 0.6939517 0.2354209 0.3407912 0.542326 0.360331 0.5356044 0.4027788 0.2285937 0.6487354 0.2285454 0.6420097 0.5036193 0.6394343 0.24009 0.9457212 0.5441406 0.9283163 0.5446727 0.9335208 0.2354717 0.8651248 0.5330715 0.8468595 0.5396856 0.8921468 0.2299307 0.4815641 0.5203692 0.4970974 0.5152055 0.5296933 0.2285937 0.6487354 0.5041279 0.6455245 0.5063592 0.6663102 0.2293981 0.7030594 0.2288333 0.6721715 0.5063592 0.6663102 0.2354209 0.3407912 0.2369227 0.3087689 0.546833 0.3275742 0.2285236 0.6280187 0.2285104 0.6235675 0.5028672 0.6229928 0.233464 0.8228092 0.5266514 0.805521 0.5330715 0.8468595 0.2308319 0.4531627 0.5245687 0.4703484 0.5203692 0.4970974 0.2284328 0.5940981 0.5053121 0.5969718 0.5037891 0.6114428 0.2303735 0.7402053 0.5145981 0.7277278 0.5201215 0.7642341 0.2335628 0.3833078 0.5356044 0.4027788 0.5296682 0.4390284 0.2285827 0.5492796 0.5109899 0.5585479 0.5053121 0.5969718 0.2379413 0.9103828 0.5396856 0.8921468 0.5441406 0.9283163 0.2291154 0.5171447 0.5152055 0.5296933 0.5109899 0.5585479 0.2284345 0.6104223 0.5037891 0.6114428 0.5028672 0.6229928 0.2285245 0.6339659 0.5030781 0.6322181 0.5036193 0.6394343 0.2316977 0.7794356 0.5201215 0.7642341 0.5266514 0.805521 0.2320424 0.4204401 0.5296682 0.4390284 0.5245687 0.4703484 0.2285236 0.6280187 0.502817 0.6268721 0.5030781 0.6322181 0.5705382 0.6638805 0.5670697 0.6445165 0.629958 0.6430914 0.5037891 0.6114428 0.5661835 0.6132879 0.5646025 0.6240611 0.5036193 0.6394343 0.5030781 0.6322181 0.5650305 0.6323222 0.5266514 0.805521 0.5201215 0.7642341 0.5901259 0.756286 0.5296682 0.4390284 0.6027898 0.4494376 0.5955088 0.4795127 0.5030781 0.6322181 0.502817 0.6268721 0.564502 0.6273804 0.5479997 0.3173283 0.6303423 0.32922 0.6281796 0.3396387 0.5145981 0.7277278 0.5098255 0.6939517 0.5755953 0.6897885 0.542326 0.360331 0.6209464 0.3724616 0.6112405 0.4142656 0.5041279 0.6455245 0.5036193 0.6394343 0.5660887 0.6389567 0.5446727 0.9335208 0.5441406 0.9283163 0.6269769 0.9166149 0.5396856 0.8921468 0.5330715 0.8468595 0.6086885 0.8358669 0.5203692 0.4970974 0.5893883 0.5049954 0.5821651 0.5359948 0.5063592 0.6663102 0.5041279 0.6455245 0.5670697 0.6445165 0.5098255 0.6939517 0.5063592 0.6663102 0.5705382 0.6638805 0.546833 0.3275742 0.6281796 0.3396387 0.6209464 0.3724616 0.5028672 0.6229928 0.5646025 0.6240611 0.564502 0.6273804 0.5330715 0.8468595 0.5266514 0.805521 0.5993129 0.7958352 0.5245687 0.4703484 0.5955088 0.4795127 0.5893883 0.5049954 0.5053121 0.5969718 0.5687085 0.5999123 0.5661835 0.6132879 0.5201215 0.7642341 0.5145981 0.7277278 0.5823335 0.721643 0.5356044 0.4027788 0.6112405 0.4142656 0.6027898 0.4494376 0.5109899 0.5585479 0.5760958 0.5632359 0.5687085 0.5999123 0.5441406 0.9283163 0.5396856 0.8921468 0.618907 0.8803544 0.6285991 0.6148702 0.6837071 0.6164961 0.6808626 0.6250714 0.5755953 0.6897885 0.5705382 0.6638805 0.6349242 0.6605187 0.6281796 0.3396387 0.7138883 0.3596765 0.7035222 0.3910645 0.5646025 0.6240611 0.6264361 0.6245889 0.6263175 0.6276257 0.6086885 0.8358669 0.5993129 0.7958352 0.6742479 0.7821628 0.5955088 0.4795127 0.6686962 0.4923179 0.6604322 0.5160483 0.5687085 0.5999123 0.6320347 0.6028356 0.6285991 0.6148702 0.5901259 0.756286 0.5823335 0.721643 0.6512889 0.7131845 0.6112405 0.4142656 0.6900388 0.4308682 0.6785389 0.4641168 0.5760958 0.5632359 0.6423438 0.5696527 0.6320347 0.6028356 0.6269769 0.9166149 0.618907 0.8803544 0.70094 0.8618867 0.5821651 0.5359948 0.6506163 0.544691 0.6423438 0.5696527 0.5661835 0.6132879 0.6285991 0.6148702 0.6264361 0.6245889 0.5660887 0.6389567 0.5650305 0.6323222 0.6270776 0.6321141 0.5993129 0.7958352 0.5901259 0.756286 0.6618532 0.7452317 0.6027898 0.4494376 0.6785389 0.4641168 0.6686962 0.4923179 0.5650305 0.6323222 0.564502 0.6273804 0.6263175 0.6276257 0.6303423 0.32922 0.7170543 0.3497207 0.7138883 0.3596765 0.5823335 0.721643 0.5755953 0.6897885 0.6420199 0.6840136 0.6209464 0.3724616 0.7035222 0.3910645 0.6900388 0.4308682 0.5670697 0.6445165 0.5660887 0.6389567 0.62858 0.6380859 0.6279997 0.9215504 0.6269769 0.9166149 0.7122339 0.8961319 0.618907 0.8803544 0.6086885 0.8358669 0.6869252 0.8198322 0.5893883 0.5049954 0.6604322 0.5160483 0.6506163 0.544691 0.7009629 0.677293 0.6919848 0.6566432 0.7574059 0.6517485 0.62858 0.6380859 0.6270776 0.6321141 0.6817225 0.6318454 0.6742479 0.7821628 0.6618532 0.7452317 0.7254635 0.7318496 0.6785389 0.4641168 0.745752 0.4826791 0.7337887 0.5081862 0.6270776 0.6321141 0.6263175 0.6276257 0.6807066 0.6278356 0.7138883 0.3596765 0.7170543 0.3497207 0.7923817 0.3785947 0.6512889 0.7131845 0.6420199 0.6840136 0.7009629 0.677293 0.7035222 0.3910645 0.7758762 0.416172 0.7596521 0.4524368 0.629958 0.6430914 0.62858 0.6380859 0.6837254 0.6370727 0.7137407 0.9007724 0.7122339 0.8961319 0.7855432 0.8685076 0.70094 0.8618867 0.6869252 0.8198322 0.7556468 0.7993251 0.6604322 0.5160483 0.723655 0.5292608 0.7115265 0.5549183 0.6349242 0.6605187 0.629958 0.6430914 0.6855557 0.6414337 0.6420199 0.6840136 0.6349242 0.6605187 0.6919848 0.6566432 0.7138883 0.3596765 0.7884187 0.3876177 0.7758762 0.416172 0.6264361 0.6245889 0.6808626 0.6250714 0.6807066 0.6278356 0.6869252 0.8198322 0.6742479 0.7821628 0.7404776 0.7651742 0.6686962 0.4923179 0.7337887 0.5081862 0.723655 0.5292608 0.6320347 0.6028356 0.688192 0.6060244 0.6837071 0.6164961 0.6618532 0.7452317 0.6512889 0.7131845 0.7124912 0.7031672 0.6900388 0.4308682 0.7596521 0.4524368 0.745752 0.4826791 0.6423438 0.5696527 0.7011952 0.5769879 0.688192 0.6060244 0.7122339 0.8961319 0.70094 0.8618867 0.7722319 0.837484 0.6506163 0.544691 0.7115265 0.5549183 0.7011952 0.5769879 0.7476614 0.618817 0.7850945 0.6207603 0.7816302 0.6265625 0.7884187 0.3876177 0.8660867 0.4287611 0.8530395 0.452704 0.6808626 0.6250714 0.7443473 0.6259066 0.7441639 0.6282911 0.7556468 0.7993251 0.7404776 0.7651742 0.8140372 0.7416239 0.723655 0.5292608 0.7337887 0.5081862 0.8067346 0.5307473 0.688192 0.6060244 0.7528941 0.6103845 0.7476614 0.618817 0.7254635 0.7318496 0.7124912 0.7031672 0.7818868 0.689704 0.7596521 0.4524368 0.8356993 0.4833077 0.8203188 0.5090262 0.7011952 0.5769879 0.7684758 0.5872982 0.7528941 0.6103845 0.7722319 0.837484 0.8476905 0.8025527 0.8611589 0.8284375 0.7115265 0.5549183 0.7805581 0.5695555 0.7684758 0.5872982 0.6837071 0.6164961 0.7476614 0.618817 0.7443473 0.6259066 0.6837254 0.6370727 0.6817225 0.6318454 0.7453382 0.6316655 0.7404776 0.7651742 0.7254635 0.7318496 0.7970507 0.7135489 0.745752 0.4826791 0.8203188 0.5090262 0.8067346 0.5307473 0.6817225 0.6318454 0.6807066 0.6278356 0.7441639 0.6282911 0.7884187 0.3876177 0.7923817 0.3785947 0.8703426 0.4213144 0.7124912 0.7031672 0.7009629 0.677293 0.7681326 0.6685156 0.7758762 0.416172 0.8530395 0.452704 0.8356993 0.4833077 0.6855557 0.6414337 0.6837254 0.6370727 0.7476608 0.6359265 0.7855432 0.8685076 0.8611589 0.8284375 0.8632562 0.8317398 0.7722319 0.837484 0.7556468 0.7993251 0.8304924 0.7705262 0.723655 0.5292608 0.8095325 0.557992 0.7805581 0.5695555 0.6919848 0.6566432 0.6855557 0.6414337 0.7497861 0.6394436 0.8904061 0.4816924 0.9025097 0.4616062 0.9161407 0.4830207 0.7476608 0.6359265 0.7453382 0.6316655 0.7826532 0.6314325 0.8140372 0.7416239 0.7970507 0.7135489 0.8364853 0.6988331 0.8203188 0.5090262 0.859689 0.5296044 0.8465479 0.5480648 0.7453382 0.6316655 0.7441639 0.6282911 0.7814345 0.6286082 0.8660867 0.4287611 0.8703426 0.4213144 0.9067576 0.4555719 0.7818868 0.689704 0.7681326 0.6685156 0.8067584 0.6610275 0.8356993 0.4833077 0.8530395 0.452704 0.8904061 0.4816924 0.7497861 0.6394436 0.7476608 0.6359265 0.785081 0.6348727 0.8611589 0.8284375 0.8963755 0.796915 0.8985914 0.7994356 0.8304924 0.7705262 0.8684162 0.747914 0.8842995 0.7752431 0.8095325 0.557992 0.8347832 0.5631853 0.8200444 0.5808126 0.7574059 0.6517485 0.7497861 0.6394436 0.7873182 0.637678 0.7681326 0.6685156 0.7574059 0.6517485 0.7954043 0.6475017 0.8530395 0.452704 0.8660867 0.4287611 0.9025097 0.4616062 0.7443473 0.6259066 0.7816302 0.6265625 0.7814345 0.6286082 0.8304924 0.7705262 0.8140372 0.7416239 0.8530581 0.7230539 0.8095325 0.557992 0.8067346 0.5307473 0.8465479 0.5480648 0.7528941 0.6103845 0.7906075 0.6140412 0.7850945 0.6207603 0.7970507 0.7135489 0.7818868 0.689704 0.8211099 0.6785511 0.8356993 0.4833077 0.8741207 0.5076777 0.859689 0.5296044 0.7684758 0.5872982 0.8071536 0.5955768 0.7906075 0.6140412 0.8476905 0.8025527 0.8842995 0.7752431 0.8963755 0.796915 0.7805581 0.5695555 0.8200444 0.5808126 0.8071536 0.5955768 0.8049729 0.6343111 0.8024937 0.631387 0.8258772 0.6313243 0.7816302 0.6265625 0.8014517 0.6270068 0.8012461 0.6288709 0.8530581 0.7230539 0.8706353 0.7116931 0.8847085 0.7336806 0.8465479 0.5480648 0.8649128 0.5587291 0.8538028 0.5722982 0.7906075 0.6140412 0.8106023 0.6163823 0.805006 0.6219556 0.8364853 0.6988331 0.8211099 0.6785511 0.8405956 0.6719166 0.859689 0.5296044 0.8741207 0.5076777 0.8903973 0.5229539 0.8071536 0.5955768 0.826936 0.6007063 0.8106023 0.6163823 0.8842995 0.7752431 0.8988994 0.757548 0.9098811 0.7764207 0.8200444 0.5808126 0.8396217 0.5879644 0.826936 0.6007063 0.7850945 0.6207603 0.805006 0.6219556 0.8014517 0.6270068 0.785081 0.6348727 0.7826532 0.6314325 0.8024937 0.631387 0.8530581 0.7230539 0.8364853 0.6988331 0.8552662 0.6900395 0.859689 0.5296044 0.8771013 0.5422658 0.8649128 0.5587291 0.7826532 0.6314325 0.7814345 0.6286082 0.8012461 0.6288709 0.9025097 0.4616062 0.9067576 0.4555719 0.9203028 0.4780804 0.8211099 0.6785511 0.8067584 0.6610275 0.826591 0.656505 0.8741207 0.5076777 0.8904061 0.4816924 0.9050598 0.500363 0.7873182 0.637678 0.785081 0.6348727 0.8049729 0.6343111 0.8963755 0.796915 0.9098811 0.7764207 0.912118 0.7783198 0.8684162 0.747914 0.8847085 0.7336806 0.8988994 0.757548 0.8347832 0.5631853 0.8538028 0.5722982 0.8396217 0.5879644 0.7954043 0.6475017 0.7873182 0.637678 0.8072586 0.6366462 0.8067584 0.6610275 0.7954043 0.6475017 0.8153412 0.6448922 0.9171018 0.5232292 0.9260777 0.5095645 0.9278575 0.5312015 0.8706353 0.7116931 0.8552662 0.6900395 0.8747048 0.6799671 0.8649128 0.5587291 0.8771013 0.5422658 0.8939833 0.557415 0.8024937 0.631387 0.8012461 0.6288709 0.8247043 0.6292147 0.9161407 0.4830207 0.9203028 0.4780804 0.9297252 0.5060009 0.8405956 0.6719166 0.826591 0.656505 0.8489336 0.6515038 0.8903973 0.5229539 0.9050598 0.500363 0.9171018 0.5232292 0.8072586 0.6366462 0.8049729 0.6343111 0.8282347 0.6336689 0.9098811 0.7764207 0.9199493 0.7507271 0.9219391 0.751936 0.8847085 0.7336806 0.8996817 0.7163037 0.911245 0.7357646 0.8538028 0.5722982 0.873826 0.5825887 0.8611442 0.5959931 0.8153412 0.6448922 0.8072586 0.6366462 0.8304261 0.6355069 0.826591 0.656505 0.8153412 0.6448922 0.838261 0.6420603 0.9050598 0.500363 0.9161407 0.4830207 0.9260777 0.5095645 0.8014517 0.6270068 0.8249085 0.6276165 0.8247043 0.6292147 0.8706353 0.7116931 0.8878297 0.6981192 0.8996817 0.7163037 0.8649128 0.5587291 0.8834775 0.5711014 0.873826 0.5825887 0.8106023 0.6163823 0.8336538 0.6192075 0.8282955 0.6235371 0.8552662 0.6900395 0.8405956 0.6719166 0.8617997 0.6645651 0.8771013 0.5422658 0.8903973 0.5229539 0.9051113 0.5414977 0.826936 0.6007063 0.8494055 0.6067183 0.8336538 0.6192075 0.8988994 0.757548 0.911245 0.7357646 0.9199493 0.7507271 0.8396217 0.5879644 0.8611442 0.5959931 0.8494055 0.6067183 0.805006 0.6219556 0.8282955 0.6235371 0.8249085 0.6276165 0.8853815 0.6724119 0.8932514 0.6640359 0.9013847 0.6747295 0.8249085 0.6276165 0.8422215 0.6282473 0.8420202 0.629665 0.8878297 0.6981192 0.896254 0.6870832 0.9060036 0.7017676 0.8834775 0.5711014 0.8931748 0.5807078 0.8852134 0.590109 0.8336538 0.6192075 0.8503218 0.6212418 0.84538 0.6247705 0.8747048 0.6799671 0.8617997 0.6645651 0.8747498 0.6596148 0.8939833 0.557415 0.9051113 0.5414977 0.9110733 0.5567442 0.8494055 0.6067183 0.8644867 0.6106236 0.8503218 0.6212418 0.911245 0.7357646 0.9154401 0.717501 0.9223589 0.729505 0.8611442 0.5959931 0.8746129 0.6013239 0.8644867 0.6106236 0.8282955 0.6235371 0.84538 0.6247705 0.8422215 0.6282473 0.8282347 0.6336689 0.8258772 0.6313243 0.8431182 0.6315206 0.8747048 0.6799671 0.8853815 0.6724119 0.896254 0.6870832 0.8834775 0.5711014 0.8939833 0.557415 0.9018809 0.5695976 0.8258772 0.6313243 0.8247043 0.6292147 0.8420202 0.629665 0.9260777 0.5095645 0.9297252 0.5060009 0.9309486 0.5286216 0.8617997 0.6645651 0.8489336 0.6515038 0.8638183 0.6484339 0.9051113 0.5414977 0.9171018 0.5232292 0.9207887 0.5420252 0.8304261 0.6355069 0.8282347 0.6336689 0.8453115 0.6334908 0.9199493 0.7507271 0.9223589 0.729505 0.9240576 0.7302467 0.8996817 0.7163037 0.9060036 0.7017676 0.9154401 0.717501 0.873826 0.5825887 0.8852134 0.590109 0.8746129 0.6013239 0.838261 0.6420603 0.8304261 0.6355069 0.8473338 0.6349824 0.8489336 0.6515038 0.838261 0.6420603 0.8543557 0.6403279 0.2762697 0.7422944 0.2776056 0.7406592 0.2784392 0.7411629 0.2784392 0.7411629 0.2781748 0.7489133 0.2762697 0.7422944 0.2762697 0.7422944 0.2781748 0.7489133 0.2752758 0.7492487 0.2744529 0.7585874 0.2752758 0.7492487 0.2775105 0.7588925 0.2736701 0.7741472 0.2739751 0.7668257 0.2772452 0.7683411 0.2730602 0.7886065 0.2733655 0.7805515 0.2771136 0.7870262 0.2736116 0.8060801 0.2730997 0.795928 0.2777811 0.8026337 0.2760204 0.8122621 0.2742988 0.8098127 0.2778651 0.8114297 0.2778651 0.8114297 0.2768926 0.8123765 0.2760204 0.8122621 0.2783154 0.8080493 0.2784392 0.8096336 0.2742988 0.8098127 0.2777811 0.8026337 0.2783154 0.8080493 0.2736116 0.8060801 0.2778651 0.8114297 0.2742988 0.8098127 0.2784392 0.8096336 0.2730997 0.795928 0.2730602 0.7886065 0.2774471 0.7955199 0.2739751 0.7668257 0.2775105 0.7588925 0.2772452 0.7683411 0.2781748 0.7489133 0.2775105 0.7588925 0.2752758 0.7492487 0.2775105 0.7588925 0.2739751 0.7668257 0.2744529 0.7585874 0.2733655 0.7805515 0.2736701 0.7741472 0.2769798 0.7781081 0.2783154 0.8080493 0.2742988 0.8098127 0.2736116 0.8060801 0.2774471 0.7955199 0.2777811 0.8026337 0.2730997 0.795928 0.2736701 0.7741472 0.2772452 0.7683411 0.2769798 0.7781081 0.2771136 0.7870262 0.2774471 0.7955199 0.2730602 0.7886065 0.8931748 0.5807078 0.9018809 0.5695976 0.9063975 0.5831888 0.8431182 0.6315206 0.8420202 0.629665 0.8599644 0.6302089 0.9278575 0.5312015 0.9309486 0.5286216 0.9286382 0.5531527 0.8747498 0.6596148 0.8638183 0.6484339 0.8773723 0.645697 0.9110733 0.5567442 0.9207887 0.5420252 0.9210036 0.5630499 0.8473338 0.6349824 0.8453115 0.6334908 0.8626139 0.6332113 0.9223589 0.729505 0.9214439 0.7058168 0.9226989 0.7062947 0.9060036 0.7017676 0.9088175 0.6853606 0.9161896 0.6968507 0.8852134 0.590109 0.8938632 0.5981914 0.8860395 0.6067162 0.8543557 0.6403279 0.8473338 0.6349824 0.8642359 0.634346 0.8638183 0.6484339 0.8543557 0.6403279 0.8700534 0.638886 0.9207887 0.5420252 0.9278575 0.5312015 0.926348 0.5549724 0.8422215 0.6282473 0.8601356 0.6290962 0.8599644 0.6302089 0.896254 0.6870832 0.9013847 0.6747295 0.9088175 0.6853606 0.8852134 0.590109 0.8931748 0.5807078 0.8998464 0.5913115 0.8503218 0.6212418 0.8670379 0.6233845 0.8628509 0.6262562 0.8853815 0.6724119 0.8747498 0.6596148 0.8854659 0.6544736 0.9018809 0.5695976 0.9110733 0.5567442 0.913434 0.5738427 0.8644867 0.6106236 0.8784199 0.6141132 0.8670379 0.6233845 0.9154401 0.717501 0.9161896 0.6968507 0.9214439 0.7058168 0.8746129 0.6013239 0.8860395 0.6067162 0.8784199 0.6141132 0.84538 0.6247705 0.8628509 0.6262562 0.8601356 0.6290962 0.8453115 0.6334908 0.8431182 0.6315206 0.8608408 0.6316726 0.233464 0.8228092 0.1386373 0.825818 0.1377868 0.7820034 0.2308319 0.4531627 0.1360509 0.4507352 0.1367812 0.4175281 0.2285245 0.6339659 0.1359279 0.6344485 0.1358677 0.6282985 0.2374122 0.2988828 0.2369227 0.3087689 0.1404718 0.3048759 0.2293981 0.7030594 0.2303735 0.7402053 0.1371511 0.7423503 0.2354209 0.3407912 0.2335628 0.3833078 0.1378105 0.3799416 0.2285454 0.6420097 0.2285937 0.6487354 0.1360921 0.6497167 0.2403485 0.9507217 0.1418759 0.9548976 0.1416744 0.9501446 0.2379413 0.9103828 0.1407231 0.914308 0.1396141 0.8685798 0.2299307 0.4815641 0.2291154 0.5171447 0.1731829 0.5028699 0.2285937 0.6487354 0.2288333 0.6721715 0.1363383 0.6735585 0.2288333 0.6721715 0.2293981 0.7030594 0.1366766 0.704823 0.2369227 0.3087689 0.2354209 0.3407912 0.1392361 0.3370439 0.2285104 0.6235675 0.2285236 0.6280187 0.1358677 0.6282985 0.2354717 0.8651248 0.1396141 0.8685798 0.1386373 0.825818 0.2308319 0.4531627 0.2299307 0.4815641 0.17309 0.4619555 0.17309 0.4619555 0.1360509 0.4507352 0.2308319 0.4531627 0.2284345 0.6104223 0.1357532 0.6107777 0.1356446 0.5940594 0.2303735 0.7402053 0.2316977 0.7794356 0.1377868 0.7820034 0.2335628 0.3833078 0.2320424 0.4204401 0.1367812 0.4175281 0.2284328 0.5940981 0.1356446 0.5940594 0.1351657 0.5487405 0.24009 0.9457212 0.1416744 0.9501446 0.1407231 0.914308 0.2285827 0.5492796 0.1351657 0.5487405 0.1351676 0.515966 0.2285104 0.6235675 0.1358359 0.624195 0.1357532 0.6107777 0.2285454 0.6420097 0.1360201 0.6427589 0.1359279 0.6344485 0.1551972 0.8304904 0.1551972 0.938517 0.1117519 0.8035207 0.1543526 0.9523804 0.1478957 0.9629099 0.1551972 0.938517 0.09752959 0.9951933 0.003914594 0.9913099 0.003518402 0.8826887 0.003518402 0.8826887 0.006040573 0.8654184 0.01648616 0.8523623 0.01648616 0.8523623 0.02588838 0.844361 0.003518402 0.8826887 0.1117519 0.8035207 0.1231349 0.8001535 0.1466934 0.8102688 0.1372911 0.8026843 0.1466934 0.8102688 0.1231349 0.8001535 0.1533223 0.8203801 0.1551972 0.8304904 0.1466934 0.8102688 0.1478957 0.9629099 0.09752959 0.9951933 0.1551972 0.938517 0.003518402 0.8826887 0.1551972 0.938517 0.09752959 0.9951933 0.1117519 0.8035207 0.1466934 0.8102688 0.1551972 0.8304904 0.1551972 0.938517 0.02588838 0.844361 0.1117519 0.8035207 0.9632014 0.6756499 0.9643244 0.6940898 0.9546157 0.6616427 0.9643244 0.8377748 0.9618315 0.8512217 0.9530168 0.8646687 0.9530168 0.8646687 0.9405148 0.8747537 0.9216914 0.8781155 0.9216914 0.8781155 0.9065553 0.8736332 0.9530168 0.8646687 0.7923828 0.8192851 0.7798808 0.8086396 0.7626375 0.7682989 0.7659912 0.7912707 0.7626375 0.7682989 0.7798808 0.8086396 0.7631643 0.6238231 0.887644 0.6186873 0.7626375 0.7682989 0.9546157 0.6616427 0.9643244 0.6940898 0.887644 0.6186873 0.9643244 0.8377748 0.9530168 0.8646687 0.9065553 0.8736332 0.9065553 0.8736332 0.9643244 0.6940898 0.9643244 0.8377748 0.7626375 0.7682989 0.887644 0.6186873 0.9643244 0.6940898 0.9643244 0.6940898 0.9065553 0.8736332 0.7923828 0.8192851 0.6583597 0.6970967 0.6604661 0.697079 0.6600477 0.8183878 0.6950956 0.8399001 0.6930025 0.8399018 0.6931331 0.6961325 0.6963759 0.8669822 0.6942828 0.8669838 0.693278 0.8533946 0.2558505 0.8848558 0.257957 0.8848572 0.2579889 0.9080355 0.6585184 0.6838306 0.6606248 0.683813 0.6604661 0.697079 0.2561908 0.7406592 0.2582973 0.7406608 0.257957 0.8848572 0.6581786 0.8545438 0.6602851 0.8545261 0.6606248 0.8678693 0.6163359 0.8677276 0.614237 0.867692 0.6118072 0.7962626 0.6579413 0.8184055 0.6600477 0.8183878 0.6600577 0.8344801 0.6953725 0.6776974 0.6932794 0.677699 0.6942828 0.6638146 0.695371 0.853393 0.693278 0.8533946 0.6930025 0.8399018 0.6139062 0.7962982 0.6118072 0.7962626 0.614237 0.663813 0.2558825 0.908034 0.2579889 0.9080355 0.2582973 0.9263893 0.6579513 0.8344978 0.6600577 0.8344801 0.6602851 0.8545261 0.6952261 0.6961309 0.6931331 0.6961325 0.6932794 0.677699 0.9874882 0.4538208 0.9702662 0.4611129 0.9757063 0.45554 0.8585725 0.4762175 0.8581563 0.4523132 0.897334 0.4546869 0.8636608 0.398573 0.9074974 0.4101014 0.9003226 0.4320119 0.5240485 0.5668595 0.4430938 0.6016189 0.4154978 0.3940798 0.3933158 0.6160328 0.3528085 0.6131734 0.4154978 0.3940798 0.3179758 0.6041631 0.2914016 0.588609 0.4154978 0.3940798 0.2656434 0.5610329 0.2495191 0.5359577 0.2459229 0.5063334 0.2459229 0.5063334 0.2459229 0.4655862 0.4154978 0.3940798 0.2532826 0.4210759 0.2658939 0.3850209 0.4154978 0.3940798 0.2831676 0.3535447 0.3060025 0.3238666 0.4154978 0.3940798 0.3349885 0.2998631 0.3653498 0.2849041 0.4154978 0.3940798 0.4154978 0.3940798 0.6676114 0.3901107 0.6630987 0.4492851 0.3653498 0.2849041 0.3950085 0.2740181 0.4154978 0.3940798 0.2658939 0.3850209 0.2831676 0.3535447 0.4154978 0.3940798 0.2656434 0.5610329 0.2459229 0.5063334 0.4154978 0.3940798 0.3528085 0.6131734 0.3179758 0.6041631 0.4154978 0.3940798 0.6124759 0.5203878 0.5240485 0.5668595 0.4154978 0.3940798 0.6630987 0.4492851 0.6422166 0.4922088 0.6124759 0.5203878 0.3060025 0.3238666 0.3349885 0.2998631 0.4154978 0.3940798 0.4154978 0.3940798 0.6630987 0.4492851 0.6124759 0.5203878 0.4430938 0.6016189 0.3933158 0.6160328 0.4154978 0.3940798 0.2459229 0.4655862 0.2532826 0.4210759 0.4154978 0.3940798 0.8944323 0.6066849 0.8805591 0.571722 0.920661 0.554041 0.8626548 0.5069259 0.9003757 0.5001153 0.9059399 0.5222441 0.8581563 0.4523132 0.8596535 0.4252876 0.9003226 0.4320119 0.8626548 0.5069259 0.8585725 0.4762175 0.8970386 0.4745695 0.8805591 0.571722 0.873887 0.551836 0.9120905 0.5375958 0.873887 0.551836 0.8686568 0.5336232 0.9059399 0.5222441 0.8743396 0.3574385 0.9247682 0.3762443 0.9074974 0.4101014 0.8970386 0.4745695 0.897334 0.4546869 0.9129918 0.4564357 0.9395388 0.581806 0.920661 0.554041 0.9360038 0.5445396 0.9120905 0.5375958 0.9059399 0.5222441 0.9207324 0.5169644 0.9074974 0.4101014 0.9245172 0.4174126 0.9163352 0.4362275 0.9003757 0.5001153 0.8970386 0.4745695 0.9123613 0.4742276 0.9247682 0.3762443 0.943646 0.3887552 0.9245172 0.4174126 0.897334 0.4546869 0.9003226 0.4320119 0.9163352 0.4362275 0.920661 0.554041 0.9120905 0.5375958 0.9270427 0.5304426 0.9003757 0.5001153 0.9154823 0.4971482 0.9207324 0.5169644 0.9360038 0.5445396 0.9270427 0.5304426 0.9398477 0.5233412 0.9129918 0.4564357 0.9163352 0.4362275 0.930506 0.4410229 0.9558929 0.5678101 0.9360038 0.5445396 0.9486487 0.5351277 0.943646 0.3887552 0.9581419 0.4023213 0.9389113 0.4250671 0.9154823 0.4971482 0.9123613 0.4742276 0.9258565 0.4742667 0.9245172 0.4174126 0.9389113 0.4250671 0.930506 0.4410229 0.9270427 0.5304426 0.9207324 0.5169644 0.9337252 0.5117198 0.9123613 0.4742276 0.9129918 0.4564357 0.9267853 0.4586524 0.9154823 0.4971482 0.9285818 0.4944155 0.9337252 0.5117198 0.9389113 0.4250671 0.9511964 0.433147 0.9429721 0.4461265 0.9581419 0.4023213 0.9694855 0.4158091 0.9511964 0.433147 0.9267853 0.4586524 0.930506 0.4410229 0.9429721 0.4461265 0.9486487 0.5351277 0.9398477 0.5233412 0.9509921 0.516209 0.9285818 0.4944155 0.9404478 0.491774 0.9452273 0.5065341 0.9285818 0.4944155 0.9258565 0.4742667 0.938061 0.4744551 0.9258565 0.4742667 0.9267853 0.4586524 0.9391612 0.4610766 0.967787 0.5533432 0.9486487 0.5351277 0.9592858 0.5257169 0.9398477 0.5233412 0.9337252 0.5117198 0.9452273 0.5065341 0.9592858 0.5257169 0.9509921 0.516209 0.9619955 0.5080591 0.9391612 0.4610766 0.9429721 0.4461265 0.9555766 0.4523215 0.9592858 0.5257169 0.9691756 0.5149924 0.9845647 0.5242224 0.9694855 0.4158091 0.9790436 0.4311568 0.9630079 0.4426397 0.9404478 0.491774 0.938061 0.4744551 0.9507972 0.4748749 0.9511964 0.433147 0.9630079 0.4426397 0.9555766 0.4523215 0.9509921 0.516209 0.9452273 0.5065341 0.9569473 0.5006054 0.938061 0.4744551 0.9391612 0.4610766 0.9519541 0.4641374 0.9404478 0.491774 0.9527744 0.4888386 0.9569473 0.5006054 0.9527744 0.4888386 0.9609215 0.4868039 0.9645399 0.4964289 0.9507972 0.4748749 0.9519541 0.4641374 0.9603683 0.4664532 0.9845647 0.5242224 0.9691756 0.5149924 0.9751518 0.5076202 0.9619955 0.5080591 0.9569473 0.5006054 0.9645399 0.4964289 0.9630079 0.4426397 0.9701914 0.4494495 0.9636632 0.4568855 0.9790436 0.4311568 0.9838376 0.4415767 0.9701914 0.4494495 0.9527744 0.4888386 0.9507972 0.4748749 0.9592519 0.4752833 0.9519541 0.4641374 0.9555766 0.4523215 0.9636632 0.4568855 0.9691756 0.5149924 0.9619955 0.5080591 0.9689295 0.50235 0.9838376 0.4415767 0.9867047 0.4505587 0.9757063 0.45554 0.9609215 0.4868039 0.9592519 0.4752833 0.9664047 0.4757362 0.9701914 0.4494495 0.9757063 0.45554 0.9702662 0.4611129 0.9689295 0.50235 0.9645399 0.4964289 0.9707986 0.4926913 0.9592519 0.4752833 0.9603683 0.4664532 0.9674201 0.4686492 0.9609215 0.4868039 0.9678095 0.4849984 0.9707986 0.4926913 0.9751518 0.5076202 0.9689295 0.50235 0.97444 0.4972798 0.9603683 0.4664532 0.9636632 0.4568855 0.9702662 0.4611129 0.9751518 0.5076202 0.9795455 0.5010895 0.9899644 0.5051178 0.9893612 0.462207 0.9674201 0.4686492 0.9702662 0.4611129 0.99054 0.4697757 0.9664047 0.4757362 0.9674201 0.4686492 0.9678095 0.4849984 0.9664047 0.4757362 0.99054 0.4697757 0.5977541 0.952257 0.589398 0.952257 0.589398 0.9456781 0.5156968 0.9736644 0.5062412 0.9736644 0.5062412 0.9662199 0.5156149 0.9244672 0.5156149 0.9319117 0.5061593 0.9319117 0.5701326 0.9719454 0.5617766 0.9719454 0.5617766 0.9653665 0.5258188 0.9855695 0.4608404 0.9855695 0.4608404 0.9344109 0.5509875 0.9796545 0.54939 0.9796545 0.54939 0.9783968 0.5179467 0.9606046 0.5084912 0.9606046 0.5084912 0.95316 0.5179468 0.9484865 0.5084913 0.9484865 0.5084913 0.941042 0.5926019 0.9728353 0.5842458 0.9728353 0.5842458 0.9662564 0.5274854 0.9589092 0.462507 0.9589092 0.462507 0.907751 0.6012385 0.9659759 0.5928824 0.9659759 0.5928824 0.959397 0.6063907 0.952257 0.5980346 0.952257 0.5980346 0.9456781 0.5489609 0.9795514 0.5473635 0.9795514 0.5473635 0.9782937 0.6012385 0.9796947 0.5928824 0.9796947 0.5928824 0.9731158 0.5509875 0.9783432 0.54939 0.9783432 0.54939 0.9770854 0.5805088 0.9796947 0.5721527 0.9796947 0.5721527 0.9731158 0.5927309 0.9346294 0.5993098 0.9346294 0.5993098 0.9429855 0.5462648 0.978946 0.5446673 0.978946 0.5446673 0.9776883 0.6043589 0.9343489 0.5960028 0.9343489 0.5960028 0.9277701 0.6079465 0.9167691 0.5995904 0.9167691 0.5995904 0.9101903 0.6012697 0.9591164 0.5929136 0.9591164 0.5929136 0.9525375 0.5805088 0.9728353 0.5721527 0.9728353 0.5721527 0.9662564 0.5156149 0.9198021 0.5061592 0.9198021 0.5061592 0.9123575 0.6043589 0.9274895 0.5960028 0.9274895 0.5960028 0.9209106 0.5891454 0.9796947 0.5807893 0.9796947 0.5807893 0.9731158 0.5701326 0.9788048 0.5617766 0.9788048 0.5617766 0.9722259 0.6079464 0.9412083 0.5995903 0.9412083 0.5995903 0.9346294 0.5459013 0.9772611 0.4809229 0.9772611 0.4809229 0.9261025 0.5563337 0.9144109 0.6074922 0.9144109 0.6074922 0.9793892 0.5442346 0.9776883 0.5442346 0.978946 0.5426371 0.978946 0.5156149 0.9322292 0.5156149 0.9396737 0.5061593 0.9396737 0.6012385 0.9728353 0.5928824 0.9728353 0.5928824 0.9662564 0.2590004 0.8706523 0.2586367 0.8706614 0.2586398 0.7407479 0.2631813 0.870624 0.2630732 0.7406687 0.2635124 0.7406704 0.2593946 0.8706465 0.2590004 0.8706523 0.2590302 0.740738 0.2635907 0.8706256 0.2635124 0.7406704 0.2639347 0.7406755 0.2598043 0.8706446 0.2593946 0.8706465 0.2594531 0.7407319 0.2639844 0.8706303 0.2639347 0.7406755 0.264324 0.7406837 0.2602134 0.8706465 0.2598043 0.8706446 0.2598925 0.7407298 0.2643471 0.870638 0.264324 0.7406837 0.2646651 0.7406948 0.2602134 0.8706465 0.2603315 0.7406592 0.2607532 0.7407269 0.2710107 0.7406592 0.2710106 0.8706836 0.2707041 0.8706881 0.2609683 0.8706614 0.2606065 0.8706522 0.2607532 0.7407269 0.270725 0.7406634 0.2707041 0.8706881 0.2703415 0.8706915 0.2659698 0.7407031 0.2663801 0.7407056 0.2662732 0.8704683 0.261285 0.8706738 0.2609683 0.8706614 0.2611414 0.7407368 0.2703869 0.7406666 0.2703415 0.8706915 0.2699368 0.8706938 0.2659698 0.7407031 0.265833 0.8704656 0.2654076 0.8704567 0.2675366 0.7406786 0.267848 0.7406592 0.267848 0.8704186 0.2700097 0.7406687 0.2699368 0.8706938 0.2695055 0.8706947 0.2655733 0.7406948 0.2654076 0.8704567 0.2650133 0.8704419 0.2671788 0.7406932 0.2675366 0.7406786 0.267514 0.8704394 0.2696077 0.7406696 0.2695055 0.8706947 0.2690642 0.8706943 0.2652058 0.740681 0.2650133 0.8704419 0.2646651 0.8704218 0.2667883 0.7407023 0.2671788 0.7406932 0.2671301 0.8704549 0.2687915 0.7406677 0.2691963 0.7406693 0.2690642 0.8706943 0.2616975 0.8706482 0.2614812 0.7406835 0.2618224 0.7406725 0.2663801 0.7407056 0.2667883 0.7407023 0.2667111 0.8704647 0.2684088 0.740665 0.2687915 0.7406677 0.2686299 0.8706926 0.2620155 0.8706378 0.2618224 0.7406725 0.2622116 0.7406643 0.2680628 0.7406612 0.2684088 0.740665 0.2682192 0.8706897 0.2623783 0.8706302 0.2622116 0.7406643 0.2626339 0.7406592 0.2586367 0.8706614 0.2583173 0.8706738 0.2582973 0.7407612 0.262772 0.8706255 0.2626339 0.7406592 0.2630732 0.7406687 0.9175053 0.6257243 0.9175053 0.4890593 0.9176406 0.4890893 0.9186189 0.4887531 0.9187546 0.4887722 0.9187546 0.6162914 0.9142014 0.6216791 0.914049 0.6216935 0.914049 0.4887328 0.9176406 0.6257543 0.9176406 0.4890893 0.9177632 0.4891047 0.9184717 0.4887346 0.9186189 0.4887531 0.9186189 0.6162725 0.9143462 0.6216635 0.9142014 0.6216791 0.9142014 0.4887183 0.9134808 0.6217293 0.9134808 0.4887685 0.9136053 0.4887636 0.9184717 0.4887346 0.9184717 0.6162539 0.9183185 0.6162363 0.9144779 0.6216472 0.9143462 0.6216635 0.9143462 0.4887027 0.9136053 0.6217244 0.9136053 0.4887636 0.9137451 0.4887559 0.9183185 0.488717 0.9183185 0.6162363 0.9181654 0.6162207 0.9145914 0.621631 0.9144779 0.6216472 0.9144779 0.4886865 0.9137452 0.6217166 0.9137451 0.4887559 0.913895 0.4887455 0.9181654 0.4887013 0.9181654 0.6162207 0.9180181 0.6162073 0.9166232 0.4887416 0.9167246 0.4886702 0.9167246 0.6268434 0.914049 0.6216935 0.913895 0.6217062 0.913895 0.4887455 0.9180181 0.4886879 0.9180181 0.6162073 0.9178823 0.6161968 0.9165036 0.4888131 0.9166232 0.4887416 0.9166232 0.6269147 0.9178823 0.4886775 0.9178823 0.6161968 0.9177632 0.6161895 0.9163702 0.4888818 0.9165036 0.4888131 0.9165036 0.6269862 0.9167246 0.6253352 0.9167246 0.4886702 0.9168246 0.4887479 0.9162284 0.4889453 0.9163702 0.4888818 0.9163702 0.627055 0.9168246 0.625413 0.9168246 0.4887479 0.9169432 0.4888242 0.9160833 0.4890009 0.9162284 0.4889453 0.9162284 0.6271184 0.9169433 0.6254892 0.9169432 0.4888242 0.9170758 0.4888961 0.9159409 0.4890467 0.9160833 0.4890009 0.9160833 0.6271741 0.9170758 0.6255611 0.9170758 0.4888961 0.9172173 0.4889608 0.9158064 0.4890808 0.9159409 0.4890467 0.9159409 0.6272199 0.9172173 0.6256258 0.9172173 0.4889608 0.9173623 0.4890159 0.9156851 0.489102 0.9158064 0.4890808 0.9158064 0.627254 0.9173624 0.6256809 0.9173623 0.4890159 0.9175053 0.4890593 0.9187546 0.4887722 0.9188734 0.4887908 0.9188734 0.61631 0.5476138 0.9636787 0.5476137 0.807554 0.5477419 0.8076063 0.9191029 0.4889771 0.9192348 0.4888925 0.9192348 0.6438156 0.5477419 0.963731 0.5477419 0.8076063 0.5478768 0.8076714 0.9189809 0.4890675 0.9191029 0.4889771 0.9191029 0.6439003 0.5478768 0.9637961 0.5478768 0.8076714 0.5480133 0.807747 0.9188735 0.4891601 0.9189809 0.4890675 0.9189808 0.6439906 0.5480134 0.9638717 0.5480133 0.807747 0.5481462 0.80783 0.915581 0.4886795 0.915685 0.4886702 0.915685 0.6227177 0.5481463 0.9639548 0.5481462 0.80783 0.5482704 0.8079174 0.9154571 0.4886934 0.915581 0.4886795 0.9155809 0.622727 0.5482704 0.9640421 0.5482704 0.8079174 0.548381 0.8080058 0.915318 0.4887113 0.9154571 0.4886934 0.9154571 0.6227409 0.9129268 0.4887247 0.9129269 0.6307944 0.9127739 0.6307765 0.548381 0.9641305 0.548381 0.8080058 0.5484739 0.8080916 0.9151692 0.4887326 0.915318 0.4887113 0.915318 0.6227589 0.9126268 0.4886915 0.9127739 0.4887069 0.9127739 0.6307765 0.9134808 0.4888061 0.9134808 0.6308757 0.9133622 0.6308555 0.9150163 0.4887565 0.9151692 0.4887326 0.9151692 0.6227802 0.9124911 0.4886791 0.9126268 0.4886915 0.9126268 0.630761 0.9133622 0.4887859 0.9133622 0.6308555 0.9132267 0.6308345 0.9148652 0.4887821 0.9150163 0.4887565 0.9150163 0.622804 0.9123721 0.4886702 0.9124911 0.4886791 0.9124911 0.6307486 0.9132267 0.488765 0.9132267 0.6308345 0.9130797 0.630814 0.9148652 0.4887821 0.9148652 0.6228295 0.9147217 0.6228556 0.9196382 0.4887035 0.919758 0.4886702 0.919758 0.6435934 0.9130797 0.4887443 0.9130797 0.630814 0.9129269 0.6307944 0.9147217 0.4888082 0.9147217 0.6228556 0.9145914 0.6228814 0.9195077 0.488753 0.9196382 0.4887035 0.9196381 0.6436267 0.5473972 0.9636204 0.5473971 0.8074957 0.5474974 0.8075167 0.9193714 0.4888168 0.9195077 0.488753 0.9195076 0.6436762 0.5474974 0.9636414 0.5474974 0.8075167 0.5476137 0.807554 0.9192348 0.4888925 0.9193714 0.4888168 0.9193714 0.6437399 0.5721527 0.9525375 0.5823391 0.9532592 0.5823391 0.9578597 0.4859229 0.9789646 0.4859232 0.9431902 0.5647062 0.9377559 0.5912688 0.9444382 0.5866683 0.9444382 0.5858716 0.9346294 0.457507 0.9310572 0.5371018 0.9369257 0.5371016 0.9727001 0.5825288 0.9646848 0.5825288 0.9600843 0.5926019 0.959397 0.5045606 0.9355291 0.4993547 0.9355291 0.4983973 0.9244672 0.5559263 0.956293 0.556723 0.9460152 0.5613235 0.9460152 0.5069548 0.9520782 0.5017489 0.9520782 0.5007293 0.941042 0.5484264 0.9782401 0.5475469 0.9782401 0.5473635 0.9763778 0.4774433 0.964746 0.4784629 0.9530528 0.4836688 0.9530528 0.5993098 0.9101903 0.5983504 0.9199316 0.5937499 0.9199316 0.577758 0.9831431 0.5793449 0.9660324 0.5869541 0.9660324 0.5081737 0.95316 0.507154 0.9641963 0.5019482 0.9641963 0.5999847 0.9831432 0.5891034 0.9831432 0.5907886 0.9660324 0.5058417 0.9123575 0.5048844 0.9234195 0.4996784 0.9234195 0.4848878 0.9527353 0.4774433 0.9527353 0.4786623 0.941042 0.5924505 0.9101903 0.5916537 0.919999 0.5870532 0.919999 0.5787315 0.9310925 0.5721527 0.9310925 0.5732849 0.9207817 0.5059238 0.9662199 0.5059238 0.9736643 0.4945925 0.9722034 0.5858716 0.9277701 0.5957223 0.9285247 0.5957223 0.9331252 0.4903178 0.9359384 0.4828733 0.9359384 0.4842103 0.9243083 0.6032537 0.9360708 0.6032539 0.9872294 0.5258404 0.9772798 0.5446673 0.9763769 0.5465599 0.9765149 0.5465599 0.9773944 0.6171845 0.9377493 0.6171845 0.9889076 0.5375896 0.9793919 0.5445298 0.9763768 0.5445298 0.9776346 0.5426371 0.9773944 0.465923 0.9310959 0.5433363 0.9365304 0.5433364 0.9723047 0.5513373 0.9744628 0.5513373 0.9757205 0.54939 0.9754802 0.5957223 0.9209106 0.5957223 0.9274895 0.5858716 0.9262658 0.5826196 0.9525375 0.5926331 0.9532248 0.5926331 0.9578253 0.54939 0.9757741 0.5513157 0.9759055 0.5513157 0.976785 0.4591737 0.9377307 0.5379568 0.9431651 0.5379567 0.9789397 0.5721527 0.9205011 0.572999 0.9101903 0.5775995 0.9101903 0.3641014 0.9388478 0.3783846 0.9392551 0.3783847 0.9397063 0.3952795 0.9782117 0.391274 0.9782118 0.3944672 0.960618 0.4158538 0.9316737 0.4158538 0.9350549 0.3999539 0.9328547 0.330567 0.9552873 0.3477454 0.955648 0.3477454 0.9561825 0.4284902 0.9356052 0.425109 0.9356052 0.4277688 0.9209917 0.330567 0.9510357 0.3480222 0.9513271 0.3480222 0.9518616 0.3994889 0.9554247 0.3954834 0.9554247 0.3985376 0.9383817 0.3952373 0.9383817 0.3949596 0.9561221 0.3944251 0.9561221 0.3529465 0.9861254 0.348941 0.9861253 0.3518479 0.9693269 0.4321178 0.9093218 0.4312652 0.9573267 0.4298412 0.9573268 0.3995311 0.9772053 0.3955256 0.9772053 0.3982399 0.960618 0.3910279 0.960618 0.3906111 0.9789092 0.3900766 0.9789092 0.4320792 0.9348508 0.428698 0.9348508 0.4307951 0.9209917 0.3909858 0.9383817 0.3904216 0.9569175 0.3898871 0.9569175 0.4320792 0.9488149 0.428698 0.9488149 0.4305766 0.9350585 0.4213123 0.9209919 0.4206728 0.9368172 0.4202216 0.9368172 0.4037404 0.9546086 0.399735 0.9546086 0.4016827 0.9383817 0.3867763 0.960618 0.3857896 0.9795348 0.3852551 0.9795348 0.3824083 0.9424402 0.3960948 0.943843 0.3960948 0.9442943 0.3867342 0.9383817 0.3854889 0.9574201 0.3849542 0.9574201 0.3641014 0.9424367 0.3778236 0.9436008 0.3778236 0.944052 0.3798393 0.9352589 0.3798393 0.93864 0.3641014 0.9362611 0.3825248 0.960618 0.3810019 0.9797254 0.3804672 0.9797254 0.3319606 0.9496228 0.4448992 0.9572874 0.4448992 0.9609792 0.3979523 0.9352622 0.3979523 0.9386435 0.3824083 0.9361209 0.417144 0.917217 0.417144 0.9205982 0.4010028 0.9190712 0.3999539 0.9388516 0.4138816 0.9395814 0.4138816 0.9400326 0.41528 0.9352627 0.41528 0.9386438 0.3999539 0.9360182 0.380207 0.9316698 0.380207 0.9350511 0.3641014 0.9332852 0.3824083 0.9388511 0.396498 0.9394021 0.3964979 0.9398533 0.3484457 0.9467841 0.3484457 0.9507896 0.330567 0.9476101 0.3984324 0.9316733 0.3984324 0.9350544 0.3824083 0.9330613 0.5721527 0.9416748 0.573059 0.931373 0.5776252 0.931373 0.4827252 0.9736644 0.4827252 0.9662199 0.494275 0.9675045 0.54939 0.9744091 0.5495606 0.9724437 0.5504334 0.9724437 0.5466224 0.9737542 0.5466224 0.9750119 0.5446663 0.9747949 0.4852052 0.9526488 0.4862037 0.941042 0.4913707 0.941042 0.4852052 0.9530528 0.4926497 0.9530528 0.4913707 0.9646595 0.5445933 0.9750119 0.5426371 0.9748442 0.5426371 0.9739712 0.4828733 0.9123575 0.4903178 0.9123575 0.4890496 0.9239909 0.5473635 0.9737551 0.5493147 0.9739228 0.5493147 0.9747958 0.5721527 0.9419553 0.5787317 0.9419553 0.5776252 0.952257 0.5652933 0.9582266 0.5661757 0.9480446 0.5707419 0.9480446 0.5473635 0.9737014 0.5473635 0.9724437 0.5493363 0.9726518 0.5790122 0.9203488 0.5799042 0.9101903 0.5844704 0.9101903 0.4707143 0.9736644 0.4707143 0.9662199 0.4824078 0.9674278 0.5004118 0.9641963 0.4929672 0.9641963 0.4941203 0.9527779 0.4906352 0.9238288 0.4916607 0.9123575 0.4968277 0.9123575 0.5559263 0.9457347 0.5559263 0.9391558 0.5662698 0.9401998 0.5822483 0.959397 0.5822483 0.9659758 0.5721527 0.9649319 0.5445718 0.9763233 0.5426371 0.9761466 0.5426371 0.9752736 0.577294 0.9831485 0.5664127 0.9831485 0.5680983 0.9660324 0.5891174 0.9456781 0.5891174 0.952257 0.5790122 0.9511896 0.5492954 0.9763242 0.5473635 0.9761434 0.5473635 0.9752705 0.5659487 0.9660324 0.5643051 0.9831485 0.5567528 0.9831485 0.5465599 0.9750655 0.5465599 0.9763233 0.5446254 0.9761152 0.5718722 0.9650859 0.5617766 0.9641172 0.5617766 0.9595511 0.4173517 0.9157266 0.425011 0.916444 0.425011 0.9198252 0.4906352 0.9244672 0.4980798 0.9244672 0.4968277 0.9359385 0.5004118 0.941042 0.4992874 0.9524604 0.4941204 0.9524604 0.5426371 0.9724428 0.5446127 0.9726235 0.5446127 0.9734965 0.5790122 0.9315164 0.585591 0.9315164 0.5844704 0.9416748 0.5446663 0.9724428 0.5466392 0.9726195 0.5466392 0.9734925 0.579012 0.9209106 0.585591 0.9209106 0.5844606 0.9310925 0.3585218 0.9605042 0.358136 0.9605386 0.3574571 0.9383817 0.3743062 0.9810571 0.3743061 0.960618 0.3746625 0.9606407 0.3501704 0.9690406 0.3497825 0.9690808 0.348941 0.9467841 0.3785185 0.9588151 0.3785185 0.9383817 0.3788747 0.9384068 0.3546708 0.9607385 0.3542814 0.9607852 0.3532525 0.9383817 0.3443563 0.9692882 0.3221598 0.9692882 0.3221757 0.968901 0.4005025 0.9243471 0.4005025 0.9209917 0.4176757 0.9229283 0.3279874 0.9608015 0.3275973 0.9608554 0.3263632 0.9383817 0.3441922 0.973495 0.3221598 0.973495 0.3221743 0.9731107 0.3112422 0.9890088 0.3112422 0.9653713 0.4325686 0.980265 0.3239997 0.9608246 0.3236096 0.9608861 0.3221598 0.9383817 0.3440069 0.9777038 0.3221598 0.9777038 0.3221732 0.9773228 0.3824083 0.9314655 0.3824083 0.9281107 0.3997104 0.9303887 0.34467 0.9650835 0.3221598 0.9650835 0.3221814 0.964691 0.382375 0.917228 0.3641014 0.917228 0.3641121 0.9169092 0.3641014 0.9314622 0.3641014 0.9281081 0.3815128 0.9305307 0.3530064 0.9423356 0.330567 0.9423356 0.3305863 0.9419443 0.3822005 0.9207839 0.3641014 0.9207839 0.364112 0.9204682 0.3824083 0.9279029 0.3824083 0.9245499 0.3999534 0.9270916 0.3529006 0.9465381 0.330567 0.9465381 0.3305845 0.9461485 0.3658725 0.9596162 0.3658725 0.9383817 0.3662429 0.9383946 0.3641014 0.9279003 0.3641014 0.9245485 0.3817998 0.9271798 0.3658741 0.9816555 0.3658741 0.960618 0.366241 0.9606315 0.3824083 0.9243422 0.3824083 0.9209917 0.4002736 0.9236791 0.3700866 0.9592388 0.3700866 0.9383817 0.3704504 0.9383963 0.3641014 0.9243407 0.3641014 0.9209917 0.3821408 0.9237002 0.3830463 0.9207026 0.3830463 0.9032277 0.383351 0.9032414 0.3532525 0.9610313 0.3572182 0.9610313 0.3540275 0.9826079 0.3700895 0.9811939 0.3700895 0.960618 0.3704484 0.9606361 0.3616641 0.960618 0.365628 0.960618 0.3624973 0.9823939 0.3743031 0.958869 0.3743031 0.9383817 0.3746603 0.9384021 0.3616641 0.9383817 0.3656264 0.9383817 0.362595 0.9603421 0.2809705 0.8766004 0.2807812 0.8619459 0.283049 0.8619428 0.9302765 0.619465 0.9306748 0.6071463 0.9329412 0.6071568 0.2807812 0.8619459 0.2806596 0.848753 0.2829275 0.8487498 0.92994 0.7272309 0.929722 0.6833375 0.9319884 0.683348 0.2806077 0.8124834 0.2806418 0.7897176 0.2829096 0.7897146 0.2646651 0.9030587 0.2647062 0.8864214 0.2669717 0.8864613 0.2807155 0.7713971 0.2808234 0.7555167 0.2830912 0.7555136 0.8976266 0.7354083 0.8998945 0.7354129 0.8998945 0.7975535 0.929722 0.6833375 0.9297091 0.6568872 0.9319756 0.6568979 0.2806418 0.7897176 0.2807155 0.7713971 0.2829833 0.771394 0.7972665 0.6908412 0.799533 0.690829 0.799533 0.8194481 0.9297091 0.6568872 0.9299529 0.6364938 0.9322193 0.6365044 0.2647062 0.8864214 0.2648211 0.8704683 0.2670865 0.8705082 0.8525084 0.7992648 0.8502464 0.7993287 0.8498945 0.7693973 0.2806596 0.848753 0.2806233 0.8334468 0.2828911 0.8334437 0.9303262 0.775835 0.92994 0.7272309 0.9322064 0.7272414 0.9299529 0.6364938 0.9302765 0.619465 0.932543 0.6194756 0.8498945 0.7693973 0.8502464 0.7488055 0.8525083 0.7487416 0.9306748 0.7931545 0.9303262 0.775835 0.9325926 0.7758455 0.2648211 0.9197227 0.2646651 0.9030587 0.2669306 0.9030985 0.2806233 0.8334468 0.2806077 0.8124834 0.2828755 0.8124803 0.2808234 0.7555167 0.2809705 0.7406623 0.2832384 0.7406592 0.6361745 0.9607675 0.6769269 0.9581634 0.675549 0.9825493 0.9614877 0.9742437 0.9585506 0.9742434 0.9584529 0.9426952 0.9644337 0.8697639 0.9614966 0.8697632 0.9614877 0.828777 0.96139 0.9426955 0.9584529 0.9426952 0.9583803 0.9064334 0.9644248 0.8287776 0.9614877 0.828777 0.9614965 0.7870797 0.9613174 0.9064337 0.9583803 0.9064334 0.9583356 0.8668513 0.9644336 0.7870804 0.9614965 0.7870797 0.9615231 0.7462738 0.9612727 0.8668516 0.9583356 0.8668513 0.9583206 0.8254702 0.9644601 0.7462745 0.9615231 0.7462738 0.961566 0.7079274 0.9612576 0.8254705 0.9583206 0.8254702 0.9583356 0.7838802 0.9645031 0.707928 0.961566 0.7079274 0.9616239 0.673514 0.9612727 0.7838805 0.9583356 0.7838802 0.9583804 0.7436797 0.9583206 0.9740431 0.9553834 0.9740424 0.9552606 0.9430195 0.9613174 0.7436801 0.9583804 0.7436797 0.9584529 0.7064136 0.9581978 0.9430201 0.9552606 0.9430195 0.9551694 0.9071564 0.9645609 0.8261353 0.967498 0.8261352 0.9674981 0.8674542 0.96139 0.706414 0.9584529 0.7064136 0.9585506 0.673514 0.9581065 0.9071571 0.9551694 0.9071564 0.9551132 0.8678315 0.9645611 0.8674541 0.9674981 0.8674542 0.9674986 0.9068819 0.9645632 0.6735141 0.9675002 0.673514 0.9674993 0.7067077 0.9580503 0.8678321 0.9551132 0.8678315 0.9550943 0.8265559 0.9645615 0.9068819 0.9674986 0.9068819 0.9674993 0.9429033 0.9645622 0.7067077 0.9674993 0.7067077 0.9674986 0.7441876 0.9580313 0.8265566 0.9550943 0.8265559 0.9551132 0.7849159 0.9645622 0.9429033 0.9674993 0.9429033 0.9675002 0.9741343 0.9645615 0.7441876 0.9674986 0.7441876 0.9674982 0.7845135 0.9580503 0.7849165 0.9551132 0.7849159 0.9551694 0.7445116 0.9645609 0.9732019 0.9616239 0.9732012 0.961566 0.94339 0.9645611 0.7845135 0.9674982 0.7845135 0.967498 0.8261352 0.9581065 0.7445123 0.9551694 0.7445116 0.9552607 0.7068958 0.9645031 0.9433907 0.961566 0.94339 0.9615231 0.9084633 0.9581977 0.7068965 0.9552607 0.7068958 0.9553834 0.673514 0.9644601 0.908464 0.9615231 0.9084633 0.9614966 0.8697632 0.8592342 0.1032225 0.8614882 0.1274231 0.8594591 0.1272338 0.2214092 0.7750749 0.2235592 0.7750383 0.2127435 0.7965986 0.8592342 0.1032225 0.8572051 0.1030331 0.8594591 0.07884043 0.2105935 0.7966352 0.2127435 0.7965986 0.2060833 0.8200021 0.8614882 0.07902985 0.8594591 0.07884043 0.8661344 0.0555855 0.2039333 0.8200387 0.2060833 0.8200021 0.2038344 0.8443496 0.8681634 0.05577498 0.8661344 0.0555855 0.8769744 0.03416192 0.2039333 0.8687421 0.2016844 0.8443862 0.2038344 0.8443496 0.8790035 0.03435134 0.8769744 0.03416192 0.8915627 0.01539295 0.2105935 0.8921701 0.2039333 0.8687421 0.2060833 0.8687054 0.8935917 0.01558244 0.8915627 0.01539295 0.9093384 0 0.2214092 0.9137701 0.2105935 0.8921701 0.2127435 0.8921335 0.5471988 0.9460967 0.5456857 0.9482772 0.5456321 0.9272262 0.2769255 0.9067323 0.2769254 0.8824788 0.2784385 0.8846603 0.2359646 0.9327121 0.2214092 0.9137701 0.2235592 0.9137336 0.5471452 0.9250457 0.5456321 0.9272262 0.5455992 0.904143 0.2769258 0.9298759 0.2769255 0.9067323 0.2784386 0.9089139 0.2537005 0.9482679 0.2359646 0.9327121 0.2381147 0.9326754 0.5471122 0.9019625 0.5455992 0.904143 0.545588 0.8799149 0.2769261 0.9510199 0.2769258 0.9298759 0.2784389 0.9320574 0.2769257 0.8343767 0.2769261 0.8123766 0.2784392 0.814558 0.547101 0.8777344 0.545588 0.8799149 0.5455992 0.8554728 0.8935917 0.1909843 0.9113675 0.2064402 0.9093384 0.2062507 0.2769255 0.8580474 0.2769257 0.8343767 0.2784389 0.8365582 0.5471122 0.8532923 0.5455992 0.8554728 0.5456321 0.8317561 0.8790035 0.1721637 0.8935917 0.1909843 0.8915627 0.1907948 0.2769254 0.8824788 0.2769255 0.8580474 0.2784386 0.8602289 0.5471451 0.8295756 0.5456321 0.8317561 0.5456857 0.8096762 0.8681634 0.1507017 0.8790035 0.1721637 0.8769744 0.1719743 0.2537004 0.7406959 0.2558504 0.7406592 0.2381146 0.75615 0.8614882 0.1274231 0.8681634 0.1507017 0.8661344 0.1505123 0.2359646 0.7561865 0.2381146 0.75615 0.2235592 0.7750383 0.8087788 0.07347148 0.8114132 0.07304793 0.8059837 0.1021603 0.8059085 0.3363816 0.8033493 0.3362755 0.8087913 0.3073294 0.8033493 0.1025838 0.8059837 0.1021603 0.8059836 0.1318507 0.8113505 0.3074353 0.8087913 0.3073294 0.8194664 0.2800492 0.8087788 0.1614015 0.8033493 0.1322742 0.8059836 0.1318507 0.8220255 0.2801552 0.8194664 0.2800492 0.8349641 0.2554833 0.8194292 0.1888465 0.8087788 0.1614015 0.8114132 0.1609781 0.8375232 0.2555893 0.8349641 0.2554833 0.854689 0.2345759 0.2710107 0.85513 0.2710107 0.825706 0.2730588 0.8282859 0.8348913 0.2135545 0.8194292 0.1888465 0.8220636 0.188423 0.2806077 0.9070408 0.278559 0.9096743 0.2784933 0.8816703 0.2710109 0.8832074 0.2710107 0.85513 0.2730589 0.85771 0.8545708 0.2345759 0.8348913 0.2135545 0.8375257 0.213131 0.280542 0.8790369 0.2784933 0.8816703 0.2784529 0.8522771 0.2710113 0.908859 0.2710109 0.8832074 0.2730591 0.8857873 0.2710113 0.7673495 0.2710118 0.7406592 0.2730602 0.7432392 0.2805017 0.8496437 0.2784529 0.8522771 0.2784392 0.8226245 0.2710119 0.9310991 0.2710113 0.908859 0.2730595 0.9114389 0.2710109 0.7960664 0.2710113 0.7673495 0.2730595 0.7699294 0.280488 0.819991 0.2784392 0.8226245 0.2784529 0.7938517 0.2730602 0.9065597 0.2730602 0.8853304 0.2751132 0.885752 0.2710107 0.825706 0.2710109 0.7960664 0.2730591 0.7986462 0.2805016 0.7912182 0.2784529 0.7938517 0.2784933 0.7670647 0.8375233 0.4465197 0.8572481 0.4673313 0.854689 0.4672253 0.2805421 0.7644312 0.2784933 0.7670647 0.278559 0.7432928 0.8220255 0.4220293 0.8375233 0.4465197 0.8349641 0.4464137 0.8545708 4.23524e-4 0.8572052 0 0.8375257 0.02096706 0.8113505 0.394801 0.8220255 0.4220293 0.8194664 0.4219232 0.8348913 0.02139055 0.8375257 0.02096706 0.8220636 0.04563236 0.8059084 0.3658813 0.8113505 0.394801 0.8087913 0.394695 0.8194292 0.04605579 0.8220636 0.04563236 0.8114132 0.07304793 0.8059084 0.3658813 0.8033493 0.3657753 0.8033493 0.3362755 0.5405828 0.9153235 0.5405999 0.939375 0.5393056 0.9388614 0.5442954 0.8736105 0.5442958 0.8400303 0.5455875 0.8415195 0.5441751 0.8647762 0.5428819 0.8663186 0.5429278 0.8359704 0.5405828 0.8871449 0.5405828 0.9153235 0.5392886 0.9148099 0.5442209 0.834428 0.5429278 0.8359704 0.5430021 0.8090381 0.5405999 0.8559219 0.5405828 0.8871449 0.5392885 0.8866313 0.2595998 0.9253826 0.2583122 0.9259856 0.2582973 0.9005327 0.9687434 0.4233147 0.9862895 0.4510376 0.9846959 0.4510394 0.2595848 0.8999297 0.2582973 0.9005327 0.2583122 0.8712768 0.9566575 0.3924747 0.9687434 0.4233147 0.9671499 0.4233166 0.5326568 0.740493 0.5342934 0.7404797 0.5142937 0.7664907 0.9504962 0.3597028 0.9566575 0.3924747 0.9550639 0.3924766 0.5126571 0.7665041 0.5142937 0.7664907 0.4994326 0.7961646 0.9504962 0.3597028 0.9489026 0.3597047 0.9489026 0.3262602 0.4977959 0.796178 0.4994326 0.7961646 0.4902811 0.8283611 0.9504961 0.3262583 0.9489026 0.3262602 0.9550639 0.2934284 0.4886445 0.8283745 0.4902811 0.8283611 0.487191 0.8618428 0.9566575 0.2934266 0.9550639 0.2934284 0.9671499 0.2624711 0.4886445 0.8953365 0.4855544 0.8618562 0.487191 0.8618428 0.9687435 0.2624691 0.9671499 0.2624711 0.9846959 0.2345777 0.5442954 0.9069462 0.5442954 0.8736105 0.5455871 0.8750996 0.4977959 0.9275286 0.4886445 0.8953365 0.4902811 0.8953231 0.5442954 0.9959967 0.5430021 0.9975392 0.5429277 0.9658122 0.5442954 0.9387563 0.5442954 0.9069462 0.5455869 0.9084354 0.5126571 0.9571956 0.4977959 0.9275286 0.4994325 0.9275152 0.5442209 0.9642697 0.5429277 0.9658122 0.5428819 0.9325113 0.5442958 0.9678181 0.5442954 0.9387563 0.5455871 0.9402454 0.5326568 0.9831973 0.5126571 0.9571956 0.5142937 0.9571823 0.5441751 0.9309689 0.5428819 0.9325113 0.5428664 0.8989165 0.5442963 0.9930149 0.5442958 0.9678181 0.5455874 0.9693073 0.5442958 0.8400303 0.5442964 0.8074957 0.545588 0.8089849 0.5441597 0.897374 0.5428664 0.8989165 0.5428819 0.8663186 0.947751 0.2346798 0.9489026 0.2345759 0.9289909 0.2663898 0.90981 0.8159787 0.9168067 0.8532618 0.9156636 0.8532882 0.9278393 0.2664937 0.9289909 0.2663898 0.9152755 0.3017329 0.90981 0.8159787 0.9086668 0.816005 0.9086668 0.7779446 0.9141238 0.3018369 0.9152755 0.3017329 0.9082834 0.3392471 0.9098099 0.7779182 0.9086668 0.7779446 0.9156635 0.7405698 0.9071318 0.339351 0.9082834 0.3392471 0.9082834 0.3774906 0.9168066 0.7405434 0.9156635 0.7405698 0.9293881 0.7053169 0.9489026 0.5640947 0.9489027 0.5261986 0.9498161 0.5271424 0.9141238 0.4150978 0.9071318 0.3775945 0.9082834 0.3774906 0.9305313 0.7052904 0.9293881 0.7053169 0.9493132 0.6735404 0.9489027 0.6002563 0.9489026 0.5640947 0.9498161 0.5650385 0.9278393 0.4504194 0.9141238 0.4150978 0.9152755 0.4149938 0.9123721 0.6668908 0.9114572 0.6678882 0.9113872 0.630032 0.9489032 0.6332938 0.9489027 0.6002563 0.9498162 0.6012001 0.947751 0.4822022 0.9278393 0.4504194 0.9289909 0.4503155 0.9123021 0.6290345 0.9113872 0.630032 0.9113515 0.5918413 0.9489039 0.6619375 0.9489032 0.6332938 0.9498166 0.6342376 0.9489032 0.4880248 0.9489039 0.4510394 0.9498172 0.4519832 0.9122664 0.5908439 0.9113515 0.5918413 0.9113515 0.5547841 0.9206822 0.5943491 0.9207094 0.6216908 0.9197945 0.6211307 0.9489027 0.5261986 0.9489032 0.4880248 0.9498165 0.4889685 0.9122664 0.5537866 0.9113515 0.5547841 0.9113872 0.5202842 0.920673 0.5623156 0.9206822 0.5943491 0.9197673 0.5937889 0.9123021 0.5192869 0.9113872 0.5202842 0.9114573 0.4896677 0.9206823 0.5268214 0.920673 0.5623156 0.919758 0.5617554 0.9108682 0.6585407 0.9099572 0.6591593 0.9099256 0.6302244 0.9207094 0.4892304 0.9206823 0.5268214 0.9197673 0.5262612 0.9108365 0.6296058 0.9099256 0.6302244 0.9099255 0.5969663 0.9305312 0.8883352 0.9504563 0.9198508 0.9493131 0.9198772 0.9108365 0.5963478 0.9099255 0.5969663 0.9099572 0.5606632 0.9168067 0.8532618 0.9305312 0.8883352 0.9293881 0.8883616 0.8805591 0.571722 0.7924652 0.5910286 0.7722382 0.5678026 0.7820193 0.5744196 0.7722382 0.5678026 0.7924652 0.5910286 0.17309 0.4619555 0.1731097 0.4804183 0.1355179 0.4797325 0.8944323 0.6066849 0.8097944 0.6249715 0.8029331 0.6049637 0.8029331 0.6049637 0.7924652 0.5910286 0.8805591 0.571722 0.1355179 0.4797325 0.1731097 0.4804183 0.1731829 0.5028699 0.1731829 0.5028699 0.2291154 0.5171447 0.1351676 0.515966 0.7483311 0.9897073 0.7284401 0.9897073 0.737068 0.9784786 0.7112524 0.9864936 0.6927051 0.9783085 0.7013329 0.9670798 0.7284401 0.9897073 0.7112524 0.9864936 0.7198802 0.9752649 0.7483311 0.9897073 0.756959 0.9784786 0.7688308 0.9749153 0.486325 0.951332 0.5424318 0.9732373 0.5354048 0.9875002 0.4909818 0.9446336 0.5457772 0.9655593 0.5424318 0.9732373 0.5602677 0.9147769 0.5785645 0.9360944 0.5555992 0.9509568 0.5111388 0.9235911 0.5555992 0.9509568 0.5494288 0.9543667 0.5020272 0.9308372 0.5494288 0.9543667 0.5457772 0.9655593 0.6712204 0.9235783 0.674037 0.946887 0.6347839 0.946887 7.82205e-4 0.9828956 1.48153e-4 0.966235 0.6259124 0.966235 0.6172661 0.9831919 0.6179088 0.999852 7.9101e-4 0.999852 0.6585263 0.001208007 0.6585263 0.3754956 0.6418873 0.3744357 0.6249392 0.4634081 0.6249395 1.48153e-4 0.641591 0.001004457 0.5424318 0.9732373 0.5424318 0.9732373 0.5354048 0.9875002 0.5457772 0.9655593 0.5457772 0.9655593 0.5424318 0.9732373 0.5494288 0.9543667 0.5494288 0.9543667 0.5457772 0.9655593 0.5494288 0.9543667 0.5494288 0.9543667 0.5457772 0.9655593 0.5457772 0.9655593 0.5457772 0.9655593 0.5424318 0.9732373 0.5424318 0.9732373 0.5424318 0.9732373 0.5354048 0.9875002 0.5457772 0.9655593 0.5494288 0.9543667 0.5494288 0.9543667 0.5424318 0.9732373 0.5457772 0.9655593 0.5457772 0.9655593 0.5354048 0.9875002 0.5424318 0.9732373 0.5424318 0.9732373 0.6531364 0.5635884 0.8686568 0.5336232 0.8626548 0.5069259 0.6535561 0.3880699 0.5546024 0.3928153 0.556344 0.4239198 0.5546024 0.3928153 0.6535561 0.3880699 0.6529921 0.3461704 0.5479813 0.6385751 0.639718 0.6470116 0.6483201 0.6108653 0.6530017 0.5805271 0.5541248 0.5729305 0.5517166 0.6035249 0.6535561 0.3880699 0.8636608 0.398573 0.8743396 0.3574385 0.6546559 0.5282083 0.5564474 0.522998 0.5552145 0.5548504 0.6531364 0.5635884 0.5552145 0.5548504 0.5541248 0.5729305 0.5512403 0.3503141 0.1683168 0.4110411 0.1730712 0.426249 0.177792 0.4883763 0.1790028 0.5138934 0.5564474 0.522998 0.6541674 0.4229533 0.556344 0.4239198 0.5568822 0.451668 0.148948 0.9471256 0.3361462 0.9483042 0.2503393 0.9441768 0.6541674 0.4229533 0.8596535 0.4252876 0.8636608 0.398573 0.6547825 0.4511064 0.5568822 0.451668 0.5567003 0.4877705 0.1754053 0.5711627 0.173199 0.5839684 0.5479813 0.6385751 0.5568822 0.451668 0.1745944 0.4626297 0.177792 0.4883763 0.6561391 0.4902923 0.5567003 0.4877705 0.5564474 0.522998 0.6483201 0.6108653 0.639718 0.6470116 0.6577621 0.6243964 0.6577621 0.6243964 0.6649716 0.614026 0.6483201 0.6108653 0.9912025 0.4933273 0.9707986 0.4926913 0.97444 0.4972798 0.9914468 0.4885908 0.9678095 0.4849984 0.9707986 0.4926913 0.9908143 0.4981514 0.97444 0.4972798 0.9795455 0.5010895 0.6530017 0.5805271 0.6483201 0.6108653 0.6649716 0.614026 0.6820717 0.5926666 0.696178 0.5814486 0.6530017 0.5805271 0.6547825 0.4511064 0.8581563 0.4523132 0.8596535 0.4252876 0.6531364 0.5635884 0.6530017 0.5805271 0.696178 0.5814486 0.696178 0.5814486 0.7722382 0.5678026 0.6531364 0.5635884 0.873887 0.551836 0.8686568 0.5336232 0.7722382 0.5678026 0.6560637 0.4881866 0.8585725 0.4762175 0.8581563 0.4523132 0.6546559 0.5282083 0.8626548 0.5069259 0.8585725 0.4762175 0.1730712 0.426249 0.1683168 0.4110411 0.1680174 0.4112057 0.1680174 0.4112057 0.01403492 0.4784209 0.01662915 0.4804876 0.1790028 0.5138934 0.01300972 0.5162876 0.01397126 0.5278831 0.01662915 0.4804876 0.01260221 0.4949758 0.1745944 0.4626297 0.177792 0.4883763 0.01229774 0.5065664 0.01300972 0.5162876 0.177432 0.553937 0.01630258 0.5397558 0.01930904 0.5465725 0.1790028 0.5138934 0.1789126 0.5372074 0.5552145 0.5548504 0.177432 0.553937 0.1754053 0.5711627 0.5517166 0.6035249 0.5546024 0.3928153 0.1730712 0.426249 0.1699688 0.4393597 0.556344 0.4239198 0.1699688 0.4393597 0.1745944 0.4626297 0.1789126 0.5372074 0.177432 0.553937 0.5541248 0.5729305 0.01630258 0.5397558 0.01399111 0.5393839 0.01724529 0.5487961 0.01300972 0.5162876 0.01084822 0.5151596 0.0120638 0.527875 0.01397126 0.5278831 0.0120638 0.527875 0.01399111 0.5393839 0.01662915 0.4804876 0.01403492 0.4784209 0.01026308 0.4927836 0.01260221 0.4949758 0.01026308 0.4927836 0.0102632 0.50568 0.01229774 0.5065664 0.0102632 0.50568 0.01084822 0.5151596 0.4300317 0.9517207 0.4300187 0.9550521 0.6206431 0.9550523 0.01930904 0.5465725 0.01724529 0.5487961 0.173199 0.5839684 0.01260221 0.4949758 0.01229774 0.5065664 0.177792 0.4883763 0.1789126 0.5372074 0.01397126 0.5278831 0.01630258 0.5397558 0.5760958 0.5632359 0.5821651 0.5359948 0.5152055 0.5296933 0.2369227 0.3087689 0.546833 0.3275742 0.5479997 0.3173283 0.2303735 0.7402053 0.5145981 0.7277278 0.5098255 0.6939517 0.5356044 0.4027788 0.542326 0.360331 0.2354209 0.3407912 0.2285937 0.6487354 0.5041279 0.6455245 0.5036193 0.6394343 0.5446727 0.9335208 0.5441406 0.9283163 0.24009 0.9457212 0.5396856 0.8921468 0.5330715 0.8468595 0.2354717 0.8651248 0.5152055 0.5296933 0.5203692 0.4970974 0.2299307 0.4815641 0.5063592 0.6663102 0.5041279 0.6455245 0.2285937 0.6487354 0.2293981 0.7030594 0.5098255 0.6939517 0.5063592 0.6663102 0.2354209 0.3407912 0.542326 0.360331 0.546833 0.3275742 0.2285236 0.6280187 0.502817 0.6268721 0.5028672 0.6229928 0.5330715 0.8468595 0.5266514 0.805521 0.233464 0.8228092 0.5203692 0.4970974 0.5245687 0.4703484 0.2308319 0.4531627 0.5037891 0.6114428 0.5053121 0.5969718 0.2284328 0.5940981 0.5201215 0.7642341 0.5145981 0.7277278 0.2303735 0.7402053 0.5296682 0.4390284 0.5356044 0.4027788 0.2335628 0.3833078 0.5053121 0.5969718 0.5109899 0.5585479 0.2285827 0.5492796 0.5441406 0.9283163 0.5396856 0.8921468 0.2379413 0.9103828 0.5109899 0.5585479 0.5152055 0.5296933 0.2291154 0.5171447 0.5028672 0.6229928 0.5037891 0.6114428 0.2284345 0.6104223 0.5036193 0.6394343 0.5030781 0.6322181 0.2285245 0.6339659 0.5266514 0.805521 0.5201215 0.7642341 0.2316977 0.7794356 0.5245687 0.4703484 0.5296682 0.4390284 0.2320424 0.4204401 0.5030781 0.6322181 0.502817 0.6268721 0.2285236 0.6280187 0.5705382 0.6638805 0.6349242 0.6605187 0.629958 0.6430914 0.5646025 0.6240611 0.5661835 0.6132879 0.5037891 0.6114428 0.5036193 0.6394343 0.5660887 0.6389567 0.5650305 0.6323222 0.5266514 0.805521 0.5993129 0.7958352 0.5901259 0.756286 0.5955088 0.4795127 0.6027898 0.4494376 0.5296682 0.4390284 0.5030781 0.6322181 0.5650305 0.6323222 0.564502 0.6273804 0.6281796 0.3396387 0.6303423 0.32922 0.5479997 0.3173283 0.5145981 0.7277278 0.5823335 0.721643 0.5755953 0.6897885 0.6112405 0.4142656 0.6209464 0.3724616 0.542326 0.360331 0.5041279 0.6455245 0.5670697 0.6445165 0.5660887 0.6389567 0.5446727 0.9335208 0.6279997 0.9215504 0.6269769 0.9166149 0.5396856 0.8921468 0.618907 0.8803544 0.6086885 0.8358669 0.5821651 0.5359948 0.5893883 0.5049954 0.5203692 0.4970974 0.5063592 0.6663102 0.5705382 0.6638805 0.5670697 0.6445165 0.5098255 0.6939517 0.5755953 0.6897885 0.5705382 0.6638805 0.6209464 0.3724616 0.6281796 0.3396387 0.546833 0.3275742 0.564502 0.6273804 0.5646025 0.6240611 0.5028672 0.6229928 0.5330715 0.8468595 0.6086885 0.8358669 0.5993129 0.7958352 0.5893883 0.5049954 0.5955088 0.4795127 0.5245687 0.4703484 0.5661835 0.6132879 0.5687085 0.5999123 0.5053121 0.5969718 0.5201215 0.7642341 0.5901259 0.756286 0.5823335 0.721643 0.6027898 0.4494376 0.6112405 0.4142656 0.5356044 0.4027788 0.5687085 0.5999123 0.5760958 0.5632359 0.5109899 0.5585479 0.5441406 0.9283163 0.6269769 0.9166149 0.618907 0.8803544 0.6808626 0.6250714 0.6837071 0.6164961 0.6285991 0.6148702 0.5755953 0.6897885 0.6420199 0.6840136 0.6349242 0.6605187 0.7035222 0.3910645 0.7138883 0.3596765 0.6281796 0.3396387 0.6263175 0.6276257 0.6264361 0.6245889 0.5646025 0.6240611 0.6086885 0.8358669 0.6869252 0.8198322 0.6742479 0.7821628 0.6604322 0.5160483 0.6686962 0.4923179 0.5955088 0.4795127 0.6285991 0.6148702 0.6320347 0.6028356 0.5687085 0.5999123 0.5901259 0.756286 0.6618532 0.7452317 0.6512889 0.7131845 0.6785389 0.4641168 0.6900388 0.4308682 0.6112405 0.4142656 0.6320347 0.6028356 0.6423438 0.5696527 0.5760958 0.5632359 0.6269769 0.9166149 0.7122339 0.8961319 0.70094 0.8618867 0.6423438 0.5696527 0.6506163 0.544691 0.5821651 0.5359948 0.6264361 0.6245889 0.6285991 0.6148702 0.5661835 0.6132879 0.5660887 0.6389567 0.62858 0.6380859 0.6270776 0.6321141 0.5993129 0.7958352 0.6742479 0.7821628 0.6618532 0.7452317 0.6686962 0.4923179 0.6785389 0.4641168 0.6027898 0.4494376 0.5650305 0.6323222 0.6270776 0.6321141 0.6263175 0.6276257 0.7138883 0.3596765 0.7170543 0.3497207 0.6303423 0.32922 0.5823335 0.721643 0.6512889 0.7131845 0.6420199 0.6840136 0.6900388 0.4308682 0.7035222 0.3910645 0.6209464 0.3724616 0.5670697 0.6445165 0.629958 0.6430914 0.62858 0.6380859 0.6279997 0.9215504 0.7137407 0.9007724 0.7122339 0.8961319 0.618907 0.8803544 0.70094 0.8618867 0.6869252 0.8198322 0.6506163 0.544691 0.6604322 0.5160483 0.5893883 0.5049954 0.7009629 0.677293 0.7681326 0.6685156 0.7574059 0.6517485 0.62858 0.6380859 0.6837254 0.6370727 0.6817225 0.6318454 0.6742479 0.7821628 0.7404776 0.7651742 0.7254635 0.7318496 0.7337887 0.5081862 0.745752 0.4826791 0.6785389 0.4641168 0.6270776 0.6321141 0.6817225 0.6318454 0.6807066 0.6278356 0.7138883 0.3596765 0.7884187 0.3876177 0.7923817 0.3785947 0.6512889 0.7131845 0.7124912 0.7031672 0.7009629 0.677293 0.7596521 0.4524368 0.7758762 0.416172 0.7035222 0.3910645 0.629958 0.6430914 0.6855557 0.6414337 0.6837254 0.6370727 0.7137407 0.9007724 0.7874224 0.8726216 0.7855432 0.8685076 0.70094 0.8618867 0.7722319 0.837484 0.7556468 0.7993251 0.7115265 0.5549183 0.723655 0.5292608 0.6604322 0.5160483 0.6349242 0.6605187 0.6919848 0.6566432 0.6855557 0.6414337 0.6420199 0.6840136 0.7009629 0.677293 0.6919848 0.6566432 0.7758762 0.416172 0.7884187 0.3876177 0.7138883 0.3596765 0.6807066 0.6278356 0.6808626 0.6250714 0.6264361 0.6245889 0.6869252 0.8198322 0.7556468 0.7993251 0.7404776 0.7651742 0.723655 0.5292608 0.7337887 0.5081862 0.6686962 0.4923179 0.6837071 0.6164961 0.688192 0.6060244 0.6320347 0.6028356 0.6618532 0.7452317 0.7254635 0.7318496 0.7124912 0.7031672 0.745752 0.4826791 0.7596521 0.4524368 0.6900388 0.4308682 0.688192 0.6060244 0.7011952 0.5769879 0.6423438 0.5696527 0.7122339 0.8961319 0.7855432 0.8685076 0.7722319 0.837484 0.7011952 0.5769879 0.7115265 0.5549183 0.6506163 0.544691 0.7816302 0.6265625 0.7850945 0.6207603 0.7476614 0.618817 0.8530395 0.452704 0.8660867 0.4287611 0.7884187 0.3876177 0.7441639 0.6282911 0.7443473 0.6259066 0.6808626 0.6250714 0.7556468 0.7993251 0.8304924 0.7705262 0.8140372 0.7416239 0.723655 0.5292608 0.8095325 0.557992 0.8067346 0.5307473 0.7476614 0.618817 0.7528941 0.6103845 0.688192 0.6060244 0.7254635 0.7318496 0.7970507 0.7135489 0.7818868 0.689704 0.8203188 0.5090262 0.8356993 0.4833077 0.7596521 0.4524368 0.7528941 0.6103845 0.7684758 0.5872982 0.7011952 0.5769879 0.8611589 0.8284375 0.8476905 0.8025527 0.7722319 0.837484 0.7684758 0.5872982 0.7805581 0.5695555 0.7115265 0.5549183 0.7443473 0.6259066 0.7476614 0.618817 0.6837071 0.6164961 0.6837254 0.6370727 0.7476608 0.6359265 0.7453382 0.6316655 0.7404776 0.7651742 0.8140372 0.7416239 0.7970507 0.7135489 0.8067346 0.5307473 0.8203188 0.5090262 0.745752 0.4826791 0.6817225 0.6318454 0.7453382 0.6316655 0.7441639 0.6282911 0.7884187 0.3876177 0.8660867 0.4287611 0.8703426 0.4213144 0.7124912 0.7031672 0.7818868 0.689704 0.7681326 0.6685156 0.8356993 0.4833077 0.8530395 0.452704 0.7758762 0.416172 0.6855557 0.6414337 0.7497861 0.6394436 0.7476608 0.6359265 0.8632562 0.8317398 0.8611589 0.8284375 0.7855432 0.8685076 0.7722319 0.837484 0.8476905 0.8025527 0.8304924 0.7705262 0.7805581 0.5695555 0.8095325 0.557992 0.723655 0.5292608 0.6919848 0.6566432 0.7574059 0.6517485 0.7497861 0.6394436 0.8904061 0.4816924 0.9050598 0.500363 0.9161407 0.4830207 0.7476608 0.6359265 0.785081 0.6348727 0.7826532 0.6314325 0.8140372 0.7416239 0.8530581 0.7230539 0.8364853 0.6988331 0.8465479 0.5480648 0.859689 0.5296044 0.8203188 0.5090262 0.7453382 0.6316655 0.7826532 0.6314325 0.7814345 0.6286082 0.8660867 0.4287611 0.9025097 0.4616062 0.9067576 0.4555719 0.7818868 0.689704 0.8211099 0.6785511 0.8067584 0.6610275 0.8356993 0.4833077 0.8741207 0.5076777 0.8904061 0.4816924 0.7497861 0.6394436 0.7873182 0.637678 0.785081 0.6348727 0.8985914 0.7994356 0.8963755 0.796915 0.8611589 0.8284375 0.8842995 0.7752431 0.8684162 0.747914 0.8304924 0.7705262 0.8200444 0.5808126 0.8347832 0.5631853 0.8095325 0.557992 0.7574059 0.6517485 0.7954043 0.6475017 0.7873182 0.637678 0.7681326 0.6685156 0.8067584 0.6610275 0.7954043 0.6475017 0.8530395 0.452704 0.8904061 0.4816924 0.9025097 0.4616062 0.7814345 0.6286082 0.7816302 0.6265625 0.7443473 0.6259066 0.8304924 0.7705262 0.8684162 0.747914 0.8530581 0.7230539 0.8095325 0.557992 0.8347832 0.5631853 0.8465479 0.5480648 0.7850945 0.6207603 0.7906075 0.6140412 0.7528941 0.6103845 0.7970507 0.7135489 0.8364853 0.6988331 0.8211099 0.6785511 0.859689 0.5296044 0.8741207 0.5076777 0.8356993 0.4833077 0.7906075 0.6140412 0.8071536 0.5955768 0.7684758 0.5872982 0.8963755 0.796915 0.8842995 0.7752431 0.8476905 0.8025527 0.8071536 0.5955768 0.8200444 0.5808126 0.7805581 0.5695555 0.8049729 0.6343111 0.8282347 0.6336689 0.8258772 0.6313243 0.8012461 0.6288709 0.8014517 0.6270068 0.7816302 0.6265625 0.8847085 0.7336806 0.8706353 0.7116931 0.8530581 0.7230539 0.8538028 0.5722982 0.8649128 0.5587291 0.8465479 0.5480648 0.805006 0.6219556 0.8106023 0.6163823 0.7906075 0.6140412 0.8364853 0.6988331 0.8552662 0.6900395 0.8405956 0.6719166 0.859689 0.5296044 0.8771013 0.5422658 0.8903973 0.5229539 0.8106023 0.6163823 0.826936 0.6007063 0.8071536 0.5955768 0.9098811 0.7764207 0.8988994 0.757548 0.8842995 0.7752431 0.826936 0.6007063 0.8396217 0.5879644 0.8200444 0.5808126 0.8014517 0.6270068 0.805006 0.6219556 0.7850945 0.6207603 0.785081 0.6348727 0.8049729 0.6343111 0.8024937 0.631387 0.8530581 0.7230539 0.8706353 0.7116931 0.8552662 0.6900395 0.8649128 0.5587291 0.8771013 0.5422658 0.859689 0.5296044 0.7826532 0.6314325 0.8024937 0.631387 0.8012461 0.6288709 0.9025097 0.4616062 0.9161407 0.4830207 0.9203028 0.4780804 0.8211099 0.6785511 0.8405956 0.6719166 0.826591 0.656505 0.8741207 0.5076777 0.8903973 0.5229539 0.9050598 0.500363 0.7873182 0.637678 0.8072586 0.6366462 0.8049729 0.6343111 0.912118 0.7783198 0.9098811 0.7764207 0.8963755 0.796915 0.8988994 0.757548 0.8847085 0.7336806 0.8684162 0.747914 0.8396217 0.5879644 0.8538028 0.5722982 0.8347832 0.5631853 0.7954043 0.6475017 0.8153412 0.6448922 0.8072586 0.6366462 0.8067584 0.6610275 0.826591 0.656505 0.8153412 0.6448922 0.9171018 0.5232292 0.9207887 0.5420252 0.9278575 0.5312015 0.8706353 0.7116931 0.8878297 0.6981192 0.8747048 0.6799671 0.8649128 0.5587291 0.8834775 0.5711014 0.8939833 0.557415 0.8024937 0.631387 0.8258772 0.6313243 0.8247043 0.6292147 0.9161407 0.4830207 0.9260777 0.5095645 0.9297252 0.5060009 0.8405956 0.6719166 0.8617997 0.6645651 0.8489336 0.6515038 0.8903973 0.5229539 0.9051113 0.5414977 0.9171018 0.5232292 0.8072586 0.6366462 0.8304261 0.6355069 0.8282347 0.6336689 0.9219391 0.751936 0.9199493 0.7507271 0.9098811 0.7764207 0.911245 0.7357646 0.8996817 0.7163037 0.8847085 0.7336806 0.8611442 0.5959931 0.873826 0.5825887 0.8538028 0.5722982 0.8153412 0.6448922 0.838261 0.6420603 0.8304261 0.6355069 0.826591 0.656505 0.8489336 0.6515038 0.838261 0.6420603 0.9050598 0.500363 0.9171018 0.5232292 0.9260777 0.5095645 0.8247043 0.6292147 0.8249085 0.6276165 0.8014517 0.6270068 0.8996817 0.7163037 0.8878297 0.6981192 0.8706353 0.7116931 0.873826 0.5825887 0.8834775 0.5711014 0.8649128 0.5587291 0.8282955 0.6235371 0.8336538 0.6192075 0.8106023 0.6163823 0.8552662 0.6900395 0.8747048 0.6799671 0.8617997 0.6645651 0.8771013 0.5422658 0.8939833 0.557415 0.9051113 0.5414977 0.8336538 0.6192075 0.8494055 0.6067183 0.826936 0.6007063 0.9199493 0.7507271 0.911245 0.7357646 0.8988994 0.757548 0.8494055 0.6067183 0.8611442 0.5959931 0.8396217 0.5879644 0.8249085 0.6276165 0.8282955 0.6235371 0.805006 0.6219556 0.9013847 0.6747295 0.8932514 0.6640359 0.8853815 0.6724119 0.8420202 0.629665 0.8422215 0.6282473 0.8249085 0.6276165 0.9060036 0.7017676 0.896254 0.6870832 0.8878297 0.6981192 0.8852134 0.590109 0.8931748 0.5807078 0.8834775 0.5711014 0.84538 0.6247705 0.8503218 0.6212418 0.8336538 0.6192075 0.8747048 0.6799671 0.8853815 0.6724119 0.8747498 0.6596148 0.8939833 0.557415 0.9018809 0.5695976 0.9110733 0.5567442 0.8503218 0.6212418 0.8644867 0.6106236 0.8494055 0.6067183 0.9223589 0.729505 0.9154401 0.717501 0.911245 0.7357646 0.8644867 0.6106236 0.8746129 0.6013239 0.8611442 0.5959931 0.8422215 0.6282473 0.84538 0.6247705 0.8282955 0.6235371 0.8282347 0.6336689 0.8453115 0.6334908 0.8431182 0.6315206 0.896254 0.6870832 0.8853815 0.6724119 0.8747048 0.6799671 0.8834775 0.5711014 0.8931748 0.5807078 0.9018809 0.5695976 0.8258772 0.6313243 0.8431182 0.6315206 0.8420202 0.629665 0.9260777 0.5095645 0.9278575 0.5312015 0.9309486 0.5286216 0.8617997 0.6645651 0.8747498 0.6596148 0.8638183 0.6484339 0.9051113 0.5414977 0.9110733 0.5567442 0.9207887 0.5420252 0.8304261 0.6355069 0.8473338 0.6349824 0.8453115 0.6334908 0.9240576 0.7302467 0.9223589 0.729505 0.9199493 0.7507271 0.9154401 0.717501 0.9060036 0.7017676 0.8996817 0.7163037 0.8746129 0.6013239 0.8852134 0.590109 0.873826 0.5825887 0.838261 0.6420603 0.8543557 0.6403279 0.8473338 0.6349824 0.8489336 0.6515038 0.8638183 0.6484339 0.8543557 0.6403279 0.2784392 0.7411629 0.2776056 0.7406592 0.2762697 0.7422944 0.2762697 0.7422944 0.2752758 0.7492487 0.2781748 0.7489133 0.2744529 0.7585874 0.2739751 0.7668257 0.2775105 0.7588925 0.2736701 0.7741472 0.2733655 0.7805515 0.2769798 0.7781081 0.2730602 0.7886065 0.2730997 0.795928 0.2774471 0.7955199 0.2736116 0.8060801 0.2742988 0.8098127 0.2783154 0.8080493 0.2760204 0.8122621 0.2768926 0.8123765 0.2778651 0.8114297 0.2778651 0.8114297 0.2784392 0.8096336 0.2742988 0.8098127 0.2784392 0.8096336 0.2783154 0.8080493 0.2742988 0.8098127 0.2742988 0.8098127 0.2760204 0.8122621 0.2778651 0.8114297 0.2733655 0.7805515 0.2771136 0.7870262 0.2769798 0.7781081 0.2752758 0.7492487 0.2744529 0.7585874 0.2775105 0.7588925 0.2781748 0.7489133 0.2784392 0.7411629 0.2762697 0.7422944 0.2775105 0.7588925 0.2781748 0.7489133 0.2752758 0.7492487 0.2739751 0.7668257 0.2772452 0.7683411 0.2775105 0.7588925 0.2736116 0.8060801 0.2783154 0.8080493 0.2777811 0.8026337 0.2736116 0.8060801 0.2777811 0.8026337 0.2730997 0.795928 0.2739751 0.7668257 0.2736701 0.7741472 0.2772452 0.7683411 0.2772452 0.7683411 0.2736701 0.7741472 0.2769798 0.7781081 0.2777811 0.8026337 0.2774471 0.7955199 0.2730997 0.795928 0.2733655 0.7805515 0.2730602 0.7886065 0.2771136 0.7870262 0.8931748 0.5807078 0.8998464 0.5913115 0.9063975 0.5831888 0.8431182 0.6315206 0.8608408 0.6316726 0.8599644 0.6302089 0.9278575 0.5312015 0.926348 0.5549724 0.9286382 0.5531527 0.8747498 0.6596148 0.8854659 0.6544736 0.8773723 0.645697 0.9110733 0.5567442 0.913434 0.5738427 0.9210036 0.5630499 0.8473338 0.6349824 0.8642359 0.634346 0.8626139 0.6332113 0.9226989 0.7062947 0.9214439 0.7058168 0.9223589 0.729505 0.9161896 0.6968507 0.9088175 0.6853606 0.9060036 0.7017676 0.8860395 0.6067162 0.8938632 0.5981914 0.8852134 0.590109 0.8543557 0.6403279 0.8700534 0.638886 0.8642359 0.634346 0.8638183 0.6484339 0.8773723 0.645697 0.8700534 0.638886 0.9207887 0.5420252 0.9210036 0.5630499 0.926348 0.5549724 0.8599644 0.6302089 0.8601356 0.6290962 0.8422215 0.6282473 0.9088175 0.6853606 0.9013847 0.6747295 0.896254 0.6870832 0.8852134 0.590109 0.8938632 0.5981914 0.8998464 0.5913115 0.8628509 0.6262562 0.8670379 0.6233845 0.8503218 0.6212418 0.8853815 0.6724119 0.8932514 0.6640359 0.8854659 0.6544736 0.9018809 0.5695976 0.9063975 0.5831888 0.913434 0.5738427 0.8670379 0.6233845 0.8784199 0.6141132 0.8644867 0.6106236 0.9214439 0.7058168 0.9161896 0.6968507 0.9154401 0.717501 0.8784199 0.6141132 0.8860395 0.6067162 0.8746129 0.6013239 0.8601356 0.6290962 0.8628509 0.6262562 0.84538 0.6247705 0.8453115 0.6334908 0.8626139 0.6332113 0.8608408 0.6316726 0.1377868 0.7820034 0.1386373 0.825818 0.233464 0.8228092 0.1367812 0.4175281 0.1360509 0.4507352 0.2308319 0.4531627 0.1358677 0.6282985 0.1359279 0.6344485 0.2285245 0.6339659 0.2374122 0.2988828 0.1408707 0.2949819 0.1404718 0.3048759 0.2293981 0.7030594 0.1366766 0.704823 0.1371511 0.7423503 0.2354209 0.3407912 0.1392361 0.3370439 0.1378105 0.3799416 0.2285454 0.6420097 0.1360201 0.6427589 0.1360921 0.6497167 0.1416744 0.9501446 0.1418759 0.9548976 0.2403485 0.9507217 0.1396141 0.8685798 0.1407231 0.914308 0.2379413 0.9103828 0.2299307 0.4815641 0.1731097 0.4804183 0.1731829 0.5028699 0.2285937 0.6487354 0.1360921 0.6497167 0.1363383 0.6735585 0.2288333 0.6721715 0.1363383 0.6735585 0.1366766 0.704823 0.2369227 0.3087689 0.1404718 0.3048759 0.1392361 0.3370439 0.2285104 0.6235675 0.1358359 0.624195 0.1358677 0.6282985 0.1386373 0.825818 0.1396141 0.8685798 0.2354717 0.8651248 0.2308319 0.4531627 0.1360509 0.4507352 0.17309 0.4619555 0.17309 0.4619555 0.1731097 0.4804183 0.2299307 0.4815641 0.1356446 0.5940594 0.1357532 0.6107777 0.2284345 0.6104223 0.2303735 0.7402053 0.1371511 0.7423503 0.1377868 0.7820034 0.2335628 0.3833078 0.1378105 0.3799416 0.1367812 0.4175281 0.1351657 0.5487405 0.1356446 0.5940594 0.2284328 0.5940981 0.1407231 0.914308 0.1416744 0.9501446 0.24009 0.9457212 0.1351676 0.515966 0.1351657 0.5487405 0.2285827 0.5492796 0.1357532 0.6107777 0.1358359 0.624195 0.2285104 0.6235675 0.1359279 0.6344485 0.1360201 0.6427589 0.2285454 0.6420097 0.1543526 0.9523804 0.1551972 0.938517 0.1478957 0.9629099 0.1551972 0.8304904 0.1533223 0.8203801 0.1466934 0.8102688 0.1466934 0.8102688 0.1372911 0.8026843 0.1231349 0.8001535 0.1231349 0.8001535 0.1117519 0.8035207 0.1466934 0.8102688 0.02588838 0.844361 0.01648616 0.8523623 0.003518402 0.8826887 0.006040573 0.8654184 0.003518402 0.8826887 0.01648616 0.8523623 0.003914594 0.9913099 0.09752959 0.9951933 0.003518402 0.8826887 0.1478957 0.9629099 0.1551972 0.938517 0.09752959 0.9951933 0.1551972 0.8304904 0.1466934 0.8102688 0.1117519 0.8035207 0.1117519 0.8035207 0.1551972 0.938517 0.1551972 0.8304904 0.003518402 0.8826887 0.09752959 0.9951933 0.1551972 0.938517 0.1551972 0.938517 0.1117519 0.8035207 0.02588838 0.844361 0.9643244 0.8377748 0.9643244 0.6940898 0.9065553 0.8736332 0.9632014 0.6756499 0.9546157 0.6616427 0.9643244 0.6940898 0.887644 0.6186873 0.7631643 0.6238231 0.7626375 0.7682989 0.7626375 0.7682989 0.7659912 0.7912707 0.7798808 0.8086396 0.7798808 0.8086396 0.7923828 0.8192851 0.7626375 0.7682989 0.9065553 0.8736332 0.9216914 0.8781155 0.9530168 0.8646687 0.9405148 0.8747537 0.9530168 0.8646687 0.9216914 0.8781155 0.9618315 0.8512217 0.9643244 0.8377748 0.9530168 0.8646687 0.9546157 0.6616427 0.887644 0.6186873 0.9643244 0.6940898 0.7626375 0.7682989 0.9643244 0.6940898 0.887644 0.6186873 0.9065553 0.8736332 0.9530168 0.8646687 0.9643244 0.8377748 0.9643244 0.6940898 0.7923828 0.8192851 0.9065553 0.8736332 0.6600477 0.8183878 0.6604661 0.697079 0.6583597 0.6970967 0.6931331 0.6961325 0.6930025 0.8399018 0.6950956 0.8399001 0.693278 0.8533946 0.6942828 0.8669838 0.6963759 0.8669822 0.2579889 0.9080355 0.257957 0.8848572 0.2558505 0.8848558 0.6604661 0.697079 0.6606248 0.683813 0.6585184 0.6838306 0.257957 0.8848572 0.2582973 0.7406608 0.2561908 0.7406592 0.6606248 0.8678693 0.6602851 0.8545261 0.6581786 0.8545438 0.6118072 0.7962626 0.614237 0.867692 0.6163359 0.8677276 0.6600577 0.8344801 0.6600477 0.8183878 0.6579413 0.8184055 0.6942828 0.6638146 0.6932794 0.677699 0.6953725 0.6776974 0.6930025 0.8399018 0.693278 0.8533946 0.695371 0.853393 0.614237 0.663813 0.6118072 0.7962626 0.6139062 0.7962982 0.2582973 0.9263893 0.2579889 0.9080355 0.2558825 0.908034 0.6602851 0.8545261 0.6600577 0.8344801 0.6579513 0.8344978 0.6932794 0.677699 0.6931331 0.6961325 0.6952261 0.6961309 0.9874882 0.4538208 0.987092 0.4524903 0.9757063 0.45554 0.8585725 0.4762175 0.8970386 0.4745695 0.897334 0.4546869 0.9003226 0.4320119 0.9074974 0.4101014 0.8636608 0.398573 0.3933158 0.6160328 0.4430938 0.6016189 0.4154978 0.3940798 0.5240485 0.5668595 0.6124759 0.5203878 0.4154978 0.3940798 0.6422166 0.4922088 0.6630987 0.4492851 0.6124759 0.5203878 0.4154978 0.3940798 0.3950085 0.2740181 0.3653498 0.2849041 0.6630987 0.4492851 0.6676114 0.3901107 0.4154978 0.3940798 0.4430938 0.6016189 0.5240485 0.5668595 0.4154978 0.3940798 0.3179758 0.6041631 0.3528085 0.6131734 0.4154978 0.3940798 0.2656434 0.5610329 0.2914016 0.588609 0.4154978 0.3940798 0.2459229 0.5063334 0.2495191 0.5359577 0.2656434 0.5610329 0.2532826 0.4210759 0.2459229 0.4655862 0.4154978 0.3940798 0.2831676 0.3535447 0.2658939 0.3850209 0.4154978 0.3940798 0.3349885 0.2998631 0.3060025 0.3238666 0.4154978 0.3940798 0.4154978 0.3940798 0.3653498 0.2849041 0.3349885 0.2998631 0.6124759 0.5203878 0.6630987 0.4492851 0.4154978 0.3940798 0.2914016 0.588609 0.3179758 0.6041631 0.4154978 0.3940798 0.2459229 0.4655862 0.2459229 0.5063334 0.4154978 0.3940798 0.3060025 0.3238666 0.2831676 0.3535447 0.4154978 0.3940798 0.3933158 0.6160328 0.4154978 0.3940798 0.3528085 0.6131734 0.2459229 0.5063334 0.2656434 0.5610329 0.4154978 0.3940798 0.8944323 0.6066849 0.9395388 0.581806 0.920661 0.554041 0.9059399 0.5222441 0.9003757 0.5001153 0.8626548 0.5069259 0.8581563 0.4523132 0.897334 0.4546869 0.9003226 0.4320119 0.8626548 0.5069259 0.9003757 0.5001153 0.8970386 0.4745695 0.8805591 0.571722 0.920661 0.554041 0.9120905 0.5375958 0.873887 0.551836 0.9120905 0.5375958 0.9059399 0.5222441 0.9074974 0.4101014 0.9247682 0.3762443 0.8743396 0.3574385 0.8970386 0.4745695 0.9123613 0.4742276 0.9129918 0.4564357 0.9395388 0.581806 0.9558929 0.5678101 0.9360038 0.5445396 0.9120905 0.5375958 0.9270427 0.5304426 0.9207324 0.5169644 0.9163352 0.4362275 0.9245172 0.4174126 0.9074974 0.4101014 0.9003757 0.5001153 0.9154823 0.4971482 0.9123613 0.4742276 0.9245172 0.4174126 0.943646 0.3887552 0.9247682 0.3762443 0.897334 0.4546869 0.9129918 0.4564357 0.9163352 0.4362275 0.920661 0.554041 0.9360038 0.5445396 0.9270427 0.5304426 0.9207324 0.5169644 0.9154823 0.4971482 0.9003757 0.5001153 0.9360038 0.5445396 0.9486487 0.5351277 0.9398477 0.5233412 0.9129918 0.4564357 0.9267853 0.4586524 0.930506 0.4410229 0.9558929 0.5678101 0.967787 0.5533432 0.9486487 0.5351277 0.9389113 0.4250671 0.9581419 0.4023213 0.943646 0.3887552 0.9154823 0.4971482 0.9285818 0.4944155 0.9258565 0.4742667 0.930506 0.4410229 0.9389113 0.4250671 0.9245172 0.4174126 0.9270427 0.5304426 0.9398477 0.5233412 0.9337252 0.5117198 0.9123613 0.4742276 0.9258565 0.4742667 0.9267853 0.4586524 0.9337252 0.5117198 0.9285818 0.4944155 0.9154823 0.4971482 0.9429721 0.4461265 0.9511964 0.433147 0.9389113 0.4250671 0.9511964 0.433147 0.9694855 0.4158091 0.9581419 0.4023213 0.9267853 0.4586524 0.9391612 0.4610766 0.9429721 0.4461265 0.9486487 0.5351277 0.9592858 0.5257169 0.9509921 0.516209 0.9452273 0.5065341 0.9404478 0.491774 0.9285818 0.4944155 0.9285818 0.4944155 0.9404478 0.491774 0.938061 0.4744551 0.9258565 0.4742667 0.938061 0.4744551 0.9391612 0.4610766 0.967787 0.5533432 0.9767808 0.539466 0.9592858 0.5257169 0.9398477 0.5233412 0.9509921 0.516209 0.9452273 0.5065341 0.9592858 0.5257169 0.9691756 0.5149924 0.9619955 0.5080591 0.9391612 0.4610766 0.9519541 0.4641374 0.9555766 0.4523215 0.9845647 0.5242224 0.9691756 0.5149924 0.9592858 0.5257169 0.9630079 0.4426397 0.9790436 0.4311568 0.9694855 0.4158091 0.9404478 0.491774 0.9527744 0.4888386 0.9507972 0.4748749 0.9555766 0.4523215 0.9630079 0.4426397 0.9511964 0.433147 0.9509921 0.516209 0.9619955 0.5080591 0.9569473 0.5006054 0.938061 0.4744551 0.9507972 0.4748749 0.9519541 0.4641374 0.9569473 0.5006054 0.9527744 0.4888386 0.9404478 0.491774 0.9645399 0.4964289 0.9609215 0.4868039 0.9527744 0.4888386 0.9507972 0.4748749 0.9592519 0.4752833 0.9603683 0.4664532 0.9845647 0.5242224 0.9879617 0.5138362 0.9751518 0.5076202 0.9619955 0.5080591 0.9689295 0.50235 0.9645399 0.4964289 0.9636632 0.4568855 0.9701914 0.4494495 0.9630079 0.4426397 0.9701914 0.4494495 0.9838376 0.4415767 0.9790436 0.4311568 0.9527744 0.4888386 0.9609215 0.4868039 0.9592519 0.4752833 0.9519541 0.4641374 0.9603683 0.4664532 0.9636632 0.4568855 0.9691756 0.5149924 0.9751518 0.5076202 0.9689295 0.50235 0.9757063 0.45554 0.9867047 0.4505587 0.9838376 0.4415767 0.9609215 0.4868039 0.9678095 0.4849984 0.9664047 0.4757362 0.9702662 0.4611129 0.9757063 0.45554 0.9701914 0.4494495 0.9689295 0.50235 0.97444 0.4972798 0.9707986 0.4926913 0.9592519 0.4752833 0.9664047 0.4757362 0.9674201 0.4686492 0.9707986 0.4926913 0.9678095 0.4849984 0.9609215 0.4868039 0.9751518 0.5076202 0.9795455 0.5010895 0.97444 0.4972798 0.9603683 0.4664532 0.9674201 0.4686492 0.9702662 0.4611129 0.9899644 0.5051178 0.9795455 0.5010895 0.9751518 0.5076202 0.9893612 0.462207 0.9874882 0.4538208 0.9702662 0.4611129 0.99054 0.4697757 0.9893612 0.462207 0.9674201 0.4686492 0.99054 0.4697757 0.9664047 0.4757362 0.9678095 0.4849984 0.589398 0.9456781 0.589398 0.952257 0.5977541 0.952257 0.5062412 0.9662199 0.5062412 0.9736644 0.5156968 0.9736644 0.5156149 0.9244672 0.5061593 0.9244672 0.5061593 0.9319117 0.5617766 0.9653665 0.5617766 0.9719454 0.5701326 0.9719454 0.4608404 0.9344109 0.4608404 0.9855695 0.5258188 0.9855695 0.54939 0.9783968 0.54939 0.9796545 0.5509875 0.9796545 0.5084912 0.95316 0.5084912 0.9606046 0.5179467 0.9606046 0.5084913 0.941042 0.5084913 0.9484865 0.5179468 0.9484865 0.5842458 0.9662564 0.5842458 0.9728353 0.5926019 0.9728353 0.462507 0.907751 0.462507 0.9589092 0.5274854 0.9589092 0.5928824 0.959397 0.5928824 0.9659759 0.6012385 0.9659759 0.5980346 0.9456781 0.5980346 0.952257 0.6063907 0.952257 0.5473635 0.9782937 0.5473635 0.9795514 0.5489609 0.9795514 0.5928824 0.9731158 0.5928824 0.9796947 0.6012385 0.9796947 0.54939 0.9770854 0.54939 0.9783432 0.5509875 0.9783432 0.5721527 0.9731158 0.5721527 0.9796947 0.5805088 0.9796947 0.5927309 0.9346294 0.5927309 0.9429855 0.5993098 0.9429855 0.5446673 0.9776883 0.5446673 0.978946 0.5462648 0.978946 0.5960028 0.9277701 0.5960028 0.9343489 0.6043589 0.9343489 0.5995904 0.9101903 0.5995904 0.9167691 0.6079465 0.9167691 0.5929136 0.9525375 0.5929136 0.9591164 0.6012697 0.9591164 0.5721527 0.9662564 0.5721527 0.9728353 0.5805088 0.9728353 0.5061592 0.9123575 0.5061592 0.9198021 0.5156149 0.9198021 0.5960028 0.9209106 0.5960028 0.9274895 0.6043589 0.9274895 0.5807893 0.9731158 0.5807893 0.9796947 0.5891454 0.9796947 0.5617766 0.9722259 0.5617766 0.9788048 0.5701326 0.9788048 0.5995903 0.9346294 0.5995903 0.9412083 0.6079464 0.9412083 0.4809229 0.9261025 0.4809229 0.9772611 0.5459013 0.9772611 0.5563337 0.9144109 0.5563337 0.9793892 0.6074922 0.9793892 0.5442346 0.9776883 0.5426371 0.9776883 0.5426371 0.978946 0.5156149 0.9322292 0.5061593 0.9322292 0.5061593 0.9396737 0.5928824 0.9662564 0.5928824 0.9728353 0.6012385 0.9728353 0.2590004 0.8706523 0.2590302 0.740738 0.2586398 0.7407479 0.2635124 0.7406704 0.2630732 0.7406687 0.2631813 0.870624 0.2593946 0.8706465 0.2594531 0.7407319 0.2590302 0.740738 0.2639347 0.7406755 0.2635124 0.7406704 0.2635907 0.8706256 0.2598043 0.8706446 0.2598925 0.7407298 0.2594531 0.7407319 0.264324 0.7406837 0.2639347 0.7406755 0.2639844 0.8706303 0.2602134 0.8706465 0.2603315 0.7406592 0.2598925 0.7407298 0.2646651 0.7406948 0.264324 0.7406837 0.2643471 0.870638 0.2607532 0.7407269 0.2603315 0.7406592 0.2602134 0.8706465 0.2707041 0.8706881 0.2710106 0.8706836 0.2710107 0.7406592 0.2609683 0.8706614 0.2611414 0.7407368 0.2607532 0.7407269 0.2703415 0.8706915 0.2707041 0.8706881 0.270725 0.7406634 0.2659698 0.7407031 0.265833 0.8704656 0.2662732 0.8704683 0.261285 0.8706738 0.2614812 0.7407501 0.2611414 0.7407368 0.2699368 0.8706938 0.2703415 0.8706915 0.2703869 0.7406666 0.2654076 0.8704567 0.265833 0.8704656 0.2659698 0.7407031 0.2675366 0.7406786 0.267514 0.8704394 0.267848 0.8704186 0.2695055 0.8706947 0.2699368 0.8706938 0.2700097 0.7406687 0.2650133 0.8704419 0.2654076 0.8704567 0.2655733 0.7406948 0.2671788 0.7406932 0.2671301 0.8704549 0.267514 0.8704394 0.2690642 0.8706943 0.2695055 0.8706947 0.2696077 0.7406696 0.2646651 0.8704218 0.2650133 0.8704419 0.2652058 0.740681 0.2667883 0.7407023 0.2667111 0.8704647 0.2671301 0.8704549 0.2687915 0.7406677 0.2686299 0.8706926 0.2690642 0.8706943 0.2618224 0.7406725 0.2614812 0.7406835 0.2616975 0.8706482 0.2663801 0.7407056 0.2662732 0.8704683 0.2667111 0.8704647 0.2684088 0.740665 0.2682192 0.8706897 0.2686299 0.8706926 0.2622116 0.7406643 0.2618224 0.7406725 0.2620155 0.8706378 0.2680628 0.7406612 0.267848 0.8706856 0.2682192 0.8706897 0.2626339 0.7406592 0.2622116 0.7406643 0.2623783 0.8706302 0.2586367 0.8706614 0.2586398 0.7407479 0.2582973 0.7407612 0.2630732 0.7406687 0.2626339 0.7406592 0.262772 0.8706255 0.9176406 0.4890893 0.9175053 0.4890593 0.9175053 0.6257243 0.9186189 0.4887531 0.9186189 0.6162725 0.9187546 0.6162914 0.9142014 0.6216791 0.9142014 0.4887183 0.914049 0.4887328 0.9177632 0.4891047 0.9176406 0.4890893 0.9176406 0.6257543 0.9184717 0.4887346 0.9184717 0.6162539 0.9186189 0.6162725 0.9143462 0.6216635 0.9143462 0.4887027 0.9142014 0.4887183 0.9136053 0.4887636 0.9134808 0.4887685 0.9134808 0.6217293 0.9183185 0.6162363 0.9184717 0.6162539 0.9184717 0.4887346 0.9144779 0.6216472 0.9144779 0.4886865 0.9143462 0.4887027 0.9137451 0.4887559 0.9136053 0.4887636 0.9136053 0.6217244 0.9181654 0.6162207 0.9183185 0.6162363 0.9183185 0.488717 0.9145914 0.621631 0.9145914 0.4886702 0.9144779 0.4886865 0.913895 0.4887455 0.9137451 0.4887559 0.9137452 0.6217166 0.9180181 0.6162073 0.9181654 0.6162207 0.9181654 0.4887013 0.9166232 0.4887416 0.9166232 0.6269147 0.9167246 0.6268434 0.914049 0.6216935 0.914049 0.4887328 0.913895 0.4887455 0.9178823 0.6161968 0.9180181 0.6162073 0.9180181 0.4886879 0.9165036 0.4888131 0.9165036 0.6269862 0.9166232 0.6269147 0.9177632 0.6161895 0.9178823 0.6161968 0.9178823 0.4886775 0.9163702 0.4888818 0.9163702 0.627055 0.9165036 0.6269862 0.9168246 0.4887479 0.9167246 0.4886702 0.9167246 0.6253352 0.9162284 0.4889453 0.9162284 0.6271184 0.9163702 0.627055 0.9169432 0.4888242 0.9168246 0.4887479 0.9168246 0.625413 0.9160833 0.4890009 0.9160833 0.6271741 0.9162284 0.6271184 0.9170758 0.4888961 0.9169432 0.4888242 0.9169433 0.6254892 0.9159409 0.4890467 0.9159409 0.6272199 0.9160833 0.6271741 0.9172173 0.4889608 0.9170758 0.4888961 0.9170758 0.6255611 0.9158064 0.4890808 0.9158064 0.627254 0.9159409 0.6272199 0.9173623 0.4890159 0.9172173 0.4889608 0.9172173 0.6256258 0.9156851 0.489102 0.915685 0.6272751 0.9158064 0.627254 0.9175053 0.4890593 0.9173623 0.4890159 0.9173624 0.6256809 0.9187546 0.4887722 0.9187546 0.6162914 0.9188734 0.61631 0.5477419 0.8076063 0.5476137 0.807554 0.5476138 0.9636787 0.9191029 0.4889771 0.9191029 0.6439003 0.9192348 0.6438156 0.5478768 0.8076714 0.5477419 0.8076063 0.5477419 0.963731 0.9189809 0.4890675 0.9189808 0.6439906 0.9191029 0.6439003 0.5480133 0.807747 0.5478768 0.8076714 0.5478768 0.9637961 0.9188735 0.4891601 0.9188734 0.6440832 0.9189808 0.6439906 0.5481462 0.80783 0.5480133 0.807747 0.5480134 0.9638717 0.915581 0.4886795 0.9155809 0.622727 0.915685 0.6227177 0.5482704 0.8079174 0.5481462 0.80783 0.5481463 0.9639548 0.9154571 0.4886934 0.9154571 0.6227409 0.9155809 0.622727 0.548381 0.8080058 0.5482704 0.8079174 0.5482704 0.9640421 0.915318 0.4887113 0.915318 0.6227589 0.9154571 0.6227409 0.9127739 0.6307765 0.9129269 0.6307944 0.9129268 0.4887247 0.5484739 0.8080916 0.548381 0.8080058 0.548381 0.9641305 0.9151692 0.4887326 0.9151692 0.6227802 0.915318 0.6227589 0.9126268 0.4886915 0.9126268 0.630761 0.9127739 0.6307765 0.9133622 0.6308555 0.9134808 0.6308757 0.9134808 0.4888061 0.9150163 0.4887565 0.9150163 0.622804 0.9151692 0.6227802 0.9124911 0.4886791 0.9124911 0.6307486 0.9126268 0.630761 0.9132267 0.6308345 0.9133622 0.6308555 0.9133622 0.4887859 0.9148652 0.4887821 0.9148652 0.6228295 0.9150163 0.622804 0.9123721 0.4886702 0.9123721 0.6307398 0.9124911 0.6307486 0.9130797 0.630814 0.9132267 0.6308345 0.9132267 0.488765 0.9147217 0.6228556 0.9148652 0.6228295 0.9148652 0.4887821 0.9196382 0.4887035 0.9196381 0.6436267 0.919758 0.6435934 0.9129269 0.6307944 0.9130797 0.630814 0.9130797 0.4887443 0.9145914 0.6228814 0.9147217 0.6228556 0.9147217 0.4888082 0.9195077 0.488753 0.9195076 0.6436762 0.9196381 0.6436267 0.5474974 0.8075167 0.5473971 0.8074957 0.5473972 0.9636204 0.9193714 0.4888168 0.9193714 0.6437399 0.9195076 0.6436762 0.5476137 0.807554 0.5474974 0.8075167 0.5474974 0.9636414 0.9192348 0.4888925 0.9192348 0.6438156 0.9193714 0.6437399 0.5823391 0.9578597 0.5823391 0.9532592 0.5721527 0.9525375 0.5647062 0.9377559 0.4859232 0.9431902 0.4859229 0.9789646 0.5858716 0.9346294 0.5866683 0.9444382 0.5912688 0.9444382 0.5371016 0.9727001 0.5371018 0.9369257 0.457507 0.9310572 0.5926019 0.959397 0.5825288 0.9600843 0.5825288 0.9646848 0.4983973 0.9244672 0.4993547 0.9355291 0.5045606 0.9355291 0.5613235 0.9460152 0.556723 0.9460152 0.5559263 0.956293 0.5007293 0.941042 0.5017489 0.9520782 0.5069548 0.9520782 0.5473635 0.9763778 0.5475469 0.9782401 0.5484264 0.9782401 0.4836688 0.9530528 0.4784629 0.9530528 0.4774433 0.964746 0.5993098 0.9101903 0.592731 0.9101903 0.5937499 0.9199316 0.5869541 0.9660324 0.5793449 0.9660324 0.577758 0.9831431 0.5081737 0.95316 0.5007292 0.9531601 0.5019482 0.9641963 0.5999847 0.9831432 0.5983978 0.9660324 0.5907886 0.9660324 0.5058417 0.9123575 0.4983972 0.9123575 0.4996784 0.9234195 0.4848878 0.9527353 0.4838681 0.941042 0.4786623 0.941042 0.5924505 0.9101903 0.5858716 0.9101903 0.5870532 0.919999 0.5787315 0.9310925 0.5778854 0.9207817 0.5732849 0.9207817 0.5059238 0.9662199 0.4945925 0.9669975 0.4945925 0.9722034 0.5858716 0.9277701 0.5858716 0.9343489 0.5957223 0.9331252 0.4903178 0.9359384 0.4894162 0.9243083 0.4842103 0.9243083 0.6032537 0.9360708 0.5258404 0.9415054 0.5258404 0.9772798 0.5446673 0.9763769 0.5446673 0.9776346 0.5465599 0.9773944 0.6171845 0.9377493 0.5375896 0.9436174 0.5375896 0.9793919 0.5445298 0.9763768 0.5426371 0.9765148 0.5426371 0.9773944 0.465923 0.9310959 0.465923 0.9822543 0.5433364 0.9723047 0.5513373 0.9744628 0.54939 0.9746007 0.54939 0.9754802 0.5957223 0.9209106 0.5858716 0.9216653 0.5858716 0.9262658 0.5826196 0.9525375 0.5826196 0.9591164 0.5926331 0.9578253 0.54939 0.9757741 0.54939 0.9770318 0.5513157 0.976785 0.4591737 0.9377307 0.4591737 0.9888892 0.5379567 0.9789397 0.5721527 0.9205011 0.5787317 0.9205011 0.5775995 0.9101903 0.3783847 0.9397063 0.3783846 0.9392551 0.3641014 0.9388478 0.3952795 0.9782117 0.3950018 0.960618 0.3944672 0.960618 0.4158538 0.9316737 0.3999539 0.9324033 0.3999539 0.9328547 0.3477454 0.9561825 0.3477454 0.955648 0.330567 0.9552873 0.4284902 0.9356052 0.4282201 0.9209917 0.4277688 0.9209917 0.3480222 0.9518616 0.3480222 0.9513271 0.330567 0.9510357 0.3994889 0.9554247 0.3990722 0.9383817 0.3985376 0.9383817 0.3944251 0.9561221 0.3949596 0.9561221 0.3952373 0.9383817 0.3529465 0.9861254 0.3523824 0.9693269 0.3518479 0.9693269 0.4298412 0.9573268 0.4312652 0.9573267 0.4321178 0.9093218 0.3995311 0.9772053 0.3987745 0.960618 0.3982399 0.960618 0.3900766 0.9789092 0.3906111 0.9789092 0.3910279 0.960618 0.4320792 0.9348508 0.4312463 0.9209917 0.4307951 0.9209917 0.3898871 0.9569175 0.3904216 0.9569175 0.3909858 0.9383817 0.4320792 0.9488149 0.4310278 0.9350585 0.4305766 0.9350585 0.4202216 0.9368172 0.4206728 0.9368172 0.4213123 0.9209919 0.4037404 0.9546086 0.4022174 0.9383817 0.4016827 0.9383817 0.3852551 0.9795348 0.3857896 0.9795348 0.3867763 0.960618 0.3960948 0.9442943 0.3960948 0.943843 0.3824083 0.9424402 0.3849542 0.9574201 0.3854889 0.9574201 0.3867342 0.9383817 0.3778236 0.944052 0.3778236 0.9436008 0.3641014 0.9424367 0.3798393 0.9352589 0.3641014 0.9358097 0.3641014 0.9362611 0.3804672 0.9797254 0.3810019 0.9797254 0.3825248 0.960618 0.4448992 0.9609792 0.4448992 0.9572874 0.3319606 0.9496228 0.3979523 0.9352622 0.3824083 0.9356696 0.3824083 0.9361209 0.417144 0.917217 0.4010028 0.91862 0.4010028 0.9190712 0.4138816 0.9400326 0.4138816 0.9395814 0.3999539 0.9388516 0.41528 0.9352627 0.3999539 0.9355669 0.3999539 0.9360182 0.380207 0.9316698 0.3641014 0.932834 0.3641014 0.9332852 0.3964979 0.9398533 0.396498 0.9394021 0.3824083 0.9388511 0.3484457 0.9467841 0.330567 0.9470756 0.330567 0.9476101 0.3984324 0.9316733 0.3824083 0.93261 0.3824083 0.9330613 0.5776252 0.931373 0.573059 0.931373 0.5721527 0.9416748 0.4827252 0.9736644 0.494275 0.9726715 0.494275 0.9675045 0.5504334 0.9724437 0.5495606 0.9724437 0.54939 0.9744091 0.5466224 0.9737542 0.5446663 0.9739219 0.5446663 0.9747949 0.4913707 0.941042 0.4862037 0.941042 0.4852052 0.9526488 0.4852052 0.9530528 0.4862037 0.9646595 0.4913707 0.9646595 0.5426371 0.9739712 0.5426371 0.9748442 0.5445933 0.9750119 0.4828733 0.9123575 0.4838826 0.9239908 0.4890496 0.9239909 0.5493147 0.9747958 0.5493147 0.9739228 0.5473635 0.9737551 0.5721527 0.9419553 0.5730591 0.952257 0.5776252 0.952257 0.5707419 0.9480446 0.5661757 0.9480446 0.5652933 0.9582266 0.5473635 0.9737014 0.5493363 0.9735248 0.5493363 0.9726518 0.5844704 0.9101903 0.5799042 0.9101903 0.5790122 0.9203488 0.4707143 0.9736644 0.4824078 0.9725947 0.4824078 0.9674278 0.5004118 0.9641963 0.4992873 0.9527779 0.4941203 0.9527779 0.4968277 0.9123575 0.4916607 0.9123575 0.4906352 0.9238288 0.5559263 0.9457347 0.5662698 0.9447659 0.5662698 0.9401998 0.5822483 0.959397 0.5721527 0.9603658 0.5721527 0.9649319 0.5426371 0.9752736 0.5426371 0.9761466 0.5445718 0.9763233 0.577294 0.9831485 0.5756505 0.9660324 0.5680983 0.9660324 0.5891174 0.9456781 0.5790122 0.9466235 0.5790122 0.9511896 0.5473635 0.9752705 0.5473635 0.9761434 0.5492954 0.9763242 0.5567528 0.9831485 0.5643051 0.9831485 0.5659487 0.9660324 0.5465599 0.9750655 0.5446254 0.9752422 0.5446254 0.9761152 0.5617766 0.9595511 0.5617766 0.9641172 0.5718722 0.9650859 0.425011 0.9198252 0.425011 0.916444 0.4173517 0.9157266 0.4906352 0.9244672 0.4916608 0.9359384 0.4968277 0.9359385 0.4941204 0.9524604 0.4992874 0.9524604 0.5004118 0.941042 0.5446127 0.9734965 0.5446127 0.9726235 0.5426371 0.9724428 0.5790122 0.9315164 0.5799042 0.9416748 0.5844704 0.9416748 0.5466392 0.9734925 0.5466392 0.9726195 0.5446663 0.9724428 0.579012 0.9209106 0.5798946 0.9310925 0.5844606 0.9310925 0.3574571 0.9383817 0.358136 0.9605386 0.3585218 0.9605042 0.3746625 0.9606407 0.3743061 0.960618 0.3743062 0.9810571 0.348941 0.9467841 0.3497825 0.9690808 0.3501704 0.9690406 0.3788747 0.9384068 0.3785185 0.9383817 0.3785185 0.9588151 0.3532525 0.9383817 0.3542814 0.9607852 0.3546708 0.9607385 0.3221757 0.968901 0.3221598 0.9692882 0.3443563 0.9692882 0.4005025 0.9243471 0.4177234 0.9232267 0.4176757 0.9229283 0.3263632 0.9383817 0.3275973 0.9608554 0.3279874 0.9608015 0.3441922 0.973495 0.3440889 0.9695343 0.3221743 0.9731107 0.3112422 0.9890088 0.4328608 0.9823761 0.4325686 0.980265 0.3221598 0.9383817 0.3236096 0.9608861 0.3239997 0.9608246 0.3440069 0.9777038 0.3439214 0.9737412 0.3221732 0.9773228 0.3824083 0.9314655 0.3997461 0.9306901 0.3997104 0.9303887 0.34467 0.9650835 0.3444445 0.9611322 0.3221814 0.964691 0.382375 0.917228 0.382312 0.9138812 0.3641121 0.9169092 0.3641014 0.9314622 0.3815433 0.9308342 0.3815128 0.9305307 0.3530064 0.9423356 0.3528169 0.9383817 0.3305863 0.9419443 0.3822005 0.9207839 0.3821404 0.9174357 0.364112 0.9204682 0.3824083 0.9279029 0.3999798 0.9273976 0.3999534 0.9270916 0.3529006 0.9465381 0.3527442 0.9425818 0.3305845 0.9461485 0.3658725 0.9596162 0.3698405 0.9595405 0.3662429 0.9383946 0.3641014 0.9279003 0.381823 0.9274886 0.3817998 0.9271798 0.3658741 0.9816555 0.3698435 0.9815672 0.366241 0.9606315 0.3824083 0.9243422 0.4002947 0.9239909 0.4002736 0.9236791 0.3700866 0.9592388 0.374057 0.9591302 0.3704504 0.9383963 0.3641014 0.9243407 0.382161 0.924015 0.3821408 0.9237002 0.3830463 0.9207026 0.3863983 0.9205879 0.383351 0.9032414 0.3532525 0.9610313 0.353651 0.9826324 0.3540275 0.9826079 0.3700895 0.9811939 0.37406 0.9810248 0.3704484 0.9606361 0.3616641 0.960618 0.3621174 0.9824203 0.3624973 0.9823939 0.3743031 0.958869 0.3782724 0.9586618 0.3746603 0.9384021 0.3616641 0.9383817 0.3622119 0.9603719 0.362595 0.9603421 0.283049 0.8619428 0.2807812 0.8619459 0.2809705 0.8766004 0.9329412 0.6071568 0.9306748 0.6071463 0.9302765 0.619465 0.2829275 0.8487498 0.2806596 0.848753 0.2807812 0.8619459 0.9319884 0.683348 0.929722 0.6833375 0.92994 0.7272309 0.2829096 0.7897146 0.2806418 0.7897176 0.2806077 0.8124834 0.2669717 0.8864613 0.2647062 0.8864214 0.2646651 0.9030587 0.2830912 0.7555136 0.2808234 0.7555167 0.2807155 0.7713971 0.8998945 0.7975535 0.8998945 0.7354129 0.8976266 0.7354083 0.9319756 0.6568979 0.9297091 0.6568872 0.929722 0.6833375 0.2829833 0.771394 0.2807155 0.7713971 0.2806418 0.7897176 0.799533 0.8194481 0.799533 0.690829 0.7972665 0.6908412 0.9322193 0.6365044 0.9299529 0.6364938 0.9297091 0.6568872 0.2670865 0.8705082 0.2648211 0.8704683 0.2647062 0.8864214 0.8525084 0.7992648 0.8521564 0.7693334 0.8498945 0.7693973 0.2828911 0.8334437 0.2806233 0.8334468 0.2806596 0.848753 0.9322064 0.7272414 0.92994 0.7272309 0.9303262 0.775835 0.932543 0.6194756 0.9302765 0.619465 0.9299529 0.6364938 0.8525083 0.7487416 0.8502464 0.7488055 0.8498945 0.7693973 0.9325926 0.7758455 0.9303262 0.775835 0.9306748 0.7931545 0.2669306 0.9030985 0.2646651 0.9030587 0.2648211 0.9197227 0.2828755 0.8124803 0.2806077 0.8124834 0.2806233 0.8334468 0.2832384 0.7406592 0.2809705 0.7406623 0.2808234 0.7555167 0.675549 0.9825493 0.6769269 0.9581634 0.6361745 0.9607675 0.9584529 0.9426952 0.9585506 0.9742434 0.9614877 0.9742437 0.9614877 0.828777 0.9614966 0.8697632 0.9644337 0.8697639 0.9583803 0.9064334 0.9584529 0.9426952 0.96139 0.9426955 0.9614965 0.7870797 0.9614877 0.828777 0.9644248 0.8287776 0.9583356 0.8668513 0.9583803 0.9064334 0.9613174 0.9064337 0.9615231 0.7462738 0.9614965 0.7870797 0.9644336 0.7870804 0.9583206 0.8254702 0.9583356 0.8668513 0.9612727 0.8668516 0.961566 0.7079274 0.9615231 0.7462738 0.9644601 0.7462745 0.9583356 0.7838802 0.9583206 0.8254702 0.9612576 0.8254705 0.9616239 0.673514 0.961566 0.7079274 0.9645031 0.707928 0.9583804 0.7436797 0.9583356 0.7838802 0.9612727 0.7838805 0.9552606 0.9430195 0.9553834 0.9740424 0.9583206 0.9740431 0.9584529 0.7064136 0.9583804 0.7436797 0.9613174 0.7436801 0.9551694 0.9071564 0.9552606 0.9430195 0.9581978 0.9430201 0.9674981 0.8674542 0.967498 0.8261352 0.9645609 0.8261353 0.9585506 0.673514 0.9584529 0.7064136 0.96139 0.706414 0.9551132 0.8678315 0.9551694 0.9071564 0.9581065 0.9071571 0.9674986 0.9068819 0.9674981 0.8674542 0.9645611 0.8674541 0.9674993 0.7067077 0.9675002 0.673514 0.9645632 0.6735141 0.9550943 0.8265559 0.9551132 0.8678315 0.9580503 0.8678321 0.9674993 0.9429033 0.9674986 0.9068819 0.9645615 0.9068819 0.9674986 0.7441876 0.9674993 0.7067077 0.9645622 0.7067077 0.9551132 0.7849159 0.9550943 0.8265559 0.9580313 0.8265566 0.9675002 0.9741343 0.9674993 0.9429033 0.9645622 0.9429033 0.9674982 0.7845135 0.9674986 0.7441876 0.9645615 0.7441876 0.9551694 0.7445116 0.9551132 0.7849159 0.9580503 0.7849165 0.961566 0.94339 0.9616239 0.9732012 0.9645609 0.9732019 0.967498 0.8261352 0.9674982 0.7845135 0.9645611 0.7845135 0.9552607 0.7068958 0.9551694 0.7445116 0.9581065 0.7445123 0.9615231 0.9084633 0.961566 0.94339 0.9645031 0.9433907 0.9553834 0.673514 0.9552607 0.7068958 0.9581977 0.7068965 0.9614966 0.8697632 0.9615231 0.9084633 0.9644601 0.908464 0.8592342 0.1032225 0.8572051 0.1030331 0.8594591 0.1272338 0.2127435 0.7965986 0.2235592 0.7750383 0.2214092 0.7750749 0.8594591 0.07884043 0.8572051 0.1030331 0.8592342 0.1032225 0.2060833 0.8200021 0.2127435 0.7965986 0.2105935 0.7966352 0.8661344 0.0555855 0.8594591 0.07884043 0.8614882 0.07902985 0.2038344 0.8443496 0.2060833 0.8200021 0.2039333 0.8200387 0.8769744 0.03416192 0.8661344 0.0555855 0.8681634 0.05577498 0.2039333 0.8687421 0.2060833 0.8687054 0.2038344 0.8443496 0.8915627 0.01539295 0.8769744 0.03416192 0.8790035 0.03435134 0.2105935 0.8921701 0.2127435 0.8921335 0.2060833 0.8687054 0.9093384 0 0.8915627 0.01539295 0.8935917 0.01558244 0.2214092 0.9137701 0.2235592 0.9137336 0.2127435 0.8921335 0.5456321 0.9272262 0.5456857 0.9482772 0.5471988 0.9460967 0.2769255 0.9067323 0.2784386 0.9089139 0.2784385 0.8846603 0.2359646 0.9327121 0.2381147 0.9326754 0.2235592 0.9137336 0.5455992 0.904143 0.5456321 0.9272262 0.5471452 0.9250457 0.2769258 0.9298759 0.2784389 0.9320574 0.2784386 0.9089139 0.2537005 0.9482679 0.2558505 0.9482313 0.2381147 0.9326754 0.545588 0.8799149 0.5455992 0.904143 0.5471122 0.9019625 0.2769261 0.9510199 0.2784392 0.9532015 0.2784389 0.9320574 0.2769257 0.8343767 0.2784389 0.8365582 0.2784392 0.814558 0.5455992 0.8554728 0.545588 0.8799149 0.547101 0.8777344 0.8935917 0.1909843 0.8915627 0.1907948 0.9093384 0.2062507 0.2769255 0.8580474 0.2784386 0.8602289 0.2784389 0.8365582 0.5456321 0.8317561 0.5455992 0.8554728 0.5471122 0.8532923 0.8790035 0.1721637 0.8769744 0.1719743 0.8915627 0.1907948 0.2769254 0.8824788 0.2784385 0.8846603 0.2784386 0.8602289 0.5456857 0.8096762 0.5456321 0.8317561 0.5471451 0.8295756 0.8681634 0.1507017 0.8661344 0.1505123 0.8769744 0.1719743 0.2381146 0.75615 0.2558504 0.7406592 0.2537004 0.7406959 0.8614882 0.1274231 0.8594591 0.1272338 0.8661344 0.1505123 0.2235592 0.7750383 0.2381146 0.75615 0.2359646 0.7561865 0.8059837 0.1021603 0.8114132 0.07304793 0.8087788 0.07347148 0.8087913 0.3073294 0.8033493 0.3362755 0.8059085 0.3363816 0.8059836 0.1318507 0.8059837 0.1021603 0.8033493 0.1025838 0.8194664 0.2800492 0.8087913 0.3073294 0.8113505 0.3074353 0.8087788 0.1614015 0.8114132 0.1609781 0.8059836 0.1318507 0.8349641 0.2554833 0.8194664 0.2800492 0.8220255 0.2801552 0.8194292 0.1888465 0.8220636 0.188423 0.8114132 0.1609781 0.854689 0.2345759 0.8349641 0.2554833 0.8375232 0.2555893 0.2710107 0.85513 0.2730589 0.85771 0.2730588 0.8282859 0.8348913 0.2135545 0.8375257 0.213131 0.8220636 0.188423 0.2784933 0.8816703 0.278559 0.9096743 0.2806077 0.9070408 0.2710109 0.8832074 0.2730591 0.8857873 0.2730589 0.85771 0.8545708 0.2345759 0.8572051 0.2341524 0.8375257 0.213131 0.2784529 0.8522771 0.2784933 0.8816703 0.280542 0.8790369 0.2710113 0.908859 0.2730595 0.9114389 0.2730591 0.8857873 0.2710113 0.7673495 0.2730595 0.7699294 0.2730602 0.7432392 0.2784392 0.8226245 0.2784529 0.8522771 0.2805017 0.8496437 0.2710119 0.9310991 0.2730601 0.933679 0.2730595 0.9114389 0.2710109 0.7960664 0.2730591 0.7986462 0.2730595 0.7699294 0.2784529 0.7938517 0.2784392 0.8226245 0.280488 0.819991 0.2730602 0.9065597 0.2751132 0.9069812 0.2751132 0.885752 0.2710107 0.825706 0.2730588 0.8282859 0.2730591 0.7986462 0.2784933 0.7670647 0.2784529 0.7938517 0.2805016 0.7912182 0.8375233 0.4465197 0.8349641 0.4464137 0.854689 0.4672253 0.278559 0.7432928 0.2784933 0.7670647 0.2805421 0.7644312 0.8220255 0.4220293 0.8194664 0.4219232 0.8349641 0.4464137 0.8375257 0.02096706 0.8572052 0 0.8545708 4.23524e-4 0.8113505 0.394801 0.8087913 0.394695 0.8194664 0.4219232 0.8220636 0.04563236 0.8375257 0.02096706 0.8348913 0.02139055 0.8059084 0.3658813 0.8033493 0.3657753 0.8087913 0.394695 0.8114132 0.07304793 0.8220636 0.04563236 0.8194292 0.04605579 0.8033493 0.3362755 0.8033493 0.3657753 0.8059084 0.3658813 0.5405828 0.9153235 0.5392886 0.9148099 0.5393056 0.9388614 0.5442954 0.8736105 0.5455871 0.8750996 0.5455875 0.8415195 0.5429278 0.8359704 0.5428819 0.8663186 0.5441751 0.8647762 0.5405828 0.8871449 0.5392885 0.8866313 0.5392886 0.9148099 0.5430021 0.8090381 0.5429278 0.8359704 0.5442209 0.834428 0.5405999 0.8559219 0.5393056 0.8554083 0.5392885 0.8866313 0.2582973 0.9005327 0.2583122 0.9259856 0.2595998 0.9253826 0.9687434 0.4233147 0.9671499 0.4233166 0.9846959 0.4510394 0.2583122 0.8712768 0.2582973 0.9005327 0.2595848 0.8999297 0.9566575 0.3924747 0.9550639 0.3924766 0.9671499 0.4233166 0.5142937 0.7664907 0.5342934 0.7404797 0.5326568 0.740493 0.9504962 0.3597028 0.9489026 0.3597047 0.9550639 0.3924766 0.4994326 0.7961646 0.5142937 0.7664907 0.5126571 0.7665041 0.9489026 0.3262602 0.9489026 0.3597047 0.9504962 0.3597028 0.4902811 0.8283611 0.4994326 0.7961646 0.4977959 0.796178 0.9550639 0.2934284 0.9489026 0.3262602 0.9504961 0.3262583 0.487191 0.8618428 0.4902811 0.8283611 0.4886445 0.8283745 0.9671499 0.2624711 0.9550639 0.2934284 0.9566575 0.2934266 0.4886445 0.8953365 0.4902811 0.8953231 0.487191 0.8618428 0.9846959 0.2345777 0.9671499 0.2624711 0.9687435 0.2624691 0.5442954 0.9069462 0.5455869 0.9084354 0.5455871 0.8750996 0.4977959 0.9275286 0.4994325 0.9275152 0.4902811 0.8953231 0.5429277 0.9658122 0.5430021 0.9975392 0.5442954 0.9959967 0.5442954 0.9387563 0.5455871 0.9402454 0.5455869 0.9084354 0.5126571 0.9571956 0.5142937 0.9571823 0.4994325 0.9275152 0.5428819 0.9325113 0.5429277 0.9658122 0.5442209 0.9642697 0.5442958 0.9678181 0.5455874 0.9693073 0.5455871 0.9402454 0.5326568 0.9831973 0.5342934 0.983184 0.5142937 0.9571823 0.5428664 0.8989165 0.5428819 0.9325113 0.5441751 0.9309689 0.5442963 0.9930149 0.545588 0.9945041 0.5455874 0.9693073 0.5442958 0.8400303 0.5455875 0.8415195 0.545588 0.8089849 0.5428819 0.8663186 0.5428664 0.8989165 0.5441597 0.897374 0.9289909 0.2663898 0.9489026 0.2345759 0.947751 0.2346798 0.90981 0.8159787 0.9086668 0.816005 0.9156636 0.8532882 0.9152755 0.3017329 0.9289909 0.2663898 0.9278393 0.2664937 0.9086668 0.7779446 0.9086668 0.816005 0.90981 0.8159787 0.9082834 0.3392471 0.9152755 0.3017329 0.9141238 0.3018369 0.9156635 0.7405698 0.9086668 0.7779446 0.9098099 0.7779182 0.9082834 0.3774906 0.9082834 0.3392471 0.9071318 0.339351 0.9293881 0.7053169 0.9156635 0.7405698 0.9168066 0.7405434 0.9489026 0.5640947 0.9498161 0.5650385 0.9498161 0.5271424 0.9141238 0.4150978 0.9152755 0.4149938 0.9082834 0.3774906 0.9493132 0.6735404 0.9293881 0.7053169 0.9305313 0.7052904 0.9489027 0.6002563 0.9498162 0.6012001 0.9498161 0.5650385 0.9278393 0.4504194 0.9289909 0.4503155 0.9152755 0.4149938 0.9113872 0.630032 0.9114572 0.6678882 0.9123721 0.6668908 0.9489032 0.6332938 0.9498166 0.6342376 0.9498162 0.6012001 0.947751 0.4822022 0.9489026 0.4820983 0.9289909 0.4503155 0.9113515 0.5918413 0.9113872 0.630032 0.9123021 0.6290345 0.9489039 0.6619375 0.9498172 0.6628813 0.9498166 0.6342376 0.9489032 0.4880248 0.9498165 0.4889685 0.9498172 0.4519832 0.9113515 0.5547841 0.9113515 0.5918413 0.9122664 0.5908439 0.9206822 0.5943491 0.9197673 0.5937889 0.9197945 0.6211307 0.9489027 0.5261986 0.9498161 0.5271424 0.9498165 0.4889685 0.9113872 0.5202842 0.9113515 0.5547841 0.9122664 0.5537866 0.920673 0.5623156 0.919758 0.5617554 0.9197673 0.5937889 0.9114573 0.4896677 0.9113872 0.5202842 0.9123021 0.5192869 0.9206823 0.5268214 0.9197673 0.5262612 0.919758 0.5617554 0.9099256 0.6302244 0.9099572 0.6591593 0.9108682 0.6585407 0.9207094 0.4892304 0.9197945 0.4886702 0.9197673 0.5262612 0.9099255 0.5969663 0.9099256 0.6302244 0.9108365 0.6296058 0.9305312 0.8883352 0.9293881 0.8883616 0.9493131 0.9198772 0.9099572 0.5606632 0.9099255 0.5969663 0.9108365 0.5963478 0.9168067 0.8532618 0.9156636 0.8532882 0.9293881 0.8883616 0.7820193 0.5744196 0.7924652 0.5910286 0.7722382 0.5678026 0.8805591 0.571722 0.873887 0.551836 0.7722382 0.5678026 0.1355179 0.4797325 0.1731097 0.4804183 0.17309 0.4619555 0.8029331 0.6049637 0.8097944 0.6249715 0.8944323 0.6066849 0.8944323 0.6066849 0.8805591 0.571722 0.8029331 0.6049637 0.1731829 0.5028699 0.1731097 0.4804183 0.1355179 0.4797325 0.1351676 0.515966 0.2291154 0.5171447 0.1731829 0.5028699 0.7483311 0.9897073 0.756959 0.9784786 0.737068 0.9784786 0.7112524 0.9864936 0.7198802 0.9752649 0.7013329 0.9670798 0.7284401 0.9897073 0.737068 0.9784786 0.7198802 0.9752649 0.7688308 0.9749153 0.756959 0.9784786 0.7483311 0.9897073 0.5354048 0.9875002 0.5424318 0.9732373 0.486325 0.951332 0.5424318 0.9732373 0.5457772 0.9655593 0.4909818 0.9446336 0.5555992 0.9509568 0.5785645 0.9360944 0.5602677 0.9147769 0.5494288 0.9543667 0.5555992 0.9509568 0.5111388 0.9235911 0.5457772 0.9655593 0.5494288 0.9543667 0.5020272 0.9308372 0.6347839 0.946887 0.674037 0.946887 0.6712204 0.9235783 0.6259124 0.966235 1.48153e-4 0.966235 7.82205e-4 0.9828956 7.9101e-4 0.999852 0.6179088 0.999852 0.6172661 0.9831919 0.6585263 0.001208007 0.6418876 1.48153e-4 0.6418873 0.3744357 0.6249392 0.4634081 0.6415887 0.4642642 0.641591 0.001004457 0.5354048 0.9875002 0.5424318 0.9732373 0.5424318 0.9732373 0.5424318 0.9732373 0.5457772 0.9655593 0.5457772 0.9655593 0.5457772 0.9655593 0.5494288 0.9543667 0.5494288 0.9543667 0.5457772 0.9655593 0.5494288 0.9543667 0.5494288 0.9543667 0.5424318 0.9732373 0.5457772 0.9655593 0.5457772 0.9655593 0.5354048 0.9875002 0.5424318 0.9732373 0.5424318 0.9732373 0.5457772 0.9655593 0.5457772 0.9655593 0.5494288 0.9543667 0.5424318 0.9732373 0.5424318 0.9732373 0.5457772 0.9655593 0.5354048 0.9875002 0.5354048 0.9875002 0.5424318 0.9732373 + + + + + + + + + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 0.9960784 1 1 1 1 1 1 1 1 1 0.9960784 0.9960784 0.9960784 + + + + + + + + + + + + + +

42 20 859 860 860 861 861 862 862 863 863 864 864 865 865 866 866 867 867 868 868 869 869 870 870 871 871 872 872 873 873 874 874 875 875 876 876 877 877 878 878 879 879 880 880 881 881 882 882 883 883 884 884 885 885 886 886 887 887 888 888 889 889 890 890 859 1286 1264 2103 2104 2104 2105 2105 2106 2106 2107 2107 2108 2108 2109 2109 2110 2110 2111 2111 2112 2112 2113 2113 2114 2114 2115 2115 2116 2116 2117 2117 2118 2118 2119 2119 2120 2120 2121 2121 2122 2122 2123 2123 2124 2124 2125 2125 2126 2126 2127 2127 2128 2128 2129 2129 2130 2130 2131 2131 2132 2132 2133 2133 2134 2134 2103

+
+ + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

12 0 0 0 27 0 1 1 26 0 2 2 15 1 3 3 6 1 4 4 14 1 5 5 2 2 6 6 4 2 7 7 0 2 8 8 7 3 9 9 1 3 10 10 5 3 11 11 5 4 12 12 8 4 13 13 7 4 14 14 6 5 15 15 20 5 16 16 24 5 17 17 13 6 18 18 10 6 19 19 12 6 20 20 9 7 21 21 12 7 22 22 8 7 23 23 0 8 24 24 33 8 25 25 31 8 26 26 11 9 27 27 41 9 28 28 19 9 29 29 17 10 30 30 14 10 31 31 16 10 32 32 18 11 33 33 30 11 34 34 29 11 35 35 14 12 36 36 24 12 37 37 23 12 38 38 19 13 39 39 16 13 40 40 18 13 41 41 1 14 42 42 34 14 43 43 5 14 44 44 17 15 45 45 41 15 46 46 40 15 47 47 11 16 48 48 18 16 49 49 10 16 50 50 7 17 51 51 1209 17 52 52 3 17 53 53 388 18 54 54 474 18 55 55 471 18 56 56 396 18 57 57 470 18 58 58 474 18 59 59 397 18 60 60 471 18 61 61 398 18 62 62 8 19 63 63 1207 19 64 64 1217 19 65 65 16 20 66 66 23 20 67 67 28 20 68 68 26 21 69 69 1211 21 70 70 12 21 71 71 18 22 72 72 28 22 73 73 29 22 74 74 10 23 75 75 29 23 76 76 27 23 77 77 39 24 78 78 33 24 79 79 38 24 80 80 39 25 81 81 52 25 82 82 53 25 83 83 36 26 84 84 51 26 85 85 48 26 86 86 40 27 87 87 52 27 88 88 38 27 89 89 41 28 90 90 48 28 91 91 57 28 92 92 35 29 93 93 45 29 94 94 47 29 95 95 13 30 96 96 36 30 97 97 11 30 98 98 5 31 99 99 35 31 100 100 9 31 101 101 4 32 102 102 38 32 103 103 33 32 104 104 15 33 105 105 40 33 106 106 38 33 107 107 9 34 108 108 37 34 109 109 13 34 110 110 43 35 111 111 47 35 112 112 45 35 113 113 50 36 114 114 48 36 115 115 51 36 116 116 46 37 117 117 51 37 118 118 47 37 119 119 54 38 120 120 52 38 121 121 55 38 122 122 56 39 123 123 55 39 124 124 57 39 125 125 49 40 126 126 57 40 127 127 48 40 128 128 38 41 129 129 44 41 130 130 33 41 131 131 32 42 132 132 45 42 133 133 34 42 134 134 41 43 135 135 55 43 136 136 40 43 137 137 37 44 138 138 47 44 139 139 51 44 140 140 86 45 141 141 102 45 142 142 78 45 143 143 63 46 144 144 73 46 145 145 83 46 146 146 70 47 147 147 88 47 148 148 92 47 149 149 316 48 150 150 85 48 151 151 65 48 152 152 59 49 153 153 96 49 154 154 76 49 155 155 313 50 156 156 73 50 157 157 58 50 158 158 69 51 159 159 93 51 160 160 320 51 161 161 317 52 162 162 86 52 163 163 66 52 164 164 59 53 165 165 90 53 166 166 318 53 167 167 68 54 168 168 90 54 169 169 88 54 170 170 316 55 171 171 83 55 172 172 81 55 173 173 321 56 174 174 75 56 175 175 95 56 176 176 319 57 177 177 89 57 178 178 69 57 179 179 64 58 180 180 82 58 181 181 317 58 182 182 60 59 183 183 79 59 184 184 315 59 185 185 70 60 186 186 87 60 187 187 67 60 188 188 65 61 189 189 80 61 190 190 62 61 191 191 61 62 192 192 77 62 193 193 60 62 194 194 320 63 195 195 74 63 196 196 313 63 197 197 66 64 198 198 78 64 199 199 61 64 200 200 315 65 201 201 75 65 202 202 314 65 203 203 71 66 204 204 96 66 205 205 72 66 206 206 67 67 207 207 91 67 208 208 319 67 209 209 62 68 210 210 84 68 211 211 64 68 212 212 321 69 213 213 94 69 214 214 71 69 215 215 114 70 216 216 124 70 217 217 138 70 218 218 79 71 219 219 99 71 220 220 75 71 221 221 96 72 222 222 118 72 223 223 120 72 224 224 91 73 225 225 111 73 226 226 115 73 227 227 80 74 228 228 108 74 229 229 84 74 230 230 94 75 231 231 119 75 232 232 118 75 233 233 73 76 234 234 107 76 235 235 83 76 236 236 92 77 237 237 112 77 238 238 116 77 239 239 81 78 240 240 109 78 241 241 85 78 242 242 76 79 243 243 120 79 244 244 100 79 245 245 73 80 246 246 98 80 247 247 97 80 248 248 93 81 249 249 113 81 250 250 117 81 251 251 82 82 252 252 110 82 253 253 86 82 254 254 90 83 255 255 100 83 256 256 114 83 257 257 88 84 258 258 114 84 259 259 112 84 260 260 83 85 261 261 105 85 262 262 81 85 263 263 75 86 264 264 119 86 265 265 95 86 266 266 89 87 267 267 115 87 268 268 113 87 269 269 84 88 270 270 106 88 271 271 82 88 272 272 77 89 273 273 103 89 274 274 79 89 275 275 87 90 276 276 116 90 277 277 111 90 278 278 85 91 279 279 104 91 280 280 80 91 281 281 78 92 282 282 101 92 283 283 77 92 284 284 74 93 285 285 117 93 286 286 98 93 287 287 127 94 288 288 147 94 289 289 123 94 290 290 112 95 291 291 138 95 292 292 136 95 293 293 107 96 294 294 129 96 295 295 105 96 296 296 99 97 297 297 143 97 298 298 119 97 299 299 113 98 300 300 139 98 301 301 137 98 302 302 108 99 303 303 130 99 304 304 106 99 305 305 101 100 306 306 127 100 307 307 103 100 308 308 111 101 309 309 140 101 310 310 135 101 311 311 109 102 312 312 128 102 313 313 104 102 314 314 102 103 315 315 125 103 316 316 101 103 317 317 98 104 318 318 141 104 319 319 122 104 320 320 110 105 321 321 126 105 322 322 102 105 323 323 103 106 324 324 123 106 325 325 99 106 326 326 120 107 327 327 142 107 328 328 144 107 329 329 115 108 330 330 135 108 331 331 139 108 332 332 104 109 333 333 132 109 334 334 108 109 335 335 118 110 336 336 143 110 337 337 142 110 338 338 97 111 339 339 131 111 340 340 107 111 341 341 116 112 342 342 136 112 343 343 140 112 344 344 105 113 345 345 133 113 346 346 109 113 347 347 100 114 348 348 144 114 349 349 124 114 350 350 97 115 351 351 122 115 352 352 121 115 353 353 117 116 354 354 137 116 355 355 141 116 356 356 106 117 357 357 134 117 358 358 110 117 359 359 160 118 360 360 186 118 361 361 184 118 362 362 144 119 363 363 166 119 364 364 168 119 365 365 139 120 366 366 159 120 367 367 163 120 368 368 128 121 369 369 156 121 370 370 132 121 371 371 142 122 372 372 167 122 373 373 166 122 374 374 131 123 375 375 145 123 376 376 155 123 377 377 140 124 378 378 160 124 379 379 164 124 380 380 129 125 381 381 157 125 382 382 133 125 383 383 124 126 384 384 168 126 385 385 148 126 386 386 121 127 387 387 146 127 388 388 145 127 389 389 141 128 390 390 161 128 391 391 165 128 392 392 130 129 393 393 158 129 394 394 134 129 395 395 138 130 396 396 148 130 397 397 162 130 398 398 136 131 399 399 162 131 400 400 160 131 401 401 131 132 402 402 153 132 403 403 129 132 404 404 123 133 405 405 167 133 406 406 143 133 407 407 137 134 408 408 163 134 409 409 161 134 410 410 132 135 411 411 154 135 412 412 130 135 413 413 125 136 414 414 151 136 415 415 127 136 416 416 135 137 417 417 164 137 418 418 159 137 419 419 133 138 420 420 152 138 421 421 128 138 422 422 126 139 423 423 149 139 424 424 125 139 425 425 122 140 426 426 165 140 427 427 146 140 428 428 134 141 429 429 150 141 430 430 126 141 431 431 175 142 432 432 195 142 433 433 171 142 434 434 155 143 435 435 177 143 436 436 153 143 437 437 147 144 438 438 191 144 439 439 167 144 440 440 161 145 441 441 187 145 442 442 185 145 443 443 154 146 444 444 180 146 445 445 178 146 446 446 149 147 447 447 175 147 448 448 151 147 449 449 159 148 450 450 188 148 451 451 183 148 452 452 157 149 453 453 176 149 454 454 152 149 455 455 150 150 456 456 173 150 457 457 149 150 458 458 165 151 459 459 170 151 460 460 146 151 461 461 158 152 462 462 174 152 463 463 150 152 464 464 151 153 465 465 171 153 466 466 147 153 467 467 168 154 468 468 190 154 469 469 192 154 470 470 163 155 471 471 183 155 472 472 187 155 473 473 152 156 474 474 180 156 475 475 156 156 476 476 166 157 477 477 191 157 478 478 190 157 479 479 155 158 480 480 169 158 481 481 179 158 482 482 164 159 483 483 184 159 484 484 188 159 485 485 153 160 486 486 181 160 487 487 157 160 488 488 148 161 489 489 192 161 490 490 172 161 491 491 146 162 492 492 169 162 493 493 145 162 494 494 165 163 495 495 185 163 496 496 189 163 497 497 154 164 498 498 182 164 499 499 158 164 500 500 162 165 501 501 172 165 502 502 186 165 503 503 201 166 504 504 227 166 505 505 225 166 506 506 192 167 507 507 214 167 508 508 216 167 509 509 187 168 510 510 207 168 511 511 211 168 512 512 176 169 513 513 204 169 514 514 180 169 515 515 190 170 516 516 215 170 517 517 214 170 518 518 179 171 519 519 193 171 520 520 203 171 521 521 188 172 522 522 208 172 523 523 212 172 524 524 181 173 525 525 201 173 526 526 205 173 527 527 172 174 528 528 216 174 529 529 196 174 530 530 170 175 531 531 193 175 532 532 169 175 533 533 185 176 534 534 213 176 535 535 189 176 536 536 178 177 537 537 206 177 538 538 182 177 539 539 186 178 540 540 196 178 541 541 210 178 542 542 184 179 543 543 210 179 544 544 208 179 545 545 177 180 546 546 203 180 547 547 201 180 548 548 171 181 549 549 215 181 550 550 191 181 551 551 185 182 552 552 211 182 553 553 209 182 554 554 178 183 555 555 204 183 556 556 202 183 557 557 173 184 558 558 199 184 559 559 175 184 560 560 183 185 561 561 212 185 562 562 207 185 563 563 181 186 564 564 200 186 565 565 176 186 566 566 174 187 567 567 197 187 568 568 173 187 569 569 189 188 570 570 194 188 571 571 170 188 572 572 182 189 573 573 198 189 574 574 174 189 575 575 240 190 576 576 262 190 577 577 264 190 578 578 195 191 579 579 239 191 580 580 215 191 581 581 211 192 582 582 233 192 583 583 209 192 584 584 204 193 585 585 226 193 586 586 202 193 587 587 197 194 588 588 223 194 589 589 199 194 590 590 207 195 591 591 236 195 592 592 231 195 593 593 200 196 594 594 229 196 595 595 224 196 596 596 198 197 597 597 221 197 598 598 197 197 599 599 213 198 600 600 218 198 601 601 194 198 602 602 206 199 603 603 222 199 604 604 198 199 605 605 199 200 606 606 219 200 607 607 195 200 608 608 216 201 609 609 238 201 610 610 240 201 611 611 211 202 612 612 231 202 613 613 235 202 614 614 200 203 615 615 228 203 616 616 204 203 617 617 214 204 618 618 239 204 619 619 238 204 620 620 203 205 621 621 217 205 622 622 227 205 623 623 212 206 624 624 232 206 625 625 236 206 626 626 205 207 627 627 225 207 628 628 229 207 629 629 196 208 630 630 240 208 631 631 220 208 632 632 194 209 633 633 217 209 634 634 193 209 635 635 209 210 636 636 237 210 637 637 213 210 638 638 202 211 639 639 230 211 640 640 206 211 641 641 210 212 642 642 220 212 643 643 234 212 644 644 208 213 645 645 234 213 646 646 232 213 647 647 249 214 648 648 275 214 649 649 273 214 650 650 235 215 651 651 255 215 652 652 259 215 653 653 228 216 654 654 248 216 655 655 252 216 656 656 238 217 657 657 263 217 658 658 262 217 659 659 227 218 660 660 241 218 661 661 251 218 662 662 236 219 663 663 256 219 664 664 260 219 665 665 229 220 666 666 249 220 667 667 253 220 668 668 220 221 669 669 264 221 670 670 244 221 671 671 218 222 672 672 241 222 673 673 217 222 674 674 233 223 675 675 261 223 676 676 237 223 677 677 226 224 678 678 254 224 679 679 230 224 680 680 234 225 681 681 244 225 682 682 258 225 683 683 232 226 684 684 258 226 685 685 256 226 686 686 225 227 687 687 251 227 688 688 249 227 689 689 219 228 690 690 263 228 691 691 239 228 692 692 235 229 693 693 257 229 694 694 233 229 695 695 228 230 696 696 250 230 697 697 226 230 698 698 221 231 699 699 247 231 700 700 223 231 701 701 231 232 702 702 260 232 703 703 255 232 704 704 224 233 705 705 253 233 706 706 248 233 707 707 222 234 708 708 245 234 709 709 221 234 710 710 237 235 711 711 242 235 712 712 218 235 713 713 230 236 714 714 246 236 715 715 222 236 716 716 223 237 717 717 243 237 718 718 219 237 719 719 279 238 720 720 307 238 721 721 283 238 722 722 243 239 723 723 287 239 724 724 263 239 725 725 259 240 726 726 281 240 727 727 257 240 728 728 252 241 729 729 274 241 730 730 250 241 731 731 245 242 732 732 271 242 733 733 247 242 734 734 255 243 735 735 284 243 736 736 279 243 737 737 248 244 738 738 277 244 739 739 272 244 740 740 246 245 741 741 269 245 742 742 245 245 743 743 261 246 744 744 266 246 745 745 242 246 746 746 254 247 747 747 270 247 748 748 246 247 749 749 247 248 750 750 267 248 751 751 243 248 752 752 264 249 753 753 286 249 754 754 288 249 755 755 255 250 756 756 283 250 757 757 259 250 758 758 252 251 759 759 272 251 760 760 276 251 761 761 262 252 762 762 287 252 763 763 286 252 764 764 251 253 765 765 265 253 766 766 275 253 767 767 260 254 768 768 280 254 769 769 284 254 770 770 253 255 771 771 273 255 772 772 277 255 773 773 244 256 774 774 288 256 775 775 268 256 776 776 242 257 777 777 265 257 778 778 241 257 779 779 257 258 780 780 285 258 781 781 261 258 782 782 250 259 783 783 278 259 784 784 254 259 785 785 258 260 786 786 268 260 787 787 282 260 788 788 256 261 789 789 282 261 790 790 280 261 791 791 303 262 792 792 308 262 793 793 298 262 794 794 276 263 795 795 296 263 796 796 300 263 797 797 286 264 798 798 311 264 799 799 310 264 800 800 275 265 801 801 289 265 802 802 299 265 803 803 284 266 804 804 304 266 805 805 308 266 806 806 277 267 807 807 297 267 808 808 301 267 809 809 268 268 810 810 312 268 811 811 292 268 812 812 266 269 813 813 289 269 814 814 265 269 815 815 281 270 816 816 309 270 817 817 285 270 818 818 274 271 819 819 302 271 820 820 278 271 821 821 282 272 822 822 292 272 823 823 306 272 824 824 280 273 825 825 306 273 826 826 304 273 827 827 273 274 828 828 299 274 829 829 297 274 830 830 267 275 831 831 311 275 832 832 287 275 833 833 283 276 834 834 305 276 835 835 281 276 836 836 274 277 837 837 300 277 838 838 298 277 839 839 269 278 840 840 295 278 841 841 271 278 842 842 279 279 843 843 308 279 844 844 303 279 845 845 272 280 846 846 301 280 847 847 296 280 848 848 270 281 849 849 293 281 850 850 269 281 851 851 285 282 852 852 290 282 853 853 266 282 854 854 278 283 855 855 294 283 856 856 270 283 857 857 271 284 858 858 291 284 859 859 267 284 860 860 288 285 861 861 310 285 862 862 312 285 863 863 319 286 864 864 336 286 865 865 67 286 866 866 64 287 867 867 329 287 868 868 62 287 869 869 71 288 870 870 344 288 871 871 321 288 872 872 58 289 873 873 332 289 874 874 322 289 875 875 68 290 876 876 341 290 877 877 337 290 878 878 316 291 879 879 334 291 880 880 330 291 881 881 72 292 882 882 325 292 883 883 345 292 884 884 58 293 885 885 323 293 886 886 313 293 887 887 320 294 888 888 338 294 889 889 69 294 890 890 317 295 891 891 1205 295 892 892 1213 295 893 893 59 296 894 894 339 296 895 895 325 296 896 896 318 297 897 897 337 297 898 898 339 297 899 899 63 298 900 900 330 298 901 901 332 298 902 902 314 299 903 903 344 299 904 904 324 299 905 905 69 300 906 906 340 300 907 907 319 300 908 908 317 301 909 909 1213 301 910 910 1206 301 911 911 315 302 912 912 326 302 913 913 60 302 914 914 70 303 915 915 336 303 916 916 341 303 917 917 65 304 918 918 329 304 919 919 334 304 920 920 60 305 921 921 327 305 922 922 61 305 923 923 313 306 924 924 342 306 925 925 320 306 926 926 61 307 927 927 335 307 928 928 66 307 929 929 314 308 930 930 328 308 931 931 315 308 932 932 72 309 933 933 343 309 934 934 71 309 935 935 359 310 936 936 351 310 937 937 354 310 938 938 374 311 939 939 369 311 940 940 366 311 941 941 359 312 942 942 378 312 943 943 363 312 944 944 352 39 945 945 366 39 946 946 351 39 947 947 360 313 948 948 379 313 949 949 364 313 950 950 354 314 951 951 380 314 952 952 365 314 953 953 361 315 954 954 374 315 955 955 359 315 956 956 353 316 957 957 369 316 958 958 354 316 959 959 362 317 960 960 375 317 961 961 360 317 962 962 355 318 963 963 372 318 964 964 357 318 965 965 363 319 966 966 373 319 967 967 358 319 968 968 356 320 969 969 370 320 970 970 355 320 971 971 364 321 972 972 367 321 973 973 352 321 974 974 357 322 975 975 368 322 976 976 353 322 977 977 365 323 978 978 376 323 979 979 361 323 980 980 358 324 981 981 377 324 982 982 362 324 983 983 351 325 984 984 371 325 985 985 356 325 986 986 382 326 987 987 473 326 988 988 390 326 989 989 472 327 990 990 382 327 991 991 390 327 992 992 473 328 993 993 472 328 994 994 390 328 995 995 29 329 996 996 418 329 997 997 419 329 998 998 24 330 999 999 409 330 1000 1000 23 330 1001 1001 406 331 1002 1002 411 331 1003 1003 412 331 1004 1004 21 332 1005 1005 410 332 1006 1006 415 332 1007 1007 27 333 1008 1008 417 333 1009 1009 26 333 1010 1010 28 334 1011 1011 409 334 1012 1012 418 334 1013 1013 27 335 1014 1014 419 335 1015 1015 407 335 1016 1016 22 336 1017 1017 408 336 1018 1018 410 336 1019 1019 25 337 1020 1020 417 337 1021 1021 408 337 1022 1022 20 338 1023 1023 416 338 1024 1024 24 338 1025 1025 419 339 1026 1026 428 339 1027 1027 429 339 1028 1028 415 340 1029 1029 422 340 1030 1030 421 340 1031 1031 408 341 1032 1032 426 341 1033 1033 425 341 1034 1034 416 342 1035 1035 423 342 1036 1036 409 342 1037 1037 407 343 1038 1038 429 343 1039 1039 427 343 1040 1040 414 344 1041 1041 424 344 1042 1042 416 344 1043 1043 418 345 1044 1044 423 345 1045 1045 428 345 1046 1046 410 346 1047 1047 425 346 1048 1048 422 346 1049 1049 407 347 1050 1050 426 347 1051 1051 417 347 1052 1052 422 348 1053 1053 454 348 1054 1054 457 348 1055 1055 428 349 1056 1056 456 349 1057 1057 451 349 1058 1058 421 350 1059 1059 457 350 1060 1060 458 350 1061 1061 420 351 1062 1062 455 351 1063 1063 424 351 1064 1064 427 352 1065 1065 450 352 1066 1066 452 352 1067 1067 424 353 1068 1068 456 353 1069 1069 423 353 1070 1070 425 354 1071 1071 453 354 1072 1072 454 354 1073 1073 429 355 1074 1074 451 355 1075 1075 450 355 1076 1076 427 356 1077 1077 453 356 1078 1078 426 356 1079 1079 455 357 1080 1080 433 357 1081 1081 456 357 1082 1082 459 358 1083 1083 434 358 1084 1084 455 358 1085 1085 451 359 1086 1086 433 359 1087 1087 438 359 1088 1088 457 360 1089 1089 435 360 1090 1090 432 360 1091 1091 452 361 1092 1092 436 361 1093 1093 453 361 1094 1094 452 362 1095 1095 439 362 1096 1096 437 362 1097 1097 450 363 1098 1098 438 363 1099 1099 439 363 1100 1100 458 364 1101 1101 432 364 1102 1102 431 364 1103 1103 454 365 1104 1104 436 365 1105 1105 435 365 1106 1106 432 366 1107 1107 464 366 1108 1108 467 366 1109 1109 438 367 1110 1110 466 367 1111 1111 461 367 1112 1112 432 368 1113 1113 468 368 1114 1114 431 368 1115 1115 430 369 1116 1116 465 369 1117 1117 434 369 1118 1118 437 370 1119 1119 460 370 1120 1120 462 370 1121 1121 434 371 1122 1122 466 371 1123 1123 433 371 1124 1124 435 372 1125 1125 463 372 1126 1126 464 372 1127 1127 439 373 1128 1128 461 373 1129 1129 460 373 1130 1130 437 374 1131 1131 463 374 1132 1132 436 374 1133 1133 462 375 1134 1134 446 375 1135 1135 463 375 1136 1136 460 376 1137 1137 448 376 1138 1138 449 376 1139 1139 468 377 1140 1140 442 377 1141 1141 441 377 1142 1142 464 378 1143 1143 446 378 1144 1144 445 378 1145 1145 465 379 1146 1146 443 379 1147 1147 466 379 1148 1148 469 380 1149 1149 444 380 1150 1150 465 380 1151 1151 462 381 1152 1152 449 381 1153 1153 447 381 1154 1154 461 382 1155 1155 443 382 1156 1156 448 382 1157 1157 467 383 1158 1158 445 383 1159 1159 442 383 1160 1160 440 384 1161 1161 473 384 1162 1162 444 384 1163 1163 447 385 1164 1164 381 385 1165 1165 387 385 1166 1166 444 386 1167 1167 389 386 1168 1168 443 386 1169 1169 445 387 1170 1170 396 387 1171 1171 388 387 1172 1172 449 388 1173 1173 385 388 1174 1174 381 388 1175 1175 447 389 1176 1176 396 389 1177 1177 446 389 1178 1178 442 390 1179 1179 388 390 1180 1180 397 390 1181 1181 448 391 1182 1182 389 391 1183 1183 385 391 1184 1184 442 392 1185 1185 398 392 1186 1186 441 392 1187 1187 386 18 1188 1188 389 18 1189 1189 382 18 1190 1190 395 18 1191 1191 385 18 1192 1192 386 18 1193 1193 387 18 1194 1194 395 18 1195 1195 470 18 1196 1196 728 393 1197 1197 532 393 1198 1198 729 393 1199 1199 481 394 1200 1200 519 394 1201 1201 719 394 1202 1202 477 395 1203 1203 505 395 1204 1204 506 395 1205 1205 729 396 1206 1206 533 396 1207 1207 730 396 1208 1208 719 397 1209 1209 520 397 1210 1210 720 397 1211 1211 477 398 1212 1212 507 398 1213 1213 711 398 1214 1214 730 399 1215 1215 534 399 1216 1216 485 399 1217 1217 720 400 1218 1218 521 400 1219 1219 721 400 1220 1220 711 401 1221 1221 508 401 1222 1222 712 401 1223 1223 485 402 1224 1224 503 402 1225 1225 710 402 1226 1226 721 403 1227 1227 522 403 1228 1228 722 403 1229 1229 712 404 1230 1230 509 404 1231 1231 713 404 1232 1232 722 405 1233 1233 523 405 1234 1234 723 405 1235 1235 713 406 1236 1236 510 406 1237 1237 714 406 1238 1238 723 407 1239 1239 524 407 1240 1240 482 407 1241 1241 714 408 1242 1242 511 408 1243 1243 715 408 1244 1244 483 409 1245 1245 524 409 1246 1246 525 409 1247 1247 715 410 1248 1248 512 410 1249 1249 478 410 1250 1250 483 411 1251 1251 526 411 1252 1252 724 411 1253 1253 478 412 1254 1254 513 412 1255 1255 479 412 1256 1256 724 413 1257 1257 527 413 1258 1258 725 413 1259 1259 479 414 1260 1260 514 414 1261 1261 480 414 1262 1262 725 415 1263 1263 528 415 1264 1264 726 415 1265 1265 480 416 1266 1266 515 416 1267 1267 716 416 1268 1268 726 417 1269 1269 529 417 1270 1270 484 417 1271 1271 716 418 1272 1272 516 418 1273 1273 717 418 1274 1274 484 419 1275 1275 530 419 1276 1276 727 419 1277 1277 717 420 1278 1278 517 420 1279 1279 718 420 1280 1280 475 421 1281 1281 503 421 1282 1282 504 421 1283 1283 728 422 1284 1284 530 422 1285 1285 531 422 1286 1286 481 423 1287 1287 517 423 1288 1288 518 423 1289 1289 475 424 1290 1290 505 424 1291 1291 476 424 1292 1292 557 425 1293 1293 588 425 1294 1294 589 425 1295 1295 543 426 1296 1296 576 426 1297 1297 544 426 1298 1298 558 427 1299 1299 589 427 1300 1300 590 427 1301 1301 544 428 1302 1302 577 428 1303 1303 545 428 1304 1304 559 429 1305 1305 590 429 1306 1306 591 429 1307 1307 545 430 1308 1308 578 430 1309 1309 546 430 1310 1310 560 431 1311 1311 591 431 1312 1312 592 431 1313 1313 546 432 1314 1314 579 432 1315 1315 547 432 1316 1316 560 433 1317 1317 593 433 1318 1318 561 433 1319 1319 547 434 1320 1320 580 434 1321 1321 548 434 1322 1322 562 435 1323 1323 593 435 1324 1324 594 435 1325 1325 548 436 1326 1326 581 436 1327 1327 549 436 1328 1328 536 437 1329 1329 567 437 1330 1330 568 437 1331 1331 563 438 1332 1332 594 438 1333 1333 595 438 1334 1334 549 439 1335 1335 582 439 1336 1336 550 439 1337 1337 536 440 1338 1338 569 440 1339 1339 537 440 1340 1340 564 441 1341 1341 595 441 1342 1342 596 441 1343 1343 550 442 1344 1344 583 442 1345 1345 551 442 1346 1346 537 443 1347 1347 570 443 1348 1348 538 443 1349 1349 565 444 1350 1350 596 444 1351 1351 597 444 1352 1352 551 445 1353 1353 584 445 1354 1354 552 445 1355 1355 538 446 1356 1356 571 446 1357 1357 539 446 1358 1358 566 447 1359 1359 597 447 1360 1360 598 447 1361 1361 553 448 1362 1362 584 448 1363 1363 585 448 1364 1364 539 449 1365 1365 572 449 1366 1366 540 449 1367 1367 535 450 1368 1368 598 450 1369 1369 567 450 1370 1370 554 451 1371 1371 585 451 1372 1372 586 451 1373 1373 540 452 1374 1374 573 452 1375 1375 541 452 1376 1376 555 453 1377 1377 586 453 1378 1378 587 453 1379 1379 541 454 1380 1380 574 454 1381 1381 542 454 1382 1382 556 455 1383 1383 587 455 1384 1384 588 455 1385 1385 542 456 1386 1386 575 456 1387 1387 543 456 1388 1388 625 457 1389 1389 658 457 1390 1390 626 457 1391 1391 613 458 1392 1392 644 458 1393 1393 645 458 1394 1394 600 459 1395 1395 631 459 1396 1396 632 459 1397 1397 626 460 1398 1398 659 460 1399 1399 627 460 1400 1400 614 461 1401 1401 645 461 1402 1402 646 461 1403 1403 601 462 1404 1404 632 462 1405 1405 633 462 1406 1406 627 463 1407 1407 660 463 1408 1408 628 463 1409 1409 614 464 1410 1410 647 464 1411 1411 615 464 1412 1412 602 465 1413 1413 633 465 1414 1414 634 465 1415 1415 628 466 1416 1416 661 466 1417 1417 629 466 1418 1418 615 467 1419 1419 648 467 1420 1420 616 467 1421 1421 603 468 1422 1422 634 468 1423 1423 635 468 1424 1424 629 469 1425 1425 662 469 1426 1426 630 469 1427 1427 616 470 1428 1428 649 470 1429 1429 617 470 1430 1430 604 471 1431 1431 635 471 1432 1432 636 471 1433 1433 599 472 1434 1434 662 472 1435 1435 631 472 1436 1436 617 473 1437 1437 650 473 1438 1438 618 473 1439 1439 605 474 1440 1440 636 474 1441 1441 637 474 1442 1442 618 475 1443 1443 651 475 1444 1444 619 475 1445 1445 606 476 1446 1446 637 476 1447 1447 638 476 1448 1448 619 477 1449 1449 652 477 1450 1450 620 477 1451 1451 607 478 1452 1452 638 478 1453 1453 639 478 1454 1454 620 479 1455 1455 653 479 1456 1456 621 479 1457 1457 608 480 1458 1458 639 480 1459 1459 640 480 1460 1460 621 481 1461 1461 654 481 1462 1462 622 481 1463 1463 609 482 1464 1464 640 482 1465 1465 641 482 1466 1466 622 483 1467 1467 655 483 1468 1468 623 483 1469 1469 610 484 1470 1470 641 484 1471 1471 642 484 1472 1472 623 485 1473 1473 656 485 1474 1474 624 485 1475 1475 611 486 1476 1476 642 486 1477 1477 643 486 1478 1478 624 487 1479 1479 657 487 1480 1480 625 487 1481 1481 612 488 1482 1482 643 488 1483 1483 644 488 1484 1484 652 489 1485 1485 685 489 1486 1486 653 489 1487 1487 640 490 1488 1488 671 490 1489 1489 672 490 1490 1490 653 491 1491 1491 686 491 1492 1492 654 491 1493 1493 641 492 1494 1494 672 492 1495 1495 673 492 1496 1496 654 493 1497 1497 687 493 1498 1498 655 493 1499 1499 642 494 1500 1500 673 494 1501 1501 674 494 1502 1502 655 495 1503 1503 688 495 1504 1504 656 495 1505 1505 643 496 1506 1506 674 496 1507 1507 675 496 1508 1508 656 497 1509 1509 689 497 1510 1510 657 497 1511 1511 644 498 1512 1512 675 498 1513 1513 676 498 1514 1514 657 499 1515 1515 690 499 1516 1516 658 499 1517 1517 645 500 1518 1518 676 500 1519 1519 677 500 1520 1520 631 501 1521 1521 664 501 1522 1522 632 501 1523 1523 658 502 1524 1524 691 502 1525 1525 659 502 1526 1526 646 503 1527 1527 677 503 1528 1528 678 503 1529 1529 633 504 1530 1530 664 504 1531 1531 665 504 1532 1532 659 505 1533 1533 692 505 1534 1534 660 505 1535 1535 647 506 1536 1536 678 506 1537 1537 679 506 1538 1538 634 507 1539 1539 665 507 1540 1540 666 507 1541 1541 660 508 1542 1542 693 508 1543 1543 661 508 1544 1544 648 509 1545 1545 679 509 1546 1546 680 509 1547 1547 635 510 1548 1548 666 510 1549 1549 667 510 1550 1550 661 511 1551 1551 694 511 1552 1552 662 511 1553 1553 648 512 1554 1554 681 512 1555 1555 649 512 1556 1556 636 513 1557 1557 667 513 1558 1558 668 513 1559 1559 662 514 1560 1560 663 514 1561 1561 631 514 1562 1562 649 515 1563 1563 682 515 1564 1564 650 515 1565 1565 637 516 1566 1566 668 516 1567 1567 669 516 1568 1568 650 517 1569 1569 683 517 1570 1570 651 517 1571 1571 638 518 1572 1572 669 518 1573 1573 670 518 1574 1574 651 519 1575 1575 684 519 1576 1576 652 519 1577 1577 639 520 1578 1578 670 520 1579 1579 671 520 1580 1580 718 521 1581 1581 494 521 1582 1582 717 521 1583 1583 709 522 1584 1584 475 522 1585 1585 476 522 1586 1586 697 523 1587 1587 727 523 1588 1588 728 523 1589 1589 717 524 1590 1590 705 524 1591 1591 716 524 1592 1592 502 525 1593 1593 710 525 1594 1594 475 525 1595 1595 698 526 1596 1596 484 526 1597 1597 727 526 1598 1598 716 527 1599 1599 706 527 1600 1600 480 527 1601 1601 487 528 1602 1602 726 528 1603 1603 484 528 1604 1604 488 529 1605 1605 725 529 1606 1606 726 529 1607 1607 479 530 1608 1608 495 530 1609 1609 478 530 1610 1610 725 531 1611 1611 489 531 1612 1612 724 531 1613 1613 478 532 1614 1614 496 532 1615 1615 715 532 1616 1616 724 533 1617 1617 490 533 1618 1618 483 533 1619 1619 714 534 1620 1620 496 534 1621 1621 497 534 1622 1622 483 531 1623 1623 700 531 1624 1624 482 531 1625 1625 713 535 1626 1626 497 535 1627 1627 498 535 1628 1628 482 531 1629 1629 701 531 1630 1630 723 531 1631 1631 712 536 1632 1632 498 536 1633 1633 499 536 1634 1634 485 531 1635 1635 501 531 1636 1636 695 531 1637 1637 723 531 1638 1638 491 531 1639 1639 722 531 1640 1640 711 537 1641 1641 499 537 1642 1642 708 537 1643 1643 730 538 1644 1644 695 538 1645 1645 486 538 1646 1646 722 539 1647 1647 702 539 1648 1648 721 539 1649 1649 477 540 1650 1650 708 540 1651 1651 500 540 1652 1652 729 541 1653 1653 486 541 1654 1654 696 541 1655 1655 721 531 1656 1656 703 531 1657 1657 720 531 1658 1658 476 531 1659 1659 500 531 1660 1660 709 531 1661 1661 728 531 1662 1662 696 531 1663 1663 697 531 1664 1664 720 542 1665 1665 704 542 1666 1666 719 542 1667 1667 719 543 1668 1668 492 543 1669 1669 481 543 1670 1670 481 544 1671 1671 493 544 1672 1672 718 544 1673 1673 480 545 1674 1674 707 545 1675 1675 479 545 1676 1676 777 546 1677 1677 749 546 1678 1678 776 546 1679 1679 789 547 1680 1680 735 547 1681 1681 736 547 1682 1682 794 548 1683 1683 762 548 1684 1684 731 548 1685 1685 776 549 1686 1686 750 549 1687 1687 775 549 1688 1688 788 550 1689 1689 736 550 1690 1690 737 550 1691 1691 775 551 1692 1692 751 551 1693 1693 774 551 1694 1694 787 552 1695 1695 737 552 1696 1696 738 552 1697 1697 774 553 1698 1698 752 553 1699 1699 773 553 1700 1700 786 554 1701 1701 738 554 1702 1702 739 554 1703 1703 773 555 1704 1704 753 555 1705 1705 772 555 1706 1706 785 556 1707 1707 739 556 1708 1708 740 556 1709 1709 772 557 1710 1710 754 557 1711 1711 771 557 1712 1712 784 558 1713 1713 740 558 1714 1714 741 558 1715 1715 771 559 1716 1716 755 559 1717 1717 770 559 1718 1718 783 560 1719 1719 741 560 1720 1720 742 560 1721 1721 770 561 1722 1722 756 561 1723 1723 769 561 1724 1724 782 562 1725 1725 742 562 1726 1726 743 562 1727 1727 769 563 1728 1728 757 563 1729 1729 768 563 1730 1730 782 564 1731 1731 744 564 1732 1732 781 564 1733 1733 768 565 1734 1734 758 565 1735 1735 767 565 1736 1736 781 566 1737 1737 745 566 1738 1738 780 566 1739 1739 793 567 1740 1740 731 567 1741 1741 732 567 1742 1742 767 568 1743 1743 759 568 1744 1744 766 568 1745 1745 780 569 1746 1746 746 569 1747 1747 779 569 1748 1748 792 570 1749 1749 732 570 1750 1750 733 570 1751 1751 765 571 1752 1752 759 571 1753 1753 760 571 1754 1754 779 572 1755 1755 747 572 1756 1756 778 572 1757 1757 791 573 1758 1758 733 573 1759 1759 734 573 1760 1760 764 574 1761 1761 760 574 1762 1762 761 574 1763 1763 778 575 1764 1764 748 575 1765 1765 777 575 1766 1766 790 576 1767 1767 734 576 1768 1768 735 576 1769 1769 763 577 1770 1770 761 577 1771 1771 762 577 1772 1772 514 578 1773 1773 782 578 1774 1774 515 578 1775 1775 528 579 1776 1776 770 579 1777 1777 769 579 1778 1778 513 580 1779 1779 783 580 1780 1780 514 580 1781 1781 527 581 1782 1782 771 581 1783 1783 770 581 1784 1784 512 582 1785 1785 784 582 1786 1786 513 582 1787 1787 526 583 1788 1788 772 583 1789 1789 771 583 1790 1790 511 584 1791 1791 785 584 1792 1792 512 584 1793 1793 525 585 1794 1794 773 585 1795 1795 772 585 1796 1796 510 586 1797 1797 786 586 1798 1798 511 586 1799 1799 524 587 1800 1800 774 587 1801 1801 773 587 1802 1802 509 588 1803 1803 787 588 1804 1804 510 588 1805 1805 523 589 1806 1806 775 589 1807 1807 774 589 1808 1808 508 590 1809 1809 788 590 1810 1810 509 590 1811 1811 522 591 1812 1812 776 591 1813 1813 775 591 1814 1814 503 592 1815 1815 763 592 1816 1816 794 592 1817 1817 507 593 1818 1818 789 593 1819 1819 508 593 1820 1820 521 594 1821 1821 777 594 1822 1822 776 594 1823 1823 534 595 1824 1824 764 595 1825 1825 763 595 1826 1826 506 596 1827 1827 790 596 1828 1828 507 596 1829 1829 520 597 1830 1830 778 597 1831 1831 777 597 1832 1832 533 598 1833 1833 765 598 1834 1834 764 598 1835 1835 505 599 1836 1836 791 599 1837 1837 506 599 1838 1838 518 600 1839 1839 778 600 1840 1840 519 600 1841 1841 532 601 1842 1842 766 601 1843 1843 765 601 1844 1844 504 602 1845 1845 792 602 1846 1846 505 602 1847 1847 517 603 1848 1848 779 603 1849 1849 518 603 1850 1850 531 604 1851 1851 767 604 1852 1852 766 604 1853 1853 503 605 1854 1854 793 605 1855 1855 504 605 1856 1856 516 606 1857 1857 780 606 1858 1858 517 606 1859 1859 530 607 1860 1860 768 607 1861 1861 767 607 1862 1862 515 608 1863 1863 781 608 1864 1864 516 608 1865 1865 529 609 1866 1866 769 609 1867 1867 768 609 1868 1868 821 610 1869 1869 489 610 1870 1870 699 610 1871 1871 706 611 1872 1872 799 611 1873 1873 707 611 1874 1874 795 612 1875 1875 699 612 1876 1876 488 612 1877 1877 705 613 1878 1878 806 613 1879 1879 706 613 1880 1880 811 614 1881 1881 488 614 1882 1882 487 614 1883 1883 501 615 1884 1884 822 615 1885 1885 695 615 1886 1886 705 616 1887 1887 798 616 1888 1888 807 616 1889 1889 826 617 1890 1890 487 617 1891 1891 698 617 1892 1892 502 618 1893 1893 805 618 1894 1894 501 618 1895 1895 494 619 1896 1896 797 619 1897 1897 798 619 1898 1898 812 620 1899 1899 698 620 1900 1900 697 620 1901 1901 709 621 1902 1902 823 621 1903 1903 502 621 1904 1904 493 622 1905 1905 824 622 1906 1906 797 622 1907 1907 696 623 1908 1908 812 623 1909 1909 697 623 1910 1910 500 624 1911 1911 818 624 1912 1912 709 624 1913 1913 492 625 1914 1914 816 625 1915 1915 824 625 1916 1916 486 626 1917 1917 802 626 1918 1918 696 626 1919 1919 708 627 1920 1920 801 627 1921 1921 500 627 1922 1922 704 628 1923 1923 817 628 1924 1924 816 628 1925 1925 695 629 1926 1926 813 629 1927 1927 486 629 1928 1928 499 630 1929 1929 804 630 1930 1930 708 630 1931 1931 703 631 1932 1932 808 631 1933 1933 817 631 1934 1934 498 632 1935 1935 800 632 1936 1936 499 632 1937 1937 702 633 1938 1938 809 633 1939 1939 808 633 1940 1940 497 634 1941 1941 814 634 1942 1942 498 634 1943 1943 491 635 1944 1944 796 635 1945 1945 809 635 1946 1946 496 636 1947 1947 803 636 1948 1948 497 636 1949 1949 701 637 1950 1950 820 637 1951 1951 796 637 1952 1952 495 638 1953 1953 815 638 1954 1954 496 638 1955 1955 700 639 1956 1956 825 639 1957 1957 820 639 1958 1958 707 640 1959 1959 819 640 1960 1960 495 640 1961 1961 490 641 1962 1962 810 641 1963 1963 825 641 1964 1964 1019 642 1965 1965 406 642 1966 1966 412 642 1967 1967 1007 643 1968 1968 412 643 1969 1969 392 643 1970 1970 1017 644 1971 1971 403 644 1972 1972 406 644 1973 1973 1005 645 1974 1974 346 645 1975 1975 384 645 1976 1976 1012 646 1977 1977 350 646 1978 1978 401 646 1979 1979 1008 647 1980 1980 347 647 1981 1981 393 647 1982 1982 1015 648 1983 1983 405 648 1984 1984 404 648 1985 1985 411 649 1986 1986 1002 649 1987 1987 349 649 1988 1988 999 650 1989 1989 394 650 1990 1990 346 650 1991 1991 1003 651 1992 1992 404 651 1993 1993 350 651 1994 1994 383 652 1995 1995 1018 652 1996 1996 411 652 1997 1997 1009 653 1998 1998 348 653 1999 1999 394 653 2000 2000 1000 654 2001 2001 349 654 2002 2002 347 654 2003 2003 383 655 2004 2004 1006 655 2005 2005 391 655 2006 2006 1014 656 2007 2007 413 656 2008 2008 403 656 2009 2009 1010 657 2010 2010 384 657 2011 2011 399 657 2012 2012 1001 658 2013 2013 392 658 2014 2014 348 658 2015 2015 1006 659 2016 2016 400 659 2017 2017 391 659 2018 2018 1011 660 2019 2019 399 660 2020 2020 400 660 2021 2021 1013 661 2022 2022 393 661 2023 2023 402 661 2024 2024 1020 662 2025 2025 401 662 2026 2026 413 662 2027 2027 1016 663 2028 2028 402 663 2029 2029 405 663 2030 2030 1023 664 2031 2031 1022 664 2032 2032 1021 664 2033 2033 847 665 2034 2034 1046 665 2035 2035 848 665 2036 2036 834 666 2037 2037 1033 666 2038 2038 835 666 2039 2039 848 667 2040 2040 1047 667 2041 2041 849 667 2042 2042 835 668 2043 2043 1034 668 2044 2044 836 668 2045 2045 849 669 2046 2046 1048 669 2047 2047 850 669 2048 2048 836 670 2049 2049 1035 670 2050 2050 837 670 2051 2051 850 671 2052 2052 1049 671 2053 2053 851 671 2054 2054 837 672 2055 2055 1036 672 2056 2056 838 672 2057 2057 851 673 2058 2058 1050 673 2059 2059 852 673 2060 2060 838 674 2061 2061 1037 674 2062 2062 839 674 2063 2063 852 675 2064 2064 1051 675 2065 2065 853 675 2066 2066 839 676 2067 2067 1038 676 2068 2068 840 676 2069 2069 853 677 2070 2070 1052 677 2071 2071 854 677 2072 2072 840 678 2073 2073 1039 678 2074 2074 841 678 2075 2075 827 679 2076 2076 1026 679 2077 2077 828 679 2078 2078 854 680 2079 2079 1053 680 2080 2080 855 680 2081 2081 841 681 2082 2082 1040 681 2083 2083 842 681 2084 2084 828 682 2085 2085 1027 682 2086 2086 829 682 2087 2087 855 683 2088 2088 1054 683 2089 2089 856 683 2090 2090 842 684 2091 2091 1041 684 2092 2092 843 684 2093 2093 829 685 2094 2094 1028 685 2095 2095 830 685 2096 2096 856 686 2097 2097 1055 686 2098 2098 857 686 2099 2099 843 687 2100 2100 1042 687 2101 2101 844 687 2102 2102 830 688 2103 2103 1029 688 2104 2104 831 688 2105 2105 857 689 2106 2106 1056 689 2107 2107 858 689 2108 2108 844 690 2109 2109 1043 690 2110 2110 845 690 2111 2111 831 691 2112 2112 1030 691 2113 2113 832 691 2114 2114 858 692 2115 2115 1025 692 2116 2116 827 692 2117 2117 845 693 2118 2118 1044 693 2119 2119 846 693 2120 2120 832 694 2121 2121 1031 694 2122 2122 833 694 2123 2123 846 695 2124 2124 1045 695 2125 2125 847 695 2126 2126 833 696 2127 2127 1032 696 2128 2128 834 696 2129 2129 975 697 2130 2130 1064 697 2131 2131 1065 697 2132 2132 988 698 2133 2133 1079 698 2134 2134 989 698 2135 2135 975 699 2136 2136 1066 699 2137 2137 976 699 2138 2138 989 700 2139 2139 1080 700 2140 2140 990 700 2141 2141 976 701 2142 2142 1067 701 2143 2143 977 701 2144 2144 990 702 2145 2145 1081 702 2146 2146 991 702 2147 2147 977 703 2148 2148 1068 703 2149 2149 978 703 2150 2150 992 704 2151 2151 1081 704 2152 2152 1082 704 2153 2153 978 705 2154 2154 1069 705 2155 2155 979 705 2156 2156 993 706 2157 2157 1082 706 2158 2158 1083 706 2159 2159 979 707 2160 2160 1070 707 2161 2161 980 707 2162 2162 994 708 2163 2163 1083 708 2164 2164 1084 708 2165 2165 980 709 2166 2166 1071 709 2167 2167 981 709 2168 2168 968 710 2169 2169 1057 710 2170 2170 1058 710 2171 2171 995 711 2172 2172 1084 711 2173 2173 1085 711 2174 2174 981 712 2175 2175 1072 712 2176 2176 982 712 2177 2177 969 713 2178 2178 1058 713 2179 2179 1059 713 2180 2180 996 714 2181 2181 1085 714 2182 2182 1086 714 2183 2183 982 715 2184 2184 1073 715 2185 2185 983 715 2186 2186 970 716 2187 2187 1059 716 2188 2188 1060 716 2189 2189 997 717 2190 2190 1086 717 2191 2191 1087 717 2192 2192 983 718 2193 2193 1074 718 2194 2194 984 718 2195 2195 971 719 2196 2196 1060 719 2197 2197 1061 719 2198 2198 998 720 2199 2199 1087 720 2200 2200 1088 720 2201 2201 984 721 2202 2202 1075 721 2203 2203 985 721 2204 2204 972 722 2205 2205 1061 722 2206 2206 1062 722 2207 2207 967 723 2208 2208 1088 723 2209 2209 1057 723 2210 2210 985 724 2211 2211 1076 724 2212 2212 986 724 2213 2213 973 725 2214 2214 1062 725 2215 2215 1063 725 2216 2216 986 726 2217 2217 1077 726 2218 2218 987 726 2219 2219 974 727 2220 2220 1063 727 2221 2221 1064 727 2222 2222 987 728 2223 2223 1078 728 2224 2224 988 728 2225 2225 1104 729 2226 2226 1133 729 2227 2227 963 729 2228 2228 956 730 2229 2229 1120 730 2230 2230 1098 730 2231 2231 963 731 2232 2232 1134 731 2233 2233 1105 731 2234 2234 1098 732 2235 2235 1121 732 2236 2236 957 732 2237 2237 1106 733 2238 2238 1134 733 2239 2239 1135 733 2240 2240 957 734 2241 2241 1122 734 2242 2242 1099 734 2243 2243 1107 735 2244 2244 1135 735 2245 2245 1136 735 2246 2246 1099 736 2247 2247 1123 736 2248 2248 958 736 2249 2249 1090 737 2250 2250 1109 737 2251 2251 1110 737 2252 2252 1108 738 2253 2253 1136 738 2254 2254 1137 738 2255 2255 958 739 2256 2256 1124 739 2257 2257 959 739 2258 2258 1091 740 2259 2259 1110 740 2260 2260 1111 740 2261 2261 964 741 2262 2262 1137 741 2263 2263 1138 741 2264 2264 959 742 2265 2265 1125 742 2266 2266 960 742 2267 2267 955 743 2268 2268 1111 743 2269 2269 1112 743 2270 2270 965 744 2271 2271 1138 744 2272 2272 1139 744 2273 2273 960 745 2274 2274 1126 745 2275 2275 1100 745 2276 2276 1092 746 2277 2277 1112 746 2278 2278 1113 746 2279 2279 966 747 2280 2280 1139 747 2281 2281 1140 747 2282 2282 1100 748 2283 2283 1127 748 2284 2284 1101 748 2285 2285 1093 749 2286 2286 1113 749 2287 2287 1114 749 2288 2288 1089 750 2289 2289 1140 750 2290 2290 1109 750 2291 2291 1101 751 2292 2292 1128 751 2293 2293 961 751 2294 2294 1094 752 2295 2295 1114 752 2296 2296 1115 752 2297 2297 961 753 2298 2298 1129 753 2299 2299 1102 753 2300 2300 1095 754 2301 2301 1115 754 2302 2302 1116 754 2303 2303 1102 755 2304 2304 1130 755 2305 2305 962 755 2306 2306 1096 756 2307 2307 1116 756 2308 2308 1117 756 2309 2309 962 757 2310 2310 1131 757 2311 2311 1103 757 2312 2312 1097 758 2313 2313 1117 758 2314 2314 1118 758 2315 2315 1103 759 2316 2316 1132 759 2317 2317 1104 759 2318 2318 1097 760 2319 2319 1119 760 2320 2320 956 760 2321 2321 928 761 2322 2322 1145 761 2323 2323 1146 761 2324 2324 923 762 2325 2325 1172 762 2326 2326 1141 762 2327 2327 941 763 2328 2328 1160 763 2329 2329 942 763 2330 2330 929 764 2331 2331 1146 764 2332 2332 1147 764 2333 2333 942 765 2334 2334 1161 765 2335 2335 943 765 2336 2336 930 766 2337 2337 1147 766 2338 2338 1148 766 2339 2339 943 767 2340 2340 1162 767 2341 2341 944 767 2342 2342 931 768 2343 2343 1148 768 2344 2344 1149 768 2345 2345 944 769 2346 2346 1163 769 2347 2347 945 769 2348 2348 932 770 2349 2349 1149 770 2350 2350 1150 770 2351 2351 945 771 2352 2352 1164 771 2353 2353 946 771 2354 2354 933 772 2355 2355 1150 772 2356 2356 1151 772 2357 2357 946 773 2358 2358 1165 773 2359 2359 947 773 2360 2360 933 774 2361 2361 1152 774 2362 2362 934 774 2363 2363 947 775 2364 2364 1166 775 2365 2365 948 775 2366 2366 934 776 2367 2367 1153 776 2368 2368 935 776 2369 2369 948 777 2370 2370 1167 777 2371 2371 949 777 2372 2372 935 778 2373 2373 1154 778 2374 2374 936 778 2375 2375 950 779 2376 2376 1167 779 2377 2377 1168 779 2378 2378 936 780 2379 2379 1155 780 2380 2380 937 780 2381 2381 924 781 2382 2382 1141 781 2383 2383 1142 781 2384 2384 951 782 2385 2385 1168 782 2386 2386 1169 782 2387 2387 937 783 2388 2388 1156 783 2389 2389 938 783 2390 2390 925 784 2391 2391 1142 784 2392 2392 1143 784 2393 2393 952 785 2394 2394 1169 785 2395 2395 1170 785 2396 2396 938 786 2397 2397 1157 786 2398 2398 939 786 2399 2399 926 787 2400 2400 1143 787 2401 2401 1144 787 2402 2402 953 788 2403 2403 1170 788 2404 2404 1171 788 2405 2405 939 789 2406 2406 1158 789 2407 2407 940 789 2408 2408 927 790 2409 2409 1144 790 2410 2410 1145 790 2411 2411 954 791 2412 2412 1171 791 2413 2413 1172 791 2414 2414 940 792 2415 2415 1159 792 2416 2416 941 792 2417 2417 914 793 2418 2418 1197 793 2419 2419 915 793 2420 2420 902 794 2421 2421 1183 794 2422 2422 1184 794 2423 2423 915 795 2424 2424 1198 795 2425 2425 916 795 2426 2426 902 796 2427 2427 1185 796 2428 2428 903 796 2429 2429 916 797 2430 2430 1199 797 2431 2431 917 797 2432 2432 903 798 2433 2433 1186 798 2434 2434 904 798 2435 2435 917 799 2436 2436 1200 799 2437 2437 918 799 2438 2438 904 800 2439 2439 1187 800 2440 2440 905 800 2441 2441 892 801 2442 2442 1173 801 2443 2443 1174 801 2444 2444 919 802 2445 2445 1200 802 2446 2446 1201 802 2447 2447 905 803 2448 2448 1188 803 2449 2449 906 803 2450 2450 893 804 2451 2451 1174 804 2452 2452 1175 804 2453 2453 920 805 2454 2454 1201 805 2455 2455 1202 805 2456 2456 906 806 2457 2457 1189 806 2458 2458 907 806 2459 2459 894 807 2460 2460 1175 807 2461 2461 1176 807 2462 2462 921 808 2463 2463 1202 808 2464 2464 1203 808 2465 2465 907 809 2466 2466 1190 809 2467 2467 908 809 2468 2468 895 810 2469 2469 1176 810 2470 2470 1177 810 2471 2471 922 811 2472 2472 1203 811 2473 2473 1204 811 2474 2474 908 812 2475 2475 1191 812 2476 2476 909 812 2477 2477 896 813 2478 2478 1177 813 2479 2479 1178 813 2480 2480 891 814 2481 2481 1204 814 2482 2482 1173 814 2483 2483 909 815 2484 2484 1192 815 2485 2485 910 815 2486 2486 897 816 2487 2487 1178 816 2488 2488 1179 816 2489 2489 910 817 2490 2490 1193 817 2491 2491 911 817 2492 2492 898 818 2493 2493 1179 818 2494 2494 1180 818 2495 2495 911 819 2496 2496 1194 819 2497 2497 912 819 2498 2498 899 820 2499 2499 1180 820 2500 2500 1181 820 2501 2501 912 821 2502 2502 1195 821 2503 2503 913 821 2504 2504 900 822 2505 2505 1181 822 2506 2506 1182 822 2507 2507 913 823 2508 2508 1196 823 2509 2509 914 823 2510 2510 901 824 2511 2511 1182 824 2512 2512 1183 824 2513 2513 1211 825 2514 2514 25 825 2515 2515 22 825 2516 2516 1206 826 2517 2517 331 826 2518 2518 333 826 2519 2519 1210 827 2520 2520 22 827 2521 2521 21 827 2522 2522 1205 828 2523 2523 335 828 2524 2524 331 828 2525 2525 1208 829 2526 2526 1222 829 2527 2527 1218 829 2528 2528 1210 830 2529 2529 1221 830 2530 2530 1219 830 2531 2531 1216 831 2532 2532 1219 831 2533 2533 1222 831 2534 2534 1208 832 2535 2535 1220 832 2536 2536 1211 832 2537 2537 1209 833 2538 2538 1227 833 2539 2539 1214 833 2540 2540 1217 834 2541 2541 1224 834 2542 2542 1209 834 2543 2543 1211 835 2544 2544 1226 835 2545 2545 1212 835 2546 2546 1212 836 2547 2547 1223 836 2548 2548 1207 836 2549 2549 1207 837 2550 2550 1228 837 2551 2551 1217 837 2552 2552 1231 838 2553 2553 1229 838 2554 2554 1230 838 2555 2555 1023 839 2556 2556 1232 839 2557 2557 1024 839 2558 2558 1022 840 2559 2559 1230 840 2560 2560 1021 840 2561 2561 1022 841 2562 2562 1232 841 2563 2563 1231 841 2564 2564 1023 842 2565 2565 1230 842 2566 2566 1229 842 2567 2567 1224 11 2568 2568 1234 11 2569 2569 1227 11 2570 2570 1228 11 2571 2571 1235 11 2572 2572 1224 11 2573 2573 1223 11 2574 2574 1233 11 2575 2575 1228 11 2576 2576 1236 843 2577 2577 1237 843 2578 2578 1233 843 2579 2579 1233 844 2580 2580 1239 844 2581 2581 1235 844 2582 2582 1235 845 2583 2583 1238 845 2584 2584 1234 845 2585 2585 1237 846 2586 2586 1243 846 2587 2587 1241 846 2588 2588 1239 847 2589 2589 1241 847 2590 2590 1242 847 2591 2591 1238 848 2592 2592 1242 848 2593 2593 2486 848 2594 2594 1256 849 2595 2595 1271 849 2596 2596 1254 849 2597 2597 1250 850 2598 2598 1259 850 2599 2599 1258 850 2600 2600 1248 851 2601 2601 1246 851 2602 2602 1244 851 2603 2603 1245 852 2604 2604 1251 852 2605 2605 1249 852 2606 2606 1252 853 2607 2607 1249 853 2608 2608 1251 853 2609 2609 1250 854 2610 2610 1264 854 2611 2611 1246 854 2612 2612 1254 855 2613 2613 1257 855 2614 2614 1256 855 2615 2615 1256 856 2616 2616 1253 856 2617 2617 1252 856 2618 2618 1244 857 2619 2619 1277 857 2620 2620 1248 857 2621 2621 1285 858 2622 2622 1255 858 2623 2623 1263 858 2624 2624 1258 859 2625 2625 1261 859 2626 2626 1260 859 2627 2627 1262 860 2628 2628 1274 860 2629 2629 1263 860 2630 2630 1258 861 2631 2631 1268 861 2632 2632 1250 861 2633 2633 1260 862 2634 2634 1263 862 2635 2635 1262 862 2636 2636 1278 863 2637 2637 1245 863 2638 2638 1249 863 2639 2639 1261 864 2640 2640 1285 864 2641 2641 1263 864 2642 2642 1262 865 2643 2643 1255 865 2644 2644 1254 865 2645 2645 2458 866 2646 2646 2453 866 2647 2647 1247 866 2648 2648 1718 18 2649 2649 1632 18 2650 2650 1715 18 2651 2651 1714 18 2652 2652 1640 18 2653 2653 1718 18 2654 2654 1715 18 2655 2655 1641 18 2656 2656 1642 18 2657 2657 2461 867 2658 2658 2451 867 2659 2659 1252 867 2660 2660 1260 868 2661 2661 1267 868 2662 2662 1258 868 2663 2663 2455 869 2664 2664 1270 869 2665 2665 1256 869 2666 2666 1262 870 2667 2667 1272 870 2668 2668 1260 870 2669 2669 1254 871 2670 2670 1273 871 2671 2671 1262 871 2672 2672 1277 872 2673 2673 1283 872 2674 2674 1282 872 2675 2675 1283 873 2676 2676 1296 873 2677 2677 1282 873 2678 2678 1280 874 2679 2679 1295 874 2680 2680 1281 874 2681 2681 1296 875 2682 2682 1284 875 2683 2683 1282 875 2684 2684 1285 876 2685 2685 1292 876 2686 2686 1280 876 2687 2687 1279 877 2688 2688 1289 877 2689 2689 1278 877 2690 2690 1280 878 2691 2691 1257 878 2692 2692 1255 878 2693 2693 1279 879 2694 2694 1249 879 2695 2695 1253 879 2696 2696 1248 880 2697 2697 1282 880 2698 2698 1259 880 2699 2699 1259 881 2700 2700 1284 881 2701 2701 1261 881 2702 2702 1281 882 2703 2703 1253 882 2704 2704 1257 882 2705 2705 1291 39 2706 2706 1287 39 2707 2707 1289 39 2708 2708 1292 39 2709 2709 1294 39 2710 2710 1295 39 2711 2711 1295 883 2712 2712 1290 883 2713 2713 1291 883 2714 2714 1296 38 2715 2715 1298 38 2716 2716 1299 38 2717 2717 1299 39 2718 2718 1300 39 2719 2719 1301 39 2720 2720 1301 884 2721 2721 1293 884 2722 2722 1292 884 2723 2723 1288 885 2724 2724 1282 885 2725 2725 1277 885 2726 2726 1289 886 2727 2727 1276 886 2728 2728 1278 886 2729 2729 1299 887 2730 2730 1285 887 2731 2731 1284 887 2732 2732 1281 888 2733 2733 1291 888 2734 2734 1279 888 2735 2735 1346 889 2736 2736 1330 889 2737 2737 1322 889 2738 2738 1307 890 2739 2739 1317 890 2740 2740 1302 890 2741 2741 1314 891 2742 2742 1332 891 2743 2743 1312 891 2744 2744 1329 892 2745 2745 1560 892 2746 2746 1309 892 2747 2747 1303 893 2748 2748 1340 893 2749 2749 1316 893 2750 2750 1317 894 2751 2751 1557 894 2752 2752 1302 894 2753 2753 1337 895 2754 2754 1313 895 2755 2755 1564 895 2756 2756 1330 896 2757 2757 1561 896 2758 2758 1310 896 2759 2759 1334 897 2760 2760 1303 897 2761 2761 1562 897 2762 2762 1312 898 2763 2763 1334 898 2764 2764 1562 898 2765 2765 1560 899 2766 2766 1327 899 2767 2767 1307 899 2768 2768 1565 900 2769 2769 1319 900 2770 2770 1558 900 2771 2771 1333 901 2772 2772 1563 901 2773 2773 1313 901 2774 2774 1326 902 2775 2775 1308 902 2776 2776 1561 902 2777 2777 1323 903 2778 2778 1304 903 2779 2779 1559 903 2780 2780 1331 904 2781 2781 1314 904 2782 2782 1311 904 2783 2783 1324 905 2784 2784 1309 905 2785 2785 1306 905 2786 2786 1321 906 2787 2787 1305 906 2788 2788 1304 906 2789 2789 1318 907 2790 2790 1564 907 2791 2791 1557 907 2792 2792 1322 908 2793 2793 1310 908 2794 2794 1305 908 2795 2795 1319 909 2796 2796 1559 909 2797 2797 1558 909 2798 2798 1340 910 2799 2799 1315 910 2800 2800 1316 910 2801 2801 1335 911 2802 2802 1311 911 2803 2803 1563 911 2804 2804 1328 912 2805 2805 1306 912 2806 2806 1308 912 2807 2807 1338 913 2808 2808 1565 913 2809 2809 1315 913 2810 2810 1358 914 2811 2811 1368 914 2812 2812 1344 914 2813 2813 1343 915 2814 2814 1323 915 2815 2815 1319 915 2816 2816 1340 916 2817 2817 1362 916 2818 2818 1338 916 2819 2819 1335 917 2820 2820 1355 917 2821 2821 1331 917 2822 2822 1352 918 2823 2823 1324 918 2824 2824 1328 918 2825 2825 1338 919 2826 2826 1363 919 2827 2827 1339 919 2828 2828 1351 920 2829 2829 1317 920 2830 2830 1327 920 2831 2831 1336 921 2832 2832 1356 921 2833 2833 1332 921 2834 2834 1353 922 2835 2835 1325 922 2836 2836 1329 922 2837 2837 1320 923 2838 2838 1364 923 2839 2839 1340 923 2840 2840 1317 924 2841 2841 1342 924 2842 2842 1318 924 2843 2843 1337 925 2844 2844 1357 925 2845 2845 1333 925 2846 2846 1354 926 2847 2847 1326 926 2848 2848 1330 926 2849 2849 1334 927 2850 2850 1344 927 2851 2851 1320 927 2852 2852 1332 928 2853 2853 1358 928 2854 2854 1334 928 2855 2855 1349 929 2856 2856 1327 929 2857 2857 1325 929 2858 2858 1363 930 2859 2859 1319 930 2860 2860 1339 930 2861 2861 1333 931 2862 2862 1359 931 2863 2863 1335 931 2864 2864 1350 932 2865 2865 1328 932 2866 2866 1326 932 2867 2867 1347 933 2868 2868 1321 933 2869 2869 1323 933 2870 2870 1331 934 2871 2871 1360 934 2872 2872 1336 934 2873 2873 1348 935 2874 2874 1329 935 2875 2875 1324 935 2876 2876 1345 936 2877 2877 1322 936 2878 2878 1321 936 2879 2879 1318 937 2880 2880 1361 937 2881 2881 1337 937 2882 2882 1391 938 2883 2883 1371 938 2884 2884 1367 938 2885 2885 1356 939 2886 2886 1382 939 2887 2887 1358 939 2888 2888 1373 940 2889 2889 1351 940 2890 2890 1349 940 2891 2891 1387 941 2892 2892 1343 941 2893 2893 1363 941 2894 2894 1357 942 2895 2895 1383 942 2896 2896 1359 942 2897 2897 1374 943 2898 2898 1352 943 2899 2899 1350 943 2900 2900 1371 944 2901 2901 1345 944 2902 2902 1347 944 2903 2903 1355 945 2904 2904 1384 945 2905 2905 1360 945 2906 2906 1372 946 2907 2907 1353 946 2908 2908 1348 946 2909 2909 1369 947 2910 2910 1346 947 2911 2911 1345 947 2912 2912 1342 948 2913 2913 1385 948 2914 2914 1361 948 2915 2915 1370 949 2916 2916 1354 949 2917 2917 1346 949 2918 2918 1367 950 2919 2919 1347 950 2920 2920 1343 950 2921 2921 1364 951 2922 2922 1386 951 2923 2923 1362 951 2924 2924 1359 952 2925 2925 1379 952 2926 2926 1355 952 2927 2927 1376 953 2928 2928 1348 953 2929 2929 1352 953 2930 2930 1362 954 2931 2931 1387 954 2932 2932 1363 954 2933 2933 1375 955 2934 2934 1341 955 2935 2935 1351 955 2936 2936 1360 956 2937 2937 1380 956 2938 2938 1356 956 2939 2939 1377 957 2940 2940 1349 957 2941 2941 1353 957 2942 2942 1344 958 2943 2943 1388 958 2944 2944 1364 958 2945 2945 1341 959 2946 2946 1366 959 2947 2947 1342 959 2948 2948 1361 960 2949 2949 1381 960 2950 2950 1357 960 2951 2951 1378 961 2952 2952 1350 961 2953 2953 1354 961 2954 2954 1404 962 2955 2955 1430 962 2956 2956 1406 962 2957 2957 1388 963 2958 2958 1410 963 2959 2959 1386 963 2960 2960 1383 964 2961 2961 1403 964 2962 2962 1379 964 2963 2963 1400 965 2964 2964 1372 965 2965 2965 1376 965 2966 2966 1386 966 2967 2967 1411 966 2968 2968 1387 966 2969 2969 1375 967 2970 2970 1389 967 2971 2971 1365 967 2972 2972 1384 968 2973 2973 1404 968 2974 2974 1380 968 2975 2975 1401 969 2976 2976 1373 969 2977 2977 1377 969 2978 2978 1368 970 2979 2979 1412 970 2980 2980 1388 970 2981 2981 1365 971 2982 2982 1390 971 2983 2983 1366 971 2984 2984 1385 972 2985 2985 1405 972 2986 2986 1381 972 2987 2987 1402 973 2988 2988 1374 973 2989 2989 1378 973 2990 2990 1382 974 2991 2991 1392 974 2992 2992 1368 974 2993 2993 1380 975 2994 2994 1406 975 2995 2995 1382 975 2996 2996 1397 976 2997 2997 1375 976 2998 2998 1373 976 2999 2999 1411 977 3000 3000 1367 977 3001 3001 1387 977 3002 3002 1381 978 3003 3003 1407 978 3004 3004 1383 978 3005 3005 1398 979 3006 3006 1376 979 3007 3007 1374 979 3008 3008 1395 980 3009 3009 1369 980 3010 3010 1371 980 3011 3011 1379 981 3012 3012 1408 981 3013 3013 1384 981 3014 3014 1396 982 3015 3015 1377 982 3016 3016 1372 982 3017 3017 1393 983 3018 3018 1370 983 3019 3019 1369 983 3020 3020 1366 984 3021 3021 1409 984 3022 3022 1385 984 3023 3023 1394 985 3024 3024 1378 985 3025 3025 1370 985 3026 3026 1439 986 3027 3027 1419 986 3028 3028 1415 986 3029 3029 1421 987 3030 3030 1399 987 3031 3031 1397 987 3032 3032 1435 988 3033 3033 1391 988 3034 3034 1411 988 3035 3035 1405 989 3036 3036 1431 989 3037 3037 1407 989 3038 3038 1398 990 3039 3039 1424 990 3040 3040 1400 990 3041 3041 1419 991 3042 3042 1393 991 3043 3043 1395 991 3044 3044 1403 992 3045 3045 1432 992 3046 3046 1408 992 3047 3047 1420 993 3048 3048 1401 993 3049 3049 1396 993 3050 3050 1417 994 3051 3051 1394 994 3052 3052 1393 994 3053 3053 1414 995 3054 3054 1409 995 3055 3055 1390 995 3056 3056 1418 996 3057 3057 1402 996 3058 3058 1394 996 3059 3059 1415 997 3060 3060 1395 997 3061 3061 1391 997 3062 3062 1412 998 3063 3063 1434 998 3064 3064 1410 998 3065 3065 1407 999 3066 3066 1427 999 3067 3067 1403 999 3068 3068 1424 1000 3069 3069 1396 1000 3070 3070 1400 1000 3071 3071 1410 1001 3072 3072 1435 1001 3073 3073 1411 1001 3074 3074 1399 1002 3075 3075 1413 1002 3076 3076 1389 1002 3077 3077 1408 1003 3078 3078 1428 1003 3079 3079 1404 1003 3080 3080 1425 1004 3081 3081 1397 1004 3082 3082 1401 1004 3083 3083 1392 1005 3084 3084 1436 1005 3085 3085 1412 1005 3086 3086 1413 1006 3087 3087 1390 1006 3088 3088 1389 1006 3089 3089 1409 1007 3090 3090 1429 1007 3091 3091 1405 1007 3092 3092 1426 1008 3093 3093 1398 1008 3094 3094 1402 1008 3095 3095 1406 1009 3096 3096 1416 1009 3097 3097 1392 1009 3098 3098 1445 1010 3099 3099 1471 1010 3100 3100 1447 1010 3101 3101 1436 1011 3102 3102 1458 1011 3103 3103 1434 1011 3104 3104 1431 1012 3105 3105 1451 1012 3106 3106 1427 1012 3107 3107 1448 1013 3108 3108 1420 1013 3109 3109 1424 1013 3110 3110 1434 1014 3111 3111 1459 1014 3112 3112 1435 1014 3113 3113 1423 1015 3114 3114 1437 1015 3115 3115 1413 1015 3116 3116 1432 1016 3117 3117 1452 1016 3118 3118 1428 1016 3119 3119 1425 1017 3120 3120 1445 1017 3121 3121 1421 1017 3122 3122 1416 1018 3123 3123 1460 1018 3124 3124 1436 1018 3125 3125 1437 1019 3126 3126 1414 1019 3127 3127 1413 1019 3128 3128 1457 1020 3129 3129 1429 1020 3130 3130 1433 1020 3131 3131 1450 1021 3132 3132 1422 1021 3133 3133 1426 1021 3134 3134 1430 1022 3135 3135 1440 1022 3136 3136 1416 1022 3137 3137 1428 1023 3138 3138 1454 1023 3139 3139 1430 1023 3140 3140 1421 1024 3141 3141 1447 1024 3142 3142 1423 1024 3143 3143 1459 1025 3144 3144 1415 1025 3145 3145 1435 1025 3146 3146 1429 1026 3147 3147 1455 1026 3148 3148 1431 1026 3149 3149 1422 1027 3150 3150 1448 1027 3151 3151 1424 1027 3152 3152 1443 1028 3153 3153 1417 1028 3154 3154 1419 1028 3155 3155 1427 1029 3156 3156 1456 1029 3157 3157 1432 1029 3158 3158 1444 1030 3159 3159 1425 1030 3160 3160 1420 1030 3161 3161 1441 1031 3162 3162 1418 1031 3163 3163 1417 1031 3164 3164 1438 1032 3165 3165 1433 1032 3166 3166 1414 1032 3167 3167 1442 1033 3168 3168 1426 1033 3169 3169 1418 1033 3170 3170 1484 1034 3171 3171 1506 1034 3172 3172 1482 1034 3173 3173 1483 1035 3174 3174 1439 1035 3175 3175 1459 1035 3176 3176 1477 1036 3177 3177 1455 1036 3178 3178 1453 1036 3179 3179 1470 1037 3180 3180 1448 1037 3181 3181 1446 1037 3182 3182 1467 1038 3183 3183 1441 1038 3184 3184 1443 1038 3185 3185 1451 1039 3186 3186 1480 1039 3187 3187 1456 1039 3188 3188 1444 1040 3189 3189 1473 1040 3190 3190 1449 1040 3191 3191 1465 1041 3192 3192 1442 1041 3193 3193 1441 1041 3194 3194 1462 1042 3195 3195 1457 1042 3196 3196 1438 1042 3197 3197 1466 1043 3198 3198 1450 1043 3199 3199 1442 1043 3200 3200 1463 1044 3201 3201 1443 1044 3202 3202 1439 1044 3203 3203 1460 1045 3204 3204 1482 1045 3205 3205 1458 1045 3206 3206 1455 1046 3207 3207 1475 1046 3208 3208 1451 1046 3209 3209 1472 1047 3210 3210 1444 1047 3211 3211 1448 1047 3212 3212 1458 1048 3213 3213 1483 1048 3214 3214 1459 1048 3215 3215 1447 1049 3216 3216 1461 1049 3217 3217 1437 1049 3218 3218 1456 1050 3219 3219 1476 1050 3220 3220 1452 1050 3221 3221 1449 1051 3222 3222 1469 1051 3223 3223 1445 1051 3224 3224 1440 1052 3225 3225 1484 1052 3226 3226 1460 1052 3227 3227 1461 1053 3228 3228 1438 1053 3229 3229 1437 1053 3230 3230 1481 1054 3231 3231 1453 1054 3232 3232 1457 1054 3233 3233 1474 1055 3234 3234 1446 1055 3235 3235 1450 1055 3236 3236 1454 1056 3237 3237 1464 1056 3238 3238 1440 1056 3239 3239 1452 1057 3240 3240 1478 1057 3241 3241 1454 1057 3242 3242 1493 1058 3243 3243 1519 1058 3244 3244 1495 1058 3245 3245 1479 1059 3246 3246 1499 1059 3247 3247 1475 1059 3248 3248 1472 1060 3249 3249 1492 1060 3250 3250 1468 1060 3251 3251 1482 1061 3252 3252 1507 1061 3253 3253 1483 1061 3254 3254 1471 1062 3255 3255 1485 1062 3256 3256 1461 1062 3257 3257 1480 1063 3258 3258 1500 1063 3259 3259 1476 1063 3260 3260 1473 1064 3261 3261 1493 1064 3262 3262 1469 1064 3263 3263 1464 1065 3264 3264 1508 1065 3265 3265 1484 1065 3266 3266 1485 1066 3267 3267 1462 1066 3268 3268 1461 1066 3269 3269 1505 1067 3270 3270 1477 1067 3271 3271 1481 1067 3272 3272 1498 1068 3273 3273 1470 1068 3274 3274 1474 1068 3275 3275 1478 1069 3276 3276 1488 1069 3277 3277 1464 1069 3278 3278 1476 1070 3279 3279 1502 1070 3280 3280 1478 1070 3281 3281 1469 1071 3282 3282 1495 1071 3283 3283 1471 1071 3284 3284 1507 1072 3285 3285 1463 1072 3286 3286 1483 1072 3287 3287 1501 1073 3288 3288 1479 1073 3289 3289 1477 1073 3290 3290 1494 1074 3291 3291 1472 1074 3292 3292 1470 1074 3293 3293 1491 1075 3294 3294 1465 1075 3295 3295 1467 1075 3296 3296 1475 1076 3297 3297 1504 1076 3298 3298 1480 1076 3299 3299 1468 1077 3300 3300 1497 1077 3301 3301 1473 1077 3302 3302 1489 1078 3303 3303 1466 1078 3304 3304 1465 1078 3305 3305 1486 1079 3306 3306 1481 1079 3307 3307 1462 1079 3308 3308 1490 1080 3309 3309 1474 1080 3310 3310 1466 1080 3311 3311 1487 1081 3312 3312 1467 1081 3313 3313 1463 1081 3314 3314 1551 1082 3315 3315 1523 1082 3316 3316 1527 1082 3317 3317 1531 1083 3318 3318 1487 1083 3319 3319 1507 1083 3320 3320 1525 1084 3321 3321 1503 1084 3322 3322 1501 1084 3323 3323 1518 1085 3324 3324 1496 1085 3325 3325 1494 1085 3326 3326 1515 1086 3327 3327 1489 1086 3328 3328 1491 1086 3329 3329 1499 1087 3330 3330 1528 1087 3331 3331 1504 1087 3332 3332 1492 1088 3333 3333 1521 1088 3334 3334 1497 1088 3335 3335 1513 1089 3336 3336 1490 1089 3337 3337 1489 1089 3338 3338 1510 1090 3339 3339 1505 1090 3340 3340 1486 1090 3341 3341 1514 1091 3342 3342 1498 1091 3343 3343 1490 1091 3344 3344 1511 1092 3345 3345 1491 1092 3346 3346 1487 1092 3347 3347 1508 1093 3348 3348 1530 1093 3349 3349 1506 1093 3350 3350 1527 1094 3351 3351 1499 1094 3352 3352 1503 1094 3353 3353 1496 1095 3354 3354 1516 1095 3355 3355 1492 1095 3356 3356 1506 1096 3357 3357 1531 1096 3358 3358 1507 1096 3359 3359 1495 1097 3360 3360 1509 1097 3361 3361 1485 1097 3362 3362 1504 1098 3363 3363 1524 1098 3364 3364 1500 1098 3365 3365 1497 1099 3366 3366 1517 1099 3367 3367 1493 1099 3368 3368 1488 1100 3369 3369 1532 1100 3370 3370 1508 1100 3371 3371 1509 1101 3372 3372 1486 1101 3373 3373 1485 1101 3374 3374 1529 1102 3375 3375 1501 1102 3376 3376 1505 1102 3377 3377 1522 1103 3378 3378 1494 1103 3379 3379 1498 1103 3380 3380 1502 1104 3381 3381 1512 1104 3382 3382 1488 1104 3383 3383 1500 1105 3384 3384 1526 1105 3385 3385 1502 1105 3386 3386 1548 860 3387 3387 1552 860 3388 3388 1546 860 3389 3389 1520 1106 3390 3390 1540 1106 3391 3391 1516 1106 3392 3392 1530 1107 3393 3393 1555 1107 3394 3394 1531 1107 3395 3395 1519 1108 3396 3396 1533 1108 3397 3397 1509 1108 3398 3398 1528 1109 3399 3399 1548 1109 3400 3400 1524 1109 3401 3401 1521 1110 3402 3402 1541 1110 3403 3403 1517 1110 3404 3404 1512 1111 3405 3405 1556 1111 3406 3406 1532 1111 3407 3407 1533 1112 3408 3408 1510 1112 3409 3409 1509 1112 3410 3410 1553 1113 3411 3411 1525 1113 3412 3412 1529 1113 3413 3413 1546 1114 3414 3414 1518 1114 3415 3415 1522 1114 3416 3416 1526 1115 3417 3417 1536 1115 3418 3418 1512 1115 3419 3419 1524 1116 3420 3420 1550 1116 3421 3421 1526 1116 3422 3422 1517 1117 3423 3423 1543 1117 3424 3424 1519 1117 3425 3425 1555 1118 3426 3426 1511 1118 3427 3427 1531 1118 3428 3428 1549 1119 3429 3429 1527 1119 3430 3430 1525 1119 3431 3431 1518 1120 3432 3432 1544 1120 3433 3433 1520 1120 3434 3434 1539 1121 3435 3435 1513 1121 3436 3436 1515 1121 3437 3437 1523 1122 3438 3438 1552 1122 3439 3439 1528 1122 3440 3440 1516 1123 3441 3441 1545 1123 3442 3442 1521 1123 3443 3443 1537 1124 3444 3444 1514 1124 3445 3445 1513 1124 3446 3446 1534 1125 3447 3447 1529 1125 3448 3448 1510 1125 3449 3449 1538 1126 3450 3450 1522 1126 3451 3451 1514 1126 3452 3452 1535 1127 3453 3453 1515 1127 3454 3454 1511 1127 3455 3455 1532 1128 3456 3456 1554 1128 3457 3457 1530 1128 3458 3458 1580 1129 3459 3459 1563 1129 3460 3460 1311 1129 3461 3461 1573 1130 3462 3462 1308 1130 3463 3463 1306 1130 3464 3464 1588 1131 3465 3465 1315 1131 3466 3466 1565 1131 3467 3467 1302 1132 3468 3468 1576 1132 3469 3469 1307 1132 3470 3470 1312 1133 3471 3471 1585 1133 3472 3472 1314 1133 3473 3473 1560 1134 3474 3474 1578 1134 3475 3475 1309 1134 3476 3476 1316 1135 3477 3477 1569 1135 3478 3478 1303 1135 3479 3479 1567 1136 3480 3480 1302 1136 3481 3481 1557 1136 3482 3482 1582 1137 3483 3483 1564 1137 3484 3484 1313 1137 3485 3485 1561 1138 3486 3486 2449 1138 3487 3487 1310 1138 3488 3488 1303 1139 3489 3489 1583 1139 3490 3490 1562 1139 3491 3491 1562 1140 3492 3492 1581 1140 3493 3493 1312 1140 3494 3494 1307 1141 3495 3495 1574 1141 3496 3496 1560 1141 3497 3497 1558 1142 3498 3498 1588 1142 3499 3499 1565 1142 3500 3500 1584 1143 3501 3501 1313 1143 3502 3502 1563 1143 3503 3503 1308 1144 3504 3504 2450 1144 3505 3505 1561 1144 3506 3506 1570 1145 3507 3507 1559 1145 3508 3508 1304 1145 3509 3509 1314 1146 3510 3510 1580 1146 3511 3511 1311 1146 3512 3512 1309 1147 3513 3513 1573 1147 3514 3514 1306 1147 3515 3515 1571 1148 3516 3516 1304 1148 3517 3517 1305 1148 3518 3518 1586 1149 3519 3519 1557 1149 3520 3520 1564 1149 3521 3521 1579 1150 3522 3522 1305 1150 3523 3523 1310 1150 3524 3524 1572 1151 3525 3525 1558 1151 3526 3526 1559 1151 3527 3527 1587 1152 3528 3528 1316 1152 3529 3529 1315 1152 3530 3530 1603 310 3531 3531 1598 310 3532 3532 1595 310 3533 3533 1618 1153 3534 3534 1610 1153 3535 3535 1613 1153 3536 3536 1622 1154 3537 3537 1603 1154 3538 3538 1607 1154 3539 3539 1610 39 3540 3540 1596 39 3541 3541 1595 39 3542 3542 1623 1155 3543 3543 1604 1155 3544 3544 1608 1155 3545 3545 1624 1156 3546 3546 1598 1156 3547 3547 1609 1156 3548 3548 1618 1157 3549 3549 1605 1157 3550 3550 1603 1157 3551 3551 1613 1158 3552 3552 1597 1158 3553 3553 1598 1158 3554 3554 1619 1159 3555 3555 1606 1159 3556 3556 1604 1159 3557 3557 1616 1160 3558 3558 1599 1160 3559 3559 1601 1160 3560 3560 1617 1161 3561 3561 1607 1161 3562 3562 1602 1161 3563 3563 1614 1162 3564 3564 1600 1162 3565 3565 1599 1162 3566 3566 1611 1163 3567 3567 1608 1163 3568 3568 1596 1163 3569 3569 1612 1164 3570 3570 1601 1164 3571 3571 1597 1164 3572 3572 1620 1165 3573 3573 1609 1165 3574 3574 1605 1165 3575 3575 1621 1166 3576 3576 1602 1166 3577 3577 1606 1166 3578 3578 1615 1167 3579 3579 1595 1167 3580 3580 1600 1167 3581 3581 1626 1168 3582 3582 1717 1168 3583 3583 1633 1168 3584 3584 1716 1169 3585 3585 1634 1169 3586 3586 1626 1169 3587 3587 1717 1170 3588 3588 1634 1170 3589 3589 1716 1170 3590 3590 1273 1171 3591 3591 1662 1171 3592 3592 1272 1171 3593 3593 1653 1172 3594 3594 1268 1172 3595 3595 1267 1172 3596 3596 1648 1173 3597 3597 1594 1173 3598 3598 1655 1173 3599 3599 1265 1174 3600 3600 1654 1174 3601 3601 1266 1174 3602 3602 1661 1175 3603 3603 1271 1175 3604 3604 1270 1175 3605 3605 1272 1176 3606 3606 1653 1176 3607 3607 1267 1176 3608 3608 1271 1177 3609 3609 1663 1177 3610 3610 1273 1177 3611 3611 1266 1178 3612 3612 1652 1178 3613 3613 1269 1178 3614 3614 1269 1179 3615 3615 1661 1179 3616 3616 1270 1179 3617 3617 1660 1180 3618 3618 1264 1180 3619 3619 1268 1180 3620 3620 1663 1181 3621 3621 1672 1181 3622 3622 1662 1181 3623 3623 1659 1182 3624 3624 1666 1182 3625 3625 1654 1182 3626 3626 1652 1183 3627 3627 1670 1183 3628 3628 1661 1183 3629 3629 1667 1184 3630 3630 1660 1184 3631 3631 1653 1184 3632 3632 1651 1185 3633 3633 1673 1185 3634 3634 1663 1185 3635 3635 1668 1186 3636 3636 1658 1186 3637 3637 1660 1186 3638 3638 1662 1187 3639 3639 1667 1187 3640 3640 1653 1187 3641 3641 1654 1188 3642 3642 1669 1188 3643 3643 1652 1188 3644 3644 1670 1189 3645 3645 1651 1189 3646 3646 1661 1189 3647 3647 1666 1190 3648 3648 1698 1190 3649 3649 1669 1190 3650 3650 1672 1191 3651 3651 1700 1191 3652 3652 1667 1191 3653 3653 1665 1192 3654 3654 1701 1192 3655 3655 1666 1192 3656 3656 1699 1193 3657 3657 1664 1193 3658 3658 1668 1193 3659 3659 1671 1194 3660 3660 1694 1194 3661 3661 1673 1194 3662 3662 1700 1195 3663 3663 1668 1195 3664 3664 1667 1195 3665 3665 1669 1196 3666 3666 1697 1196 3667 3667 1670 1196 3668 3668 1673 1197 3669 3669 1695 1197 3670 3670 1672 1197 3671 3671 1697 1198 3672 3672 1671 1198 3673 3673 1670 1198 3674 3674 1677 1199 3675 3675 1699 1199 3676 3676 1700 1199 3677 3677 1678 1200 3678 3678 1703 1200 3679 3679 1699 1200 3680 3680 1695 1201 3681 3681 1677 1201 3682 3682 1700 1201 3683 3683 1701 1202 3684 3684 1679 1202 3685 3685 1698 1202 3686 3686 1680 1203 3687 3687 1696 1203 3688 3688 1697 1203 3689 3689 1696 1204 3690 3690 1683 1204 3691 3691 1694 1204 3692 3692 1694 1205 3693 3693 1682 1205 3694 3694 1695 1205 3695 3695 1702 1206 3696 3696 1676 1206 3697 3697 1701 1206 3698 3698 1698 1207 3699 3699 1680 1207 3700 3700 1697 1207 3701 3701 1676 1208 3702 3702 1708 1208 3703 3703 1679 1208 3704 3704 1682 1209 3705 3705 1710 1209 3706 3706 1677 1209 3707 3707 1712 1210 3708 3708 1676 1210 3709 3709 1675 1210 3710 3710 1709 1211 3711 3711 1674 1211 3712 3712 1678 1211 3713 3713 1681 1212 3714 3714 1704 1212 3715 3715 1683 1212 3716 3716 1710 1213 3717 3717 1678 1213 3718 3718 1677 1213 3719 3719 1679 1214 3720 3720 1707 1214 3721 3721 1680 1214 3722 3722 1683 1215 3723 3723 1705 1215 3724 3724 1682 1215 3725 3725 1707 1216 3726 3726 1681 1216 3727 3727 1680 1216 3728 3728 1690 1217 3729 3729 1706 1217 3730 3730 1707 1217 3731 3731 1704 1218 3732 3732 1692 1218 3733 3733 1705 1218 3734 3734 1712 1219 3735 3735 1686 1219 3736 3736 1711 1219 3737 3737 1708 1220 3738 3738 1690 1220 3739 3739 1707 1220 3740 3740 1687 1221 3741 3741 1709 1221 3742 3742 1710 1221 3743 3743 1688 1222 3744 3744 1713 1222 3745 3745 1709 1222 3746 3746 1706 1223 3747 3747 1693 1223 3748 3748 1704 1223 3749 3749 1705 1224 3750 3750 1687 1224 3751 3751 1710 1224 3752 3752 1711 1225 3753 3753 1689 1225 3754 3754 1708 1225 3755 3755 1717 1226 3756 3756 1684 1226 3757 3757 1688 1226 3758 3758 1691 1227 3759 3759 1625 1227 3760 3760 1693 1227 3761 3761 1633 1228 3762 3762 1688 1228 3763 3763 1687 1228 3764 3764 1689 1229 3765 3765 1640 1229 3766 3766 1690 1229 3767 3767 1693 1230 3768 3768 1629 1230 3769 3769 1692 1230 3770 3770 1640 1231 3771 3771 1691 1231 3772 3772 1690 1231 3773 3773 1686 1232 3774 3774 1632 1232 3775 3775 1689 1232 3776 3776 1692 1233 3777 3777 1633 1233 3778 3778 1687 1233 3779 3779 1642 1234 3780 3780 1686 1234 3781 3781 1685 1234 3782 3782 1630 1235 3783 3783 1633 1235 3784 3784 1629 1235 3785 3785 1639 1236 3786 3786 1629 1236 3787 3787 1625 1236 3788 3788 1639 18 3789 3789 1631 18 3790 3790 1714 18 3791 3791 1776 393 3792 3792 1972 393 3793 3793 1973 393 3794 3794 1763 1237 3795 3795 1725 1237 3796 3796 1963 1237 3797 3797 1721 395 3798 3798 1749 395 3799 3799 1720 395 3800 3800 1777 396 3801 3801 1973 396 3802 3802 1974 396 3803 3803 1764 397 3804 3804 1963 397 3805 3805 1964 397 3806 3806 1751 398 3807 3807 1721 398 3808 3808 1955 398 3809 3809 1778 399 3810 3810 1974 399 3811 3811 1729 399 3812 3812 1765 400 3813 3813 1964 400 3814 3814 1965 400 3815 3815 1752 401 3816 3816 1955 401 3817 3817 1956 401 3818 3818 1747 402 3819 3819 1729 402 3820 3820 1954 402 3821 3821 1766 403 3822 3822 1965 403 3823 3823 1966 403 3824 3824 1753 404 3825 3825 1956 404 3826 3826 1957 404 3827 3827 1767 405 3828 3828 1966 405 3829 3829 1967 405 3830 3830 1754 406 3831 3831 1957 406 3832 3832 1958 406 3833 3833 1768 407 3834 3834 1967 407 3835 3835 1726 407 3836 3836 1755 408 3837 3837 1958 408 3838 3838 1959 408 3839 3839 1727 1238 3840 3840 1768 1238 3841 3841 1726 1238 3842 3842 1756 410 3843 3843 1959 410 3844 3844 1722 410 3845 3845 1770 411 3846 3846 1727 411 3847 3847 1968 411 3848 3848 1757 412 3849 3849 1722 412 3850 3850 1723 412 3851 3851 1771 413 3852 3852 1968 413 3853 3853 1969 413 3854 3854 1758 414 3855 3855 1723 414 3856 3856 1724 414 3857 3857 1772 415 3858 3858 1969 415 3859 3859 1970 415 3860 3860 1759 416 3861 3861 1724 416 3862 3862 1960 416 3863 3863 1773 417 3864 3864 1970 417 3865 3865 1728 417 3866 3866 1760 418 3867 3867 1960 418 3868 3868 1961 418 3869 3869 1774 419 3870 3870 1728 419 3871 3871 1971 419 3872 3872 1761 1239 3873 3873 1961 1239 3874 3874 1962 1239 3875 3875 1719 421 3876 3876 1747 421 3877 3877 1954 421 3878 3878 1972 1240 3879 3879 1774 1240 3880 3880 1971 1240 3881 3881 1725 1241 3882 3882 1761 1241 3883 3883 1962 1241 3884 3884 1749 1242 3885 3885 1719 1242 3886 3886 1720 1242 3887 3887 1801 1243 3888 3888 1832 1243 3889 3889 1800 1243 3890 3890 1820 1244 3891 3891 1787 1244 3892 3892 1788 1244 3893 3893 1802 1245 3894 3894 1833 1245 3895 3895 1801 1245 3896 3896 1821 1246 3897 3897 1788 1246 3898 3898 1789 1246 3899 3899 1803 1247 3900 3900 1834 1247 3901 3901 1802 1247 3902 3902 1822 1248 3903 3903 1789 1248 3904 3904 1790 1248 3905 3905 1804 1249 3906 3906 1835 1249 3907 3907 1803 1249 3908 3908 1823 1250 3909 3909 1790 1250 3910 3910 1791 1250 3911 3911 1837 1251 3912 3912 1804 1251 3913 3913 1805 1251 3914 3914 1824 1252 3915 3915 1791 1252 3916 3916 1792 1252 3917 3917 1806 1253 3918 3918 1837 1253 3919 3919 1805 1253 3920 3920 1825 1254 3921 3921 1792 1254 3922 3922 1793 1254 3923 3923 1780 1255 3924 3924 1811 1255 3925 3925 1779 1255 3926 3926 1807 1256 3927 3927 1838 1256 3928 3928 1806 1256 3929 3929 1826 1257 3930 3930 1793 1257 3931 3931 1794 1257 3932 3932 1813 1258 3933 3933 1780 1258 3934 3934 1781 1258 3935 3935 1808 1259 3936 3936 1839 1259 3937 3937 1807 1259 3938 3938 1827 1260 3939 3939 1794 1260 3940 3940 1795 1260 3941 3941 1814 1261 3942 3942 1781 1261 3943 3943 1782 1261 3944 3944 1809 1262 3945 3945 1840 1262 3946 3946 1808 1262 3947 3947 1828 1263 3948 3948 1795 1263 3949 3949 1796 1263 3950 3950 1815 1264 3951 3951 1782 1264 3952 3952 1783 1264 3953 3953 1810 1265 3954 3954 1841 1265 3955 3955 1809 1265 3956 3956 1797 1266 3957 3957 1828 1266 3958 3958 1796 1266 3959 3959 1816 1267 3960 3960 1783 1267 3961 3961 1784 1267 3962 3962 1779 1268 3963 3963 1842 1268 3964 3964 1810 1268 3965 3965 1798 1269 3966 3966 1829 1269 3967 3967 1797 1269 3968 3968 1817 1270 3969 3969 1784 1270 3970 3970 1785 1270 3971 3971 1799 1271 3972 3972 1830 1271 3973 3973 1798 1271 3974 3974 1818 1272 3975 3975 1785 1272 3976 3976 1786 1272 3977 3977 1800 1273 3978 3978 1831 1273 3979 3979 1799 1273 3980 3980 1819 1274 3981 3981 1786 1274 3982 3982 1787 1274 3983 3983 1902 1275 3984 3984 1869 1275 3985 3985 1870 1275 3986 3986 1857 1276 3987 3987 1888 1276 3988 3988 1856 1276 3989 3989 1844 1277 3990 3990 1875 1277 3991 3991 1843 1277 3992 3992 1903 1278 3993 3993 1870 1278 3994 3994 1871 1278 3995 3995 1858 1279 3996 3996 1889 1279 3997 3997 1857 1279 3998 3998 1845 1280 3999 3999 1876 1280 4000 4000 1844 1280 4001 4001 1904 1281 4002 4002 1871 1281 4003 4003 1872 1281 4004 4004 1891 1282 4005 4005 1858 1282 4006 4006 1859 1282 4007 4007 1846 1283 4008 4008 1877 1283 4009 4009 1845 1283 4010 4010 1905 1284 4011 4011 1872 1284 4012 4012 1873 1284 4013 4013 1892 1285 4014 4014 1859 1285 4015 4015 1860 1285 4016 4016 1847 1286 4017 4017 1878 1286 4018 4018 1846 1286 4019 4019 1906 1287 4020 4020 1873 1287 4021 4021 1874 1287 4022 4022 1893 1288 4023 4023 1860 1288 4024 4024 1861 1288 4025 4025 1848 1289 4026 4026 1879 1289 4027 4027 1847 1289 4028 4028 1843 1290 4029 4029 1906 1290 4030 4030 1874 1290 4031 4031 1894 1291 4032 4032 1861 1291 4033 4033 1862 1291 4034 4034 1849 1292 4035 4035 1880 1292 4036 4036 1848 1292 4037 4037 1895 1293 4038 4038 1862 1293 4039 4039 1863 1293 4040 4040 1850 1294 4041 4041 1881 1294 4042 4042 1849 1294 4043 4043 1896 1295 4044 4044 1863 1295 4045 4045 1864 1295 4046 4046 1851 1296 4047 4047 1882 1296 4048 4048 1850 1296 4049 4049 1897 1297 4050 4050 1864 1297 4051 4051 1865 1297 4052 4052 1852 1298 4053 4053 1883 1298 4054 4054 1851 1298 4055 4055 1898 1299 4056 4056 1865 1299 4057 4057 1866 1299 4058 4058 1853 1300 4059 4059 1884 1300 4060 4060 1852 1300 4061 4061 1899 1301 4062 4062 1866 1301 4063 4063 1867 1301 4064 4064 1854 1302 4065 4065 1885 1302 4066 4066 1853 1302 4067 4067 1900 1303 4068 4068 1867 1303 4069 4069 1868 1303 4070 4070 1855 1304 4071 4071 1886 1304 4072 4072 1854 1304 4073 4073 1901 1305 4074 4074 1868 1305 4075 4075 1869 1305 4076 4076 1856 1306 4077 4077 1887 1306 4078 4078 1855 1306 4079 4079 1929 1307 4080 4080 1896 1307 4081 4081 1897 1307 4082 4082 1884 1308 4083 4083 1915 1308 4084 4084 1883 1308 4085 4085 1930 1309 4086 4086 1897 1309 4087 4087 1898 1309 4088 4088 1885 1310 4089 4089 1916 1310 4090 4090 1884 1310 4091 4091 1931 1311 4092 4092 1898 1311 4093 4093 1899 1311 4094 4094 1886 1312 4095 4095 1917 1312 4096 4096 1885 1312 4097 4097 1932 1313 4098 4098 1899 1313 4099 4099 1900 1313 4100 4100 1887 1314 4101 4101 1918 1314 4102 4102 1886 1314 4103 4103 1933 1315 4104 4104 1900 1315 4105 4105 1901 1315 4106 4106 1888 1316 4107 4107 1919 1316 4108 4108 1887 1316 4109 4109 1934 1317 4110 4110 1901 1317 4111 4111 1902 1317 4112 4112 1889 1318 4113 4113 1920 1318 4114 4114 1888 1318 4115 4115 1908 1319 4116 4116 1875 1319 4117 4117 1876 1319 4118 4118 1935 1320 4119 4119 1902 1320 4120 4120 1903 1320 4121 4121 1890 1321 4122 4122 1921 1321 4123 4123 1889 1321 4124 4124 1877 1322 4125 4125 1908 1322 4126 4126 1876 1322 4127 4127 1936 1323 4128 4128 1903 1323 4129 4129 1904 1323 4130 4130 1891 1324 4131 4131 1922 1324 4132 4132 1890 1324 4133 4133 1878 1325 4134 4134 1909 1325 4135 4135 1877 1325 4136 4136 1937 1326 4137 4137 1904 1326 4138 4138 1905 1326 4139 4139 1892 1327 4140 4140 1923 1327 4141 4141 1891 1327 4142 4142 1879 1328 4143 4143 1910 1328 4144 4144 1878 1328 4145 4145 1938 1329 4146 4146 1905 1329 4147 4147 1906 1329 4148 4148 1925 1330 4149 4149 1892 1330 4150 4150 1893 1330 4151 4151 1880 1331 4152 4152 1911 1331 4153 4153 1879 1331 4154 4154 1907 1332 4155 4155 1906 1332 4156 4156 1875 1332 4157 4157 1926 1333 4158 4158 1893 1333 4159 4159 1894 1333 4160 4160 1881 1334 4161 4161 1912 1334 4162 4162 1880 1334 4163 4163 1927 1335 4164 4164 1894 1335 4165 4165 1895 1335 4166 4166 1882 1336 4167 4167 1913 1336 4168 4168 1881 1336 4169 4169 1928 1337 4170 4170 1895 1337 4171 4171 1896 1337 4172 4172 1883 1338 4173 4173 1914 1338 4174 4174 1882 1338 4175 4175 1738 1339 4176 4176 1962 1339 4177 4177 1961 1339 4178 4178 1719 1340 4179 4179 1953 1340 4180 4180 1720 1340 4181 4181 1971 1341 4182 4182 1941 1341 4183 4183 1972 1341 4184 4184 1949 1342 4185 4185 1961 1342 4186 4186 1960 1342 4187 4187 1954 1343 4188 4188 1746 1343 4189 4189 1719 1343 4190 4190 1728 1344 4191 4191 1942 1344 4192 4192 1971 1344 4193 4193 1950 1345 4194 4194 1960 1345 4195 4195 1724 1345 4196 4196 1970 1346 4197 4197 1731 1346 4198 4198 1728 1346 4199 4199 1969 860 4200 4200 1732 860 4201 4201 1970 860 4202 4202 1739 1347 4203 4203 1723 1347 4204 4204 1722 1347 4205 4205 1969 1348 4206 4206 1733 1348 4207 4207 1943 1348 4208 4208 1740 1349 4209 4209 1722 1349 4210 4210 1959 1349 4211 4211 1968 1350 4212 4212 1734 1350 4213 4213 1733 1350 4214 4214 1958 1351 4215 4215 1740 1351 4216 4216 1959 1351 4217 4217 1727 1352 4218 4218 1944 1352 4219 4219 1734 1352 4220 4220 1957 1353 4221 4221 1741 1353 4222 4222 1958 1353 4223 4223 1726 1354 4224 4224 1945 1354 4225 4225 1944 1354 4226 4226 1956 1355 4227 4227 1742 1355 4228 4228 1957 1355 4229 4229 1729 1356 4230 4230 1745 1356 4231 4231 1954 1356 4232 4232 1967 860 4233 4233 1735 860 4234 4234 1945 860 4235 4235 1955 1357 4236 4236 1743 1357 4237 4237 1956 1357 4238 4238 1974 1358 4239 4239 1939 1358 4240 4240 1729 1358 4241 4241 1966 860 4242 4242 1946 860 4243 4243 1735 860 4244 4244 1721 1359 4245 4245 1952 1359 4246 4246 1955 1359 4247 4247 1973 860 4248 4248 1730 860 4249 4249 1974 860 4250 4250 1965 860 4251 4251 1947 860 4252 4252 1946 860 4253 4253 1720 1360 4254 4254 1744 1360 4255 4255 1721 1360 4256 4256 1972 860 4257 4257 1940 860 4258 4258 1973 860 4259 4259 1964 860 4260 4260 1948 860 4261 4261 1947 860 4262 4262 1963 1361 4263 4263 1736 1361 4264 4264 1948 1361 4265 4265 1725 1362 4266 4266 1737 1362 4267 4267 1736 1362 4268 4268 1724 1363 4269 4269 1951 1363 4270 4270 1950 1363 4271 4271 1993 1364 4272 4272 2021 1364 4273 4273 2020 1364 4274 4274 2033 1365 4275 4275 1979 1365 4276 4276 2034 1365 4277 4277 2038 1366 4278 4278 2006 1366 4279 4279 2007 1366 4280 4280 1994 1367 4281 4281 2020 1367 4282 4282 2019 1367 4283 4283 2032 1368 4284 4284 1980 1368 4285 4285 2033 1368 4286 4286 1995 1369 4287 4287 2019 1369 4288 4288 2018 1369 4289 4289 2031 1370 4290 4290 1981 1370 4291 4291 2032 1370 4292 4292 1996 1371 4293 4293 2018 1371 4294 4294 2017 1371 4295 4295 2030 1372 4296 4296 1982 1372 4297 4297 2031 1372 4298 4298 1997 1373 4299 4299 2017 1373 4300 4300 2016 1373 4301 4301 2029 1374 4302 4302 1983 1374 4303 4303 2030 1374 4304 4304 1998 1375 4305 4305 2016 1375 4306 4306 2015 1375 4307 4307 2028 1376 4308 4308 1984 1376 4309 4309 2029 1376 4310 4310 1999 1377 4311 4311 2015 1377 4312 4312 2014 1377 4313 4313 2027 1378 4314 4314 1985 1378 4315 4315 2028 1378 4316 4316 2000 1379 4317 4317 2014 1379 4318 4318 2013 1379 4319 4319 2026 1380 4320 4320 1986 1380 4321 4321 2027 1380 4322 4322 2001 1381 4323 4323 2013 1381 4324 4324 2012 1381 4325 4325 1988 1382 4326 4326 2026 1382 4327 4327 2025 1382 4328 4328 2002 1383 4329 4329 2012 1383 4330 4330 2011 1383 4331 4331 1989 1384 4332 4332 2025 1384 4333 4333 2024 1384 4334 4334 2037 1385 4335 4335 1975 1385 4336 4336 2038 1385 4337 4337 2003 1386 4338 4338 2011 1386 4339 4339 2010 1386 4340 4340 1990 1387 4341 4341 2024 1387 4342 4342 2023 1387 4343 4343 2036 1388 4344 4344 1976 1388 4345 4345 2037 1388 4346 4346 2009 1389 4347 4347 2003 1389 4348 4348 2010 1389 4349 4349 1991 1390 4350 4350 2023 1390 4351 4351 2022 1390 4352 4352 2035 1391 4353 4353 1977 1391 4354 4354 2036 1391 4355 4355 2008 1392 4356 4356 2004 1392 4357 4357 2009 1392 4358 4358 1992 1393 4359 4359 2022 1393 4360 4360 2021 1393 4361 4361 2034 1394 4362 4362 1978 1394 4363 4363 2035 1394 4364 4364 2007 1395 4365 4365 2005 1395 4366 4366 2008 1395 4367 4367 2026 1396 4368 4368 1758 1396 4369 4369 1759 1396 4370 4370 1772 1397 4371 4371 2014 1397 4372 4372 1771 1397 4373 4373 2027 1398 4374 4374 1757 1398 4375 4375 1758 1398 4376 4376 1771 1399 4377 4377 2015 1399 4378 4378 1770 1399 4379 4379 2028 1400 4380 4380 1756 1400 4381 4381 1757 1400 4382 4382 1770 1401 4383 4383 2016 1401 4384 4384 1769 1401 4385 4385 2029 1402 4386 4386 1755 1402 4387 4387 1756 1402 4388 4388 1769 1403 4389 4389 2017 1403 4390 4390 1768 1403 4391 4391 2030 1404 4392 4392 1754 1404 4393 4393 1755 1404 4394 4394 1768 1405 4395 4395 2018 1405 4396 4396 1767 1405 4397 4397 2031 1406 4398 4398 1753 1406 4399 4399 1754 1406 4400 4400 1767 1407 4401 4401 2019 1407 4402 4402 1766 1407 4403 4403 2032 1408 4404 4404 1752 1408 4405 4405 1753 1408 4406 4406 1766 1409 4407 4407 2020 1409 4408 4408 1765 1409 4409 4409 1747 1410 4410 4410 2007 1410 4411 4411 1778 1410 4412 4412 2033 1411 4413 4413 1751 1411 4414 4414 1752 1411 4415 4415 1765 1412 4416 4416 2021 1412 4417 4417 1764 1412 4418 4418 1778 1413 4419 4419 2008 1413 4420 4420 1777 1413 4421 4421 2034 1414 4422 4422 1750 1414 4423 4423 1751 1414 4424 4424 1764 1415 4425 4425 2022 1415 4426 4426 1763 1415 4427 4427 1777 1416 4428 4428 2009 1416 4429 4429 1776 1416 4430 4430 2035 1417 4431 4431 1749 1417 4432 4432 1750 1417 4433 4433 2022 1418 4434 4434 1762 1418 4435 4435 1763 1418 4436 4436 1776 1419 4437 4437 2010 1419 4438 4438 1775 1419 4439 4439 2036 1420 4440 4440 1748 1420 4441 4441 1749 1420 4442 4442 2023 1421 4443 4443 1761 1421 4444 4444 1762 1421 4445 4445 1775 1422 4446 4446 2011 1422 4447 4447 1774 1422 4448 4448 2037 1423 4449 4449 1747 1423 4450 4450 1748 1423 4451 4451 2024 1424 4452 4452 1760 1424 4453 4453 1761 1424 4454 4454 1774 1425 4455 4455 2012 1425 4456 4456 1773 1425 4457 4457 2025 1426 4458 4458 1759 1426 4459 4459 1760 1426 4460 4460 1773 1427 4461 4461 2013 1427 4462 4462 1772 1427 4463 4463 1733 1428 4464 4464 2065 1428 4465 4465 1943 1428 4466 4466 2043 1429 4467 4467 1950 1429 4468 4468 1951 1429 4469 4469 1943 1430 4470 4470 2039 1430 4471 4471 1732 1430 4472 4472 2050 1431 4473 4473 1949 1431 4474 4474 1950 1431 4475 4475 1732 1432 4476 4476 2055 1432 4477 4477 1731 1432 4478 4478 2066 1433 4479 4479 1745 1433 4480 4480 1939 1433 4481 4481 1949 1434 4482 4482 2042 1434 4483 4483 1738 1434 4484 4484 1731 1435 4485 4485 2070 1435 4486 4486 1942 1435 4487 4487 1746 1436 4488 4488 2049 1436 4489 4489 2067 1436 4490 4490 1738 1437 4491 4491 2041 1437 4492 4492 1737 1437 4493 4493 1942 1438 4494 4494 2056 1438 4495 4495 1941 1438 4496 4496 1953 1439 4497 4497 2067 1439 4498 4498 2062 1439 4499 4499 1737 1440 4500 4500 2068 1440 4501 4501 1736 1440 4502 4502 1940 1441 4503 4503 2056 1441 4504 4504 2046 1441 4505 4505 1744 1442 4506 4506 2062 1442 4507 4507 2045 1442 4508 4508 1736 1443 4509 4509 2060 1443 4510 4510 1948 1443 4511 4511 1730 1444 4512 4512 2046 1444 4513 4513 2057 1444 4514 4514 1952 1445 4515 4515 2045 1445 4516 4516 2048 1445 4517 4517 1948 1446 4518 4518 2061 1446 4519 4519 1947 1446 4520 4520 1939 1447 4521 4521 2057 1447 4522 4522 2066 1447 4523 4523 1743 1448 4524 4524 2048 1448 4525 4525 2044 1448 4526 4526 1947 1449 4527 4527 2052 1449 4528 4528 1946 1449 4529 4529 1742 1450 4530 4530 2044 1450 4531 4531 2058 1450 4532 4532 1946 1451 4533 4533 2053 1451 4534 4534 1735 1451 4535 4535 1741 1452 4536 4536 2058 1452 4537 4537 2047 1452 4538 4538 1735 1453 4539 4539 2040 1453 4540 4540 1945 1453 4541 4541 1740 1454 4542 4542 2047 1454 4543 4543 2059 1454 4544 4544 1945 1455 4545 4545 2064 1455 4546 4546 1944 1455 4547 4547 1739 1456 4548 4548 2059 1456 4549 4549 2063 1456 4550 4550 1944 1457 4551 4551 2069 1457 4552 4552 1734 1457 4553 4553 1951 1458 4554 4554 2063 1458 4555 4555 2043 1458 4556 4556 1734 1459 4557 4557 2054 1459 4558 4558 1733 1459 4559 4559 1650 642 4560 4560 2263 642 4561 4561 1656 642 4562 4562 1656 643 4563 4563 2251 643 4564 4564 1636 643 4565 4565 1647 644 4566 4566 2261 644 4567 4567 1650 644 4568 4568 1590 645 4569 4569 2249 645 4570 4570 1628 645 4571 4571 1594 646 4572 4572 2256 646 4573 4573 1645 646 4574 4574 1591 647 4575 4575 2252 647 4576 4576 1637 647 4577 4577 1649 648 4578 4578 2259 648 4579 4579 1648 648 4580 4580 2246 649 4581 4581 1655 649 4582 4582 1593 649 4583 4583 1638 650 4584 4584 2243 650 4585 4585 1590 650 4586 4586 1648 651 4587 4587 2247 651 4588 4588 1594 651 4589 4589 2262 652 4590 4590 1627 652 4591 4591 1655 652 4592 4592 1592 653 4593 4593 2253 653 4594 4594 1638 653 4595 4595 1593 654 4596 4596 2244 654 4597 4597 1591 654 4598 4598 1627 1460 4599 4599 2250 1460 4600 4600 2248 1460 4601 4601 1657 656 4602 4602 2258 656 4603 4603 1647 656 4604 4604 1628 657 4605 4605 2254 657 4606 4606 1643 657 4607 4607 1636 658 4608 4608 2245 658 4609 4609 1592 658 4610 4610 1644 659 4611 4611 2250 659 4612 4612 1635 659 4613 4613 1643 1461 4614 4614 2255 1461 4615 4615 1644 1461 4616 4616 1637 661 4617 4617 2257 661 4618 4618 1646 661 4619 4619 1645 662 4620 4620 2264 662 4621 4621 1657 662 4622 4622 1646 663 4623 4623 2260 663 4624 4624 1649 663 4625 4625 2266 1462 4626 4626 2267 1462 4627 4627 2265 1462 4628 4628 2290 1463 4629 4629 2091 1463 4630 4630 2092 1463 4631 4631 2277 1464 4632 4632 2078 1464 4633 4633 2079 1464 4634 4634 2291 672 4635 4635 2092 672 4636 4636 2093 672 4637 4637 2278 1465 4638 4638 2079 1465 4639 4639 2080 1465 4640 4640 2292 1466 4641 4641 2093 1466 4642 4642 2094 1466 4643 4643 2279 1467 4644 4644 2080 1467 4645 4645 2081 1467 4646 4646 2293 1468 4647 4647 2094 1468 4648 4648 2095 1468 4649 4649 2280 667 4650 4650 2081 667 4651 4651 2082 667 4652 4652 2294 1469 4653 4653 2095 1469 4654 4654 2096 1469 4655 4655 2281 1470 4656 4656 2082 1470 4657 4657 2083 1470 4658 4658 2295 1471 4659 4659 2096 1471 4660 4660 2097 1471 4661 4661 2282 695 4662 4662 2083 695 4663 4663 2084 695 4664 4664 2296 1472 4665 4665 2097 1472 4666 4666 2098 1472 4667 4667 2283 1473 4668 4668 2084 1473 4669 4669 2085 1473 4670 4670 2270 1474 4671 4671 2071 1474 4672 4672 2072 1474 4673 4673 2297 1475 4674 4674 2098 1475 4675 4675 2099 1475 4676 4676 2284 1476 4677 4677 2085 1476 4678 4678 2086 1476 4679 4679 2271 1477 4680 4680 2072 1477 4681 4681 2073 1477 4682 4682 2298 1478 4683 4683 2099 1478 4684 4684 2100 1478 4685 4685 2285 1479 4686 4686 2086 1479 4687 4687 2087 1479 4688 4688 2272 1480 4689 4689 2073 1480 4690 4690 2074 1480 4691 4691 2299 1481 4692 4692 2100 1481 4693 4693 2101 1481 4694 4694 2286 1482 4695 4695 2087 1482 4696 4696 2088 1482 4697 4697 2273 1483 4698 4698 2074 1483 4699 4699 2075 1483 4700 4700 2300 1484 4701 4701 2101 1484 4702 4702 2102 1484 4703 4703 2287 1485 4704 4704 2088 1485 4705 4705 2089 1485 4706 4706 2274 1486 4707 4707 2075 1486 4708 4708 2076 1486 4709 4709 2269 1487 4710 4710 2102 1487 4711 4711 2071 1487 4712 4712 2288 1488 4713 4713 2089 1488 4714 4714 2090 1488 4715 4715 2275 1489 4716 4716 2076 1489 4717 4717 2077 1489 4718 4718 2289 676 4719 4719 2090 676 4720 4720 2091 676 4721 4721 2276 1490 4722 4722 2077 1490 4723 4723 2078 1490 4724 4724 2219 1491 4725 4725 2308 1491 4726 4726 2218 1491 4727 4727 2323 1492 4728 4728 2232 1492 4729 4729 2233 1492 4730 4730 2310 1493 4731 4731 2219 1493 4732 4732 2220 1493 4733 4733 2324 1494 4734 4734 2233 1494 4735 4735 2234 1494 4736 4736 2311 1495 4737 4737 2220 1495 4738 4738 2221 1495 4739 4739 2325 1496 4740 4740 2234 1496 4741 4741 2235 1496 4742 4742 2312 1497 4743 4743 2221 1497 4744 4744 2222 1497 4745 4745 2236 1498 4746 4746 2325 1498 4747 4747 2235 1498 4748 4748 2313 1499 4749 4749 2222 1499 4750 4750 2223 1499 4751 4751 2237 1500 4752 4752 2326 1500 4753 4753 2236 1500 4754 4754 2314 1501 4755 4755 2223 1501 4756 4756 2224 1501 4757 4757 2238 1502 4758 4758 2327 1502 4759 4759 2237 1502 4760 4760 2315 1503 4761 4761 2224 1503 4762 4762 2225 1503 4763 4763 2212 1504 4764 4764 2301 1504 4765 4765 2211 1504 4766 4766 2239 1505 4767 4767 2328 1505 4768 4768 2238 1505 4769 4769 2316 1506 4770 4770 2225 1506 4771 4771 2226 1506 4772 4772 2213 1507 4773 4773 2302 1507 4774 4774 2212 1507 4775 4775 2240 1508 4776 4776 2329 1508 4777 4777 2239 1508 4778 4778 2317 1509 4779 4779 2226 1509 4780 4780 2227 1509 4781 4781 2214 1510 4782 4782 2303 1510 4783 4783 2213 1510 4784 4784 2241 1511 4785 4785 2330 1511 4786 4786 2240 1511 4787 4787 2318 1512 4788 4788 2227 1512 4789 4789 2228 1512 4790 4790 2215 1513 4791 4791 2304 1513 4792 4792 2214 1513 4793 4793 2242 1514 4794 4794 2331 1514 4795 4795 2241 1514 4796 4796 2319 1515 4797 4797 2228 1515 4798 4798 2229 1515 4799 4799 2216 1516 4800 4800 2305 1516 4801 4801 2215 1516 4802 4802 2211 1517 4803 4803 2332 1517 4804 4804 2242 1517 4805 4805 2320 1518 4806 4806 2229 1518 4807 4807 2230 1518 4808 4808 2217 1519 4809 4809 2306 1519 4810 4810 2216 1519 4811 4811 2321 1520 4812 4812 2230 1520 4813 4813 2231 1520 4814 4814 2218 1521 4815 4815 2307 1521 4816 4816 2217 1521 4817 4817 2322 1522 4818 4818 2231 1522 4819 4819 2232 1522 4820 4820 2377 1523 4821 4821 2348 1523 4822 4822 2207 1523 4823 4823 2364 1524 4824 4824 2200 1524 4825 4825 2342 1524 4826 4826 2378 1525 4827 4827 2207 1525 4828 4828 2349 1525 4829 4829 2365 1526 4830 4830 2342 1526 4831 4831 2201 1526 4832 4832 2350 1527 4833 4833 2378 1527 4834 4834 2349 1527 4835 4835 2366 1528 4836 4836 2201 1528 4837 4837 2343 1528 4838 4838 2351 1529 4839 4839 2379 1529 4840 4840 2350 1529 4841 4841 2367 1530 4842 4842 2343 1530 4843 4843 2202 1530 4844 4844 2334 1531 4845 4845 2353 1531 4846 4846 2333 1531 4847 4847 2352 1532 4848 4848 2380 1532 4849 4849 2351 1532 4850 4850 2368 1533 4851 4851 2202 1533 4852 4852 2203 1533 4853 4853 2335 1534 4854 4854 2354 1534 4855 4855 2334 1534 4856 4856 2208 1535 4857 4857 2381 1535 4858 4858 2352 1535 4859 4859 2369 1536 4860 4860 2203 1536 4861 4861 2204 1536 4862 4862 2199 1537 4863 4863 2355 1537 4864 4864 2335 1537 4865 4865 2209 1538 4866 4866 2382 1538 4867 4867 2208 1538 4868 4868 2370 1539 4869 4869 2204 1539 4870 4870 2344 1539 4871 4871 2336 1540 4872 4872 2356 1540 4873 4873 2199 1540 4874 4874 2210 1541 4875 4875 2383 1541 4876 4876 2209 1541 4877 4877 2371 1542 4878 4878 2344 1542 4879 4879 2345 1542 4880 4880 2337 1543 4881 4881 2357 1543 4882 4882 2336 1543 4883 4883 2333 1544 4884 4884 2384 1544 4885 4885 2210 1544 4886 4886 2372 1545 4887 4887 2345 1545 4888 4888 2205 1545 4889 4889 2338 1546 4890 4890 2358 1546 4891 4891 2337 1546 4892 4892 2373 1547 4893 4893 2205 1547 4894 4894 2346 1547 4895 4895 2339 1548 4896 4896 2359 1548 4897 4897 2338 1548 4898 4898 2374 1549 4899 4899 2346 1549 4900 4900 2206 1549 4901 4901 2340 1550 4902 4902 2360 1550 4903 4903 2339 1550 4904 4904 2375 1551 4905 4905 2206 1551 4906 4906 2347 1551 4907 4907 2341 1552 4908 4908 2361 1552 4909 4909 2340 1552 4910 4910 2376 1553 4911 4911 2347 1553 4912 4912 2348 1553 4913 4913 2363 1554 4914 4914 2341 1554 4915 4915 2200 1554 4916 4916 2172 1555 4917 4917 2389 1555 4918 4918 2171 1555 4919 4919 2167 1556 4920 4920 2416 1556 4921 4921 2198 1556 4922 4922 2404 1557 4923 4923 2185 1557 4924 4924 2186 1557 4925 4925 2173 1558 4926 4926 2390 1558 4927 4927 2172 1558 4928 4928 2405 1559 4929 4929 2186 1559 4930 4930 2187 1559 4931 4931 2174 1560 4932 4932 2391 1560 4933 4933 2173 1560 4934 4934 2406 1561 4935 4935 2187 1561 4936 4936 2188 1561 4937 4937 2175 1562 4938 4938 2392 1562 4939 4939 2174 1562 4940 4940 2407 1563 4941 4941 2188 1563 4942 4942 2189 1563 4943 4943 2176 1564 4944 4944 2393 1564 4945 4945 2175 1564 4946 4946 2408 1565 4947 4947 2189 1565 4948 4948 2190 1565 4949 4949 2177 1566 4950 4950 2394 1566 4951 4951 2176 1566 4952 4952 2409 1567 4953 4953 2190 1567 4954 4954 2191 1567 4955 4955 2396 1568 4956 4956 2177 1568 4957 4957 2178 1568 4958 4958 2410 1569 4959 4959 2191 1569 4960 4960 2192 1569 4961 4961 2397 1570 4962 4962 2178 1570 4963 4963 2179 1570 4964 4964 2411 1571 4965 4965 2192 1571 4966 4966 2193 1571 4967 4967 2398 1572 4968 4968 2179 1572 4969 4969 2180 1572 4970 4970 2194 1573 4971 4971 2411 1573 4972 4972 2193 1573 4973 4973 2399 1574 4974 4974 2180 1574 4975 4975 2181 1574 4976 4976 2168 1575 4977 4977 2385 1575 4978 4978 2167 1575 4979 4979 2195 1576 4980 4980 2412 1576 4981 4981 2194 1576 4982 4982 2400 1577 4983 4983 2181 1577 4984 4984 2182 1577 4985 4985 2169 1578 4986 4986 2386 1578 4987 4987 2168 1578 4988 4988 2196 1579 4989 4989 2413 1579 4990 4990 2195 1579 4991 4991 2401 1580 4992 4992 2182 1580 4993 4993 2183 1580 4994 4994 2170 1581 4995 4995 2387 1581 4996 4996 2169 1581 4997 4997 2197 1582 4998 4998 2414 1582 4999 4999 2196 1582 5000 5000 2402 1583 5001 5001 2183 1583 5002 5002 2184 1583 5003 5003 2171 1584 5004 5004 2388 1584 5005 5005 2170 1584 5006 5006 2198 1585 5007 5007 2415 1585 5008 5008 2197 1585 5009 5009 2403 1586 5010 5010 2184 1586 5011 5011 2185 1586 5012 5012 2441 1587 5013 5013 2158 1587 5014 5014 2159 1587 5015 5015 2146 1588 5016 5016 2427 1588 5017 5017 2145 1588 5018 5018 2442 1589 5019 5019 2159 1589 5020 5020 2160 1589 5021 5021 2429 1590 5022 5022 2146 1590 5023 5023 2147 1590 5024 5024 2443 1591 5025 5025 2160 1591 5026 5026 2161 1591 5027 5027 2430 1592 5028 5028 2147 1592 5029 5029 2148 1592 5030 5030 2444 1593 5031 5031 2161 1593 5032 5032 2162 1593 5033 5033 2431 1594 5034 5034 2148 1594 5035 5035 2149 1594 5036 5036 2136 1595 5037 5037 2417 1595 5038 5038 2135 1595 5039 5039 2163 1596 5040 5040 2444 1596 5041 5041 2162 1596 5042 5042 2432 1597 5043 5043 2149 1597 5044 5044 2150 1597 5045 5045 2137 1598 5046 5046 2418 1598 5047 5047 2136 1598 5048 5048 2164 1599 5049 5049 2445 1599 5050 5050 2163 1599 5051 5051 2433 1600 5052 5052 2150 1600 5053 5053 2151 1600 5054 5054 2138 1601 5055 5055 2419 1601 5056 5056 2137 1601 5057 5057 2165 1602 5058 5058 2446 1602 5059 5059 2164 1602 5060 5060 2434 1603 5061 5061 2151 1603 5062 5062 2152 1603 5063 5063 2139 1604 5064 5064 2420 1604 5065 5065 2138 1604 5066 5066 2166 1605 5067 5067 2447 1605 5068 5068 2165 1605 5069 5069 2435 1606 5070 5070 2152 1606 5071 5071 2153 1606 5072 5072 2140 1607 5073 5073 2421 1607 5074 5074 2139 1607 5075 5075 2135 1608 5076 5076 2448 1608 5077 5077 2166 1608 5078 5078 2436 1609 5079 5079 2153 1609 5080 5080 2154 1609 5081 5081 2141 1610 5082 5082 2422 1610 5083 5083 2140 1610 5084 5084 2437 1611 5085 5085 2154 1611 5086 5086 2155 1611 5087 5087 2142 1612 5088 5088 2423 1612 5089 5089 2141 1612 5090 5090 2438 1613 5091 5091 2155 1613 5092 5092 2156 1613 5093 5093 2143 1614 5094 5094 2424 1614 5095 5095 2142 1614 5096 5096 2439 1615 5097 5097 2156 1615 5098 5098 2157 1615 5099 5099 2144 1616 5100 5100 2425 1616 5101 5101 2143 1616 5102 5102 2440 1617 5103 5103 2157 1617 5104 5104 2158 1617 5105 5105 2145 1618 5106 5106 2426 1618 5107 5107 2144 1618 5108 5108 1266 1619 5109 5109 2455 1619 5110 5110 2460 1619 5111 5111 1575 1620 5112 5112 2450 1620 5113 5113 1577 1620 5114 5114 1266 1621 5115 5115 2460 1621 5116 5116 2454 1621 5117 5117 1575 1622 5118 5118 1579 1622 5119 5119 2449 1622 5120 5120 2452 1623 5121 5121 2466 1623 5122 5122 2460 1623 5123 5123 2454 1624 5124 5124 2465 1624 5125 5125 2459 1624 5126 5126 2460 1625 5127 5127 2463 1625 5128 5128 2454 1625 5129 5129 2464 1626 5130 5130 2452 1626 5131 5131 2455 1626 5132 5132 2471 1627 5133 5133 2453 1627 5134 5134 2458 1627 5135 5135 2468 1628 5136 5136 2461 1628 5137 5137 2453 1628 5138 5138 2470 1629 5139 5139 2455 1629 5140 5140 2456 1629 5141 5141 2467 1630 5142 5142 2456 1630 5143 5143 2451 1630 5144 5144 2472 1631 5145 5145 2451 1631 5146 5146 2461 1631 5147 5147 2473 1632 5148 5148 2475 1632 5149 5149 2474 1632 5150 5150 2476 1633 5151 5151 2267 1633 5152 5152 2268 1633 5153 5153 2474 1634 5154 5154 2266 1634 5155 5155 2265 1634 5156 5156 2266 1635 5157 5157 2476 1635 5158 5158 2268 1635 5159 5159 2267 1636 5160 5160 2474 1636 5161 5161 2265 1636 5162 5162 2478 11 5163 5163 2468 11 5164 5164 2471 11 5165 5165 2479 11 5166 5166 2472 11 5167 5167 2468 11 5168 5168 2477 11 5169 5169 2467 11 5170 5170 2472 11 5171 5171 2481 1637 5172 5172 2480 1637 5173 5173 2477 1637 5174 5174 2483 1638 5175 5175 2477 1638 5176 5176 2479 1638 5177 5177 2482 1639 5178 5178 2479 1639 5179 5179 2478 1639 5180 5180 2481 1640 5181 5181 2488 1640 5182 5182 2484 1640 5183 5183 2483 1641 5184 5184 2485 1641 5185 5185 2481 1641 5186 5186 2482 1642 5187 5187 2487 1642 5188 5188 2483 1642 5189 5189 12 1643 5190 5190 10 1643 5191 5191 27 1643 5192 5192 15 1644 5193 5193 4 1644 5194 5194 6 1644 5195 5195 2 1645 5196 5196 6 1645 5197 5197 4 1645 5198 5198 7 1646 5199 5199 3 1646 5200 5200 1 1646 5201 5201 5 1647 5202 5202 9 1647 5203 5203 8 1647 5204 5204 6 1648 5205 5205 2 1648 5206 5206 20 1648 5207 5207 13 1649 5208 5208 11 1649 5209 5209 10 1649 5210 5210 9 1650 5211 5211 13 1650 5212 5212 12 1650 5213 5213 0 1651 5214 5214 4 1651 5215 5215 33 1651 5216 5216 11 1652 5217 5217 36 1652 5218 5218 41 1652 5219 5219 17 1653 5220 5220 15 1653 5221 5221 14 1653 5222 5222 18 531 5223 5223 19 531 5224 5224 30 531 5225 5225 14 1654 5226 5226 6 1654 5227 5227 24 1654 5228 5228 19 1655 5229 5229 17 1655 5230 5230 16 1655 5231 5231 1 1656 5232 5232 32 1656 5233 5233 34 1656 5234 5234 17 1657 5235 5235 19 1657 5236 5236 41 1657 5237 5237 11 1658 5238 5238 19 1658 5239 5239 18 1658 5240 5240 1214 1659 5241 5241 3 1659 5242 5242 1209 1659 5243 5243 7 1660 5244 5244 1217 1660 5245 5245 1209 1660 5246 5246 388 18 5247 5247 396 18 5248 5248 474 18 5249 5249 396 18 5250 5250 387 18 5251 5251 470 18 5252 5252 397 1661 5253 5253 388 1661 5254 5254 471 1661 5255 5255 1217 1662 5256 5256 7 1662 5257 5257 8 1662 5258 5258 8 1663 5259 5259 1212 1663 5260 5260 1207 1663 5261 5261 16 1664 5262 5262 14 1664 5263 5263 23 1664 5264 5264 1212 1665 5265 5265 8 1665 5266 5266 12 1665 5267 5267 12 1666 5268 5268 1211 1666 5269 5269 1212 1666 5270 5270 25 1667 5271 5271 1211 1667 5272 5272 26 1667 5273 5273 18 1668 5274 5274 16 1668 5275 5275 28 1668 5276 5276 10 1669 5277 5277 18 1669 5278 5278 29 1669 5279 5279 39 39 5280 5280 31 39 5281 5281 33 39 5282 5282 39 1670 5283 5283 38 1670 5284 5284 52 1670 5285 5285 36 1671 5286 5286 37 1671 5287 5287 51 1671 5288 5288 40 1672 5289 5289 55 1672 5290 5290 52 1672 5291 5291 41 1673 5292 5292 36 1673 5293 5293 48 1673 5294 5294 35 1674 5295 5295 34 1674 5296 5296 45 1674 5297 5297 13 1675 5298 5298 37 1675 5299 5299 36 1675 5300 5300 5 1676 5301 5301 34 1676 5302 5302 35 1676 5303 5303 4 1677 5304 5304 15 1677 5305 5305 38 1677 5306 5306 15 1678 5307 5307 17 1678 5308 5308 40 1678 5309 5309 9 1679 5310 5310 35 1679 5311 5311 37 1679 5312 5312 43 39 5313 5313 46 39 5314 5314 47 39 5315 5315 50 39 5316 5316 49 39 5317 5317 48 39 5318 5318 46 39 5319 5319 50 39 5320 5320 51 39 5321 5321 54 39 5322 5322 53 39 5323 5323 52 39 5324 5324 56 39 5325 5325 54 39 5326 5326 55 39 5327 5327 49 39 5328 5328 56 39 5329 5329 57 39 5330 5330 38 1680 5331 5331 52 1680 5332 5332 44 1680 5333 5333 32 1681 5334 5334 43 1681 5335 5335 45 1681 5336 5336 41 1682 5337 5337 57 1682 5338 5338 55 1682 5339 5339 37 1683 5340 5340 35 1683 5341 5341 47 1683 5342 5342 86 1684 5343 5343 110 1684 5344 5344 102 1684 5345 5345 63 1685 5346 5346 58 1685 5347 5347 73 1685 5348 5348 70 1686 5349 5349 68 1686 5350 5350 88 1686 5351 5351 316 1687 5352 5352 81 1687 5353 5353 85 1687 5354 5354 59 1688 5355 5355 72 1688 5356 5356 96 1688 5357 5357 313 1689 5358 5358 74 1689 5359 5359 73 1689 5360 5360 69 1690 5361 5361 89 1690 5362 5362 93 1690 5363 5363 317 1691 5364 5364 82 1691 5365 5365 86 1691 5366 5366 59 1692 5367 5367 76 1692 5368 5368 90 1692 5369 5369 68 1693 5370 5370 318 1693 5371 5371 90 1693 5372 5372 316 1694 5373 5373 63 1694 5374 5374 83 1694 5375 5375 321 56 5376 5376 314 56 5377 5377 75 56 5378 5378 319 1695 5379 5379 91 1695 5380 5380 89 1695 5381 5381 64 1696 5382 5382 84 1696 5383 5383 82 1696 5384 5384 60 1697 5385 5385 77 1697 5386 5386 79 1697 5387 5387 70 1698 5388 5388 92 1698 5389 5389 87 1698 5390 5390 65 1699 5391 5391 85 1699 5392 5392 80 1699 5393 5393 61 1700 5394 5394 78 1700 5395 5395 77 1700 5396 5396 320 1701 5397 5397 93 1701 5398 5398 74 1701 5399 5399 66 1702 5400 5400 86 1702 5401 5401 78 1702 5402 5402 315 1703 5403 5403 79 1703 5404 5404 75 1703 5405 5405 71 1704 5406 5406 94 1704 5407 5407 96 1704 5408 5408 67 1705 5409 5409 87 1705 5410 5410 91 1705 5411 5411 62 1706 5412 5412 80 1706 5413 5413 84 1706 5414 5414 321 1707 5415 5415 95 1707 5416 5416 94 1707 5417 5417 114 1708 5418 5418 100 1708 5419 5419 124 1708 5420 5420 79 1709 5421 5421 103 1709 5422 5422 99 1709 5423 5423 96 1710 5424 5424 94 1710 5425 5425 118 1710 5426 5426 91 1711 5427 5427 87 1711 5428 5428 111 1711 5429 5429 80 1712 5430 5430 104 1712 5431 5431 108 1712 5432 5432 94 1713 5433 5433 95 1713 5434 5434 119 1713 5435 5435 73 1714 5436 5436 97 1714 5437 5437 107 1714 5438 5438 92 1715 5439 5439 88 1715 5440 5440 112 1715 5441 5441 81 1716 5442 5442 105 1716 5443 5443 109 1716 5444 5444 76 1717 5445 5445 96 1717 5446 5446 120 1717 5447 5447 73 1718 5448 5448 74 1718 5449 5449 98 1718 5450 5450 93 1719 5451 5451 89 1719 5452 5452 113 1719 5453 5453 82 1720 5454 5454 106 1720 5455 5455 110 1720 5456 5456 90 1721 5457 5457 76 1721 5458 5458 100 1721 5459 5459 88 1722 5460 5460 90 1722 5461 5461 114 1722 5462 5462 83 1723 5463 5463 107 1723 5464 5464 105 1723 5465 5465 75 1724 5466 5466 99 1724 5467 5467 119 1724 5468 5468 89 1725 5469 5469 91 1725 5470 5470 115 1725 5471 5471 84 1726 5472 5472 108 1726 5473 5473 106 1726 5474 5474 77 1727 5475 5475 101 1727 5476 5476 103 1727 5477 5477 87 1728 5478 5478 92 1728 5479 5479 116 1728 5480 5480 85 1729 5481 5481 109 1729 5482 5482 104 1729 5483 5483 78 1730 5484 5484 102 1730 5485 5485 101 1730 5486 5486 74 1731 5487 5487 93 1731 5488 5488 117 1731 5489 5489 127 1732 5490 5490 151 1732 5491 5491 147 1732 5492 5492 112 1733 5493 5493 114 1733 5494 5494 138 1733 5495 5495 107 1734 5496 5496 131 1734 5497 5497 129 1734 5498 5498 99 1735 5499 5499 123 1735 5500 5500 143 1735 5501 5501 113 1736 5502 5502 115 1736 5503 5503 139 1736 5504 5504 108 1737 5505 5505 132 1737 5506 5506 130 1737 5507 5507 101 1738 5508 5508 125 1738 5509 5509 127 1738 5510 5510 111 1739 5511 5511 116 1739 5512 5512 140 1739 5513 5513 109 1740 5514 5514 133 1740 5515 5515 128 1740 5516 5516 102 1741 5517 5517 126 1741 5518 5518 125 1741 5519 5519 98 1742 5520 5520 117 1742 5521 5521 141 1742 5522 5522 110 1743 5523 5523 134 1743 5524 5524 126 1743 5525 5525 103 1744 5526 5526 127 1744 5527 5527 123 1744 5528 5528 120 1745 5529 5529 118 1745 5530 5530 142 1745 5531 5531 115 1746 5532 5532 111 1746 5533 5533 135 1746 5534 5534 104 1747 5535 5535 128 1747 5536 5536 132 1747 5537 5537 118 1748 5538 5538 119 1748 5539 5539 143 1748 5540 5540 97 1749 5541 5541 121 1749 5542 5542 131 1749 5543 5543 116 1750 5544 5544 112 1750 5545 5545 136 1750 5546 5546 105 1751 5547 5547 129 1751 5548 5548 133 1751 5549 5549 100 1752 5550 5550 120 1752 5551 5551 144 1752 5552 5552 97 1753 5553 5553 98 1753 5554 5554 122 1753 5555 5555 117 1754 5556 5556 113 1754 5557 5557 137 1754 5558 5558 106 1755 5559 5559 130 1755 5560 5560 134 1755 5561 5561 160 1756 5562 5562 162 1756 5563 5563 186 1756 5564 5564 144 1757 5565 5565 142 1757 5566 5566 166 1757 5567 5567 139 1758 5568 5568 135 1758 5569 5569 159 1758 5570 5570 128 1759 5571 5571 152 1759 5572 5572 156 1759 5573 5573 142 1760 5574 5574 143 1760 5575 5575 167 1760 5576 5576 131 1761 5577 5577 121 1761 5578 5578 145 1761 5579 5579 140 1762 5580 5580 136 1762 5581 5581 160 1762 5582 5582 129 1763 5583 5583 153 1763 5584 5584 157 1763 5585 5585 124 1764 5586 5586 144 1764 5587 5587 168 1764 5588 5588 121 1765 5589 5589 122 1765 5590 5590 146 1765 5591 5591 141 1766 5592 5592 137 1766 5593 5593 161 1766 5594 5594 130 1767 5595 5595 154 1767 5596 5596 158 1767 5597 5597 138 1768 5598 5598 124 1768 5599 5599 148 1768 5600 5600 136 1769 5601 5601 138 1769 5602 5602 162 1769 5603 5603 131 1770 5604 5604 155 1770 5605 5605 153 1770 5606 5606 123 1771 5607 5607 147 1771 5608 5608 167 1771 5609 5609 137 1772 5610 5610 139 1772 5611 5611 163 1772 5612 5612 132 1773 5613 5613 156 1773 5614 5614 154 1773 5615 5615 125 1774 5616 5616 149 1774 5617 5617 151 1774 5618 5618 135 1775 5619 5619 140 1775 5620 5620 164 1775 5621 5621 133 1776 5622 5622 157 1776 5623 5623 152 1776 5624 5624 126 1777 5625 5625 150 1777 5626 5626 149 1777 5627 5627 122 1778 5628 5628 141 1778 5629 5629 165 1778 5630 5630 134 1779 5631 5631 158 1779 5632 5632 150 1779 5633 5633 175 1780 5634 5634 199 1780 5635 5635 195 1780 5636 5636 155 1781 5637 5637 179 1781 5638 5638 177 1781 5639 5639 147 1782 5640 5640 171 1782 5641 5641 191 1782 5642 5642 161 1783 5643 5643 163 1783 5644 5644 187 1783 5645 5645 154 1784 5646 5646 156 1784 5647 5647 180 1784 5648 5648 149 1785 5649 5649 173 1785 5650 5650 175 1785 5651 5651 159 1786 5652 5652 164 1786 5653 5653 188 1786 5654 5654 157 1787 5655 5655 181 1787 5656 5656 176 1787 5657 5657 150 1788 5658 5658 174 1788 5659 5659 173 1788 5660 5660 165 1789 5661 5661 189 1789 5662 5662 170 1789 5663 5663 158 1790 5664 5664 182 1790 5665 5665 174 1790 5666 5666 151 1791 5667 5667 175 1791 5668 5668 171 1791 5669 5669 168 1792 5670 5670 166 1792 5671 5671 190 1792 5672 5672 163 1793 5673 5673 159 1793 5674 5674 183 1793 5675 5675 152 1794 5676 5676 176 1794 5677 5677 180 1794 5678 5678 166 1795 5679 5679 167 1795 5680 5680 191 1795 5681 5681 155 1796 5682 5682 145 1796 5683 5683 169 1796 5684 5684 164 1797 5685 5685 160 1797 5686 5686 184 1797 5687 5687 153 1798 5688 5688 177 1798 5689 5689 181 1798 5690 5690 148 1799 5691 5691 168 1799 5692 5692 192 1799 5693 5693 146 1800 5694 5694 170 1800 5695 5695 169 1800 5696 5696 165 1801 5697 5697 161 1801 5698 5698 185 1801 5699 5699 154 1802 5700 5700 178 1802 5701 5701 182 1802 5702 5702 162 1803 5703 5703 148 1803 5704 5704 172 1803 5705 5705 201 1804 5706 5706 203 1804 5707 5707 227 1804 5708 5708 192 1805 5709 5709 190 1805 5710 5710 214 1805 5711 5711 187 1806 5712 5712 183 1806 5713 5713 207 1806 5714 5714 176 1807 5715 5715 200 1807 5716 5716 204 1807 5717 5717 190 1808 5718 5718 191 1808 5719 5719 215 1808 5720 5720 179 1809 5721 5721 169 1809 5722 5722 193 1809 5723 5723 188 1810 5724 5724 184 1810 5725 5725 208 1810 5726 5726 181 1811 5727 5727 177 1811 5728 5728 201 1811 5729 5729 172 1812 5730 5730 192 1812 5731 5731 216 1812 5732 5732 170 1813 5733 5733 194 1813 5734 5734 193 1813 5735 5735 185 1814 5736 5736 209 1814 5737 5737 213 1814 5738 5738 178 1815 5739 5739 202 1815 5740 5740 206 1815 5741 5741 186 1816 5742 5742 172 1816 5743 5743 196 1816 5744 5744 184 1817 5745 5745 186 1817 5746 5746 210 1817 5747 5747 177 1818 5748 5748 179 1818 5749 5749 203 1818 5750 5750 171 1819 5751 5751 195 1819 5752 5752 215 1819 5753 5753 185 1820 5754 5754 187 1820 5755 5755 211 1820 5756 5756 178 1821 5757 5757 180 1821 5758 5758 204 1821 5759 5759 173 1822 5760 5760 197 1822 5761 5761 199 1822 5762 5762 183 1823 5763 5763 188 1823 5764 5764 212 1823 5765 5765 181 1824 5766 5766 205 1824 5767 5767 200 1824 5768 5768 174 1825 5769 5769 198 1825 5770 5770 197 1825 5771 5771 189 1826 5772 5772 213 1826 5773 5773 194 1826 5774 5774 182 1827 5775 5775 206 1827 5776 5776 198 1827 5777 5777 240 1828 5778 5778 238 1828 5779 5779 262 1828 5780 5780 195 1829 5781 5781 219 1829 5782 5782 239 1829 5783 5783 211 1830 5784 5784 235 1830 5785 5785 233 1830 5786 5786 204 1831 5787 5787 228 1831 5788 5788 226 1831 5789 5789 197 1832 5790 5790 221 1832 5791 5791 223 1832 5792 5792 207 1833 5793 5793 212 1833 5794 5794 236 1833 5795 5795 200 1834 5796 5796 205 1834 5797 5797 229 1834 5798 5798 198 1835 5799 5799 222 1835 5800 5800 221 1835 5801 5801 213 1836 5802 5802 237 1836 5803 5803 218 1836 5804 5804 206 1837 5805 5805 230 1837 5806 5806 222 1837 5807 5807 199 1838 5808 5808 223 1838 5809 5809 219 1838 5810 5810 216 1839 5811 5811 214 1839 5812 5812 238 1839 5813 5813 211 1840 5814 5814 207 1840 5815 5815 231 1840 5816 5816 200 1841 5817 5817 224 1841 5818 5818 228 1841 5819 5819 214 1842 5820 5820 215 1842 5821 5821 239 1842 5822 5822 203 1843 5823 5823 193 1843 5824 5824 217 1843 5825 5825 212 1844 5826 5826 208 1844 5827 5827 232 1844 5828 5828 205 1845 5829 5829 201 1845 5830 5830 225 1845 5831 5831 196 1846 5832 5832 216 1846 5833 5833 240 1846 5834 5834 194 1847 5835 5835 218 1847 5836 5836 217 1847 5837 5837 209 1848 5838 5838 233 1848 5839 5839 237 1848 5840 5840 202 1849 5841 5841 226 1849 5842 5842 230 1849 5843 5843 210 1850 5844 5844 196 1850 5845 5845 220 1850 5846 5846 208 1851 5847 5847 210 1851 5848 5848 234 1851 5849 5849 249 1852 5850 5850 251 1852 5851 5851 275 1852 5852 5852 235 1853 5853 5853 231 1853 5854 5854 255 1853 5855 5855 228 1854 5856 5856 224 1854 5857 5857 248 1854 5858 5858 238 1855 5859 5859 239 1855 5860 5860 263 1855 5861 5861 227 1856 5862 5862 217 1856 5863 5863 241 1856 5864 5864 236 1857 5865 5865 232 1857 5866 5866 256 1857 5867 5867 229 1858 5868 5868 225 1858 5869 5869 249 1858 5870 5870 220 1859 5871 5871 240 1859 5872 5872 264 1859 5873 5873 218 1860 5874 5874 242 1860 5875 5875 241 1860 5876 5876 233 1861 5877 5877 257 1861 5878 5878 261 1861 5879 5879 226 1862 5880 5880 250 1862 5881 5881 254 1862 5882 5882 234 1863 5883 5883 220 1863 5884 5884 244 1863 5885 5885 232 1864 5886 5886 234 1864 5887 5887 258 1864 5888 5888 225 1865 5889 5889 227 1865 5890 5890 251 1865 5891 5891 219 1866 5892 5892 243 1866 5893 5893 263 1866 5894 5894 235 1867 5895 5895 259 1867 5896 5896 257 1867 5897 5897 228 1868 5898 5898 252 1868 5899 5899 250 1868 5900 5900 221 1869 5901 5901 245 1869 5902 5902 247 1869 5903 5903 231 1870 5904 5904 236 1870 5905 5905 260 1870 5906 5906 224 1871 5907 5907 229 1871 5908 5908 253 1871 5909 5909 222 1872 5910 5910 246 1872 5911 5911 245 1872 5912 5912 237 1873 5913 5913 261 1873 5914 5914 242 1873 5915 5915 230 1874 5916 5916 254 1874 5917 5917 246 1874 5918 5918 223 1875 5919 5919 247 1875 5920 5920 243 1875 5921 5921 279 1876 5922 5922 303 1876 5923 5923 307 1876 5924 5924 243 1877 5925 5925 267 1877 5926 5926 287 1877 5927 5927 259 1878 5928 5928 283 1878 5929 5929 281 1878 5930 5930 252 1879 5931 5931 276 1879 5932 5932 274 1879 5933 5933 245 1880 5934 5934 269 1880 5935 5935 271 1880 5936 5936 255 1881 5937 5937 260 1881 5938 5938 284 1881 5939 5939 248 1882 5940 5940 253 1882 5941 5941 277 1882 5942 5942 246 1883 5943 5943 270 1883 5944 5944 269 1883 5945 5945 261 1884 5946 5946 285 1884 5947 5947 266 1884 5948 5948 254 1885 5949 5949 278 1885 5950 5950 270 1885 5951 5951 247 1886 5952 5952 271 1886 5953 5953 267 1886 5954 5954 264 1887 5955 5955 262 1887 5956 5956 286 1887 5957 5957 255 1888 5958 5958 279 1888 5959 5959 283 1888 5960 5960 252 1889 5961 5961 248 1889 5962 5962 272 1889 5963 5963 262 1890 5964 5964 263 1890 5965 5965 287 1890 5966 5966 251 1891 5967 5967 241 1891 5968 5968 265 1891 5969 5969 260 1892 5970 5970 256 1892 5971 5971 280 1892 5972 5972 253 1893 5973 5973 249 1893 5974 5974 273 1893 5975 5975 244 1894 5976 5976 264 1894 5977 5977 288 1894 5978 5978 242 1895 5979 5979 266 1895 5980 5980 265 1895 5981 5981 257 1896 5982 5982 281 1896 5983 5983 285 1896 5984 5984 250 1897 5985 5985 274 1897 5986 5986 278 1897 5987 5987 258 1898 5988 5988 244 1898 5989 5989 268 1898 5990 5990 256 1899 5991 5991 258 1899 5992 5992 282 1899 5993 5993 299 531 5994 5994 289 531 5995 5995 290 531 5996 5996 290 531 5997 5997 309 531 5998 5998 299 531 5999 5999 299 1900 6000 6000 309 1900 6001 6001 297 1900 6002 6002 301 1901 6003 6003 297 1901 6004 6004 305 1901 6005 6005 300 531 6006 6006 296 531 6007 6007 307 531 6008 6008 302 1902 6009 6009 298 1902 6010 6010 308 1902 6011 6011 293 1903 6012 6012 294 1903 6013 6013 306 1903 6014 6014 291 531 6015 6015 295 531 6016 6016 310 531 6017 6017 310 1904 6018 6018 311 1904 6019 6019 291 1904 6020 6020 292 531 6021 6021 312 531 6022 6022 295 531 6023 6023 306 531 6024 6024 292 531 6025 6025 293 531 6026 6026 310 1905 6027 6027 295 1905 6028 6028 312 1905 6029 6029 294 531 6030 6030 302 531 6031 6031 304 531 6032 6032 296 1906 6033 6033 305 1906 6034 6034 307 1906 6035 6035 309 531 6036 6036 305 531 6037 6037 297 531 6038 6038 305 1907 6039 6039 296 1907 6040 6040 301 1907 6041 6041 298 1908 6042 6042 300 1908 6043 6043 303 1908 6044 6044 292 531 6045 6045 295 531 6046 6046 293 531 6047 6047 304 1909 6048 6048 306 1909 6049 6049 294 1909 6050 6050 300 1910 6051 6051 307 1910 6052 6052 303 1910 6053 6053 308 531 6054 6054 304 531 6055 6055 302 531 6056 6056 276 1911 6057 6057 272 1911 6058 6058 296 1911 6059 6059 286 1912 6060 6060 287 1912 6061 6061 311 1912 6062 6062 275 1913 6063 6063 265 1913 6064 6064 289 1913 6065 6065 284 1914 6066 6066 280 1914 6067 6067 304 1914 6068 6068 277 1915 6069 6069 273 1915 6070 6070 297 1915 6071 6071 268 1916 6072 6072 288 1916 6073 6073 312 1916 6074 6074 266 1917 6075 6075 290 1917 6076 6076 289 1917 6077 6077 281 1918 6078 6078 305 1918 6079 6079 309 1918 6080 6080 274 1919 6081 6081 298 1919 6082 6082 302 1919 6083 6083 282 1920 6084 6084 268 1920 6085 6085 292 1920 6086 6086 280 1921 6087 6087 282 1921 6088 6088 306 1921 6089 6089 273 1922 6090 6090 275 1922 6091 6091 299 1922 6092 6092 267 1923 6093 6093 291 1923 6094 6094 311 1923 6095 6095 283 1924 6096 6096 307 1924 6097 6097 305 1924 6098 6098 274 1925 6099 6099 276 1925 6100 6100 300 1925 6101 6101 269 1926 6102 6102 293 1926 6103 6103 295 1926 6104 6104 279 1927 6105 6105 284 1927 6106 6106 308 1927 6107 6107 272 1928 6108 6108 277 1928 6109 6109 301 1928 6110 6110 270 1929 6111 6111 294 1929 6112 6112 293 1929 6113 6113 285 1930 6114 6114 309 1930 6115 6115 290 1930 6116 6116 278 1931 6117 6117 302 1931 6118 6118 294 1931 6119 6119 271 1932 6120 6120 295 1932 6121 6121 291 1932 6122 6122 288 1933 6123 6123 286 1933 6124 6124 310 1933 6125 6125 319 1934 6126 6126 340 1934 6127 6127 336 1934 6128 6128 64 1935 6129 6129 333 1935 6130 6130 329 1935 6131 6131 71 1936 6132 6132 343 1936 6133 6133 344 1936 6134 6134 58 1937 6135 6135 63 1937 6136 6136 332 1937 6137 6137 68 290 6138 6138 70 290 6139 6139 341 290 6140 6140 316 1938 6141 6141 65 1938 6142 6142 334 1938 6143 6143 72 1939 6144 6144 59 1939 6145 6145 325 1939 6146 6146 58 1940 6147 6147 322 1940 6148 6148 323 1940 6149 6149 320 1941 6150 6150 342 1941 6151 6151 338 1941 6152 6152 317 1942 6153 6153 66 1942 6154 6154 1205 1942 6155 6155 59 1943 6156 6156 318 1943 6157 6157 339 1943 6158 6158 318 1944 6159 6159 68 1944 6160 6160 337 1944 6161 6161 63 1945 6162 6162 316 1945 6163 6163 330 1945 6164 6164 314 1946 6165 6165 321 1946 6166 6166 344 1946 6167 6167 69 1947 6168 6168 338 1947 6169 6169 340 1947 6170 6170 64 1948 6171 6171 317 1948 6172 6172 1206 1948 6173 6173 1206 1949 6174 6174 333 1949 6175 6175 64 1949 6176 6176 315 1950 6177 6177 328 1950 6178 6178 326 1950 6179 6179 70 1951 6180 6180 67 1951 6181 6181 336 1951 6182 6182 65 1952 6183 6183 62 1952 6184 6184 329 1952 6185 6185 60 1953 6186 6186 326 1953 6187 6187 327 1953 6188 6188 313 1954 6189 6189 323 1954 6190 6190 342 1954 6191 6191 61 307 6192 6192 327 307 6193 6193 335 307 6194 6194 314 1955 6195 6195 324 1955 6196 6196 328 1955 6197 6197 72 1956 6198 6198 345 1956 6199 6199 343 1956 6200 6200 352 310 6201 6201 351 310 6202 6202 363 310 6203 6203 356 310 6204 6204 355 310 6205 6205 351 310 6206 6206 357 1957 6207 6207 353 1957 6208 6208 354 1957 6209 6209 354 310 6210 6210 365 310 6211 6211 361 310 6212 6212 361 310 6213 6213 359 310 6214 6214 354 310 6215 6215 363 310 6216 6216 358 310 6217 6217 360 310 6218 6218 362 310 6219 6219 360 310 6220 6220 358 310 6221 6221 364 1958 6222 6222 352 1958 6223 6223 360 1958 6224 6224 355 310 6225 6225 357 310 6226 6226 351 310 6227 6227 354 310 6228 6228 351 310 6229 6229 357 310 6230 6230 363 1959 6231 6231 360 1959 6232 6232 352 1959 6233 6233 351 310 6234 6234 359 310 6235 6235 363 310 6236 6236 371 1960 6237 6237 366 1960 6238 6238 370 1960 6239 6239 367 11 6240 6240 379 11 6241 6241 375 11 6242 6242 375 1961 6243 6243 377 1961 6244 6244 373 1961 6245 6245 373 11 6246 6246 378 11 6247 6247 375 11 6248 6248 374 11 6249 6249 376 11 6250 6250 369 11 6251 6251 380 11 6252 6252 369 11 6253 6253 376 11 6254 6254 368 11 6255 6255 372 11 6256 6256 369 11 6257 6257 370 1962 6258 6258 366 1962 6259 6259 372 1962 6260 6260 367 1963 6261 6261 375 1963 6262 6262 378 1963 6263 6263 378 11 6264 6264 366 11 6265 6265 367 11 6266 6266 369 1964 6267 6267 372 1964 6268 6268 366 1964 6269 6269 366 1965 6270 6270 378 1965 6271 6271 374 1965 6272 6272 359 1966 6273 6273 374 1966 6274 6274 378 1966 6275 6275 352 39 6276 6276 367 39 6277 6277 366 39 6278 6278 360 1967 6279 6279 375 1967 6280 6280 379 1967 6281 6281 354 1968 6282 6282 369 1968 6283 6283 380 1968 6284 6284 361 1969 6285 6285 376 1969 6286 6286 374 1969 6287 6287 353 1970 6288 6288 368 1970 6289 6289 369 1970 6290 6290 362 1971 6291 6291 377 1971 6292 6292 375 1971 6293 6293 355 318 6294 6294 370 318 6295 6295 372 318 6296 6296 363 1972 6297 6297 378 1972 6298 6298 373 1972 6299 6299 356 1973 6300 6300 371 1973 6301 6301 370 1973 6302 6302 364 1974 6303 6303 379 1974 6304 6304 367 1974 6305 6305 357 1975 6306 6306 372 1975 6307 6307 368 1975 6308 6308 365 1976 6309 6309 380 1976 6310 6310 376 1976 6311 6311 358 1977 6312 6312 373 1977 6313 6313 377 1977 6314 6314 351 1978 6315 6315 366 1978 6316 6316 371 1978 6317 6317 382 1168 6318 6318 389 1168 6319 6319 473 1168 6320 6320 29 1979 6321 6321 28 1979 6322 6322 418 1979 6323 6323 24 1980 6324 6324 416 1980 6325 6325 409 1980 6326 6326 384 1981 6327 6327 346 1981 6328 6328 411 1981 6329 6329 394 531 6330 6330 348 531 6331 6331 411 531 6332 6332 392 1982 6333 6333 412 1982 6334 6334 411 1982 6335 6335 406 1983 6336 6336 403 1983 6337 6337 413 1983 6338 6338 413 1984 6339 6339 401 1984 6340 6340 411 1984 6341 6341 350 531 6342 6342 404 531 6343 6343 411 531 6344 6344 405 531 6345 6345 402 531 6346 6346 411 531 6347 6347 393 531 6348 6348 347 531 6349 6349 411 531 6350 6350 411 1985 6351 6351 383 1985 6352 6352 391 1985 6353 6353 347 531 6354 6354 349 531 6355 6355 411 531 6356 6356 404 531 6357 6357 405 531 6358 6358 411 531 6359 6359 406 1986 6360 6360 413 1986 6361 6361 411 1986 6362 6362 348 1987 6363 6363 392 1987 6364 6364 411 1987 6365 6365 399 1988 6366 6366 384 1988 6367 6367 411 1988 6368 6368 391 1989 6369 6369 400 1989 6370 6370 399 1989 6371 6371 402 531 6372 6372 393 531 6373 6373 411 531 6374 6374 411 1990 6375 6375 391 1990 6376 6376 399 1990 6377 6377 346 531 6378 6378 394 531 6379 6379 411 531 6380 6380 401 1991 6381 6381 350 1991 6382 6382 411 1991 6383 6383 21 1992 6384 6384 22 1992 6385 6385 410 1992 6386 6386 27 1993 6387 6387 407 1993 6388 6388 417 1993 6389 6389 28 1994 6390 6390 23 1994 6391 6391 409 1994 6392 6392 27 1995 6393 6393 29 1995 6394 6394 419 1995 6395 6395 22 1996 6396 6396 25 1996 6397 6397 408 1996 6398 6398 25 1997 6399 6399 26 1997 6400 6400 417 1997 6401 6401 20 1998 6402 6402 414 1998 6403 6403 416 1998 6404 6404 419 1999 6405 6405 418 1999 6406 6406 428 1999 6407 6407 415 2000 6408 6408 410 2000 6409 6409 422 2000 6410 6410 408 2001 6411 6411 417 2001 6412 6412 426 2001 6413 6413 416 2002 6414 6414 424 2002 6415 6415 423 2002 6416 6416 407 2003 6417 6417 419 2003 6418 6418 429 2003 6419 6419 414 2004 6420 6420 420 2004 6421 6421 424 2004 6422 6422 418 2005 6423 6423 409 2005 6424 6424 423 2005 6425 6425 410 2006 6426 6426 408 2006 6427 6427 425 2006 6428 6428 407 2007 6429 6429 427 2007 6430 6430 426 2007 6431 6431 422 2008 6432 6432 425 2008 6433 6433 454 2008 6434 6434 428 2009 6435 6435 423 2009 6436 6436 456 2009 6437 6437 421 2010 6438 6438 422 2010 6439 6439 457 2010 6440 6440 420 2011 6441 6441 459 2011 6442 6442 455 2011 6443 6443 427 2012 6444 6444 429 2012 6445 6445 450 2012 6446 6446 424 2013 6447 6447 455 2013 6448 6448 456 2013 6449 6449 425 2014 6450 6450 426 2014 6451 6451 453 2014 6452 6452 429 2015 6453 6453 428 2015 6454 6454 451 2015 6455 6455 427 2016 6456 6456 452 2016 6457 6457 453 2016 6458 6458 455 2017 6459 6459 434 2017 6460 6460 433 2017 6461 6461 459 2018 6462 6462 430 2018 6463 6463 434 2018 6464 6464 451 2019 6465 6465 456 2019 6466 6466 433 2019 6467 6467 457 2020 6468 6468 454 2020 6469 6469 435 2020 6470 6470 452 2021 6471 6471 437 2021 6472 6472 436 2021 6473 6473 452 2022 6474 6474 450 2022 6475 6475 439 2022 6476 6476 450 2023 6477 6477 451 2023 6478 6478 438 2023 6479 6479 458 2024 6480 6480 457 2024 6481 6481 432 2024 6482 6482 454 2025 6483 6483 453 2025 6484 6484 436 2025 6485 6485 432 2026 6486 6486 435 2026 6487 6487 464 2026 6488 6488 438 2027 6489 6489 433 2027 6490 6490 466 2027 6491 6491 432 2028 6492 6492 467 2028 6493 6493 468 2028 6494 6494 430 2029 6495 6495 469 2029 6496 6496 465 2029 6497 6497 437 2030 6498 6498 439 2030 6499 6499 460 2030 6500 6500 434 2031 6501 6501 465 2031 6502 6502 466 2031 6503 6503 435 2032 6504 6504 436 2032 6505 6505 463 2032 6506 6506 439 2033 6507 6507 438 2033 6508 6508 461 2033 6509 6509 437 2034 6510 6510 462 2034 6511 6511 463 2034 6512 6512 462 2035 6513 6513 447 2035 6514 6514 446 2035 6515 6515 460 2036 6516 6516 461 2036 6517 6517 448 2036 6518 6518 468 2037 6519 6519 467 2037 6520 6520 442 2037 6521 6521 464 2038 6522 6522 463 2038 6523 6523 446 2038 6524 6524 465 2039 6525 6525 444 2039 6526 6526 443 2039 6527 6527 469 2040 6528 6528 440 2040 6529 6529 444 2040 6530 6530 462 2041 6531 6531 460 2041 6532 6532 449 2041 6533 6533 461 2042 6534 6534 466 2042 6535 6535 443 2042 6536 6536 467 2043 6537 6537 464 2043 6538 6538 445 2043 6539 6539 440 2044 6540 6540 472 2044 6541 6541 473 2044 6542 6542 447 2045 6543 6543 449 2045 6544 6544 381 2045 6545 6545 444 2046 6546 6546 473 2046 6547 6547 389 2046 6548 6548 445 2047 6549 6549 446 2047 6550 6550 396 2047 6551 6551 449 2048 6552 6552 448 2048 6553 6553 385 2048 6554 6554 447 2049 6555 6555 387 2049 6556 6556 396 2049 6557 6557 442 2050 6558 6558 445 2050 6559 6559 388 2050 6560 6560 448 2051 6561 6561 443 2051 6562 6562 389 2051 6563 6563 442 2052 6564 6564 397 2052 6565 6565 398 2052 6566 6566 386 1235 6567 6567 385 1235 6568 6568 389 1235 6569 6569 395 1236 6570 6570 381 1236 6571 6571 385 1236 6572 6572 387 2053 6573 6573 381 2053 6574 6574 395 2053 6575 6575 728 2054 6576 6576 531 2054 6577 6577 532 2054 6578 6578 481 394 6579 6579 518 394 6580 6580 519 394 6581 6581 477 395 6582 6582 476 395 6583 6583 505 395 6584 6584 729 2055 6585 6585 532 2055 6586 6586 533 2055 6587 6587 719 397 6588 6588 519 397 6589 6589 520 397 6590 6590 477 2056 6591 6591 506 2056 6592 6592 507 2056 6593 6593 730 2057 6594 6594 533 2057 6595 6595 534 2057 6596 6596 720 2058 6597 6597 520 2058 6598 6598 521 2058 6599 6599 711 2059 6600 6600 507 2059 6601 6601 508 2059 6602 6602 485 2060 6603 6603 534 2060 6604 6604 503 2060 6605 6605 721 2061 6606 6606 521 2061 6607 6607 522 2061 6608 6608 712 404 6609 6609 508 404 6610 6610 509 404 6611 6611 722 405 6612 6612 522 405 6613 6613 523 405 6614 6614 713 2062 6615 6615 509 2062 6616 6616 510 2062 6617 6617 723 2063 6618 6618 523 2063 6619 6619 524 2063 6620 6620 714 2064 6621 6621 510 2064 6622 6622 511 2064 6623 6623 483 1238 6624 6624 482 1238 6625 6625 524 1238 6626 6626 715 2065 6627 6627 511 2065 6628 6628 512 2065 6629 6629 483 2066 6630 6630 525 2066 6631 6631 526 2066 6632 6632 478 2067 6633 6633 512 2067 6634 6634 513 2067 6635 6635 724 2068 6636 6636 526 2068 6637 6637 527 2068 6638 6638 479 2069 6639 6639 513 2069 6640 6640 514 2069 6641 6641 725 2070 6642 6642 527 2070 6643 6643 528 2070 6644 6644 480 2071 6645 6645 514 2071 6646 6646 515 2071 6647 6647 726 2072 6648 6648 528 2072 6649 6649 529 2072 6650 6650 716 2073 6651 6651 515 2073 6652 6652 516 2073 6653 6653 484 2074 6654 6654 529 2074 6655 6655 530 2074 6656 6656 717 2075 6657 6657 516 2075 6658 6658 517 2075 6659 6659 475 421 6660 6660 710 421 6661 6661 503 421 6662 6662 728 1240 6663 6663 727 1240 6664 6664 530 1240 6665 6665 481 1241 6666 6666 718 1241 6667 6667 517 1241 6668 6668 475 2076 6669 6669 504 2076 6670 6670 505 2076 6671 6671 557 2077 6672 6672 556 2077 6673 6673 588 2077 6674 6674 543 2078 6675 6675 575 2078 6676 6676 576 2078 6677 6677 558 2079 6678 6678 557 2079 6679 6679 589 2079 6680 6680 544 2080 6681 6681 576 2080 6682 6682 577 2080 6683 6683 559 2081 6684 6684 558 2081 6685 6685 590 2081 6686 6686 545 2082 6687 6687 577 2082 6688 6688 578 2082 6689 6689 560 2083 6690 6690 559 2083 6691 6691 591 2083 6692 6692 546 2084 6693 6693 578 2084 6694 6694 579 2084 6695 6695 560 2085 6696 6696 592 2085 6697 6697 593 2085 6698 6698 547 2086 6699 6699 579 2086 6700 6700 580 2086 6701 6701 562 2087 6702 6702 561 2087 6703 6703 593 2087 6704 6704 548 2088 6705 6705 580 2088 6706 6706 581 2088 6707 6707 536 2089 6708 6708 535 2089 6709 6709 567 2089 6710 6710 563 2090 6711 6711 562 2090 6712 6712 594 2090 6713 6713 549 2091 6714 6714 581 2091 6715 6715 582 2091 6716 6716 536 2092 6717 6717 568 2092 6718 6718 569 2092 6719 6719 564 2093 6720 6720 563 2093 6721 6721 595 2093 6722 6722 550 2094 6723 6723 582 2094 6724 6724 583 2094 6725 6725 537 2095 6726 6726 569 2095 6727 6727 570 2095 6728 6728 565 2096 6729 6729 564 2096 6730 6730 596 2096 6731 6731 551 2097 6732 6732 583 2097 6733 6733 584 2097 6734 6734 538 2098 6735 6735 570 2098 6736 6736 571 2098 6737 6737 566 2099 6738 6738 565 2099 6739 6739 597 2099 6740 6740 553 2100 6741 6741 552 2100 6742 6742 584 2100 6743 6743 539 2101 6744 6744 571 2101 6745 6745 572 2101 6746 6746 535 2102 6747 6747 566 2102 6748 6748 598 2102 6749 6749 554 2103 6750 6750 553 2103 6751 6751 585 2103 6752 6752 540 2104 6753 6753 572 2104 6754 6754 573 2104 6755 6755 555 2105 6756 6756 554 2105 6757 6757 586 2105 6758 6758 541 2106 6759 6759 573 2106 6760 6760 574 2106 6761 6761 556 2107 6762 6762 555 2107 6763 6763 587 2107 6764 6764 542 2108 6765 6765 574 2108 6766 6766 575 2108 6767 6767 625 2109 6768 6768 657 2109 6769 6769 658 2109 6770 6770 613 2110 6771 6771 612 2110 6772 6772 644 2110 6773 6773 600 2111 6774 6774 599 2111 6775 6775 631 2111 6776 6776 626 2112 6777 6777 658 2112 6778 6778 659 2112 6779 6779 614 2113 6780 6780 613 2113 6781 6781 645 2113 6782 6782 601 2114 6783 6783 600 2114 6784 6784 632 2114 6785 6785 627 2115 6786 6786 659 2115 6787 6787 660 2115 6788 6788 614 2116 6789 6789 646 2116 6790 6790 647 2116 6791 6791 602 2117 6792 6792 601 2117 6793 6793 633 2117 6794 6794 628 2118 6795 6795 660 2118 6796 6796 661 2118 6797 6797 615 2119 6798 6798 647 2119 6799 6799 648 2119 6800 6800 603 2120 6801 6801 602 2120 6802 6802 634 2120 6803 6803 629 2121 6804 6804 661 2121 6805 6805 662 2121 6806 6806 616 2122 6807 6807 648 2122 6808 6808 649 2122 6809 6809 604 2123 6810 6810 603 2123 6811 6811 635 2123 6812 6812 599 2124 6813 6813 630 2124 6814 6814 662 2124 6815 6815 617 2125 6816 6816 649 2125 6817 6817 650 2125 6818 6818 605 2126 6819 6819 604 2126 6820 6820 636 2126 6821 6821 618 2127 6822 6822 650 2127 6823 6823 651 2127 6824 6824 606 2128 6825 6825 605 2128 6826 6826 637 2128 6827 6827 619 2129 6828 6828 651 2129 6829 6829 652 2129 6830 6830 607 2130 6831 6831 606 2130 6832 6832 638 2130 6833 6833 620 2131 6834 6834 652 2131 6835 6835 653 2131 6836 6836 608 2132 6837 6837 607 2132 6838 6838 639 2132 6839 6839 621 2133 6840 6840 653 2133 6841 6841 654 2133 6842 6842 609 2134 6843 6843 608 2134 6844 6844 640 2134 6845 6845 622 2135 6846 6846 654 2135 6847 6847 655 2135 6848 6848 610 2136 6849 6849 609 2136 6850 6850 641 2136 6851 6851 623 2137 6852 6852 655 2137 6853 6853 656 2137 6854 6854 611 2138 6855 6855 610 2138 6856 6856 642 2138 6857 6857 624 2139 6858 6858 656 2139 6859 6859 657 2139 6860 6860 612 2140 6861 6861 611 2140 6862 6862 643 2140 6863 6863 652 2141 6864 6864 684 2141 6865 6865 685 2141 6866 6866 640 2142 6867 6867 639 2142 6868 6868 671 2142 6869 6869 653 2143 6870 6870 685 2143 6871 6871 686 2143 6872 6872 641 2144 6873 6873 640 2144 6874 6874 672 2144 6875 6875 654 2145 6876 6876 686 2145 6877 6877 687 2145 6878 6878 642 2146 6879 6879 641 2146 6880 6880 673 2146 6881 6881 655 2147 6882 6882 687 2147 6883 6883 688 2147 6884 6884 643 2148 6885 6885 642 2148 6886 6886 674 2148 6887 6887 656 2149 6888 6888 688 2149 6889 6889 689 2149 6890 6890 644 2150 6891 6891 643 2150 6892 6892 675 2150 6893 6893 657 2151 6894 6894 689 2151 6895 6895 690 2151 6896 6896 645 2152 6897 6897 644 2152 6898 6898 676 2152 6899 6899 631 2153 6900 6900 663 2153 6901 6901 664 2153 6902 6902 658 2154 6903 6903 690 2154 6904 6904 691 2154 6905 6905 646 2155 6906 6906 645 2155 6907 6907 677 2155 6908 6908 633 2156 6909 6909 632 2156 6910 6910 664 2156 6911 6911 659 2157 6912 6912 691 2157 6913 6913 692 2157 6914 6914 647 2158 6915 6915 646 2158 6916 6916 678 2158 6917 6917 634 2159 6918 6918 633 2159 6919 6919 665 2159 6920 6920 660 2160 6921 6921 692 2160 6922 6922 693 2160 6923 6923 648 2161 6924 6924 647 2161 6925 6925 679 2161 6926 6926 635 2162 6927 6927 634 2162 6928 6928 666 2162 6929 6929 661 2163 6930 6930 693 2163 6931 6931 694 2163 6932 6932 648 2164 6933 6933 680 2164 6934 6934 681 2164 6935 6935 636 2165 6936 6936 635 2165 6937 6937 667 2165 6938 6938 662 2166 6939 6939 694 2166 6940 6940 663 2166 6941 6941 649 2167 6942 6942 681 2167 6943 6943 682 2167 6944 6944 637 2168 6945 6945 636 2168 6946 6946 668 2168 6947 6947 650 2169 6948 6948 682 2169 6949 6949 683 2169 6950 6950 638 2170 6951 6951 637 2170 6952 6952 669 2170 6953 6953 651 2171 6954 6954 683 2171 6955 6955 684 2171 6956 6956 639 2172 6957 6957 638 2172 6958 6958 670 2172 6959 6959 718 531 6960 6960 493 531 6961 6961 494 531 6962 6962 709 2173 6963 6963 502 2173 6964 6964 475 2173 6965 6965 697 2174 6966 6966 698 2174 6967 6967 727 2174 6968 6968 717 2175 6969 6969 494 2175 6970 6970 705 2175 6971 6971 502 2176 6972 6972 501 2176 6973 6973 710 2176 6974 6974 698 531 6975 6975 487 531 6976 6976 484 531 6977 6977 716 2177 6978 6978 705 2177 6979 6979 706 2177 6980 6980 487 2178 6981 6981 488 2178 6982 6982 726 2178 6983 6983 488 531 6984 6984 699 531 6985 6985 725 531 6986 6986 479 2179 6987 6987 707 2179 6988 6988 495 2179 6989 6989 725 2180 6990 6990 699 2180 6991 6991 489 2180 6992 6992 478 2181 6993 6993 495 2181 6994 6994 496 2181 6995 6995 724 2182 6996 6996 489 2182 6997 6997 490 2182 6998 6998 714 2183 6999 6999 715 2183 7000 7000 496 2183 7001 7001 483 2184 7002 7002 490 2184 7003 7003 700 2184 7004 7004 713 2185 7005 7005 714 2185 7006 7006 497 2185 7007 7007 482 2186 7008 7008 700 2186 7009 7009 701 2186 7010 7010 712 2187 7011 7011 713 2187 7012 7012 498 2187 7013 7013 485 2188 7014 7014 710 2188 7015 7015 501 2188 7016 7016 723 531 7017 7017 701 531 7018 7018 491 531 7019 7019 711 2189 7020 7020 712 2189 7021 7021 499 2189 7022 7022 730 2190 7023 7023 485 2190 7024 7024 695 2190 7025 7025 722 531 7026 7026 491 531 7027 7027 702 531 7028 7028 477 2191 7029 7029 711 2191 7030 7030 708 2191 7031 7031 729 531 7032 7032 730 531 7033 7033 486 531 7034 7034 721 531 7035 7035 702 531 7036 7036 703 531 7037 7037 476 2192 7038 7038 477 2192 7039 7039 500 2192 7040 7040 728 531 7041 7041 729 531 7042 7042 696 531 7043 7043 720 531 7044 7044 703 531 7045 7045 704 531 7046 7046 719 2193 7047 7047 704 2193 7048 7048 492 2193 7049 7049 481 2194 7050 7050 492 2194 7051 7051 493 2194 7052 7052 480 2195 7053 7053 706 2195 7054 7054 707 2195 7055 7055 777 2196 7056 7056 748 2196 7057 7057 749 2196 7058 7058 789 2197 7059 7059 790 2197 7060 7060 735 2197 7061 7061 794 2198 7062 7062 763 2198 7063 7063 762 2198 7064 7064 776 2199 7065 7065 749 2199 7066 7066 750 2199 7067 7067 788 2200 7068 7068 789 2200 7069 7069 736 2200 7070 7070 775 2201 7071 7071 750 2201 7072 7072 751 2201 7073 7073 787 2202 7074 7074 788 2202 7075 7075 737 2202 7076 7076 774 2203 7077 7077 751 2203 7078 7078 752 2203 7079 7079 786 2204 7080 7080 787 2204 7081 7081 738 2204 7082 7082 773 2205 7083 7083 752 2205 7084 7084 753 2205 7085 7085 785 2206 7086 7086 786 2206 7087 7087 739 2206 7088 7088 772 2207 7089 7089 753 2207 7090 7090 754 2207 7091 7091 784 2208 7092 7092 785 2208 7093 7093 740 2208 7094 7094 771 2209 7095 7095 754 2209 7096 7096 755 2209 7097 7097 783 2210 7098 7098 784 2210 7099 7099 741 2210 7100 7100 770 2211 7101 7101 755 2211 7102 7102 756 2211 7103 7103 782 2212 7104 7104 783 2212 7105 7105 742 2212 7106 7106 769 2213 7107 7107 756 2213 7108 7108 757 2213 7109 7109 782 2214 7110 7110 743 2214 7111 7111 744 2214 7112 7112 768 2215 7113 7113 757 2215 7114 7114 758 2215 7115 7115 781 2216 7116 7116 744 2216 7117 7117 745 2216 7118 7118 793 2217 7119 7119 794 2217 7120 7120 731 2217 7121 7121 767 2218 7122 7122 758 2218 7123 7123 759 2218 7124 7124 780 2219 7125 7125 745 2219 7126 7126 746 2219 7127 7127 792 2220 7128 7128 793 2220 7129 7129 732 2220 7130 7130 765 2221 7131 7131 766 2221 7132 7132 759 2221 7133 7133 779 2222 7134 7134 746 2222 7135 7135 747 2222 7136 7136 791 2223 7137 7137 792 2223 7138 7138 733 2223 7139 7139 764 2224 7140 7140 765 2224 7141 7141 760 2224 7142 7142 778 2225 7143 7143 747 2225 7144 7144 748 2225 7145 7145 790 2226 7146 7146 791 2226 7147 7147 734 2226 7148 7148 763 2227 7149 7149 764 2227 7150 7150 761 2227 7151 7151 514 2228 7152 7152 783 2228 7153 7153 782 2228 7154 7154 528 2229 7155 7155 527 2229 7156 7156 770 2229 7157 7157 513 2230 7158 7158 784 2230 7159 7159 783 2230 7160 7160 527 2231 7161 7161 526 2231 7162 7162 771 2231 7163 7163 512 2232 7164 7164 785 2232 7165 7165 784 2232 7166 7166 526 2233 7167 7167 525 2233 7168 7168 772 2233 7169 7169 511 2234 7170 7170 786 2234 7171 7171 785 2234 7172 7172 525 2235 7173 7173 524 2235 7174 7174 773 2235 7175 7175 510 2236 7176 7176 787 2236 7177 7177 786 2236 7178 7178 524 2237 7179 7179 523 2237 7180 7180 774 2237 7181 7181 509 2238 7182 7182 788 2238 7183 7183 787 2238 7184 7184 523 2239 7185 7185 522 2239 7186 7186 775 2239 7187 7187 508 2240 7188 7188 789 2240 7189 7189 788 2240 7190 7190 522 2241 7191 7191 521 2241 7192 7192 776 2241 7193 7193 503 2242 7194 7194 534 2242 7195 7195 763 2242 7196 7196 507 2243 7197 7197 790 2243 7198 7198 789 2243 7199 7199 521 2244 7200 7200 520 2244 7201 7201 777 2244 7202 7202 534 2245 7203 7203 533 2245 7204 7204 764 2245 7205 7205 506 2246 7206 7206 791 2246 7207 7207 790 2246 7208 7208 520 2247 7209 7209 519 2247 7210 7210 778 2247 7211 7211 533 2248 7212 7212 532 2248 7213 7213 765 2248 7214 7214 505 2249 7215 7215 792 2249 7216 7216 791 2249 7217 7217 518 2250 7218 7218 779 2250 7219 7219 778 2250 7220 7220 532 2251 7221 7221 531 2251 7222 7222 766 2251 7223 7223 504 2252 7224 7224 793 2252 7225 7225 792 2252 7226 7226 517 2253 7227 7227 780 2253 7228 7228 779 2253 7229 7229 531 2254 7230 7230 530 2254 7231 7231 767 2254 7232 7232 503 2255 7233 7233 794 2255 7234 7234 793 2255 7235 7235 516 2256 7236 7236 781 2256 7237 7237 780 2256 7238 7238 530 2257 7239 7239 529 2257 7240 7240 768 2257 7241 7241 515 2258 7242 7242 782 2258 7243 7243 781 2258 7244 7244 529 2259 7245 7245 528 2259 7246 7246 769 2259 7247 7247 821 2260 7248 7248 810 2260 7249 7249 489 2260 7250 7250 706 2261 7251 7251 806 2261 7252 7252 799 2261 7253 7253 795 2262 7254 7254 821 2262 7255 7255 699 2262 7256 7256 705 2263 7257 7257 807 2263 7258 7258 806 2263 7259 7259 811 2264 7260 7260 795 2264 7261 7261 488 2264 7262 7262 501 2265 7263 7263 805 2265 7264 7264 822 2265 7265 7265 705 2266 7266 7266 494 2266 7267 7267 798 2266 7268 7268 826 2267 7269 7269 811 2267 7270 7270 487 2267 7271 7271 502 2268 7272 7272 823 2268 7273 7273 805 2268 7274 7274 494 2269 7275 7275 493 2269 7276 7276 797 2269 7277 7277 812 2270 7278 7278 826 2270 7279 7279 698 2270 7280 7280 709 2271 7281 7281 818 2271 7282 7282 823 2271 7283 7283 493 2272 7284 7284 492 2272 7285 7285 824 2272 7286 7286 696 2273 7287 7287 802 2273 7288 7288 812 2273 7289 7289 500 2274 7290 7290 801 2274 7291 7291 818 2274 7292 7292 492 2275 7293 7293 704 2275 7294 7294 816 2275 7295 7295 486 2276 7296 7296 813 2276 7297 7297 802 2276 7298 7298 708 2277 7299 7299 804 2277 7300 7300 801 2277 7301 7301 704 2278 7302 7302 703 2278 7303 7303 817 2278 7304 7304 695 2279 7305 7305 822 2279 7306 7306 813 2279 7307 7307 499 2280 7308 7308 800 2280 7309 7309 804 2280 7310 7310 703 2281 7311 7311 702 2281 7312 7312 808 2281 7313 7313 498 2282 7314 7314 814 2282 7315 7315 800 2282 7316 7316 702 2283 7317 7317 491 2283 7318 7318 809 2283 7319 7319 497 2284 7320 7320 803 2284 7321 7321 814 2284 7322 7322 491 2285 7323 7323 701 2285 7324 7324 796 2285 7325 7325 496 2286 7326 7326 815 2286 7327 7327 803 2286 7328 7328 701 2287 7329 7329 700 2287 7330 7330 820 2287 7331 7331 495 2288 7332 7332 819 2288 7333 7333 815 2288 7334 7334 700 2289 7335 7335 490 2289 7336 7336 825 2289 7337 7337 707 2290 7338 7338 799 2290 7339 7339 819 2290 7340 7340 490 2291 7341 7341 489 2291 7342 7342 810 2291 7343 7343 1019 2292 7344 7344 1017 2292 7345 7345 406 2292 7346 7346 1007 2293 7347 7347 1019 2293 7348 7348 412 2293 7349 7349 1017 2294 7350 7350 1014 2294 7351 7351 403 2294 7352 7352 1005 2295 7353 7353 999 2295 7354 7354 346 2295 7355 7355 1012 2296 7356 7356 1003 2296 7357 7357 350 2296 7358 7358 1008 2297 7359 7359 1000 2297 7360 7360 347 2297 7361 7361 1015 648 7362 7362 1016 648 7363 7363 405 648 7364 7364 411 2298 7365 7365 1018 2298 7366 7366 1002 2298 7367 7367 999 650 7368 7368 1009 650 7369 7369 394 650 7370 7370 1003 651 7371 7371 1015 651 7372 7372 404 651 7373 7373 383 2299 7374 7374 1004 2299 7375 7375 1018 2299 7376 7376 1009 653 7377 7377 1001 653 7378 7378 348 653 7379 7379 1000 2300 7380 7380 1002 2300 7381 7381 349 2300 7382 7382 383 1460 7383 7383 1004 1460 7384 7384 1006 1460 7385 7385 1014 2301 7386 7386 1020 2301 7387 7387 413 2301 7388 7388 1010 2302 7389 7389 1005 2302 7390 7390 384 2302 7391 7391 1001 658 7392 7392 1007 658 7393 7393 392 658 7394 7394 1006 659 7395 7395 1011 659 7396 7396 400 659 7397 7397 1011 2303 7398 7398 1010 2303 7399 7399 399 2303 7400 7400 1013 661 7401 7401 1008 661 7402 7402 393 661 7403 7403 1020 2304 7404 7404 1012 2304 7405 7405 401 2304 7406 7406 1016 2305 7407 7407 1013 2305 7408 7408 402 2305 7409 7409 1023 2306 7410 7410 1024 2306 7411 7411 1022 2306 7412 7412 847 2307 7413 7413 1045 2307 7414 7414 1046 2307 7415 7415 834 666 7416 7416 1032 666 7417 7417 1033 666 7418 7418 848 2308 7419 7419 1046 2308 7420 7420 1047 2308 7421 7421 835 668 7422 7422 1033 668 7423 7423 1034 668 7424 7424 849 669 7425 7425 1047 669 7426 7426 1048 669 7427 7427 836 670 7428 7428 1034 670 7429 7429 1035 670 7430 7430 850 2309 7431 7431 1048 2309 7432 7432 1049 2309 7433 7433 837 2310 7434 7434 1035 2310 7435 7435 1036 2310 7436 7436 851 2311 7437 7437 1049 2311 7438 7438 1050 2311 7439 7439 838 2312 7440 7440 1036 2312 7441 7441 1037 2312 7442 7442 852 2313 7443 7443 1050 2313 7444 7444 1051 2313 7445 7445 839 2314 7446 7446 1037 2314 7447 7447 1038 2314 7448 7448 853 2315 7449 7449 1051 2315 7450 7450 1052 2315 7451 7451 840 2316 7452 7452 1038 2316 7453 7453 1039 2316 7454 7454 827 2317 7455 7455 1025 2317 7456 7456 1026 2317 7457 7457 854 2318 7458 7458 1052 2318 7459 7459 1053 2318 7460 7460 841 2319 7461 7461 1039 2319 7462 7462 1040 2319 7463 7463 828 2320 7464 7464 1026 2320 7465 7465 1027 2320 7466 7466 855 2321 7467 7467 1053 2321 7468 7468 1054 2321 7469 7469 842 1482 7470 7470 1040 1482 7471 7471 1041 1482 7472 7472 829 2322 7473 7473 1027 2322 7474 7474 1028 2322 7475 7475 856 2323 7476 7476 1054 2323 7477 7477 1055 2323 7478 7478 843 1479 7479 7479 1041 1479 7480 7480 1042 1479 7481 7481 830 2324 7482 7482 1028 2324 7483 7483 1029 2324 7484 7484 857 2325 7485 7485 1055 2325 7486 7486 1056 2325 7487 7487 844 2326 7488 7488 1042 2326 7489 7489 1043 2326 7490 7490 831 2327 7491 7491 1029 2327 7492 7492 1030 2327 7493 7493 858 2328 7494 7494 1056 2328 7495 7495 1025 2328 7496 7496 845 2329 7497 7497 1043 2329 7498 7498 1044 2329 7499 7499 832 1472 7500 7500 1030 1472 7501 7501 1031 1472 7502 7502 846 2330 7503 7503 1044 2330 7504 7504 1045 2330 7505 7505 833 696 7506 7506 1031 696 7507 7507 1032 696 7508 7508 975 2331 7509 7509 974 2331 7510 7510 1064 2331 7511 7511 988 2332 7512 7512 1078 2332 7513 7513 1079 2332 7514 7514 975 2333 7515 7515 1065 2333 7516 7516 1066 2333 7517 7517 989 2334 7518 7518 1079 2334 7519 7519 1080 2334 7520 7520 976 2335 7521 7521 1066 2335 7522 7522 1067 2335 7523 7523 990 2336 7524 7524 1080 2336 7525 7525 1081 2336 7526 7526 977 2337 7527 7527 1067 2337 7528 7528 1068 2337 7529 7529 992 2338 7530 7530 991 2338 7531 7531 1081 2338 7532 7532 978 2339 7533 7533 1068 2339 7534 7534 1069 2339 7535 7535 993 2340 7536 7536 992 2340 7537 7537 1082 2340 7538 7538 979 2341 7539 7539 1069 2341 7540 7540 1070 2341 7541 7541 994 2342 7542 7542 993 2342 7543 7543 1083 2342 7544 7544 980 2343 7545 7545 1070 2343 7546 7546 1071 2343 7547 7547 968 2344 7548 7548 967 2344 7549 7549 1057 2344 7550 7550 995 2345 7551 7551 994 2345 7552 7552 1084 2345 7553 7553 981 2346 7554 7554 1071 2346 7555 7555 1072 2346 7556 7556 969 2347 7557 7557 968 2347 7558 7558 1058 2347 7559 7559 996 2348 7560 7560 995 2348 7561 7561 1085 2348 7562 7562 982 2349 7563 7563 1072 2349 7564 7564 1073 2349 7565 7565 970 2350 7566 7566 969 2350 7567 7567 1059 2350 7568 7568 997 2351 7569 7569 996 2351 7570 7570 1086 2351 7571 7571 983 2352 7572 7572 1073 2352 7573 7573 1074 2352 7574 7574 971 2353 7575 7575 970 2353 7576 7576 1060 2353 7577 7577 998 2354 7578 7578 997 2354 7579 7579 1087 2354 7580 7580 984 2355 7581 7581 1074 2355 7582 7582 1075 2355 7583 7583 972 2356 7584 7584 971 2356 7585 7585 1061 2356 7586 7586 967 2357 7587 7587 998 2357 7588 7588 1088 2357 7589 7589 985 2358 7590 7590 1075 2358 7591 7591 1076 2358 7592 7592 973 2359 7593 7593 972 2359 7594 7594 1062 2359 7595 7595 986 2360 7596 7596 1076 2360 7597 7597 1077 2360 7598 7598 974 2361 7599 7599 973 2361 7600 7600 1063 2361 7601 7601 987 2362 7602 7602 1077 2362 7603 7603 1078 2362 7604 7604 1104 2363 7605 7605 1132 2363 7606 7606 1133 2363 7607 7607 956 2364 7608 7608 1119 2364 7609 7609 1120 2364 7610 7610 963 2365 7611 7611 1133 2365 7612 7612 1134 2365 7613 7613 1098 2366 7614 7614 1120 2366 7615 7615 1121 2366 7616 7616 1106 2367 7617 7617 1105 2367 7618 7618 1134 2367 7619 7619 957 2368 7620 7620 1121 2368 7621 7621 1122 2368 7622 7622 1107 2369 7623 7623 1106 2369 7624 7624 1135 2369 7625 7625 1099 2370 7626 7626 1122 2370 7627 7627 1123 2370 7628 7628 1090 2371 7629 7629 1089 2371 7630 7630 1109 2371 7631 7631 1108 2372 7632 7632 1107 2372 7633 7633 1136 2372 7634 7634 958 2373 7635 7635 1123 2373 7636 7636 1124 2373 7637 7637 1091 2374 7638 7638 1090 2374 7639 7639 1110 2374 7640 7640 964 2375 7641 7641 1108 2375 7642 7642 1137 2375 7643 7643 959 2376 7644 7644 1124 2376 7645 7645 1125 2376 7646 7646 955 2377 7647 7647 1091 2377 7648 7648 1111 2377 7649 7649 965 2378 7650 7650 964 2378 7651 7651 1138 2378 7652 7652 960 2379 7653 7653 1125 2379 7654 7654 1126 2379 7655 7655 1092 2380 7656 7656 955 2380 7657 7657 1112 2380 7658 7658 966 2381 7659 7659 965 2381 7660 7660 1139 2381 7661 7661 1100 2382 7662 7662 1126 2382 7663 7663 1127 2382 7664 7664 1093 2383 7665 7665 1092 2383 7666 7666 1113 2383 7667 7667 1089 2384 7668 7668 966 2384 7669 7669 1140 2384 7670 7670 1101 2385 7671 7671 1127 2385 7672 7672 1128 2385 7673 7673 1094 2386 7674 7674 1093 2386 7675 7675 1114 2386 7676 7676 961 2387 7677 7677 1128 2387 7678 7678 1129 2387 7679 7679 1095 2388 7680 7680 1094 2388 7681 7681 1115 2388 7682 7682 1102 2389 7683 7683 1129 2389 7684 7684 1130 2389 7685 7685 1096 2390 7686 7686 1095 2390 7687 7687 1116 2390 7688 7688 962 2391 7689 7689 1130 2391 7690 7690 1131 2391 7691 7691 1097 2392 7692 7692 1096 2392 7693 7693 1117 2392 7694 7694 1103 2393 7695 7695 1131 2393 7696 7696 1132 2393 7697 7697 1097 2394 7698 7698 1118 2394 7699 7699 1119 2394 7700 7700 928 2395 7701 7701 927 2395 7702 7702 1145 2395 7703 7703 923 2396 7704 7704 954 2396 7705 7705 1172 2396 7706 7706 941 2397 7707 7707 1159 2397 7708 7708 1160 2397 7709 7709 929 2398 7710 7710 928 2398 7711 7711 1146 2398 7712 7712 942 2399 7713 7713 1160 2399 7714 7714 1161 2399 7715 7715 930 2400 7716 7716 929 2400 7717 7717 1147 2400 7718 7718 943 2401 7719 7719 1161 2401 7720 7720 1162 2401 7721 7721 931 2402 7722 7722 930 2402 7723 7723 1148 2402 7724 7724 944 2403 7725 7725 1162 2403 7726 7726 1163 2403 7727 7727 932 2404 7728 7728 931 2404 7729 7729 1149 2404 7730 7730 945 2405 7731 7731 1163 2405 7732 7732 1164 2405 7733 7733 933 2406 7734 7734 932 2406 7735 7735 1150 2406 7736 7736 946 2407 7737 7737 1164 2407 7738 7738 1165 2407 7739 7739 933 2408 7740 7740 1151 2408 7741 7741 1152 2408 7742 7742 947 2409 7743 7743 1165 2409 7744 7744 1166 2409 7745 7745 934 2410 7746 7746 1152 2410 7747 7747 1153 2410 7748 7748 948 2411 7749 7749 1166 2411 7750 7750 1167 2411 7751 7751 935 2412 7752 7752 1153 2412 7753 7753 1154 2412 7754 7754 950 2413 7755 7755 949 2413 7756 7756 1167 2413 7757 7757 936 2414 7758 7758 1154 2414 7759 7759 1155 2414 7760 7760 924 2415 7761 7761 923 2415 7762 7762 1141 2415 7763 7763 951 2416 7764 7764 950 2416 7765 7765 1168 2416 7766 7766 937 2417 7767 7767 1155 2417 7768 7768 1156 2417 7769 7769 925 2418 7770 7770 924 2418 7771 7771 1142 2418 7772 7772 952 2419 7773 7773 951 2419 7774 7774 1169 2419 7775 7775 938 2420 7776 7776 1156 2420 7777 7777 1157 2420 7778 7778 926 2421 7779 7779 925 2421 7780 7780 1143 2421 7781 7781 953 2422 7782 7782 952 2422 7783 7783 1170 2422 7784 7784 939 2423 7785 7785 1157 2423 7786 7786 1158 2423 7787 7787 927 2424 7788 7788 926 2424 7789 7789 1144 2424 7790 7790 954 2425 7791 7791 953 2425 7792 7792 1171 2425 7793 7793 940 2426 7794 7794 1158 2426 7795 7795 1159 2426 7796 7796 914 2427 7797 7797 1196 2427 7798 7798 1197 2427 7799 7799 902 2428 7800 7800 901 2428 7801 7801 1183 2428 7802 7802 915 2429 7803 7803 1197 2429 7804 7804 1198 2429 7805 7805 902 2430 7806 7806 1184 2430 7807 7807 1185 2430 7808 7808 916 2431 7809 7809 1198 2431 7810 7810 1199 2431 7811 7811 903 2432 7812 7812 1185 2432 7813 7813 1186 2432 7814 7814 917 2433 7815 7815 1199 2433 7816 7816 1200 2433 7817 7817 904 2434 7818 7818 1186 2434 7819 7819 1187 2434 7820 7820 892 2435 7821 7821 891 2435 7822 7822 1173 2435 7823 7823 919 2436 7824 7824 918 2436 7825 7825 1200 2436 7826 7826 905 2437 7827 7827 1187 2437 7828 7828 1188 2437 7829 7829 893 2438 7830 7830 892 2438 7831 7831 1174 2438 7832 7832 920 2439 7833 7833 919 2439 7834 7834 1201 2439 7835 7835 906 2440 7836 7836 1188 2440 7837 7837 1189 2440 7838 7838 894 2441 7839 7839 893 2441 7840 7840 1175 2441 7841 7841 921 2442 7842 7842 920 2442 7843 7843 1202 2442 7844 7844 907 2443 7845 7845 1189 2443 7846 7846 1190 2443 7847 7847 895 2444 7848 7848 894 2444 7849 7849 1176 2444 7850 7850 922 2445 7851 7851 921 2445 7852 7852 1203 2445 7853 7853 908 2446 7854 7854 1190 2446 7855 7855 1191 2446 7856 7856 896 2447 7857 7857 895 2447 7858 7858 1177 2447 7859 7859 891 2448 7860 7860 922 2448 7861 7861 1204 2448 7862 7862 909 2449 7863 7863 1191 2449 7864 7864 1192 2449 7865 7865 897 2450 7866 7866 896 2450 7867 7867 1178 2450 7868 7868 910 2451 7869 7869 1192 2451 7870 7870 1193 2451 7871 7871 898 2452 7872 7872 897 2452 7873 7873 1179 2452 7874 7874 911 2453 7875 7875 1193 2453 7876 7876 1194 2453 7877 7877 899 2454 7878 7878 898 2454 7879 7879 1180 2454 7880 7880 912 2455 7881 7881 1194 2455 7882 7882 1195 2455 7883 7883 900 2456 7884 7884 899 2456 7885 7885 1181 2456 7886 7886 913 2457 7887 7887 1195 2457 7888 7888 1196 2457 7889 7889 901 2458 7890 7890 900 2458 7891 7891 1182 2458 7892 7892 22 2459 7893 7893 1216 2459 7894 7894 1211 2459 7895 7895 1208 2460 7896 7896 1211 2460 7897 7897 1216 2460 7898 7898 1206 2461 7899 7899 1213 2461 7900 7900 331 2461 7901 7901 21 2462 7902 7902 1215 2462 7903 7903 1210 2462 7904 7904 1210 2463 7905 7905 1216 2463 7906 7906 22 2463 7907 7907 331 2464 7908 7908 1213 2464 7909 7909 1205 2464 7910 7910 1205 2465 7911 7911 66 2465 7912 7912 335 2465 7913 7913 1208 2466 7914 7914 1216 2466 7915 7915 1222 2466 7916 7916 1210 2467 7917 7917 1215 2467 7918 7918 1221 2467 7919 7919 1216 2468 7920 7920 1210 2468 7921 7921 1219 2468 7922 7922 1208 2469 7923 7923 1218 2469 7924 7924 1220 2469 7925 7925 1209 2470 7926 7926 1224 2470 7927 7927 1227 2470 7928 7928 1217 2471 7929 7929 1228 2471 7930 7930 1224 2471 7931 7931 1211 2472 7932 7932 1225 2472 7933 7933 1226 2472 7934 7934 1212 2473 7935 7935 1226 2473 7936 7936 1223 2473 7937 7937 1207 2474 7938 7938 1223 2474 7939 7939 1228 2474 7940 7940 1231 2475 7941 7941 1232 2475 7942 7942 1229 2475 7943 7943 1023 2476 7944 7944 1229 2476 7945 7945 1232 2476 7946 7946 1022 2477 7947 7947 1231 2477 7948 7948 1230 2477 7949 7949 1022 2478 7950 7950 1024 2478 7951 7951 1232 2478 7952 7952 1023 2479 7953 7953 1021 2479 7954 7954 1230 2479 7955 7955 1224 11 7956 7956 1235 11 7957 7957 1234 11 7958 7958 1228 11 7959 7959 1233 11 7960 7960 1235 11 7961 7961 1223 11 7962 7962 1236 11 7963 7963 1233 11 7964 7964 1236 2480 7965 7965 1240 2480 7966 7966 1237 2480 7967 7967 1233 2481 7968 7968 1237 2481 7969 7969 1239 2481 7970 7970 1235 2482 7971 7971 1239 2482 7972 7972 1238 2482 7973 7973 1237 2483 7974 7974 1240 2483 7975 7975 1243 2483 7976 7976 1239 2484 7977 7977 1237 2484 7978 7978 1241 2484 7979 7979 1238 2485 7980 7980 1239 2485 7981 7981 1242 2485 7982 7982 1256 2486 7983 7983 1270 2486 7984 7984 1271 2486 7985 7985 1250 2487 7986 7986 1248 2487 7987 7987 1259 2487 7988 7988 1248 2488 7989 7989 1250 2488 7990 7990 1246 2488 7991 7991 1245 2489 7992 7992 1247 2489 7993 7993 1251 2489 7994 7994 1252 2490 7995 7995 1253 2490 7996 7996 1249 2490 7997 7997 1250 2491 7998 7998 1268 2491 7999 7999 1264 2491 8000 8000 1254 2492 8001 8001 1255 2492 8002 8002 1257 2492 8003 8003 1256 2493 8004 8004 1257 2493 8005 8005 1253 2493 8006 8006 1244 2494 8007 8007 1275 2494 8008 8008 1277 2494 8009 8009 1285 2495 8010 8010 1280 2495 8011 8011 1255 2495 8012 8012 1258 2496 8013 8013 1259 2496 8014 8014 1261 2496 8015 8015 1262 11 8016 8016 1273 11 8017 8017 1274 11 8018 8018 1258 2497 8019 8019 1267 2497 8020 8020 1268 2497 8021 8021 1260 2498 8022 8022 1261 2498 8023 8023 1263 2498 8024 8024 1278 2499 8025 8025 1276 2499 8026 8026 1245 2499 8027 8027 1261 2500 8028 8028 1284 2500 8029 8029 1285 2500 8030 8030 1262 2501 8031 8031 1263 2501 8032 8032 1255 2501 8033 8033 1251 2502 8034 8034 1247 2502 8035 8035 2453 2502 8036 8036 2453 2503 8037 8037 2461 2503 8038 8038 1251 2503 8039 8039 1718 2504 8040 8040 1640 2504 8041 8041 1632 2504 8042 8042 1714 2505 8043 8043 1631 2505 8044 8044 1640 2505 8045 8045 1715 2506 8046 8046 1632 2506 8047 8047 1641 2506 8048 8048 1252 2507 8049 8049 1251 2507 8050 8050 2461 2507 8051 8051 2451 2508 8052 8052 2456 2508 8053 8053 1252 2508 8054 8054 1260 2509 8055 8055 1272 2509 8056 8056 1267 2509 8057 8057 1256 2510 8058 8058 1252 2510 8059 8059 2456 2510 8060 8060 2456 2511 8061 8061 2455 2511 8062 8062 1256 2511 8063 8063 1269 2512 8064 8064 1270 2512 8065 8065 2455 2512 8066 8066 1262 2513 8067 8067 1273 2513 8068 8068 1272 2513 8069 8069 1254 2514 8070 8070 1271 2514 8071 8071 1273 2514 8072 8072 1277 39 8073 8073 1275 39 8074 8074 1283 39 8075 8075 1283 2515 8076 8076 1297 2515 8077 8077 1296 2515 8078 8078 1280 2516 8079 8079 1292 2516 8080 8080 1295 2516 8081 8081 1296 2517 8082 8082 1299 2517 8083 8083 1284 2517 8084 8084 1285 2518 8085 8085 1301 2518 8086 8086 1292 2518 8087 8087 1279 2519 8088 8088 1291 2519 8089 8089 1289 2519 8090 8090 1280 2520 8091 8091 1281 2520 8092 8092 1257 2520 8093 8093 1279 2521 8094 8094 1278 2521 8095 8095 1249 2521 8096 8096 1248 2522 8097 8097 1277 2522 8098 8098 1282 2522 8099 8099 1259 2523 8100 8100 1282 2523 8101 8101 1284 2523 8102 8102 1281 2524 8103 8103 1279 2524 8104 8104 1253 2524 8105 8105 1291 39 8106 8106 1290 39 8107 8107 1287 39 8108 8108 1292 39 8109 8109 1293 39 8110 8110 1294 39 8111 8111 1295 39 8112 8112 1294 39 8113 8113 1290 39 8114 8114 1296 39 8115 8115 1297 39 8116 8116 1298 39 8117 8117 1299 39 8118 8118 1298 39 8119 8119 1300 39 8120 8120 1301 39 8121 8121 1300 39 8122 8122 1293 39 8123 8123 1288 2525 8124 8124 1296 2525 8125 8125 1282 2525 8126 8126 1289 2526 8127 8127 1287 2526 8128 8128 1276 2526 8129 8129 1299 2527 8130 8130 1301 2527 8131 8131 1285 2527 8132 8132 1281 2528 8133 8133 1295 2528 8134 8134 1291 2528 8135 8135 1346 2529 8136 8136 1354 2529 8137 8137 1330 2529 8138 8138 1307 2530 8139 8139 1327 2530 8140 8140 1317 2530 8141 8141 1314 2531 8142 8142 1336 2531 8143 8143 1332 2531 8144 8144 1329 2532 8145 8145 1325 2532 8146 8146 1560 2532 8147 8147 1303 2533 8148 8148 1320 2533 8149 8149 1340 2533 8150 8150 1317 2534 8151 8151 1318 2534 8152 8152 1557 2534 8153 8153 1337 2535 8154 8154 1333 2535 8155 8155 1313 2535 8156 8156 1330 2536 8157 8157 1326 2536 8158 8158 1561 2536 8159 8159 1334 2537 8160 8160 1320 2537 8161 8161 1303 2537 8162 8162 1312 2538 8163 8163 1332 2538 8164 8164 1334 2538 8165 8165 1560 2539 8166 8166 1325 2539 8167 8167 1327 2539 8168 8168 1565 900 8169 8169 1339 900 8170 8170 1319 900 8171 8171 1333 2540 8172 8172 1335 2540 8173 8173 1563 2540 8174 8174 1326 2541 8175 8175 1328 2541 8176 8176 1308 2541 8177 8177 1323 2542 8178 8178 1321 2542 8179 8179 1304 2542 8180 8180 1331 2543 8181 8181 1336 2543 8182 8182 1314 2543 8183 8183 1324 2544 8184 8184 1329 2544 8185 8185 1309 2544 8186 8186 1321 2545 8187 8187 1322 2545 8188 8188 1305 2545 8189 8189 1318 2546 8190 8190 1337 2546 8191 8191 1564 2546 8192 8192 1322 2547 8193 8193 1330 2547 8194 8194 1310 2547 8195 8195 1319 2548 8196 8196 1323 2548 8197 8197 1559 2548 8198 8198 1340 2549 8199 8199 1338 2549 8200 8200 1315 2549 8201 8201 1335 2550 8202 8202 1331 2550 8203 8203 1311 2550 8204 8204 1328 2551 8205 8205 1324 2551 8206 8206 1306 2551 8207 8207 1338 2552 8208 8208 1339 2552 8209 8209 1565 2552 8210 8210 1358 2553 8211 8211 1382 2553 8212 8212 1368 2553 8213 8213 1343 2554 8214 8214 1347 2554 8215 8215 1323 2554 8216 8216 1340 2555 8217 8217 1364 2555 8218 8218 1362 2555 8219 8219 1335 2556 8220 8220 1359 2556 8221 8221 1355 2556 8222 8222 1352 2557 8223 8223 1348 2557 8224 8224 1324 2557 8225 8225 1338 2558 8226 8226 1362 2558 8227 8227 1363 2558 8228 8228 1351 2559 8229 8229 1341 2559 8230 8230 1317 2559 8231 8231 1336 2560 8232 8232 1360 2560 8233 8233 1356 2560 8234 8234 1353 2561 8235 8235 1349 2561 8236 8236 1325 2561 8237 8237 1320 2562 8238 8238 1344 2562 8239 8239 1364 2562 8240 8240 1317 2563 8241 8241 1341 2563 8242 8242 1342 2563 8243 8243 1337 2564 8244 8244 1361 2564 8245 8245 1357 2564 8246 8246 1354 2565 8247 8247 1350 2565 8248 8248 1326 2565 8249 8249 1334 2566 8250 8250 1358 2566 8251 8251 1344 2566 8252 8252 1332 2567 8253 8253 1356 2567 8254 8254 1358 2567 8255 8255 1349 2568 8256 8256 1351 2568 8257 8257 1327 2568 8258 8258 1363 2569 8259 8259 1343 2569 8260 8260 1319 2569 8261 8261 1333 2570 8262 8262 1357 2570 8263 8263 1359 2570 8264 8264 1350 2571 8265 8265 1352 2571 8266 8266 1328 2571 8267 8267 1347 2572 8268 8268 1345 2572 8269 8269 1321 2572 8270 8270 1331 2573 8271 8271 1355 2573 8272 8272 1360 2573 8273 8273 1348 2574 8274 8274 1353 2574 8275 8275 1329 2574 8276 8276 1345 2575 8277 8277 1346 2575 8278 8278 1322 2575 8279 8279 1318 2576 8280 8280 1342 2576 8281 8281 1361 2576 8282 8282 1391 2577 8283 8283 1395 2577 8284 8284 1371 2577 8285 8285 1356 2578 8286 8286 1380 2578 8287 8287 1382 2578 8288 8288 1373 2579 8289 8289 1375 2579 8290 8290 1351 2579 8291 8291 1387 2580 8292 8292 1367 2580 8293 8293 1343 2580 8294 8294 1357 2581 8295 8295 1381 2581 8296 8296 1383 2581 8297 8297 1374 2582 8298 8298 1376 2582 8299 8299 1352 2582 8300 8300 1371 2583 8301 8301 1369 2583 8302 8302 1345 2583 8303 8303 1355 2584 8304 8304 1379 2584 8305 8305 1384 2584 8306 8306 1372 2585 8307 8307 1377 2585 8308 8308 1353 2585 8309 8309 1369 2586 8310 8310 1370 2586 8311 8311 1346 2586 8312 8312 1342 2587 8313 8313 1366 2587 8314 8314 1385 2587 8315 8315 1370 2588 8316 8316 1378 2588 8317 8317 1354 2588 8318 8318 1367 2589 8319 8319 1371 2589 8320 8320 1347 2589 8321 8321 1364 2590 8322 8322 1388 2590 8323 8323 1386 2590 8324 8324 1359 2591 8325 8325 1383 2591 8326 8326 1379 2591 8327 8327 1376 2592 8328 8328 1372 2592 8329 8329 1348 2592 8330 8330 1362 2593 8331 8331 1386 2593 8332 8332 1387 2593 8333 8333 1375 2594 8334 8334 1365 2594 8335 8335 1341 2594 8336 8336 1360 2595 8337 8337 1384 2595 8338 8338 1380 2595 8339 8339 1377 2596 8340 8340 1373 2596 8341 8341 1349 2596 8342 8342 1344 2597 8343 8343 1368 2597 8344 8344 1388 2597 8345 8345 1341 2598 8346 8346 1365 2598 8347 8347 1366 2598 8348 8348 1361 2599 8349 8349 1385 2599 8350 8350 1381 2599 8351 8351 1378 2600 8352 8352 1374 2600 8353 8353 1350 2600 8354 8354 1404 2601 8355 8355 1428 2601 8356 8356 1430 2601 8357 8357 1388 2602 8358 8358 1412 2602 8359 8359 1410 2602 8360 8360 1383 2603 8361 8361 1407 2603 8362 8362 1403 2603 8363 8363 1400 2604 8364 8364 1396 2604 8365 8365 1372 2604 8366 8366 1386 2605 8367 8367 1410 2605 8368 8368 1411 2605 8369 8369 1375 2606 8370 8370 1399 2606 8371 8371 1389 2606 8372 8372 1384 2607 8373 8373 1408 2607 8374 8374 1404 2607 8375 8375 1401 2608 8376 8376 1397 2608 8377 8377 1373 2608 8378 8378 1368 2609 8379 8379 1392 2609 8380 8380 1412 2609 8381 8381 1365 2610 8382 8382 1389 2610 8383 8383 1390 2610 8384 8384 1385 2611 8385 8385 1409 2611 8386 8386 1405 2611 8387 8387 1402 2612 8388 8388 1398 2612 8389 8389 1374 2612 8390 8390 1382 2613 8391 8391 1406 2613 8392 8392 1392 2613 8393 8393 1380 2614 8394 8394 1404 2614 8395 8395 1406 2614 8396 8396 1397 2615 8397 8397 1399 2615 8398 8398 1375 2615 8399 8399 1411 2616 8400 8400 1391 2616 8401 8401 1367 2616 8402 8402 1381 2617 8403 8403 1405 2617 8404 8404 1407 2617 8405 8405 1398 2618 8406 8406 1400 2618 8407 8407 1376 2618 8408 8408 1395 2619 8409 8409 1393 2619 8410 8410 1369 2619 8411 8411 1379 2620 8412 8412 1403 2620 8413 8413 1408 2620 8414 8414 1396 2621 8415 8415 1401 2621 8416 8416 1377 2621 8417 8417 1393 2622 8418 8418 1394 2622 8419 8419 1370 2622 8420 8420 1366 2623 8421 8421 1390 2623 8422 8422 1409 2623 8423 8423 1394 2624 8424 8424 1402 2624 8425 8425 1378 2624 8426 8426 1439 2625 8427 8427 1443 2625 8428 8428 1419 2625 8429 8429 1421 2626 8430 8430 1423 2626 8431 8431 1399 2626 8432 8432 1435 2627 8433 8433 1415 2627 8434 8434 1391 2627 8435 8435 1405 2628 8436 8436 1429 2628 8437 8437 1431 2628 8438 8438 1398 2629 8439 8439 1422 2629 8440 8440 1424 2629 8441 8441 1419 2630 8442 8442 1417 2630 8443 8443 1393 2630 8444 8444 1403 2631 8445 8445 1427 2631 8446 8446 1432 2631 8447 8447 1420 2632 8448 8448 1425 2632 8449 8449 1401 2632 8450 8450 1417 2633 8451 8451 1418 2633 8452 8452 1394 2633 8453 8453 1414 2634 8454 8454 1433 2634 8455 8455 1409 2634 8456 8456 1418 2635 8457 8457 1426 2635 8458 8458 1402 2635 8459 8459 1415 2636 8460 8460 1419 2636 8461 8461 1395 2636 8462 8462 1412 2637 8463 8463 1436 2637 8464 8464 1434 2637 8465 8465 1407 2638 8466 8466 1431 2638 8467 8467 1427 2638 8468 8468 1424 2639 8469 8469 1420 2639 8470 8470 1396 2639 8471 8471 1410 2640 8472 8472 1434 2640 8473 8473 1435 2640 8474 8474 1399 2641 8475 8475 1423 2641 8476 8476 1413 2641 8477 8477 1408 2642 8478 8478 1432 2642 8479 8479 1428 2642 8480 8480 1425 2643 8481 8481 1421 2643 8482 8482 1397 2643 8483 8483 1392 2644 8484 8484 1416 2644 8485 8485 1436 2644 8486 8486 1413 2645 8487 8487 1414 2645 8488 8488 1390 2645 8489 8489 1409 2646 8490 8490 1433 2646 8491 8491 1429 2646 8492 8492 1426 2647 8493 8493 1422 2647 8494 8494 1398 2647 8495 8495 1406 2648 8496 8496 1430 2648 8497 8497 1416 2648 8498 8498 1445 2649 8499 8499 1469 2649 8500 8500 1471 2649 8501 8501 1436 2650 8502 8502 1460 2650 8503 8503 1458 2650 8504 8504 1431 2651 8505 8505 1455 2651 8506 8506 1451 2651 8507 8507 1448 2652 8508 8508 1444 2652 8509 8509 1420 2652 8510 8510 1434 2653 8511 8511 1458 2653 8512 8512 1459 2653 8513 8513 1423 2654 8514 8514 1447 2654 8515 8515 1437 2654 8516 8516 1432 2655 8517 8517 1456 2655 8518 8518 1452 2655 8519 8519 1425 2656 8520 8520 1449 2656 8521 8521 1445 2656 8522 8522 1416 2657 8523 8523 1440 2657 8524 8524 1460 2657 8525 8525 1437 2658 8526 8526 1438 2658 8527 8527 1414 2658 8528 8528 1457 2659 8529 8529 1453 2659 8530 8530 1429 2659 8531 8531 1450 2660 8532 8532 1446 2660 8533 8533 1422 2660 8534 8534 1430 2661 8535 8535 1454 2661 8536 8536 1440 2661 8537 8537 1428 2662 8538 8538 1452 2662 8539 8539 1454 2662 8540 8540 1421 2663 8541 8541 1445 2663 8542 8542 1447 2663 8543 8543 1459 2664 8544 8544 1439 2664 8545 8545 1415 2664 8546 8546 1429 2665 8547 8547 1453 2665 8548 8548 1455 2665 8549 8549 1422 2666 8550 8550 1446 2666 8551 8551 1448 2666 8552 8552 1443 2667 8553 8553 1441 2667 8554 8554 1417 2667 8555 8555 1427 2668 8556 8556 1451 2668 8557 8557 1456 2668 8558 8558 1444 2669 8559 8559 1449 2669 8560 8560 1425 2669 8561 8561 1441 2670 8562 8562 1442 2670 8563 8563 1418 2670 8564 8564 1438 2671 8565 8565 1457 2671 8566 8566 1433 2671 8567 8567 1442 2672 8568 8568 1450 2672 8569 8569 1426 2672 8570 8570 1484 2673 8571 8571 1508 2673 8572 8572 1506 2673 8573 8573 1483 2674 8574 8574 1463 2674 8575 8575 1439 2674 8576 8576 1477 2675 8577 8577 1479 2675 8578 8578 1455 2675 8579 8579 1470 2676 8580 8580 1472 2676 8581 8581 1448 2676 8582 8582 1467 2677 8583 8583 1465 2677 8584 8584 1441 2677 8585 8585 1451 2678 8586 8586 1475 2678 8587 8587 1480 2678 8588 8588 1444 2679 8589 8589 1468 2679 8590 8590 1473 2679 8591 8591 1465 2680 8592 8592 1466 2680 8593 8593 1442 2680 8594 8594 1462 2681 8595 8595 1481 2681 8596 8596 1457 2681 8597 8597 1466 2682 8598 8598 1474 2682 8599 8599 1450 2682 8600 8600 1463 2683 8601 8601 1467 2683 8602 8602 1443 2683 8603 8603 1460 2684 8604 8604 1484 2684 8605 8605 1482 2684 8606 8606 1455 2685 8607 8607 1479 2685 8608 8608 1475 2685 8609 8609 1472 2686 8610 8610 1468 2686 8611 8611 1444 2686 8612 8612 1458 2687 8613 8613 1482 2687 8614 8614 1483 2687 8615 8615 1447 2688 8616 8616 1471 2688 8617 8617 1461 2688 8618 8618 1456 2689 8619 8619 1480 2689 8620 8620 1476 2689 8621 8621 1449 2690 8622 8622 1473 2690 8623 8623 1469 2690 8624 8624 1440 2691 8625 8625 1464 2691 8626 8626 1484 2691 8627 8627 1461 2692 8628 8628 1462 2692 8629 8629 1438 2692 8630 8630 1481 2693 8631 8631 1477 2693 8632 8632 1453 2693 8633 8633 1474 2694 8634 8634 1470 2694 8635 8635 1446 2694 8636 8636 1454 2695 8637 8637 1478 2695 8638 8638 1464 2695 8639 8639 1452 2696 8640 8640 1476 2696 8641 8641 1478 2696 8642 8642 1493 2697 8643 8643 1517 2697 8644 8644 1519 2697 8645 8645 1479 2698 8646 8646 1503 2698 8647 8647 1499 2698 8648 8648 1472 2699 8649 8649 1496 2699 8650 8650 1492 2699 8651 8651 1482 2700 8652 8652 1506 2700 8653 8653 1507 2700 8654 8654 1471 2701 8655 8655 1495 2701 8656 8656 1485 2701 8657 8657 1480 2702 8658 8658 1504 2702 8659 8659 1500 2702 8660 8660 1473 2703 8661 8661 1497 2703 8662 8662 1493 2703 8663 8663 1464 2704 8664 8664 1488 2704 8665 8665 1508 2704 8666 8666 1485 2705 8667 8667 1486 2705 8668 8668 1462 2705 8669 8669 1505 2706 8670 8670 1501 2706 8671 8671 1477 2706 8672 8672 1498 2707 8673 8673 1494 2707 8674 8674 1470 2707 8675 8675 1478 2708 8676 8676 1502 2708 8677 8677 1488 2708 8678 8678 1476 2709 8679 8679 1500 2709 8680 8680 1502 2709 8681 8681 1469 2710 8682 8682 1493 2710 8683 8683 1495 2710 8684 8684 1507 2711 8685 8685 1487 2711 8686 8686 1463 2711 8687 8687 1501 2712 8688 8688 1503 2712 8689 8689 1479 2712 8690 8690 1494 2713 8691 8691 1496 2713 8692 8692 1472 2713 8693 8693 1491 2714 8694 8694 1489 2714 8695 8695 1465 2714 8696 8696 1475 2715 8697 8697 1499 2715 8698 8698 1504 2715 8699 8699 1468 2716 8700 8700 1492 2716 8701 8701 1497 2716 8702 8702 1489 2717 8703 8703 1490 2717 8704 8704 1466 2717 8705 8705 1486 2718 8706 8706 1505 2718 8707 8707 1481 2718 8708 8708 1490 2719 8709 8709 1498 2719 8710 8710 1474 2719 8711 8711 1487 2720 8712 8712 1491 2720 8713 8713 1467 2720 8714 8714 1551 2721 8715 8715 1547 2721 8716 8716 1523 2721 8717 8717 1531 2722 8718 8718 1511 2722 8719 8719 1487 2722 8720 8720 1525 2723 8721 8721 1527 2723 8722 8722 1503 2723 8723 8723 1518 2724 8724 8724 1520 2724 8725 8725 1496 2724 8726 8726 1515 2725 8727 8727 1513 2725 8728 8728 1489 2725 8729 8729 1499 2726 8730 8730 1523 2726 8731 8731 1528 2726 8732 8732 1492 2727 8733 8733 1516 2727 8734 8734 1521 2727 8735 8735 1513 2728 8736 8736 1514 2728 8737 8737 1490 2728 8738 8738 1510 2729 8739 8739 1529 2729 8740 8740 1505 2729 8741 8741 1514 2730 8742 8742 1522 2730 8743 8743 1498 2730 8744 8744 1511 2731 8745 8745 1515 2731 8746 8746 1491 2731 8747 8747 1508 2732 8748 8748 1532 2732 8749 8749 1530 2732 8750 8750 1527 2733 8751 8751 1523 2733 8752 8752 1499 2733 8753 8753 1496 2734 8754 8754 1520 2734 8755 8755 1516 2734 8756 8756 1506 2735 8757 8757 1530 2735 8758 8758 1531 2735 8759 8759 1495 2736 8760 8760 1519 2736 8761 8761 1509 2736 8762 8762 1504 2737 8763 8763 1528 2737 8764 8764 1524 2737 8765 8765 1497 2738 8766 8766 1521 2738 8767 8767 1517 2738 8768 8768 1488 2739 8769 8769 1512 2739 8770 8770 1532 2739 8771 8771 1509 2740 8772 8772 1510 2740 8773 8773 1486 2740 8774 8774 1529 2741 8775 8775 1525 2741 8776 8776 1501 2741 8777 8777 1522 2742 8778 8778 1518 2742 8779 8779 1494 2742 8780 8780 1502 2743 8781 8781 1526 2743 8782 8782 1512 2743 8783 8783 1500 2744 8784 8784 1524 2744 8785 8785 1526 2744 8786 8786 1534 860 8787 8787 1533 860 8788 8788 1543 860 8789 8789 1543 2745 8790 8790 1541 2745 8791 8791 1553 2745 8792 8792 1545 860 8793 8793 1540 860 8794 8794 1549 860 8795 8795 1544 2746 8796 8796 1542 2746 8797 8797 1547 2746 8798 8798 1546 860 8799 8799 1538 860 8800 8800 1548 860 8801 8801 1537 860 8802 8802 1539 860 8803 8803 1536 860 8804 8804 1535 2747 8805 8805 1555 2747 8806 8806 1554 2747 8807 8807 1554 2748 8808 8808 1556 2748 8809 8809 1539 2748 8810 8810 1556 860 8811 8811 1536 860 8812 8812 1539 860 8813 8813 1539 2749 8814 8814 1535 2749 8815 8815 1554 2749 8816 8816 1542 2750 8817 8817 1552 2750 8818 8818 1547 2750 8819 8819 1541 860 8820 8820 1545 860 8821 8821 1549 860 8822 8822 1553 860 8823 8823 1534 860 8824 8824 1543 860 8825 8825 1549 860 8826 8826 1553 860 8827 8827 1541 860 8828 8828 1540 2751 8829 8829 1551 2751 8830 8830 1549 2751 8831 8831 1537 2752 8832 8832 1536 2752 8833 8833 1550 2752 8834 8834 1537 2753 8835 8835 1550 2753 8836 8836 1538 2753 8837 8837 1540 860 8838 8838 1544 860 8839 8839 1551 860 8840 8840 1551 2754 8841 8841 1544 2754 8842 8842 1547 2754 8843 8843 1550 2755 8844 8844 1548 2755 8845 8845 1538 2755 8846 8846 1542 2756 8847 8847 1546 2756 8848 8848 1552 2756 8849 8849 1520 2757 8850 8850 1544 2757 8851 8851 1540 2757 8852 8852 1530 2758 8853 8853 1554 2758 8854 8854 1555 2758 8855 8855 1519 2759 8856 8856 1543 2759 8857 8857 1533 2759 8858 8858 1528 2760 8859 8859 1552 2760 8860 8860 1548 2760 8861 8861 1521 2761 8862 8862 1545 2761 8863 8863 1541 2761 8864 8864 1512 2762 8865 8865 1536 2762 8866 8866 1556 2762 8867 8867 1533 2763 8868 8868 1534 2763 8869 8869 1510 2763 8870 8870 1553 2764 8871 8871 1549 2764 8872 8872 1525 2764 8873 8873 1546 2765 8874 8874 1542 2765 8875 8875 1518 2765 8876 8876 1526 2766 8877 8877 1550 2766 8878 8878 1536 2766 8879 8879 1524 2767 8880 8880 1548 2767 8881 8881 1550 2767 8882 8882 1517 2768 8883 8883 1541 2768 8884 8884 1543 2768 8885 8885 1555 2769 8886 8886 1535 2769 8887 8887 1511 2769 8888 8888 1549 2770 8889 8889 1551 2770 8890 8890 1527 2770 8891 8891 1518 2771 8892 8892 1542 2771 8893 8893 1544 2771 8894 8894 1539 2772 8895 8895 1537 2772 8896 8896 1513 2772 8897 8897 1523 2773 8898 8898 1547 2773 8899 8899 1552 2773 8900 8900 1516 2774 8901 8901 1540 2774 8902 8902 1545 2774 8903 8903 1537 2775 8904 8904 1538 2775 8905 8905 1514 2775 8906 8906 1534 2776 8907 8907 1553 2776 8908 8908 1529 2776 8909 8909 1538 2777 8910 8910 1546 2777 8911 8911 1522 2777 8912 8912 1535 2778 8913 8913 1539 2778 8914 8914 1515 2778 8915 8915 1532 2779 8916 8916 1556 2779 8917 8917 1554 2779 8918 8918 1580 2780 8919 8919 1584 2780 8920 8920 1563 2780 8921 8921 1573 2781 8922 8922 1577 2781 8923 8923 1308 2781 8924 8924 1588 2782 8925 8925 1587 2782 8926 8926 1315 2782 8927 8927 1302 2783 8928 8928 1566 2783 8929 8929 1576 2783 8930 8930 1312 1133 8931 8931 1581 1133 8932 8932 1585 1133 8933 8933 1560 2784 8934 8934 1574 2784 8935 8935 1578 2784 8936 8936 1316 2785 8937 8937 1589 2785 8938 8938 1569 2785 8939 8939 1567 2786 8940 8940 1566 2786 8941 8941 1302 2786 8942 8942 1582 2787 8943 8943 1586 2787 8944 8944 1564 2787 8945 8945 1561 2788 8946 8946 2457 2788 8947 8947 2449 2788 8948 8948 1303 2789 8949 8949 1569 2789 8950 8950 1583 2789 8951 8951 1562 2790 8952 8952 1583 2790 8953 8953 1581 2790 8954 8954 1307 2791 8955 8955 1576 2791 8956 8956 1574 2791 8957 8957 1558 2792 8958 8958 1568 2792 8959 8959 1588 2792 8960 8960 1584 2793 8961 8961 1582 2793 8962 8962 1313 2793 8963 8963 1308 2794 8964 8964 1577 2794 8965 8965 2450 2794 8966 8966 2450 2795 8967 8967 2457 2795 8968 8968 1561 2795 8969 8969 1570 2796 8970 8970 1572 2796 8971 8971 1559 2796 8972 8972 1314 2797 8973 8973 1585 2797 8974 8974 1580 2797 8975 8975 1309 2798 8976 8976 1578 2798 8977 8977 1573 2798 8978 8978 1571 2799 8979 8979 1570 2799 8980 8980 1304 2799 8981 8981 1586 2800 8982 8982 1567 2800 8983 8983 1557 2800 8984 8984 1579 1150 8985 8985 1571 1150 8986 8986 1305 1150 8987 8987 1572 2801 8988 8988 1568 2801 8989 8989 1558 2801 8990 8990 1587 2802 8991 8991 1589 2802 8992 8992 1316 2802 8993 8993 1600 310 8994 8994 1595 310 8995 8995 1599 310 8996 8996 1596 2803 8997 8997 1608 2803 8998 8998 1604 2803 8999 8999 1604 2804 9000 9000 1606 2804 9001 9001 1602 2804 9002 9002 1602 310 9003 9003 1607 310 9004 9004 1604 310 9005 9005 1603 2805 9006 9006 1605 2805 9007 9007 1598 2805 9008 9008 1609 310 9009 9009 1598 310 9010 9010 1605 310 9011 9011 1597 310 9012 9012 1601 310 9013 9013 1598 310 9014 9014 1599 310 9015 9015 1595 310 9016 9016 1601 310 9017 9017 1596 310 9018 9018 1604 310 9019 9019 1607 310 9020 9020 1607 310 9021 9021 1595 310 9022 9022 1596 310 9023 9023 1598 310 9024 9024 1601 310 9025 9025 1595 310 9026 9026 1595 310 9027 9027 1607 310 9028 9028 1603 310 9029 9029 1611 11 9030 9030 1610 11 9031 9031 1622 11 9032 9032 1615 2806 9033 9033 1614 2806 9034 9034 1610 2806 9035 9035 1616 2807 9036 9036 1612 2807 9037 9037 1613 2807 9038 9038 1613 11 9039 9039 1624 11 9040 9040 1620 11 9041 9041 1620 11 9042 9042 1618 11 9043 9043 1613 11 9044 9044 1622 11 9045 9045 1617 11 9046 9046 1619 11 9047 9047 1621 11 9048 9048 1619 11 9049 9049 1617 11 9050 9050 1623 11 9051 9051 1611 11 9052 9052 1619 11 9053 9053 1614 2808 9054 9054 1616 2808 9055 9055 1610 2808 9056 9056 1613 2809 9057 9057 1610 2809 9058 9058 1616 2809 9059 9059 1622 2810 9060 9060 1619 2810 9061 9061 1611 2810 9062 9062 1610 2811 9063 9063 1618 2811 9064 9064 1622 2811 9065 9065 1622 2812 9066 9066 1618 2812 9067 9067 1603 2812 9068 9068 1610 39 9069 9069 1611 39 9070 9070 1596 39 9071 9071 1623 2813 9072 9072 1619 2813 9073 9073 1604 2813 9074 9074 1624 2814 9075 9075 1613 2814 9076 9076 1598 2814 9077 9077 1618 2815 9078 9078 1620 2815 9079 9079 1605 2815 9080 9080 1613 2816 9081 9081 1612 2816 9082 9082 1597 2816 9083 9083 1619 2817 9084 9084 1621 2817 9085 9085 1606 2817 9086 9086 1616 1160 9087 9087 1614 1160 9088 9088 1599 1160 9089 9089 1617 2818 9090 9090 1622 2818 9091 9091 1607 2818 9092 9092 1614 2819 9093 9093 1615 2819 9094 9094 1600 2819 9095 9095 1611 2820 9096 9096 1623 2820 9097 9097 1608 2820 9098 9098 1612 2821 9099 9099 1616 2821 9100 9100 1601 2821 9101 9101 1620 2822 9102 9102 1624 2822 9103 9103 1609 2822 9104 9104 1621 2823 9105 9105 1617 2823 9106 9106 1602 2823 9107 9107 1615 2824 9108 9108 1610 2824 9109 9109 1595 2824 9110 9110 1626 2825 9111 9111 1634 2825 9112 9112 1717 2825 9113 9113 1273 2826 9114 9114 1663 2826 9115 9115 1662 2826 9116 9116 1653 2827 9117 9117 1660 2827 9118 9118 1268 2827 9119 9119 1638 860 9120 9120 1590 860 9121 9121 1655 860 9122 9122 1628 2828 9123 9123 1643 2828 9124 9124 1655 2828 9125 9125 1644 2829 9126 9126 1635 2829 9127 9127 1643 2829 9128 9128 1655 860 9129 9129 1593 860 9130 9130 1591 860 9131 9131 1635 2830 9132 9132 1627 2830 9133 9133 1655 2830 9134 9134 1590 2831 9135 9135 1628 2831 9136 9136 1655 2831 9137 9137 1636 2832 9138 9138 1592 2832 9139 9139 1655 2832 9140 9140 1650 2833 9141 9141 1656 2833 9142 9142 1655 2833 9143 9143 1657 2834 9144 9144 1647 2834 9145 9145 1650 2834 9146 9146 1594 860 9147 9147 1645 860 9148 9148 1655 860 9149 9149 1649 860 9150 9150 1648 860 9151 9151 1655 860 9152 9152 1637 860 9153 9153 1646 860 9154 9154 1655 860 9155 9155 1655 2835 9156 9156 1591 2835 9157 9157 1637 2835 9158 9158 1643 2836 9159 9159 1635 2836 9160 9160 1655 2836 9161 9161 1656 860 9162 9162 1636 860 9163 9163 1655 860 9164 9164 1645 2837 9165 9165 1657 2837 9166 9166 1655 2837 9167 9167 1646 860 9168 9168 1649 860 9169 9169 1655 860 9170 9170 1638 860 9171 9171 1655 860 9172 9172 1592 860 9173 9173 1657 860 9174 9174 1650 860 9175 9175 1655 860 9176 9176 1265 2838 9177 9177 1659 2838 9178 9178 1654 2838 9179 9179 1661 2839 9180 9180 1651 2839 9181 9181 1271 2839 9182 9182 1272 2840 9183 9183 1662 2840 9184 9184 1653 2840 9185 9185 1271 2841 9186 9186 1651 2841 9187 9187 1663 2841 9188 9188 1266 2842 9189 9189 1654 2842 9190 9190 1652 2842 9191 9191 1269 2843 9192 9192 1652 2843 9193 9193 1661 2843 9194 9194 1660 2844 9195 9195 1658 2844 9196 9196 1264 2844 9197 9197 1663 2845 9198 9198 1673 2845 9199 9199 1672 2845 9200 9200 1659 2846 9201 9201 1665 2846 9202 9202 1666 2846 9203 9203 1652 2847 9204 9204 1669 2847 9205 9205 1670 2847 9206 9206 1667 2848 9207 9207 1668 2848 9208 9208 1660 2848 9209 9209 1651 2849 9210 9210 1671 2849 9211 9211 1673 2849 9212 9212 1668 2850 9213 9213 1664 2850 9214 9214 1658 2850 9215 9215 1662 2851 9216 9216 1672 2851 9217 9217 1667 2851 9218 9218 1654 2852 9219 9219 1666 2852 9220 9220 1669 2852 9221 9221 1670 2853 9222 9222 1671 2853 9223 9223 1651 2853 9224 9224 1666 2854 9225 9225 1701 2854 9226 9226 1698 2854 9227 9227 1672 2855 9228 9228 1695 2855 9229 9229 1700 2855 9230 9230 1665 2856 9231 9231 1702 2856 9232 9232 1701 2856 9233 9233 1699 2857 9234 9234 1703 2857 9235 9235 1664 2857 9236 9236 1671 2858 9237 9237 1696 2858 9238 9238 1694 2858 9239 9239 1700 2859 9240 9240 1699 2859 9241 9241 1668 2859 9242 9242 1669 2860 9243 9243 1698 2860 9244 9244 1697 2860 9245 9245 1673 2861 9246 9246 1694 2861 9247 9247 1695 2861 9248 9248 1697 2862 9249 9249 1696 2862 9250 9250 1671 2862 9251 9251 1677 2863 9252 9252 1678 2863 9253 9253 1699 2863 9254 9254 1678 2864 9255 9255 1674 2864 9256 9256 1703 2864 9257 9257 1695 2865 9258 9258 1682 2865 9259 9259 1677 2865 9260 9260 1701 2866 9261 9261 1676 2866 9262 9262 1679 2866 9263 9263 1680 2867 9264 9264 1681 2867 9265 9265 1696 2867 9266 9266 1696 2868 9267 9267 1681 2868 9268 9268 1683 2868 9269 9269 1694 2869 9270 9270 1683 2869 9271 9271 1682 2869 9272 9272 1702 2870 9273 9273 1675 2870 9274 9274 1676 2870 9275 9275 1698 2871 9276 9276 1679 2871 9277 9277 1680 2871 9278 9278 1676 2872 9279 9279 1711 2872 9280 9280 1708 2872 9281 9281 1682 2873 9282 9282 1705 2873 9283 9283 1710 2873 9284 9284 1712 2874 9285 9285 1711 2874 9286 9286 1676 2874 9287 9287 1709 2875 9288 9288 1713 2875 9289 9289 1674 2875 9290 9290 1681 2876 9291 9291 1706 2876 9292 9292 1704 2876 9293 9293 1710 2877 9294 9294 1709 2877 9295 9295 1678 2877 9296 9296 1679 2878 9297 9297 1708 2878 9298 9298 1707 2878 9299 9299 1683 2879 9300 9300 1704 2879 9301 9301 1705 2879 9302 9302 1707 2880 9303 9303 1706 2880 9304 9304 1681 2880 9305 9305 1690 2881 9306 9306 1691 2881 9307 9307 1706 2881 9308 9308 1704 2882 9309 9309 1693 2882 9310 9310 1692 2882 9311 9311 1712 2883 9312 9312 1685 2883 9313 9313 1686 2883 9314 9314 1708 2884 9315 9315 1689 2884 9316 9316 1690 2884 9317 9317 1687 2885 9318 9318 1688 2885 9319 9319 1709 2885 9320 9320 1688 2886 9321 9321 1684 2886 9322 9322 1713 2886 9323 9323 1706 2887 9324 9324 1691 2887 9325 9325 1693 2887 9326 9326 1705 2888 9327 9327 1692 2888 9328 9328 1687 2888 9329 9329 1711 2889 9330 9330 1686 2889 9331 9331 1689 2889 9332 9332 1717 2890 9333 9333 1716 2890 9334 9334 1684 2890 9335 9335 1691 2891 9336 9336 1631 2891 9337 9337 1625 2891 9338 9338 1633 2892 9339 9339 1717 2892 9340 9340 1688 2892 9341 9341 1689 2893 9342 9342 1632 2893 9343 9343 1640 2893 9344 9344 1693 2894 9345 9345 1625 2894 9346 9346 1629 2894 9347 9347 1640 2895 9348 9348 1631 2895 9349 9349 1691 2895 9350 9350 1686 2896 9351 9351 1641 2896 9352 9352 1632 2896 9353 9353 1692 2897 9354 9354 1629 2897 9355 9355 1633 2897 9356 9356 1642 2898 9357 9357 1641 2898 9358 9358 1686 2898 9359 9359 1630 18 9360 9360 1626 18 9361 9361 1633 18 9362 9362 1639 18 9363 9363 1630 18 9364 9364 1629 18 9365 9365 1639 2899 9366 9366 1625 2899 9367 9367 1631 2899 9368 9368 1776 2054 9369 9369 1775 2054 9370 9370 1972 2054 9371 9371 1763 394 9372 9372 1762 394 9373 9373 1725 394 9374 9374 1721 395 9375 9375 1750 395 9376 9376 1749 395 9377 9377 1777 2055 9378 9378 1776 2055 9379 9379 1973 2055 9380 9380 1764 397 9381 9381 1763 397 9382 9382 1963 397 9383 9383 1751 2056 9384 9384 1750 2056 9385 9385 1721 2056 9386 9386 1778 2057 9387 9387 1777 2057 9388 9388 1974 2057 9389 9389 1765 2058 9390 9390 1764 2058 9391 9391 1964 2058 9392 9392 1752 2059 9393 9393 1751 2059 9394 9394 1955 2059 9395 9395 1747 2060 9396 9396 1778 2060 9397 9397 1729 2060 9398 9398 1766 2061 9399 9399 1765 2061 9400 9400 1965 2061 9401 9401 1753 404 9402 9402 1752 404 9403 9403 1956 404 9404 9404 1767 405 9405 9405 1766 405 9406 9406 1966 405 9407 9407 1754 2062 9408 9408 1753 2062 9409 9409 1957 2062 9410 9410 1768 2900 9411 9411 1767 2900 9412 9412 1967 2900 9413 9413 1755 2064 9414 9414 1754 2064 9415 9415 1958 2064 9416 9416 1727 409 9417 9417 1769 409 9418 9418 1768 409 9419 9419 1756 2065 9420 9420 1755 2065 9421 9421 1959 2065 9422 9422 1770 2901 9423 9423 1769 2901 9424 9424 1727 2901 9425 9425 1757 2067 9426 9426 1756 2067 9427 9427 1722 2067 9428 9428 1771 2068 9429 9429 1770 2068 9430 9430 1968 2068 9431 9431 1758 2069 9432 9432 1757 2069 9433 9433 1723 2069 9434 9434 1772 2070 9435 9435 1771 2070 9436 9436 1969 2070 9437 9437 1759 2071 9438 9438 1758 2071 9439 9439 1724 2071 9440 9440 1773 2072 9441 9441 1772 2072 9442 9442 1970 2072 9443 9443 1760 2073 9444 9444 1759 2073 9445 9445 1960 2073 9446 9446 1774 2074 9447 9447 1773 2074 9448 9448 1728 2074 9449 9449 1761 2075 9450 9450 1760 2075 9451 9451 1961 2075 9452 9452 1719 421 9453 9453 1748 421 9454 9454 1747 421 9455 9455 1972 422 9456 9456 1775 422 9457 9457 1774 422 9458 9458 1725 423 9459 9459 1762 423 9460 9460 1761 423 9461 9461 1749 2076 9462 9462 1748 2076 9463 9463 1719 2076 9464 9464 1801 2902 9465 9465 1833 2902 9466 9466 1832 2902 9467 9467 1820 2903 9468 9468 1819 2903 9469 9469 1787 2903 9470 9470 1802 2904 9471 9471 1834 2904 9472 9472 1833 2904 9473 9473 1821 2905 9474 9474 1820 2905 9475 9475 1788 2905 9476 9476 1803 2906 9477 9477 1835 2906 9478 9478 1834 2906 9479 9479 1822 2907 9480 9480 1821 2907 9481 9481 1789 2907 9482 9482 1804 2908 9483 9483 1836 2908 9484 9484 1835 2908 9485 9485 1823 2909 9486 9486 1822 2909 9487 9487 1790 2909 9488 9488 1837 2910 9489 9489 1836 2910 9490 9490 1804 2910 9491 9491 1824 2911 9492 9492 1823 2911 9493 9493 1791 2911 9494 9494 1806 2912 9495 9495 1838 2912 9496 9496 1837 2912 9497 9497 1825 2913 9498 9498 1824 2913 9499 9499 1792 2913 9500 9500 1780 2914 9501 9501 1812 2914 9502 9502 1811 2914 9503 9503 1807 2915 9504 9504 1839 2915 9505 9505 1838 2915 9506 9506 1826 2916 9507 9507 1825 2916 9508 9508 1793 2916 9509 9509 1813 2917 9510 9510 1812 2917 9511 9511 1780 2917 9512 9512 1808 2918 9513 9513 1840 2918 9514 9514 1839 2918 9515 9515 1827 2919 9516 9516 1826 2919 9517 9517 1794 2919 9518 9518 1814 2920 9519 9519 1813 2920 9520 9520 1781 2920 9521 9521 1809 2921 9522 9522 1841 2921 9523 9523 1840 2921 9524 9524 1828 2922 9525 9525 1827 2922 9526 9526 1795 2922 9527 9527 1815 2923 9528 9528 1814 2923 9529 9529 1782 2923 9530 9530 1810 2924 9531 9531 1842 2924 9532 9532 1841 2924 9533 9533 1797 2925 9534 9534 1829 2925 9535 9535 1828 2925 9536 9536 1816 2926 9537 9537 1815 2926 9538 9538 1783 2926 9539 9539 1779 2927 9540 9540 1811 2927 9541 9541 1842 2927 9542 9542 1798 2928 9543 9543 1830 2928 9544 9544 1829 2928 9545 9545 1817 2929 9546 9546 1816 2929 9547 9547 1784 2929 9548 9548 1799 2930 9549 9549 1831 2930 9550 9550 1830 2930 9551 9551 1818 2931 9552 9552 1817 2931 9553 9553 1785 2931 9554 9554 1800 2932 9555 9555 1832 2932 9556 9556 1831 2932 9557 9557 1819 2933 9558 9558 1818 2933 9559 9559 1786 2933 9560 9560 1902 2934 9561 9561 1901 2934 9562 9562 1869 2934 9563 9563 1857 2935 9564 9564 1889 2935 9565 9565 1888 2935 9566 9566 1844 2936 9567 9567 1876 2936 9568 9568 1875 2936 9569 9569 1903 2937 9570 9570 1902 2937 9571 9571 1870 2937 9572 9572 1858 2938 9573 9573 1890 2938 9574 9574 1889 2938 9575 9575 1845 2939 9576 9576 1877 2939 9577 9577 1876 2939 9578 9578 1904 2940 9579 9579 1903 2940 9580 9580 1871 2940 9581 9581 1891 2941 9582 9582 1890 2941 9583 9583 1858 2941 9584 9584 1846 2942 9585 9585 1878 2942 9586 9586 1877 2942 9587 9587 1905 2943 9588 9588 1904 2943 9589 9589 1872 2943 9590 9590 1892 2944 9591 9591 1891 2944 9592 9592 1859 2944 9593 9593 1847 2945 9594 9594 1879 2945 9595 9595 1878 2945 9596 9596 1906 2946 9597 9597 1905 2946 9598 9598 1873 2946 9599 9599 1893 2947 9600 9600 1892 2947 9601 9601 1860 2947 9602 9602 1848 2948 9603 9603 1880 2948 9604 9604 1879 2948 9605 9605 1843 2949 9606 9606 1875 2949 9607 9607 1906 2949 9608 9608 1894 2950 9609 9609 1893 2950 9610 9610 1861 2950 9611 9611 1849 2951 9612 9612 1881 2951 9613 9613 1880 2951 9614 9614 1895 2952 9615 9615 1894 2952 9616 9616 1862 2952 9617 9617 1850 2953 9618 9618 1882 2953 9619 9619 1881 2953 9620 9620 1896 2954 9621 9621 1895 2954 9622 9622 1863 2954 9623 9623 1851 2955 9624 9624 1883 2955 9625 9625 1882 2955 9626 9626 1897 2956 9627 9627 1896 2956 9628 9628 1864 2956 9629 9629 1852 2957 9630 9630 1884 2957 9631 9631 1883 2957 9632 9632 1898 2958 9633 9633 1897 2958 9634 9634 1865 2958 9635 9635 1853 2959 9636 9636 1885 2959 9637 9637 1884 2959 9638 9638 1899 2960 9639 9639 1898 2960 9640 9640 1866 2960 9641 9641 1854 2961 9642 9642 1886 2961 9643 9643 1885 2961 9644 9644 1900 2962 9645 9645 1899 2962 9646 9646 1867 2962 9647 9647 1855 2963 9648 9648 1887 2963 9649 9649 1886 2963 9650 9650 1901 2964 9651 9651 1900 2964 9652 9652 1868 2964 9653 9653 1856 2965 9654 9654 1888 2965 9655 9655 1887 2965 9656 9656 1929 2966 9657 9657 1928 2966 9658 9658 1896 2966 9659 9659 1884 2967 9660 9660 1916 2967 9661 9661 1915 2967 9662 9662 1930 2968 9663 9663 1929 2968 9664 9664 1897 2968 9665 9665 1885 2969 9666 9666 1917 2969 9667 9667 1916 2969 9668 9668 1931 2970 9669 9669 1930 2970 9670 9670 1898 2970 9671 9671 1886 2971 9672 9672 1918 2971 9673 9673 1917 2971 9674 9674 1932 2972 9675 9675 1931 2972 9676 9676 1899 2972 9677 9677 1887 2973 9678 9678 1919 2973 9679 9679 1918 2973 9680 9680 1933 2974 9681 9681 1932 2974 9682 9682 1900 2974 9683 9683 1888 2975 9684 9684 1920 2975 9685 9685 1919 2975 9686 9686 1934 2976 9687 9687 1933 2976 9688 9688 1901 2976 9689 9689 1889 2977 9690 9690 1921 2977 9691 9691 1920 2977 9692 9692 1908 2978 9693 9693 1907 2978 9694 9694 1875 2978 9695 9695 1935 2979 9696 9696 1934 2979 9697 9697 1902 2979 9698 9698 1890 2980 9699 9699 1922 2980 9700 9700 1921 2980 9701 9701 1877 2981 9702 9702 1909 2981 9703 9703 1908 2981 9704 9704 1936 2982 9705 9705 1935 2982 9706 9706 1903 2982 9707 9707 1891 2983 9708 9708 1923 2983 9709 9709 1922 2983 9710 9710 1878 2984 9711 9711 1910 2984 9712 9712 1909 2984 9713 9713 1937 2985 9714 9714 1936 2985 9715 9715 1904 2985 9716 9716 1892 2986 9717 9717 1924 2986 9718 9718 1923 2986 9719 9719 1879 2987 9720 9720 1911 2987 9721 9721 1910 2987 9722 9722 1938 2988 9723 9723 1937 2988 9724 9724 1905 2988 9725 9725 1925 2989 9726 9726 1924 2989 9727 9727 1892 2989 9728 9728 1880 2990 9729 9729 1912 2990 9730 9730 1911 2990 9731 9731 1907 2991 9732 9732 1938 2991 9733 9733 1906 2991 9734 9734 1926 2992 9735 9735 1925 2992 9736 9736 1893 2992 9737 9737 1881 2993 9738 9738 1913 2993 9739 9739 1912 2993 9740 9740 1927 2994 9741 9741 1926 2994 9742 9742 1894 2994 9743 9743 1882 2995 9744 9744 1914 2995 9745 9745 1913 2995 9746 9746 1928 2996 9747 9747 1927 2996 9748 9748 1895 2996 9749 9749 1883 2997 9750 9750 1915 2997 9751 9751 1914 2997 9752 9752 1738 860 9753 9753 1737 860 9754 9754 1962 860 9755 9755 1719 2998 9756 9756 1746 2998 9757 9757 1953 2998 9758 9758 1971 2999 9759 9759 1942 2999 9760 9760 1941 2999 9761 9761 1949 3000 9762 9762 1738 3000 9763 9763 1961 3000 9764 9764 1954 3001 9765 9765 1745 3001 9766 9766 1746 3001 9767 9767 1728 860 9768 9768 1731 860 9769 9769 1942 860 9770 9770 1950 3002 9771 9771 1949 3002 9772 9772 1960 3002 9773 9773 1970 3003 9774 9774 1732 3003 9775 9775 1731 3003 9776 9776 1969 3004 9777 9777 1943 3004 9778 9778 1732 3004 9779 9779 1739 3005 9780 9780 1951 3005 9781 9781 1723 3005 9782 9782 1969 860 9783 9783 1968 860 9784 9784 1733 860 9785 9785 1740 3006 9786 9786 1739 3006 9787 9787 1722 3006 9788 9788 1968 3007 9789 9789 1727 3007 9790 9790 1734 3007 9791 9791 1958 3008 9792 9792 1741 3008 9793 9793 1740 3008 9794 9794 1727 860 9795 9795 1726 860 9796 9796 1944 860 9797 9797 1957 3009 9798 9798 1742 3009 9799 9799 1741 3009 9800 9800 1726 860 9801 9801 1967 860 9802 9802 1945 860 9803 9803 1956 3010 9804 9804 1743 3010 9805 9805 1742 3010 9806 9806 1729 860 9807 9807 1939 860 9808 9808 1745 860 9809 9809 1967 860 9810 9810 1966 860 9811 9811 1735 860 9812 9812 1955 3011 9813 9813 1952 3011 9814 9814 1743 3011 9815 9815 1974 3012 9816 9816 1730 3012 9817 9817 1939 3012 9818 9818 1966 3013 9819 9819 1965 3013 9820 9820 1946 3013 9821 9821 1721 3014 9822 9822 1744 3014 9823 9823 1952 3014 9824 9824 1973 3015 9825 9825 1940 3015 9826 9826 1730 3015 9827 9827 1965 860 9828 9828 1964 860 9829 9829 1947 860 9830 9830 1720 860 9831 9831 1953 860 9832 9832 1744 860 9833 9833 1972 860 9834 9834 1941 860 9835 9835 1940 860 9836 9836 1964 3016 9837 9837 1963 3016 9838 9838 1948 3016 9839 9839 1963 3017 9840 9840 1725 3017 9841 9841 1736 3017 9842 9842 1725 3018 9843 9843 1962 3018 9844 9844 1737 3018 9845 9845 1724 3019 9846 9846 1723 3019 9847 9847 1951 3019 9848 9848 1993 3020 9849 9849 1992 3020 9850 9850 2021 3020 9851 9851 2033 3021 9852 9852 1980 3021 9853 9853 1979 3021 9854 9854 2038 3022 9855 9855 1975 3022 9856 9856 2006 3022 9857 9857 1994 3023 9858 9858 1993 3023 9859 9859 2020 3023 9860 9860 2032 3024 9861 9861 1981 3024 9862 9862 1980 3024 9863 9863 1995 3025 9864 9864 1994 3025 9865 9865 2019 3025 9866 9866 2031 3026 9867 9867 1982 3026 9868 9868 1981 3026 9869 9869 1996 3027 9870 9870 1995 3027 9871 9871 2018 3027 9872 9872 2030 3028 9873 9873 1983 3028 9874 9874 1982 3028 9875 9875 1997 3029 9876 9876 1996 3029 9877 9877 2017 3029 9878 9878 2029 3030 9879 9879 1984 3030 9880 9880 1983 3030 9881 9881 1998 3031 9882 9882 1997 3031 9883 9883 2016 3031 9884 9884 2028 3032 9885 9885 1985 3032 9886 9886 1984 3032 9887 9887 1999 3033 9888 9888 1998 3033 9889 9889 2015 3033 9890 9890 2027 3034 9891 9891 1986 3034 9892 9892 1985 3034 9893 9893 2000 3035 9894 9894 1999 3035 9895 9895 2014 3035 9896 9896 2026 3036 9897 9897 1987 3036 9898 9898 1986 3036 9899 9899 2001 3037 9900 9900 2000 3037 9901 9901 2013 3037 9902 9902 1988 3038 9903 9903 1987 3038 9904 9904 2026 3038 9905 9905 2002 3039 9906 9906 2001 3039 9907 9907 2012 3039 9908 9908 1989 3040 9909 9909 1988 3040 9910 9910 2025 3040 9911 9911 2037 3041 9912 9912 1976 3041 9913 9913 1975 3041 9914 9914 2003 3042 9915 9915 2002 3042 9916 9916 2011 3042 9917 9917 1990 3043 9918 9918 1989 3043 9919 9919 2024 3043 9920 9920 2036 3044 9921 9921 1977 3044 9922 9922 1976 3044 9923 9923 2009 3045 9924 9924 2004 3045 9925 9925 2003 3045 9926 9926 1991 3046 9927 9927 1990 3046 9928 9928 2023 3046 9929 9929 2035 3047 9930 9930 1978 3047 9931 9931 1977 3047 9932 9932 2008 3048 9933 9933 2005 3048 9934 9934 2004 3048 9935 9935 1992 3049 9936 9936 1991 3049 9937 9937 2022 3049 9938 9938 2034 3050 9939 9939 1979 3050 9940 9940 1978 3050 9941 9941 2007 3051 9942 9942 2006 3051 9943 9943 2005 3051 9944 9944 2026 3052 9945 9945 2027 3052 9946 9946 1758 3052 9947 9947 1772 3053 9948 9948 2013 3053 9949 9949 2014 3053 9950 9950 2027 3054 9951 9951 2028 3054 9952 9952 1757 3054 9953 9953 1771 3055 9954 9954 2014 3055 9955 9955 2015 3055 9956 9956 2028 3056 9957 9957 2029 3056 9958 9958 1756 3056 9959 9959 1770 3057 9960 9960 2015 3057 9961 9961 2016 3057 9962 9962 2029 3058 9963 9963 2030 3058 9964 9964 1755 3058 9965 9965 1769 3059 9966 9966 2016 3059 9967 9967 2017 3059 9968 9968 2030 3060 9969 9969 2031 3060 9970 9970 1754 3060 9971 9971 1768 3061 9972 9972 2017 3061 9973 9973 2018 3061 9974 9974 2031 3062 9975 9975 2032 3062 9976 9976 1753 3062 9977 9977 1767 3063 9978 9978 2018 3063 9979 9979 2019 3063 9980 9980 2032 3064 9981 9981 2033 3064 9982 9982 1752 3064 9983 9983 1766 3065 9984 9984 2019 3065 9985 9985 2020 3065 9986 9986 1747 3066 9987 9987 2038 3066 9988 9988 2007 3066 9989 9989 2033 3067 9990 9990 2034 3067 9991 9991 1751 3067 9992 9992 1765 3068 9993 9993 2020 3068 9994 9994 2021 3068 9995 9995 1778 3069 9996 9996 2007 3069 9997 9997 2008 3069 9998 9998 2034 3070 9999 9999 2035 3070 10000 10000 1750 3070 10001 10001 1764 3071 10002 10002 2021 3071 10003 10003 2022 3071 10004 10004 1777 3072 10005 10005 2008 3072 10006 10006 2009 3072 10007 10007 2035 3073 10008 10008 2036 3073 10009 10009 1749 3073 10010 10010 2022 3074 10011 10011 2023 3074 10012 10012 1762 3074 10013 10013 1776 3075 10014 10014 2009 3075 10015 10015 2010 3075 10016 10016 2036 3076 10017 10017 2037 3076 10018 10018 1748 3076 10019 10019 2023 3077 10020 10020 2024 3077 10021 10021 1761 3077 10022 10022 1775 3078 10023 10023 2010 3078 10024 10024 2011 3078 10025 10025 2037 3079 10026 10026 2038 3079 10027 10027 1747 3079 10028 10028 2024 3080 10029 10029 2025 3080 10030 10030 1760 3080 10031 10031 1774 3081 10032 10032 2011 3081 10033 10033 2012 3081 10034 10034 2025 3082 10035 10035 2026 3082 10036 10036 1759 3082 10037 10037 1773 3083 10038 10038 2012 3083 10039 10039 2013 3083 10040 10040 1733 3084 10041 10041 2054 3084 10042 10042 2065 3084 10043 10043 2043 3085 10044 10044 2050 3085 10045 10045 1950 3085 10046 10046 1943 3086 10047 10047 2065 3086 10048 10048 2039 3086 10049 10049 2050 3087 10050 10050 2051 3087 10051 10051 1949 3087 10052 10052 1732 3088 10053 10053 2039 3088 10054 10054 2055 3088 10055 10055 2066 3089 10056 10056 2049 3089 10057 10057 1745 3089 10058 10058 1949 3090 10059 10059 2051 3090 10060 10060 2042 3090 10061 10061 1731 3091 10062 10062 2055 3091 10063 10063 2070 3091 10064 10064 1746 3092 10065 10065 1745 3092 10066 10066 2049 3092 10067 10067 1738 3093 10068 10068 2042 3093 10069 10069 2041 3093 10070 10070 1942 3094 10071 10071 2070 3094 10072 10072 2056 3094 10073 10073 1953 3095 10074 10074 1746 3095 10075 10075 2067 3095 10076 10076 1737 3096 10077 10077 2041 3096 10078 10078 2068 3096 10079 10079 1940 3097 10080 10080 1941 3097 10081 10081 2056 3097 10082 10082 1744 3098 10083 10083 1953 3098 10084 10084 2062 3098 10085 10085 1736 3099 10086 10086 2068 3099 10087 10087 2060 3099 10088 10088 1730 3100 10089 10089 1940 3100 10090 10090 2046 3100 10091 10091 1952 3101 10092 10092 1744 3101 10093 10093 2045 3101 10094 10094 1948 3102 10095 10095 2060 3102 10096 10096 2061 3102 10097 10097 1939 3103 10098 10098 1730 3103 10099 10099 2057 3103 10100 10100 1743 3104 10101 10101 1952 3104 10102 10102 2048 3104 10103 10103 1947 3105 10104 10104 2061 3105 10105 10105 2052 3105 10106 10106 1742 3106 10107 10107 1743 3106 10108 10108 2044 3106 10109 10109 1946 3107 10110 10110 2052 3107 10111 10111 2053 3107 10112 10112 1741 3108 10113 10113 1742 3108 10114 10114 2058 3108 10115 10115 1735 3109 10116 10116 2053 3109 10117 10117 2040 3109 10118 10118 1740 3110 10119 10119 1741 3110 10120 10120 2047 3110 10121 10121 1945 3111 10122 10122 2040 3111 10123 10123 2064 3111 10124 10124 1739 3112 10125 10125 1740 3112 10126 10126 2059 3112 10127 10127 1944 3113 10128 10128 2064 3113 10129 10129 2069 3113 10130 10130 1951 3114 10131 10131 1739 3114 10132 10132 2063 3114 10133 10133 1734 3115 10134 10134 2069 3115 10135 10135 2054 3115 10136 10136 1650 2292 10137 10137 2261 2292 10138 10138 2263 2292 10139 10139 1656 2293 10140 10140 2263 2293 10141 10141 2251 2293 10142 10142 1647 2294 10143 10143 2258 2294 10144 10144 2261 2294 10145 10145 1590 2295 10146 10146 2243 2295 10147 10147 2249 2295 10148 10148 1594 2296 10149 10149 2247 2296 10150 10150 2256 2296 10151 10151 1591 2297 10152 10152 2244 2297 10153 10153 2252 2297 10154 10154 1649 648 10155 10155 2260 648 10156 10156 2259 648 10157 10157 2246 2298 10158 10158 2262 2298 10159 10159 1655 2298 10160 10160 1638 650 10161 10161 2253 650 10162 10162 2243 650 10163 10163 1648 651 10164 10164 2259 651 10165 10165 2247 651 10166 10166 2262 2299 10167 10167 2248 2299 10168 10168 1627 2299 10169 10169 1592 653 10170 10170 2245 653 10171 10171 2253 653 10172 10172 1593 2300 10173 10173 2246 2300 10174 10174 2244 2300 10175 10175 1627 655 10176 10176 1635 655 10177 10177 2250 655 10178 10178 1657 2301 10179 10179 2264 2301 10180 10180 2258 2301 10181 10181 1628 2302 10182 10182 2249 2302 10183 10183 2254 2302 10184 10184 1636 658 10185 10185 2251 658 10186 10186 2245 658 10187 10187 1644 659 10188 10188 2255 659 10189 10189 2250 659 10190 10190 1643 3116 10191 10191 2254 3116 10192 10192 2255 3116 10193 10193 1637 661 10194 10194 2252 661 10195 10195 2257 661 10196 10196 1645 2304 10197 10197 2256 2304 10198 10198 2264 2304 10199 10199 1646 2305 10200 10200 2257 2305 10201 10201 2260 2305 10202 10202 2266 3117 10203 10203 2268 3117 10204 10204 2267 3117 10205 10205 2290 3118 10206 10206 2289 3118 10207 10207 2091 3118 10208 10208 2277 1464 10209 10209 2276 1464 10210 10210 2078 1464 10211 10211 2291 2310 10212 10212 2290 2310 10213 10213 2092 2310 10214 10214 2278 1465 10215 10215 2277 1465 10216 10216 2079 1465 10217 10217 2292 1466 10218 10218 2291 1466 10219 10219 2093 1466 10220 10220 2279 1467 10221 10221 2278 1467 10222 10222 2080 1467 10223 10223 2293 3119 10224 10224 2292 3119 10225 10225 2094 3119 10226 10226 2280 2308 10227 10227 2279 2308 10228 10228 2081 2308 10229 10229 2294 3120 10230 10230 2293 3120 10231 10231 2095 3120 10232 10232 2281 3121 10233 10233 2280 3121 10234 10234 2082 3121 10235 10235 2295 3122 10236 10236 2294 3122 10237 10237 2096 3122 10238 10238 2282 3123 10239 10239 2281 3123 10240 10240 2083 3123 10241 10241 2296 3124 10242 10242 2295 3124 10243 10243 2097 3124 10244 10244 2283 3125 10245 10245 2282 3125 10246 10246 2084 3125 10247 10247 2270 3126 10248 10248 2269 3126 10249 10249 2071 3126 10250 10250 2297 3127 10251 10251 2296 3127 10252 10252 2098 3127 10253 10253 2284 3128 10254 10254 2283 3128 10255 10255 2085 3128 10256 10256 2271 3129 10257 10257 2270 3129 10258 10258 2072 3129 10259 10259 2298 3130 10260 10260 2297 3130 10261 10261 2099 3130 10262 10262 2285 687 10263 10263 2284 687 10264 10264 2086 687 10265 10265 2272 3131 10266 10266 2271 3131 10267 10267 2073 3131 10268 10268 2299 3132 10269 10269 2298 3132 10270 10270 2100 3132 10271 10271 2286 684 10272 10272 2285 684 10273 10273 2087 684 10274 10274 2273 3133 10275 10275 2272 3133 10276 10276 2074 3133 10277 10277 2300 3134 10278 10278 2299 3134 10279 10279 2101 3134 10280 10280 2287 3135 10281 10281 2286 3135 10282 10282 2088 3135 10283 10283 2274 3136 10284 10284 2273 3136 10285 10285 2075 3136 10286 10286 2269 3137 10287 10287 2300 3137 10288 10288 2102 3137 10289 10289 2288 3138 10290 10290 2287 3138 10291 10291 2089 3138 10292 10292 2275 677 10293 10293 2274 677 10294 10294 2076 677 10295 10295 2289 3139 10296 10296 2288 3139 10297 10297 2090 3139 10298 10298 2276 1490 10299 10299 2275 1490 10300 10300 2077 1490 10301 10301 2219 3140 10302 10302 2309 3140 10303 10303 2308 3140 10304 10304 2323 3141 10305 10305 2322 3141 10306 10306 2232 3141 10307 10307 2310 3142 10308 10308 2309 3142 10309 10309 2219 3142 10310 10310 2324 3143 10311 10311 2323 3143 10312 10312 2233 3143 10313 10313 2311 3144 10314 10314 2310 3144 10315 10315 2220 3144 10316 10316 2325 3145 10317 10317 2324 3145 10318 10318 2234 3145 10319 10319 2312 3146 10320 10320 2311 3146 10321 10321 2221 3146 10322 10322 2236 3147 10323 10323 2326 3147 10324 10324 2325 3147 10325 10325 2313 3148 10326 10326 2312 3148 10327 10327 2222 3148 10328 10328 2237 3149 10329 10329 2327 3149 10330 10330 2326 3149 10331 10331 2314 3150 10332 10332 2313 3150 10333 10333 2223 3150 10334 10334 2238 3151 10335 10335 2328 3151 10336 10336 2327 3151 10337 10337 2315 3152 10338 10338 2314 3152 10339 10339 2224 3152 10340 10340 2212 3153 10341 10341 2302 3153 10342 10342 2301 3153 10343 10343 2239 3154 10344 10344 2329 3154 10345 10345 2328 3154 10346 10346 2316 3155 10347 10347 2315 3155 10348 10348 2225 3155 10349 10349 2213 3156 10350 10350 2303 3156 10351 10351 2302 3156 10352 10352 2240 3157 10353 10353 2330 3157 10354 10354 2329 3157 10355 10355 2317 3158 10356 10356 2316 3158 10357 10357 2226 3158 10358 10358 2214 3159 10359 10359 2304 3159 10360 10360 2303 3159 10361 10361 2241 3160 10362 10362 2331 3160 10363 10363 2330 3160 10364 10364 2318 3161 10365 10365 2317 3161 10366 10366 2227 3161 10367 10367 2215 3162 10368 10368 2305 3162 10369 10369 2304 3162 10370 10370 2242 3163 10371 10371 2332 3163 10372 10372 2331 3163 10373 10373 2319 3164 10374 10374 2318 3164 10375 10375 2228 3164 10376 10376 2216 3165 10377 10377 2306 3165 10378 10378 2305 3165 10379 10379 2211 3166 10380 10380 2301 3166 10381 10381 2332 3166 10382 10382 2320 3167 10383 10383 2319 3167 10384 10384 2229 3167 10385 10385 2217 3168 10386 10386 2307 3168 10387 10387 2306 3168 10388 10388 2321 3169 10389 10389 2320 3169 10390 10390 2230 3169 10391 10391 2218 3170 10392 10392 2308 3170 10393 10393 2307 3170 10394 10394 2322 3171 10395 10395 2321 3171 10396 10396 2231 3171 10397 10397 2377 3172 10398 10398 2376 3172 10399 10399 2348 3172 10400 10400 2364 3173 10401 10401 2363 3173 10402 10402 2200 3173 10403 10403 2378 3174 10404 10404 2377 3174 10405 10405 2207 3174 10406 10406 2365 3175 10407 10407 2364 3175 10408 10408 2342 3175 10409 10409 2350 3176 10410 10410 2379 3176 10411 10411 2378 3176 10412 10412 2366 3177 10413 10413 2365 3177 10414 10414 2201 3177 10415 10415 2351 3178 10416 10416 2380 3178 10417 10417 2379 3178 10418 10418 2367 3179 10419 10419 2366 3179 10420 10420 2343 3179 10421 10421 2334 3180 10422 10422 2354 3180 10423 10423 2353 3180 10424 10424 2352 3181 10425 10425 2381 3181 10426 10426 2380 3181 10427 10427 2368 3182 10428 10428 2367 3182 10429 10429 2202 3182 10430 10430 2335 3183 10431 10431 2355 3183 10432 10432 2354 3183 10433 10433 2208 3184 10434 10434 2382 3184 10435 10435 2381 3184 10436 10436 2369 3185 10437 10437 2368 3185 10438 10438 2203 3185 10439 10439 2199 3186 10440 10440 2356 3186 10441 10441 2355 3186 10442 10442 2209 3187 10443 10443 2383 3187 10444 10444 2382 3187 10445 10445 2370 3188 10446 10446 2369 3188 10447 10447 2204 3188 10448 10448 2336 3189 10449 10449 2357 3189 10450 10450 2356 3189 10451 10451 2210 3190 10452 10452 2384 3190 10453 10453 2383 3190 10454 10454 2371 3191 10455 10455 2370 3191 10456 10456 2344 3191 10457 10457 2337 3192 10458 10458 2358 3192 10459 10459 2357 3192 10460 10460 2333 3193 10461 10461 2353 3193 10462 10462 2384 3193 10463 10463 2372 3194 10464 10464 2371 3194 10465 10465 2345 3194 10466 10466 2338 3195 10467 10467 2359 3195 10468 10468 2358 3195 10469 10469 2373 3196 10470 10470 2372 3196 10471 10471 2205 3196 10472 10472 2339 3197 10473 10473 2360 3197 10474 10474 2359 3197 10475 10475 2374 3198 10476 10476 2373 3198 10477 10477 2346 3198 10478 10478 2340 3199 10479 10479 2361 3199 10480 10480 2360 3199 10481 10481 2375 3200 10482 10482 2374 3200 10483 10483 2206 3200 10484 10484 2341 3201 10485 10485 2362 3201 10486 10486 2361 3201 10487 10487 2376 3202 10488 10488 2375 3202 10489 10489 2347 3202 10490 10490 2363 3203 10491 10491 2362 3203 10492 10492 2341 3203 10493 10493 2172 3204 10494 10494 2390 3204 10495 10495 2389 3204 10496 10496 2167 3205 10497 10497 2385 3205 10498 10498 2416 3205 10499 10499 2404 3206 10500 10500 2403 3206 10501 10501 2185 3206 10502 10502 2173 3207 10503 10503 2391 3207 10504 10504 2390 3207 10505 10505 2405 3208 10506 10506 2404 3208 10507 10507 2186 3208 10508 10508 2174 3209 10509 10509 2392 3209 10510 10510 2391 3209 10511 10511 2406 3210 10512 10512 2405 3210 10513 10513 2187 3210 10514 10514 2175 3211 10515 10515 2393 3211 10516 10516 2392 3211 10517 10517 2407 3212 10518 10518 2406 3212 10519 10519 2188 3212 10520 10520 2176 3213 10521 10521 2394 3213 10522 10522 2393 3213 10523 10523 2408 3214 10524 10524 2407 3214 10525 10525 2189 3214 10526 10526 2177 3215 10527 10527 2395 3215 10528 10528 2394 3215 10529 10529 2409 3216 10530 10530 2408 3216 10531 10531 2190 3216 10532 10532 2396 3217 10533 10533 2395 3217 10534 10534 2177 3217 10535 10535 2410 3218 10536 10536 2409 3218 10537 10537 2191 3218 10538 10538 2397 3219 10539 10539 2396 3219 10540 10540 2178 3219 10541 10541 2411 3220 10542 10542 2410 3220 10543 10543 2192 3220 10544 10544 2398 3221 10545 10545 2397 3221 10546 10546 2179 3221 10547 10547 2194 3222 10548 10548 2412 3222 10549 10549 2411 3222 10550 10550 2399 3223 10551 10551 2398 3223 10552 10552 2180 3223 10553 10553 2168 3224 10554 10554 2386 3224 10555 10555 2385 3224 10556 10556 2195 3225 10557 10557 2413 3225 10558 10558 2412 3225 10559 10559 2400 3226 10560 10560 2399 3226 10561 10561 2181 3226 10562 10562 2169 3227 10563 10563 2387 3227 10564 10564 2386 3227 10565 10565 2196 3228 10566 10566 2414 3228 10567 10567 2413 3228 10568 10568 2401 3229 10569 10569 2400 3229 10570 10570 2182 3229 10571 10571 2170 3230 10572 10572 2388 3230 10573 10573 2387 3230 10574 10574 2197 3231 10575 10575 2415 3231 10576 10576 2414 3231 10577 10577 2402 3232 10578 10578 2401 3232 10579 10579 2183 3232 10580 10580 2171 3233 10581 10581 2389 3233 10582 10582 2388 3233 10583 10583 2198 3234 10584 10584 2416 3234 10585 10585 2415 3234 10586 10586 2403 3235 10587 10587 2402 3235 10588 10588 2184 3235 10589 10589 2441 3236 10590 10590 2440 3236 10591 10591 2158 3236 10592 10592 2146 3237 10593 10593 2428 3237 10594 10594 2427 3237 10595 10595 2442 3238 10596 10596 2441 3238 10597 10597 2159 3238 10598 10598 2429 3239 10599 10599 2428 3239 10600 10600 2146 3239 10601 10601 2443 3240 10602 10602 2442 3240 10603 10603 2160 3240 10604 10604 2430 3241 10605 10605 2429 3241 10606 10606 2147 3241 10607 10607 2444 3242 10608 10608 2443 3242 10609 10609 2161 3242 10610 10610 2431 3243 10611 10611 2430 3243 10612 10612 2148 3243 10613 10613 2136 3244 10614 10614 2418 3244 10615 10615 2417 3244 10616 10616 2163 3245 10617 10617 2445 3245 10618 10618 2444 3245 10619 10619 2432 3246 10620 10620 2431 3246 10621 10621 2149 3246 10622 10622 2137 3247 10623 10623 2419 3247 10624 10624 2418 3247 10625 10625 2164 3248 10626 10626 2446 3248 10627 10627 2445 3248 10628 10628 2433 3249 10629 10629 2432 3249 10630 10630 2150 3249 10631 10631 2138 3250 10632 10632 2420 3250 10633 10633 2419 3250 10634 10634 2165 3251 10635 10635 2447 3251 10636 10636 2446 3251 10637 10637 2434 3252 10638 10638 2433 3252 10639 10639 2151 3252 10640 10640 2139 3253 10641 10641 2421 3253 10642 10642 2420 3253 10643 10643 2166 3254 10644 10644 2448 3254 10645 10645 2447 3254 10646 10646 2435 3255 10647 10647 2434 3255 10648 10648 2152 3255 10649 10649 2140 3256 10650 10650 2422 3256 10651 10651 2421 3256 10652 10652 2135 3257 10653 10653 2417 3257 10654 10654 2448 3257 10655 10655 2436 3258 10656 10656 2435 3258 10657 10657 2153 3258 10658 10658 2141 3259 10659 10659 2423 3259 10660 10660 2422 3259 10661 10661 2437 3260 10662 10662 2436 3260 10663 10663 2154 3260 10664 10664 2142 3261 10665 10665 2424 3261 10666 10666 2423 3261 10667 10667 2438 3262 10668 10668 2437 3262 10669 10669 2155 3262 10670 10670 2143 3263 10671 10671 2425 3263 10672 10672 2424 3263 10673 10673 2439 3264 10674 10674 2438 3264 10675 10675 2156 3264 10676 10676 2144 3265 10677 10677 2426 3265 10678 10678 2425 3265 10679 10679 2440 3266 10680 10680 2439 3266 10681 10681 2157 3266 10682 10682 2145 3267 10683 10683 2427 3267 10684 10684 2426 3267 10685 10685 2452 3268 10686 10686 2460 3268 10687 10687 2455 3268 10688 10688 1266 3269 10689 10689 1269 3269 10690 10690 2455 3269 10691 10691 1575 3270 10692 10692 2457 3270 10693 10693 2450 3270 10694 10694 2454 3271 10695 10695 2459 3271 10696 10696 1265 3271 10697 10697 1265 3272 10698 10698 1266 3272 10699 10699 2454 3272 10700 10700 2449 3273 10701 10701 2457 3273 10702 10702 1575 3273 10703 10703 1579 3274 10704 10704 1310 3274 10705 10705 2449 3274 10706 10706 2452 3275 10707 10707 2462 3275 10708 10708 2466 3275 10709 10709 2454 3276 10710 10710 2463 3276 10711 10711 2465 3276 10712 10712 2460 3277 10713 10713 2466 3277 10714 10714 2463 3277 10715 10715 2464 3278 10716 10716 2462 3278 10717 10717 2452 3278 10718 10718 2471 3279 10719 10719 2468 3279 10720 10720 2453 3279 10721 10721 2468 3280 10722 10722 2472 3280 10723 10723 2461 3280 10724 10724 2470 1629 10725 10725 2469 1629 10726 10726 2455 1629 10727 10727 2467 3281 10728 10728 2470 3281 10729 10729 2456 3281 10730 10730 2472 3282 10731 10731 2467 3282 10732 10732 2451 3282 10733 10733 2473 3283 10734 10734 2476 3283 10735 10735 2475 3283 10736 10736 2476 3284 10737 10737 2473 3284 10738 10738 2267 3284 10739 10739 2474 3285 10740 10740 2475 3285 10741 10741 2266 3285 10742 10742 2266 3286 10743 10743 2475 3286 10744 10744 2476 3286 10745 10745 2267 3287 10746 10746 2473 3287 10747 10747 2474 3287 10748 10748 2478 11 10749 10749 2479 11 10750 10750 2468 11 10751 10751 2479 11 10752 10752 2477 11 10753 10753 2472 11 10754 10754 2477 11 10755 10755 2480 11 10756 10756 2467 11 10757 10757 2481 3288 10758 10758 2484 3288 10759 10759 2480 3288 10760 10760 2483 3289 10761 10761 2481 3289 10762 10762 2477 3289 10763 10763 2482 3290 10764 10764 2483 3290 10765 10765 2479 3290 10766 10766 2481 3291 10767 10767 2485 3291 10768 10768 2488 3291 10769 10769 2483 3292 10770 10770 2487 3292 10771 10771 2485 3292 10772 10772 2482 3293 10773 10773 2486 3293 10774 10774 2487 3293 10775 10775

+
+
+
+
+ + + + + 0.6858805 -0.3173701 0.6548619 7.481132 0.7276338 0.3124686 -0.6106656 -6.50764 -0.01081678 0.8953432 0.4452454 5.343665 0 0 0 1 + + + + -0.2908646 -0.7711008 0.5663932 4.076245 0.9551712 -0.1998834 0.2183912 1.005454 -0.05518906 0.6045247 0.7946723 5.903862 0 0 0 1 + + + + 0.7583071 0 0 -0.0220235 0 5.72506e-8 -0.7583071 1.532142 0 0.7583071 5.72506e-8 0.1370505 0 0 0 1 + + + + 0.6729449 0 0 0.005621433 0 5.08059e-8 -0.6729449 3.153982 0 0.6729449 5.08059e-8 0.1490946 0 0 0 1 + + + + 0.3596736 0 0 5.85318e-4 0 2.71546e-8 -0.3596736 -2.150145 0 0.3596736 2.71546e-8 0.1389193 0 0 0 1 + + + + 0.3731924 0 0 2.98023e-8 0 0.3731924 0 0 0 0 0.3731924 5.96046e-8 0 0 0 1 + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/change-camera-controller/src/main/assets/Bristol.png b/change-camera-controller/src/main/assets/Bristol.png new file mode 100644 index 000000000..2c97ea254 Binary files /dev/null and b/change-camera-controller/src/main/assets/Bristol.png differ diff --git a/change-camera-controller/src/main/java/com/esri/arcgismaps/sample/changecameracontroller/MainActivity.kt b/change-camera-controller/src/main/java/com/esri/arcgismaps/sample/changecameracontroller/MainActivity.kt new file mode 100644 index 000000000..00ea41b73 --- /dev/null +++ b/change-camera-controller/src/main/java/com/esri/arcgismaps/sample/changecameracontroller/MainActivity.kt @@ -0,0 +1,280 @@ +/* + * Copyright 2023 Esri + * + * 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. + * + */ +package com.esri.arcgismaps.sample.changecameracontroller + +import android.os.Bundle +import android.util.Log +import android.widget.ArrayAdapter +import androidx.appcompat.app.AppCompatActivity +import androidx.databinding.DataBindingUtil +import androidx.lifecycle.lifecycleScope +import com.arcgismaps.ApiKey +import com.arcgismaps.ArcGISEnvironment +import com.arcgismaps.geometry.Point +import com.arcgismaps.geometry.SpatialReference +import com.arcgismaps.mapping.ArcGISScene +import com.arcgismaps.mapping.ArcGISTiledElevationSource +import com.arcgismaps.mapping.BasemapStyle +import com.arcgismaps.mapping.symbology.ModelSceneSymbol +import com.arcgismaps.mapping.view.GraphicsOverlay +import com.arcgismaps.mapping.view.SurfacePlacement +import com.arcgismaps.mapping.view.Graphic +import com.arcgismaps.mapping.view.OrbitLocationCameraController +import com.arcgismaps.mapping.view.OrbitGeoElementCameraController +import com.arcgismaps.mapping.view.GlobeCameraController +import com.arcgismaps.mapping.view.Camera +import com.esri.arcgismaps.sample.changecameracontroller.databinding.ActivityMainBinding +import com.google.android.material.snackbar.Snackbar +import kotlinx.coroutines.withContext +import kotlinx.coroutines.Dispatchers +import kotlinx.coroutines.launch +import kotlinx.coroutines.ensureActive +import java.io.File +import java.io.FileOutputStream + +class MainActivity : AppCompatActivity() { + + // set up data binding for the activity + private val activityMainBinding: ActivityMainBinding by lazy { + DataBindingUtil.setContentView(this, R.layout.activity_main) + } + + private val sceneView by lazy { + activityMainBinding.sceneView + } + + // options dropdown view for the camera controller types + private val cameraControllerOptionsView by lazy { + // create an array adapter data source using the list of camera controller modes + val arrayAdapter = ArrayAdapter( + this, + R.layout.custom_dropdown_item, + CameraControllerMode.getValuesByDisplayName() + ) + activityMainBinding.bottomListItems.apply { + setAdapter(arrayAdapter) + } + } + + // list of available asset files + private val assetFiles by lazy { + resources.getStringArray(R.array.asset_files).toList() + } + + // the graphic representing the airplane 3d model + private val airplane3DGraphic by lazy { + // location for the target graphic + val point = Point(-109.937516, 38.456714, 5000.0, SpatialReference.wgs84()) + // create the graphic with the target location + Graphic(point) + } + + // camera controller which orbits the plane graphic + private val orbitPlaneCameraController by lazy { + // instantiate a new camera controller with a distance from airplane graphic + OrbitGeoElementCameraController(airplane3DGraphic, 100.0).apply { + // set a relative pitch to the target + setCameraPitchOffset(3.0) + // set a relative heading to the target + setCameraHeadingOffset(150.0) + } + } + + // camera controller which orbits a target location + private val orbitLocationCameraController by lazy { + // target location for the camera controller + val point = Point(-109.929589, 38.437304, 1700.0, SpatialReference.wgs84()) + // instantiate a new camera controller with a distance from the target + OrbitLocationCameraController(point, 5000.0).apply { + // set a relative pitch to the target + setCameraPitchOffset(3.0) + // set a relative heading to the target + setCameraHeadingOffset(150.0) + } + } + + // camera controller for free roam navigation + private val globeCameraController = GlobeCameraController() + + // camera looking at the Upheaval Dome crater in Utah + private val defaultCamera = Camera( + latitude = 38.459291, + longitude = -109.937576, + altitude = 5500.0, + heading = 150.0, + pitch = 20.0, + roll = 0.0 + ) + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + + // authentication with an API key or named user is + // required to access basemaps and other location services + ArcGISEnvironment.apiKey = ApiKey.create(BuildConfig.API_KEY) + lifecycle.addObserver(sceneView) + + // create and add a scene with an imagery basemap style + val terrainScene = ArcGISScene(BasemapStyle.ArcGISImagery).apply { + // add an elevation data source to the base surface + baseSurface.elevationSources.add( + ArcGISTiledElevationSource(getString(R.string.elevation_service_url)) + ) + } + + // graphics overlay for the scene to draw the 3d graphics on + val graphicsOverlay = GraphicsOverlay().apply { + // set the altitude values in the scene to be absolute + sceneProperties.surfacePlacement = SurfacePlacement.Absolute + // add the airplane 3d graphic to the graphics overlay + graphics.add(airplane3DGraphic) + } + + sceneView.apply { + // set the scene to the SceneView + scene = terrainScene + // add the graphics overlay to the SceneView + graphicsOverlays.add(graphicsOverlay) + } + + lifecycleScope.launch { + // if the map load failed show an error and return + terrainScene.load().onFailure { + showError("Failed to load the scene: ${it.message}") + return@launch + } + // set the sceneView viewpoint to the default camera + sceneView.setViewpointCamera(defaultCamera) + // copy the airplane model assets to the cache directory if needed + copyAssetsToCache(assetFiles, cacheDir, false) + // load the airplane model file and update the the airplane3DGraphic + loadModel(getString(R.string.bristol_model_file), airplane3DGraphic) + } + + // set the click listener for the options dropdown view + cameraControllerOptionsView.setOnItemClickListener { parent, _, position, _ -> + // get the selected camera mode item + val selectedItem = parent.getItemAtPosition(position) as String + // get the CameraControllerMode from the selected item + val mode = CameraControllerMode.getValue(selectedItem) + // update the camera controller + setCameraControllerMode(mode) + } + } + + /** + * Loads a [ModelSceneSymbol] from the [filename] in [getCacheDir] and updates the [graphic]. + */ + private suspend fun loadModel(filename: String, graphic: Graphic) { + val modelFile = File(cacheDir, filename) + if (modelFile.exists()) { + // create a new ModelSceneSymbol with the file + val modelSceneSymbol = ModelSceneSymbol(modelFile.path).apply { + heading = 45f + } + // if the symbol load failed show and error and return + modelSceneSymbol.load().onFailure { + return showError("Error loading airplane model: ${it.message}") + } + // update the graphic's symbol + graphic.symbol = modelSceneSymbol + } else { + showError("Error loading airplane model: file does not exist.") + } + } + + /** + * Updates the SceneView's camera controller based on the [mode] specified. + */ + private fun setCameraControllerMode(mode: CameraControllerMode) { + sceneView.cameraController = when (mode) { + CameraControllerMode.OrbitPlane -> orbitPlaneCameraController + CameraControllerMode.OrbitLocation -> orbitLocationCameraController + CameraControllerMode.Globe -> globeCameraController + } + } + + /** + * Copies the list of [assets] files from the assets folder to a given [cache] directory. This + * suspending function runs on the [Dispatchers.IO] context. If [overwrite] is true, any assets + * already in the [cache] directory are overwritten, otherwise copy is skipped. + */ + private suspend fun copyAssetsToCache( + assets: List, + cache: File, + overwrite: Boolean + ) = withContext(Dispatchers.IO) { + // get the AssetManager + val assetManager = applicationContext.assets ?: return@withContext + assets.forEach { assetName -> + // check for cancellation before reading/writing the asset files + ensureActive() + try { + // create an output file in the cache directory + val outFile = File(cache, assetName) + // if the output file doesn't exist or overwrite is enabled + if (!outFile.exists() || overwrite) { + // create an input stream to the asset + assetManager.open(assetName).use { inputStream -> + // create an file output stream to the output file + FileOutputStream(outFile).use { outputStream -> + // copy the input file stream to the output file stream + inputStream.copyTo(outputStream) + } + Log.i(localClassName, "$assetName copied to cache.") + } + } else { + Log.i(localClassName, "$assetName already in cache, skipping copy.") + } + } catch (exception: Exception) { + showError("Error caching asset :${exception.message}") + } + } + } + + private fun showError(message: String) { + Log.e(localClassName, message) + Snackbar.make(sceneView, message, Snackbar.LENGTH_SHORT).show() + } +} + +// enum to keep track of the selected camera controller mode set for the SceneView +enum class CameraControllerMode(val displayName: String) { + OrbitPlane("Orbit camera around a plane model"), + OrbitLocation("Orbit camera around a crater"), + Globe("Free pan around the globe"); + + companion object { + /** + * Returns a List containing the [displayName] property of this enum type. + * */ + fun getValuesByDisplayName(): List { + return values().map { cameraControllerMode -> + cameraControllerMode.displayName + } + } + + /** + * Returns the enum constant of this type with the specified [displayName] property. + */ + fun getValue(displayName: String): CameraControllerMode { + return values().first { + it.displayName == displayName + } + } + } +} diff --git a/change-camera-controller/src/main/res/drawable-v24/ic_launcher_foreground.xml b/change-camera-controller/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 000000000..c7bd21dbd --- /dev/null +++ b/change-camera-controller/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + diff --git a/change-camera-controller/src/main/res/drawable/ic_launcher_background.xml b/change-camera-controller/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 000000000..6d8cae103 --- /dev/null +++ b/change-camera-controller/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/change-camera-controller/src/main/res/layout/activity_main.xml b/change-camera-controller/src/main/res/layout/activity_main.xml new file mode 100644 index 000000000..a6fcaf3f1 --- /dev/null +++ b/change-camera-controller/src/main/res/layout/activity_main.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + diff --git a/change-camera-controller/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/change-camera-controller/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 000000000..6b78462d6 --- /dev/null +++ b/change-camera-controller/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/change-camera-controller/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/change-camera-controller/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 000000000..6b78462d6 --- /dev/null +++ b/change-camera-controller/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/change-camera-controller/src/main/res/mipmap-hdpi/ic_launcher.png b/change-camera-controller/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..a2f590828 Binary files /dev/null and b/change-camera-controller/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/change-camera-controller/src/main/res/mipmap-hdpi/ic_launcher_round.png b/change-camera-controller/src/main/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 000000000..1b5239980 Binary files /dev/null and b/change-camera-controller/src/main/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/change-camera-controller/src/main/res/mipmap-mdpi/ic_launcher.png b/change-camera-controller/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..ff10afd6e Binary files /dev/null and b/change-camera-controller/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/change-camera-controller/src/main/res/mipmap-mdpi/ic_launcher_round.png b/change-camera-controller/src/main/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 000000000..115a4c768 Binary files /dev/null and b/change-camera-controller/src/main/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/change-camera-controller/src/main/res/mipmap-xhdpi/ic_launcher.png b/change-camera-controller/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..dcd3cd808 Binary files /dev/null and b/change-camera-controller/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/change-camera-controller/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/change-camera-controller/src/main/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 000000000..459ca609d Binary files /dev/null and b/change-camera-controller/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/change-camera-controller/src/main/res/mipmap-xxhdpi/ic_launcher.png b/change-camera-controller/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..8ca12fe02 Binary files /dev/null and b/change-camera-controller/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/change-camera-controller/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/change-camera-controller/src/main/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 000000000..8e19b410a Binary files /dev/null and b/change-camera-controller/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/change-camera-controller/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/change-camera-controller/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..b824ebdd4 Binary files /dev/null and b/change-camera-controller/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/change-camera-controller/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/change-camera-controller/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 000000000..4c19a13c2 Binary files /dev/null and b/change-camera-controller/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/change-camera-controller/src/main/res/values/strings.xml b/change-camera-controller/src/main/res/values/strings.xml new file mode 100644 index 000000000..226b15171 --- /dev/null +++ b/change-camera-controller/src/main/res/values/strings.xml @@ -0,0 +1,13 @@ + + Change camera controller + https://elevation3d.arcgis.com/arcgis/rest/services/WorldElevation3D/Terrain3D/ImageServer + + Bristol.dae + Bristol.png + Select camera controller + + + @string/bristol_model_file + @string/bristol_skin_file + + diff --git a/change-viewpoint/build.gradle b/change-viewpoint/build.gradle index 1a75f6d2f..a080d280f 100644 --- a/change-viewpoint/build.gradle +++ b/change-viewpoint/build.gradle @@ -31,4 +31,5 @@ dependencies { // lib dependencies from rootProject build.gradle implementation "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion" implementation "com.google.android.material:material:$materialVersion" + implementation project(path: ':samples-lib') } diff --git a/change-viewpoint/src/main/AndroidManifest.xml b/change-viewpoint/src/main/AndroidManifest.xml index 3b7371bd8..c6647b46d 100644 --- a/change-viewpoint/src/main/AndroidManifest.xml +++ b/change-viewpoint/src/main/AndroidManifest.xml @@ -12,8 +12,7 @@ android:theme="@style/AppTheme"> + android:name=".MainActivity"> diff --git a/change-viewpoint/src/main/res/values/colors.xml b/change-viewpoint/src/main/res/values/colors.xml deleted file mode 100644 index 8c5a27588..000000000 --- a/change-viewpoint/src/main/res/values/colors.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - #9243cf - #7a2ab7 - #7a2ab7 - diff --git a/change-viewpoint/src/main/res/values/styles.xml b/change-viewpoint/src/main/res/values/styles.xml deleted file mode 100644 index 460f96732..000000000 --- a/change-viewpoint/src/main/res/values/styles.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/clip-geometry/build.gradle b/clip-geometry/build.gradle index 483525344..a2a03a93a 100644 --- a/clip-geometry/build.gradle +++ b/clip-geometry/build.gradle @@ -30,4 +30,6 @@ android { dependencies { // lib dependencies from rootProject build.gradle implementation "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion" + implementation "com.google.android.material:material:$materialVersion" + implementation project(path: ':samples-lib') } diff --git a/clip-geometry/src/main/AndroidManifest.xml b/clip-geometry/src/main/AndroidManifest.xml index 3b7371bd8..c6647b46d 100644 --- a/clip-geometry/src/main/AndroidManifest.xml +++ b/clip-geometry/src/main/AndroidManifest.xml @@ -12,8 +12,7 @@ android:theme="@style/AppTheme"> + android:name=".MainActivity"> diff --git a/clip-geometry/src/main/java/com/esri/arcgismaps/sample/clipgeometry/MainActivity.kt b/clip-geometry/src/main/java/com/esri/arcgismaps/sample/clipgeometry/MainActivity.kt index 47f47c59a..03e359f72 100644 --- a/clip-geometry/src/main/java/com/esri/arcgismaps/sample/clipgeometry/MainActivity.kt +++ b/clip-geometry/src/main/java/com/esri/arcgismaps/sample/clipgeometry/MainActivity.kt @@ -17,7 +17,7 @@ package com.esri.arcgismaps.sample.clipgeometry import android.os.Bundle -import android.widget.Button +import android.view.View import androidx.appcompat.app.AppCompatActivity import androidx.databinding.DataBindingUtil import com.arcgismaps.ApiKey @@ -39,6 +39,12 @@ import com.esri.arcgismaps.sample.clipgeometry.databinding.ActivityMainBinding class MainActivity : AppCompatActivity() { + // graphics overlay along the Colorado state border + private val coloradoOverlay: GraphicsOverlay by lazy { GraphicsOverlay() } + + // graphics overlay to contain the clipping envelopes + private val envelopesOverlay: GraphicsOverlay by lazy { GraphicsOverlay() } + override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) @@ -51,15 +57,63 @@ class MainActivity : AppCompatActivity() { // get the MapView instance from the data binding val mapView = activityMainBinding.mapView lifecycle.addObserver(mapView) + + // create buttons to perform the clip and reset operations on the geometry + val clipButton = activityMainBinding.clipButton + val resetButton = activityMainBinding.resetButton + // create and add a map with a topographic basemap style mapView.map = ArcGISMap(BasemapStyle.ArcGISTopographic) // set the viewpoint of the MapView mapView.setViewpoint(Viewpoint(40.0, -106.0, 10000000.0)) // create a graphics overlay to contain the geometry to clip - val graphicsOverlay = GraphicsOverlay() - mapView.graphicsOverlays.add(graphicsOverlay) + mapView.graphicsOverlays.add(coloradoOverlay) + val (coloradoGraphic, fillSymbol) = createGraphics(coloradoOverlay) + + // create a graphics overlay to contain the clipping envelopes + mapView.graphicsOverlays.add(envelopesOverlay) + createEnvelope(envelopesOverlay) + + // create a graphics overlay to contain the clipped areas + val clipAreasOverlay = GraphicsOverlay() + mapView.graphicsOverlays.add(clipAreasOverlay) + + clipButton.setOnClickListener { + // disable button + clipButton.visibility = View.GONE + resetButton.visibility = View.VISIBLE + // for each envelope, clip the Colorado geometry and show the result, + // replacing the original Colorado graphic + coloradoGraphic.isVisible = false + for (graphic in envelopesOverlay.graphics) { + val geometry = + coloradoGraphic.geometry?.let { coloradoGeometry -> + GeometryEngine.clipOrNull(coloradoGeometry, graphic.geometry as Envelope) + } + val clippedGraphic = Graphic(geometry, fillSymbol) + clipAreasOverlay.graphics.add(clippedGraphic) + } + } + + resetButton.setOnClickListener { + // clear clipped graphic + clipAreasOverlay.graphics.clear() + + // set the visibility of the colorado graphic to true + coloradoGraphic.isVisible = true + clipButton.visibility = View.VISIBLE + resetButton.visibility = View.GONE + } + } + + /** + * Create colorado graphic. + */ + private fun createGraphics( + coloradoOverlay: GraphicsOverlay, + ) : Pair{ // create a blue graphic of Colorado val colorado = Envelope( Point(-11362327.128340, 5012861.290274), @@ -71,12 +125,16 @@ class MainActivity : AppCompatActivity() { SimpleLineSymbol(SimpleLineSymbolStyle.Solid, Color.green, 2f) ) val coloradoGraphic = Graphic(colorado, fillSymbol) - graphicsOverlay.graphics.add(coloradoGraphic) - - // create a graphics overlay to contain the clipping envelopes - val envelopesOverlay = GraphicsOverlay() - mapView.graphicsOverlays.add(envelopesOverlay) + coloradoOverlay.graphics.add(coloradoGraphic) + return Pair(coloradoGraphic, fillSymbol) + } + /** + * Create three envelopes, outside, inside and intersecting colorado graphic. + */ + private fun createEnvelope( + envelopesOverlay: GraphicsOverlay, + ) { // create a dotted red outline symbol val redOutline = SimpleLineSymbol(SimpleLineSymbolStyle.Dot, Color.red, 3f) @@ -103,28 +161,5 @@ class MainActivity : AppCompatActivity() { ) val contained = Graphic(containedEnvelope, redOutline) envelopesOverlay.graphics.add(contained) - - // create a graphics overlay to contain the clipped areas - val clipAreasOverlay = GraphicsOverlay() - mapView.graphicsOverlays.add(clipAreasOverlay) - - // create a button to perform the clip operation - val clipButton: Button = findViewById(R.id.clipButton) - clipButton.setOnClickListener { - // disable button - clipButton.isEnabled = false - // for each envelope, clip the Colorado geometry and show the result, - // replacing the original Colorado graphic - coloradoGraphic.isVisible = false - for (graphic in envelopesOverlay.graphics) { - val geometry = - coloradoGraphic.geometry?.let { coloradoGeometry -> - GeometryEngine.clip(coloradoGeometry, graphic.geometry as Envelope) - } - val clippedGraphic = Graphic(geometry, fillSymbol) - clipAreasOverlay.graphics.add(clippedGraphic) - - } - } } } diff --git a/clip-geometry/src/main/res/layout/activity_main.xml b/clip-geometry/src/main/res/layout/activity_main.xml index ddbdbfa17..86718d6e7 100644 --- a/clip-geometry/src/main/res/layout/activity_main.xml +++ b/clip-geometry/src/main/res/layout/activity_main.xml @@ -12,14 +12,27 @@ android:layout_width="match_parent" android:layout_height="match_parent" /> -